diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4996999d..fd55a51d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: - name: Setup pixi uses: prefix-dev/setup-pixi@v0.8.1 with: - pixi-version: v0.39.2 + pixi-version: v0.41.1 environments: dev activate-environment: true @@ -41,7 +41,7 @@ jobs: - name: Setup pixi uses: prefix-dev/setup-pixi@v0.8.1 with: - pixi-version: v0.39.2 + pixi-version: v0.41.1 environments: dev activate-environment: true @@ -77,7 +77,7 @@ jobs: - name: Setup pixi uses: prefix-dev/setup-pixi@v0.8.1 with: - pixi-version: v0.39.2 + pixi-version: v0.41.1 environments: test${{ matrix.python }} activate-environment: true diff --git a/docs/dev/sdd.md b/docs/dev/sdd.md index 09271723..79a51605 100644 --- a/docs/dev/sdd.md +++ b/docs/dev/sdd.md @@ -42,7 +42,21 @@ Component types include: - **model**: a simulated hydrological process - **package**: a subcomponent of a model or simulation -Certain subsets of packages have distinguishing characteristics. A **stress package** represents a forcing. A **basic package** contains only input variables applying statically to the entire simulation. An **advanced package** contains time-variable (i.e. transient) input data. In some cases, only a single instance of a package is expected — in other cases, arbitrarily many. Packages for which the latter is true are called **multi-packages**. +Certain subsets of packages have distinguishing characteristics. A **stress package** represents a forcing. A **basic package** contains only input variables applying statically to the entire simulation. An **advanced package** contains time-variable (i.e. transient) input data. Usually only a single instance of a package is expected — when arbitrarily many are permitted, the package is called a **multi-package**. A **subpackage** is a concept only recognized by the product, not by MODFLOW 6 — a package linked to its parent not by a separate input file, but directly (i.e., subpackage data provided to the parent's initializer method). Subpackages may be attached to packages, models, or simulations. + +```mermaid +classDiagram + Simulation *-- "1+" Package + Simulation *-- "1+" Model + Simulation *-- "1+" Variable + Simulation *-- "1+" Subpackage + Model *-- "1+" Package + Model *-- "1+" Subpackage + Model *-- "1+" Variable + Package *-- "1+" Subpackage + Package *-- "1+" Variable + Subpackage *-- "1+" Variable +``` Components are specified by **definition files**. A **definition** specifies input variables for a single MF6 component. A **block** is a named collection of input variables. A definition file specifies exactly one component. A component may contain zero or more blocks. Each block must contain at least one variable. @@ -72,19 +86,21 @@ For nodes in the context tree (i.e., components with children), `.data` can be a ### `attrs` + `xarray` -Combining these patterns naively would result in data duplication and synchronization challenges. +Combining these patterns naively would result in several challenges, involving duplication, synchronization, and a more general problem reminiscent of [object-relational impedance mismatch](https://en.wikipedia.org/wiki/Object%E2%80%93relational_impedance_mismatch), where the list-oriented and array-oriented paradigms conflict. -We can arrange instead for `attrs` to proxy `xarray` via `__getattribute__`. +Ultimately, we'd like a mapping between an abstract hierarchy of components and variables, as defined in MF6 definition files, to a Python representation which is self-describing (courtesy of `attrs`) and self-aligning (courtesy of `xarray`). -Likewise, we can use [`on_setattr`](https://www.attrs.org/en/stable/api.html#core) to intercept values sent to the `attrs` attributes and send them to `xarray`. +#### Details + +We can arrange for `attrs` to proxy `xarray` via `__getattr__`. -We must also intercept arguments passed to the initializer. As a consequence, we cannot rely on `__init__()` methods generated by `attrs`. +Likewise, we can use [`on_setattr`](https://www.attrs.org/en/stable/api.html#core) to intercept values sent to the `attrs` attributes and send them to `xarray`. -However, other `attrs` functionality should "just work" (e.g. validation, `__repr__`, `__eq__`, etc), due to the operation of `__getattribute__` under the hood. +Other `attrs` functionality should "just work" (e.g. validation, `__repr__`, `__eq__`, etc), due to the operation of `__getattr__` under the hood. This combined concept can be packaged in a class decorator, which can be applied to component classes. -The `__init__()` method should not be burdensome to generate via Jinja — it can merely send all arguments to a function which sets corresponding entries in the component's `.data` attribute. +The `attrs.field` decorator can be used for component variables. We can define a separate decorator for subcomponents. ## Data types diff --git a/docs/examples/data/mfarray/external_binary_factor.txt b/docs/examples/advanced_packages.py similarity index 100% rename from docs/examples/data/mfarray/external_binary_factor.txt rename to docs/examples/advanced_packages.py diff --git a/docs/examples/array_example.py b/docs/examples/array_example.py deleted file mode 100644 index b7660364..00000000 --- a/docs/examples/array_example.py +++ /dev/null @@ -1,512 +0,0 @@ -# --- -# jupyter: -# jupytext: -# text_representation: -# extension: .py -# format_name: light -# format_version: '1.5' -# jupytext_version: 1.16.2 -# kernelspec: -# display_name: Python 3 (ipykernel) -# language: python -# name: python3 -# --- - -# # Array variables -# -# This example demonstrates how to work with array input variables. -# -# ## Overview -# -# FloPy works natively with NumPy arrays. Array input data can be provided -# as `ndarray` (or anything acting like one). FloPy also provides an array -# subclass `MFArray` supporting some special behaviors: -# -# - more efficient memory usage for constant arrays -# - convenient layered array manipulation -# - applying a multiplication factor -# -# TODO: rewrite the io stuff (external/internal) once that is moved to a -# separate layer from MFArray - -# + -from pathlib import Path -from tempfile import TemporaryDirectory - -import flopy -import git -import matplotlib.pyplot as plt -import numpy as np -import pooch - -from flopy4.array import MFArray - -# - - -try: - root = Path(git.Repo(".", search_parent_directories=True).working_dir) -except: - root = None -workspace = root / "docs" / "examples" if root else Path.cwd() -data_path = workspace / "data" / "mfarray" if root else Path.cwd() - -# non-layered data - -fname = "internal.txt" -internal = pooch.retrieve( - url=f"https://github.com/pyphoenix/pyphoenix-project/raw/develop/docs/examples/data/mfarray/{fname}", - fname=fname, - path=data_path, - known_hash=None, -) -constant = data_path / "constant.txt" -external = data_path / "external.txt" -shape = (1000, 100) -dtype = "double" - -# Open and load a NumPy array representation - -fhandle = open(internal) -imfa = MFArray.load(fhandle, data_path, shape, type=dtype, header=False) - -# Get values - -ivals = imfa.value -plt.imshow(ivals[0:100]) -plt.colorbar() - -print(imfa.how) -print(imfa.factor) - -imfa._value - -# adjust values - -imfa[0:8] = 5000 -ivals2 = imfa.value -plt.imshow(ivals2[0:100]) -plt.colorbar() - -fhandle = open(constant) -cmfa = MFArray.load(fhandle, data_path, shape, type=dtype, header=False) -cvals = cmfa.value -plt.imshow(cvals[0:100]) -plt.colorbar() - -print(cmfa._value) - -cmfa.how - -# Slicing and multiplication - -cmfa[0:10] *= 5 -plt.imshow(cmfa[0:100]) -plt.colorbar() - -cmfa.how - -cvals2 = cmfa.value -cmfa._value - -# External - -fhandle = open(external) -emfa = MFArray.load(fhandle, data_path, shape, type=dtype, header=False) -evals = emfa.value -evals - -plt.imshow(emfa[0:100]) -plt.colorbar() - -emfa.how, emfa.factor - -emfa **= 6 -evals2 = emfa.value -evals2 - -plt.imshow(emfa[0:100]) -plt.colorbar() - -# #### Layered data -# layered data - -ilayered = data_path / "internal_layered.txt" -clayered = data_path / "constant_layered.txt" -mlayered = data_path / "mixed_layered.txt" # (internal, constant, external) - -fhandle = open(ilayered) -shape = (3, 1000, 100) -ilmfa = MFArray.load( - fhandle, data_path, shape, type=dtype, header=False, layered=True -) -vals = ilmfa.value - -ilmfa._value # internal storage - -vals = ilmfa.value -vals - -# + -fig, axs = plt.subplots(ncols=3, figsize=(12, 4)) -vmin, vmax = np.min(vals), np.max(vals) -for ix, v in enumerate(vals): - im = axs[ix].imshow(v[0:100], vmin=vmin, vmax=vmax) - axs[ix].set_title(f"layer {ix + 1}") - -fig.subplots_adjust(right=0.8) -cbar_ax = fig.add_axes([0.85, 0.15, 0.05, 0.7]) -fig.colorbar(im, cax=cbar_ax) -# - - -ilmfa.how - -ilmfa.factor - -# Adjust array values using ufuncs - -ilmfa[0, 0:10, 0:60] += 350 -ilmfa[1, 10:20, 20:80] += 350 -ilmfa[2, 20:30, 40:] += 350 - -# + -vals = ilmfa.value -fig, axs = plt.subplots(ncols=3, figsize=(12, 4)) -vmin, vmax = np.min(vals), np.max(vals) -for ix, v in enumerate(vals): - im = axs[ix].imshow(v[0:100], vmin=vmin, vmax=vmax) - axs[ix].set_title(f"layer {ix + 1}") - -fig.subplots_adjust(right=0.8) -cbar_ax = fig.add_axes([0.85, 0.15, 0.05, 0.7]) -fig.colorbar(im, cax=cbar_ax) -# - - -# Layered constants - -fhandle = open(clayered) -shape = (3, 1000, 100) -clmfa = MFArray.load( - fhandle, data_path, shape, type=dtype, header=False, layered=True -) - -clmfa._value - -for obj in clmfa._value: - print(obj._value) -clmfa.how - -vals = clmfa.value - -# + -fig, axs = plt.subplots(ncols=3, figsize=(12, 4)) -vmin, vmax = np.min(vals), np.max(vals) -for ix, v in enumerate(vals): - im = axs[ix].imshow(v[0:100], vmin=vmin, vmax=vmax) - axs[ix].set_title(f"layer {ix + 1}") - -fig.subplots_adjust(right=0.8) -cbar_ax = fig.add_axes([0.85, 0.15, 0.05, 0.7]) -fig.colorbar(im, cax=cbar_ax) -# - - -# Adjust a slice of the layered array - -clmfa[0, 0:80, 20:80] += 10 -clmfa[1] += 5 -clmfa[2] += 2 - -clmfa.how - -# verify that the constants haven't -# been converted to array internally -for obj in clmfa._value[1:]: - print(obj._value) - -vals = clmfa.value - -# + -fig, axs = plt.subplots(ncols=3, figsize=(12, 4)) -vmin, vmax = np.min(vals), np.max(vals) -for ix, v in enumerate(vals): - im = axs[ix].imshow(v[0:100], vmin=vmin, vmax=vmax) - axs[ix].set_title(f"layer {ix + 1}") - -fig.subplots_adjust(right=0.8) -cbar_ax = fig.add_axes([0.85, 0.15, 0.05, 0.7]) -fig.colorbar(im, cax=cbar_ax) -# - - -# Mixed data source Layered - -fhandle = open(mlayered) -shape = (3, 1000, 100) -mlmfa = MFArray.load( - fhandle, data_path, shape, type=dtype, header=False, layered=True -) - -mlmfa.how - -mlmfa._value - -vals = mlmfa.value -vals = np.where(vals <= 0, vals.mean(), vals) -mlmfa[:] = vals - -# + -fig, axs = plt.subplots(ncols=3, figsize=(12, 4)) -vmin, vmax = np.min(vals), np.max(vals) -for ix, v in enumerate(vals): - im = axs[ix].imshow(v[0:100], vmin=vmin, vmax=vmax) - axs[ix].set_title(f"layer {ix + 1}") - -fig.subplots_adjust(right=0.8) -cbar_ax = fig.add_axes([0.85, 0.15, 0.05, 0.7]) -fig.colorbar(im, cax=cbar_ax) -# - - -# ### Using numpy mathematical functions -# -# Numpy support has been added to `MFArray` though the -# `__array_ufunc__`` mixin method. This method permits -# sending `MFArray` to standard NumPy functions, like -# `np.log()`, `np.sin()`, `np.pow()`, etc ... - -mlmfa = np.log(mlmfa) -mlmfa - -vals = mlmfa.value -vals - -# + -fig, axs = plt.subplots(ncols=3, figsize=(12, 4)) -vmin, vmax = np.min(vals), np.max(vals) -for ix, v in enumerate(vals): - im = axs[ix].imshow(v[0:100], vmin=vmin, vmax=vmax) - axs[ix].set_title(f"layer {ix + 1}") - -fig.subplots_adjust(right=0.8) -cbar_ax = fig.add_axes([0.85, 0.15, 0.05, 0.7]) -fig.colorbar(im, cax=cbar_ax) -# - - -# We can also get statistical information about the data, -# like `sum()`, `mean()`, `max()`, `min()`, `median`, `std()` - -mlmfa.sum() - -mlmfa.min(), mlmfa.mean(), mlmfa.max() - - -# ## Grid-shaped array data -# -# Most MODFLOW array data are two (row, column) or three (layer, -# row, column) dimensional and represent data on the model grid. -# grid. Other MODFLOW array data contain data by stress period. -# The following list summarizes the types of MODFLOW array data. - -# * Time-invariant multi-dimensional array data. This includes: -# 1. One and two dimensional arrays that do not have a layer dimension. -# Examples include `top`, `delc`, and `delr`. -# 2. Three dimensional arrays that can contain a layer dimension. -# Examples include `botm`, `idomain`, and `k`. -# * Transient arrays that can change with time and therefore contain arrays of -# data for one or more stress periods. Examples include `irch` and -# `recharge` in the `RCHA` package. -# -# In the example below a three dimensional ndarray is constructed for the -# `DIS` package's `botm` array. First, the a simulation and groundwater-flow -# model are set up. - -# set up where simulation workspace will be stored -temp_dir = TemporaryDirectory() -workspace = temp_dir.name -name = "grid_array_example" - -# create the FloPy simulation and tdis objects -sim = flopy.mf6.MFSimulation( - sim_name=name, exe_name="mf6", version="mf6", sim_ws=workspace -) -tdis = flopy.mf6.modflow.mftdis.ModflowTdis( - sim, - pname="tdis", - time_units="DAYS", - nper=2, - perioddata=[(1.0, 1, 1.0), (1.0, 1, 1.0)], -) -# create the Flopy groundwater flow (gwf) model object -model_nam_file = f"{name}.nam" -gwf = flopy.mf6.ModflowGwf(sim, modelname=name, model_nam_file=model_nam_file) -# create the flopy iterative model solver (ims) package object -ims = flopy.mf6.modflow.mfims.ModflowIms(sim, pname="ims", complexity="SIMPLE") - -# Then a three-dimensional ndarray of floating point values is created using -# numpy's `linspace` method. - -bot = np.linspace(-50.0 / 3.0, -3.0, 3) -delrow = delcol = 4.0 - -# The `DIS` package is then created passing the three-dimensional array to the -# `botm` parameter. The `botm` array defines the model's cell bottom -# elevations. - -dis = flopy.mf6.modflow.mfgwfdis.ModflowGwfdis( - gwf, - pname="dis", - nogrb=True, - nlay=3, - nrow=10, - ncol=10, - delr=delrow, - delc=delcol, - top=0.0, - botm=bot, -) - -# ## Adding MODFLOW Grid Array Data -# MODFLOW grid array data, like the data found in the `NPF` package's -# `GridData` block, can be specified as: -# -# 1. A constant value -# 2. A n-dimensional list -# 3. A numpy ndarray -# -# Additionally, layered grid data (generally arrays with a layer dimension) can -# be specified by layer. -# -# In the example below `icelltype` is specified as constants by layer, `k` is -# specified as a numpy ndarray, `k22` is specified as an array by layer, and -# `k33` is specified as a constant. - -# First `k` is set up as a 3 layer, by 10 row, by 10 column array with all -# values set to 10.0 using numpy's full method. - -k = np.full((3, 10, 10), 10.0) - -# Next `k22` is set up as a three dimensional list of nested lists. This -# option can be useful for those that are familiar with python lists but are -# not familiar with the numpy library. - -k22_row = [] -for row in range(0, 10): - k22_row.append(8.0) -k22_layer = [] -for col in range(0, 10): - k22_layer.append(k22_row) -k22 = [k22_layer, k22_layer, k22_layer] - -# `K33` is set up as a single constant value. Whenever an array has all the -# same values the easiest and most efficient way to set it up is as a constant -# value. Constant values also take less space to store. - -k33 = 1.0 - -# The `k`, `k22`, and `k33` values defined above are then passed in on -# construction of the npf package. - -npf = flopy.mf6.ModflowGwfnpf( - gwf, - pname="npf", - save_flows=True, - icelltype=[1, 1, 1], - k=k, - k22=k22, - k33=k33, - xt3doptions="xt3d rhs", - rewet_record="REWET WETFCT 1.0 IWETIT 1 IHDWET 0", -) - -# ### Layered Data -# -# When we look at what will be written to the npf input file, we -# see that the entire `npf.k22` array is written as one long array with the -# number of values equal to `nlay` * `nrow` * `ncol`. And this whole-array -# specification may be of use in some cases. Often times, however, it is -# easier to work with each layer separately. An `MFArray` object, such as -# `npf.k22` can be converted to a layered array as follows. - -npf.k22.make_layered() - -# By changing `npf.k22` to layered, we are then able to manage each layer -# separately. Before doing so, however, we need to pass in data that can be -# separated into three layers. An array of the correct size is one option. - -shp = npf.k22.array.shape -a = np.arange(shp[0] * shp[1] * shp[2]).reshape(shp) -npf.k22 = a - -# Now that `npf.k22` has been set to be layered, if we print information about -# it, we see that each layer is stored separately, however, `npf.k22.array` -# will still return a full three-dimensional array. - -type(npf.k22) -npf.k22 - -# We also see that each layer is printed separately to the npf -# Package input file, and that the LAYERED keyword is activated: - -npf.k22 - -# Working with a layered array provides lots of flexibility. For example, -# constants can be set for some layers, but arrays for others: - -npf.k22.set_data([1, a[2], 200]) -npf.k22 - -# The array can be interacted with as usual for NumPy arrays: -npf.k22 = np.stack( - [ - 100 * np.ones((10, 10)), - 50 * np.ones((10, 10)), - 30 * np.ones((10, 10)), - ] -) -npf.k22 - -# ## Adding MODFLOW Stress Period Array Data -# Transient array data spanning multiple stress periods must be specified as a -# dictionary of arrays, where the dictionary key is the stress period, -# expressed as a zero-based integer, and the dictionary value is the grid -# data for that stress period. - -# In the following example a `RCHA` package is created. First a dictionary -# is created that contains recharge for the model's two stress periods. -# Recharge is specified as a constant value in this example, though it could -# also be specified as a 3-dimensional ndarray or list of lists. - -rch_sp1 = 0.01 -rch_sp2 = 0.03 -rch_spd = {0: rch_sp1, 1: rch_sp2} - -# The `RCHA` package is created and the dictionary constructed above is passed -# in as the `recharge` parameter. - -rch = flopy.mf6.ModflowGwfrcha( - gwf, readasarrays=True, pname="rch", print_input=True, recharge=rch_spd -) - -# Below the `NPF` `k` array is retrieved using the various methods highlighted -# above. - -# First, view the `k` array. - -npf.k - -# `repr` gives a string representation of the data. - -repr(npf.k) - -# `str` gives a similar string representation of the data. - -str(npf.k) - -# Next, view the 4-dimensional array. - -rch.recharge - -# `repr` gives a string representation of the data. - -repr(rch.recharge) - -# str gives a similar representation of the data. - -str(rch.recharge) diff --git a/docs/examples/attrs_demo.py b/docs/examples/attrs_demo.py deleted file mode 100644 index 2ac0a525..00000000 --- a/docs/examples/attrs_demo.py +++ /dev/null @@ -1,246 +0,0 @@ -# # Attrs demo - -# This example demonstrates a tentative `attrs`-based object model. - -from pathlib import Path -from typing import List, Literal, Optional, Union - -# ## GWF IC -import numpy as np -from attr import asdict, define, field, fields_dict -from cattr import Converter -from numpy.typing import NDArray - -# We can define block classes where variable descriptions become -# the variable's docstring. Ideally we can come up with a Python -# input specification that is equivalent to (and convertible to) -# the original MF6 input specification, while knowing as little -# as possible about the MF6 input format; but anything we can't -# get rid of can go in field `metadata`. - - -@define -class Options: - export_array_ascii: bool = field( - default=False, - metadata={"longname": "export array variables to netcdf output files"}, - ) - """ - keyword that specifies input griddata arrays should be - written to layered ascii output files. - """ - - export_array_netcdf: bool = field( - default=False, metadata={"longname": "starting head"} - ) - """ - keyword that specifies input griddata arrays should be - written to the model output netcdf file. - """ - - -# Eventually we may be able to take advantage of NumPy -# support for shape parameters: -# https://github.com/numpy/numpy/issues/16544 -# -# We can still take advantage of type parameters. - - -@define -class PackageData: - strt: NDArray[np.float64] = field( - metadata={"longname": "starting head", "shape": ("nodes")} - ) - """ - is the initial (starting) head---that is, head at the - beginning of the GWF Model simulation. STRT must be specified for - all simulations, including steady-state simulations. One value is - read for every model cell. For simulations in which the first stress - period is steady state, the values used for STRT generally do not - affect the simulation (exceptions may occur if cells go dry and (or) - rewet). The execution time, however, will be less if STRT includes - hydraulic heads that are close to the steady-state solution. A head - value lower than the cell bottom can be provided if a cell should - start as dry. - """ - - -# Putting it all together: - - -@define -class GwfIc: - options: Options = field() - packagedata: PackageData = field() - - -# ## GWF OC -# -# The output control package has a more complicated variable structure. -# Below docstrings/descriptions are omitted for space-saving. - - -@define -class Format: - columns: int = field() - width: int = field() - digits: int = field() - format: Literal["exponential", "fixed", "general", "scientific"] = field() - - -@define -class Options: - budget_file: Optional[Path] = field(default=None) - budget_csv_file: Optional[Path] = field(default=None) - head_file: Optional[Path] = field(default=None) - printhead: Optional[Format] = field(default=None) - - -# It's awkward to have single-parameter classes, but -# it's the only way I got `cattrs` to distinguish a -# number of choices with the same shape in a union -# like `OCSetting`. There may be a better way. - - -@define -class All: - all: bool = field() - - -@define -class First: - first: bool = field() - - -@define -class Last: - last: bool = field() - - -@define -class Steps: - steps: List[int] = field() - - -@define -class Frequency: - frequency: int = field() - - -PrintSave = Literal["print", "save"] -RType = Literal["budget", "head"] -OCSetting = Union[All, First, Last, Steps, Frequency] - - -@define -class OutputControlData: - printsave: PrintSave = field() - rtype: RType = field() - ocsetting: OCSetting = field() - - @classmethod - def from_tuple(cls, t): - t = list(t) - printsave = t.pop(0) - rtype = t.pop(0) - ocsetting = { - "all": All, - "first": First, - "last": Last, - "steps": Steps, - "frequency": Frequency, - }[t.pop(0).lower()](t) - return cls(printsave, rtype, ocsetting) - - -Period = List[OutputControlData] -Periods = List[Period] - - -@define -class GwfOc: - options: Options = field() - periods: Periods = field() - - -# We now set up a `cattrs` converter to convert an unstructured -# representation of the package input data to a structured form. - -converter = Converter() - - -# Register a hook for the `OutputControlData.from_tuple` method. -# MODFLOW 6 defines records as tuples, from which we'll need to -# instantiate objects. - - -def output_control_data_hook(value, _) -> OutputControlData: - return OutputControlData.from_tuple(value) - - -converter.register_structure_hook(OutputControlData, output_control_data_hook) - - -# We can inspect the input specification with `attrs` machinery. - - -spec = fields_dict(OutputControlData) -assert len(spec) == 3 - -ocsetting = spec["ocsetting"] -assert ocsetting.type is OCSetting - - -# We can define a block with some data. - - -options = Options( - budget_file="some/file/path.cbc", -) -assert isinstance(options.budget_file, str) # TODO path -assert len(asdict(options)) == 4 - - -# We can load a record from a tuple. - - -ocdata = OutputControlData.from_tuple(("print", "budget", "steps", 1, 3, 5)) -assert ocdata.printsave == "print" -assert ocdata.rtype == "budget" -assert ocdata.ocsetting == Steps([1, 3, 5]) - - -# We can load the full package from an unstructured dictionary, -# as would be returned by a separate IO layer in the future. -# (Either hand-written or using e.g. lark.) - - -gwfoc = converter.structure( - { - "options": { - "budget_file": "some/file/path.cbc", - "head_file": "some/file/path.hds", - "printhead": { - "columns": 1, - "width": 10, - "digits": 8, - "format": "scientific", - }, - }, - "periods": [ - [ - ("print", "budget", "steps", 1, 3, 5), - ("save", "head", "frequency", 2), - ] - ], - }, - GwfOc, -) -assert gwfoc.options.budget_file == Path("some/file/path.cbc") -assert gwfoc.options.printhead.width == 10 -assert gwfoc.options.printhead.format == "scientific" -period = gwfoc.periods[0] -assert len(period) == 2 -assert period[0] == OutputControlData.from_tuple( - ("print", "budget", "steps", 1, 3, 5) -) diff --git a/docs/examples/attrs_xarray_demo.py b/docs/examples/attrs_xarray_demo.py deleted file mode 100644 index 32fb8229..00000000 --- a/docs/examples/attrs_xarray_demo.py +++ /dev/null @@ -1,529 +0,0 @@ -# # Demo attrs/XArray object model - -# Demonstrate a tentative `attrs`- and `xarray`-based object model, -# where `attrs` is used to define classes and `xarray` is used as -# the underlying data store. - - -from abc import ABC -from datetime import datetime -from pathlib import Path -from typing import Any, Literal, Optional, get_origin - -import numpy as np -from attr import Attribute, Factory, define, field, fields_dict -from numpy.typing import ArrayLike, NDArray -from xarray import Dataset, DataTree - - -def _to_path(value: Any) -> Optional[Path]: - return Path(value) if value else None - - -def _parse_dim_names(shape: str) -> tuple[str, ...]: - return tuple( - [ - dim.strip() - for dim in shape.strip() - .replace("(", "") - .replace(")", "") - .split(",") - if any(dim) - ] - ) - - -def _try_resolve_dim(data: Optional[DataTree], name: str) -> int | str: - name = name.strip() - if data is None: - return name - value = data.get(name, None) - if value is not None: - return value.item() - root = data.root - paths = [ - "tdis", - "dis", - "gwf/dis", - ] - for path in paths: - try: - key = f"{path}/{name}" - return root[key].item() - except: - try: - return root[path].dims[name] - except: - pass - return name - - -def _try_resolve_shape(data: DataTree, attr: Attribute) -> tuple[int | str]: - shape = attr.metadata.get("shape", None) - if shape is None: - raise ValueError(f"Array {attr.name} missing shape metadata") - shape = [_try_resolve_dim(data, dim) for dim in _parse_dim_names(shape)] - return shape - - -def _reshape_array(value: ArrayLike, shape: tuple[int]) -> Optional[NDArray]: - value = np.array(value) - if value.shape == (): - return np.full(shape, value.item()) - elif value.shape != shape: - raise ValueError( - f"Shape mismatch, got {value.shape}, expected {shape}" - ) - return value - - -def _resolve_array( - self, attr: Attribute, value: Optional[ArrayLike] -) -> Optional[NDArray]: - if value is None: - return None - shape = _try_resolve_shape(self.data, attr) - unresolved = [dim for dim in shape if not isinstance(dim, int)] - if any(unresolved): - raise ValueError( - f"Class '{type(self).__name__}' " - f"failed to resolve dims: {', '.join(unresolved)}" - ) - return _reshape_array(value, shape) - - -def _bind_tree(self, parent): - parent.data = parent.data.assign({self.data.name: self.data}) - self.data = parent.data[self.data.name] - grandparent = getattr(parent, "parent", None) - if grandparent is not None: - _bind_tree(parent, grandparent) - - -def _init_tree(self, parent=None, **kwargs): - cls = type(self) - cls_name = cls.__name__.lower() - spec = fields_dict(cls) - data = Dataset() - dims = set() - - # add arrays - for name, attr in spec.items(): - value = kwargs.get(name, attr.default) - shape = attr.metadata.get("shape", None) - if shape is not None: - dim_names = _parse_dim_names(shape) - shape = [ - _try_resolve_dim(parent.data.root if parent else None, dim) - for dim in dim_names - ] - shape = tuple( - [ - (dim if isinstance(dim, int) else kwargs.get(dim, dim)) - for dim in shape - ] - ) - unresolved = [dim for dim in shape if not isinstance(dim, int)] - if any(unresolved): - raise ValueError( - f"Class '{cls_name}' " - f"failed to resolve dims: {', '.join(unresolved)}" - ) - dims.update(dim_names) - value = _reshape_array(value, shape) - if value.shape == (): - raise ValueError( - f"Failed to resolve array '{name}', " - f"make sure these dimensions exist: " - f"{','.join(dims)}" - ) - data[name] = (dim_names, value) - - # add scalars - for name, value in spec.items(): - if name in data or name in dims: - continue - value = kwargs.get(name, attr.default) - data[name] = value - - self.data = DataTree(data, name=cls_name) - if parent is not None: - self.parent = parent - _bind_tree(self, parent) - - -def _setattr(self, attr: Attribute, value: Any): - cls = type(self) - spec = fields_dict(cls) - if attr.name not in spec: - raise AttributeError(f"{cls.__name__} has no attribute {attr.name}") - if value is None: - return - self.data[attr.name] = ( - ( - _parse_dim_names(attr.metadata["shape"]), - _resolve_array(self, attr, value), - ) - if get_origin(attr.type) in [list, np.ndarray] - else value - ) - # TODO run validation? - - -def component(cls): - spec = fields_dict(cls) - - def _get(self, name): - if name in spec: - value = self.data.get(name, None) - if value is not None: - return value - value = self.data.dims.get(name, None) - if value is not None: - return value - return super(cls, self).__getattribute__(name) - - cls.__getattribute__ = _get - return cls - - -class Package(ABC): - data: DataTree = None - - -class Model(ABC): - data: DataTree = None - - -class Sim(ABC): - data: DataTree = None - - -# @component could in theory wrap the @define decorator -@component -@define(init=False, slots=False, on_setattr=_setattr) -class Dis(Package): - length_units: str = field( - # store block as metadata then dynamically - # discover and expose blocks as properties. - default=None, - metadata={"block": "options"}, - # OR, blocks could be attrs classes too... - # that will be necessary if variable names - # at the top level are not unique, but they - # currently are (if we like that constraint - # we should document it and enforce it when - # DFNs are loaded?) - ) - nogrb: bool = field(default=False, metadata={"block": "options"}) - xorigin: float = field(default=None, metadata={"block": "options"}) - yorigin: float = field(default=None, metadata={"block": "options"}) - angrot: float = field(default=None, metadata={"block": "options"}) - export_array_netcdf: bool = field( - default=False, metadata={"block": "options"} - ) - nlay: int = field(default=1, metadata={"block": "dimensions"}) - ncol: int = field(default=2, metadata={"block": "dimensions"}) - nrow: int = field(default=2, metadata={"block": "dimensions"}) - delr: NDArray[np.floating] = field( - # we use a converter both to resolve an array shape - # and check it, handling both conversion/validation - converter=_resolve_array, - default=1.0, - metadata={"block": "griddata", "shape": "(ncol,)"}, - ) - delc: NDArray[np.floating] = field( - converter=_resolve_array, - default=1.0, - metadata={"block": "griddata", "shape": "(nrow,)"}, - ) - top: NDArray[np.floating] = field( - converter=_resolve_array, - default=1.0, - metadata={"block": "griddata", "shape": "(ncol, nrow)"}, - ) - botm: NDArray[np.floating] = field( - converter=_resolve_array, - default=0.0, - metadata={"block": "griddata", "shape": "(ncol, nrow, nlay)"}, - ) - idomain: Optional[NDArray[np.integer]] = field( - converter=_resolve_array, - default=1, - metadata={"block": "griddata", "shape": "(ncol, nrow, nlay)"}, - ) - nodes: Optional[int] = field(default=None) - - def __init__( - self=None, - model=None, - length_units=None, - nogrb=False, - xorigin=None, - yorigin=None, - angrot=None, - export_array_netcdf=False, - nlay=1, - ncol=2, - nrow=2, - delr=1.0, - delc=1.0, - top=1.0, - botm=0.0, - idomain=1, - ): - _init_tree( - self, - parent=model, - length_units=length_units, - nogrb=nogrb, - xorigin=xorigin, - yorigin=yorigin, - angrot=angrot, - export_array_netcdf=export_array_netcdf, - nlay=nlay, - ncol=ncol, - nrow=nrow, - nodes=ncol * nrow * nlay, - delr=delr, - delc=delc, - top=top, - botm=botm, - idomain=idomain, - ) - - -@component -@define(init=False, slots=False, on_setattr=_setattr) -class Ic(Package): - strt: NDArray[np.floating] = field( - converter=_resolve_array, - default=1.0, - metadata={"block": "packagedata", "shape": "(nodes)"}, - ) - export_array_ascii: bool = field( - default=False, metadata={"block": "options"} - ) - export_array_netcdf: bool = field( - default=False, - metadata={"block": "options"}, - ) - - def __init__( - self, - model=None, - strt=1.0, - export_array_ascii=False, - export_array_netcdf=False, - ): - _init_tree( - self, - parent=model, - strt=strt, - export_array_ascii=export_array_ascii, - export_array_netcdf=export_array_netcdf, - ) - - -@component -@define(init=False, slots=False, on_setattr=_setattr) -class Oc(Package): - @define(slots=False) - class Format: - columns: int = field(default=10) - width: int = field(default=11) - digits: int = field(default=4) - format: Literal["exponential", "fixed", "general", "scientific"] = ( - field(default="general") - ) - - @define(slots=False) - class Steps: - first: Optional[Literal["first"]] = field(default="first") - last: Optional[Literal["last"]] = field(default=None) - all: Optional[Literal["all"]] = field(default=None) - frequency: Optional[int] = field(default=None) - steps: Optional[list[int]] = field(default=None) - - budget_file: Optional[Path] = field( - converter=_to_path, - default=None, - metadata={"block": "options"}, - ) - budget_csv_file: Optional[Path] = field( - converter=_to_path, - default=None, - metadata={"block": "options"}, - ) - head_file: Optional[Path] = field( - converter=_to_path, - default=None, - metadata={"block": "options"}, - ) - printhead: Optional[Format] = field( - default=None, init=False, metadata={"block": "options"} - ) - perioddata: list[Steps] = field( - default=Factory(list), - metadata={"block": "perioddata", "shape": "(nper,)"}, - ) - - def __init__( - self, - model=None, - budget_file=None, - budget_csv_file=None, - head_file=None, - printhead=None, - perioddata=None, - ): - _init_tree( - self, - parent=model, - budget_file=budget_file, - budget_csv_file=budget_csv_file, - head_file=head_file, - printhead=printhead, - perioddata=perioddata, - ) - - -@component -@define(init=False, slots=False, on_setattr=_setattr) -class Npf(Package): - # no options, just arrays for now - icelltype: NDArray[np.integer] = field( - converter=_resolve_array, - default=0, - metadata={"block": "griddata", "shape": "(nodes)"}, - ) - k: NDArray[np.floating] = field( - converter=_resolve_array, - default=1.0, - metadata={"block": "griddata", "shape": "(nodes)"}, - ) - k22: Optional[NDArray[np.floating]] = field( - converter=_resolve_array, - default=None, - metadata={"block": "griddata", "shape": "(nodes)"}, - ) - k33: Optional[NDArray[np.floating]] = field( - converter=_resolve_array, - default=None, - metadata={"block": "griddata", "shape": "(nodes)"}, - ) - angle1: Optional[NDArray[np.floating]] = field( - converter=_resolve_array, - default=None, - metadata={"block": "griddata", "shape": "(nodes)"}, - ) - angle2: Optional[NDArray[np.floating]] = field( - converter=_resolve_array, - default=None, - metadata={"block": "griddata", "shape": "(nodes)"}, - ) - angle3: Optional[NDArray[np.floating]] = field( - converter=_resolve_array, - default=None, - metadata={"block": "griddata", "shape": "(nodes)"}, - ) - wetdry: Optional[NDArray[np.floating]] = field( - converter=_resolve_array, - default=None, - metadata={"block": "griddata", "shape": "(nodes)"}, - ) - - def __init__( - self, - model=None, - icelltype=0, - k=1.0, - k22=None, - k33=None, - angle1=None, - angle2=None, - angle3=None, - wetdry=None, - ): - _init_tree( - self, - parent=model, - icelltype=icelltype, - k=k, - k22=k22, - k33=k33, - angle1=angle1, - angle2=angle2, - angle3=angle3, - wetdry=wetdry, - ) - - -@component -@define(init=False, slots=False) -class Gwf(Model): - def __init__( - self, - sim=None, - ): - _init_tree(self, parent=sim) - - -@component -@define(init=False, slots=False, on_setattr=_setattr) -class Tdis(Package): - @define(slots=False) - class PeriodData: - perlen: float = field(default=1.0) - nstp: int = field(default=1) - tsmult: float = field(default=1.0) - - nper: int = field(default=1, metadata={"block": "dimensions"}) - perioddata: list[PeriodData] = field( - default=Factory(list), - metadata={"block": "perioddata", "shape": "(nper)"}, - ) - time_units: Optional[str] = field( - default=None, metadata={"block": "options"} - ) - start_date_time: Optional[datetime] = field( - default=None, metadata={"block": "options"} - ) - - def __init__( - self, - sim=None, - nper=1, - perioddata=None, - time_units=None, - start_date_time=None, - ): - _init_tree( - self, - parent=sim, - nper=nper, - perioddata=perioddata, - time_units=time_units, - start_date_time=start_date_time, - ) - - -@component -@define(slots=False) -class Simulation(Sim): - def __init__(self): - _init_tree(self) - - -# Create a simulation. - -sim = Simulation() -tdis = Tdis(sim=sim, nper=1, perioddata=[Tdis.PeriodData()]) -gwf = Gwf(sim=sim) -dis = Dis(model=gwf) -ic = Ic(model=gwf, strt=1.0) -oc = Oc(model=gwf, perioddata=[Oc.Steps()]) -npf = Npf(model=gwf, icelltype=0, k=1.0) - -# View the data tree. -sim.data diff --git a/docs/examples/data/external/array_ext.txt b/docs/examples/data/external/array_ext.txt deleted file mode 100644 index c1db58af..00000000 --- a/docs/examples/data/external/array_ext.txt +++ /dev/null @@ -1,1000 +0,0 @@ -90.82 57.65 94.33 83.13 5.18 31.64 65.27 20.22 65.76 79.78 18.74 87.52 70.48 93.59 87.55 62.32 78.92 88.46 37.43 29.47 54.01 48.11 45.89 66.58 33.48 82.58 94.69 67.70 56.58 32.34 15.95 37.61 33.14 80.85 96.78 78.15 92.78 31.07 57.92 79.78 28.49 77.16 97.41 63.53 38.56 13.33 56.69 32.94 40.85 53.22 47.10 10.52 60.75 48.46 7.60 26.31 16.11 16.92 33.74 73.86 25.70 77.04 35.01 39.67 18.97 56.04 4.78 24.20 97.11 63.87 32.72 32.77 84.86 93.94 99.00 34.56 71.94 29.06 31.08 34.18 22.65 40.53 40.81 65.46 12.94 20.63 72.01 33.69 70.22 33.77 52.77 60.06 2.25 17.52 1.92 73.54 78.62 85.47 54.65 42.72 -51.56 88.93 99.38 0.86 37.06 6.34 21.23 23.28 19.35 29.74 88.75 5.55 20.87 62.28 92.26 92.47 42.21 13.07 56.60 54.08 31.70 71.69 50.50 9.18 45.30 74.57 48.29 3.61 31.06 23.88 15.33 61.77 67.69 90.37 99.42 79.90 2.12 97.61 39.18 23.33 21.46 43.16 52.89 11.21 51.25 8.01 30.73 62.12 86.96 37.97 81.75 27.70 89.48 48.53 85.38 76.13 7.89 67.31 34.50 9.04 11.34 45.10 49.59 97.31 78.34 29.19 99.57 7.35 72.84 84.39 71.43 94.92 54.12 77.59 63.66 93.43 38.14 93.68 58.21 79.46 40.28 65.26 75.09 46.40 46.43 48.67 24.80 23.59 8.60 20.17 19.54 16.15 49.17 72.04 95.21 29.32 31.20 67.75 18.49 98.28 -51.33 7.89 70.34 94.88 68.06 46.97 11.53 81.60 40.26 68.73 11.41 43.51 69.48 57.39 27.61 98.35 74.94 91.91 68.14 62.39 90.74 72.28 21.76 33.88 63.03 83.95 25.25 5.93 38.57 21.63 44.49 2.10 28.50 9.32 91.90 92.78 9.15 64.00 52.37 60.20 62.34 71.72 10.64 21.57 37.28 44.10 42.91 47.52 20.16 89.48 92.10 34.25 93.37 22.20 2.48 11.26 81.63 96.38 80.66 70.71 56.39 97.58 3.52 77.91 22.35 50.16 8.19 32.74 0.29 30.02 52.51 94.59 48.75 66.92 8.23 73.65 33.35 38.57 28.14 7.98 33.76 63.91 55.41 2.99 16.77 0.67 12.09 79.29 81.09 94.50 23.36 32.48 2.05 63.84 2.99 50.23 94.31 80.98 58.59 37.59 -83.47 72.86 83.76 17.67 17.57 39.80 8.93 25.24 23.88 12.48 77.09 16.94 35.61 20.47 99.65 34.20 18.10 9.38 3.57 5.02 44.02 71.68 54.42 28.01 4.27 69.69 18.99 97.74 27.74 51.46 42.11 84.94 69.39 21.30 47.34 85.17 96.53 41.58 93.78 89.75 23.25 99.10 83.03 89.37 73.49 24.41 92.54 29.17 21.17 50.19 28.71 82.93 73.67 48.62 51.75 7.63 44.28 69.22 85.69 31.37 75.95 19.40 36.48 5.14 89.37 99.67 95.58 16.57 51.06 74.52 18.66 79.37 94.60 73.39 22.38 48.48 57.27 37.64 33.47 46.74 5.56 55.89 89.66 38.49 77.97 80.74 74.87 4.49 32.05 67.90 54.60 98.71 40.14 47.48 97.72 72.07 30.36 42.21 99.18 2.40 -34.86 49.81 6.42 62.15 62.14 59.53 52.82 52.80 12.77 12.89 73.30 36.66 89.86 53.84 43.06 17.30 3.27 2.41 76.97 50.78 98.87 66.19 40.07 47.72 26.69 95.90 46.11 77.76 34.56 48.29 75.74 72.44 28.60 49.45 92.57 85.46 51.15 11.86 63.78 85.47 28.15 20.60 90.07 90.71 63.65 63.48 93.02 74.48 9.96 47.65 47.00 16.17 86.22 78.60 8.40 64.24 24.86 40.86 71.88 57.54 70.06 83.15 18.30 35.15 64.80 13.64 23.17 37.96 76.91 23.27 90.45 26.65 78.84 45.07 82.37 0.08 66.15 57.68 37.88 99.07 44.57 43.81 38.61 93.79 30.40 56.03 62.46 41.80 67.48 94.91 77.02 14.29 30.51 22.31 54.20 62.27 71.38 85.68 63.12 18.28 -82.72 35.55 99.50 20.34 42.55 17.31 50.36 3.59 30.49 93.80 24.43 82.27 4.46 66.87 68.49 17.87 36.26 74.92 42.78 23.01 98.88 12.43 49.81 96.29 99.17 93.47 99.10 5.48 88.50 52.49 27.34 49.39 35.25 24.58 75.37 90.72 72.34 9.22 56.73 6.67 4.20 3.32 45.39 18.75 14.77 62.91 73.90 22.02 77.45 4.68 88.27 17.75 5.15 87.23 22.14 49.03 40.02 21.18 87.07 27.33 90.68 11.63 5.70 6.72 42.53 92.29 84.75 99.68 80.26 76.80 83.72 23.52 85.41 51.25 85.06 0.75 25.24 51.54 64.94 98.50 24.84 80.71 19.51 74.09 92.17 82.17 50.36 32.50 55.05 21.37 88.51 53.99 38.71 22.01 84.03 37.07 56.85 81.26 79.93 68.57 -13.13 28.94 67.30 20.69 27.13 46.03 48.47 93.47 21.25 44.56 85.33 12.17 60.41 9.15 65.12 3.65 22.08 92.61 74.40 15.58 41.27 50.34 49.38 5.53 60.57 33.51 57.33 99.64 6.72 37.28 91.90 97.96 45.06 46.92 74.87 15.33 69.44 19.60 71.80 36.65 98.11 35.63 36.55 7.52 15.43 62.78 81.26 81.57 97.54 96.70 99.74 87.45 73.59 70.79 53.07 96.45 42.48 21.17 46.21 37.17 28.69 42.08 91.13 10.26 33.76 66.33 20.70 9.57 0.80 24.24 16.88 84.41 39.90 33.64 73.94 30.25 34.38 91.24 50.24 81.62 7.01 80.51 46.34 22.95 45.13 23.73 91.76 1.33 27.87 26.86 0.97 7.61 36.40 30.99 51.47 94.84 1.94 84.58 65.32 4.70 -76.43 70.07 94.77 83.79 4.41 62.40 56.08 15.16 81.13 90.97 51.90 2.13 30.44 13.52 70.67 5.33 7.58 26.08 22.16 84.79 18.09 51.67 25.16 80.53 50.57 58.06 94.52 35.73 51.28 17.63 80.16 64.77 99.89 48.49 49.53 7.35 30.18 33.23 99.55 85.23 89.54 30.51 90.58 5.07 74.94 85.96 32.01 30.61 69.42 14.13 99.00 53.92 74.24 66.83 77.68 96.85 84.45 53.92 95.17 65.72 58.56 52.80 28.44 86.70 62.19 57.02 38.56 71.52 97.85 40.55 43.35 58.20 72.24 76.00 89.23 77.04 68.66 82.52 62.63 15.03 39.78 94.81 39.84 38.57 69.06 61.85 68.06 84.40 47.52 37.46 62.11 34.92 9.67 27.62 91.15 65.49 60.21 37.86 34.88 1.61 -68.15 21.68 23.24 8.46 9.09 4.39 15.25 1.60 15.34 36.08 28.79 98.77 12.43 48.84 96.55 58.31 75.06 1.82 92.37 63.12 38.55 49.56 74.90 44.99 67.37 78.60 53.45 47.85 99.23 55.59 84.11 36.31 36.50 80.98 20.14 89.15 12.67 77.85 9.74 7.44 79.05 15.43 28.46 50.02 73.45 52.61 21.24 62.49 7.56 0.27 78.91 37.84 36.09 96.56 52.81 44.22 87.27 74.75 39.82 73.31 49.66 24.12 70.59 66.58 88.62 40.44 29.89 85.46 46.77 39.91 46.20 46.96 65.24 80.08 34.34 31.59 14.50 16.44 68.28 58.49 12.19 92.69 28.38 8.50 85.10 91.49 78.01 79.22 10.68 56.34 34.37 33.08 7.47 17.04 56.43 75.18 13.29 47.15 44.71 46.41 -96.82 7.74 96.44 11.38 50.62 8.29 97.56 30.98 97.00 45.02 30.39 90.44 1.98 74.71 65.35 78.07 40.57 64.83 64.40 83.85 23.19 22.99 2.44 16.48 54.19 29.16 5.64 39.11 77.12 58.04 57.17 14.06 62.29 51.28 47.34 47.48 73.83 2.30 68.51 83.13 56.63 31.25 83.49 54.15 95.69 49.60 58.02 32.47 67.25 58.10 85.78 76.40 94.15 10.38 49.98 79.11 20.27 16.96 59.70 77.82 58.02 7.88 7.13 70.03 61.29 94.40 50.47 92.71 36.55 86.30 42.62 12.97 71.22 53.11 52.64 20.51 30.87 84.10 73.74 81.78 66.38 49.57 48.25 60.83 7.96 87.62 78.44 26.61 57.90 60.26 99.77 94.83 41.30 33.26 39.20 5.10 15.14 89.16 3.83 84.12 -27.31 69.69 36.81 81.39 80.77 63.98 40.77 33.34 13.94 34.34 66.57 87.85 43.46 1.77 1.66 36.50 12.61 45.03 79.88 71.94 65.86 80.03 37.24 49.82 66.92 55.04 35.97 29.00 39.81 2.31 6.85 95.59 28.05 51.65 93.71 3.06 96.45 95.00 7.16 54.53 73.79 30.12 41.99 92.73 42.65 2.43 4.04 87.26 22.29 94.42 53.40 97.44 95.65 15.10 78.38 71.24 96.07 97.88 58.35 11.76 27.20 64.30 2.52 30.97 55.44 19.57 25.14 31.84 2.19 22.14 28.63 63.02 14.21 57.21 50.57 1.35 62.17 79.81 82.41 80.30 37.96 10.95 55.39 28.26 38.92 31.73 86.04 86.02 55.79 74.20 50.67 32.16 17.75 49.74 46.77 27.27 32.84 28.17 60.05 39.99 -29.51 59.96 99.80 6.69 60.01 78.89 71.01 82.19 56.96 47.61 5.19 59.12 64.84 21.41 93.49 71.44 85.49 12.74 7.53 83.27 58.68 85.84 74.02 45.61 24.70 32.73 51.26 51.19 90.86 9.76 36.19 26.21 16.48 55.37 43.74 34.41 41.51 72.65 70.54 65.05 68.07 99.28 61.66 17.51 0.53 96.92 87.58 43.61 84.38 12.39 0.04 67.94 90.61 89.04 4.82 82.28 43.20 38.96 74.13 29.44 90.06 75.48 80.52 14.59 25.41 73.14 90.33 71.16 80.87 26.28 21.34 28.81 22.70 0.97 76.98 60.86 42.73 68.04 22.98 29.44 44.57 28.95 42.82 38.42 43.19 32.87 35.06 89.39 32.06 11.73 64.39 74.08 9.40 67.48 93.07 57.89 49.38 74.70 47.52 51.45 -70.01 56.92 80.38 11.45 26.72 21.35 14.02 50.71 37.79 4.15 7.54 46.64 92.01 68.13 48.31 93.21 80.25 75.24 6.86 84.05 50.35 54.61 91.04 83.58 27.87 77.00 31.37 36.25 62.22 22.37 29.34 31.25 89.04 21.55 33.04 99.63 58.32 44.88 95.32 15.65 30.00 38.82 21.18 75.62 67.72 41.13 57.99 14.85 93.90 47.83 20.14 33.24 91.72 32.32 19.70 99.18 19.14 95.10 84.34 89.53 50.95 64.06 87.01 51.56 74.29 25.76 98.42 85.58 63.12 57.25 37.42 64.57 38.53 73.54 14.29 58.84 79.24 84.19 14.98 92.95 17.30 44.59 69.58 29.03 33.29 2.32 88.55 18.73 8.42 93.85 90.83 90.18 96.35 69.49 42.41 48.72 61.74 10.44 32.32 39.75 -70.17 51.26 76.73 92.74 7.22 51.72 56.71 75.27 97.56 79.58 16.89 12.39 40.08 52.58 93.45 75.36 67.12 15.93 58.56 38.32 89.99 35.93 15.11 93.38 48.10 17.01 13.61 46.13 6.64 26.68 55.24 92.15 55.93 61.42 39.38 52.22 64.08 71.60 1.36 28.91 27.32 87.36 65.10 60.85 43.89 72.65 74.93 36.98 81.80 51.88 20.82 16.93 78.77 27.58 35.08 41.57 13.65 43.35 22.04 64.90 18.81 1.01 12.67 49.20 7.82 40.01 4.53 80.99 62.18 36.47 29.76 60.58 18.99 97.65 33.84 76.04 79.91 74.91 18.05 91.58 78.60 0.04 0.68 51.38 88.60 63.13 64.34 90.81 24.44 87.57 9.41 7.11 21.47 35.00 61.06 28.50 29.92 0.96 64.73 33.94 -96.17 25.69 18.16 82.24 21.07 34.63 58.31 72.88 97.79 51.57 15.92 63.58 74.10 87.36 23.05 39.15 60.55 75.60 19.34 77.71 77.22 35.13 60.91 29.34 36.58 62.35 27.86 0.43 19.03 27.42 28.05 6.17 87.60 68.69 90.37 83.29 47.34 84.78 69.64 70.50 54.12 98.87 76.10 22.72 93.49 14.24 61.43 49.92 82.89 75.36 53.69 47.26 13.63 25.59 48.37 98.21 57.12 59.36 83.19 13.60 79.28 38.31 20.50 62.62 32.41 84.76 97.56 73.57 66.90 24.45 59.54 94.09 64.54 62.46 20.90 54.41 76.06 21.91 43.65 21.23 11.35 1.47 61.13 63.00 29.53 10.45 7.69 27.42 4.35 21.04 79.55 82.09 62.85 74.78 49.23 25.17 1.44 79.49 33.26 19.66 -92.57 46.51 88.00 64.85 14.73 11.72 78.08 63.76 69.24 35.99 59.46 8.63 69.23 41.06 82.82 18.35 44.48 71.12 96.24 34.11 4.99 10.61 76.85 57.01 34.85 47.44 30.35 10.23 77.53 22.49 87.59 78.21 36.84 13.08 69.88 0.11 90.84 42.10 9.20 92.57 26.52 61.19 37.44 79.40 77.76 45.14 9.79 85.43 37.39 35.66 63.49 68.07 28.44 5.78 58.60 65.47 14.58 34.20 12.72 66.24 1.87 4.60 89.93 53.30 49.21 6.83 23.07 39.16 46.36 26.44 4.36 73.48 76.91 23.07 30.77 37.88 66.77 55.00 64.77 75.55 47.64 20.59 32.52 45.19 97.97 89.58 93.14 99.99 47.35 67.67 82.51 9.65 55.95 48.40 78.73 42.17 65.90 29.58 61.04 42.06 -76.86 38.87 10.42 98.96 81.35 71.03 74.76 61.66 2.40 84.82 11.12 58.67 47.90 33.76 59.32 30.60 97.85 93.47 9.39 86.94 34.32 5.17 3.35 68.86 46.31 65.42 37.33 42.00 18.79 71.13 70.82 26.75 44.77 35.70 33.57 76.75 19.79 51.99 15.50 90.23 68.39 13.45 41.50 70.29 53.46 8.27 41.03 81.88 49.62 26.60 57.87 71.54 45.23 7.47 60.92 89.45 39.91 60.41 77.83 99.71 81.53 81.07 42.68 76.75 51.70 51.16 64.85 88.49 21.70 7.61 87.78 1.90 63.14 34.12 79.87 59.96 82.62 57.48 57.65 67.10 44.41 71.79 90.51 88.47 18.74 0.57 37.61 49.75 84.91 86.25 95.32 34.91 59.53 51.20 60.99 13.23 17.82 59.01 93.01 38.86 -1.51 53.97 99.10 5.03 52.03 7.14 51.36 65.98 35.48 8.64 74.40 39.07 78.21 67.81 11.39 24.16 26.28 90.97 67.82 85.82 13.62 42.31 14.40 5.79 84.87 79.06 78.14 78.70 11.95 4.91 13.01 37.27 40.21 78.60 34.48 61.32 11.40 55.14 37.38 18.72 42.89 72.15 15.00 68.92 76.64 42.07 13.98 94.48 34.72 97.58 54.49 3.81 35.92 84.13 10.98 31.66 49.56 36.46 61.61 15.72 43.19 69.38 83.72 73.27 55.55 23.96 33.53 25.25 93.77 99.05 90.04 18.92 40.96 42.96 68.28 13.62 94.25 38.59 71.43 66.83 41.83 28.57 29.13 66.50 59.33 66.59 95.99 86.75 1.48 24.00 39.35 2.17 45.46 62.19 75.61 75.53 25.80 45.48 95.82 19.38 -58.25 31.70 10.42 13.58 91.23 7.61 6.07 44.41 86.97 22.62 59.55 61.47 14.01 92.81 37.41 6.09 43.13 12.55 53.40 62.21 4.92 29.14 14.12 59.73 97.59 99.38 55.13 56.85 66.46 66.28 7.69 56.21 21.48 43.94 86.44 40.33 15.60 5.49 19.29 1.27 99.26 14.68 73.23 25.05 4.12 75.15 29.54 74.43 93.75 77.11 81.09 64.76 41.19 10.51 56.38 54.58 83.17 54.52 78.95 48.93 12.74 71.58 20.77 64.36 50.50 72.43 84.07 39.16 6.26 25.25 47.32 3.39 97.42 1.67 77.68 44.09 68.56 85.80 22.77 75.05 56.55 43.63 2.70 82.15 16.88 69.58 96.23 40.14 3.71 50.56 25.04 65.96 78.39 93.15 51.95 81.58 26.03 79.24 12.59 42.71 -24.97 36.49 86.44 40.30 12.72 14.36 61.25 95.06 18.15 54.29 28.89 6.10 99.74 81.34 36.34 45.88 18.44 99.52 7.62 92.64 83.61 45.06 69.57 82.32 87.93 58.55 19.41 93.32 15.83 77.58 58.32 73.79 78.94 98.42 73.44 13.33 48.38 76.17 53.47 8.73 1.06 72.53 9.06 49.13 33.85 84.96 2.78 20.71 2.74 65.24 21.68 55.33 43.89 23.59 32.89 38.19 68.21 71.99 18.33 61.79 77.62 79.85 64.32 74.44 64.59 98.68 19.61 0.99 73.00 0.53 21.70 52.27 18.00 36.97 24.77 68.48 62.02 54.14 29.19 94.77 1.07 74.04 92.83 64.15 8.03 55.57 29.21 74.54 86.22 98.65 0.05 80.81 40.76 26.25 63.30 36.19 89.80 51.38 17.90 96.15 -2.32 59.05 61.95 55.71 81.42 29.99 98.81 59.25 54.82 0.98 15.05 64.10 17.55 72.57 50.00 67.55 48.93 50.53 76.77 95.65 80.95 20.31 60.01 17.79 43.70 49.12 79.40 14.66 95.31 78.77 74.91 6.25 76.75 68.59 74.07 56.69 32.99 96.34 2.43 29.51 26.83 49.44 61.75 4.74 82.00 10.98 98.00 26.49 52.75 95.86 47.81 76.31 15.99 22.71 65.80 68.58 50.75 71.86 4.83 81.81 6.43 30.81 80.51 8.37 29.28 0.88 92.67 91.08 27.54 31.13 92.20 18.63 66.15 91.73 47.06 2.14 64.89 74.38 35.60 5.64 96.57 52.57 35.21 36.94 81.34 92.74 16.97 4.34 84.08 4.11 49.29 55.87 56.10 27.92 41.29 63.36 54.28 96.60 47.92 17.44 -35.94 95.38 39.84 37.28 23.46 63.13 99.79 34.04 39.86 40.44 85.82 28.17 3.79 78.29 27.90 79.92 42.83 70.38 73.76 57.90 77.83 12.13 58.86 5.58 37.41 31.41 53.43 32.91 76.89 30.48 13.23 26.08 63.92 25.03 35.41 37.69 87.42 31.05 66.12 51.17 91.58 50.00 69.97 51.96 5.53 63.11 44.81 7.96 59.20 42.35 28.58 41.47 32.42 90.36 48.65 76.20 0.45 31.39 45.24 33.44 12.31 5.42 46.02 22.26 84.13 42.03 10.07 47.27 99.44 84.01 63.13 56.35 11.15 80.81 38.84 47.24 64.94 77.22 8.20 18.73 61.73 21.05 82.79 28.52 62.88 93.21 25.73 33.27 72.19 93.62 25.38 23.07 96.04 70.16 79.60 14.69 23.48 91.71 75.81 22.82 -7.25 40.40 47.07 65.89 73.16 43.74 7.97 99.07 69.98 96.78 8.22 3.27 44.53 63.46 66.38 47.51 73.61 12.86 87.94 36.34 93.42 75.00 39.61 86.23 4.20 43.50 90.63 27.71 83.98 9.58 99.22 31.79 62.62 29.82 42.50 66.57 64.76 83.26 15.89 40.65 91.00 34.56 63.22 58.26 49.77 57.87 80.90 6.49 98.61 82.75 41.58 24.59 17.18 77.60 34.95 66.56 16.43 55.52 70.87 37.71 58.95 42.19 77.49 29.23 66.59 31.41 52.65 41.25 55.15 98.84 22.87 72.61 17.60 85.60 80.87 99.62 68.68 56.58 98.23 14.75 94.86 31.20 73.50 45.72 11.74 9.70 14.86 39.78 56.76 16.22 70.01 12.46 53.61 2.66 77.58 75.68 35.14 18.57 30.03 31.04 -47.41 7.84 11.95 95.06 71.50 63.44 15.41 51.48 94.61 56.65 78.88 2.57 59.43 8.68 27.15 14.41 61.33 62.37 80.90 94.57 7.12 94.42 70.90 7.24 88.29 8.13 35.66 62.54 8.61 4.40 62.15 22.33 25.51 32.37 47.57 9.05 47.38 38.69 8.14 67.42 65.10 62.93 24.88 94.40 15.68 79.42 4.56 27.01 94.07 9.50 47.72 72.23 75.81 10.89 73.95 4.87 81.43 49.49 48.08 45.87 53.11 75.91 89.22 59.05 1.85 23.13 14.17 58.99 71.38 92.46 9.11 4.25 54.47 90.78 9.62 9.99 18.58 24.32 99.23 94.93 89.19 40.31 81.37 10.12 26.48 96.87 25.94 60.76 45.97 18.70 75.80 68.54 28.13 21.97 27.50 48.05 86.37 93.82 43.99 65.50 -7.89 5.96 10.21 61.08 76.80 84.79 34.31 98.55 5.00 96.54 81.21 86.58 63.95 13.19 66.30 15.91 8.05 49.42 28.31 76.45 40.44 5.40 46.74 93.49 80.29 25.25 6.90 15.54 19.30 57.99 84.31 95.30 63.02 27.12 5.55 86.98 22.07 92.22 3.02 34.72 38.06 11.61 83.02 8.11 37.95 49.21 93.03 53.69 99.76 99.78 39.18 85.73 53.58 95.09 64.60 28.41 77.59 87.29 89.04 20.42 10.45 86.40 71.58 32.90 85.85 24.60 31.66 54.87 7.77 61.77 66.42 30.32 19.69 40.54 6.70 81.49 19.17 88.64 74.85 26.09 32.93 99.21 92.90 75.17 87.96 95.00 15.79 39.32 32.97 1.25 66.03 59.10 53.89 15.12 4.42 21.90 99.37 98.94 8.21 53.33 -21.29 10.63 45.41 77.60 9.47 51.91 20.72 61.31 32.51 17.17 4.20 21.47 92.96 2.95 4.08 6.61 97.99 67.50 74.62 52.11 15.08 12.30 35.78 10.75 6.82 9.73 58.15 45.68 75.58 97.90 49.75 96.41 46.05 27.00 47.56 63.34 89.03 68.79 63.06 76.18 8.31 5.36 45.99 86.89 57.15 55.93 11.15 3.04 37.58 8.39 46.23 30.74 67.62 60.16 1.97 44.49 62.48 91.95 28.70 10.14 24.37 83.14 83.75 24.12 15.99 65.33 62.42 83.51 56.29 77.36 69.07 76.35 95.68 18.20 47.05 36.55 13.81 97.32 18.26 74.53 38.55 13.21 75.35 10.46 99.87 72.91 10.55 64.61 13.79 23.30 52.16 57.78 7.93 10.61 5.41 45.92 58.27 45.02 33.41 78.39 -42.45 54.97 60.60 76.31 35.19 57.86 18.71 52.86 39.89 81.91 43.05 34.10 73.61 28.44 36.68 18.58 63.58 48.95 56.95 62.71 70.87 51.51 55.40 77.50 54.23 18.37 14.81 45.97 79.14 45.66 85.60 63.91 61.62 39.95 11.22 47.99 78.43 51.70 84.91 47.30 26.57 91.24 15.83 29.89 36.81 80.16 16.54 30.73 62.54 39.76 57.59 52.69 29.82 11.28 57.97 31.45 58.45 69.94 65.03 52.08 67.15 61.91 24.38 89.64 3.58 18.03 44.75 6.24 43.24 44.46 59.00 58.95 90.27 82.24 58.76 44.88 14.19 27.62 17.80 6.53 82.78 45.68 81.94 42.56 18.35 58.14 88.49 1.23 37.81 0.31 72.93 95.46 81.04 22.48 61.30 39.73 34.41 23.29 16.99 6.62 -30.03 52.25 29.56 79.77 18.74 82.67 18.73 65.43 34.01 60.65 91.11 88.49 85.81 65.34 12.95 95.76 24.19 70.37 31.28 16.10 42.86 52.39 95.32 79.22 90.29 21.57 62.08 14.18 51.51 30.01 19.99 62.28 38.47 71.40 70.37 98.26 44.41 90.51 69.77 11.69 34.43 23.99 92.82 59.70 72.47 33.38 46.59 37.73 7.29 19.88 60.60 45.79 98.07 98.39 60.17 56.98 97.05 2.01 7.47 67.80 58.23 46.12 91.69 85.42 76.07 4.86 38.78 89.23 10.56 90.40 60.71 21.70 59.85 78.07 83.63 59.73 55.30 15.54 20.95 66.11 42.48 4.49 84.75 4.76 53.48 50.29 66.67 44.68 19.65 51.14 7.39 72.61 82.22 76.07 14.46 70.65 83.21 16.01 93.82 9.83 -92.56 56.47 59.26 84.72 67.87 8.23 34.49 64.02 10.49 10.43 64.49 79.93 24.99 98.01 44.47 65.83 4.83 96.91 67.00 60.42 72.02 76.96 36.20 52.12 26.16 65.38 6.27 1.47 60.37 86.89 50.61 40.47 3.78 41.81 70.70 80.51 65.32 21.62 25.83 69.33 52.73 43.50 24.14 72.28 30.39 82.94 12.29 80.91 46.84 32.76 70.17 60.48 57.01 38.70 82.13 20.25 46.46 23.32 33.16 13.71 97.35 27.14 60.13 54.97 40.22 27.17 93.60 22.87 85.09 27.34 93.47 41.36 9.96 92.45 69.20 21.40 94.84 37.28 17.55 83.63 32.52 75.96 51.00 14.85 80.05 0.87 82.52 21.46 42.42 43.89 26.48 5.67 98.72 59.56 24.32 33.20 49.29 92.19 5.78 59.95 -99.50 70.60 91.65 39.76 99.13 19.40 19.01 44.83 37.12 13.08 76.94 82.08 44.88 64.14 37.30 95.57 18.19 9.14 45.54 81.41 91.04 63.32 64.74 48.25 87.85 87.51 50.98 82.38 21.09 84.30 18.60 92.35 48.91 54.04 94.84 29.79 8.34 40.71 78.67 7.37 4.93 99.21 51.22 15.87 70.05 13.39 22.80 69.18 12.69 63.68 32.19 49.00 46.47 20.50 10.86 94.09 28.74 58.53 43.52 12.01 93.73 8.21 72.36 15.61 30.01 13.58 68.65 32.01 71.80 19.02 66.69 84.96 40.62 91.38 79.64 69.79 37.34 52.12 51.99 71.28 98.93 74.75 79.13 42.33 46.69 6.28 25.07 84.18 8.56 45.65 85.12 35.87 84.05 48.82 29.47 58.83 59.57 65.69 9.61 49.86 -48.85 85.92 4.14 15.18 13.72 81.82 81.08 43.52 16.40 6.79 95.29 92.13 75.99 34.12 38.67 78.37 81.38 52.07 76.80 30.04 66.56 6.48 0.16 93.06 16.89 17.17 38.22 31.70 7.33 19.07 92.52 4.96 63.70 49.38 15.80 37.54 17.58 39.72 22.37 45.31 62.28 93.79 39.73 24.67 82.29 66.48 8.71 20.82 92.48 71.46 19.19 88.54 93.18 74.11 8.13 90.75 6.28 8.41 65.56 29.73 20.42 74.34 2.11 46.65 70.93 12.03 50.58 15.72 10.76 53.03 97.92 12.44 50.89 9.02 25.20 63.98 35.59 70.61 92.03 57.95 78.58 2.50 13.82 18.82 24.65 41.90 78.53 96.12 40.35 66.53 96.49 98.50 66.17 7.32 70.50 98.95 82.28 0.72 29.93 30.63 -28.55 76.30 53.69 30.31 48.04 46.90 96.87 19.69 7.93 96.58 24.18 46.32 21.48 67.52 29.82 60.59 96.19 5.01 0.59 90.93 52.68 19.46 30.04 84.76 43.55 65.67 1.91 37.95 70.16 1.83 83.45 75.29 74.86 55.60 0.48 2.21 52.42 14.49 73.67 97.76 43.80 12.37 4.44 97.09 3.95 61.83 53.64 50.55 8.48 98.51 59.95 33.17 80.97 32.22 47.22 81.66 60.83 52.18 18.29 88.65 4.12 65.55 43.71 93.65 39.12 32.81 67.88 6.13 37.80 32.51 45.45 99.68 39.11 56.52 52.92 17.76 52.44 52.95 91.28 33.20 20.57 74.22 40.47 50.63 7.45 52.64 45.94 16.78 26.79 51.67 48.05 68.64 85.38 98.84 27.99 59.35 20.94 96.03 81.01 5.47 -35.93 54.31 45.54 47.24 17.70 27.48 39.99 18.77 92.10 26.59 5.63 56.38 38.05 67.42 40.12 17.46 93.47 39.05 31.37 49.17 76.20 84.94 9.08 70.51 17.01 2.07 65.74 66.00 79.52 83.84 72.57 2.66 37.01 4.22 9.93 98.64 24.06 27.95 93.61 10.26 4.42 88.78 33.62 36.12 69.00 61.92 47.57 54.45 51.91 7.96 27.19 39.32 54.27 66.21 39.67 9.60 81.14 57.18 58.63 24.87 96.99 51.61 78.35 70.98 0.13 74.74 72.10 19.89 42.59 71.74 67.64 74.56 1.50 42.27 72.11 95.96 41.77 35.75 92.81 2.08 43.56 61.42 77.25 19.64 69.05 49.15 85.37 48.88 70.17 6.64 36.51 43.21 64.47 82.32 70.43 91.26 0.12 97.22 47.23 84.69 -32.70 19.19 11.22 31.95 31.10 80.17 97.15 29.33 43.73 37.23 57.83 34.69 75.08 13.68 82.07 45.41 56.04 17.86 53.69 61.20 87.71 32.38 10.27 56.96 6.49 2.29 91.62 71.82 71.98 81.33 58.18 88.68 49.26 95.18 2.49 89.91 5.48 87.60 78.09 3.20 79.02 26.08 25.77 93.43 13.25 36.49 18.80 25.45 28.84 60.57 74.78 78.50 67.87 83.39 59.29 49.55 47.19 8.20 88.19 94.88 47.28 84.04 17.31 7.50 36.76 33.05 46.99 85.65 24.67 31.93 64.80 42.53 21.74 54.96 11.84 11.52 66.83 84.72 58.84 49.84 77.43 23.07 5.15 81.55 55.40 85.51 56.77 67.39 73.50 22.49 95.58 12.14 80.88 20.98 33.24 54.71 8.78 28.58 45.86 51.05 -84.29 92.22 10.47 10.40 26.66 51.93 71.39 15.10 98.01 70.62 93.16 59.81 35.01 38.80 13.47 45.90 48.91 78.86 32.42 78.40 75.50 11.01 18.60 48.43 41.36 39.50 27.46 25.97 56.02 62.21 1.23 55.92 89.64 0.05 57.92 89.43 54.78 36.22 53.76 55.06 58.29 2.61 36.03 62.04 53.44 2.04 25.01 26.94 47.53 32.65 60.49 3.59 23.09 32.90 13.81 45.37 3.88 5.18 89.94 22.54 1.43 89.25 47.39 4.44 47.13 67.91 10.05 87.11 18.29 90.62 24.99 16.27 86.33 42.67 26.44 21.31 14.81 53.13 48.17 8.02 80.32 42.88 47.57 17.46 53.21 46.57 41.14 12.05 30.37 52.78 43.60 55.33 95.71 82.06 15.41 67.14 42.84 20.86 0.40 95.24 -6.79 38.12 45.95 75.22 95.11 39.32 66.87 76.50 17.47 57.63 29.65 35.89 74.61 54.65 81.19 40.18 51.94 98.94 58.80 54.66 79.39 59.30 47.17 11.23 75.74 4.78 42.55 65.50 49.10 11.58 4.65 35.73 83.69 97.49 60.40 56.39 85.34 4.81 89.08 45.13 74.35 27.84 63.64 28.43 33.00 64.25 15.43 80.66 67.20 42.10 80.65 74.71 47.04 65.14 23.43 51.87 42.06 92.61 11.46 31.70 26.70 18.98 58.62 38.76 86.15 13.43 8.34 60.59 95.34 78.22 26.73 55.77 58.90 93.08 28.13 60.08 47.12 68.62 42.50 20.91 1.05 4.26 94.06 75.41 66.46 18.94 6.12 19.17 37.74 94.85 69.38 58.59 41.09 9.05 68.61 17.41 95.76 89.13 73.64 4.77 -27.65 43.51 74.76 65.50 72.13 10.78 32.26 7.04 63.95 36.63 55.06 31.42 68.14 20.89 24.47 12.53 72.61 40.95 52.12 42.45 24.99 49.62 44.47 93.05 7.95 8.41 82.67 45.73 18.09 4.40 16.78 89.78 26.95 14.70 73.31 62.47 60.63 87.13 61.70 28.67 61.10 37.23 89.64 25.04 35.93 84.17 95.64 65.28 41.97 89.83 77.70 98.41 99.97 74.76 95.39 76.54 61.85 26.12 96.84 73.38 13.38 20.07 31.67 91.84 17.09 62.32 54.69 49.77 34.38 90.35 64.10 85.73 70.67 51.12 90.26 51.37 15.45 94.09 54.49 79.58 46.52 22.11 94.20 95.45 4.60 3.70 35.85 90.79 14.97 6.36 9.30 32.56 19.40 50.28 26.61 26.58 37.31 47.97 58.71 25.48 -36.67 99.74 53.88 78.90 93.27 81.41 73.93 8.58 72.84 77.53 93.68 18.94 2.16 75.15 84.77 99.03 36.20 35.76 21.24 93.86 16.13 82.56 55.00 46.04 10.09 45.91 78.71 50.87 12.19 81.58 7.33 45.94 46.09 89.20 23.00 65.84 30.00 13.72 93.47 19.29 57.95 12.35 95.48 15.08 36.28 30.76 62.41 14.15 22.57 12.72 93.29 20.54 56.76 27.16 55.75 60.89 26.56 16.81 18.11 13.50 11.04 23.80 7.08 59.98 5.65 28.21 66.07 92.12 56.85 66.01 98.85 49.54 32.23 33.70 99.14 76.10 94.28 52.42 87.67 66.28 82.88 24.58 46.38 33.93 18.98 77.24 53.38 88.29 75.28 17.01 24.32 56.46 0.46 46.50 35.91 71.90 75.46 74.26 34.24 73.76 -8.05 93.20 56.86 4.84 76.34 8.65 92.23 31.21 69.80 17.87 56.06 91.85 95.11 20.86 82.03 2.58 38.35 52.92 71.72 51.11 10.31 61.78 42.43 78.27 92.36 52.65 19.03 76.94 42.93 90.34 42.57 36.12 86.02 9.30 37.96 76.47 86.50 96.22 60.61 7.21 41.69 26.80 53.22 17.73 40.55 54.87 65.06 60.17 8.98 25.60 33.59 99.52 28.70 27.49 5.87 57.34 0.52 92.04 29.33 45.58 7.09 81.37 30.29 91.44 63.82 18.20 62.88 82.44 50.43 53.45 97.53 47.29 5.05 73.75 26.28 89.32 30.80 86.35 46.87 24.68 74.42 56.92 49.29 27.72 67.98 85.44 66.18 19.38 18.34 66.06 6.33 38.88 64.91 81.41 56.23 57.30 50.86 97.46 64.10 4.05 -58.49 28.14 41.29 76.88 77.02 28.26 77.67 28.61 95.06 66.21 39.80 55.60 54.37 63.72 34.56 78.95 51.78 53.55 12.45 2.54 20.95 37.40 56.71 35.23 61.54 20.13 59.97 75.83 86.13 72.08 3.08 24.75 27.65 17.34 41.36 92.43 43.60 44.24 56.41 89.04 9.57 57.81 26.98 95.17 20.50 67.56 9.24 18.92 32.22 82.69 61.61 30.10 59.34 48.86 36.36 80.77 82.23 70.66 88.01 98.10 87.76 72.11 53.11 35.41 23.69 74.78 6.44 19.99 51.59 60.99 93.17 98.92 36.60 10.89 24.08 62.71 30.86 20.91 32.67 82.59 28.88 41.07 13.40 35.38 24.67 54.80 5.24 38.80 48.06 55.24 57.31 64.30 65.85 77.93 86.05 46.48 60.44 80.48 41.96 30.62 -16.83 75.52 14.18 77.82 34.71 73.91 87.64 22.12 63.86 76.79 62.10 84.71 81.45 13.05 2.78 34.92 86.35 50.42 95.97 96.75 84.30 17.37 16.80 72.11 19.53 2.54 68.75 24.18 88.24 1.13 77.70 11.30 53.38 79.32 59.31 90.45 17.36 94.60 75.88 48.62 23.28 22.07 91.22 20.27 66.91 42.52 11.75 43.54 47.36 89.60 92.76 68.55 5.85 67.79 53.19 34.56 36.70 10.09 15.89 22.97 99.14 62.76 83.11 71.10 68.27 16.92 56.92 10.10 43.57 35.25 74.42 98.75 95.31 77.11 14.24 63.89 96.14 77.50 2.50 68.59 82.97 52.99 14.30 79.51 44.03 60.18 94.99 98.69 66.71 13.16 85.10 13.72 26.10 61.51 40.78 32.60 7.11 45.29 44.14 18.65 -21.62 51.20 93.41 98.46 69.45 62.95 60.83 20.50 55.17 35.00 50.86 11.40 10.23 38.83 85.55 65.26 44.40 37.24 27.87 63.70 72.86 5.37 92.56 2.81 94.86 13.24 33.83 96.26 55.89 17.05 16.56 38.27 41.29 80.67 43.10 90.15 1.53 17.82 47.77 64.75 29.43 32.19 43.25 91.25 93.76 75.82 32.54 8.32 89.35 50.73 5.66 90.30 88.26 4.69 54.61 91.69 53.69 19.55 24.50 63.53 8.24 86.03 16.41 7.57 34.99 60.67 44.40 19.37 58.35 24.39 67.62 55.01 56.92 62.89 42.13 14.57 36.58 57.80 22.67 47.96 17.05 5.16 43.58 1.66 25.56 38.55 34.84 32.69 71.27 58.19 21.82 9.94 27.68 53.34 9.50 74.75 18.11 24.04 68.45 94.66 -86.49 13.40 10.31 1.39 48.88 60.23 38.42 44.46 76.87 52.36 61.87 23.87 94.93 35.50 3.88 28.54 21.57 65.86 54.52 77.37 99.56 90.81 16.12 62.06 31.75 2.06 86.74 46.46 37.78 59.70 40.94 2.23 7.72 64.93 8.06 77.73 52.56 89.44 6.78 66.75 59.89 51.91 89.60 76.84 21.19 74.49 26.81 95.63 7.84 40.25 80.28 45.12 15.15 17.01 6.51 81.08 7.32 54.46 4.36 40.13 76.70 62.41 21.37 12.49 87.35 45.40 27.01 85.29 37.01 7.00 78.23 83.21 63.40 38.53 77.19 87.64 2.08 55.29 19.90 1.87 66.02 88.69 40.77 42.87 80.20 1.55 70.74 74.95 85.28 78.03 64.10 31.01 26.77 67.07 93.55 4.82 89.75 89.13 65.79 8.43 -80.24 95.24 84.15 65.28 71.57 31.88 86.39 82.29 51.91 89.78 69.53 36.95 48.90 35.63 49.03 75.30 36.89 17.26 36.15 67.64 54.02 57.84 86.92 32.06 49.88 16.23 10.45 84.86 1.41 29.06 31.36 59.01 43.19 32.52 3.03 44.97 19.55 4.22 61.26 79.48 97.35 37.21 62.49 46.37 94.55 18.23 85.10 39.83 36.39 86.79 73.70 8.93 64.57 87.13 98.17 57.75 48.52 64.65 75.22 86.65 9.14 72.72 42.30 86.31 25.21 25.89 81.22 96.21 59.25 85.24 20.54 74.42 59.14 96.56 96.77 13.18 59.97 21.25 49.99 82.23 69.55 83.45 67.14 55.90 43.52 62.52 6.46 27.53 57.24 35.30 91.19 17.32 3.99 14.24 19.20 37.28 12.35 21.67 48.19 61.17 -65.45 79.35 84.12 10.62 44.79 42.62 61.87 39.17 83.56 11.72 24.72 49.42 27.38 57.89 66.68 64.64 22.11 7.46 82.07 37.03 62.66 15.95 37.45 42.13 80.46 58.61 69.46 22.63 87.05 17.53 76.19 95.12 2.36 33.63 74.55 28.12 76.31 85.75 31.86 0.32 13.79 87.18 43.74 20.09 61.81 7.26 74.57 32.03 7.13 39.31 50.54 40.94 91.85 58.38 65.52 28.53 18.91 8.11 77.77 72.95 48.62 73.43 89.85 0.57 28.42 41.67 39.86 1.18 27.25 49.66 46.76 34.89 79.89 69.03 28.78 45.56 66.05 24.13 29.30 48.03 89.70 55.75 1.69 98.64 56.73 17.98 56.86 21.34 97.59 81.09 52.84 99.54 32.65 84.98 11.49 78.66 68.92 64.87 34.48 65.98 -75.27 96.11 37.24 52.95 91.23 75.42 10.05 84.06 66.59 87.09 28.76 67.57 43.00 23.21 63.77 34.37 65.11 93.41 44.81 34.04 24.62 75.47 74.78 44.80 27.01 84.15 57.37 70.11 34.11 8.46 42.93 48.52 33.36 16.50 39.70 89.02 39.86 36.65 53.95 60.37 64.46 21.88 20.02 43.11 73.77 71.53 33.54 67.04 41.58 66.76 33.72 98.82 48.87 73.09 10.16 27.77 99.51 95.89 0.69 47.51 76.03 63.29 19.09 51.09 83.45 1.82 14.63 97.24 63.96 10.19 56.80 63.83 74.24 74.29 52.34 89.00 3.67 62.18 92.79 55.90 12.89 38.50 81.85 55.29 71.72 88.06 60.79 14.48 74.26 22.62 10.70 42.07 26.17 98.67 18.03 58.21 88.44 14.87 31.15 18.86 -47.65 68.79 41.12 78.57 78.02 1.70 47.19 4.11 25.98 92.63 81.63 48.32 24.21 94.19 59.61 6.63 18.86 37.90 59.36 93.06 78.86 76.01 99.46 64.98 13.89 83.52 51.27 71.06 85.05 66.25 26.09 85.32 94.64 23.98 15.59 43.45 71.54 98.32 99.37 54.44 10.85 9.48 29.13 39.32 85.97 40.10 5.84 17.50 65.35 29.08 68.88 93.03 30.71 78.82 44.24 86.95 85.18 30.46 19.50 65.12 59.04 99.26 41.35 51.42 66.99 91.96 70.17 51.12 26.50 83.11 10.96 43.17 39.06 67.03 26.88 99.11 60.21 13.39 65.13 25.82 28.39 24.70 38.00 11.20 42.29 62.82 92.88 84.02 20.40 82.05 8.39 86.26 25.63 84.92 18.70 62.45 54.89 18.10 85.84 98.49 -36.84 4.65 88.02 48.03 64.01 63.51 88.82 82.79 43.01 66.19 31.25 80.69 31.08 16.24 12.16 59.47 12.11 36.35 66.73 42.53 25.85 58.40 38.99 49.40 9.59 59.55 61.52 25.19 62.12 79.43 25.86 46.48 82.06 6.99 59.51 84.99 95.79 46.80 66.70 58.96 63.12 96.56 12.44 20.19 9.93 71.11 48.52 42.07 96.44 86.96 80.67 85.88 52.77 6.14 38.05 49.93 73.72 64.91 56.30 55.90 28.25 18.63 27.73 21.59 33.80 47.43 4.09 14.20 27.48 24.80 80.46 67.58 13.99 76.31 28.71 60.71 55.34 97.24 44.51 74.50 94.96 49.75 48.66 71.41 19.52 20.30 29.85 33.74 99.46 72.15 93.58 24.48 32.61 75.65 13.86 89.68 25.12 98.55 51.10 92.49 -38.24 83.70 58.42 52.95 88.95 38.24 50.75 76.12 32.46 31.89 32.27 56.56 60.18 11.14 59.57 91.92 47.73 8.24 3.43 89.35 66.27 93.55 58.05 70.14 47.22 48.37 29.18 78.82 35.76 5.70 18.55 11.92 36.40 57.13 12.82 61.43 1.36 32.55 3.98 54.55 46.93 12.48 31.02 2.19 99.67 9.41 14.13 78.58 47.72 32.49 98.97 41.92 28.23 24.42 20.04 33.75 26.16 60.54 69.72 19.65 43.34 75.59 52.08 34.56 72.46 71.80 27.76 5.41 32.44 64.40 48.74 16.26 39.79 1.04 46.56 63.27 8.74 88.22 84.92 98.58 73.90 68.93 8.04 28.70 50.61 26.93 68.02 54.42 37.02 39.11 14.56 29.97 63.99 95.42 3.71 93.34 89.72 19.94 49.35 83.51 -97.50 30.95 22.16 56.24 67.44 61.21 70.82 74.28 37.16 66.51 90.24 10.76 98.54 81.95 8.67 70.75 42.10 49.07 46.69 72.11 43.25 28.30 18.31 55.67 82.94 63.95 42.05 90.19 33.68 76.11 51.88 38.61 23.08 97.38 93.43 16.42 54.37 65.62 63.74 5.03 82.08 23.84 35.91 67.22 22.33 49.59 20.60 13.94 44.04 39.98 78.32 94.22 38.98 91.49 14.15 86.95 46.25 8.93 88.67 66.24 60.44 11.71 1.78 37.09 66.98 11.34 26.67 61.40 11.55 55.36 52.32 56.73 88.54 51.85 26.57 50.19 23.76 54.38 55.41 91.44 91.28 85.35 55.60 12.09 99.09 86.46 37.82 86.64 95.55 45.93 83.38 11.62 10.08 83.24 37.56 56.38 45.49 83.24 0.07 54.12 -24.45 26.02 13.21 83.46 98.31 16.88 12.25 82.64 7.16 17.14 66.60 19.71 99.28 93.01 13.90 99.15 95.49 99.94 21.58 55.64 26.46 99.15 5.09 3.64 42.05 6.87 70.98 50.44 48.98 41.15 83.29 90.50 39.23 48.10 67.93 43.32 69.40 60.40 48.75 24.97 1.79 36.83 39.76 51.93 49.99 46.98 12.49 9.25 12.09 11.86 23.89 23.20 1.31 96.16 25.50 59.86 84.61 82.79 18.47 16.26 66.77 79.76 96.12 61.60 50.18 42.94 0.65 83.34 34.99 69.88 75.22 70.16 46.34 90.82 14.51 83.11 50.80 1.99 98.66 61.91 28.18 23.27 31.62 59.61 53.73 28.95 27.40 99.25 40.13 7.43 76.82 8.49 43.02 58.35 34.65 96.73 81.44 70.84 57.84 30.74 -77.08 14.37 48.96 37.01 15.03 78.02 51.35 75.76 13.01 33.73 43.14 48.73 6.34 61.49 73.19 85.37 17.31 86.57 17.31 22.11 86.25 61.00 76.83 97.53 65.69 29.24 86.61 38.01 60.35 52.46 85.15 25.71 41.24 59.50 19.29 6.54 56.85 50.24 30.93 34.01 92.16 10.06 37.93 63.87 33.56 32.41 93.55 78.90 68.34 52.62 5.16 52.23 56.17 69.98 64.97 50.86 95.77 42.29 33.79 96.99 6.64 75.82 77.34 68.32 74.39 88.17 86.28 99.02 76.23 75.18 74.58 26.43 7.51 96.98 59.56 76.96 53.21 7.45 58.87 8.28 14.44 27.62 14.78 53.79 51.83 38.23 12.75 35.49 24.94 68.46 70.88 77.17 64.29 17.72 98.93 23.59 29.49 16.34 69.59 99.49 -56.33 84.58 71.43 8.58 39.98 98.47 66.70 19.01 46.94 54.87 39.35 36.11 57.17 36.62 57.23 92.94 22.36 98.72 51.93 45.19 80.89 1.72 70.08 91.68 14.22 64.77 99.29 50.16 2.67 63.44 2.80 55.43 27.42 96.51 63.90 88.24 1.69 33.61 12.13 8.45 46.32 5.13 36.05 9.26 5.30 11.56 6.61 74.80 53.40 36.04 1.20 59.03 24.69 85.72 11.00 11.41 47.29 20.42 96.05 80.57 86.01 56.96 54.74 32.82 57.15 52.93 39.67 76.45 44.24 55.12 94.66 95.35 35.08 46.28 48.86 13.09 50.30 33.71 30.48 2.87 77.45 54.16 42.91 13.25 51.63 15.01 4.36 63.85 66.18 19.06 20.46 12.93 79.39 74.31 96.63 69.46 27.29 18.42 64.31 63.26 -61.97 60.37 18.00 37.34 39.27 84.64 48.37 97.25 68.18 51.47 96.75 98.66 37.67 7.91 5.31 22.78 20.02 88.95 94.38 40.08 44.82 84.09 92.10 46.07 46.28 75.90 74.23 22.98 68.17 85.86 94.16 56.41 60.82 68.71 29.96 9.11 0.89 94.96 72.66 65.47 94.87 66.16 90.06 75.60 73.76 82.40 62.41 36.59 89.50 27.18 82.69 7.52 99.78 22.15 49.94 13.39 52.17 53.99 0.51 25.86 36.77 49.46 31.63 22.71 80.70 2.09 22.32 72.14 11.24 1.62 65.89 25.63 6.33 12.02 2.01 24.51 11.20 36.78 88.43 16.89 43.21 37.06 26.21 38.01 3.56 2.64 58.75 84.26 90.10 53.13 67.36 61.46 52.59 94.37 58.10 74.71 79.66 52.68 85.11 11.45 -19.60 32.47 74.13 80.05 63.01 48.97 28.26 83.36 70.97 23.95 58.30 69.52 34.55 6.28 52.53 42.51 88.42 93.69 94.69 35.26 0.33 78.57 8.13 48.00 16.87 67.27 82.18 48.03 96.36 83.72 76.41 83.18 18.85 9.66 90.04 75.49 16.70 65.62 38.65 39.31 42.90 87.57 46.06 37.55 3.13 51.18 91.76 27.19 47.34 77.46 61.12 34.45 71.71 38.69 14.56 45.34 88.58 9.22 45.59 74.28 37.55 4.94 52.11 66.63 0.22 1.60 55.76 54.97 78.67 40.21 26.74 58.59 72.34 8.67 92.68 1.09 61.51 37.06 0.57 29.28 25.27 67.07 9.58 24.88 63.59 3.46 48.51 31.21 66.92 84.32 47.50 33.91 84.24 87.18 36.76 47.22 34.10 60.73 90.44 43.32 -85.49 90.59 18.38 35.66 27.13 84.36 5.43 99.15 76.15 74.66 77.83 8.66 38.67 63.88 77.72 54.72 78.73 43.73 1.73 36.86 58.87 95.93 47.52 65.71 9.97 46.99 51.56 81.31 15.43 46.43 91.58 79.15 23.87 84.59 59.71 44.83 20.41 16.54 23.10 95.02 32.61 11.23 20.86 17.79 54.75 57.49 49.61 78.86 23.20 59.67 32.30 24.82 31.57 79.85 48.07 21.64 68.73 92.69 56.21 18.64 29.03 42.63 94.39 15.48 7.63 56.43 33.79 12.61 2.49 19.32 28.29 1.80 46.15 53.68 1.42 22.68 87.65 79.24 65.55 67.54 25.60 72.90 74.66 57.72 75.85 39.12 43.78 76.66 69.85 17.11 30.13 40.39 93.28 11.52 48.89 60.92 43.50 59.22 9.62 8.66 -29.01 59.81 84.32 19.39 4.75 8.31 12.05 54.04 15.52 77.51 0.70 14.10 81.88 67.51 27.81 83.96 86.24 26.50 94.59 2.92 96.23 2.18 1.39 8.21 13.41 8.78 32.86 38.85 58.12 92.83 11.49 75.57 48.41 36.79 86.59 2.57 91.78 82.79 75.02 41.17 36.33 61.75 9.84 61.35 55.91 2.40 84.72 50.25 28.76 78.98 64.57 70.21 57.26 57.38 42.53 76.44 53.08 70.42 8.70 55.78 34.60 16.65 67.82 29.34 18.32 98.87 36.50 59.11 78.02 48.52 7.17 17.68 71.92 20.28 62.29 75.05 15.78 30.11 90.45 33.43 23.86 73.65 67.58 12.26 82.95 7.24 30.09 72.35 14.37 80.11 80.08 97.05 51.68 3.98 3.82 62.96 53.62 86.51 61.49 75.41 -47.23 59.85 48.56 86.40 54.16 53.54 1.38 46.61 27.44 14.30 55.37 42.14 11.26 60.11 76.17 80.22 59.11 31.56 66.14 88.99 12.29 36.70 6.53 32.97 16.46 28.29 18.72 34.87 56.99 7.57 27.29 43.92 90.89 34.60 14.10 34.23 34.92 15.63 43.54 73.67 70.71 11.37 14.89 17.34 7.92 64.65 43.03 82.00 51.65 49.22 35.95 34.07 81.28 24.28 82.20 44.98 81.49 32.88 79.39 14.82 78.63 3.25 9.45 42.88 73.43 48.72 22.65 7.89 35.02 80.57 38.41 43.75 50.36 56.78 38.66 65.47 58.34 70.21 80.23 71.23 88.24 10.07 57.46 5.94 48.16 14.10 84.22 58.59 89.33 94.60 56.06 23.87 23.20 19.22 64.52 61.00 94.97 30.87 38.13 72.36 -50.86 39.95 39.32 21.23 44.29 12.00 5.39 2.88 56.19 91.39 41.82 87.94 61.24 53.51 97.16 60.63 64.18 91.50 60.11 81.92 67.32 96.11 45.10 94.35 84.26 80.52 49.02 4.53 87.88 3.64 46.67 87.51 15.66 88.99 57.49 85.62 42.76 43.95 25.74 46.53 37.78 13.94 75.71 4.35 14.39 0.83 34.80 37.86 75.35 12.49 30.64 14.10 13.25 18.70 58.14 61.65 27.70 98.13 24.50 39.29 73.10 56.82 46.99 13.81 71.22 63.64 9.17 91.78 53.09 98.47 6.94 96.98 59.05 30.47 82.20 90.25 17.69 8.37 65.08 7.67 83.82 44.10 58.33 94.60 65.54 0.21 54.11 71.65 17.43 79.61 26.53 18.05 89.22 5.38 97.10 27.03 16.03 32.74 64.57 18.64 -22.20 92.95 18.89 54.75 96.78 58.97 31.56 88.63 60.63 40.66 92.85 49.07 65.36 9.00 8.05 44.75 74.28 85.01 35.66 32.20 88.36 38.84 31.77 78.43 93.15 70.51 97.65 98.33 36.03 47.27 25.63 1.28 75.71 0.68 85.48 85.16 37.53 65.08 78.65 37.68 46.49 62.55 40.84 28.45 34.24 21.25 70.49 39.29 27.71 83.41 46.37 40.35 71.33 45.42 63.75 61.57 0.11 73.06 44.92 34.06 68.72 81.31 35.58 69.73 72.11 78.98 27.07 7.40 90.77 30.97 85.86 19.81 85.09 1.70 32.67 13.11 4.37 56.86 41.35 89.01 81.77 74.12 20.22 70.21 60.46 4.24 72.88 22.09 90.53 18.22 81.80 1.87 49.36 7.66 80.18 37.02 91.31 38.03 12.64 91.49 -63.08 51.13 52.69 45.81 95.01 26.65 8.12 50.10 96.52 5.77 89.95 62.34 40.46 66.53 1.25 62.58 24.58 95.20 37.02 78.24 38.03 85.24 66.86 93.12 76.51 37.26 29.28 40.58 5.24 61.66 20.20 0.58 67.78 81.38 71.68 21.50 56.59 63.54 33.22 89.42 75.77 91.43 73.22 84.24 5.90 86.68 61.28 53.43 15.53 6.21 98.12 37.48 81.60 25.36 2.89 6.20 56.30 38.01 46.96 6.06 83.12 15.94 43.90 92.10 58.28 12.32 17.45 54.26 55.05 75.10 91.71 36.42 41.22 65.44 85.83 98.54 38.95 83.48 55.42 55.62 52.22 93.40 88.52 6.54 68.65 65.14 97.07 56.43 96.27 64.53 45.60 52.48 15.37 52.57 63.92 23.00 0.06 20.83 45.55 80.66 -59.27 32.14 18.87 77.92 20.34 18.08 81.08 52.56 87.25 98.17 84.19 6.73 84.10 19.94 59.41 3.44 88.57 70.14 66.61 44.59 44.33 83.87 81.61 39.68 36.72 70.29 29.15 39.72 27.26 92.77 26.91 61.37 9.66 66.54 81.26 21.66 26.69 50.40 56.96 72.96 38.82 12.83 16.19 82.17 1.42 46.96 19.07 63.72 28.76 26.41 14.97 53.88 31.02 7.50 38.14 99.95 77.27 5.82 40.07 91.54 4.63 97.34 77.36 89.92 45.78 65.61 38.40 86.12 87.72 92.43 52.75 59.98 60.77 60.22 70.33 87.05 48.61 25.26 98.16 34.08 57.21 28.34 56.17 79.73 74.05 8.35 14.12 25.29 29.58 62.76 9.64 71.39 17.77 2.22 11.28 47.47 34.77 57.80 87.43 46.62 -92.11 63.61 44.82 48.92 91.51 67.54 77.18 95.78 27.04 41.67 96.75 98.62 90.41 25.91 37.40 8.69 16.31 43.07 43.24 2.88 28.19 41.08 53.97 72.48 90.83 16.38 48.02 22.92 8.42 81.47 19.70 58.46 60.16 14.66 76.89 53.87 93.59 48.49 69.68 10.79 38.34 18.10 76.95 58.21 73.78 56.97 21.19 60.25 79.44 65.69 4.83 36.97 32.46 17.77 84.61 41.01 85.74 23.16 75.91 20.47 87.36 55.10 75.08 40.67 79.37 3.45 92.04 95.63 34.72 68.48 61.90 9.51 94.22 31.20 89.97 49.57 88.22 59.94 97.93 16.70 39.65 11.96 41.14 32.68 97.18 69.23 95.30 92.45 54.68 78.99 1.25 47.08 84.14 64.73 67.71 53.26 52.29 1.85 67.02 70.70 -4.28 87.41 8.24 19.35 57.43 13.95 50.57 56.06 4.72 19.08 30.99 78.01 9.42 89.60 37.39 50.32 90.93 93.29 24.88 72.87 25.38 76.54 20.75 71.52 24.77 54.77 4.67 22.04 19.54 22.84 6.36 26.06 1.05 22.37 25.91 63.25 68.02 58.06 4.16 63.25 33.47 87.69 71.68 55.67 9.80 54.27 92.27 56.51 76.36 10.90 61.48 4.51 35.96 12.96 79.85 75.61 87.41 97.13 41.39 0.44 24.96 65.60 14.46 26.08 7.82 30.28 1.82 98.17 93.15 44.02 75.68 19.10 0.03 36.20 7.86 35.27 85.64 61.23 97.79 91.96 82.22 43.45 6.74 98.59 47.42 66.46 31.54 35.76 79.58 17.25 89.44 26.51 18.28 14.87 52.34 36.47 72.83 93.66 34.33 12.49 -6.25 19.55 95.78 57.27 8.41 64.34 1.72 93.63 74.63 9.32 18.30 93.62 27.81 21.74 60.14 13.26 75.97 8.99 45.96 84.53 95.43 25.06 35.49 16.81 66.29 83.82 2.64 24.02 74.22 41.67 4.00 32.80 81.52 53.20 12.61 66.72 25.48 4.29 66.34 48.13 83.16 59.29 13.42 47.45 11.94 52.13 48.62 29.94 86.01 84.19 90.46 55.41 41.81 30.80 69.15 82.20 12.93 17.47 86.62 18.11 33.88 79.46 68.31 13.60 17.65 24.50 66.75 74.34 65.44 32.17 22.86 55.76 3.42 8.44 40.33 52.47 16.24 77.61 85.45 52.23 41.09 35.94 29.79 69.08 40.84 27.05 28.64 95.27 8.06 64.29 49.43 38.24 65.98 75.02 8.07 72.03 46.59 77.80 11.74 73.04 -12.93 18.13 92.55 88.62 79.75 51.33 7.22 13.63 37.85 25.85 76.88 33.02 53.53 63.60 31.19 72.04 86.45 53.61 56.33 99.04 19.43 27.32 41.76 31.31 35.72 56.83 14.42 81.28 20.35 37.74 63.17 22.84 49.31 74.56 95.47 60.42 65.98 74.73 71.95 5.18 23.38 57.98 64.60 24.44 78.93 73.43 62.63 38.54 73.94 28.35 25.85 79.22 41.57 18.54 73.90 98.09 41.79 18.54 77.98 20.44 34.24 76.40 47.33 85.42 53.81 22.30 9.80 3.20 35.18 35.01 90.86 75.45 52.17 23.05 76.66 93.09 96.01 27.65 50.81 7.52 98.26 7.82 57.71 22.45 71.66 77.89 38.07 54.32 42.92 40.65 79.67 35.47 85.46 61.96 2.76 69.34 30.47 59.83 85.46 64.88 -73.16 11.84 16.69 9.50 23.81 42.14 50.02 52.08 70.47 38.02 81.36 46.50 58.42 82.85 41.03 30.20 26.64 6.28 4.22 88.74 91.50 54.87 26.85 49.71 57.47 27.40 5.49 52.28 60.04 1.73 77.37 26.36 61.89 61.54 51.29 7.91 98.66 64.22 72.49 18.72 18.47 21.59 68.23 62.44 82.79 16.96 24.35 3.56 68.02 67.63 24.44 43.15 20.55 92.31 93.91 10.82 10.17 68.28 90.19 59.66 83.96 36.79 16.21 1.74 84.98 63.62 39.95 72.19 50.41 51.06 8.12 43.28 57.55 59.26 76.07 97.73 74.60 57.66 8.36 34.72 75.18 69.62 55.18 36.00 81.34 19.32 79.45 23.31 43.33 14.11 27.82 14.58 89.32 22.73 67.40 23.40 44.40 17.98 76.87 81.09 -98.73 81.68 28.67 21.60 39.01 67.66 13.56 83.51 61.22 49.74 89.25 3.21 83.83 66.98 30.81 29.90 53.78 96.50 32.91 19.07 27.93 75.04 47.87 71.55 92.33 87.30 57.05 79.38 45.78 86.93 11.52 90.52 2.09 52.52 12.85 89.70 80.30 86.04 8.06 80.10 59.61 90.31 19.78 41.62 92.41 45.05 87.60 86.16 7.63 79.35 55.62 79.78 30.17 74.75 68.70 98.02 63.58 62.92 91.72 60.68 63.35 86.08 56.00 53.03 32.40 16.81 25.29 81.23 15.93 49.35 14.74 15.44 36.60 51.24 17.03 85.81 83.26 74.38 75.80 3.58 32.15 83.91 6.48 85.67 96.66 15.89 45.76 15.03 90.58 33.28 95.11 2.25 5.18 75.12 44.16 89.86 76.75 94.72 77.75 29.67 -70.02 7.68 24.10 76.03 12.14 73.59 66.51 16.89 74.31 26.96 97.94 95.83 53.54 31.96 50.33 96.26 87.94 7.62 44.21 60.03 15.71 24.61 29.95 68.02 80.11 95.66 68.73 96.79 60.85 8.86 68.58 20.95 59.10 15.08 74.85 79.47 83.97 22.24 14.90 0.48 87.66 61.71 29.70 85.70 92.41 52.87 6.93 48.25 19.17 61.96 59.42 76.95 1.19 81.18 59.38 22.73 98.81 21.98 47.47 56.76 5.94 88.61 52.86 49.57 71.77 63.58 67.44 50.46 81.09 7.49 82.72 2.46 98.52 59.52 81.70 81.90 22.91 74.15 86.77 62.27 4.93 11.51 47.33 55.43 64.24 90.58 10.80 57.30 26.09 73.54 95.12 4.06 33.07 33.31 44.95 57.95 53.53 37.42 28.09 23.62 -69.46 84.30 92.86 98.10 71.09 59.43 53.48 78.95 62.09 88.64 17.86 25.23 43.84 96.56 76.68 52.03 53.46 42.76 81.92 53.09 76.81 86.70 79.87 40.43 35.61 95.56 10.90 76.99 51.34 17.29 18.11 29.35 89.49 98.64 83.81 20.81 17.11 88.61 10.09 82.43 8.83 17.89 37.15 47.68 16.11 44.05 99.51 48.71 94.62 17.59 45.64 8.25 74.73 91.39 89.21 38.74 6.32 30.19 50.02 54.78 87.57 75.88 36.25 96.18 53.51 99.32 11.89 42.37 88.01 44.23 27.00 61.02 12.58 41.92 36.04 35.30 35.57 0.19 74.35 48.48 40.32 25.41 93.56 74.13 11.18 8.35 38.53 74.05 17.43 71.25 77.81 17.08 51.62 58.13 9.16 71.99 19.54 58.00 99.11 72.36 -0.11 3.33 97.16 45.92 78.85 2.26 44.25 67.54 74.08 29.17 65.44 64.30 73.04 16.36 45.93 39.31 80.82 69.12 9.05 24.21 36.64 24.16 40.96 65.84 73.09 38.75 74.39 31.52 5.88 89.61 68.37 0.96 50.97 30.37 91.75 15.71 15.62 6.89 54.53 80.96 62.16 40.25 49.89 24.81 3.03 85.88 33.18 5.34 53.74 53.69 81.11 5.33 54.12 66.30 91.69 98.44 20.24 50.36 2.73 22.49 23.11 43.27 71.19 16.71 72.97 30.92 0.74 18.00 97.35 32.63 96.72 13.59 32.37 27.07 66.47 53.20 54.20 28.48 75.96 74.03 4.45 90.18 44.14 38.99 98.30 81.61 46.26 84.39 41.92 49.88 0.95 35.91 85.91 35.15 0.64 68.36 17.58 65.47 85.43 9.77 -56.86 68.06 28.55 59.29 39.90 43.98 9.60 17.99 56.40 33.98 83.66 26.66 90.43 89.42 46.75 9.54 35.45 90.25 25.61 33.09 81.94 94.74 23.04 92.62 39.90 48.21 12.63 6.54 78.84 35.14 31.70 71.26 1.20 81.16 30.07 49.75 2.73 26.93 21.95 28.29 44.61 14.03 83.30 40.36 37.99 7.15 11.18 10.98 48.63 42.01 21.60 4.42 27.77 71.63 2.07 70.73 29.58 41.23 99.66 16.68 19.15 66.82 77.45 42.23 51.29 76.70 39.30 7.66 8.52 56.78 79.72 74.33 17.13 44.70 41.64 96.30 19.02 71.49 52.95 33.76 77.88 11.81 58.40 8.41 16.52 70.98 85.39 16.71 82.86 24.48 71.83 57.44 48.73 99.92 68.80 44.23 80.45 17.69 54.12 3.25 -79.88 6.34 28.51 37.08 42.05 3.37 64.79 3.90 37.11 59.29 67.06 36.59 70.99 53.52 88.55 21.70 54.76 95.64 41.27 23.13 43.93 77.91 36.32 72.61 60.17 52.27 88.10 44.51 40.01 12.62 22.41 53.83 85.36 99.36 86.65 33.43 7.26 10.72 82.66 13.10 51.16 70.24 30.69 81.94 12.46 3.90 80.23 98.89 95.14 58.69 71.57 41.48 86.48 63.39 73.95 7.79 18.69 77.39 71.27 17.02 72.33 41.68 26.49 72.73 28.43 54.42 36.34 45.79 64.26 37.22 47.82 57.79 77.10 30.20 44.89 4.27 41.50 79.43 67.55 3.74 82.07 60.23 15.28 57.14 69.02 9.15 48.76 95.06 73.71 62.06 82.91 39.95 71.99 92.77 24.28 21.41 11.26 95.16 54.16 84.77 -90.82 8.49 7.00 42.95 40.00 60.06 81.76 57.71 85.79 60.61 18.52 92.70 54.16 52.18 40.99 47.67 30.96 88.55 90.77 10.56 38.50 64.86 6.36 86.14 35.51 38.21 22.05 23.50 45.88 24.47 58.85 57.34 91.10 71.58 28.76 27.85 18.29 88.58 60.32 80.93 33.28 9.61 58.60 79.99 71.56 59.02 16.87 12.17 92.24 9.10 88.79 57.03 54.75 93.47 54.54 8.70 55.56 15.08 81.58 69.68 24.23 80.50 81.70 6.34 26.51 1.85 78.94 94.05 17.16 63.45 82.11 10.88 43.96 6.40 82.43 31.76 88.48 54.40 86.00 95.81 57.52 56.42 65.65 58.48 51.75 29.01 8.61 1.77 18.01 48.58 94.58 45.32 69.98 21.20 44.31 54.67 5.00 52.43 90.07 4.82 -12.18 91.68 77.06 61.11 19.92 6.31 77.84 56.26 84.63 77.35 41.02 79.08 47.71 21.99 98.11 63.51 39.83 35.83 8.83 22.43 22.35 59.29 85.07 80.24 24.68 10.64 59.33 16.44 37.67 7.32 11.21 94.25 95.72 11.12 8.54 14.51 80.90 67.00 50.10 31.23 72.84 37.33 10.06 19.56 15.10 19.76 12.35 25.77 37.80 36.99 19.60 89.93 65.61 71.18 33.85 25.56 71.90 0.86 31.01 83.49 2.96 81.28 35.74 59.94 28.38 90.65 95.92 76.14 73.11 35.00 76.69 16.29 6.76 76.55 33.72 99.80 71.92 25.29 32.03 9.23 68.98 64.07 44.02 3.45 51.39 80.72 73.70 63.94 61.79 42.33 41.64 21.77 47.39 21.28 72.62 11.91 65.94 13.38 49.81 7.79 -49.94 41.44 45.80 27.50 49.21 12.39 24.14 65.11 40.10 23.93 31.36 30.11 24.13 2.92 7.86 26.76 93.98 68.84 21.84 31.17 66.19 91.32 22.73 38.71 20.45 35.92 86.92 92.34 90.98 21.74 86.46 48.83 76.22 39.17 46.19 50.43 28.59 38.28 45.51 4.86 88.87 88.50 29.61 48.65 39.93 69.87 86.07 57.22 63.07 14.13 59.87 14.54 83.44 16.41 26.17 78.21 40.48 15.80 66.51 45.49 95.51 28.81 92.17 43.01 71.32 74.88 48.00 81.76 87.53 46.87 81.75 83.25 16.26 40.73 57.46 84.59 95.24 97.38 99.36 3.29 64.19 16.24 50.29 24.71 64.93 62.77 24.25 15.43 10.47 67.85 49.07 67.58 67.57 28.81 32.05 51.58 6.75 1.51 39.70 38.05 -41.92 16.75 74.61 53.12 95.34 82.19 33.87 98.21 2.93 33.36 83.26 26.14 8.18 18.35 68.98 38.83 79.52 11.80 14.64 29.06 34.00 4.84 61.49 63.33 69.02 65.67 33.48 40.99 25.39 15.22 74.42 24.37 88.82 88.36 90.89 63.05 34.07 74.99 34.22 69.37 88.87 64.93 93.63 35.79 52.57 33.23 88.83 15.57 90.12 51.37 70.83 29.41 44.87 23.83 85.58 38.14 42.87 86.28 47.86 29.45 65.01 26.65 19.51 95.62 29.87 23.98 75.66 44.10 53.38 92.13 82.99 22.64 49.17 4.00 40.07 38.00 64.90 82.85 60.19 9.04 80.09 78.99 46.08 44.97 70.37 80.79 22.85 48.57 84.21 83.74 52.08 75.75 77.58 36.84 78.96 13.62 52.81 11.85 89.02 99.94 -95.30 15.70 0.42 95.33 91.24 11.90 4.01 10.49 55.81 92.38 36.70 7.25 22.84 64.88 64.42 90.51 10.88 99.85 70.66 25.94 21.14 3.57 25.85 24.33 76.82 24.04 80.45 7.25 91.56 82.41 72.58 91.83 74.44 93.89 99.12 37.12 62.81 10.16 87.55 5.04 43.01 30.63 45.71 54.37 76.72 95.73 26.62 28.34 0.66 26.19 28.83 18.41 16.55 48.93 88.10 19.67 47.88 5.06 60.84 10.04 96.64 36.18 68.28 83.88 60.69 79.05 77.16 32.79 95.26 51.54 95.94 68.69 18.16 37.37 57.66 74.04 34.12 16.90 48.88 3.02 34.09 4.63 26.75 54.02 98.49 33.38 97.20 6.71 9.83 79.07 83.45 67.06 29.30 30.12 14.09 54.87 95.22 77.83 45.57 85.52 -71.79 2.27 87.46 66.28 32.31 32.98 1.74 72.10 44.77 91.20 60.38 0.04 46.79 59.17 79.16 2.84 11.44 55.98 30.05 11.81 62.73 1.13 95.71 12.05 16.23 32.14 72.40 87.74 53.18 14.47 13.47 35.80 65.24 66.54 62.82 73.63 33.75 23.07 18.27 83.26 13.80 58.36 91.70 21.99 94.43 10.40 22.25 13.63 68.93 78.66 7.53 87.74 72.52 42.08 90.56 47.36 65.72 80.83 88.81 60.25 6.02 48.01 44.12 59.91 67.26 42.73 36.19 47.40 10.17 22.74 32.18 75.99 61.28 66.18 42.14 16.41 76.64 99.46 82.02 27.15 45.73 31.77 36.04 22.68 48.86 78.02 95.17 43.11 91.82 23.34 96.14 29.84 93.43 72.51 89.65 39.54 61.41 90.00 72.74 75.80 -46.88 32.63 91.01 69.88 98.75 9.67 13.00 77.07 35.68 97.99 20.98 23.51 40.71 40.65 97.43 1.23 36.70 39.82 81.78 5.47 68.91 25.10 5.32 54.22 24.75 22.89 46.93 40.58 46.19 19.66 36.36 69.06 13.89 3.45 12.07 84.90 65.86 68.56 48.67 80.41 52.70 72.24 89.38 6.08 12.59 15.05 17.86 57.43 9.80 43.99 33.20 5.33 15.44 60.99 80.43 7.63 97.07 86.87 51.83 11.89 45.90 46.92 56.07 47.89 6.97 54.82 87.47 81.06 13.52 87.17 4.90 16.12 32.94 40.97 89.93 28.85 86.68 92.84 54.90 87.06 47.25 96.65 83.07 36.38 30.79 70.93 99.30 10.62 51.73 0.68 17.86 44.12 95.20 65.39 3.68 42.94 79.17 55.23 67.53 18.28 -11.09 50.39 8.12 2.39 5.81 68.33 37.26 58.02 42.56 18.47 3.78 23.53 60.44 91.62 50.43 95.86 95.41 39.40 85.17 40.99 14.66 45.57 49.30 46.41 97.50 39.82 68.80 70.46 30.42 3.13 76.98 71.99 86.36 32.93 70.23 86.80 12.70 49.77 61.02 32.31 52.37 99.44 60.21 73.37 24.24 25.73 83.90 36.36 97.24 93.29 14.48 75.46 5.26 79.05 53.45 34.20 37.30 4.90 49.69 15.66 51.36 48.19 75.07 60.45 6.78 40.75 26.45 70.53 96.48 70.93 34.27 27.76 88.65 11.48 12.64 39.13 41.51 80.66 96.75 93.55 91.26 67.63 55.01 11.03 53.58 3.52 11.72 19.18 48.22 16.83 1.07 32.23 63.95 65.61 68.60 89.29 72.34 87.19 40.42 23.49 -4.16 92.66 33.04 12.62 34.08 96.64 16.49 46.94 83.93 87.30 37.97 35.10 8.70 88.70 25.91 81.89 68.27 24.98 48.07 36.37 55.72 20.11 37.87 59.59 82.36 51.95 11.71 21.49 38.92 71.83 27.77 15.70 5.36 97.74 68.54 85.66 99.79 86.19 32.12 92.21 75.82 68.15 96.11 56.28 68.14 24.69 11.31 92.63 87.54 83.54 37.20 66.71 77.72 58.96 53.02 57.61 60.92 34.31 77.85 43.77 79.66 70.27 81.89 61.74 9.55 32.74 69.68 39.30 75.56 77.62 47.42 37.33 2.29 95.19 59.69 11.51 90.11 95.03 30.49 14.38 84.37 21.51 98.19 9.84 15.43 82.02 19.65 98.21 71.67 94.78 83.79 94.65 96.52 20.64 61.30 53.81 50.85 87.41 78.81 6.04 -63.58 39.86 72.05 3.21 11.42 26.49 58.19 94.57 2.14 72.19 59.06 60.64 79.86 46.62 80.23 59.78 2.92 69.78 50.03 62.59 58.86 62.43 57.34 93.19 72.00 59.22 17.19 46.40 40.93 94.02 14.13 93.04 29.89 44.33 44.84 59.50 24.26 99.55 56.92 21.60 11.13 66.16 2.74 58.08 53.82 50.13 44.40 29.84 79.51 80.22 20.30 55.94 44.85 61.01 91.74 64.02 87.60 83.06 37.25 41.59 69.76 94.50 38.79 89.42 35.30 25.37 26.74 59.39 62.77 85.45 69.97 80.93 23.44 90.83 2.71 95.10 8.09 91.75 42.87 13.65 74.35 50.08 8.45 79.60 42.55 65.93 86.43 93.03 89.21 97.70 9.70 44.96 10.20 47.28 60.21 57.35 28.87 48.44 24.36 14.46 -30.63 78.42 29.38 90.99 3.69 33.38 91.28 66.76 62.73 29.02 57.80 33.01 66.77 56.03 88.96 12.56 80.86 20.45 99.52 11.97 27.62 5.89 81.14 52.62 19.47 63.85 85.05 22.40 75.60 49.04 98.53 27.52 15.98 48.51 41.81 69.93 21.32 97.44 96.02 75.31 42.80 10.40 92.07 97.75 32.33 68.70 44.71 2.58 24.49 69.85 0.08 93.15 19.86 79.71 46.76 82.26 54.97 52.25 62.16 22.90 68.14 21.89 27.37 16.12 54.61 67.85 14.74 22.81 78.68 5.95 28.77 88.85 71.96 31.26 74.06 86.51 73.72 53.13 87.51 82.38 63.26 91.72 26.98 43.93 58.87 59.26 85.77 12.16 46.15 1.56 26.02 36.98 32.81 80.79 11.26 96.43 52.62 58.34 0.46 95.74 -10.96 49.16 27.59 53.85 51.96 59.67 51.27 50.55 63.73 83.32 53.72 55.33 89.34 64.41 33.25 26.54 80.84 51.25 92.03 72.25 65.36 25.88 20.09 61.92 45.21 16.80 7.11 61.56 6.36 77.80 82.45 28.19 91.73 7.84 42.49 28.85 48.15 72.79 4.05 76.86 50.56 2.34 97.41 95.04 60.28 56.85 96.27 34.40 49.94 49.67 98.06 73.73 63.87 87.10 79.20 65.00 14.88 61.14 28.64 50.08 29.77 17.00 10.69 32.94 55.80 2.95 46.82 35.67 2.65 73.84 74.43 41.73 74.71 11.86 78.00 27.30 44.42 51.13 94.52 23.03 83.11 43.17 56.35 24.15 40.21 11.30 67.28 85.59 2.29 45.34 0.23 7.87 97.41 6.48 67.64 93.67 95.64 33.75 53.91 80.83 -17.32 17.37 47.53 95.47 14.25 77.44 70.37 45.05 71.51 25.52 22.40 82.87 61.08 13.33 92.29 65.43 44.37 44.18 45.13 89.47 87.50 81.55 97.01 90.71 67.56 89.55 69.87 67.36 33.28 31.21 41.08 34.86 12.43 0.98 3.50 98.82 85.88 24.02 35.56 17.45 87.11 57.56 22.50 61.39 14.53 97.09 50.47 42.47 97.81 15.63 85.20 73.63 75.36 37.29 40.28 6.73 38.26 85.54 76.80 52.41 15.38 66.80 45.81 52.34 72.86 77.61 5.66 55.87 74.82 85.11 6.95 87.14 8.55 5.96 40.27 63.04 51.22 51.12 46.40 39.02 50.19 61.43 32.50 35.84 12.36 22.29 81.69 9.06 32.08 70.94 21.56 49.15 45.82 67.20 90.16 22.58 12.18 66.63 10.81 64.71 -19.29 59.85 74.45 77.43 39.76 14.36 68.25 3.58 46.73 7.77 3.87 29.79 12.53 26.56 61.31 5.30 8.68 5.24 87.30 20.33 26.54 23.84 52.70 52.54 97.33 39.00 63.75 11.48 27.83 46.91 86.80 77.28 21.22 36.14 21.43 90.35 19.63 28.38 4.27 87.48 22.07 60.00 30.75 12.17 69.69 42.00 25.38 54.29 58.05 41.17 24.16 18.71 85.75 93.38 84.63 90.34 49.34 30.79 6.87 5.29 38.77 57.50 89.86 33.81 84.54 17.28 60.11 24.55 91.17 69.33 25.70 82.08 64.00 53.37 32.76 4.92 5.43 7.86 27.05 93.99 43.10 27.72 75.29 9.91 66.25 19.74 24.82 51.37 71.59 37.19 32.47 67.58 97.71 70.55 67.18 35.41 85.46 5.94 49.53 79.34 -71.59 89.97 51.59 71.90 27.92 0.37 57.29 33.37 19.90 26.62 37.58 75.85 87.20 28.40 93.60 97.89 7.82 55.80 47.17 86.10 49.32 90.53 32.28 22.00 18.52 7.07 51.00 41.83 43.17 90.77 53.42 87.55 88.17 82.66 13.80 64.63 40.04 64.51 11.70 86.73 76.70 95.18 19.03 88.66 32.87 12.17 12.57 28.42 64.50 89.18 56.30 72.57 82.79 79.64 13.61 65.07 64.86 2.61 70.03 98.30 88.21 54.92 77.28 66.79 0.86 54.18 40.98 39.28 50.21 89.60 48.56 52.21 12.64 36.92 50.38 95.10 44.18 39.85 81.45 56.90 6.94 66.14 77.80 67.88 52.59 92.92 75.70 11.33 82.89 27.63 77.49 57.40 77.83 94.56 46.98 33.86 45.61 42.72 11.76 64.89 -87.43 18.38 6.05 92.44 22.21 52.05 85.30 33.21 67.99 95.81 98.33 13.00 20.68 78.55 5.00 0.07 91.34 53.91 89.86 93.05 84.64 48.52 96.82 79.13 6.96 32.98 13.93 21.47 35.88 16.50 95.82 93.49 21.47 11.28 99.33 14.53 59.12 95.10 5.88 55.23 25.88 65.39 95.23 27.52 20.20 57.82 28.02 47.17 60.21 83.44 57.78 85.39 22.80 55.35 73.67 29.79 14.28 99.17 78.92 10.66 39.27 71.04 59.02 10.96 12.29 68.11 7.63 97.33 18.64 34.38 50.88 52.75 37.45 64.62 8.84 73.91 88.85 88.21 4.04 2.94 26.26 99.72 26.25 84.63 46.89 73.81 53.51 4.37 37.92 92.61 24.61 96.90 60.25 37.20 0.70 55.80 92.57 57.57 4.14 60.16 -56.10 1.00 70.65 51.88 62.22 82.08 59.30 72.42 48.49 4.85 75.11 68.43 48.34 92.89 63.94 33.71 28.22 40.49 94.23 28.88 56.40 34.49 92.77 1.93 79.63 95.35 71.81 63.59 52.03 92.52 31.88 81.14 50.90 38.10 86.27 29.04 41.78 94.16 21.57 74.39 62.41 46.76 54.68 41.34 40.95 28.47 61.59 47.21 22.81 79.86 70.77 37.54 58.17 46.04 87.49 5.98 92.60 27.50 17.28 21.51 47.90 88.79 32.21 49.76 1.13 91.19 97.17 60.46 59.32 22.40 55.52 29.46 16.54 9.89 5.47 35.81 63.30 46.14 74.23 89.46 88.67 0.37 32.05 51.11 35.42 40.50 13.94 23.23 76.79 18.00 80.57 70.84 58.03 85.71 35.02 57.47 57.00 63.67 62.65 64.76 -33.63 3.21 1.60 92.77 70.41 5.61 53.14 32.29 13.95 62.24 45.26 67.07 4.06 59.80 15.42 60.24 69.04 93.46 68.20 42.04 55.24 10.27 75.49 38.20 10.45 19.25 7.95 11.13 76.26 33.27 66.04 17.10 60.94 64.87 72.41 18.34 27.91 73.51 87.86 98.84 41.94 21.26 12.73 97.77 28.72 27.24 91.49 20.81 39.55 43.61 85.78 8.58 14.40 93.97 13.33 31.33 29.23 45.83 40.44 6.42 31.11 79.36 5.25 57.86 47.83 40.45 99.64 55.12 10.38 2.37 61.44 41.33 9.83 15.29 98.33 6.37 31.91 13.30 52.10 90.64 26.19 34.70 15.13 30.05 39.17 48.46 37.22 74.20 36.19 52.46 92.26 33.47 62.68 89.25 49.21 67.59 39.84 38.67 4.59 89.28 -59.19 63.40 31.83 74.27 88.63 65.65 35.17 36.80 84.92 11.06 85.42 93.04 85.95 7.23 39.41 19.63 90.91 85.01 37.27 9.67 12.15 84.60 74.20 63.47 21.94 95.78 22.78 29.09 59.14 93.87 59.73 78.00 18.59 76.36 87.74 40.60 49.73 65.88 91.84 72.84 40.81 86.75 32.84 25.07 46.59 66.29 94.54 50.82 11.55 77.68 32.67 46.11 47.38 9.01 31.05 21.97 87.24 91.86 76.46 92.20 39.83 44.79 28.67 68.55 45.23 66.99 15.67 75.20 81.50 15.76 49.03 37.87 53.56 30.39 87.22 37.18 71.91 89.89 5.98 96.08 50.42 74.61 47.89 97.84 35.32 19.02 49.59 94.32 85.45 71.04 29.93 64.00 88.75 35.11 65.74 48.99 63.97 78.95 69.38 17.17 -92.62 96.79 17.95 89.47 82.48 44.52 73.38 55.29 89.48 7.35 21.90 66.22 5.38 6.54 11.58 71.31 5.57 76.96 58.37 70.03 32.64 31.34 57.29 99.53 93.46 81.78 79.87 25.11 47.97 71.10 37.96 53.21 49.02 62.26 60.48 58.32 77.45 24.86 35.97 29.95 3.49 99.93 48.93 11.34 34.31 89.95 39.46 44.30 96.40 64.58 26.78 53.07 27.38 6.39 22.90 69.78 22.55 43.54 17.76 94.84 6.37 98.58 97.44 16.58 43.81 51.32 49.48 40.55 25.42 49.38 89.84 65.22 75.00 82.57 35.79 46.48 94.49 90.20 91.83 99.33 91.94 56.87 98.15 39.11 91.51 91.32 91.09 13.61 16.92 32.48 6.09 7.74 36.04 19.54 89.17 48.39 16.41 43.72 45.23 76.45 -30.65 32.48 87.78 44.14 47.74 74.32 58.81 14.40 46.52 79.29 88.81 11.92 9.53 4.40 52.93 95.43 32.50 13.00 59.06 80.92 5.98 88.32 14.67 65.70 60.98 8.35 30.47 27.98 52.58 26.17 1.12 66.17 82.97 74.76 18.90 17.14 28.26 31.35 41.73 0.91 44.99 78.76 81.99 68.99 29.75 37.31 28.17 50.71 37.34 59.23 10.64 30.81 63.72 38.58 33.97 15.43 76.92 30.61 17.44 45.88 95.86 83.29 22.45 75.02 23.90 16.77 9.83 99.83 60.18 49.41 97.49 15.68 48.78 42.22 62.61 80.12 16.08 17.05 85.52 17.56 28.32 68.61 51.32 34.87 20.11 59.98 62.43 32.62 56.23 50.88 66.81 91.94 6.73 34.31 96.39 18.07 57.35 12.46 77.11 26.11 -39.86 88.90 73.89 33.70 17.71 13.67 73.04 20.00 15.99 1.73 61.76 10.80 87.63 0.16 0.08 22.84 42.13 51.24 85.75 42.62 73.83 6.68 14.86 45.37 83.09 99.80 22.08 94.95 28.30 13.04 42.52 79.85 62.35 75.73 40.40 69.90 32.15 44.26 33.59 36.61 54.51 13.44 2.27 99.10 10.65 48.02 44.64 49.45 75.47 14.59 48.53 60.99 40.35 12.45 78.18 44.93 37.04 85.37 84.69 14.28 8.41 37.99 66.55 42.47 9.74 39.55 40.04 44.23 14.40 68.33 99.75 99.68 81.59 60.62 59.34 30.54 55.43 66.81 92.72 46.10 33.17 42.65 79.62 81.08 52.03 27.70 42.47 48.92 53.12 8.60 25.39 52.13 38.77 82.55 41.27 99.42 60.20 74.24 92.76 22.43 -34.30 71.86 15.12 98.91 88.33 17.02 5.14 99.32 68.50 8.72 97.48 44.00 14.08 73.06 78.22 78.59 40.86 71.70 41.20 1.87 54.52 96.59 6.44 29.76 96.48 79.60 92.92 97.05 19.25 25.86 23.40 4.37 27.57 96.57 83.56 37.05 6.47 6.91 9.79 85.46 17.65 23.63 71.31 72.18 46.59 53.11 95.87 57.41 69.20 75.69 46.56 44.59 23.70 94.61 76.57 52.68 1.63 95.84 11.29 30.86 58.39 91.41 68.11 54.15 44.85 53.17 20.42 38.71 86.49 70.78 12.50 71.45 88.57 73.26 16.35 90.96 12.42 21.36 14.36 75.02 58.12 87.55 95.04 98.69 47.32 70.46 75.31 64.61 33.75 81.02 73.68 40.49 94.93 96.86 69.10 70.01 59.15 35.00 27.23 0.80 -36.09 91.47 83.63 72.56 71.68 18.98 19.25 79.54 84.20 8.08 47.12 15.53 70.17 92.85 91.44 94.35 32.57 6.98 4.71 61.20 40.15 36.97 24.15 39.96 49.17 18.73 83.66 28.32 19.22 37.63 69.55 51.35 30.52 36.68 6.51 34.37 25.21 82.60 42.20 24.21 86.44 9.06 2.76 59.25 14.41 11.39 5.14 26.30 67.94 17.07 70.22 17.15 34.29 63.49 11.76 19.69 31.78 51.30 94.05 92.04 39.90 29.00 45.92 76.79 37.71 64.18 5.37 56.92 12.65 42.19 20.61 35.59 42.86 6.75 54.62 26.34 44.40 33.97 62.89 38.18 24.21 6.46 75.40 69.20 64.29 99.87 74.79 19.04 40.74 92.59 2.07 70.53 74.62 44.27 42.42 7.76 21.84 46.43 74.09 23.49 -33.88 85.44 95.52 80.37 95.89 63.63 54.28 13.22 83.49 60.82 45.96 97.62 26.52 48.31 32.34 70.33 38.08 73.43 79.34 71.52 81.14 99.81 39.85 85.78 28.40 48.08 55.64 94.17 92.90 30.42 42.03 57.51 68.05 88.11 40.06 9.14 37.08 46.07 78.37 62.78 83.33 95.18 55.03 87.16 66.69 97.08 53.14 16.96 80.96 7.49 80.33 56.58 5.69 14.68 54.96 90.22 85.89 24.35 58.07 85.83 81.23 77.68 36.87 46.44 43.09 91.27 61.53 90.36 16.75 71.67 8.48 25.46 98.83 32.45 44.10 72.81 71.69 77.38 37.89 55.04 18.59 7.28 77.35 70.01 90.71 89.00 69.39 50.02 78.83 88.72 2.65 60.84 79.55 35.50 73.48 60.26 5.17 71.49 61.47 80.65 -53.25 77.98 43.13 15.51 38.71 78.83 75.54 4.04 58.78 57.11 34.04 9.58 70.95 32.52 0.72 11.25 88.33 74.28 72.17 76.59 45.97 38.37 2.30 86.77 74.12 72.20 65.57 60.51 60.67 33.02 54.98 44.93 45.07 24.22 64.38 45.57 13.32 64.03 20.31 4.27 64.46 80.21 17.84 72.84 63.11 6.51 22.64 26.76 32.70 18.73 57.92 95.42 33.53 13.31 65.79 51.76 76.16 60.59 14.49 38.47 53.85 9.14 72.80 0.50 45.56 0.06 42.13 25.71 15.74 51.47 67.70 71.28 36.66 22.17 3.78 99.15 0.36 40.93 35.59 14.25 42.53 61.19 13.61 81.67 12.50 64.83 6.21 82.46 58.33 30.43 53.76 16.48 38.67 62.34 46.21 57.59 5.47 80.12 92.55 12.03 -6.58 96.08 32.26 24.22 1.12 63.15 82.07 17.11 83.67 41.18 76.70 93.92 98.64 4.09 45.88 81.03 76.91 24.19 91.92 32.91 61.61 98.78 14.83 36.90 63.76 25.60 90.04 90.59 19.09 24.12 83.85 91.55 9.35 41.85 44.87 86.55 5.37 0.85 27.66 48.08 64.46 26.67 29.53 45.16 9.78 27.82 40.85 31.50 63.99 62.57 56.51 69.34 42.53 6.99 0.31 6.13 82.49 72.56 68.11 7.91 45.45 54.80 23.67 87.91 86.57 53.39 86.60 62.41 15.91 46.29 65.35 48.47 38.91 47.13 74.33 72.39 40.18 12.99 6.86 75.60 45.31 69.41 19.01 10.77 66.05 82.81 98.71 67.54 21.06 25.09 71.09 19.54 44.14 54.10 55.45 64.02 21.83 80.41 15.25 38.87 -72.31 74.27 77.36 42.23 89.94 18.79 89.74 12.40 11.50 28.85 12.08 98.61 5.73 5.44 28.23 2.02 85.65 35.91 37.20 53.01 52.72 5.55 53.14 32.16 80.49 52.38 38.25 0.61 60.66 79.39 15.85 83.07 17.09 78.09 97.22 9.00 16.62 89.33 90.11 66.96 75.59 91.37 94.06 21.49 41.46 1.03 35.08 96.67 54.10 80.52 59.06 49.42 35.66 86.96 80.64 40.49 31.86 30.69 10.84 22.73 79.91 76.40 62.50 27.54 25.29 54.14 59.48 2.41 30.83 62.57 40.89 84.74 86.06 83.58 3.77 73.77 31.09 2.12 39.93 18.07 73.63 39.25 76.36 20.45 65.92 98.86 37.23 55.01 43.32 30.94 74.66 17.06 68.66 43.57 50.26 48.44 32.88 39.15 33.59 51.39 -13.15 76.53 58.54 27.61 23.03 0.00 30.59 59.39 30.69 45.61 11.56 48.17 52.63 34.84 61.98 82.39 29.35 45.00 24.82 73.75 16.53 14.60 82.64 34.76 81.67 21.05 7.59 97.15 13.35 62.41 11.76 21.90 46.07 19.89 21.20 12.05 57.96 10.12 42.33 62.66 97.72 95.53 2.82 65.59 15.09 24.37 19.94 69.38 23.60 44.88 66.42 93.68 80.27 77.20 23.38 96.99 46.12 17.48 98.68 22.45 22.12 13.90 15.70 9.67 94.18 22.67 64.74 82.96 56.94 81.13 96.27 60.59 43.98 50.83 47.23 60.53 42.19 71.74 13.15 26.49 40.52 74.26 92.22 11.32 70.95 11.23 18.85 45.57 76.90 84.16 9.11 94.98 1.97 5.80 85.72 94.37 66.07 86.09 9.37 22.67 -63.88 62.50 17.77 0.96 76.42 53.97 41.80 22.45 10.43 75.05 31.21 62.14 97.63 8.05 24.11 98.94 40.11 91.54 70.70 79.14 58.01 85.82 99.12 62.43 48.70 52.69 49.46 51.76 20.59 36.15 67.62 86.99 64.69 10.29 57.54 90.36 52.73 75.35 57.94 40.84 29.98 7.03 91.20 55.89 13.41 91.77 43.10 12.00 80.87 73.88 33.34 39.56 3.15 64.16 82.21 89.18 93.82 58.99 57.44 44.32 69.73 13.46 19.22 73.94 62.29 32.25 60.21 56.48 68.83 41.74 25.11 91.19 95.70 47.57 1.92 23.18 99.12 8.66 67.42 88.76 90.33 19.80 45.75 62.32 42.79 28.31 50.32 83.19 31.27 40.14 11.68 86.47 0.14 6.00 73.92 89.33 42.91 8.49 64.58 64.81 -86.49 36.52 53.58 57.62 87.80 30.63 53.79 35.00 75.15 34.34 63.97 71.58 84.07 5.08 36.83 4.58 29.07 29.62 15.88 91.93 18.25 93.56 29.14 95.67 43.57 85.67 56.69 18.26 42.59 92.59 22.18 76.93 2.70 47.31 44.64 9.48 23.21 2.66 95.54 58.02 18.01 36.10 12.01 97.42 58.21 8.45 28.77 15.68 48.42 28.43 31.38 61.67 36.31 29.84 57.72 93.31 3.51 6.78 47.59 25.74 55.83 13.94 12.58 43.81 83.65 25.51 86.31 55.12 4.16 95.93 51.55 16.38 20.50 36.84 19.08 40.23 46.47 34.67 91.13 80.37 97.81 38.04 36.93 42.00 31.93 14.77 74.85 50.00 17.32 1.93 22.99 55.01 62.29 14.97 87.69 50.48 43.83 22.60 78.15 13.28 -74.80 1.38 66.97 11.71 35.93 43.26 79.69 7.53 45.68 51.51 57.25 51.49 55.06 62.45 15.05 81.48 38.85 2.45 9.79 41.98 16.27 95.96 94.47 53.02 43.13 52.30 9.60 73.45 81.84 43.63 85.11 91.19 62.01 43.17 7.10 68.13 60.44 83.24 1.68 61.81 26.92 62.84 2.58 99.61 74.85 1.50 41.05 62.21 58.77 31.97 80.61 7.50 29.05 8.78 23.61 75.20 32.93 25.77 39.79 4.91 31.02 71.71 16.38 66.92 10.97 19.39 39.65 51.27 7.64 51.74 25.20 29.94 21.55 37.15 30.88 79.25 91.04 75.41 14.87 56.95 39.39 68.74 35.68 17.02 7.83 28.07 5.47 98.90 1.44 38.54 8.00 9.92 10.53 33.81 98.57 43.98 63.86 42.94 94.53 42.59 -24.26 13.68 26.12 68.78 19.51 24.33 63.95 43.07 3.47 74.04 47.76 67.25 94.40 75.05 47.00 80.38 26.58 97.26 63.79 53.18 61.16 2.62 40.50 60.06 22.78 49.34 81.68 61.34 74.97 76.16 90.53 52.36 18.21 74.75 46.02 69.43 23.67 41.02 29.00 25.57 21.76 24.49 92.75 57.32 45.93 62.45 84.40 76.07 71.90 29.85 74.19 36.31 56.22 15.40 31.99 15.69 93.11 13.82 99.21 59.09 84.71 87.80 43.91 25.73 50.22 58.09 0.52 61.17 85.12 81.46 93.93 56.98 28.03 86.24 23.19 2.77 7.11 44.71 99.36 95.08 92.67 51.15 83.43 64.15 42.30 8.09 33.13 26.85 22.10 92.34 97.41 31.92 72.02 50.38 44.53 81.89 37.50 25.99 81.93 52.90 -58.54 61.92 15.23 86.91 53.45 97.39 65.91 41.68 16.19 98.57 90.67 63.03 18.76 63.44 14.84 25.52 32.99 11.46 72.72 56.03 63.18 53.40 0.40 89.75 28.19 43.84 5.18 77.60 29.40 89.44 6.70 6.25 54.08 91.71 61.62 21.88 94.76 4.05 48.62 81.62 93.05 86.23 10.96 32.35 87.82 62.80 6.45 5.34 86.85 95.47 79.02 92.84 63.88 20.39 24.66 66.32 92.90 43.11 6.41 20.38 42.71 43.51 86.80 73.08 20.75 88.66 41.37 32.60 67.49 44.03 98.02 17.63 17.69 47.02 31.10 67.93 46.57 34.34 45.18 54.14 83.87 52.01 14.24 82.69 49.27 99.29 30.85 42.05 48.74 46.72 47.21 98.68 35.56 9.84 90.40 83.57 79.16 43.59 80.71 86.81 -16.34 83.95 3.31 67.35 52.91 43.45 37.22 32.77 89.88 4.52 84.99 33.03 41.60 10.67 27.84 96.39 87.13 70.63 51.13 62.76 58.78 34.40 60.26 83.62 3.15 87.45 76.15 92.44 60.98 41.62 73.70 97.29 85.88 70.93 10.04 89.67 75.82 77.67 40.63 93.09 42.37 18.07 37.15 86.98 10.21 50.40 68.21 67.33 29.34 54.73 97.86 19.61 60.07 24.91 58.66 73.48 41.87 83.72 35.00 14.85 70.19 98.76 27.50 28.49 46.25 87.10 31.51 99.11 78.48 8.24 19.59 72.99 0.53 2.29 36.56 46.46 82.40 74.36 25.88 22.41 99.38 26.85 94.07 91.91 78.78 13.47 82.14 65.78 58.44 79.12 4.04 3.09 7.65 77.56 71.35 20.24 24.20 65.60 55.52 11.13 -92.13 13.66 16.56 40.40 88.35 12.18 27.88 31.88 52.53 41.01 80.66 62.58 17.65 38.94 47.68 93.06 81.93 60.19 95.22 12.01 84.39 10.01 86.59 90.07 27.89 0.44 33.70 90.43 79.60 98.62 98.40 70.68 42.04 33.99 92.26 52.09 51.48 65.41 76.97 81.98 20.21 86.26 71.47 52.97 49.59 22.20 90.37 73.87 47.07 98.25 81.41 0.31 58.62 90.20 28.41 91.78 8.58 3.45 44.46 42.67 4.69 71.80 63.64 45.39 77.11 18.48 90.86 43.18 12.69 12.19 30.53 18.36 71.39 91.79 27.70 94.15 26.88 93.32 29.34 40.51 3.12 35.80 96.41 73.12 98.25 80.67 11.59 99.99 10.16 99.29 90.16 32.01 51.47 15.03 79.43 73.18 57.87 39.33 34.99 93.55 -1.68 62.36 12.34 14.75 53.07 14.54 50.95 71.50 50.56 87.94 74.89 96.28 15.39 39.26 60.28 2.63 40.88 57.76 22.91 47.73 83.98 75.29 67.65 75.77 67.04 94.40 19.11 12.46 30.90 49.07 87.07 35.22 99.94 15.54 71.14 63.36 53.26 73.23 81.15 55.43 5.31 4.71 51.26 6.15 31.23 57.33 24.33 86.12 44.54 48.55 68.71 31.29 92.22 29.98 5.82 3.55 62.55 85.92 18.40 9.87 71.19 40.28 56.34 28.22 42.54 0.43 72.23 30.89 30.98 73.96 14.33 98.63 20.48 85.90 10.98 90.40 12.65 94.41 55.80 88.46 62.97 36.19 95.95 70.27 43.15 45.48 98.70 86.21 55.94 28.75 35.40 94.01 76.06 67.31 35.12 99.10 81.59 98.06 80.24 18.91 -10.46 11.30 60.40 9.35 1.65 17.10 62.06 57.94 93.73 84.06 22.07 25.07 55.53 32.46 81.07 27.82 22.34 25.90 32.33 51.37 51.50 52.80 80.27 71.62 93.77 0.89 65.05 2.84 83.22 71.98 84.90 45.89 33.44 38.09 30.33 96.24 43.11 14.59 30.69 84.46 42.05 54.44 34.12 47.79 3.96 62.54 41.64 95.96 5.82 31.77 42.33 38.60 65.41 98.61 29.57 63.57 21.61 40.61 77.38 94.93 76.53 37.09 52.48 61.56 78.90 48.28 39.11 87.70 12.24 49.39 15.22 98.22 78.51 84.44 4.96 25.05 10.30 92.07 62.71 84.63 9.81 96.12 11.95 7.66 89.04 99.55 33.48 50.42 65.50 57.46 58.00 81.36 59.92 71.95 42.99 40.20 26.04 95.60 84.80 97.45 -70.23 50.33 31.65 5.12 72.21 8.21 17.56 64.77 15.68 83.17 81.75 62.03 80.30 45.65 51.05 19.62 18.59 74.91 74.99 41.32 12.50 12.26 1.21 79.56 15.18 6.61 0.86 59.73 79.18 27.13 11.98 23.70 85.33 54.56 10.08 2.67 92.55 91.42 39.24 99.39 14.97 7.14 83.30 43.33 69.32 2.74 45.57 65.00 55.12 13.97 55.47 82.52 37.10 48.69 3.67 23.40 54.95 66.34 19.35 58.24 83.30 13.31 9.96 78.76 57.80 5.25 98.06 91.26 17.74 88.31 42.02 95.64 89.80 49.54 93.96 66.74 79.78 80.43 82.08 35.90 73.64 3.00 95.51 8.80 42.74 35.38 79.85 86.39 68.37 0.05 76.91 68.03 25.68 10.40 76.28 34.73 26.05 84.21 75.11 27.21 -58.17 52.81 61.30 85.02 58.38 95.18 94.39 88.62 17.20 8.20 39.67 36.52 18.06 43.73 16.01 85.26 1.58 57.78 65.00 68.86 94.26 4.46 52.70 27.29 27.14 7.62 9.10 5.91 98.52 55.60 32.81 32.10 31.59 81.74 67.95 57.01 11.45 4.33 76.72 86.82 86.59 35.20 39.19 21.08 55.81 30.16 66.47 53.77 74.63 50.81 82.80 35.62 72.77 31.60 75.35 2.65 30.45 64.56 62.86 28.85 41.05 41.83 38.11 30.49 68.67 41.77 66.63 55.91 3.47 68.93 64.46 10.07 87.71 31.75 55.24 96.36 75.68 91.28 74.14 10.18 54.65 0.06 76.81 80.27 67.91 27.82 73.01 21.13 49.77 67.52 13.11 66.70 93.37 54.51 9.69 67.35 30.93 85.85 80.87 32.86 -76.89 90.69 54.68 17.01 37.78 49.42 38.77 65.93 88.65 32.96 11.38 1.82 59.48 15.43 39.66 9.80 51.31 68.91 51.53 64.70 78.06 46.27 80.75 83.92 43.71 72.01 2.09 57.72 52.61 28.09 19.16 33.53 88.54 74.30 15.68 69.16 1.47 32.04 54.58 19.69 22.83 95.00 86.90 26.17 70.34 31.24 81.72 17.02 72.02 85.94 58.42 25.03 64.63 47.49 55.74 17.28 4.15 18.27 31.14 58.02 55.72 19.49 96.53 24.70 73.18 90.28 15.15 18.12 38.69 14.51 37.06 41.77 84.91 68.72 84.59 76.72 55.13 29.90 88.06 86.44 86.72 4.89 98.18 51.83 45.10 11.51 62.23 47.69 4.69 91.47 93.10 81.91 61.80 39.65 83.13 47.37 80.23 91.78 86.42 9.80 -53.42 86.62 20.21 31.49 27.72 54.31 88.49 13.75 7.26 5.40 61.14 53.58 97.82 24.53 79.30 37.13 81.02 62.47 92.41 23.77 45.79 13.50 58.48 18.83 87.39 78.64 10.99 27.29 3.63 32.41 42.05 96.04 95.49 56.89 57.26 66.35 64.63 40.73 14.61 3.10 98.22 0.37 53.63 77.46 51.81 54.34 39.68 39.23 90.75 28.66 83.50 10.02 67.59 3.57 69.99 56.33 22.88 1.17 61.95 35.28 25.47 26.18 15.65 78.58 41.29 67.30 81.02 20.39 89.78 58.56 7.00 46.75 40.73 10.06 30.63 91.56 79.48 10.21 73.25 5.77 61.01 83.10 1.40 84.20 97.24 92.99 85.76 29.34 90.31 42.52 62.71 70.53 84.26 76.33 3.34 95.36 39.80 77.89 19.64 10.63 -27.08 78.87 8.64 5.55 89.48 73.22 31.81 56.57 95.62 87.77 81.29 93.53 23.67 61.12 79.00 99.42 84.40 74.54 65.91 29.85 65.43 85.23 35.29 23.10 17.01 13.86 49.60 39.58 67.08 92.56 18.91 21.82 10.53 63.05 41.64 14.00 27.27 97.05 75.60 44.68 43.64 21.89 64.19 58.67 63.05 97.19 12.26 71.56 38.35 9.23 1.54 57.02 46.93 34.49 68.34 10.41 21.89 89.24 0.49 69.89 3.87 48.78 21.44 87.51 36.76 64.38 16.19 68.54 68.74 61.14 50.54 15.50 49.83 39.07 69.14 52.71 79.03 7.15 94.27 25.84 78.95 3.92 0.69 46.97 49.45 72.79 43.21 27.81 74.55 91.08 37.23 85.30 27.06 37.74 17.95 30.78 2.10 44.20 17.61 65.68 -40.40 49.09 37.07 98.42 39.55 23.25 25.69 83.45 68.10 52.97 68.29 44.96 60.15 41.81 90.84 37.31 74.75 76.92 54.82 25.41 93.18 58.81 29.23 48.40 90.15 54.96 18.95 52.81 43.79 6.82 99.48 91.11 81.39 83.24 90.11 12.73 85.78 59.17 84.17 92.31 48.21 15.83 59.43 97.04 4.99 66.34 42.29 47.20 88.73 54.96 87.13 77.21 5.51 38.32 63.74 17.14 18.55 51.71 29.38 81.19 33.14 1.50 88.09 12.86 35.84 23.03 3.34 27.00 21.50 75.16 45.89 40.20 60.78 98.97 55.29 84.29 10.89 1.05 19.30 42.96 53.94 67.95 8.90 32.45 30.55 86.91 64.18 98.69 94.37 11.22 44.98 24.59 87.61 73.76 31.52 23.26 51.73 34.95 95.24 90.69 -49.50 73.57 14.44 40.53 25.26 11.59 49.58 34.88 74.32 78.78 86.85 64.16 5.52 18.32 35.48 37.41 97.29 89.20 24.33 36.74 53.67 71.33 38.91 95.97 22.41 87.51 70.56 97.56 5.49 1.04 6.12 5.61 67.76 21.82 70.33 80.75 96.88 65.93 19.03 21.12 69.80 2.10 13.49 51.26 56.71 41.24 73.36 78.07 32.76 28.30 75.53 89.29 6.43 56.05 78.65 81.27 41.44 58.22 29.70 34.39 13.80 20.60 90.76 9.04 37.95 5.94 85.56 10.37 83.03 5.07 17.08 84.20 73.28 17.87 36.27 81.14 72.89 39.72 67.03 82.36 67.92 1.81 83.91 86.35 16.60 16.38 92.37 33.53 17.83 74.76 32.98 44.19 74.81 23.45 10.36 98.06 19.19 31.44 47.17 21.27 -51.72 28.32 54.47 39.23 46.16 32.19 67.76 41.03 40.08 15.24 88.52 40.42 85.49 92.28 26.95 18.92 27.62 87.50 21.64 39.57 8.91 13.53 28.28 49.41 97.26 99.30 48.89 92.61 73.33 80.03 37.59 52.40 57.02 83.77 14.03 58.53 78.70 77.09 44.92 38.99 9.26 21.05 43.86 77.82 24.80 64.18 82.14 26.12 8.27 32.62 55.00 4.06 96.15 91.54 1.84 20.79 78.44 46.75 69.70 16.38 61.67 23.70 19.95 6.45 93.36 93.68 51.12 21.53 47.42 52.60 35.55 83.86 88.24 76.79 2.80 45.20 93.29 84.83 73.62 38.49 14.26 47.47 88.91 72.92 23.72 81.92 24.60 98.27 85.39 11.39 47.30 90.68 57.36 44.40 63.59 55.77 43.95 83.59 14.69 1.53 -7.27 93.65 5.90 69.18 14.17 95.75 18.80 7.27 21.91 10.11 77.81 46.08 81.93 75.95 19.79 16.83 16.69 98.85 17.35 22.84 37.04 3.28 61.63 54.04 3.91 16.65 75.94 99.58 10.36 22.02 76.45 38.03 69.96 10.36 59.03 50.50 55.44 56.52 79.86 44.13 64.42 30.60 20.46 70.78 71.49 25.90 22.73 51.93 98.76 29.89 97.33 4.69 27.41 52.28 95.96 43.86 75.71 71.66 31.29 27.54 86.06 16.20 10.42 44.40 40.16 59.02 52.10 36.11 24.69 53.04 82.87 40.02 0.93 74.71 34.77 81.30 76.30 21.08 49.12 63.57 39.24 37.00 75.26 56.46 16.85 61.13 31.79 24.60 46.36 60.40 23.41 69.75 37.53 88.65 25.30 53.43 58.49 45.87 75.02 60.93 -75.68 36.93 92.71 14.28 57.20 8.63 79.50 63.62 57.75 38.28 45.12 27.40 20.74 8.19 40.46 51.89 23.07 11.24 23.03 97.86 1.71 63.61 45.15 31.25 3.73 87.56 13.06 39.37 26.13 93.79 56.47 43.30 96.36 32.82 69.03 51.77 21.93 29.21 87.47 36.95 52.78 62.76 85.85 72.36 7.13 55.37 15.26 25.97 59.42 6.40 16.05 24.49 58.45 29.24 15.03 18.94 16.14 91.75 55.74 12.57 34.94 88.84 89.73 78.52 7.81 16.37 5.65 24.71 13.77 23.60 65.05 85.17 43.10 90.34 47.19 24.13 40.30 5.46 27.42 46.71 86.26 62.46 50.82 19.03 9.28 69.91 22.61 81.15 33.46 4.94 43.03 87.39 16.30 60.91 0.40 44.68 84.42 55.73 83.91 92.95 -19.46 79.66 60.42 7.68 8.34 13.10 16.75 79.66 43.54 36.69 16.12 18.97 72.90 15.51 11.82 92.33 99.83 62.75 1.96 76.03 11.27 80.28 35.03 0.79 38.26 56.71 15.00 77.10 31.01 55.36 59.68 49.96 48.98 92.77 81.20 34.72 30.66 80.32 66.16 70.06 33.41 28.44 18.55 2.49 77.16 56.52 2.92 99.52 62.49 87.51 58.24 72.64 11.15 17.60 67.32 81.77 88.21 54.04 45.51 98.24 45.77 46.27 0.46 21.63 79.27 27.86 83.48 50.96 11.64 55.51 54.23 91.65 77.09 51.73 9.62 90.83 20.65 60.54 97.06 76.11 53.94 48.03 9.31 99.72 54.02 16.14 51.59 77.52 4.50 48.32 50.87 22.47 19.38 81.22 6.33 80.77 16.91 95.83 62.69 35.15 -22.92 19.89 75.79 0.48 54.07 31.57 96.90 1.39 97.48 23.99 28.85 79.28 99.23 70.58 10.00 69.31 25.10 87.70 40.51 70.01 24.25 21.43 86.42 20.97 7.66 46.84 67.05 3.05 89.81 63.29 52.51 8.26 64.20 20.51 48.09 63.70 56.60 32.02 55.91 12.43 8.86 46.98 98.11 10.31 55.24 89.52 8.31 8.18 86.59 83.55 0.75 69.64 10.53 12.57 87.12 7.10 16.26 98.04 21.37 8.70 46.69 81.02 24.57 29.39 74.90 95.83 59.37 60.25 74.76 45.62 90.74 29.97 79.13 41.70 86.35 61.91 50.95 26.12 50.96 95.80 14.53 83.28 71.24 6.10 17.68 88.35 33.79 97.60 82.20 62.72 59.21 72.70 26.95 15.62 10.69 23.43 56.65 33.94 80.08 81.40 -88.29 28.15 23.67 20.58 45.44 49.62 96.13 51.83 52.05 15.24 69.94 4.74 47.12 61.74 41.08 32.18 48.92 48.75 54.74 30.50 59.06 29.06 12.63 97.32 55.51 62.76 41.26 47.86 90.99 32.74 59.09 1.48 7.68 67.82 10.72 19.19 55.80 60.95 65.68 4.40 27.51 49.50 47.69 6.28 28.11 25.76 60.96 60.47 77.61 43.68 46.80 50.92 79.21 88.24 42.48 64.28 40.09 0.89 1.02 13.05 83.49 19.27 27.36 37.91 8.49 10.50 39.99 7.73 34.89 50.32 70.14 80.71 70.64 86.98 74.85 37.85 0.85 21.47 65.35 45.27 5.81 70.72 58.53 49.94 33.38 28.38 25.63 17.83 22.77 62.84 90.88 34.03 34.21 73.04 27.91 89.51 17.01 8.86 34.26 88.20 -22.02 20.84 84.27 42.26 44.53 81.24 32.90 43.09 17.64 84.51 39.68 7.77 12.18 57.84 36.90 33.74 24.77 29.89 0.01 53.42 97.90 99.45 24.20 22.18 99.62 7.66 36.97 46.51 56.95 57.35 72.36 43.55 26.84 47.67 42.75 39.20 49.50 56.13 22.46 84.97 40.34 28.48 57.91 57.73 62.88 43.17 81.14 69.71 72.46 39.60 37.82 31.91 29.13 65.75 70.48 45.97 63.79 85.62 89.55 88.31 94.90 2.76 67.53 20.37 22.19 31.03 32.25 58.65 78.84 81.82 36.30 51.50 12.33 6.25 68.22 30.08 13.08 96.29 56.02 66.74 88.46 21.70 34.07 90.88 85.85 47.74 3.20 41.04 42.12 64.48 46.88 75.38 54.99 59.13 66.99 83.90 68.01 30.92 91.75 16.18 -64.40 69.84 83.88 31.33 19.25 42.86 7.72 56.92 10.22 68.76 59.64 73.85 27.02 94.79 91.72 54.57 85.77 43.21 94.25 87.28 43.72 49.96 23.68 81.66 79.45 61.82 41.99 83.38 73.30 43.61 38.88 62.90 49.87 6.48 11.82 98.40 50.90 3.12 76.62 54.19 99.58 85.57 62.85 5.47 4.47 52.44 86.46 38.22 33.13 90.38 26.96 3.16 50.44 42.25 61.71 71.53 93.54 39.41 94.01 33.31 55.61 80.91 0.87 3.24 17.00 30.27 16.79 18.17 99.15 9.62 56.68 63.49 27.04 19.99 72.97 53.79 95.71 60.38 66.06 64.39 68.41 16.69 94.63 19.57 29.36 94.18 38.23 85.08 27.57 51.53 10.01 55.26 36.94 1.00 47.33 79.96 91.09 71.12 11.16 6.02 -89.89 8.77 85.47 41.32 46.04 85.05 84.13 27.75 13.09 29.17 4.84 54.92 33.48 3.80 22.44 52.80 37.10 41.57 4.09 48.80 96.88 23.25 92.12 7.91 82.01 80.21 98.06 55.71 17.26 89.97 23.99 27.02 13.47 8.31 26.54 90.39 29.14 3.93 92.57 24.06 65.57 61.93 67.39 15.88 55.03 33.82 72.88 17.64 8.96 98.16 64.37 9.27 95.27 55.10 64.78 59.68 6.33 12.42 32.79 20.76 35.42 80.18 72.27 54.24 25.18 59.49 17.36 37.56 61.59 34.00 75.12 47.77 21.94 49.96 10.30 93.59 69.07 62.05 34.13 63.22 45.29 4.76 61.23 23.13 23.77 87.26 69.81 25.44 13.06 72.88 86.09 3.13 26.23 97.51 55.11 69.52 9.51 36.17 46.65 3.87 -71.40 33.88 81.07 79.60 16.75 86.01 39.26 91.81 88.95 81.36 7.45 54.20 16.79 2.29 90.83 52.53 19.67 32.17 97.51 80.73 26.46 55.35 81.43 28.34 54.80 75.19 51.75 33.82 23.35 91.88 6.16 89.38 60.39 8.19 50.79 28.17 47.68 60.51 3.61 14.68 75.63 6.77 21.35 5.60 39.51 67.27 6.05 16.14 0.03 96.62 81.09 16.18 24.77 92.63 46.91 43.74 65.96 77.07 15.14 80.86 22.13 54.73 75.74 47.74 1.46 29.89 60.29 59.47 72.90 62.70 81.82 87.21 20.03 65.26 0.17 88.53 3.08 85.26 53.61 93.54 3.33 95.94 52.42 16.46 59.08 59.29 64.97 8.70 22.59 58.44 39.58 87.92 36.85 38.26 26.73 64.31 64.34 1.40 31.06 46.54 -36.81 58.95 47.49 78.40 95.68 86.95 13.78 45.88 85.71 14.42 78.86 38.16 84.75 3.19 84.26 76.29 2.60 44.26 37.14 73.91 49.01 14.90 77.44 21.82 42.56 28.04 95.83 96.30 22.67 78.61 93.18 8.27 67.88 14.81 40.95 29.74 60.48 92.45 38.17 58.11 1.31 20.78 45.16 66.51 47.02 73.53 77.94 27.09 9.81 56.58 87.08 84.82 51.05 77.82 10.64 16.29 78.26 35.78 25.72 23.95 79.86 95.11 38.98 13.05 6.72 63.91 52.59 20.21 31.85 23.25 27.82 30.70 16.18 21.05 10.29 78.13 26.96 23.37 25.27 73.84 55.84 78.50 5.35 90.59 19.02 19.90 53.16 51.03 69.88 91.51 68.49 70.42 58.01 77.42 51.81 77.53 29.15 21.60 18.80 96.13 -21.93 39.56 76.41 7.88 85.59 48.72 31.53 43.91 32.80 88.46 45.55 31.61 99.00 99.53 16.52 74.40 83.06 40.74 90.67 26.00 1.64 13.25 30.77 87.17 77.78 92.20 2.07 35.90 50.26 11.84 14.58 95.18 67.51 59.33 69.28 55.59 70.71 69.88 37.58 16.12 56.08 11.58 35.37 19.82 88.51 75.53 83.30 50.81 21.97 3.61 40.10 21.02 27.77 99.37 48.63 9.30 28.59 59.27 28.89 35.53 14.18 69.27 27.46 46.57 44.34 30.58 12.87 88.08 68.78 26.20 89.70 6.84 85.84 52.72 84.81 84.38 94.16 50.71 77.79 77.45 6.62 41.94 30.15 9.81 81.29 44.05 4.97 85.60 88.30 70.41 63.44 86.11 66.51 76.59 65.69 35.42 62.51 79.09 70.47 85.10 -66.63 23.74 20.02 58.26 39.37 85.84 3.72 64.58 1.15 23.06 58.70 7.23 58.29 62.24 90.91 50.79 3.00 80.68 94.64 77.18 62.82 33.50 77.82 66.70 75.93 70.26 14.11 24.81 13.00 87.85 36.24 69.44 10.77 97.12 93.88 56.43 97.75 20.41 91.76 84.93 64.15 10.23 4.30 90.12 48.79 68.71 34.79 27.43 90.39 60.58 54.39 72.64 87.82 22.78 49.46 8.39 57.50 86.03 90.98 14.46 72.15 41.92 85.02 67.29 1.30 81.92 33.52 1.03 21.60 27.67 47.93 36.50 56.06 10.51 88.77 86.32 70.56 60.38 45.90 30.01 39.64 16.57 54.60 79.75 7.47 63.93 30.27 97.09 25.96 36.26 80.45 94.28 22.33 54.44 19.13 63.93 66.57 69.56 54.77 76.08 -50.37 20.52 8.71 6.73 48.16 75.81 84.94 80.21 3.44 16.51 65.98 81.19 37.19 45.01 15.59 8.08 98.83 41.28 66.98 23.89 16.72 24.23 76.97 77.76 87.92 79.94 15.37 4.30 57.61 16.62 72.21 69.29 95.16 78.33 60.95 15.64 31.47 36.96 55.21 18.63 64.02 45.18 38.53 30.47 1.38 61.88 59.79 7.17 99.10 56.99 77.81 14.92 74.83 68.88 72.26 5.87 82.68 70.78 53.14 95.02 48.23 75.87 13.10 92.80 61.79 27.84 8.67 46.97 0.47 98.89 29.44 15.67 39.62 51.97 28.44 72.37 24.92 59.19 93.21 80.70 91.79 0.40 73.46 67.09 66.12 37.76 80.25 87.62 53.14 60.11 61.62 53.29 16.86 91.51 97.26 0.05 43.07 18.65 2.31 54.23 -9.98 65.26 62.51 1.00 86.62 35.86 72.72 6.87 45.11 30.94 22.29 78.73 86.11 16.65 95.60 12.86 23.69 71.47 82.57 22.15 71.35 68.48 81.43 90.33 22.49 38.49 71.31 17.65 37.52 73.01 27.01 13.90 73.43 86.63 98.07 22.71 44.41 37.27 71.20 46.47 73.26 31.70 72.53 70.20 2.40 54.01 42.75 51.76 10.18 73.43 8.94 25.58 22.90 96.05 68.84 65.68 5.46 47.28 96.99 38.39 43.43 52.02 87.33 86.74 32.61 94.79 86.36 38.31 38.79 52.37 65.15 69.56 1.00 65.19 68.98 81.01 94.95 69.33 63.01 88.73 81.31 62.45 72.26 24.72 20.48 58.81 96.21 91.64 26.54 25.65 98.73 23.22 6.16 33.38 41.66 63.42 5.75 78.81 92.91 15.58 -67.15 20.68 94.21 95.59 15.66 91.59 60.56 48.37 89.88 75.00 44.04 13.61 9.77 65.43 67.88 3.19 95.35 9.69 67.46 38.71 72.74 86.46 77.35 95.36 40.95 65.39 96.75 55.01 85.10 67.20 84.28 17.42 9.08 80.81 70.46 88.88 69.77 72.94 3.89 74.17 45.55 64.33 50.41 31.42 45.99 41.84 94.66 49.27 14.64 18.26 3.41 45.32 80.76 1.75 88.31 12.94 84.64 65.58 93.95 95.46 43.93 39.79 94.07 42.47 79.04 19.81 68.24 18.04 89.45 17.76 5.93 13.15 42.56 94.19 85.00 77.38 58.01 21.31 88.10 83.96 10.57 23.88 96.51 25.87 74.33 2.24 8.54 34.70 54.60 66.93 0.63 86.69 32.81 19.09 89.28 48.29 71.60 77.20 40.11 82.63 -90.94 16.03 52.79 18.83 66.65 26.37 91.85 6.59 68.55 77.34 59.97 71.58 19.75 58.34 57.30 36.79 45.90 44.84 87.55 41.74 96.42 73.72 11.86 82.12 65.64 23.99 55.21 44.11 64.50 20.31 87.38 25.11 2.51 44.22 88.01 92.50 96.15 51.18 94.33 67.82 70.44 0.43 34.02 91.34 21.74 16.70 49.23 31.58 82.99 52.88 76.28 84.31 16.99 27.59 6.50 56.99 32.28 52.13 21.71 39.42 85.69 53.46 86.25 88.57 73.05 70.15 45.77 7.73 72.96 4.40 91.51 95.77 65.03 30.09 18.00 79.20 0.89 93.85 9.55 59.79 61.37 85.01 49.11 44.80 6.41 20.52 48.20 34.78 72.08 33.57 10.63 88.23 78.13 11.35 21.66 91.44 71.54 25.00 54.31 90.38 -42.09 38.95 69.43 72.69 53.01 77.95 6.96 95.99 51.24 34.89 52.67 47.38 26.35 53.67 1.76 92.75 48.12 36.40 20.31 69.81 42.42 94.55 53.85 44.47 71.86 6.50 86.47 71.98 26.72 29.74 68.74 0.11 37.22 2.17 54.58 37.57 79.35 9.81 80.74 9.67 60.89 6.32 82.27 73.41 2.77 63.99 40.78 22.35 17.60 14.33 4.91 16.31 87.45 83.83 99.87 47.46 37.18 46.46 88.60 50.26 19.76 50.92 59.40 66.81 60.00 23.22 22.80 85.64 67.74 87.34 66.85 45.56 98.91 19.74 45.48 66.52 31.88 80.76 32.98 5.07 42.54 74.76 27.04 55.54 46.12 28.80 37.72 73.19 87.55 29.60 62.59 34.92 94.37 67.87 66.46 27.34 57.14 28.38 40.40 66.22 -92.66 58.89 91.80 60.85 51.80 27.16 98.54 17.60 71.51 82.51 86.00 36.12 72.01 38.69 29.82 2.25 42.63 99.35 1.55 41.68 1.06 45.06 49.84 85.06 22.58 30.92 98.91 55.32 90.17 62.77 38.34 87.22 77.79 35.86 33.40 78.25 5.40 13.48 61.27 20.56 69.80 38.25 37.58 62.67 27.75 43.00 99.62 79.71 93.71 53.29 18.01 70.42 31.71 94.78 49.42 35.80 10.99 6.97 94.83 52.04 97.21 4.70 31.49 12.64 60.99 97.29 30.19 45.91 30.41 37.68 12.24 64.98 70.20 43.71 25.05 58.57 9.28 83.29 12.40 87.49 51.53 1.90 43.47 63.76 84.65 16.13 32.56 45.72 63.15 82.16 82.56 37.47 67.39 61.00 57.23 6.39 26.40 76.71 37.56 71.20 -3.59 39.10 82.24 98.07 92.68 57.83 58.26 19.21 98.96 10.15 47.09 51.61 78.17 11.89 89.08 44.53 64.51 49.38 4.10 3.21 64.54 23.85 69.95 29.20 45.59 6.15 2.89 81.04 75.07 92.09 93.26 18.23 1.31 27.56 21.29 34.66 85.65 12.05 28.28 57.39 50.50 40.72 71.55 24.38 25.81 64.64 62.17 48.12 0.78 12.46 64.11 54.94 11.23 38.08 54.97 68.27 10.94 48.62 85.06 95.15 52.16 42.57 89.24 56.61 0.18 97.12 28.32 70.26 46.84 83.79 24.37 67.67 9.41 87.58 88.41 99.83 40.18 18.88 91.58 11.90 32.43 60.65 84.35 90.49 7.26 44.86 64.78 26.12 23.94 98.20 96.79 90.16 48.79 62.56 13.50 52.55 46.44 31.34 30.93 70.75 -94.01 88.27 12.32 36.89 91.31 89.69 8.04 58.91 35.33 52.34 53.19 24.92 25.22 45.92 33.41 32.09 75.41 34.00 11.89 79.81 4.32 97.87 14.55 35.62 28.04 92.15 50.08 66.43 82.42 39.56 53.82 85.43 14.70 47.65 32.02 32.64 40.65 71.90 90.33 38.90 18.52 16.21 98.16 66.72 70.44 65.64 62.12 58.70 55.32 97.92 15.82 51.14 86.85 96.02 11.33 31.49 44.06 82.56 70.81 80.14 13.02 33.48 59.74 1.51 88.43 34.82 96.08 77.68 24.02 95.09 39.89 86.84 26.65 54.55 0.32 45.67 25.27 11.45 33.78 19.75 82.90 42.86 9.96 37.99 9.83 26.77 36.30 86.11 99.83 46.66 52.79 83.59 72.52 10.00 3.13 54.33 94.39 2.28 76.79 83.35 -10.89 91.03 20.05 63.47 58.04 9.10 32.99 25.09 81.02 24.90 84.99 97.16 59.22 95.19 87.26 20.04 78.82 97.01 5.37 78.14 78.98 26.50 23.37 75.36 35.28 10.70 64.53 56.47 20.04 77.80 8.95 81.14 98.97 91.72 18.66 76.68 50.76 83.96 66.93 49.37 38.81 38.33 28.78 60.33 99.14 76.47 72.52 94.84 17.67 33.98 99.46 1.26 77.01 42.46 25.90 8.96 32.49 93.13 65.21 13.54 20.54 25.58 41.56 42.95 27.27 40.99 7.14 97.46 75.15 61.01 32.09 43.06 82.25 57.40 87.15 13.26 64.33 58.31 14.07 19.81 53.45 54.95 53.81 78.37 51.36 31.98 34.65 51.14 12.67 84.41 96.48 40.59 96.16 4.40 20.86 65.53 97.01 38.85 42.90 5.74 -88.25 0.12 33.65 83.82 15.76 3.23 80.94 58.38 73.84 95.24 7.04 66.61 35.49 56.03 28.76 70.01 85.34 29.98 59.98 35.14 58.37 82.59 72.64 70.41 47.40 30.49 79.48 69.61 12.07 80.96 36.17 46.79 97.97 1.90 70.39 56.49 89.74 84.07 66.65 52.73 4.52 77.77 34.27 56.97 40.60 45.93 44.24 98.90 29.87 27.62 50.92 7.37 54.29 2.10 64.56 32.64 65.12 60.14 38.85 83.83 61.35 27.25 53.72 86.29 80.40 54.11 85.06 34.13 97.81 12.85 31.34 95.39 64.87 40.97 96.50 34.11 89.82 23.88 53.10 80.70 45.17 6.52 47.34 86.37 32.65 47.00 35.34 64.07 59.11 8.46 62.89 82.75 95.64 75.94 55.35 91.76 52.84 18.00 14.27 0.47 -95.91 22.47 67.03 20.04 36.29 14.02 46.72 28.63 0.09 52.92 20.02 96.26 64.26 67.87 34.26 49.54 1.11 52.91 71.01 30.16 94.13 45.35 42.93 94.62 1.38 99.31 25.49 66.20 33.69 1.59 87.52 49.22 31.14 22.49 3.95 19.95 44.40 15.75 79.32 68.10 56.19 90.09 29.69 59.80 72.67 16.78 19.05 86.26 25.33 99.31 54.20 75.88 97.33 69.98 54.78 31.42 70.76 28.84 36.63 75.95 39.21 20.59 2.69 33.09 34.19 68.24 99.63 35.37 45.92 8.52 8.02 65.55 36.92 23.94 91.08 83.65 24.97 25.48 25.02 1.81 44.96 34.80 56.43 73.00 48.75 17.42 1.16 49.14 97.25 4.98 83.17 43.10 87.23 46.43 35.14 37.70 0.02 87.68 66.95 56.13 -36.63 0.20 15.91 99.01 76.98 42.41 93.52 2.39 40.47 79.55 19.57 51.53 67.91 4.94 7.14 30.71 59.84 12.90 75.49 30.30 33.49 18.93 22.60 54.40 17.11 54.40 58.08 70.95 31.84 23.46 8.61 71.32 1.26 34.29 0.04 6.55 86.69 86.85 40.42 45.09 15.04 34.48 86.85 52.41 48.44 13.58 29.18 56.44 25.45 23.78 43.61 24.39 81.52 84.48 12.43 92.20 2.74 44.94 67.97 90.74 79.37 19.41 43.44 39.52 20.77 3.10 94.64 4.15 22.65 13.93 69.70 18.53 19.31 27.00 91.34 33.71 42.77 70.68 64.40 54.78 57.89 90.08 83.65 52.31 73.22 62.17 78.22 94.35 77.92 5.54 70.33 70.72 50.01 86.81 95.41 80.17 9.89 86.39 63.31 97.48 -46.38 89.22 59.64 64.29 53.90 45.93 78.15 2.40 29.82 52.43 16.92 24.99 44.75 30.52 45.14 48.73 78.69 56.87 87.69 28.37 27.31 61.20 45.76 34.05 25.48 31.51 98.68 68.80 95.99 38.59 5.15 17.22 81.99 33.41 31.34 80.13 47.28 4.72 40.83 63.91 4.13 44.17 21.96 49.93 71.31 20.90 13.58 95.70 97.96 71.88 42.44 35.30 26.35 49.79 9.22 9.83 32.86 61.49 57.61 15.05 18.93 35.09 22.62 41.19 53.03 39.91 51.78 36.94 66.28 4.60 35.94 82.11 98.28 1.46 39.47 70.05 74.08 75.58 12.09 14.11 14.83 97.26 49.76 44.94 48.83 83.71 98.28 95.21 56.51 93.35 0.75 53.43 37.61 76.51 62.14 94.58 8.83 41.91 52.38 47.41 -37.86 33.94 12.56 97.91 28.12 1.19 50.82 99.47 34.59 57.08 74.22 76.92 93.03 78.88 73.13 82.16 19.90 19.38 45.57 93.29 37.22 1.09 92.15 87.55 89.51 98.45 4.96 6.27 35.95 50.65 10.79 78.23 81.74 2.52 14.07 66.86 1.68 74.24 49.16 16.33 88.13 3.21 50.10 84.53 74.47 20.63 67.03 65.69 64.27 90.05 58.02 13.12 11.65 70.57 65.40 22.78 14.71 57.59 8.54 93.55 94.47 45.76 42.43 37.25 79.25 80.40 31.85 75.09 50.15 44.10 59.65 75.12 80.18 0.12 1.74 50.21 52.20 99.28 84.98 80.78 98.85 3.59 50.63 23.35 15.49 37.25 4.46 76.29 53.67 14.63 21.84 18.56 34.77 5.88 10.92 26.53 90.59 82.89 16.57 62.64 -3.57 85.01 72.04 31.70 82.31 46.12 56.72 60.02 86.83 44.73 52.11 32.84 68.55 56.95 7.78 89.62 52.48 96.05 93.11 32.03 90.19 89.05 24.32 13.48 76.04 95.52 4.91 44.18 44.68 15.43 46.37 88.88 87.90 43.32 1.41 40.67 52.27 64.73 2.49 76.44 36.78 34.90 25.19 40.55 47.56 31.00 53.58 2.56 37.36 17.11 55.94 60.98 49.01 50.06 3.23 60.98 21.03 77.41 7.72 87.67 6.27 41.41 69.84 55.66 46.04 51.36 4.20 90.47 28.23 42.55 96.61 97.71 83.14 50.83 38.73 95.44 96.51 3.44 33.61 85.57 87.77 53.41 38.16 47.60 62.11 53.21 7.31 64.19 29.27 24.48 85.72 96.41 27.84 17.20 21.43 68.67 73.26 80.34 24.46 41.87 -22.71 35.71 28.09 23.45 13.43 20.91 66.53 84.83 49.84 77.68 35.50 64.67 22.45 33.09 52.16 20.78 82.64 34.53 72.45 28.38 69.53 39.24 30.46 33.55 33.44 44.97 48.19 91.42 60.48 67.47 25.83 46.92 5.23 27.68 75.36 49.13 13.38 33.79 46.43 98.59 48.86 67.32 20.79 52.82 24.62 75.78 39.45 84.51 42.19 43.31 35.68 62.80 9.23 43.77 83.58 88.82 62.60 14.00 83.04 85.22 98.11 48.54 10.55 98.03 24.96 17.42 36.41 98.34 4.45 53.63 71.20 64.89 93.52 1.76 92.05 43.91 18.15 92.30 93.04 36.79 69.54 2.83 13.57 82.20 29.68 14.59 76.63 79.01 80.12 9.47 30.74 48.91 64.63 90.01 17.77 79.07 80.34 74.97 64.85 16.11 -38.92 23.50 28.65 75.48 0.63 19.59 85.46 46.70 74.96 19.08 3.41 41.89 36.07 23.38 87.06 73.47 98.45 41.16 25.50 99.62 76.34 69.13 81.15 52.62 23.87 78.36 51.86 30.43 94.38 31.85 7.40 76.69 45.65 83.26 1.88 39.11 47.97 42.81 47.41 61.90 70.61 99.38 57.19 78.95 49.37 94.22 65.55 39.41 24.85 67.36 36.13 30.08 79.37 6.33 92.27 66.88 9.74 70.73 35.37 55.59 60.34 94.04 60.13 27.69 36.13 23.99 41.10 56.04 71.81 57.83 57.19 25.46 36.98 58.63 18.75 18.00 21.79 56.15 20.37 43.57 85.30 48.49 31.60 14.27 30.88 78.60 47.98 92.23 61.30 8.15 53.74 48.27 46.52 26.51 98.43 0.10 2.46 19.79 50.77 48.28 -48.79 53.46 2.32 20.68 50.18 96.60 85.73 36.80 60.85 72.98 6.73 74.98 19.35 30.74 83.89 27.62 21.49 64.29 77.89 23.19 90.06 58.94 56.74 98.41 99.13 27.23 87.04 48.45 37.76 43.89 12.03 9.04 71.05 65.11 54.45 27.42 90.26 68.95 69.24 64.41 18.73 48.68 75.95 50.40 0.75 41.51 57.45 12.36 67.25 40.75 20.70 5.34 7.18 89.55 63.10 30.75 46.46 78.07 29.73 41.41 62.37 9.74 57.34 0.47 29.21 84.64 72.09 67.97 84.69 72.68 28.82 71.52 22.17 71.19 26.22 32.53 96.17 32.34 68.94 24.92 6.63 87.44 73.80 0.41 74.95 7.28 9.14 86.02 24.68 27.94 28.35 3.60 95.11 78.92 74.53 74.12 42.73 65.88 76.44 66.30 -89.25 51.23 50.45 23.51 27.86 90.46 99.76 74.67 74.58 9.98 91.13 34.76 93.79 30.09 15.06 5.16 18.98 15.02 86.28 4.15 30.71 87.53 6.26 27.85 99.11 77.69 21.93 74.98 41.98 47.00 27.87 57.42 61.06 5.62 51.47 95.73 70.34 24.19 39.92 93.44 80.76 90.59 19.80 60.41 25.59 36.38 38.56 3.98 21.68 39.83 49.55 42.04 12.22 53.16 84.85 38.18 57.47 85.24 2.72 58.55 56.66 8.57 12.74 81.58 27.52 73.64 24.09 45.39 10.89 56.53 49.81 64.27 31.86 84.88 94.10 75.40 97.38 91.53 37.25 2.35 99.52 35.50 70.83 85.26 48.00 92.18 1.23 31.09 12.18 31.67 73.19 76.56 55.00 11.70 97.31 13.18 82.39 60.06 30.96 90.21 -71.53 79.58 47.72 30.78 28.38 89.33 9.18 60.17 20.36 5.43 37.58 35.86 79.99 33.94 19.36 75.49 89.06 41.59 35.17 72.02 71.20 91.58 33.91 87.63 59.10 67.22 8.52 21.09 59.89 16.90 48.28 32.86 86.01 80.63 4.18 78.03 83.85 14.13 8.50 70.54 91.29 24.23 7.05 4.53 41.72 87.12 64.89 30.05 19.19 81.73 48.05 79.25 37.92 45.33 52.52 66.98 75.39 52.91 49.53 35.59 9.52 74.75 70.13 51.96 12.00 75.89 98.47 1.41 42.01 49.69 76.39 83.87 70.61 4.46 27.37 51.56 93.89 63.20 47.74 10.42 90.40 23.37 89.54 20.84 33.96 3.87 53.01 37.79 4.42 21.91 55.14 89.55 99.70 47.66 92.50 7.45 87.69 90.98 19.81 96.45 -92.29 89.84 24.21 58.26 27.26 63.27 54.44 85.58 91.50 13.81 68.69 58.32 83.79 67.16 20.94 82.31 45.14 32.10 19.31 92.71 95.10 65.01 64.83 79.56 35.94 69.75 2.06 90.87 42.73 58.07 83.21 27.99 6.15 49.87 89.11 64.56 8.64 86.38 55.23 76.94 63.58 47.56 38.38 9.74 82.57 87.63 44.99 29.73 48.17 75.69 39.39 30.82 84.53 97.11 48.44 48.51 74.62 0.63 83.12 86.31 40.51 82.64 11.36 19.63 49.87 81.43 89.44 77.78 18.45 29.77 33.87 67.08 32.05 58.20 0.21 9.11 71.89 25.71 35.66 84.95 52.51 66.94 20.33 26.93 70.64 66.88 87.14 37.27 71.72 33.13 80.45 19.13 97.80 78.21 85.87 54.15 72.04 24.65 64.78 30.19 -96.82 56.84 73.43 65.80 60.92 43.72 72.18 45.39 1.37 25.58 87.44 69.80 18.27 74.40 91.47 26.10 67.42 72.87 45.66 18.91 7.38 94.61 24.43 15.13 3.32 54.44 2.05 59.85 17.31 78.20 67.21 48.76 32.61 94.99 47.30 15.04 75.96 30.19 12.84 75.07 55.93 0.56 68.73 1.33 9.68 42.64 15.51 27.22 73.59 31.87 20.72 8.50 45.29 43.14 8.81 0.44 29.75 98.57 71.70 12.63 44.52 60.99 61.67 58.10 24.17 98.79 32.35 59.26 45.34 48.70 47.10 7.33 65.45 46.23 45.82 97.32 57.77 52.76 46.75 69.25 30.10 77.03 66.87 93.86 11.68 82.64 87.93 89.96 6.05 99.01 68.62 71.69 62.10 70.00 3.64 8.13 20.76 15.76 33.51 31.93 -45.17 39.68 81.91 62.72 19.24 20.29 11.43 50.99 63.91 93.88 75.66 66.48 19.23 54.21 49.07 11.32 97.72 94.54 33.44 25.78 79.34 53.26 44.94 83.51 12.09 14.34 63.78 13.85 88.98 60.38 70.16 30.13 64.03 30.55 80.13 11.99 82.23 32.14 32.95 78.75 95.86 70.04 45.72 50.69 44.02 96.54 6.65 43.77 12.33 36.29 25.81 29.09 99.94 14.17 9.97 8.95 57.08 64.85 60.46 65.88 9.76 29.39 62.00 38.29 21.68 73.20 95.40 85.36 43.65 46.62 22.23 71.13 36.27 89.76 73.04 90.45 96.60 59.03 86.01 4.84 70.85 80.30 63.51 50.63 47.65 4.39 22.64 90.68 85.40 2.09 36.84 49.34 9.36 63.91 22.19 52.31 16.05 40.55 64.89 14.89 -74.37 82.69 33.15 88.32 67.00 21.29 41.42 89.02 8.16 90.17 37.58 80.54 42.18 57.59 56.56 70.27 17.55 36.92 87.47 11.96 47.38 91.00 65.12 61.52 63.78 0.22 12.85 77.54 13.62 0.40 91.20 27.11 60.48 58.98 24.36 2.86 61.21 75.46 10.06 94.01 80.08 24.53 33.09 12.84 67.00 34.60 98.50 51.07 91.62 69.48 68.44 51.10 15.63 48.16 81.45 30.32 67.24 6.44 22.75 1.81 84.12 71.52 17.10 71.21 47.51 53.25 66.51 70.92 5.76 3.16 28.46 37.20 39.46 72.16 64.41 55.14 41.06 21.57 8.40 0.94 16.75 48.48 45.01 48.50 72.94 20.36 50.33 1.16 31.29 75.26 42.62 57.84 93.68 35.80 2.05 23.38 71.59 70.57 55.50 25.63 -69.72 93.51 38.78 34.62 64.97 73.89 35.54 16.55 46.36 87.89 30.60 18.96 7.26 15.93 19.64 45.38 49.06 77.20 9.17 28.91 26.27 77.51 82.11 48.65 16.25 14.72 62.33 46.36 29.15 5.71 59.08 81.40 16.87 86.52 67.51 61.61 58.40 27.41 27.45 90.24 2.32 73.71 61.01 36.34 38.80 32.01 68.69 41.07 98.87 63.21 2.81 5.13 10.25 51.19 40.64 99.84 89.95 67.92 28.17 23.99 74.77 59.04 5.23 98.23 98.83 86.76 71.74 46.44 36.29 7.02 67.13 68.20 82.70 66.38 37.38 6.54 62.13 29.42 1.84 81.70 82.77 86.24 29.88 50.65 30.54 23.68 97.57 36.95 50.82 57.65 85.96 32.34 30.23 41.97 68.75 31.27 31.06 22.59 81.47 18.02 -75.67 65.89 66.63 20.49 65.04 80.33 76.99 6.84 21.83 0.29 34.26 67.62 10.53 28.11 53.13 13.61 65.60 63.40 57.89 0.28 76.11 27.05 90.13 85.66 59.80 74.35 48.99 24.87 96.65 58.04 37.37 79.29 68.70 6.46 96.59 73.02 58.88 91.34 93.17 72.48 54.80 99.70 12.84 96.97 96.11 33.74 21.37 4.50 44.47 73.89 38.56 21.30 25.07 6.72 86.57 69.28 19.16 2.80 2.25 24.69 31.59 5.71 7.83 98.82 78.93 27.03 76.14 72.07 45.74 11.47 32.22 43.45 46.15 45.22 43.17 2.71 79.87 67.07 83.69 65.08 90.65 23.39 2.40 84.83 67.56 16.57 94.39 9.31 56.83 53.94 30.11 64.93 78.29 73.39 80.16 82.42 40.58 84.34 40.76 23.83 -40.57 47.22 4.94 97.86 75.06 68.52 1.11 6.77 33.80 15.93 49.25 87.99 89.10 14.70 49.61 87.13 84.36 82.66 24.19 34.03 99.54 70.36 55.63 37.32 27.24 50.57 80.38 20.98 66.69 66.01 28.51 18.74 48.86 69.43 68.07 53.97 82.50 38.11 5.89 95.38 63.75 55.08 21.76 59.13 12.26 68.16 71.13 31.55 39.69 75.14 5.07 97.48 66.70 97.80 31.80 78.79 1.74 66.94 78.41 84.12 35.93 41.14 25.01 36.02 22.72 32.66 54.38 42.32 88.66 30.43 26.65 80.32 98.64 29.95 33.77 7.29 57.04 54.15 80.55 95.83 34.55 23.94 68.55 97.28 80.71 9.29 86.03 22.75 37.24 64.52 80.11 9.61 41.74 9.61 53.12 47.13 79.79 40.66 2.10 75.69 -72.96 31.64 82.13 69.86 72.11 5.22 99.24 95.35 47.06 54.47 38.15 23.63 47.93 74.03 6.98 3.27 29.21 25.91 91.30 85.23 72.52 51.41 24.65 18.09 1.47 36.76 96.45 98.10 89.49 38.86 16.99 24.85 80.10 17.41 58.59 52.24 75.35 85.35 63.72 96.32 65.24 45.82 49.49 51.01 53.81 11.50 93.25 4.10 8.33 86.09 40.88 35.01 40.86 76.58 86.42 27.69 26.82 48.95 60.17 12.37 95.23 71.04 81.14 47.61 77.83 72.84 53.62 5.83 23.39 36.08 45.52 7.25 48.05 92.43 27.53 65.20 18.75 24.38 87.75 94.02 4.76 38.10 73.19 21.41 7.54 67.53 7.39 44.37 4.26 62.24 4.53 86.06 29.67 16.02 45.66 15.14 9.33 59.81 79.10 39.52 -54.13 52.45 78.12 15.50 25.55 91.92 74.51 78.98 91.09 1.44 65.71 78.09 12.19 80.82 33.57 74.04 18.17 48.53 96.68 77.36 13.09 73.33 33.92 48.56 25.27 98.66 31.32 66.68 87.48 42.20 29.50 9.26 95.81 98.68 78.80 25.44 93.89 99.13 36.90 42.07 12.60 66.84 16.16 89.64 36.53 87.28 52.91 12.90 89.62 43.85 58.32 87.75 76.90 60.96 21.76 26.40 58.96 64.91 28.64 87.39 47.87 71.73 27.14 13.74 98.23 73.68 55.45 40.77 2.36 92.59 46.55 20.60 36.33 18.42 74.25 21.05 40.25 83.07 43.58 68.11 1.46 2.99 54.16 55.05 17.36 16.55 49.10 72.42 55.67 88.84 47.65 18.11 55.17 31.39 32.79 1.85 0.50 17.42 0.09 46.26 -10.70 66.67 14.42 96.53 66.93 51.16 34.53 5.28 17.99 82.66 99.80 85.71 8.91 79.19 53.33 47.51 90.13 36.21 29.58 97.07 19.77 69.88 81.41 83.16 6.13 45.73 95.45 37.09 71.41 32.01 75.60 28.84 86.79 20.93 14.53 85.27 55.15 58.99 1.72 93.13 88.38 90.09 22.79 65.39 34.18 21.22 16.84 63.64 47.27 59.59 34.89 8.78 89.85 40.92 15.37 29.80 61.87 61.15 63.06 22.58 49.63 84.02 68.48 82.43 45.29 77.01 91.24 27.63 94.59 60.37 82.32 50.85 61.77 72.22 75.52 77.71 6.89 96.48 97.47 43.66 82.79 24.62 4.61 48.52 80.52 6.50 1.19 42.25 45.11 83.48 36.36 33.42 89.60 48.15 14.44 6.66 45.11 89.64 34.40 37.16 -85.08 94.71 56.10 13.36 20.61 91.23 49.92 62.36 30.97 2.84 95.88 9.25 64.14 75.24 61.83 50.98 55.12 95.87 32.74 85.60 99.51 48.72 70.71 55.74 83.38 50.07 75.69 97.56 83.43 45.98 19.36 16.07 83.13 14.57 37.09 14.74 25.46 85.79 45.55 30.87 19.53 25.22 8.47 52.39 6.09 18.78 24.49 62.63 37.68 23.31 23.58 66.03 6.75 21.00 52.31 88.02 52.17 11.17 2.77 95.82 78.48 91.94 40.06 83.29 97.39 57.87 14.81 53.67 61.75 25.57 1.78 22.46 94.71 26.35 54.25 66.40 1.82 28.44 30.47 89.57 29.89 31.97 21.79 70.16 41.48 3.21 52.04 0.30 60.82 83.86 39.89 23.72 56.54 46.52 15.27 20.57 86.52 62.86 84.54 65.75 -25.17 92.09 7.47 92.41 12.52 38.02 14.28 65.18 98.93 88.83 68.51 62.01 87.86 15.85 83.14 56.63 74.40 6.30 61.50 71.92 51.12 23.15 60.93 39.61 45.54 78.09 37.79 25.21 89.97 47.84 18.57 25.51 15.27 69.19 62.25 66.03 97.48 19.44 77.36 19.36 82.71 9.49 73.97 77.33 29.80 73.46 66.36 5.72 41.03 48.31 25.62 63.86 39.81 99.42 94.70 42.45 18.31 7.71 54.90 80.87 33.81 39.32 63.43 8.56 16.46 57.50 75.25 42.33 88.62 45.19 77.99 37.98 6.05 86.09 2.62 75.92 94.72 50.22 79.62 59.78 4.59 82.74 64.16 87.58 68.61 84.89 82.19 45.74 99.87 1.29 71.36 53.89 88.92 7.09 61.17 99.47 79.19 36.75 22.93 27.62 -63.64 5.97 32.66 26.34 59.70 37.18 82.65 72.71 19.16 71.09 92.48 38.08 18.54 51.42 72.40 62.89 76.18 2.40 98.87 63.80 85.84 5.61 91.56 92.37 21.92 70.01 9.68 60.95 87.99 57.96 8.33 12.99 41.85 70.86 40.75 50.12 92.45 9.15 30.60 51.72 99.81 50.74 51.18 33.73 75.29 2.32 45.07 39.08 28.51 20.19 64.59 22.39 0.38 81.50 73.78 34.81 10.10 95.90 38.07 22.62 66.66 2.69 14.81 33.08 84.17 18.35 74.90 83.96 90.74 50.95 81.37 32.84 24.23 38.17 66.60 25.94 79.97 18.73 83.47 29.59 80.23 50.69 32.50 41.16 84.38 62.47 33.55 54.42 60.44 22.20 23.87 6.39 46.40 39.80 5.87 20.89 82.16 41.65 26.47 45.84 -79.36 38.19 97.37 67.17 78.90 54.58 31.92 74.58 62.21 56.61 32.24 60.19 64.35 73.00 19.41 61.67 70.28 93.28 56.02 4.02 1.92 42.58 82.67 44.03 30.36 46.67 93.42 71.24 72.06 89.45 45.94 2.67 70.54 46.04 31.66 91.77 64.93 77.87 31.74 62.82 1.18 89.95 51.36 95.87 35.90 30.78 94.66 85.48 99.42 60.85 9.36 85.33 81.57 33.76 94.41 35.81 12.68 96.22 96.14 26.01 37.82 11.83 12.89 13.05 69.41 17.94 71.82 93.27 28.62 38.41 85.89 55.37 38.56 59.04 26.21 24.54 83.28 80.73 98.51 24.74 65.94 38.44 78.97 12.57 46.53 98.80 58.57 44.05 34.20 12.81 18.82 96.92 98.99 83.24 0.20 45.38 13.69 69.31 19.24 78.24 -78.76 49.29 46.07 6.77 17.55 10.81 12.90 80.05 46.51 15.11 15.49 48.63 52.21 40.04 83.82 29.52 11.39 75.60 60.32 98.73 31.70 33.16 92.28 82.72 45.81 16.59 23.82 11.75 35.38 98.61 62.68 24.52 35.16 8.71 61.35 39.18 10.42 78.30 43.34 52.73 63.37 7.75 77.00 69.43 66.17 26.38 36.21 39.39 96.34 59.63 47.07 89.61 98.47 19.42 68.68 60.55 92.24 50.93 5.74 58.04 63.38 54.93 85.86 88.33 29.84 27.67 84.53 13.60 49.51 29.93 1.52 10.83 25.75 62.54 18.72 41.15 3.35 81.26 62.05 12.68 17.74 2.03 15.81 47.92 59.47 49.32 74.20 17.72 31.73 85.58 5.70 52.14 11.59 76.09 67.91 45.44 43.36 53.60 20.91 27.02 -95.83 0.29 41.67 19.30 36.17 21.37 15.80 8.76 45.25 32.43 76.24 79.02 1.38 28.12 88.13 1.77 1.88 97.20 69.33 15.45 84.92 71.86 54.81 92.97 56.43 38.95 58.35 34.74 22.49 31.69 55.07 40.51 21.69 1.42 98.50 1.46 76.13 22.34 99.13 30.30 17.38 80.56 40.24 42.20 31.50 25.92 26.71 86.07 21.83 30.20 86.30 35.71 63.03 37.26 6.74 85.68 4.82 0.66 24.96 59.78 71.33 3.61 97.68 70.81 95.95 47.85 46.12 73.33 82.57 6.25 38.14 97.60 41.51 75.81 58.27 94.74 31.45 22.59 54.42 46.24 99.50 56.04 52.35 79.42 26.21 4.47 84.89 88.58 45.39 93.43 66.11 95.22 60.80 54.46 69.52 98.93 43.54 43.23 40.62 27.04 -54.95 93.43 61.11 45.97 84.41 60.06 78.69 18.75 37.06 8.97 48.69 83.69 55.39 83.37 55.50 6.65 6.12 41.76 17.07 6.42 58.41 98.33 55.66 2.21 65.61 59.00 18.49 17.01 55.77 54.83 96.57 61.69 89.60 28.87 54.11 9.88 68.59 11.66 33.48 77.85 14.84 68.66 53.38 12.86 93.78 90.48 69.49 56.40 58.65 40.25 37.53 40.95 49.56 80.47 60.37 85.59 90.83 58.28 43.60 29.46 50.76 63.06 35.04 60.93 25.94 45.34 71.61 51.85 26.57 63.25 48.81 7.83 68.94 6.37 34.64 31.68 93.54 20.06 15.97 85.48 57.35 64.24 45.46 72.14 59.14 3.67 87.26 53.75 33.02 54.20 13.99 35.35 63.94 4.46 29.33 45.20 95.90 96.84 87.22 51.81 -11.06 54.31 61.73 51.29 12.19 21.81 65.49 56.41 32.28 88.00 8.04 51.80 9.58 42.41 40.17 79.02 7.52 40.61 95.56 51.89 24.09 66.33 38.59 36.68 66.14 22.74 58.58 17.66 39.23 37.71 92.79 81.93 33.56 28.59 18.68 27.51 31.97 42.90 32.22 59.37 21.42 94.23 57.60 26.12 68.43 77.62 77.57 60.89 25.97 29.69 97.62 60.83 66.26 14.06 84.34 29.22 7.68 3.30 14.95 94.12 7.95 72.27 87.60 93.50 95.07 40.76 41.74 96.72 43.53 31.72 46.94 49.82 43.49 74.42 20.00 8.88 32.39 66.01 36.75 99.40 93.33 56.23 54.62 69.65 88.26 90.67 24.88 49.95 97.59 84.48 26.90 77.87 92.33 34.13 64.30 28.34 92.19 7.09 8.40 23.27 -46.97 75.84 56.04 69.84 64.51 4.25 99.06 64.60 50.12 66.92 21.97 99.11 26.96 32.24 27.56 72.35 51.76 5.25 64.15 90.64 56.38 19.01 72.67 58.20 66.08 59.16 80.38 61.59 14.76 10.01 71.14 93.93 32.08 86.11 10.37 79.95 31.06 79.37 50.90 38.60 98.68 2.77 23.99 99.97 77.39 7.99 76.99 18.46 28.67 44.16 36.67 62.96 47.60 88.20 31.50 92.60 2.65 87.25 95.68 63.68 96.62 0.49 67.53 67.45 38.98 95.99 68.63 2.83 68.13 7.44 95.80 21.33 27.42 42.98 86.88 64.72 96.15 99.16 79.83 23.07 46.19 54.78 16.43 33.80 4.84 81.67 90.38 75.85 72.96 80.28 39.91 31.58 39.62 4.90 18.94 97.82 60.86 81.21 55.65 5.48 -2.99 68.80 58.68 28.60 86.20 4.17 13.91 93.43 46.17 59.99 25.76 92.80 20.91 28.61 63.50 74.48 54.64 65.20 98.58 82.94 69.09 41.10 65.35 48.27 51.36 64.71 48.05 10.41 46.51 55.88 17.49 60.74 58.30 26.62 35.20 0.72 75.47 33.32 42.88 35.29 58.79 79.30 53.27 40.14 82.52 37.87 58.85 32.41 87.73 73.59 94.55 39.66 0.48 65.50 57.39 65.41 20.88 75.46 59.15 61.49 70.74 12.99 60.07 68.67 85.90 75.47 12.70 65.08 12.93 63.04 89.37 59.55 43.84 3.87 42.36 47.18 9.36 98.14 2.71 49.23 52.01 5.47 17.26 56.49 75.27 87.89 18.73 70.18 93.41 12.02 67.49 69.35 37.03 23.73 57.69 21.19 21.71 91.09 56.00 91.33 -33.34 51.48 64.80 47.17 49.71 95.41 66.16 47.85 69.66 21.25 22.90 46.03 11.68 77.76 65.74 66.76 12.93 46.88 3.09 53.72 80.61 47.00 0.04 20.81 79.30 94.51 36.01 12.55 16.60 4.11 72.85 27.49 39.46 54.56 14.85 85.01 3.02 59.36 73.28 80.37 37.52 69.16 20.84 72.73 1.19 39.13 76.22 93.76 96.94 15.75 38.94 85.89 44.11 23.18 64.91 12.24 32.76 79.47 31.70 5.41 72.35 39.32 18.52 89.36 74.02 60.69 93.70 88.46 24.62 85.45 61.17 3.09 71.82 82.09 48.67 91.10 37.21 57.99 10.58 3.67 14.86 76.78 25.26 22.29 59.71 19.97 32.26 52.73 45.20 26.15 66.04 61.59 20.89 13.45 75.24 40.88 54.07 33.51 22.25 42.84 -89.64 31.34 38.41 2.92 35.48 36.09 43.19 3.65 99.18 64.18 77.24 44.38 65.87 3.38 93.55 32.91 29.59 3.29 70.32 35.94 64.19 40.38 23.01 91.78 48.99 49.53 0.60 98.58 88.47 86.41 2.59 58.45 29.36 30.71 1.71 97.27 85.72 3.47 56.36 81.15 68.82 63.36 36.47 8.93 55.77 55.74 62.06 38.44 69.34 6.86 71.21 73.37 91.30 30.08 84.25 59.30 78.34 22.55 97.99 54.64 65.46 38.23 65.12 37.80 49.36 3.45 95.73 99.40 92.54 33.44 45.01 69.32 27.69 21.49 1.84 61.89 28.86 72.46 98.62 53.82 52.75 40.62 41.66 52.32 68.21 63.38 92.36 15.59 33.44 38.74 13.87 58.97 22.28 69.08 99.40 28.98 56.65 27.16 50.82 54.65 -81.51 85.83 17.65 0.15 47.45 2.21 51.59 8.12 62.78 51.44 54.52 19.48 3.15 48.85 31.96 44.15 86.38 48.68 29.12 1.44 81.58 62.55 84.91 89.45 38.59 63.33 41.14 77.77 6.59 62.20 34.61 46.14 18.76 63.44 1.24 14.68 7.92 70.00 75.92 54.02 96.09 20.51 46.94 15.18 19.05 13.09 28.86 19.92 36.90 70.70 89.97 29.21 28.81 81.82 8.60 15.03 62.07 32.78 44.26 32.17 12.47 51.00 85.59 20.41 36.80 99.20 93.07 88.76 49.24 65.26 55.71 41.93 32.60 74.85 59.58 70.68 63.43 28.98 65.93 35.40 1.42 75.58 3.89 86.59 74.61 65.45 48.48 46.15 4.42 23.52 40.35 91.99 77.18 51.51 54.02 36.81 5.05 35.49 47.36 63.29 -61.73 74.62 77.02 47.34 75.75 20.02 47.10 43.77 83.37 23.77 35.03 51.52 1.65 73.23 55.19 10.54 24.03 68.44 16.45 89.82 42.59 76.36 80.15 70.30 54.24 88.79 40.55 39.59 64.57 76.08 72.43 47.88 49.17 59.29 71.84 19.87 89.65 86.36 91.33 17.16 52.35 87.06 17.25 69.68 42.03 94.03 17.14 44.45 62.53 91.70 85.76 63.82 65.49 73.58 70.63 25.33 68.91 61.69 16.06 34.16 29.27 13.08 98.90 13.08 29.12 47.59 9.00 69.35 45.54 81.20 1.41 11.29 95.57 5.97 89.22 44.30 48.24 7.03 68.69 33.07 72.27 47.23 20.35 17.87 53.07 80.67 42.61 22.63 89.18 22.11 35.41 50.09 67.38 43.20 89.30 0.51 38.74 95.80 35.84 2.06 -25.63 0.82 16.66 44.58 25.55 12.00 14.22 90.08 93.11 57.39 21.90 73.52 43.42 14.96 7.44 1.33 56.51 7.95 7.42 58.76 51.99 86.75 60.41 77.72 46.49 4.79 85.43 28.28 99.98 90.74 8.58 93.95 84.64 86.01 88.70 79.90 74.13 91.44 98.87 39.96 9.11 40.49 35.61 88.67 61.24 30.26 24.59 35.98 66.34 78.40 28.23 20.40 82.78 46.25 91.10 1.38 77.12 23.95 26.49 99.61 40.45 72.66 43.92 80.72 39.29 14.02 65.25 52.34 88.87 96.98 19.69 72.15 9.47 50.52 78.34 68.63 61.54 80.37 57.81 62.72 3.48 69.96 18.01 25.15 66.93 31.85 3.95 85.82 72.86 78.14 0.93 13.91 72.44 6.24 97.63 41.13 65.23 64.24 42.31 20.52 -44.08 53.44 11.25 8.97 33.18 98.51 64.15 37.90 71.07 77.14 32.36 80.85 63.14 5.29 47.75 87.28 96.58 80.47 92.20 28.48 36.16 88.55 79.49 80.67 13.75 24.59 49.35 22.08 36.73 15.93 69.10 30.13 19.75 70.22 85.46 2.04 51.53 76.09 10.02 5.40 52.03 14.26 51.28 4.93 50.44 91.18 62.01 10.12 43.11 78.26 79.99 38.60 23.22 6.45 66.12 84.25 77.05 8.34 26.91 74.11 74.94 94.28 72.86 29.36 40.85 43.43 11.31 67.38 38.84 51.55 38.18 82.75 18.06 5.95 83.45 22.62 19.40 17.78 26.54 58.33 40.57 6.04 4.84 52.67 72.11 26.32 17.82 39.16 76.02 14.31 32.38 47.26 8.97 96.08 71.59 62.65 65.67 27.69 9.15 41.84 -25.68 55.07 78.23 14.88 20.19 53.78 48.67 57.69 17.95 51.03 98.58 32.19 93.23 61.53 59.50 70.62 48.41 37.89 21.69 95.55 85.21 1.93 25.03 91.93 44.11 7.53 11.04 83.90 3.90 32.54 35.69 59.48 7.02 83.53 25.88 38.25 13.39 76.82 76.85 5.65 17.01 88.99 97.64 51.42 73.62 17.24 72.46 82.16 58.44 0.77 10.24 86.30 66.95 10.90 47.07 1.54 7.71 23.76 91.43 37.07 76.67 19.16 10.26 98.22 46.17 43.21 81.49 8.94 63.95 68.14 81.55 44.83 93.47 27.66 32.93 20.10 50.82 4.10 27.08 62.09 44.48 50.94 44.50 25.87 79.31 29.10 41.61 7.31 41.89 4.12 26.22 10.23 79.28 40.95 30.98 3.05 61.60 15.83 54.65 98.45 -23.65 23.52 52.43 96.24 47.71 35.48 66.45 15.46 72.99 84.80 2.41 78.54 45.73 30.20 6.27 74.93 95.12 73.04 51.33 24.25 70.97 33.35 48.08 43.82 85.99 3.15 98.03 76.90 61.93 30.80 50.56 25.01 81.39 62.03 33.77 20.77 84.88 30.08 41.33 73.09 75.04 63.31 16.97 3.87 53.04 82.08 1.47 66.79 87.90 34.20 55.71 88.77 62.48 72.06 84.83 47.72 61.98 96.26 35.04 39.25 77.74 18.17 72.19 38.28 4.75 47.12 11.88 0.09 59.11 17.53 23.80 10.73 22.62 16.78 6.71 8.43 69.83 93.99 23.01 43.81 96.32 59.94 25.07 11.79 24.59 89.92 14.68 57.07 80.48 58.16 8.40 41.22 89.09 79.61 1.55 51.18 85.25 72.98 56.42 96.11 -59.39 43.64 48.49 98.44 30.65 79.34 31.59 70.63 42.35 46.41 50.20 92.85 78.33 53.43 46.69 64.17 32.55 56.47 33.91 99.76 51.40 72.80 76.72 17.33 63.53 22.62 53.95 25.29 16.29 76.95 91.27 51.21 34.79 45.17 65.29 5.26 77.78 79.14 42.94 33.78 98.33 34.69 2.55 73.36 42.43 94.02 96.97 66.84 55.99 67.56 89.92 92.36 2.25 93.27 82.16 68.98 29.44 77.97 48.85 60.57 53.54 10.44 68.09 43.38 32.64 94.21 86.88 60.39 54.22 76.73 15.23 88.20 25.51 70.61 78.43 94.97 75.96 28.17 26.13 66.66 21.17 52.17 34.35 51.89 76.61 62.34 85.96 85.64 6.54 25.59 62.78 26.27 46.79 21.58 58.89 73.55 74.17 99.06 95.75 50.26 -65.04 27.54 51.15 96.12 45.77 35.12 97.75 64.59 79.11 95.39 45.57 92.97 26.11 88.82 29.08 21.10 96.70 20.47 13.14 76.96 94.24 81.36 14.77 52.23 77.56 65.17 88.34 26.98 53.42 16.74 29.02 98.17 15.46 71.60 26.07 6.14 38.03 48.00 15.31 16.47 40.06 7.62 39.63 68.62 21.90 53.89 21.14 84.57 91.05 35.16 1.46 73.82 98.73 65.60 42.12 15.91 73.76 11.17 65.87 92.28 46.98 27.80 91.57 1.73 75.01 75.68 24.62 30.49 69.40 88.27 20.52 66.46 38.37 46.29 17.79 85.02 85.17 42.73 39.03 3.33 87.29 57.24 22.46 79.64 96.14 23.69 80.26 2.51 77.90 39.68 94.25 53.61 23.35 88.91 9.78 72.96 17.33 72.17 93.37 41.68 -48.48 94.95 43.32 1.90 35.73 21.10 9.87 2.28 11.96 76.83 2.61 98.78 26.82 38.36 14.40 88.39 35.62 95.90 37.35 91.69 25.80 65.61 91.19 60.69 18.24 62.76 19.96 77.19 0.25 96.97 47.19 77.39 58.56 50.80 16.46 15.20 98.58 23.61 52.51 56.67 27.03 99.99 86.91 26.65 56.72 52.88 66.85 36.03 66.54 51.43 94.59 57.56 40.15 73.04 1.39 76.71 25.32 17.92 64.74 65.14 74.57 55.58 76.60 24.85 42.83 99.58 75.66 10.43 6.48 66.72 65.18 38.23 47.21 80.46 8.88 54.15 15.21 14.39 56.52 35.58 40.15 88.41 87.51 92.81 31.76 69.28 75.71 35.61 12.46 15.31 28.15 86.84 22.90 22.45 56.29 36.59 74.40 9.21 36.34 17.18 -35.44 42.98 49.11 58.87 86.59 89.89 59.21 81.59 53.08 97.32 96.23 81.82 46.84 69.60 4.66 33.21 63.79 6.15 9.52 87.02 52.69 19.87 16.35 83.69 36.03 61.67 18.91 28.44 43.09 64.18 42.09 81.92 29.69 45.92 28.05 15.59 74.73 81.67 62.02 99.49 80.74 9.49 78.86 87.22 24.23 97.74 60.87 83.54 54.41 71.81 60.29 28.16 34.85 12.17 20.89 72.49 53.53 88.75 10.03 32.02 1.71 76.94 16.93 63.77 15.47 33.14 10.76 20.09 40.95 31.01 11.05 30.67 91.15 17.73 91.92 86.09 86.15 16.84 47.69 51.28 97.03 70.37 12.82 59.88 5.04 29.62 39.62 40.72 27.32 33.09 38.68 6.88 5.67 95.23 46.97 36.24 55.19 72.16 0.36 7.15 -44.76 33.18 48.31 70.46 72.12 69.45 82.81 14.39 11.75 6.40 44.93 76.85 67.76 42.66 3.44 32.83 8.56 69.91 45.36 15.54 93.08 8.63 21.54 47.10 73.29 74.86 81.48 53.92 27.97 71.14 38.81 46.08 61.66 51.67 9.40 64.04 88.28 7.73 35.82 3.43 24.27 34.00 39.79 56.73 25.67 53.43 14.93 27.82 92.46 40.11 80.80 89.86 12.20 71.18 87.02 73.57 31.40 69.46 64.90 17.98 49.66 67.88 36.75 57.44 99.61 49.82 65.68 41.19 25.13 26.65 87.08 39.78 12.14 71.08 56.69 72.02 6.85 26.30 40.62 56.74 46.37 32.46 48.67 41.80 17.34 2.86 10.76 45.67 64.76 91.16 34.87 83.71 77.02 38.33 10.79 75.70 27.72 97.67 91.25 62.70 -81.55 55.13 28.20 53.70 69.82 99.18 55.75 3.65 31.22 25.51 78.17 24.92 15.26 38.56 80.15 96.22 91.15 21.34 94.68 17.94 39.99 4.64 8.22 99.98 45.29 7.66 81.06 39.53 77.81 93.56 59.85 48.81 75.05 93.02 61.96 5.38 45.39 31.44 66.19 33.20 53.62 21.48 10.71 44.52 83.50 89.80 18.73 37.25 74.47 49.14 87.16 78.26 46.18 91.25 5.87 17.12 0.41 63.29 65.39 71.82 90.30 27.35 91.86 91.53 49.01 13.09 7.48 0.55 9.63 5.22 24.73 32.88 53.75 73.03 66.83 73.16 78.31 16.65 27.68 0.15 91.00 90.06 52.72 66.04 61.26 12.35 58.06 30.56 29.43 18.16 76.00 6.62 76.48 90.91 22.69 43.89 26.14 99.44 86.20 11.40 -13.78 4.39 1.48 55.61 38.84 31.10 15.16 45.18 93.17 29.38 88.65 19.71 82.15 31.71 48.93 29.38 49.96 64.56 73.40 68.65 17.14 14.18 38.15 58.54 71.31 22.63 76.49 45.97 59.31 33.86 49.19 2.76 70.74 70.50 21.49 14.23 82.15 92.60 30.12 97.83 94.89 60.02 46.13 5.80 4.33 20.64 94.75 20.42 66.45 6.51 8.80 51.35 76.50 87.30 11.53 52.81 7.17 15.86 40.65 83.55 76.32 67.17 61.10 69.24 90.16 25.54 99.06 83.73 31.38 56.95 81.00 45.07 34.15 87.28 70.62 16.42 68.42 64.81 54.45 57.83 58.44 43.00 35.39 37.67 1.90 66.17 62.67 16.19 54.48 12.95 34.81 34.27 18.42 20.18 34.30 0.43 58.36 76.78 29.52 79.62 -67.74 45.22 26.57 3.72 42.00 98.95 12.20 26.88 20.36 31.47 85.12 55.78 12.74 9.91 39.56 2.13 4.52 78.58 32.07 83.91 77.29 57.68 39.80 91.06 8.67 19.68 57.17 28.78 60.55 53.02 82.98 17.41 22.69 38.51 13.07 19.61 16.93 25.01 2.06 15.29 81.56 52.56 37.47 44.12 18.97 66.62 49.57 99.42 42.61 85.71 15.08 38.74 17.41 56.62 88.54 77.30 52.25 20.61 96.34 74.16 23.14 51.36 55.12 32.77 85.51 93.61 67.12 58.36 24.97 73.86 82.30 65.78 43.73 70.62 96.34 74.34 12.67 73.18 59.93 97.65 97.64 8.36 83.59 17.09 41.05 52.05 23.79 80.30 67.62 13.59 48.71 26.70 88.96 14.01 79.51 75.40 35.06 94.51 81.41 43.86 -63.86 45.63 94.27 69.79 29.72 75.89 90.87 41.86 84.50 83.93 22.58 64.28 88.17 63.86 89.37 82.90 56.22 2.15 0.89 58.08 54.99 6.02 93.50 33.67 61.51 40.16 97.42 49.69 36.20 54.25 36.13 33.72 87.16 82.24 97.76 78.23 10.79 63.38 70.68 73.24 53.47 41.82 65.74 19.43 71.61 30.86 80.09 26.61 86.98 64.09 53.48 51.11 88.73 81.70 38.01 90.99 87.11 32.93 87.65 23.18 47.26 7.53 70.08 59.30 23.63 71.80 5.25 52.30 11.69 74.98 65.71 0.23 0.86 22.79 85.14 32.69 48.46 94.93 39.04 54.32 71.36 32.05 32.64 99.98 75.55 32.21 50.56 89.74 80.98 96.32 75.26 69.59 16.37 65.36 65.97 30.74 61.52 32.92 90.43 28.73 -71.27 18.86 15.41 94.10 31.21 38.67 44.03 83.44 50.27 93.45 85.54 5.09 71.75 87.04 69.74 92.30 37.16 91.24 17.09 15.48 77.74 58.14 45.47 39.81 89.80 20.59 68.11 95.25 90.42 95.37 71.76 88.42 4.54 21.82 90.87 34.90 50.13 92.75 97.53 48.08 6.61 43.75 22.24 35.35 84.51 56.24 80.93 26.65 35.43 66.96 14.66 18.63 65.93 48.41 75.39 98.93 52.40 43.72 81.50 13.22 97.57 28.63 29.87 40.30 77.71 49.80 24.12 30.09 98.49 68.88 8.34 70.73 66.45 74.58 56.38 14.13 62.12 98.82 19.42 24.34 91.31 87.25 83.45 58.94 52.93 60.41 18.14 54.44 30.83 31.19 61.48 96.40 76.49 2.74 1.81 48.67 52.53 27.65 43.23 91.88 -26.16 52.22 5.06 56.44 41.96 4.29 55.17 98.38 26.03 91.65 72.36 20.90 87.53 64.62 25.75 68.60 82.01 81.03 93.04 51.01 55.11 42.59 20.33 57.88 48.90 58.15 40.60 72.51 47.95 93.70 6.07 57.68 15.66 18.37 64.05 78.07 14.56 42.19 18.24 75.63 31.15 80.72 66.19 85.63 16.41 28.86 58.86 11.47 74.21 51.28 48.45 86.95 84.17 37.99 27.67 16.16 29.87 99.64 44.17 45.69 41.78 10.07 91.66 12.25 49.65 78.34 77.22 22.08 1.07 22.49 69.57 28.56 64.63 24.92 22.28 47.27 81.41 2.73 31.55 55.41 97.71 28.65 52.61 53.64 58.25 92.94 98.18 86.74 85.47 31.68 19.18 35.72 69.09 92.71 89.44 49.44 83.00 12.14 30.41 17.14 -8.99 68.89 93.42 77.59 70.75 68.00 27.89 97.21 50.29 39.43 71.18 77.10 4.77 16.46 50.96 52.97 14.90 41.78 50.89 42.25 99.39 65.12 97.72 97.31 3.81 37.45 42.64 32.14 79.06 35.31 69.01 89.50 34.42 60.08 1.73 85.62 20.19 97.30 16.40 18.08 47.66 49.13 71.91 8.41 20.57 88.85 50.47 55.93 40.79 84.45 83.58 36.08 17.46 0.95 27.21 57.22 36.79 13.81 11.06 21.86 1.05 6.20 49.69 65.07 20.92 15.77 14.10 79.96 14.15 56.89 55.20 31.15 64.05 37.03 88.13 60.85 48.12 8.07 69.33 84.22 69.38 83.06 13.38 63.61 50.42 57.71 70.67 79.18 77.36 74.40 1.09 39.90 76.56 49.34 48.60 69.08 9.01 50.11 11.90 52.66 -81.50 12.54 87.05 56.65 49.66 85.52 70.24 61.47 42.22 37.26 73.43 51.52 76.63 52.78 29.55 71.89 0.15 23.48 60.27 11.25 74.88 64.12 69.73 47.84 49.75 48.54 62.29 82.20 50.75 47.95 40.59 27.26 49.93 56.77 40.70 29.86 54.18 2.42 40.67 55.75 40.48 26.89 12.45 33.51 83.43 29.88 29.65 50.97 94.94 85.68 56.47 90.03 23.80 42.87 81.35 0.43 85.15 52.74 87.89 3.94 55.01 76.56 78.50 14.69 27.57 28.58 31.34 46.49 31.45 4.69 54.65 41.50 84.03 74.89 10.69 49.55 40.89 12.93 13.43 23.15 78.53 59.80 77.78 38.39 37.27 42.54 69.59 33.63 58.10 49.26 99.41 32.73 69.27 9.42 40.86 91.23 45.17 10.60 69.43 46.26 -2.65 37.93 24.39 40.05 78.99 90.16 67.34 3.47 33.33 92.58 62.31 97.32 50.98 94.35 90.51 66.19 78.89 49.71 58.22 75.36 35.18 98.30 61.98 84.19 79.41 19.84 95.19 89.20 47.99 86.49 74.95 21.90 64.13 66.79 4.14 41.46 26.71 6.94 43.56 64.13 26.17 41.67 52.76 96.90 44.60 42.84 44.21 47.26 95.04 35.31 68.36 74.36 19.82 16.37 21.18 54.13 36.27 89.35 7.63 84.93 8.72 82.33 78.86 36.14 10.23 96.25 45.07 28.26 98.47 29.50 47.28 70.15 79.75 58.75 9.20 13.15 19.97 60.98 80.91 46.59 57.98 64.93 9.09 78.75 63.08 6.69 81.57 35.62 51.64 84.48 40.79 14.84 68.48 48.99 27.34 29.19 37.67 79.84 17.02 93.30 -39.32 77.47 97.80 97.57 6.71 19.38 31.50 72.30 20.19 28.73 4.17 6.52 36.11 85.07 9.42 8.96 18.19 6.54 80.99 60.55 69.01 33.30 37.49 63.50 54.20 42.40 27.42 68.44 76.30 66.51 30.00 12.64 58.97 89.36 70.35 19.28 12.04 85.70 51.88 78.08 68.79 38.31 18.99 35.08 43.91 16.93 45.30 75.92 26.65 64.79 18.42 27.30 65.55 15.67 57.00 18.96 49.32 9.84 42.28 86.51 13.00 35.25 21.33 76.04 27.26 68.47 46.72 91.83 23.59 22.73 53.74 37.77 16.95 81.72 66.13 43.27 18.19 53.15 42.87 75.04 41.44 46.62 69.46 24.52 75.41 64.52 39.22 11.58 44.15 70.92 35.65 39.05 2.49 80.64 44.99 64.47 89.80 1.95 50.20 62.67 -69.51 28.47 74.21 38.60 0.72 50.41 89.55 87.79 12.15 38.06 84.39 88.75 89.84 1.08 94.25 2.89 22.66 23.26 65.54 26.90 22.25 86.58 71.42 93.37 43.93 31.20 44.86 76.18 5.06 60.29 64.45 70.80 42.30 32.99 14.38 8.45 14.74 20.29 29.05 17.66 47.62 99.06 57.45 25.50 53.38 65.94 12.07 39.69 53.35 21.51 4.05 72.01 65.68 52.35 12.67 86.46 14.96 79.55 19.63 31.55 34.13 61.63 63.79 67.95 47.43 70.86 71.39 8.43 58.57 48.45 35.44 92.51 51.15 6.62 57.42 73.85 51.37 70.85 62.36 21.90 78.79 44.56 89.00 97.29 40.27 26.61 83.02 62.98 28.13 87.14 72.91 29.85 68.82 79.47 22.48 15.73 34.66 47.68 42.62 77.08 -14.05 80.88 46.72 86.33 5.27 59.35 36.99 8.96 14.83 27.57 4.63 27.13 85.90 62.08 80.36 28.86 8.74 96.37 87.34 75.46 65.93 6.27 1.01 87.68 70.93 78.37 8.55 19.18 33.25 38.87 36.02 31.79 29.09 9.64 2.33 97.32 52.07 58.23 12.69 78.35 19.52 50.44 57.46 91.82 98.88 8.14 42.43 50.96 80.93 1.74 25.84 27.75 83.12 86.34 80.64 82.98 71.36 17.21 99.86 23.63 57.45 62.77 14.84 77.09 21.13 12.02 65.20 63.20 18.60 23.15 12.88 1.15 4.29 86.66 83.24 86.79 6.26 33.43 95.70 75.19 44.27 3.10 59.91 74.65 86.74 93.22 10.93 27.96 37.52 34.78 17.09 94.34 69.55 6.81 99.07 58.21 23.29 32.45 25.75 44.28 -12.55 49.09 43.22 36.19 57.88 91.65 57.41 4.62 49.29 77.97 74.12 78.51 35.97 76.93 96.90 25.97 70.30 36.47 85.09 22.70 61.52 62.70 86.23 68.74 6.66 14.10 92.72 0.65 25.49 62.00 76.76 57.26 2.86 84.58 30.42 61.26 57.24 38.75 83.33 53.19 51.05 81.25 40.73 40.91 34.86 54.35 51.62 77.99 79.90 58.71 18.51 3.29 15.65 83.99 44.04 18.43 13.10 57.19 99.70 18.69 17.75 79.39 3.01 27.59 59.83 71.86 44.80 73.63 40.28 65.17 63.78 85.82 82.07 98.54 22.76 68.73 50.21 38.18 82.29 72.58 67.26 93.76 6.33 98.91 64.73 48.72 61.54 38.01 79.28 74.68 27.98 75.56 51.43 32.29 91.12 33.99 99.33 54.07 44.49 41.51 -83.25 77.55 4.61 75.27 18.15 49.59 39.96 57.28 17.93 54.42 13.71 24.57 10.77 50.34 33.23 26.02 46.93 62.76 10.53 8.74 41.53 14.84 59.48 72.59 64.70 83.96 34.62 50.41 7.90 68.90 0.77 56.28 19.25 10.81 11.38 39.24 58.09 51.23 52.85 68.42 58.27 40.35 25.67 20.43 11.26 62.69 20.25 57.93 96.48 87.69 68.99 28.43 39.78 42.31 61.63 62.25 75.35 43.32 72.25 51.27 20.06 32.72 17.50 99.67 77.39 54.60 68.76 4.37 71.09 35.60 84.36 38.98 80.03 29.88 79.28 43.87 13.88 22.35 74.89 68.16 40.17 45.73 7.58 51.13 69.59 8.82 95.19 78.54 66.97 38.81 68.95 32.40 90.36 49.88 84.77 61.68 94.90 22.33 13.54 91.96 -21.67 28.75 93.74 38.06 90.38 17.65 50.07 28.05 85.29 94.69 58.99 86.25 89.75 51.30 79.20 4.17 65.74 84.47 59.18 6.02 25.31 51.36 35.07 61.02 57.77 48.88 35.25 92.05 23.82 61.13 13.07 76.07 28.93 27.23 4.66 34.47 86.74 58.21 28.38 39.46 72.94 82.70 50.81 50.39 1.15 21.31 96.44 99.35 79.61 67.75 10.13 3.23 41.28 93.99 26.00 23.93 77.43 9.86 28.79 47.96 17.05 55.27 73.55 47.59 89.41 79.61 21.84 63.49 90.87 79.14 87.64 65.78 27.03 38.57 13.31 21.95 33.38 37.25 84.58 17.65 25.49 29.80 37.25 90.39 86.81 50.64 66.64 30.21 58.64 82.82 68.26 53.99 96.23 22.22 6.08 11.59 50.67 27.15 69.08 96.39 -67.74 8.38 13.44 43.54 26.66 36.42 52.92 68.02 15.43 76.02 30.70 51.46 22.73 58.35 4.20 20.65 90.66 4.81 3.55 77.77 62.77 22.16 78.02 67.46 21.99 11.29 42.92 82.17 66.94 61.44 91.30 90.38 27.69 21.06 66.93 37.74 85.35 37.68 65.52 95.48 78.86 68.55 9.03 27.90 88.99 21.16 17.71 45.81 89.32 1.31 44.14 55.16 84.93 44.18 54.93 32.03 19.51 39.43 93.05 75.59 36.49 19.17 32.41 63.68 61.58 88.36 36.44 49.53 8.44 78.89 30.03 56.55 66.78 92.95 45.24 59.19 51.97 79.64 75.07 27.93 69.14 69.11 39.46 97.96 34.79 22.52 68.82 93.79 65.46 31.47 21.05 97.26 63.59 93.34 8.12 52.99 34.38 6.19 55.58 6.65 -81.03 98.36 22.41 11.73 53.83 17.31 69.66 21.42 95.76 5.43 28.85 65.94 96.00 49.53 97.10 23.73 74.18 14.09 49.55 90.10 70.71 37.69 28.98 74.82 60.47 24.24 6.36 48.69 59.00 32.11 40.68 88.56 79.57 20.27 26.91 14.79 29.13 43.08 59.91 86.06 98.19 88.40 56.96 31.31 47.78 56.26 35.34 43.98 74.91 58.61 58.56 31.25 12.16 45.00 61.62 41.90 82.59 40.75 81.61 78.75 19.69 49.52 46.37 79.94 84.36 9.53 82.39 22.06 11.22 37.07 77.06 64.26 18.61 8.80 29.02 43.90 86.61 53.05 79.08 47.55 1.65 43.96 18.47 33.08 97.07 52.03 28.85 79.37 5.05 67.22 62.48 68.05 36.60 57.24 47.86 42.73 73.91 44.17 19.70 82.94 -73.32 47.09 67.34 69.77 53.59 93.76 83.53 95.24 97.42 82.24 3.19 8.57 54.10 19.82 5.36 9.80 4.29 98.78 73.88 74.47 64.81 93.01 67.48 34.75 65.04 26.29 53.30 75.48 16.12 56.94 98.46 21.23 6.24 30.10 5.01 39.85 10.32 38.48 30.19 67.65 39.94 32.47 28.73 15.01 41.73 45.28 70.18 62.31 7.09 85.67 40.23 74.71 62.79 77.30 96.03 54.07 31.22 46.25 88.30 82.62 24.59 31.34 75.76 23.29 88.12 17.10 28.38 58.00 81.86 19.26 30.45 86.96 73.18 84.84 9.51 72.25 61.63 58.72 7.29 3.70 27.66 54.81 15.45 3.19 82.50 21.94 98.29 70.37 9.67 61.56 46.32 17.95 80.89 36.28 4.51 82.90 27.20 27.49 52.46 2.88 -59.76 64.20 79.68 30.49 51.41 28.74 69.72 68.72 38.37 28.99 96.38 24.10 56.58 65.50 97.94 65.91 32.09 48.16 46.10 58.23 77.94 66.70 50.51 94.59 26.74 29.72 12.20 62.09 67.97 15.14 63.96 13.34 2.67 50.01 6.73 66.59 63.46 82.95 5.33 62.17 3.66 37.50 61.97 34.38 82.78 88.97 5.34 86.40 81.91 64.74 75.72 90.51 17.60 10.30 8.24 65.49 90.79 4.55 97.46 42.36 64.38 45.23 26.37 39.21 74.48 83.90 16.28 81.35 19.24 80.79 6.00 81.79 12.70 53.11 65.07 0.36 61.80 26.98 71.87 39.08 64.39 0.56 39.27 3.87 66.29 85.89 26.62 39.13 65.84 63.34 51.27 74.11 70.47 48.06 86.41 19.44 12.71 87.22 81.84 23.54 -3.02 55.38 4.89 50.09 59.01 79.31 41.66 56.61 12.36 7.51 3.59 77.31 13.64 46.59 5.99 90.43 16.44 66.70 58.21 92.21 2.80 13.93 48.51 15.54 83.43 5.54 98.45 44.32 10.43 60.89 88.76 42.18 41.65 50.55 63.08 64.84 52.55 16.87 48.13 93.43 55.45 50.26 42.22 2.62 12.38 30.28 92.32 28.78 82.74 82.47 10.34 97.40 97.18 83.75 63.02 20.22 55.27 27.35 56.14 25.70 53.88 98.13 70.88 71.67 26.95 82.37 6.16 78.33 3.56 8.20 52.72 94.42 88.57 70.49 84.53 60.86 95.26 1.15 84.82 79.78 9.53 89.65 95.75 51.05 44.49 28.91 76.95 81.64 81.87 37.91 52.10 32.67 59.33 73.15 48.86 39.52 71.40 6.00 10.16 41.51 -59.48 48.74 10.45 87.06 41.00 18.75 77.61 90.02 72.83 94.28 99.03 20.56 49.54 48.15 74.85 66.99 26.79 71.09 66.97 13.26 53.06 80.76 64.47 97.09 16.44 75.47 84.44 82.61 48.09 91.64 33.88 68.18 52.39 78.01 8.43 47.45 55.17 95.64 84.94 40.10 19.32 62.55 79.18 48.88 25.47 51.23 93.62 10.19 55.78 52.14 3.47 64.33 46.92 56.93 90.30 9.47 82.05 53.28 70.22 59.03 38.97 9.67 97.71 57.19 59.37 99.90 92.63 21.24 45.55 66.25 72.35 37.96 66.23 45.64 38.04 59.84 73.42 90.11 3.54 34.93 22.58 18.66 91.14 71.55 76.61 24.51 4.41 36.18 3.70 59.95 31.37 92.47 81.46 91.02 26.56 93.55 99.30 23.64 78.97 40.33 -73.69 58.88 13.96 89.12 78.43 84.48 0.03 97.22 3.43 9.08 14.24 35.59 6.45 21.22 7.59 96.42 52.48 38.84 86.26 81.09 51.90 59.68 46.77 76.59 79.54 82.45 61.26 28.82 55.30 34.69 9.24 41.43 36.58 35.96 20.72 15.19 51.93 99.59 16.08 59.98 91.21 29.09 58.28 57.80 59.94 48.47 66.44 3.01 99.95 55.63 61.03 11.51 7.97 54.54 81.32 81.79 22.34 28.41 18.79 86.17 12.84 91.70 93.53 23.77 47.35 16.79 68.27 48.05 62.73 17.24 5.90 11.98 49.37 75.52 6.48 82.87 68.74 42.17 96.45 11.71 49.08 10.40 15.29 91.45 50.61 54.13 2.91 93.03 36.20 53.07 83.35 2.13 16.19 70.01 24.28 49.81 20.69 71.54 54.64 62.58 -48.46 41.07 12.92 56.93 74.99 85.89 10.11 42.00 29.46 45.90 99.96 82.94 87.63 32.87 48.85 95.92 52.37 15.83 99.12 57.71 32.08 89.85 59.47 99.98 18.92 64.61 20.84 24.62 87.99 8.23 55.86 25.17 94.65 48.88 24.74 19.95 23.63 25.80 2.05 46.71 25.94 75.51 16.67 16.01 51.68 43.59 37.51 82.21 61.34 86.02 79.81 18.00 13.71 39.27 69.79 66.54 94.90 66.27 62.75 80.14 7.84 96.88 63.63 29.84 63.55 38.92 31.20 72.74 73.72 62.00 40.63 63.40 28.80 74.46 48.37 30.48 60.50 73.29 27.34 62.20 41.78 88.93 54.43 90.18 76.18 20.30 84.86 55.60 45.51 68.87 91.97 74.71 60.60 59.08 63.28 57.39 68.26 34.50 56.43 12.46 -33.20 93.36 0.26 87.19 4.08 60.50 44.08 39.69 66.72 26.36 43.90 97.66 50.67 89.89 70.25 36.46 60.40 84.29 55.83 27.49 12.44 27.60 8.35 95.60 88.30 41.58 60.57 20.26 8.40 68.83 28.77 68.11 33.58 7.07 9.08 8.59 39.28 4.35 30.45 36.51 51.52 73.88 1.09 30.35 87.03 93.07 36.75 7.97 26.32 51.83 95.63 12.19 92.39 72.09 41.84 13.66 15.38 76.33 43.02 82.16 4.09 80.71 12.53 28.66 70.13 14.11 84.51 48.20 87.53 55.65 71.38 57.13 82.39 0.76 51.86 30.92 17.06 1.17 49.61 59.20 9.39 55.08 29.96 95.38 7.93 7.35 93.43 76.14 66.61 1.86 38.99 64.17 11.06 87.77 42.83 45.43 1.64 7.33 77.41 31.59 -90.22 1.25 3.50 26.72 76.13 53.77 20.18 8.09 58.72 0.78 12.32 74.09 59.45 65.59 4.29 4.90 14.92 71.55 75.87 29.71 33.69 27.04 52.29 71.31 41.72 2.18 96.93 26.05 69.71 62.90 94.84 38.80 37.49 72.11 80.40 87.26 46.63 51.76 34.20 29.21 35.07 77.50 46.97 62.69 21.00 33.41 23.53 23.94 43.77 20.96 12.09 55.85 48.90 99.89 5.26 48.29 15.04 39.70 82.33 52.66 68.90 66.64 5.93 48.22 27.01 9.87 92.55 18.49 4.68 52.67 50.59 46.30 88.21 21.65 53.08 43.11 15.29 58.89 55.43 50.84 82.00 49.66 76.12 6.95 64.90 47.46 5.40 26.54 5.78 32.06 65.47 24.86 90.26 37.39 92.76 4.56 31.31 79.32 88.05 50.55 -80.19 75.18 58.51 78.73 14.10 78.08 23.67 86.58 16.53 47.35 7.14 7.59 48.13 59.53 17.99 58.32 87.29 8.43 79.38 69.64 45.35 15.82 18.23 1.63 22.35 82.11 41.75 67.79 58.26 5.92 21.00 29.15 16.31 96.99 7.85 35.00 23.12 40.45 28.50 2.61 50.36 46.43 65.43 9.52 60.06 39.75 2.35 68.77 21.78 22.95 31.56 58.89 16.58 80.65 20.24 26.56 80.53 90.40 3.52 12.53 91.40 45.81 21.84 99.07 25.56 93.17 44.83 85.68 83.53 69.24 35.55 97.27 86.06 21.05 20.88 27.27 48.45 45.58 93.27 94.53 33.88 99.39 92.25 32.61 37.72 16.34 20.37 93.35 55.60 57.70 16.24 74.54 5.74 13.33 56.65 23.88 98.54 26.74 71.06 36.64 -61.34 56.26 29.40 26.20 25.69 8.54 2.79 51.86 47.58 74.95 25.20 94.05 4.10 88.16 86.90 92.90 28.49 8.62 89.94 42.32 34.47 98.88 31.68 89.45 72.09 83.76 82.40 73.33 74.16 31.80 49.77 75.52 6.80 26.85 30.03 47.25 95.23 41.05 51.83 74.64 23.26 43.78 80.17 76.60 45.23 85.77 81.56 78.46 79.36 7.96 3.93 31.57 36.18 58.67 32.49 49.91 55.40 66.04 99.11 50.21 39.63 10.20 49.07 32.00 73.22 9.84 70.22 12.45 91.63 67.48 11.53 23.47 70.92 14.04 13.69 28.73 27.46 65.74 99.88 58.47 9.70 5.64 52.54 10.36 8.79 97.23 20.44 11.67 86.99 25.12 12.69 59.97 68.21 89.77 22.04 73.54 87.14 54.74 55.85 23.47 -17.29 65.66 92.09 42.54 65.88 88.05 99.48 12.16 60.14 59.54 96.10 78.35 95.52 31.08 73.23 55.64 83.16 52.09 26.19 36.04 91.80 13.74 65.15 83.05 28.42 13.61 90.84 50.42 66.71 69.64 92.82 90.83 44.04 7.85 44.32 1.05 93.60 28.59 94.34 99.88 74.45 89.93 59.66 59.20 60.32 97.61 45.61 28.93 51.18 22.80 78.00 86.70 81.91 93.78 85.63 67.76 28.54 87.27 81.48 85.01 79.38 74.60 66.84 51.01 10.72 0.81 83.86 49.06 63.78 19.01 15.67 82.48 31.32 1.57 54.82 69.49 25.46 20.42 29.57 11.09 35.94 55.62 41.96 7.96 89.73 71.96 33.36 12.63 45.59 59.93 36.20 76.68 25.16 47.85 99.19 41.19 98.55 75.36 66.76 30.21 -73.16 42.07 56.75 10.59 46.10 32.25 67.14 87.64 94.39 71.48 53.46 7.17 66.94 29.73 87.86 51.05 2.47 82.56 11.10 91.44 33.48 60.23 15.92 59.34 34.99 72.19 34.44 30.31 65.71 12.18 62.20 12.33 34.65 85.71 81.51 71.69 11.85 29.81 3.87 93.39 0.45 55.09 92.11 24.96 47.15 68.18 47.90 86.37 60.00 15.54 39.91 33.95 24.76 37.53 13.38 82.95 10.91 58.46 94.20 65.74 44.27 85.24 52.48 84.14 29.62 28.18 58.69 31.11 87.60 16.18 20.44 31.61 94.11 50.21 17.49 40.01 34.42 52.55 47.42 90.03 86.22 13.17 47.57 80.96 65.12 72.04 99.16 17.36 76.60 49.31 1.83 0.60 94.84 66.04 68.45 25.84 74.60 60.19 4.52 68.76 -46.47 88.78 80.10 97.87 63.29 27.15 9.86 8.21 41.48 43.15 35.41 85.45 8.95 70.14 85.11 8.09 8.61 16.92 73.01 30.68 14.41 50.87 19.33 18.65 56.19 38.40 91.99 14.40 10.30 72.73 80.25 65.54 23.91 30.86 38.08 3.85 11.62 90.04 55.75 60.30 20.46 14.95 83.45 75.71 56.47 16.63 84.70 99.44 95.16 50.46 19.55 68.00 86.61 89.84 20.07 63.77 31.36 26.73 50.83 77.87 79.55 53.11 55.51 90.03 71.72 6.25 68.34 77.06 9.14 40.06 52.55 27.03 49.86 75.66 33.34 90.74 81.99 61.58 41.03 43.34 67.00 85.81 70.47 36.44 56.01 2.17 15.99 61.29 82.02 39.89 51.62 87.97 84.99 61.72 19.26 38.96 73.28 3.30 72.89 69.38 -60.78 80.19 61.02 76.36 29.48 6.59 75.45 41.39 33.00 45.87 69.75 52.12 27.21 23.65 38.35 19.91 35.93 87.76 65.89 35.89 63.58 63.45 1.33 33.56 17.41 46.27 27.71 62.33 81.09 80.33 50.70 59.15 89.96 60.23 42.18 65.95 68.77 22.45 60.22 90.17 97.53 33.25 56.83 54.24 60.90 76.85 65.38 22.54 16.19 50.10 33.52 16.96 75.20 41.88 34.27 96.70 12.81 35.28 85.49 60.91 75.52 16.49 38.06 73.82 67.78 20.56 87.87 5.53 42.14 74.41 75.21 54.35 85.88 58.34 64.47 14.04 96.67 0.78 69.23 64.44 72.25 55.15 85.67 56.18 2.39 31.50 54.19 62.53 69.45 55.95 94.62 91.73 62.06 93.03 82.09 36.59 66.84 82.08 23.54 75.82 -66.98 82.65 75.17 62.01 97.09 58.59 55.47 26.30 88.59 75.19 21.58 99.18 40.22 94.09 17.43 71.73 69.35 35.63 46.63 97.31 84.26 71.27 33.60 67.42 61.06 84.15 18.39 31.31 1.67 24.40 93.13 25.48 23.70 85.64 35.87 64.14 12.29 78.95 45.66 82.43 18.21 32.80 82.68 70.20 25.58 4.38 82.50 91.62 86.39 71.83 30.52 59.34 5.89 65.42 64.68 95.53 2.31 13.28 84.34 45.55 86.52 40.38 49.11 65.11 73.13 58.38 19.44 63.33 87.13 4.20 53.73 94.14 56.33 30.06 48.48 41.68 51.96 26.59 48.76 58.31 97.21 61.60 28.26 11.82 44.87 44.89 68.11 30.27 33.89 15.99 79.12 39.92 49.09 86.35 67.99 46.69 23.22 23.11 1.50 44.60 -57.68 40.72 58.40 55.69 67.96 23.37 99.25 99.64 94.84 44.62 34.47 32.91 21.11 26.43 72.79 97.82 27.67 86.71 11.28 59.02 78.57 3.48 61.70 19.15 8.79 24.15 50.29 61.22 93.93 20.76 30.98 25.52 91.12 27.06 42.11 52.47 58.28 41.00 44.92 90.35 40.26 16.52 51.61 96.78 24.48 41.13 30.10 47.04 11.41 99.10 86.14 42.99 13.94 34.88 7.51 72.88 57.99 52.21 72.92 80.62 29.94 9.66 70.15 29.12 33.09 81.57 15.08 90.10 65.19 39.24 81.23 63.56 55.23 44.32 75.98 63.87 74.74 89.57 15.04 77.34 74.09 59.86 90.65 24.97 58.71 28.06 43.19 66.06 0.74 40.73 35.59 72.46 5.09 84.68 84.25 20.82 30.68 30.49 65.11 88.67 -4.03 54.83 2.37 79.31 99.65 39.64 64.28 16.68 13.08 53.84 65.54 73.40 36.02 52.22 91.96 64.09 20.00 18.45 95.12 78.77 16.28 52.02 89.08 94.67 80.60 64.14 20.72 32.56 33.35 95.39 67.31 71.57 36.48 94.00 71.51 88.06 31.34 89.19 37.98 55.57 91.38 82.20 47.74 95.02 80.34 67.26 47.98 59.39 79.28 56.17 34.28 37.54 32.22 92.65 41.58 43.66 68.24 5.89 82.13 43.76 74.64 94.87 13.94 72.37 6.77 34.01 38.30 53.45 65.72 83.38 74.71 12.02 39.10 48.10 86.87 33.35 4.91 86.63 63.32 88.09 51.02 75.28 77.53 65.86 98.45 79.25 27.71 22.42 97.66 51.28 74.77 92.79 62.29 84.07 45.27 5.93 73.55 8.58 94.77 43.95 -50.19 24.40 48.87 67.61 15.31 46.61 72.16 71.22 73.10 73.62 51.91 58.45 7.14 64.03 24.22 33.36 14.21 95.68 58.62 65.04 53.74 86.17 37.20 12.14 74.45 34.77 40.00 86.97 77.60 39.48 16.67 59.01 13.91 1.13 55.75 57.69 85.31 93.47 97.91 70.19 47.94 11.46 64.18 69.37 29.78 63.32 64.00 15.83 8.99 64.36 33.06 97.52 15.59 29.70 60.19 87.07 2.54 24.72 89.94 74.29 11.03 8.93 38.78 32.12 38.35 52.61 96.47 74.00 13.54 81.18 49.20 34.54 41.31 63.10 34.87 88.46 61.69 51.83 3.49 98.41 4.65 83.99 64.49 99.85 7.42 18.84 86.06 45.09 53.64 13.31 89.93 78.09 12.79 18.40 86.42 72.37 90.51 24.19 83.66 80.00 -21.47 20.94 29.88 59.77 14.59 96.04 11.28 59.66 34.27 12.84 38.29 56.26 84.90 34.08 55.30 6.38 59.57 58.78 87.66 47.00 57.27 89.41 40.57 26.04 90.20 51.44 81.21 95.01 57.40 94.57 14.16 34.86 66.53 10.80 71.55 4.71 31.62 89.13 10.82 59.29 99.54 1.24 98.00 1.77 83.31 81.37 2.26 27.33 98.49 19.96 39.52 29.23 8.67 55.74 41.11 11.57 38.06 44.61 50.56 45.63 6.77 18.78 94.81 42.72 63.49 63.95 44.28 61.88 8.26 63.09 35.97 94.01 25.96 66.36 51.18 2.98 66.50 99.43 0.07 37.87 66.91 25.20 11.35 62.51 47.69 9.06 0.53 23.85 88.75 71.51 65.87 64.50 89.68 87.35 26.24 1.40 58.79 53.11 56.08 6.92 -19.26 29.72 80.60 37.67 99.37 50.80 56.09 49.62 1.02 19.15 87.90 79.59 18.87 83.19 57.13 80.77 93.01 92.51 15.04 92.89 51.30 67.88 74.59 39.25 92.58 6.44 67.14 52.86 16.87 87.57 65.28 63.70 73.48 99.04 37.98 35.70 84.13 2.82 10.08 60.05 19.91 36.84 46.39 6.69 96.02 51.19 13.64 39.54 25.09 52.65 49.51 38.01 5.92 37.01 10.02 89.78 67.35 90.30 39.38 33.65 69.62 64.52 32.62 87.85 83.64 36.30 2.31 87.57 47.74 36.68 62.62 28.67 29.75 42.31 10.24 30.90 50.76 37.06 76.57 69.66 52.38 54.00 54.85 16.74 49.56 39.79 54.32 10.16 85.98 41.50 51.59 49.73 81.78 51.85 12.94 85.25 91.60 45.73 11.52 62.31 -20.80 11.94 25.93 90.77 44.07 75.63 73.59 17.78 44.80 2.32 28.48 1.75 71.32 25.20 71.49 44.99 85.64 37.97 83.94 44.56 43.43 94.13 55.24 43.55 9.54 47.73 84.48 14.03 96.48 70.89 56.24 19.25 71.08 28.06 10.84 43.02 53.88 71.42 2.14 72.42 14.99 98.40 17.27 62.34 24.11 59.34 20.90 60.42 76.67 72.40 74.55 53.20 25.95 97.90 70.07 35.43 27.29 88.75 91.43 7.57 23.31 98.68 24.62 83.90 22.89 12.06 18.65 56.70 58.85 79.16 8.33 92.03 16.23 52.85 97.71 61.38 92.46 82.85 10.02 88.95 53.11 5.99 44.39 3.53 15.30 38.44 34.20 14.66 98.30 68.64 28.58 97.24 72.66 97.13 68.74 18.35 71.79 88.65 78.83 65.87 -64.26 19.72 52.94 6.78 1.85 26.27 33.58 40.92 2.20 81.10 60.87 85.34 51.82 7.01 72.24 35.40 75.56 4.92 68.15 45.04 18.18 56.55 18.91 89.67 79.67 90.99 45.29 1.98 52.44 76.40 13.27 89.94 74.14 50.39 54.65 88.29 92.13 77.14 45.22 21.25 92.20 18.29 88.96 7.29 19.46 78.00 31.79 45.36 57.00 16.39 97.14 43.25 98.95 31.29 37.63 46.22 47.70 31.13 2.48 28.21 63.15 31.71 52.15 50.84 16.11 41.03 31.73 69.30 19.12 24.15 43.60 61.58 38.75 66.20 84.29 29.19 28.55 37.91 7.65 46.24 23.81 10.68 36.77 66.67 63.98 80.28 67.42 17.83 53.39 78.97 43.62 54.43 65.35 51.68 19.57 65.10 71.69 39.89 96.59 37.14 -82.09 36.38 45.96 50.63 84.66 32.71 38.74 56.96 24.73 65.81 77.24 18.45 32.24 6.37 3.22 32.96 42.05 20.45 64.71 84.39 88.90 17.39 18.03 45.60 52.77 98.77 73.46 68.46 19.28 6.72 44.19 13.76 37.06 30.21 48.37 60.78 25.97 77.15 21.35 99.44 85.07 65.78 82.43 21.86 49.76 80.88 19.36 19.15 15.38 56.40 53.08 55.81 66.56 54.91 75.67 51.69 47.10 72.32 78.48 53.91 16.88 94.39 0.32 58.58 28.73 23.92 96.14 68.52 55.02 55.43 80.93 53.16 15.44 89.48 24.64 65.70 64.09 0.19 77.24 40.88 20.31 0.37 78.82 17.03 41.88 51.15 29.03 11.10 34.21 77.55 27.25 27.43 10.60 59.46 4.14 2.24 48.09 20.60 73.38 71.77 -16.39 48.90 22.25 84.81 35.03 66.86 22.93 10.19 64.50 32.38 20.34 1.94 91.60 33.29 11.88 52.87 21.78 26.67 72.12 95.41 51.22 68.42 56.77 53.17 77.90 2.50 97.54 19.98 25.06 96.99 47.49 86.91 25.77 19.33 28.99 83.79 39.04 9.07 11.08 93.56 60.64 65.95 28.43 17.29 32.33 67.80 73.13 88.11 1.09 69.17 72.28 58.32 74.07 7.43 90.39 71.40 49.77 72.67 13.73 67.83 17.49 37.62 36.34 4.46 63.52 90.61 72.56 59.53 88.76 51.91 77.66 92.27 33.72 20.52 36.35 43.36 29.97 46.67 66.48 26.86 74.51 37.72 50.89 17.47 15.24 75.20 35.39 25.56 59.81 45.00 49.39 42.93 96.99 12.09 7.33 69.59 60.08 53.70 21.79 58.62 -15.48 83.18 82.94 89.42 97.34 63.04 75.99 93.19 46.90 97.63 13.44 18.15 98.24 27.98 36.44 96.56 81.85 74.61 24.32 65.83 27.98 63.18 58.02 65.89 72.00 62.01 17.71 70.40 15.00 42.81 61.37 26.72 94.24 45.54 16.23 64.08 85.38 94.71 58.42 14.22 46.45 96.81 72.24 29.69 88.01 0.18 96.46 89.51 6.49 51.44 78.09 54.30 61.64 28.09 13.61 41.30 8.52 26.53 46.57 6.54 83.48 50.12 19.53 77.47 57.88 6.73 15.85 28.86 7.59 99.89 99.03 91.41 77.07 96.53 33.71 88.53 76.97 61.64 61.09 77.61 77.08 32.21 97.17 68.36 34.85 9.41 42.02 40.51 40.78 51.95 33.92 96.63 26.69 12.24 48.62 78.80 0.46 8.80 46.49 11.53 -84.15 13.63 63.52 5.99 59.82 37.31 42.37 3.11 9.73 86.97 88.31 74.32 42.19 0.70 48.07 21.44 30.90 91.26 92.15 84.57 10.05 6.84 13.28 3.07 64.38 47.75 60.14 31.91 62.60 63.21 21.41 71.17 90.66 22.75 4.88 25.43 86.67 53.44 23.26 78.81 1.72 64.17 34.84 63.30 74.91 36.68 25.29 16.21 61.25 97.16 23.57 32.64 42.24 96.53 70.68 23.89 58.51 6.52 41.53 41.53 10.55 78.61 15.89 92.85 10.47 16.14 60.42 53.68 75.55 69.88 1.08 28.74 95.61 87.88 82.27 60.92 11.08 61.05 42.64 72.83 56.34 53.62 21.73 96.45 12.05 63.92 74.07 63.66 23.12 34.48 20.48 47.54 90.92 97.75 55.33 70.88 16.22 14.20 57.52 91.12 -45.51 87.67 4.57 8.21 69.86 97.15 34.53 1.99 5.00 63.25 38.97 73.72 68.46 63.59 27.51 64.67 7.16 94.98 31.33 36.75 3.49 21.64 72.51 80.91 7.47 86.32 43.95 30.81 96.06 68.91 47.19 83.58 40.76 21.41 68.26 17.51 27.72 83.87 20.29 94.30 61.85 23.21 92.16 40.84 27.01 6.38 25.95 35.50 87.45 78.94 69.78 79.29 72.57 89.82 35.25 81.92 56.32 40.38 78.93 98.44 69.60 59.57 40.12 65.56 20.47 18.66 21.84 96.52 50.62 55.50 95.79 24.11 83.60 92.22 44.05 17.98 97.54 28.10 95.83 45.63 96.63 5.15 10.97 95.67 51.83 41.45 71.62 71.69 80.12 34.69 74.51 69.64 44.03 83.47 84.14 62.70 78.84 76.76 90.48 66.70 -73.55 82.05 72.77 48.08 89.64 14.22 93.68 93.05 98.32 81.19 1.64 77.53 11.23 29.83 57.91 99.11 69.88 26.04 32.44 68.24 4.32 87.51 3.67 75.34 35.94 94.26 43.17 30.26 21.92 0.29 18.36 10.81 25.82 30.85 87.58 65.69 61.10 72.59 92.40 24.41 43.63 89.40 58.52 70.78 64.70 98.86 25.60 90.90 97.43 13.87 76.85 59.48 41.45 79.66 8.50 86.53 39.26 8.98 75.01 74.08 86.18 89.40 41.20 31.96 67.00 32.05 98.00 59.92 29.23 31.31 83.69 69.82 21.70 97.99 35.99 23.48 15.72 89.59 90.58 93.91 19.81 12.07 79.76 81.01 57.12 56.84 95.01 32.44 60.23 16.19 44.09 47.98 1.38 70.42 77.29 1.31 49.92 24.56 41.87 3.05 -24.11 28.13 56.53 10.72 95.35 62.93 1.84 52.61 32.08 64.39 44.47 38.64 71.10 30.52 99.47 61.79 4.00 8.18 92.15 77.89 85.80 53.04 33.98 8.13 52.14 98.70 16.26 88.72 80.06 42.78 17.03 46.05 12.26 45.54 36.07 99.39 85.77 59.40 54.28 44.99 88.13 86.34 89.41 90.67 30.33 72.19 27.28 67.77 80.23 46.76 95.05 2.93 60.79 15.89 60.79 72.12 37.89 5.11 9.53 10.59 97.17 37.53 96.46 49.52 68.69 58.79 82.84 93.03 18.42 63.37 40.53 27.63 68.23 80.80 66.12 48.36 93.39 24.85 85.92 12.14 14.49 98.82 83.00 67.53 86.64 91.86 17.62 17.65 21.69 63.45 5.11 23.67 56.82 37.65 24.57 12.10 70.80 56.25 24.03 36.05 -83.90 64.28 13.63 30.05 55.53 26.12 88.09 36.45 16.64 5.02 80.21 86.97 74.00 71.66 76.47 83.57 5.73 21.30 63.73 72.94 58.48 85.91 37.63 91.58 42.69 45.92 40.63 10.21 57.15 8.70 58.35 14.96 50.59 94.47 73.78 96.85 51.77 41.86 2.77 53.90 74.11 46.04 30.87 43.59 7.51 8.16 19.02 7.75 50.75 9.06 54.77 40.03 24.68 57.58 31.26 30.89 62.43 70.01 62.54 86.46 89.86 6.58 26.04 52.28 44.23 14.39 42.35 8.70 71.75 69.73 27.70 27.71 25.67 58.30 22.07 41.60 68.01 99.80 22.40 14.44 3.99 10.79 95.81 96.87 41.29 46.59 33.19 58.56 51.68 72.77 50.08 61.16 17.86 4.25 63.15 5.60 21.37 63.33 87.84 43.91 -8.93 67.46 6.66 67.06 86.75 1.03 75.57 29.81 75.57 43.61 76.85 90.83 64.15 71.84 37.36 1.67 25.35 4.90 55.24 15.59 56.99 76.71 62.06 99.99 33.22 7.04 19.57 57.17 50.30 74.47 25.44 75.46 50.30 34.71 84.93 17.07 98.55 51.16 55.09 11.32 82.97 23.13 98.17 81.21 9.79 9.69 0.97 22.45 33.42 56.32 1.54 54.20 95.27 38.37 60.29 42.94 53.66 90.42 74.33 20.58 9.89 27.76 12.61 55.92 21.27 54.51 56.04 5.17 79.07 68.51 26.37 69.57 69.88 18.18 34.83 43.48 15.99 4.76 83.45 83.71 82.71 95.97 90.53 26.34 38.87 16.39 25.79 98.82 47.33 76.28 33.44 41.93 63.78 88.44 67.71 59.22 40.49 53.45 18.69 6.73 -40.92 96.62 13.86 76.09 35.30 1.41 84.37 35.67 78.51 49.64 71.25 74.95 23.41 19.26 88.02 58.27 50.88 32.52 92.02 90.79 59.33 10.54 88.39 33.76 98.75 54.73 27.13 26.91 75.01 43.27 1.02 26.30 67.24 2.28 59.26 11.99 85.77 86.39 99.11 49.88 85.53 97.96 32.43 66.86 62.65 23.50 32.15 18.85 63.15 69.07 8.52 53.56 93.38 40.49 72.93 6.25 67.79 65.71 24.20 98.82 52.24 97.62 4.27 33.56 76.23 73.20 8.64 23.16 6.59 85.08 2.91 73.11 62.72 9.25 23.75 87.98 30.19 1.99 71.21 46.77 2.90 5.34 46.53 44.69 82.75 0.60 8.40 4.23 68.82 78.90 86.88 70.15 24.17 33.25 86.51 38.36 18.33 92.81 92.36 28.33 -39.78 39.68 71.24 76.97 65.25 88.60 35.29 53.64 68.00 13.21 95.47 36.14 82.39 1.92 44.81 94.81 41.34 74.18 4.46 40.51 63.98 50.35 14.28 14.41 88.20 36.65 92.82 55.90 91.51 13.64 39.59 62.18 0.67 23.39 14.69 65.39 33.55 65.26 16.64 45.20 98.50 63.52 57.67 83.16 36.66 7.58 64.71 24.95 33.95 13.05 56.90 63.76 9.07 19.36 12.69 22.85 12.19 59.14 66.13 84.25 33.26 40.01 49.03 4.30 52.21 98.09 75.38 21.95 39.08 38.98 54.75 83.75 97.82 54.58 43.31 44.81 21.32 48.27 42.08 28.84 23.23 43.24 9.04 49.19 89.84 49.60 20.71 85.06 76.30 51.31 40.65 46.32 94.75 10.35 28.98 0.34 37.39 3.40 56.27 28.07 -82.13 12.04 13.24 47.39 28.65 71.92 69.51 65.78 99.06 42.78 22.53 66.74 73.28 81.58 86.83 52.50 19.58 70.70 73.06 36.31 49.40 22.29 52.73 36.87 64.07 0.76 71.06 3.61 93.11 68.34 39.79 17.01 27.15 18.71 3.83 57.68 49.61 70.62 8.25 32.67 33.89 13.47 16.07 59.34 68.50 19.93 76.89 40.34 24.71 98.05 4.76 54.38 35.87 56.26 32.64 29.63 64.15 50.99 23.13 63.85 20.09 87.38 28.86 1.21 69.99 65.76 69.26 45.74 70.76 92.80 41.97 82.37 93.45 50.94 81.75 86.33 96.63 87.93 64.60 69.17 56.95 69.16 0.68 87.53 78.32 46.09 29.72 32.00 65.17 74.55 81.99 64.26 71.43 97.13 43.34 1.48 24.89 76.45 48.18 35.20 -37.00 66.84 57.28 94.05 26.27 20.04 57.20 77.32 60.94 91.54 43.21 41.46 77.52 91.92 10.57 24.85 7.75 63.52 92.43 54.85 95.17 0.63 72.83 45.63 90.00 19.79 51.11 7.78 42.81 22.42 56.27 64.09 82.43 36.69 49.77 75.33 99.19 42.21 11.23 56.74 85.88 23.76 64.39 0.49 15.63 67.05 13.76 2.83 96.72 43.02 13.07 21.55 74.95 50.24 47.42 5.19 59.43 13.85 84.93 87.36 96.55 77.96 93.88 63.61 48.34 44.63 29.68 86.19 35.14 26.39 98.45 25.46 45.68 7.75 43.77 31.36 88.47 94.39 84.86 1.63 59.76 53.38 45.11 94.12 96.82 7.93 60.02 67.06 55.11 62.88 0.35 55.24 8.73 22.21 72.34 85.11 28.75 62.67 3.73 21.84 -47.76 34.66 10.47 50.41 63.94 25.80 76.89 43.06 31.39 78.42 4.05 55.84 64.43 88.58 78.05 81.11 86.23 49.91 97.81 37.70 34.38 6.19 6.77 40.00 5.96 87.93 70.20 23.98 22.39 63.23 88.09 73.35 48.82 66.75 10.41 55.43 41.83 27.96 57.97 80.25 89.86 57.59 7.61 67.26 20.60 70.67 41.99 33.64 46.91 15.74 93.13 51.57 89.68 28.30 82.38 70.47 77.87 83.06 16.98 30.39 34.80 10.45 73.82 86.04 46.32 48.88 10.32 90.48 55.53 62.50 20.86 45.51 68.55 26.45 85.08 74.07 81.21 26.10 13.77 21.91 99.52 17.69 47.01 69.50 36.08 82.92 65.56 42.45 46.47 58.05 86.89 95.26 48.30 90.43 53.57 9.08 97.06 31.92 79.58 95.10 -39.00 98.60 1.22 97.58 82.16 61.98 38.58 40.73 51.35 65.18 86.58 95.01 49.44 15.59 47.79 6.61 77.88 34.79 50.80 65.86 37.75 80.71 67.50 8.37 55.37 80.46 5.39 91.16 2.85 41.39 57.52 91.77 74.48 73.00 85.41 50.70 15.60 91.25 22.57 16.82 33.41 29.21 90.64 93.78 26.46 37.46 13.58 65.40 27.09 58.89 31.19 99.02 27.28 30.49 83.40 52.74 26.34 43.70 61.88 98.80 29.60 39.43 81.17 92.34 94.29 63.20 33.60 61.23 1.73 28.57 41.48 41.02 18.63 62.74 39.65 85.04 44.08 24.04 26.02 7.11 80.12 41.01 73.42 34.77 96.99 12.38 4.99 92.55 74.37 64.40 79.55 62.54 42.13 76.72 4.64 93.19 45.25 90.79 22.76 61.21 -17.98 99.56 78.93 24.81 39.20 34.58 2.17 37.13 11.85 46.47 33.94 55.01 4.86 65.36 53.70 16.46 93.69 98.40 36.40 76.27 53.46 23.16 33.24 1.50 87.93 88.53 85.64 51.66 34.00 86.92 17.87 49.91 46.87 54.78 93.22 27.89 44.50 66.65 7.86 54.55 40.29 35.90 10.44 11.41 27.95 18.77 72.36 92.51 14.16 84.92 0.74 24.96 75.50 63.70 64.39 71.90 60.12 45.62 86.77 84.94 61.48 77.88 62.14 99.34 9.46 67.61 19.04 24.38 70.20 87.41 60.08 0.50 5.30 95.55 34.13 54.86 0.59 46.30 6.37 6.08 83.68 75.07 40.89 31.47 94.87 23.81 94.09 82.00 21.97 1.10 64.07 13.67 25.42 99.77 37.22 80.46 98.67 88.96 45.40 12.57 -7.42 19.05 64.20 39.38 57.51 21.04 34.07 22.91 86.06 65.58 83.02 21.08 13.93 39.30 21.96 44.78 30.93 35.66 79.18 35.96 46.83 86.72 86.01 26.36 38.68 49.62 84.78 37.44 95.04 72.11 45.74 51.23 7.63 94.56 21.90 21.94 38.55 27.65 79.77 96.88 42.59 3.04 87.02 66.56 30.57 54.60 11.25 37.63 81.44 44.83 88.93 93.28 92.45 28.37 65.75 21.95 60.91 17.10 42.02 88.62 15.11 33.71 95.50 17.85 70.88 27.24 32.79 73.57 19.47 60.97 26.22 51.84 38.97 42.43 37.03 2.34 1.80 85.61 84.83 77.13 19.32 61.67 8.99 91.86 10.21 65.43 28.02 20.31 80.02 34.21 91.78 53.49 62.74 90.54 43.82 75.24 77.39 63.87 2.98 28.35 -54.08 54.07 22.15 19.36 60.11 20.69 39.90 80.92 91.03 50.18 51.00 39.72 86.16 62.96 57.38 76.96 72.90 93.28 42.80 31.70 12.15 79.72 34.30 43.52 22.97 99.21 96.66 73.80 21.73 71.90 90.65 41.54 47.20 86.04 8.50 32.16 10.16 79.05 58.12 41.04 29.44 89.53 9.03 87.54 66.92 40.28 8.84 48.16 64.94 63.19 27.43 60.28 46.93 26.30 19.48 80.57 45.52 4.87 51.35 73.52 7.42 25.29 47.59 1.33 68.77 94.09 18.61 3.07 18.49 42.85 78.97 87.34 58.14 96.75 94.21 62.55 58.29 80.66 68.08 5.72 19.72 0.61 91.19 57.30 35.93 66.09 98.04 80.64 63.21 10.91 85.50 42.69 76.75 36.66 19.47 99.66 87.16 58.83 53.94 11.86 -90.75 99.00 30.45 15.35 72.09 43.60 88.13 66.70 63.00 95.35 40.98 46.50 59.48 8.05 95.05 80.97 50.05 26.70 73.49 11.86 95.79 72.29 86.21 38.74 95.96 93.78 63.90 52.72 20.15 28.01 30.87 47.39 63.05 23.88 60.58 72.02 8.62 34.81 66.99 58.56 70.47 88.42 76.72 45.26 20.16 18.98 84.03 72.32 97.09 93.16 3.06 45.69 3.36 30.72 27.77 74.64 39.21 65.05 19.20 1.94 90.66 27.62 9.36 96.46 8.82 26.17 4.56 62.19 31.78 50.00 97.46 4.38 78.86 61.37 4.83 58.21 72.83 82.07 11.44 93.67 39.93 82.67 70.66 12.57 80.23 32.65 6.00 65.82 70.89 90.47 95.38 76.02 6.68 75.21 90.25 49.17 40.16 34.37 21.14 11.09 -88.42 21.81 19.95 20.69 59.88 68.54 73.42 23.07 83.43 46.69 71.39 45.00 94.14 7.12 40.50 2.41 38.83 15.97 37.58 0.91 87.97 22.74 55.22 82.87 93.00 65.06 41.25 66.46 34.97 55.17 34.25 94.34 3.44 83.07 36.24 12.35 80.07 23.40 91.37 85.13 69.43 78.54 31.07 62.38 23.65 1.35 62.23 9.20 89.98 67.17 22.31 73.14 9.73 16.29 46.10 37.40 91.29 0.65 68.06 73.00 56.78 27.74 13.90 75.80 91.88 96.96 57.14 45.94 99.69 1.68 51.45 13.61 70.03 44.13 65.08 60.19 22.99 5.08 54.71 9.26 63.65 88.52 13.79 75.06 77.70 88.06 22.46 6.37 53.94 19.31 10.74 64.17 10.60 93.53 50.41 15.22 83.96 86.78 84.57 37.41 -52.75 11.48 50.14 73.27 53.87 62.80 79.83 14.50 0.74 63.84 39.16 88.95 57.35 28.09 43.52 81.27 13.10 38.22 85.86 80.26 99.55 62.87 90.23 86.46 51.62 56.26 15.37 29.88 63.26 29.46 33.25 17.99 25.37 73.36 49.21 74.32 49.60 56.99 92.82 77.39 53.62 49.57 42.56 87.10 8.67 87.04 83.56 50.81 29.98 79.42 65.56 47.65 4.24 79.66 21.25 74.98 67.57 66.67 45.99 50.18 48.79 83.47 19.21 26.85 21.29 45.95 42.15 66.73 51.56 6.16 99.63 93.33 67.83 20.30 70.37 48.21 25.85 78.24 17.69 39.47 6.94 41.37 74.27 19.75 24.18 12.04 47.07 12.94 9.81 26.26 31.57 12.26 91.38 81.52 73.54 17.80 55.83 59.25 26.72 15.42 -15.18 35.64 10.39 33.80 87.82 13.49 68.98 6.65 89.17 17.80 75.42 5.11 77.30 11.17 55.86 57.83 89.98 70.57 63.26 53.05 46.57 74.71 59.65 12.17 35.19 73.14 57.91 84.76 22.71 82.80 81.62 14.59 28.29 74.83 93.14 30.97 80.83 74.17 75.61 22.49 72.84 98.94 81.76 2.49 9.85 51.05 49.86 84.08 73.01 56.76 70.43 37.15 89.12 13.33 44.14 71.39 47.59 47.44 10.23 42.82 48.79 34.16 35.25 56.57 91.95 2.00 72.83 58.57 1.13 29.62 55.71 50.22 76.55 81.47 28.18 55.44 21.03 44.92 17.68 32.85 17.55 26.09 72.36 20.18 11.26 13.64 45.61 58.18 7.45 74.80 1.17 53.92 12.76 58.42 44.28 27.47 41.37 67.69 69.22 15.09 -36.60 71.14 33.17 6.45 18.78 0.90 90.22 17.90 23.18 36.20 7.63 29.45 32.00 2.29 55.58 7.58 25.96 92.74 23.77 74.79 19.57 21.94 3.37 58.81 31.37 52.89 81.36 4.64 35.53 38.77 33.40 9.98 61.48 23.72 16.78 41.62 9.75 52.90 45.63 63.36 47.00 46.32 24.93 54.01 98.98 74.23 54.09 98.60 28.09 15.87 72.84 97.90 52.56 10.98 74.00 91.24 71.45 80.90 21.51 2.50 75.78 93.70 56.27 47.02 7.14 18.11 33.94 41.32 4.79 95.31 88.96 29.80 15.32 15.26 91.34 38.66 45.76 58.01 76.89 39.96 23.47 61.24 57.18 45.98 61.19 81.09 36.76 18.38 42.69 72.26 27.06 50.86 18.62 33.15 99.29 4.61 49.20 86.43 28.13 88.52 -53.01 71.60 40.33 50.42 93.48 67.92 72.62 54.68 95.96 34.83 47.88 10.72 74.90 8.00 71.82 72.81 97.30 37.62 83.88 55.13 76.27 7.86 70.62 33.82 74.74 62.73 88.55 32.17 83.53 6.57 97.39 80.73 63.14 42.15 34.93 86.99 21.13 70.46 46.96 16.47 56.97 57.22 58.35 19.12 38.35 91.69 40.26 45.62 41.11 61.73 10.38 78.82 36.60 78.13 21.43 66.06 90.33 97.24 47.58 75.72 5.94 5.61 75.99 24.81 17.68 45.81 57.80 70.90 69.84 51.38 2.34 1.85 97.16 5.53 87.81 18.20 0.59 51.98 86.22 25.87 46.47 46.05 17.49 36.07 37.57 99.23 67.42 44.64 33.30 53.52 39.59 56.37 69.54 50.31 1.35 35.59 91.07 39.78 31.43 85.11 -10.37 88.92 24.57 29.93 54.84 96.39 96.97 20.39 10.95 77.19 47.10 93.94 8.85 60.97 48.77 54.61 62.94 77.64 54.08 36.57 95.12 67.11 44.70 9.47 18.86 32.11 62.22 75.44 37.09 68.37 77.15 3.05 32.75 28.37 75.24 13.48 14.70 73.75 17.15 98.53 94.13 53.40 47.50 50.25 58.32 63.74 41.47 39.60 57.00 42.69 81.24 86.14 86.71 82.10 60.47 18.99 68.41 17.83 72.01 2.04 76.28 2.44 10.60 52.97 91.60 15.06 27.07 78.86 73.48 65.85 46.70 21.26 26.23 64.13 89.50 43.40 75.29 31.75 69.16 83.95 76.64 63.75 38.93 6.11 26.52 4.73 62.64 51.35 55.08 47.93 76.84 3.65 60.16 20.60 69.58 13.27 99.95 61.48 9.31 73.67 -36.55 26.77 29.53 94.66 88.99 52.35 57.42 87.23 4.55 28.67 4.19 11.69 23.00 71.93 62.75 60.51 82.35 88.41 44.54 41.60 32.91 39.40 10.92 23.16 11.56 89.42 35.72 95.90 40.79 66.64 20.92 69.36 92.28 58.41 60.57 1.46 18.66 81.86 1.76 47.03 27.10 73.19 2.67 4.45 41.08 6.39 20.94 87.50 30.08 68.67 28.94 55.22 7.35 6.95 77.50 79.10 66.27 74.30 11.29 53.69 98.44 5.16 84.23 38.69 83.98 3.61 72.57 87.71 87.46 22.40 23.80 18.18 26.50 78.35 36.38 75.89 33.21 18.27 41.53 81.01 0.57 36.75 76.07 44.21 85.79 98.86 35.61 7.51 34.72 15.90 94.63 67.75 86.38 13.51 20.23 2.82 59.38 54.49 80.68 32.75 -88.75 24.06 32.34 37.68 33.21 47.12 97.14 79.66 79.03 37.55 8.45 93.50 70.67 18.65 3.33 3.04 74.26 97.96 91.17 80.07 42.76 20.94 14.41 62.53 82.07 36.33 59.74 38.04 92.05 59.69 4.12 30.39 34.17 30.66 88.35 5.68 27.57 19.28 91.71 74.27 30.83 43.95 66.46 5.62 11.97 87.98 66.10 62.05 13.86 28.66 16.15 63.26 38.71 24.72 87.94 47.70 98.86 37.01 97.52 1.91 56.80 28.65 51.19 38.65 27.51 32.84 47.02 51.80 31.04 42.61 34.96 48.82 2.05 79.82 11.10 95.37 77.09 43.89 62.72 0.53 83.00 82.62 75.47 27.73 14.69 16.22 25.92 17.39 16.40 82.24 84.41 18.28 22.21 24.42 69.80 13.37 25.14 24.03 3.37 39.02 -62.40 82.51 76.60 75.96 95.06 1.25 42.80 20.87 63.90 23.06 13.84 97.64 86.46 48.55 86.11 28.13 58.36 95.95 93.08 82.28 6.17 60.27 96.02 94.90 4.31 31.38 11.81 5.60 27.37 34.97 17.55 93.72 20.16 83.01 7.38 54.26 39.11 64.89 43.45 25.39 60.01 79.55 69.42 25.73 38.38 61.99 36.07 95.07 12.10 37.19 80.87 94.76 41.68 77.80 97.74 76.70 78.22 1.55 17.63 98.53 36.20 22.52 45.31 89.32 40.38 50.81 18.93 69.39 59.30 43.74 67.59 77.03 79.69 75.25 54.91 97.02 91.05 47.63 3.77 0.26 97.86 5.11 78.90 14.87 56.14 79.26 46.84 69.04 21.83 9.12 69.50 97.73 55.30 46.27 97.05 32.84 63.10 57.95 0.81 84.42 -89.65 93.10 17.56 8.33 84.54 92.43 53.76 20.40 61.97 21.05 77.34 46.63 53.07 36.43 59.39 38.21 97.02 17.79 20.29 46.14 94.30 89.24 33.81 63.38 96.94 95.83 81.22 36.60 70.68 96.82 23.87 98.30 23.84 13.43 93.88 33.38 72.93 36.84 87.60 12.70 85.01 86.23 7.81 30.44 9.60 94.67 12.67 60.39 34.22 85.73 22.37 97.86 45.33 57.68 98.15 85.51 76.05 38.94 97.12 33.39 27.85 83.15 36.57 63.63 6.41 23.42 89.10 75.25 26.40 1.95 99.44 82.66 19.83 40.12 24.33 67.64 97.91 2.29 32.28 6.76 7.75 47.53 71.70 15.81 48.40 83.33 63.67 64.95 0.24 0.41 40.90 11.99 42.98 48.59 50.66 32.13 22.03 49.85 25.42 94.85 -87.95 42.06 77.57 23.09 77.92 0.12 52.65 98.07 74.41 84.54 35.49 16.82 97.80 25.03 58.19 0.81 91.65 78.88 26.21 22.27 84.50 94.11 24.89 62.37 45.51 97.40 43.05 39.30 99.16 81.23 87.21 43.74 35.03 84.06 40.81 25.31 16.62 21.29 82.64 85.57 49.35 62.08 23.69 9.72 78.61 26.62 11.58 57.87 93.10 85.03 31.29 12.03 41.19 51.17 10.87 39.75 84.14 35.02 89.49 43.48 0.00 9.58 37.81 39.34 46.59 95.07 71.02 28.39 54.30 36.81 97.75 66.17 61.27 71.65 80.58 72.59 32.25 78.35 60.98 10.07 27.34 2.08 91.66 4.51 43.17 23.83 61.34 43.50 53.27 77.90 99.81 76.43 11.44 13.03 69.34 40.46 52.55 45.57 55.88 75.97 -21.84 13.48 55.88 10.76 51.92 31.09 80.64 76.56 10.52 37.53 12.21 49.90 44.09 85.03 16.03 87.03 47.76 98.47 33.49 88.28 28.40 48.19 72.13 7.04 31.47 80.15 97.25 13.70 99.63 55.58 75.06 59.77 75.15 95.01 41.59 91.65 4.73 30.03 91.76 69.35 25.71 35.01 92.81 6.44 65.44 19.18 58.04 16.51 98.54 7.87 12.22 66.77 95.52 83.83 18.06 89.75 98.36 77.85 57.05 76.96 81.32 46.96 27.89 67.59 66.21 43.98 1.23 91.16 89.74 60.13 43.26 89.27 26.86 46.15 20.38 14.24 23.22 12.33 29.96 72.52 83.97 88.35 65.32 3.66 72.74 56.35 88.37 48.12 4.44 15.59 98.47 87.93 63.80 9.04 29.27 73.16 43.29 33.33 75.27 32.15 -76.95 32.62 75.14 28.58 64.75 25.04 87.23 89.89 69.58 81.28 8.55 12.99 37.81 19.23 0.26 88.36 25.54 89.23 31.54 83.86 78.97 2.18 24.06 56.92 90.64 2.72 33.16 19.48 94.42 60.84 96.16 31.53 93.75 54.62 34.31 90.94 53.84 32.22 93.40 37.44 7.53 41.74 68.74 83.95 31.51 37.74 89.13 31.17 94.72 78.51 97.07 19.43 89.14 31.34 56.61 26.70 11.41 86.49 85.48 17.47 67.17 6.55 22.03 52.98 55.47 17.29 99.38 95.99 69.47 64.46 56.83 86.08 65.77 50.38 13.65 56.19 13.67 97.23 30.23 51.52 79.18 90.23 25.95 68.77 22.37 74.58 35.66 8.45 68.37 17.85 51.19 3.40 70.98 25.05 37.67 47.60 67.95 94.01 99.37 77.75 -81.93 23.27 41.55 52.61 74.83 98.37 6.10 27.62 9.57 63.57 81.44 94.08 40.34 1.28 38.26 75.36 32.71 67.28 2.11 48.35 76.36 98.82 73.80 56.48 73.60 61.73 37.45 29.68 81.79 9.99 3.07 25.55 55.73 50.98 51.89 66.69 47.01 37.37 20.63 69.58 46.02 87.05 40.63 13.68 66.23 14.13 48.12 25.30 68.99 59.06 28.03 74.42 8.17 48.29 59.68 28.39 21.71 94.80 24.27 80.07 79.47 62.26 70.08 37.81 64.69 77.35 86.67 75.92 82.04 47.86 33.82 36.23 91.70 18.96 7.08 8.62 75.03 29.49 62.49 4.84 67.94 50.09 63.00 77.48 88.30 24.25 61.88 44.60 91.74 55.29 68.51 25.65 89.80 80.90 52.74 31.79 89.03 95.56 16.31 43.24 -64.06 91.42 89.05 2.12 31.16 49.88 25.28 69.92 75.22 5.42 40.53 41.42 92.66 92.19 20.87 57.45 3.93 12.77 5.06 54.79 10.96 19.63 5.56 14.13 88.32 94.63 14.12 43.80 60.43 66.94 96.10 87.88 37.50 55.38 78.90 63.21 52.94 62.11 46.70 85.20 91.73 9.88 60.28 82.16 10.96 96.64 78.29 52.56 2.38 29.81 41.18 40.60 20.21 1.11 10.82 71.64 85.74 49.41 17.30 91.08 1.80 94.80 13.91 95.91 29.01 29.03 62.81 6.08 59.70 65.25 4.70 67.62 54.74 10.25 14.85 0.41 90.81 91.23 37.60 81.07 90.32 57.70 91.99 29.86 21.51 21.08 77.66 45.20 12.43 77.00 72.40 99.89 86.76 73.58 50.87 42.78 6.32 35.12 22.66 15.58 -33.17 30.45 51.57 81.00 1.31 30.47 49.09 87.76 52.99 61.53 96.29 82.24 30.92 24.31 79.91 65.63 67.42 60.86 21.64 32.69 58.07 25.07 13.73 28.15 9.97 52.32 80.07 38.67 8.57 31.65 67.14 15.72 62.99 39.37 1.33 83.76 37.03 85.86 62.11 76.64 40.43 49.01 90.03 82.52 38.80 42.86 78.90 61.84 37.64 26.02 81.21 67.48 29.78 67.04 48.07 40.53 69.86 66.53 75.75 41.53 53.50 43.44 74.37 3.66 31.38 85.67 17.12 97.83 82.95 16.16 20.04 60.71 76.56 55.24 22.61 90.32 50.62 75.25 86.87 68.82 16.37 95.71 93.97 31.34 24.17 47.86 60.08 26.97 56.65 31.67 45.12 11.63 44.21 70.06 68.51 22.43 51.47 56.51 79.96 38.15 -18.11 73.52 23.92 59.83 86.57 88.12 95.42 44.14 33.59 47.46 50.39 64.38 65.30 57.13 84.55 20.19 18.58 24.97 16.78 43.02 96.08 76.82 66.45 15.72 81.49 91.09 11.24 97.96 51.00 13.07 22.81 57.82 41.59 7.01 5.00 61.79 29.16 47.96 64.04 8.18 24.32 10.64 14.89 90.41 0.74 5.92 31.03 81.85 52.79 90.41 3.83 10.64 63.44 28.25 0.12 93.90 34.46 57.90 44.14 53.96 72.39 84.84 56.03 43.36 16.99 80.06 0.41 36.96 99.96 24.33 90.27 65.80 17.77 41.72 28.73 18.60 13.55 64.29 70.76 82.06 32.84 53.39 28.78 39.93 10.09 84.90 4.39 40.48 7.17 60.10 56.10 30.87 12.17 73.36 83.17 65.15 23.61 71.08 26.20 59.54 -83.76 90.06 97.60 85.00 17.74 98.48 10.31 77.10 16.63 99.07 81.64 89.32 85.51 89.70 0.87 41.06 85.85 8.97 19.12 41.73 39.39 81.88 23.41 72.34 8.66 1.69 69.12 25.30 96.69 72.36 20.71 12.41 46.36 4.01 8.77 15.98 52.00 35.11 1.08 29.86 85.85 52.67 78.31 93.77 54.58 28.37 15.71 98.67 93.70 85.17 29.63 95.58 57.53 46.91 58.04 15.14 48.70 76.61 73.74 47.47 20.09 9.43 57.02 37.94 65.70 99.04 23.01 0.21 64.00 97.77 51.79 22.49 36.07 34.52 22.08 36.95 21.66 85.34 14.28 42.59 25.76 73.74 50.05 87.12 33.00 82.06 42.89 41.51 98.35 36.29 96.03 91.24 2.55 56.96 66.57 38.41 70.15 6.32 9.62 98.80 -25.86 57.46 25.20 90.61 69.82 87.76 42.07 67.61 30.76 52.25 22.73 81.22 24.54 2.60 5.39 25.29 90.56 37.14 97.70 94.61 26.59 27.22 72.32 2.26 51.73 27.02 43.77 9.63 92.76 27.51 0.85 76.91 20.45 15.11 72.80 35.59 27.30 24.95 10.13 53.16 37.36 56.24 43.22 98.37 29.40 67.26 39.84 51.03 27.88 26.44 44.80 99.31 3.83 58.86 40.38 97.74 23.40 94.08 61.04 87.43 96.04 99.70 54.04 57.45 2.06 25.06 0.23 5.98 13.71 83.33 60.40 57.70 21.86 46.24 91.66 16.04 23.25 48.89 89.71 52.60 62.49 54.83 62.67 43.27 22.34 62.65 69.04 61.02 21.27 9.47 78.31 77.91 77.18 23.14 80.95 4.13 38.66 89.65 26.34 20.50 -71.74 79.20 54.33 50.60 25.99 44.06 44.88 65.48 70.61 79.27 7.46 55.43 89.34 19.65 32.18 19.94 37.48 92.01 79.39 63.87 28.98 14.16 99.41 81.72 31.15 38.11 7.22 29.17 70.24 7.63 25.06 51.93 47.48 58.28 95.45 35.32 54.57 3.66 6.99 45.40 41.72 72.13 97.17 3.30 47.05 9.30 80.70 8.35 50.24 55.81 6.43 28.16 21.77 51.43 92.51 87.05 61.85 19.58 87.28 94.33 40.13 0.17 88.68 72.11 94.24 40.56 52.56 45.47 3.95 77.91 58.32 40.22 68.94 28.69 68.71 12.96 8.84 59.15 52.01 9.32 27.57 5.60 28.38 81.42 7.29 34.99 34.60 29.70 48.93 15.37 54.80 2.20 13.05 13.80 16.64 2.02 17.37 70.69 91.74 48.47 -10.24 48.59 62.10 89.70 90.94 22.05 53.62 31.00 3.65 95.09 56.27 32.69 77.07 61.27 59.53 83.40 68.14 98.98 64.13 99.23 94.74 42.33 97.30 35.69 20.28 23.31 12.93 37.36 20.27 52.47 40.10 49.96 85.48 31.38 35.13 78.06 90.57 95.79 46.82 19.59 98.69 66.61 48.88 24.49 74.18 3.16 28.70 1.38 65.23 14.16 16.85 29.76 74.61 87.59 44.21 18.85 86.07 27.16 53.68 51.78 64.76 47.93 40.66 15.37 73.24 13.75 24.30 72.42 97.36 17.63 58.37 47.18 89.60 47.85 78.06 95.49 95.09 10.08 90.17 76.36 91.67 15.99 58.77 71.08 17.07 33.56 39.50 68.31 52.45 73.15 74.58 70.17 54.75 96.58 96.21 77.59 66.99 72.69 87.55 48.09 -89.98 98.61 81.87 25.79 84.92 10.32 60.64 31.22 44.58 77.09 69.11 92.97 71.92 38.11 89.34 44.12 74.27 48.13 31.14 88.71 94.75 20.70 67.00 5.14 21.15 87.76 46.42 2.20 86.54 60.71 64.68 92.80 53.84 49.23 74.24 90.72 98.14 12.02 97.05 40.15 75.40 90.42 1.92 98.53 70.69 14.63 76.83 1.43 75.22 49.99 25.45 27.21 63.72 94.25 53.08 45.32 7.66 24.05 35.07 44.70 96.29 54.01 79.07 96.28 30.67 50.77 44.03 54.27 17.26 94.51 36.72 28.72 26.28 50.54 97.90 90.57 81.95 69.25 50.81 76.81 68.98 79.57 64.59 9.33 91.47 31.97 61.87 15.36 43.10 29.01 28.03 66.41 56.42 38.92 34.84 21.75 15.74 77.03 57.13 68.32 -80.59 65.57 41.31 55.19 59.17 12.87 61.20 42.66 76.11 98.80 49.19 53.94 59.04 16.62 21.43 7.63 52.26 54.08 48.43 51.72 78.05 16.20 61.44 82.08 53.71 14.49 29.37 91.30 57.64 82.51 64.84 79.43 35.65 79.50 62.69 35.81 54.92 41.48 62.17 17.89 52.62 27.79 67.69 47.88 34.49 94.58 16.64 43.95 46.37 87.90 70.79 74.27 56.74 34.13 11.44 41.67 82.83 50.55 12.69 47.83 42.75 23.58 14.24 26.57 30.63 56.09 67.10 8.28 58.88 40.42 91.95 14.29 8.67 81.14 91.06 60.65 96.91 85.66 9.11 48.50 82.30 22.28 30.95 82.07 62.40 22.23 81.51 28.33 5.99 58.95 16.67 82.64 19.20 89.84 80.40 85.62 17.48 31.32 62.85 18.87 -0.43 49.41 41.87 20.46 93.10 24.28 92.28 77.13 31.05 50.33 69.73 71.79 85.29 49.32 86.43 54.82 51.27 63.38 67.65 33.02 31.46 32.23 59.84 82.70 75.34 31.45 1.82 97.74 40.92 45.79 97.93 66.50 20.90 92.31 91.64 83.42 82.79 37.71 46.36 68.70 35.34 92.03 11.81 40.80 17.56 71.14 16.99 81.71 92.15 20.62 66.99 13.08 38.75 13.93 13.49 28.51 7.96 48.78 18.99 80.03 37.36 13.48 60.58 81.31 38.81 37.51 46.43 79.27 48.06 9.73 7.80 44.39 69.29 53.55 4.95 53.11 48.64 42.91 76.70 32.59 93.10 6.77 87.37 41.68 86.99 23.98 95.32 43.44 98.48 59.71 48.24 27.70 97.25 0.27 24.33 47.05 85.79 64.67 83.42 47.32 -0.55 77.06 63.49 43.49 18.12 96.12 28.89 5.44 99.95 29.08 41.47 28.66 52.19 34.66 90.00 97.49 47.18 83.41 4.67 76.60 37.06 48.97 34.72 1.79 78.14 66.24 89.70 14.63 3.94 1.72 52.66 19.80 33.19 58.66 64.77 83.45 59.93 36.93 24.40 45.50 1.88 56.09 47.34 15.00 19.44 37.02 41.16 77.81 90.50 73.87 63.42 14.21 32.27 50.66 5.36 38.27 36.11 26.34 47.06 46.46 64.85 79.94 78.77 3.80 37.14 4.33 17.13 67.53 53.29 4.96 58.31 95.70 15.37 52.24 4.80 46.98 98.53 0.30 18.67 61.87 20.45 35.18 48.05 3.82 44.97 64.40 94.39 72.44 15.36 76.99 39.51 96.55 5.16 35.06 3.43 70.80 52.74 5.80 40.80 85.33 -58.92 18.97 34.27 52.89 59.50 51.62 34.71 28.03 39.70 75.34 20.79 54.99 38.87 57.35 58.35 92.53 82.45 75.04 69.29 74.29 50.71 5.51 28.92 87.53 90.15 32.09 93.29 16.60 20.45 92.31 21.08 29.51 67.24 12.94 19.12 26.17 49.20 66.09 5.38 92.18 15.49 6.87 47.29 32.00 84.55 90.95 81.79 48.19 74.09 25.66 27.96 94.00 99.79 63.34 37.25 86.62 59.97 17.64 94.58 39.51 26.73 92.72 24.52 95.39 95.26 23.64 68.69 71.08 42.86 62.61 11.28 89.60 96.51 19.65 42.07 10.53 75.41 65.81 32.80 83.33 28.76 12.09 2.52 57.18 39.60 48.62 4.22 41.24 28.44 34.19 80.29 39.93 25.61 56.92 37.63 91.21 30.54 39.18 86.49 2.76 -8.30 62.22 65.21 78.96 35.62 0.88 16.12 55.16 41.96 90.83 55.20 99.13 81.56 70.63 84.55 91.91 95.06 46.05 91.68 41.26 57.87 31.42 16.56 60.03 40.98 96.18 15.16 75.33 72.96 50.31 27.45 11.49 74.90 74.35 41.12 47.75 99.94 53.19 97.85 12.56 12.54 18.08 82.30 19.84 29.01 48.56 33.15 19.62 7.96 53.74 2.88 11.51 8.69 98.29 35.98 70.31 91.45 88.15 40.79 17.08 83.23 89.82 59.57 35.08 94.85 76.80 67.67 28.76 94.34 75.18 54.72 38.51 65.24 22.07 83.58 40.08 40.61 39.45 32.62 24.09 69.46 12.49 0.47 62.98 10.06 12.32 7.62 80.27 68.26 23.62 81.63 11.19 90.79 37.90 73.13 38.45 83.39 90.34 96.31 79.92 -75.09 78.40 48.56 6.68 92.49 86.38 66.30 80.45 12.87 61.27 46.60 8.87 85.50 73.90 67.54 42.81 77.95 47.07 13.30 13.46 45.47 7.72 71.58 56.16 64.29 49.89 37.24 51.11 97.52 20.19 53.55 75.45 75.61 72.67 47.61 53.23 43.75 17.72 64.87 68.86 77.63 54.01 58.09 35.68 91.34 3.08 57.22 46.38 46.47 2.98 76.35 33.46 4.24 16.23 39.12 25.33 29.56 75.60 67.52 76.29 29.62 2.88 19.84 74.30 83.00 15.52 37.41 22.48 60.88 28.02 20.33 18.35 14.53 33.59 56.45 96.74 93.58 2.44 4.61 13.77 49.72 46.45 27.19 98.81 82.85 92.32 20.25 29.09 46.15 59.91 46.62 19.44 86.36 6.04 67.21 58.99 63.89 65.79 56.67 31.21 -20.64 93.95 56.47 42.25 22.01 36.94 1.83 32.57 39.67 66.86 25.10 98.97 22.51 6.91 28.39 93.48 82.65 49.22 97.36 27.39 52.18 63.50 44.85 62.47 4.50 34.65 64.93 13.13 44.11 66.67 16.59 92.57 16.24 34.03 99.20 68.03 21.50 29.35 78.72 35.98 78.60 83.52 38.52 90.62 85.21 16.50 56.01 84.50 58.19 79.76 77.32 91.08 66.42 99.53 58.87 7.55 83.42 1.75 67.15 48.08 83.06 63.02 51.99 34.56 84.38 8.03 42.36 37.98 26.52 12.40 60.36 43.80 71.40 42.18 97.58 62.74 2.60 32.75 44.18 21.56 77.24 74.44 69.67 78.72 99.52 87.55 6.56 56.62 5.14 44.90 12.39 25.94 60.82 37.22 70.49 4.10 87.27 64.35 54.93 40.08 -47.48 23.98 83.02 52.19 27.72 86.75 85.55 58.06 55.39 74.38 21.99 89.87 27.71 80.08 57.01 67.31 88.60 13.87 24.91 22.79 29.53 47.81 74.63 18.53 46.57 53.32 49.73 29.29 72.42 64.95 6.38 0.58 68.78 59.18 64.35 22.34 92.30 21.74 49.24 16.34 4.37 38.92 84.91 72.63 60.12 24.12 22.73 82.49 46.84 87.06 97.30 62.06 27.34 83.05 33.36 66.15 18.15 6.33 92.81 92.18 80.41 97.75 24.79 73.92 39.73 95.18 4.21 37.25 74.25 60.14 53.85 56.10 97.02 40.39 71.70 14.07 73.46 5.94 89.55 29.18 85.25 58.14 12.54 79.66 14.43 0.46 1.18 54.95 71.85 2.19 55.27 12.19 90.03 9.54 80.95 94.42 91.09 19.93 23.47 96.78 -95.64 29.28 65.76 34.26 73.26 86.78 73.05 47.38 83.77 49.01 47.17 1.96 29.38 32.78 27.15 99.63 77.65 58.42 71.99 53.95 3.11 41.91 51.46 24.90 37.72 62.15 83.65 84.35 7.03 82.93 1.22 81.29 80.84 70.48 66.01 55.76 83.34 31.18 53.49 13.37 77.52 95.60 43.62 14.60 72.39 48.67 70.10 83.47 61.32 84.00 94.84 78.33 18.74 24.47 98.51 22.64 44.52 10.90 87.43 87.24 90.81 8.24 86.75 27.60 65.73 40.86 77.33 65.94 34.69 53.46 61.29 46.92 48.75 35.53 52.49 39.01 0.77 44.83 47.65 79.36 5.39 27.66 92.67 18.32 17.05 15.88 67.17 11.97 90.51 16.98 5.38 21.23 40.60 7.55 67.57 78.68 60.34 88.36 33.13 97.68 -2.26 19.02 30.08 95.35 44.91 16.93 28.93 99.84 66.75 6.26 79.03 12.30 8.11 17.35 83.12 91.47 35.98 62.29 51.11 56.37 60.51 92.56 10.64 84.97 34.19 68.72 45.59 63.62 74.87 16.88 20.89 13.93 57.35 91.15 58.12 42.41 92.70 71.77 49.45 42.30 22.28 95.71 31.36 5.19 33.34 52.13 77.39 67.10 28.54 16.24 98.95 66.11 15.85 35.53 47.88 61.90 19.77 66.87 18.08 16.01 55.66 45.85 87.67 89.51 5.07 71.35 70.66 20.48 34.84 31.70 70.21 4.82 11.61 28.47 74.38 34.87 9.20 93.90 53.25 69.24 5.75 35.42 54.10 59.14 49.01 10.79 42.15 54.12 42.84 97.57 23.06 39.11 27.09 64.16 62.72 70.14 23.70 46.28 92.34 35.77 -36.48 37.29 35.38 72.62 8.56 43.39 78.04 20.99 62.56 56.72 8.27 57.41 16.45 97.29 95.19 34.16 1.84 51.45 22.77 6.08 37.60 68.29 97.72 76.90 31.18 65.93 9.42 37.02 61.86 94.92 19.66 2.99 2.94 34.39 6.00 64.83 83.33 44.57 57.36 83.29 0.87 2.52 45.33 39.56 37.90 6.26 60.78 92.03 85.64 16.65 9.70 40.24 4.62 4.83 81.36 39.28 73.60 25.06 2.99 43.88 74.16 1.88 3.66 71.35 89.87 3.88 89.90 50.47 22.45 92.20 10.24 66.97 95.95 67.09 22.53 94.16 7.95 77.25 30.56 7.54 64.47 80.93 15.42 28.18 2.61 79.78 0.99 48.84 1.70 86.40 62.23 31.40 25.02 92.44 33.69 1.47 82.66 78.33 21.82 65.31 -91.57 62.32 41.58 85.40 30.95 51.93 18.15 65.13 90.04 93.29 42.93 17.04 16.50 63.58 77.58 70.52 64.30 25.60 96.80 62.53 93.75 12.41 28.18 97.78 24.09 17.43 56.62 39.97 59.39 10.74 67.29 26.28 44.87 12.82 70.52 55.74 4.56 60.11 26.94 74.59 42.53 91.07 59.15 78.49 53.45 43.31 61.81 60.29 53.13 65.95 74.37 73.10 41.74 70.89 51.61 41.56 54.70 8.02 63.20 81.21 17.83 49.33 48.61 51.51 57.36 24.54 97.42 96.17 16.38 67.77 82.88 96.16 30.68 7.41 74.63 94.32 67.25 40.87 54.00 40.66 17.12 78.96 14.26 39.04 14.16 0.45 27.18 27.11 99.41 73.27 49.49 11.38 86.31 9.72 18.71 58.71 36.41 69.62 16.56 40.28 -69.17 47.09 19.58 77.24 65.46 2.11 40.49 30.06 99.85 3.50 57.88 58.48 84.48 37.57 6.32 54.22 92.69 28.04 48.44 25.98 83.69 25.29 37.79 14.71 2.01 64.40 39.42 88.04 43.29 10.24 49.13 64.83 36.19 14.21 67.47 30.76 76.21 84.00 46.41 81.31 5.05 10.32 52.28 51.70 68.21 52.76 75.03 68.09 4.13 10.35 11.18 72.81 26.82 22.87 18.73 88.47 13.32 44.45 46.66 32.41 79.36 37.15 83.09 52.83 45.65 95.96 69.01 67.06 59.46 6.70 90.81 31.09 49.12 24.60 42.93 97.67 45.06 5.75 67.91 50.50 62.61 61.19 42.31 16.22 70.73 97.54 36.19 63.92 95.68 59.86 53.78 53.72 25.37 5.01 75.51 76.95 39.42 75.14 52.73 67.22 -65.41 54.19 62.27 38.57 29.70 92.49 43.17 28.81 5.92 64.24 36.38 25.31 81.12 12.70 79.55 62.68 27.24 3.06 29.77 89.95 73.53 94.87 84.88 74.00 68.39 38.16 3.51 47.66 88.94 17.90 13.74 40.66 16.71 85.79 21.85 30.12 65.28 79.20 90.94 83.43 39.45 81.14 76.88 94.32 51.60 38.42 7.09 85.51 57.17 63.87 6.09 53.66 0.32 22.19 4.37 92.42 33.12 71.84 51.85 66.56 50.15 50.71 11.44 38.76 91.98 83.64 26.69 55.99 23.67 62.28 1.01 59.87 88.48 74.92 73.13 17.15 43.81 39.24 38.99 35.99 11.58 6.80 0.79 20.74 72.39 48.93 71.54 52.79 19.74 30.43 91.41 85.15 83.51 29.21 2.15 64.05 46.68 9.78 67.68 7.13 -59.39 84.84 30.49 36.10 17.50 39.26 8.52 42.85 72.57 19.35 35.95 64.29 74.17 0.18 23.12 62.77 94.30 35.61 70.98 1.00 98.95 80.07 3.13 77.97 94.42 71.59 29.42 41.11 46.03 60.16 41.55 41.02 96.88 62.47 22.30 99.45 72.31 42.56 3.21 98.50 16.59 24.28 55.67 37.78 53.48 64.80 21.57 68.58 6.29 91.90 60.40 42.13 50.38 62.72 38.05 47.59 67.10 23.28 19.63 66.97 56.56 66.84 14.32 46.03 17.40 39.05 81.42 33.70 47.89 26.27 11.89 80.90 87.86 56.66 44.26 80.87 34.43 96.08 64.66 0.32 97.43 6.91 50.43 95.95 16.69 33.64 16.65 48.04 23.60 43.33 25.64 30.34 38.97 52.54 65.19 9.63 86.03 1.44 61.93 38.88 -7.56 5.16 47.24 34.31 85.44 28.47 25.58 80.43 28.76 63.99 88.47 80.22 23.17 23.73 61.06 49.17 50.61 45.17 20.01 48.56 44.86 59.45 56.70 75.56 87.51 66.12 40.41 21.35 18.07 87.74 48.43 36.17 18.46 91.91 47.37 17.05 55.01 76.45 72.33 12.36 8.13 97.96 89.10 34.83 85.53 90.49 41.15 71.70 15.56 36.77 44.75 12.32 19.10 90.83 46.65 66.22 64.60 94.25 83.04 2.76 50.66 23.02 19.67 87.83 82.78 51.17 42.35 8.25 46.49 84.31 33.11 73.30 94.06 45.11 44.53 33.45 92.52 31.11 5.66 11.22 53.55 57.68 62.03 98.17 37.53 39.28 2.21 64.06 44.44 33.32 86.84 65.34 43.47 17.82 33.22 41.73 93.62 70.72 4.21 34.05 -49.07 52.54 72.10 76.62 86.54 12.99 81.92 66.21 84.79 92.21 59.11 21.10 23.22 20.75 47.91 64.61 39.03 60.57 92.55 69.22 91.30 42.25 47.86 11.44 26.34 55.52 74.81 4.36 50.96 31.58 18.45 83.26 1.70 38.15 9.69 12.48 8.77 59.61 57.98 91.39 48.65 58.72 3.24 5.15 95.19 19.11 68.18 34.46 85.36 50.53 38.16 84.88 28.01 99.16 34.04 97.73 1.54 40.06 51.88 97.72 35.35 33.12 38.78 11.75 11.89 82.50 73.95 64.79 31.22 85.35 99.85 86.44 74.81 43.84 14.47 2.48 65.32 7.64 32.40 65.11 76.03 43.29 64.24 86.56 75.15 24.47 13.38 36.73 24.12 8.28 42.87 37.66 68.45 30.68 22.91 91.76 52.13 25.50 86.29 50.31 -96.68 7.24 70.68 47.06 76.71 22.22 86.05 92.10 51.57 45.98 80.14 94.93 39.54 15.68 5.69 1.50 7.00 17.36 61.48 90.96 45.28 29.79 70.48 79.90 11.90 61.46 61.27 72.42 6.31 11.08 92.52 16.66 58.86 53.85 43.86 81.97 48.12 73.10 8.62 81.47 64.28 13.11 8.59 73.22 78.45 71.28 40.77 74.26 21.19 21.50 3.06 64.26 88.66 76.03 78.70 9.04 41.97 10.94 96.05 56.22 37.27 2.04 9.71 25.22 70.57 69.81 63.71 26.97 8.11 86.38 21.67 66.78 45.34 20.36 46.67 66.25 61.98 68.61 22.78 31.00 36.87 18.84 83.69 57.88 23.74 3.89 97.39 84.11 6.05 72.75 3.55 97.48 19.30 95.55 57.49 98.97 98.50 99.78 22.34 13.02 -54.09 4.63 57.45 19.38 3.44 83.72 5.34 34.67 94.40 47.33 58.11 53.60 73.35 36.28 34.99 61.03 96.36 21.09 46.65 19.13 92.25 44.95 30.57 88.83 8.77 93.86 53.54 73.55 33.75 4.45 16.24 48.66 54.92 20.16 25.21 90.01 33.52 58.67 11.12 2.38 11.74 74.17 83.61 78.84 71.15 20.38 44.05 93.29 36.21 10.53 29.28 79.87 44.12 95.95 54.30 69.71 89.86 53.14 82.83 45.60 92.85 94.44 2.35 97.03 38.29 28.29 22.64 60.78 40.94 28.37 20.61 18.51 11.66 15.74 98.89 10.51 36.01 60.06 24.11 25.00 60.57 14.54 47.32 61.92 48.43 6.85 39.88 67.65 61.68 67.88 59.31 50.79 3.29 12.26 28.18 87.38 68.69 24.00 60.92 17.71 -13.13 26.51 16.71 16.99 37.25 31.71 13.32 10.99 83.34 90.13 37.12 79.46 17.73 25.93 4.35 93.06 20.20 12.16 7.63 64.99 18.13 89.79 6.79 5.95 0.22 24.78 24.37 72.36 21.67 72.41 83.08 83.14 49.74 15.82 3.93 21.00 56.46 40.26 0.09 84.36 46.94 63.57 80.07 87.01 14.64 97.23 47.75 66.72 11.03 15.16 13.11 90.08 46.89 14.92 96.96 92.59 44.88 83.48 26.65 4.94 99.55 21.08 6.96 79.23 38.52 3.43 35.37 54.08 92.15 77.48 92.89 48.63 50.59 74.26 65.86 13.02 63.67 15.70 75.52 40.56 8.96 27.89 8.44 51.05 33.78 36.51 95.12 24.15 17.26 79.39 58.04 6.12 41.99 1.35 50.59 40.08 28.71 42.90 75.77 29.37 -32.63 47.80 94.16 5.19 32.27 5.02 1.71 0.89 75.80 39.86 42.38 81.36 89.33 28.28 49.12 22.90 37.70 23.76 97.30 98.25 34.72 94.23 87.09 81.38 78.47 57.08 82.66 89.59 77.23 44.91 6.65 27.51 65.58 83.00 77.95 94.13 56.57 38.71 2.59 15.75 28.44 46.08 60.92 60.37 34.31 6.86 73.05 34.10 54.24 79.12 90.61 85.24 3.75 46.52 77.35 89.69 84.77 28.38 11.92 57.12 75.80 61.41 38.67 33.78 68.05 6.85 84.23 83.97 92.68 23.06 73.31 98.18 34.82 21.55 17.31 50.89 19.41 38.08 30.29 81.51 7.51 19.52 6.79 27.01 54.14 25.34 86.22 0.03 68.22 90.34 17.74 32.71 11.82 38.35 44.69 31.46 20.93 62.02 82.10 1.37 -5.17 84.35 7.59 83.52 21.45 85.29 3.23 84.09 13.80 7.54 70.72 73.60 64.29 8.88 64.78 67.51 86.30 49.21 27.12 28.06 25.17 90.50 92.63 83.02 28.62 65.88 21.14 68.62 57.12 95.14 74.93 72.44 35.51 81.04 37.32 35.10 83.36 17.59 3.81 84.12 88.17 53.20 89.01 9.67 37.22 15.87 66.92 59.08 62.60 78.53 82.21 36.19 59.01 87.06 40.76 30.95 4.89 73.88 18.76 60.98 56.54 30.51 52.01 69.70 26.32 15.85 8.83 19.23 49.33 45.36 5.11 84.85 16.08 47.20 65.03 82.80 74.62 99.08 18.58 0.31 99.00 61.66 57.91 77.26 80.64 55.89 84.40 27.15 63.62 25.75 0.94 25.41 58.39 24.22 59.90 45.58 77.60 62.50 84.00 50.83 -18.64 20.02 60.94 14.29 41.56 12.74 89.75 9.24 68.93 0.29 9.89 86.28 17.86 33.71 25.04 88.49 11.38 63.70 55.03 55.40 85.40 48.23 92.74 19.28 29.52 71.10 79.23 45.62 62.23 23.04 59.10 0.77 26.46 19.62 10.95 74.41 18.84 37.46 32.80 32.45 31.02 28.81 38.57 97.92 37.57 35.55 27.32 87.38 99.66 44.57 64.00 81.88 60.04 99.66 3.67 29.79 21.59 12.99 65.65 30.45 43.13 26.52 5.70 48.27 56.79 80.04 18.91 0.60 33.89 14.15 8.38 73.55 6.85 64.31 93.39 43.39 3.32 24.61 53.88 60.48 78.26 41.54 85.30 76.99 67.88 75.26 86.25 80.12 44.45 50.60 5.91 3.16 40.94 1.80 44.32 22.94 67.76 15.35 48.47 30.70 -51.59 36.77 86.68 24.09 92.12 60.11 43.07 30.00 52.10 13.82 97.50 13.95 3.52 84.39 79.19 9.66 53.99 14.91 67.32 30.92 83.03 12.29 14.22 32.00 75.48 43.71 6.79 90.29 70.15 81.67 78.37 22.64 93.98 31.82 85.52 96.78 29.60 48.27 75.57 19.52 48.82 82.03 42.24 49.79 36.43 47.90 16.81 52.62 82.80 15.07 39.92 92.78 31.74 52.08 15.25 36.58 95.89 96.07 14.55 62.56 26.16 82.99 66.68 47.23 94.36 20.52 25.80 14.99 56.63 45.52 9.26 67.85 94.86 65.07 32.02 23.01 91.90 29.06 25.52 26.85 70.77 38.57 48.53 62.28 47.68 89.07 8.94 96.92 56.06 23.64 76.10 84.20 31.89 43.87 38.99 74.07 11.06 90.08 10.66 30.62 -18.08 37.55 67.68 43.99 47.34 2.25 15.16 17.41 8.89 4.96 19.06 74.11 63.77 64.31 77.83 97.98 54.31 69.24 86.74 38.99 27.30 71.42 58.69 59.55 17.37 89.12 53.79 78.10 13.40 80.49 53.38 49.54 39.28 89.51 11.91 46.30 71.42 39.79 25.02 23.80 35.70 62.62 88.16 18.45 99.98 76.38 57.69 90.15 17.34 40.88 91.21 4.05 38.87 59.82 97.38 13.36 97.87 93.65 13.92 33.05 83.10 42.88 60.08 91.08 61.17 96.88 28.77 67.36 13.04 28.95 70.13 76.40 26.79 22.56 2.87 77.98 42.57 19.71 87.66 55.24 98.91 81.87 98.92 97.53 48.46 56.41 60.45 22.89 81.76 77.87 56.26 45.22 98.26 64.49 18.62 82.43 99.60 29.77 44.46 59.71 -48.56 54.80 54.88 33.27 50.45 66.10 7.67 1.64 11.50 29.11 19.65 75.57 22.67 79.99 61.77 14.80 62.43 23.22 81.94 43.46 93.85 40.57 76.02 53.72 5.01 18.46 10.66 6.03 12.93 40.50 47.51 17.95 68.62 63.04 95.83 79.46 32.30 58.27 3.94 90.65 28.29 12.16 13.77 19.22 0.42 31.45 49.63 59.45 4.17 14.83 11.48 62.56 29.73 60.86 66.34 58.22 98.49 96.31 37.12 82.85 44.29 14.64 66.30 55.05 64.94 26.90 96.78 2.43 76.72 31.98 30.43 73.08 90.36 87.87 38.45 2.07 38.43 40.26 21.97 57.28 34.79 28.99 25.87 99.05 26.81 8.79 37.57 26.37 61.62 27.02 50.37 31.97 94.06 46.19 76.37 44.22 38.55 23.87 35.71 6.36 -64.60 95.07 0.45 6.68 7.56 94.43 54.15 57.59 22.61 7.07 53.51 79.83 84.65 42.13 59.86 28.54 17.88 25.11 8.84 66.31 20.50 95.48 6.40 73.57 84.80 86.26 13.47 32.57 48.03 90.43 42.29 83.67 54.11 57.47 55.79 22.22 62.82 97.82 42.58 44.25 23.15 85.39 10.51 77.49 44.51 59.53 64.72 76.78 4.26 7.55 88.91 72.89 75.23 26.39 45.82 45.97 20.12 81.22 35.02 4.18 16.27 26.97 30.25 64.09 97.20 79.33 59.59 57.65 19.53 15.34 3.65 1.71 86.46 16.20 85.09 0.58 4.19 79.19 42.14 96.84 77.53 29.70 85.85 82.47 15.49 59.53 7.21 67.71 97.33 65.22 31.03 43.17 71.10 63.39 24.14 17.61 2.48 88.32 44.92 84.19 -7.87 85.21 44.15 62.67 51.15 90.91 9.27 16.09 8.58 95.63 85.94 43.24 34.74 64.22 83.25 33.91 53.09 45.36 15.49 41.49 87.22 0.57 37.15 52.44 10.20 91.21 75.69 99.52 60.51 2.40 0.26 71.08 77.22 71.27 25.95 75.71 15.26 12.93 44.69 40.92 48.51 76.18 85.16 35.43 59.25 60.02 68.92 83.60 27.54 35.82 29.09 73.92 79.38 10.08 7.56 84.72 39.02 86.10 20.76 66.38 41.33 90.84 27.24 83.94 99.25 41.82 45.33 74.13 93.93 82.74 1.12 15.50 81.61 16.46 20.03 9.06 17.54 56.40 62.29 27.15 52.26 71.32 43.10 60.33 68.64 9.11 41.16 4.28 76.58 17.22 81.54 96.70 29.49 79.50 48.74 51.99 6.33 71.11 10.87 66.13 -8.04 80.68 31.31 31.83 36.99 68.39 22.75 75.39 7.59 69.08 45.66 6.44 76.12 24.15 94.19 39.06 8.73 40.62 24.40 48.56 8.53 60.19 82.70 80.75 22.91 51.20 27.92 15.42 2.51 17.50 18.22 49.99 58.40 68.88 4.24 69.04 89.39 69.35 80.88 42.37 8.38 12.00 53.03 82.16 94.82 13.15 67.60 99.44 73.73 23.95 45.36 6.52 20.68 80.64 93.52 35.93 45.72 14.74 0.27 84.25 80.92 52.22 86.58 30.65 41.60 26.23 1.07 39.56 30.89 3.10 59.87 87.67 4.18 34.97 81.47 95.89 28.40 28.62 32.23 25.61 48.41 60.16 50.18 54.87 2.58 27.67 11.73 42.59 75.41 26.63 99.19 61.81 87.02 12.02 41.11 68.45 23.69 27.12 58.19 24.15 -47.77 31.30 67.78 54.91 73.54 32.07 88.44 59.71 76.07 97.72 8.59 58.77 75.05 8.05 11.27 72.99 93.23 50.02 9.24 42.49 76.46 63.89 58.37 81.72 33.98 95.79 36.64 16.86 49.62 26.70 51.71 32.38 94.67 78.51 74.58 86.54 53.99 21.67 25.75 58.63 34.78 48.75 33.52 0.26 33.63 71.99 61.37 15.27 68.29 82.37 24.76 60.70 57.22 98.08 5.36 4.33 93.69 58.03 77.50 5.79 72.99 41.50 94.11 31.74 16.27 58.23 54.83 87.94 19.90 80.08 88.40 50.72 31.75 87.44 46.75 8.27 86.22 86.92 84.23 46.88 67.01 37.20 67.86 96.96 36.29 63.95 91.60 90.59 84.94 25.86 63.28 96.35 80.56 6.00 28.35 81.23 92.78 9.42 61.10 38.23 -45.05 75.26 40.08 60.67 74.34 9.77 27.05 61.43 12.38 64.42 57.46 57.88 63.59 27.12 92.72 98.04 67.83 21.01 37.03 70.48 41.35 28.67 93.33 21.21 94.77 14.04 24.95 15.50 15.32 3.03 23.29 58.89 81.41 98.70 19.29 84.98 68.02 12.34 38.11 68.90 68.07 21.64 8.27 65.98 69.21 12.75 90.11 89.80 32.64 81.34 55.02 61.12 33.48 72.56 60.00 59.92 2.80 34.78 37.41 70.12 39.94 96.45 49.00 65.82 8.30 45.13 49.97 36.08 72.16 88.77 59.70 23.68 99.87 47.15 63.81 33.03 26.72 12.15 25.87 43.38 77.74 63.87 90.19 99.41 98.82 49.47 60.45 99.63 88.78 10.26 61.83 5.52 90.14 67.13 71.39 39.65 77.26 20.94 94.64 21.18 -16.19 84.97 56.86 64.44 56.47 65.47 13.31 42.17 35.52 18.46 82.32 40.02 78.88 80.10 69.10 38.18 26.88 48.24 45.27 80.55 36.98 48.65 61.40 86.17 32.12 60.86 16.93 65.82 96.57 75.13 46.34 67.59 94.38 55.97 93.40 2.32 4.70 30.29 83.55 52.00 96.59 18.81 47.92 48.51 91.33 82.43 54.35 20.44 75.37 91.83 29.56 57.98 25.11 22.35 36.55 61.71 29.04 35.90 53.79 67.94 9.47 22.48 17.97 32.92 51.69 51.75 62.19 10.85 30.44 70.94 97.17 24.76 89.02 79.37 75.31 59.14 55.12 8.27 33.40 36.36 74.77 2.35 85.19 11.57 5.76 38.38 94.06 34.07 27.35 89.78 32.03 36.94 88.75 69.89 37.79 28.89 76.54 77.97 78.37 46.77 -33.44 57.35 12.51 97.30 78.92 86.56 62.51 98.26 62.25 9.97 85.13 29.64 49.72 11.81 1.44 31.34 90.99 38.46 53.39 22.97 78.62 74.98 59.51 43.92 70.48 17.01 77.63 1.60 92.69 77.82 7.25 70.71 13.86 88.93 11.49 53.95 36.82 52.83 30.01 82.12 92.42 18.34 67.06 71.45 61.94 36.30 5.13 64.27 8.92 45.53 1.18 43.76 94.45 56.01 0.07 31.92 63.32 39.02 99.61 69.47 45.13 25.03 48.37 66.62 58.16 86.27 50.59 8.91 64.70 22.29 33.09 40.76 27.34 47.81 78.77 81.13 16.66 81.28 13.55 47.69 59.49 12.29 87.41 96.53 3.42 68.58 16.95 31.97 65.66 79.42 32.50 84.05 27.14 83.69 86.42 40.30 58.93 46.05 3.70 38.13 -48.54 21.90 51.26 21.55 62.61 83.63 56.65 19.09 53.05 85.33 31.20 48.65 24.02 77.14 64.91 18.67 26.54 9.20 18.14 21.78 0.27 36.01 60.28 28.51 60.21 52.58 83.31 14.99 2.00 42.06 14.52 36.30 32.67 97.62 78.23 35.12 44.30 85.25 61.92 3.92 3.75 4.95 76.73 2.63 63.40 83.72 72.40 74.58 99.25 60.24 95.01 11.55 12.53 48.61 53.80 14.43 56.61 49.94 34.03 72.45 77.99 49.97 50.52 60.33 58.98 71.55 37.94 51.24 68.55 27.42 31.76 48.49 67.47 92.21 59.74 90.38 62.06 33.88 54.48 93.51 40.04 90.08 8.48 79.79 99.49 95.18 41.33 4.71 25.55 3.05 74.52 80.07 49.62 94.30 17.26 81.07 12.65 4.90 94.48 73.84 -29.35 75.36 44.88 61.27 58.34 12.76 41.69 42.27 82.72 24.58 99.52 57.60 20.33 1.18 41.74 4.09 4.40 91.42 69.62 59.88 49.88 81.39 8.93 87.76 15.93 2.58 97.66 89.39 59.36 74.72 77.55 5.03 20.99 7.06 38.52 25.02 4.68 20.73 98.38 15.13 87.26 25.72 20.02 99.49 81.58 50.03 58.48 13.43 94.49 89.80 41.96 14.04 22.16 31.50 76.61 37.47 38.64 3.85 85.35 78.80 97.82 27.47 33.84 36.28 97.95 8.22 97.56 45.21 81.10 2.64 68.26 42.22 0.51 37.44 66.63 64.18 3.99 0.66 93.39 29.35 26.04 25.80 38.28 14.92 93.30 96.67 62.27 23.11 14.92 44.59 32.92 64.43 85.03 74.98 45.98 6.85 31.73 4.46 3.11 96.55 -38.85 65.08 44.38 64.91 89.69 84.07 92.82 66.57 0.98 2.53 36.36 99.62 80.68 43.92 78.33 27.80 59.39 17.17 14.38 48.14 38.94 8.21 79.15 58.66 8.50 5.20 49.77 20.06 93.14 1.83 2.07 14.56 95.31 50.27 33.73 23.90 71.24 6.77 60.20 57.70 7.95 11.52 95.42 60.89 42.24 67.87 12.25 85.74 11.99 13.78 72.96 93.54 99.48 83.08 28.75 50.13 9.97 40.53 48.88 53.69 13.15 21.22 97.04 3.69 72.89 41.53 57.95 22.29 57.10 26.18 53.15 41.21 40.71 65.52 57.12 86.85 64.83 28.38 68.98 32.58 55.85 61.81 71.12 53.58 95.74 4.54 28.74 13.94 56.47 52.62 85.11 72.12 81.55 74.11 67.81 97.36 77.94 11.64 89.40 95.27 -30.33 3.64 3.56 14.06 30.00 43.61 29.86 4.43 5.65 27.25 61.60 93.44 84.29 80.37 11.32 71.44 82.80 95.94 68.64 54.93 41.14 65.96 49.30 83.43 12.69 13.54 66.02 41.65 55.66 1.57 53.15 68.07 68.62 70.51 38.83 89.73 12.59 54.67 99.89 45.00 53.57 96.25 77.86 20.17 8.77 12.15 57.13 7.14 25.41 14.18 79.80 13.45 51.69 8.47 76.78 22.71 72.36 35.46 12.31 20.12 35.27 85.08 53.54 70.16 68.26 38.68 60.72 82.18 73.33 11.77 75.81 80.82 84.48 53.77 66.55 69.97 82.06 33.83 42.08 54.29 85.78 82.24 62.06 61.13 76.30 76.92 31.92 76.49 28.99 68.49 3.64 33.36 17.06 33.82 20.86 80.10 85.56 40.24 54.68 46.64 -87.05 90.82 19.72 27.07 68.24 17.45 5.40 83.73 87.21 97.56 20.72 88.65 11.14 88.50 38.40 97.98 80.83 50.09 41.56 53.51 12.73 61.08 99.48 17.02 43.23 88.56 28.43 51.35 55.75 56.55 23.55 94.80 4.29 68.06 20.12 23.37 4.71 85.36 3.64 94.07 92.06 29.52 25.45 81.39 99.07 45.02 31.25 4.01 18.76 62.14 9.87 1.64 93.51 43.49 42.03 48.95 36.77 16.92 80.30 38.11 32.82 30.86 63.20 40.52 77.11 22.87 77.21 34.24 41.77 9.66 87.62 37.64 24.26 43.50 98.75 25.59 30.23 59.79 49.46 27.91 98.02 88.00 4.03 17.53 45.03 34.25 10.01 32.88 44.07 93.71 33.26 54.13 74.59 91.54 76.50 98.78 83.90 45.28 22.90 21.64 -38.13 45.84 44.79 8.17 96.78 52.91 71.11 59.34 17.20 20.92 6.48 4.45 30.34 60.13 20.09 65.44 64.02 43.24 46.83 52.84 22.60 95.92 54.61 57.97 58.19 53.75 97.91 83.93 39.52 80.43 8.07 32.37 95.06 33.50 68.11 18.27 20.77 87.50 92.75 2.38 9.16 65.65 18.36 68.03 16.93 30.11 34.79 53.86 64.14 17.81 80.42 94.35 6.00 42.05 32.98 68.42 76.40 31.50 34.39 73.29 70.18 58.96 85.62 59.86 95.98 69.14 40.66 47.32 18.97 47.09 61.88 86.99 47.12 3.56 44.87 71.89 31.85 53.57 71.06 59.65 23.70 55.17 44.46 84.37 49.14 54.19 63.96 4.46 14.22 80.87 35.95 0.58 20.29 28.22 19.67 68.15 20.28 79.06 79.61 38.04 -82.03 99.63 80.93 62.42 31.07 3.35 85.62 28.76 54.90 26.56 20.46 0.90 0.10 34.92 2.54 11.65 75.30 22.52 69.08 86.93 78.81 2.85 10.96 37.52 39.15 3.46 19.61 35.67 13.78 15.22 70.97 32.59 19.42 92.56 9.34 92.16 81.28 67.01 72.73 78.73 67.20 82.77 22.80 69.71 88.08 78.32 27.27 62.22 73.38 58.63 27.08 17.45 64.33 89.57 22.76 16.21 42.64 78.72 98.89 72.14 99.45 47.11 94.99 7.51 47.67 55.95 38.66 44.50 55.90 10.90 9.61 33.89 67.44 74.68 3.38 23.84 65.22 85.77 20.87 52.10 21.47 28.31 47.21 37.86 53.41 22.59 78.21 87.15 98.96 78.78 40.36 97.83 64.20 47.19 56.35 1.54 91.66 93.13 14.37 74.21 -27.06 93.18 66.95 56.50 29.04 94.49 50.61 73.75 2.88 91.17 91.77 3.89 89.02 96.87 98.91 44.44 10.54 69.17 66.14 36.93 69.63 24.80 43.74 43.92 19.84 43.00 73.42 78.19 18.46 10.42 48.65 47.47 70.43 74.42 58.81 99.69 5.02 55.12 63.31 23.45 17.94 12.24 99.54 29.69 57.62 37.38 29.12 19.46 34.45 93.31 64.54 72.67 93.38 92.97 85.12 0.86 62.73 91.66 16.90 73.80 53.13 3.44 67.38 21.74 1.24 18.37 11.22 49.95 76.28 95.26 94.29 54.40 31.44 2.30 59.66 92.57 94.60 57.86 0.94 85.51 68.22 74.98 91.52 60.19 84.10 0.51 92.75 79.26 49.84 60.24 20.01 92.34 14.72 2.59 40.19 19.88 59.26 96.31 28.26 38.36 -45.23 17.67 39.15 77.66 82.30 7.85 91.96 8.07 52.47 63.14 38.89 88.89 85.56 64.20 20.22 71.83 79.33 92.77 74.39 73.24 58.75 9.88 7.02 99.22 20.27 49.83 82.95 76.52 41.85 67.46 82.14 86.94 74.85 20.10 67.89 49.17 9.86 81.53 49.31 87.65 11.02 93.75 10.21 51.88 4.55 46.67 93.88 4.92 28.51 3.74 55.14 68.50 65.75 79.90 10.82 8.92 99.91 74.53 47.77 84.40 35.05 42.21 45.12 35.36 18.27 63.18 12.47 37.44 27.23 5.38 5.44 21.99 73.86 73.88 86.75 75.38 76.16 81.47 1.21 30.99 7.96 16.44 16.65 55.36 2.69 15.76 89.88 10.36 55.10 82.34 0.01 88.23 66.44 86.89 36.88 58.18 36.17 70.73 59.66 73.19 -68.04 86.96 87.97 68.67 52.48 48.50 26.46 22.75 15.39 76.18 50.90 67.91 51.33 4.09 94.09 89.03 75.49 56.69 71.75 43.61 55.30 39.33 84.89 2.28 5.88 75.15 11.58 43.54 79.81 14.59 98.91 42.61 62.29 52.39 76.14 17.19 56.16 41.02 81.77 88.53 94.16 68.61 94.53 26.89 10.64 75.68 64.39 12.26 80.63 53.33 86.10 97.11 93.86 15.84 54.69 53.73 45.57 23.97 39.65 64.53 94.82 25.97 6.69 99.26 78.81 58.87 24.70 68.13 17.28 12.60 89.48 52.60 39.01 98.22 96.91 70.90 79.49 94.72 70.80 65.72 27.47 29.79 33.76 89.14 43.57 12.41 50.01 79.88 1.53 33.85 96.11 35.11 25.33 69.83 95.16 53.70 86.74 96.51 5.59 25.09 -17.52 35.13 32.63 68.21 78.19 20.86 91.48 18.48 14.85 72.37 66.50 77.20 37.96 11.54 72.87 99.33 81.60 98.73 1.56 46.36 16.83 99.85 15.74 50.81 69.82 32.28 68.60 61.43 50.09 89.79 27.89 51.49 27.26 29.23 41.66 68.52 58.19 75.04 93.58 74.97 25.68 67.10 53.04 49.57 37.51 62.57 13.82 76.95 86.31 35.17 70.99 8.95 12.75 63.78 9.53 86.39 18.85 66.22 25.78 11.57 56.17 11.20 71.25 2.78 11.78 15.04 28.55 30.09 73.11 63.02 49.82 83.13 63.95 32.22 63.67 99.09 49.76 18.85 64.10 68.85 59.41 36.45 9.23 69.76 15.56 49.46 43.68 59.45 46.52 41.19 10.02 81.76 40.11 54.42 99.92 22.59 41.00 17.32 86.49 68.20 -84.37 98.36 89.34 46.46 65.30 3.18 22.85 83.45 77.61 36.12 96.39 26.49 75.29 18.36 36.74 92.36 0.47 38.09 41.20 5.99 51.08 61.79 47.30 79.71 32.03 59.22 76.34 85.91 72.65 78.90 97.24 90.91 10.20 72.08 82.93 64.60 47.69 5.32 20.01 74.04 45.65 81.45 63.88 17.05 91.71 43.20 49.48 80.01 81.41 41.97 95.75 16.04 88.74 91.32 74.40 81.73 88.13 30.48 98.16 46.53 87.99 7.89 60.79 54.99 56.66 36.31 61.11 56.34 53.48 46.84 54.76 79.54 19.53 79.31 73.08 98.75 30.07 87.36 67.00 19.99 98.14 36.23 98.48 89.93 27.26 49.30 5.68 67.91 22.35 70.72 27.00 79.32 50.05 31.74 85.60 28.13 6.76 20.27 58.52 86.44 -61.16 34.59 16.20 66.67 52.91 42.21 61.32 21.74 35.02 59.97 22.63 68.76 72.72 40.06 20.87 29.11 91.44 33.93 69.64 15.28 52.95 73.21 26.56 1.98 75.06 21.91 75.38 41.26 34.38 80.51 18.64 38.21 56.37 68.40 16.86 91.84 6.01 73.86 65.82 91.59 28.45 77.37 50.78 59.24 84.51 38.95 16.89 50.10 80.56 24.90 53.62 2.36 78.46 68.53 64.15 12.66 72.65 61.50 62.09 21.16 18.52 54.87 65.89 76.71 20.25 36.81 57.23 72.31 20.88 75.02 74.97 25.32 12.90 3.55 80.41 80.39 90.91 91.67 74.92 92.58 91.19 6.50 73.19 91.25 83.59 10.42 18.45 10.48 62.93 31.98 21.44 40.32 36.45 52.40 3.07 36.08 99.75 13.65 1.36 45.82 -18.23 96.61 87.74 30.56 47.59 99.17 93.41 73.81 94.57 68.06 95.55 51.62 44.40 32.97 17.24 11.06 84.40 85.75 96.26 15.34 8.64 15.30 1.74 71.80 30.83 93.59 3.51 57.07 66.29 5.24 51.40 71.24 21.45 54.33 18.35 93.51 31.62 32.84 87.10 36.64 4.78 53.74 30.71 25.16 9.39 46.78 64.89 86.54 63.71 58.74 82.37 6.90 34.97 37.01 19.72 23.15 95.88 59.06 95.25 58.52 66.97 19.09 35.80 62.63 67.85 60.48 82.81 30.38 39.42 70.03 79.23 94.47 76.88 75.65 40.74 81.72 66.14 19.51 17.52 33.52 94.35 71.38 38.87 62.23 6.39 99.50 73.77 16.89 46.05 61.25 76.09 52.80 81.68 70.51 22.71 38.62 79.93 66.43 75.99 75.18 -43.27 64.42 50.77 55.47 39.85 25.22 68.21 93.50 3.86 73.05 39.50 39.50 72.55 15.86 76.69 61.55 12.09 61.42 72.77 53.89 21.03 24.71 90.45 2.96 77.93 59.89 95.54 99.91 78.02 86.00 35.84 70.20 48.62 25.53 52.33 60.60 40.10 85.24 47.62 5.35 51.31 39.54 50.25 83.22 39.50 10.28 39.69 23.95 48.82 72.78 21.93 8.82 21.08 74.29 65.10 40.67 99.77 19.68 41.30 81.75 32.28 79.86 65.74 45.78 64.60 27.17 69.24 67.66 14.89 68.15 10.04 74.02 21.52 18.05 88.79 54.70 96.96 32.75 78.50 54.10 40.48 11.36 92.86 92.66 49.83 68.88 20.66 26.42 56.05 31.54 89.62 67.05 56.94 12.90 38.70 5.99 85.08 26.79 94.31 67.37 -72.44 65.94 54.60 74.56 59.43 29.87 54.22 97.10 4.45 68.78 10.72 15.45 61.69 97.64 89.01 10.49 87.84 20.76 52.54 15.59 13.32 48.89 66.95 94.24 4.02 18.45 32.60 59.83 88.89 35.26 35.60 36.78 25.26 50.17 92.16 23.54 99.93 23.62 34.98 62.19 53.46 22.69 92.92 90.32 32.19 14.52 64.26 46.17 37.35 41.77 73.65 9.43 34.36 47.97 44.26 58.70 28.06 24.29 34.36 33.85 18.42 3.84 77.39 63.78 64.50 14.25 60.46 9.42 90.71 50.83 5.36 44.77 56.86 61.64 47.59 65.05 96.74 89.01 21.69 40.34 60.10 79.13 12.19 92.90 80.68 89.54 11.19 89.84 1.27 17.33 83.40 60.36 18.94 49.12 64.44 74.62 58.33 16.81 35.87 58.97 -17.35 74.79 39.36 50.99 98.16 7.48 86.45 15.79 51.59 13.39 93.99 95.94 33.36 44.86 94.77 62.49 63.26 32.65 22.01 1.70 13.76 45.35 36.49 47.61 38.65 59.52 81.27 38.46 71.33 95.27 76.38 91.97 5.39 35.30 86.37 24.88 24.72 43.65 17.48 41.88 65.33 84.23 86.81 67.25 34.59 24.55 77.98 41.39 89.78 53.63 24.12 58.73 93.24 5.47 32.55 87.63 3.76 93.05 68.25 51.43 1.84 8.70 71.96 38.06 65.17 79.31 86.47 38.14 21.41 95.49 26.63 53.12 77.37 64.56 14.87 73.54 94.40 92.40 54.01 62.56 82.09 8.76 57.92 33.87 0.97 39.15 39.66 90.35 43.37 90.93 5.86 30.16 38.75 17.54 27.89 18.69 52.79 38.60 36.25 35.94 -45.50 79.31 71.15 72.44 23.69 7.58 99.25 56.85 26.17 47.22 60.29 61.85 37.09 98.56 48.85 55.61 10.27 4.85 18.65 84.48 20.54 3.58 99.38 12.68 91.69 23.63 21.29 97.44 85.10 8.99 72.69 57.02 4.58 73.33 98.03 95.55 58.56 59.10 43.62 37.40 64.00 41.34 39.72 73.30 19.10 45.46 74.75 50.57 79.15 81.48 39.06 96.74 63.20 77.31 67.17 13.53 56.75 89.69 73.67 33.29 11.38 93.09 75.59 1.79 89.65 64.33 92.73 84.58 71.81 95.73 54.54 7.09 95.94 19.17 51.82 26.50 86.99 99.56 33.63 43.55 65.32 47.72 13.08 36.95 2.78 65.68 29.78 23.35 22.22 37.14 82.53 5.16 63.25 43.16 19.99 50.92 44.04 87.42 33.46 8.93 -97.72 76.80 66.28 24.47 7.01 60.75 6.62 87.61 25.61 47.79 93.89 95.51 52.69 20.39 95.69 34.92 48.34 48.57 28.72 34.93 89.63 52.24 11.48 63.27 43.17 80.87 50.39 91.42 51.89 42.04 35.35 68.99 17.13 1.80 11.01 98.68 57.85 18.25 42.44 95.36 32.11 35.28 71.90 46.16 69.89 35.78 8.62 46.47 39.51 82.45 47.66 63.76 18.10 23.20 13.19 91.71 28.53 74.96 13.19 98.26 35.57 89.14 29.19 62.11 61.99 0.85 47.59 94.95 77.22 86.58 6.96 3.61 48.93 18.53 98.56 0.12 91.30 21.45 89.57 56.74 86.87 91.28 91.92 6.27 9.99 47.03 15.54 40.35 23.96 89.75 84.21 40.43 31.87 40.31 48.08 64.48 38.52 86.32 76.07 10.90 -50.39 82.69 67.90 59.97 92.78 55.32 80.93 27.17 48.03 52.97 74.08 70.24 45.15 51.89 69.51 66.53 35.91 44.03 30.51 3.61 34.28 4.48 94.13 75.58 28.79 9.09 39.26 44.74 90.54 59.16 5.20 3.41 17.25 3.82 83.60 69.19 53.43 41.71 93.15 63.77 96.60 20.45 72.24 80.67 96.83 90.91 53.55 53.88 0.51 74.17 72.71 31.52 15.21 7.30 40.59 67.44 44.16 10.76 38.64 54.71 51.48 59.09 3.97 7.58 88.05 92.89 93.13 52.18 87.26 77.28 75.28 57.11 23.04 68.87 75.15 93.17 59.07 80.66 9.03 76.21 30.69 32.30 46.21 79.59 99.31 44.45 62.95 92.18 25.88 50.93 79.35 89.38 88.90 83.37 32.53 11.63 89.41 49.68 95.07 3.30 -39.70 29.20 37.41 88.99 13.37 71.25 76.63 46.43 44.93 55.71 49.17 42.51 97.27 66.04 35.60 94.40 30.52 37.27 93.12 37.13 55.66 15.19 73.93 40.50 48.86 93.45 21.58 48.33 10.46 17.66 7.72 10.94 51.98 89.95 70.26 93.87 76.36 46.56 61.45 72.00 91.03 56.70 67.44 45.84 0.23 36.22 96.81 68.72 92.21 64.23 66.98 26.71 58.34 74.17 33.71 19.39 14.47 63.18 46.43 69.22 59.97 48.20 72.50 61.19 66.58 88.31 10.03 70.87 53.45 60.94 65.46 34.48 83.18 58.46 20.24 54.80 4.58 98.02 83.27 73.10 46.50 15.32 72.22 40.22 56.58 36.96 70.13 3.97 79.22 82.36 25.31 16.02 69.19 33.91 18.73 69.02 55.98 22.30 89.63 97.49 -53.31 91.01 80.63 62.69 80.36 31.87 25.47 49.02 28.59 15.41 16.60 0.26 43.41 36.39 31.72 38.73 23.21 30.88 19.20 63.21 55.91 6.42 53.04 25.39 61.00 37.73 68.14 50.15 63.14 54.58 43.50 23.60 43.88 98.99 56.96 31.85 85.96 82.39 4.82 76.00 16.31 64.19 28.74 27.45 5.51 94.76 6.64 35.88 17.35 25.33 74.44 4.65 82.86 32.58 6.42 55.94 99.61 5.81 34.06 26.53 16.15 45.04 60.25 45.16 0.30 28.06 59.98 27.76 64.57 18.34 75.94 28.80 7.21 74.71 34.40 82.48 29.13 77.51 76.46 13.64 94.26 93.21 0.38 37.53 23.65 58.11 61.63 15.02 65.61 68.14 99.90 97.46 50.47 49.58 26.52 5.97 10.75 94.54 85.00 80.92 -18.03 24.16 57.73 25.76 91.14 9.38 45.57 86.17 53.17 61.72 87.65 51.82 70.44 6.84 9.75 0.97 15.64 76.23 30.25 48.45 33.99 17.17 32.02 86.92 80.97 88.33 35.39 33.91 50.43 28.97 14.80 8.05 26.39 5.87 73.82 14.92 92.07 75.25 20.22 20.47 7.63 55.41 57.39 74.95 29.19 33.93 42.14 43.51 50.80 29.85 21.63 52.14 82.89 41.07 10.81 76.66 88.35 19.40 23.19 8.58 53.19 14.43 43.32 63.11 33.86 98.53 89.49 63.81 54.11 54.50 91.24 59.24 86.28 85.39 98.30 9.25 40.25 4.82 1.61 89.77 69.76 71.94 78.36 22.31 75.14 29.42 96.34 90.19 77.59 53.08 51.62 17.13 16.69 97.91 52.89 34.96 99.67 1.13 99.10 41.79 -89.98 23.36 18.05 62.71 20.06 27.02 11.97 19.65 84.29 57.72 15.86 38.88 32.82 93.15 80.38 98.77 51.81 10.62 91.78 84.93 71.43 48.09 96.17 95.99 54.48 57.48 28.49 50.47 15.10 55.35 60.60 76.09 11.42 41.33 78.85 92.71 39.72 7.85 5.95 76.45 46.27 41.24 68.11 5.35 99.10 61.29 58.60 87.57 70.76 38.37 49.27 99.42 88.70 16.62 35.76 7.48 58.64 76.02 45.47 75.28 9.36 69.83 90.99 48.31 92.14 27.67 95.83 69.57 87.60 68.66 20.36 10.52 42.50 65.67 43.28 54.29 34.63 28.49 31.15 93.77 30.64 17.25 20.19 49.03 61.59 89.29 94.20 97.04 15.23 74.97 0.14 11.48 51.53 18.27 99.76 14.34 82.22 4.57 47.05 82.71 -47.64 98.80 65.62 36.39 23.20 4.77 92.96 90.58 6.54 16.21 73.81 91.40 51.08 86.24 76.50 88.29 53.47 7.11 61.49 79.68 9.54 48.96 82.30 25.51 63.05 94.07 89.77 21.82 90.01 3.25 87.96 76.82 95.33 76.07 14.54 95.97 5.54 38.36 74.75 28.00 46.89 43.29 21.85 86.41 50.02 37.21 30.27 61.01 60.63 94.24 15.29 94.57 21.56 81.46 84.15 73.58 93.13 42.28 12.39 89.25 29.63 95.41 1.51 60.06 5.70 33.15 6.12 27.97 11.17 40.16 29.31 15.36 93.56 33.86 31.90 38.62 73.51 12.24 84.28 25.22 7.81 41.69 83.08 32.58 83.53 93.86 94.33 1.30 44.63 16.97 58.58 6.12 97.02 92.09 65.64 94.79 90.34 71.57 43.15 55.34 -69.17 45.18 13.68 8.90 80.29 36.05 90.69 13.52 2.75 42.19 36.48 67.41 2.09 98.08 43.88 19.61 88.08 85.90 74.18 37.07 26.06 88.58 25.74 70.89 64.31 22.77 54.15 2.88 98.51 53.40 9.99 18.40 67.33 96.35 23.60 39.00 57.47 86.99 45.26 45.24 98.78 5.44 35.48 30.70 19.93 31.91 91.72 94.33 47.00 69.40 87.71 93.71 39.90 34.62 30.69 53.58 57.05 18.02 76.88 86.26 82.78 19.48 13.90 77.52 13.45 6.78 85.46 40.19 69.91 55.42 79.54 74.74 21.17 86.82 98.73 16.04 25.23 99.30 85.08 94.79 99.53 76.48 52.60 48.80 36.39 31.70 3.77 5.27 43.52 97.41 89.53 57.89 20.74 33.57 7.89 52.19 95.65 17.52 81.01 30.91 -22.21 56.12 90.39 76.45 12.86 31.13 59.09 53.45 3.25 67.25 81.56 73.02 62.06 67.04 20.37 10.54 58.88 83.42 19.61 20.30 16.35 7.27 70.83 94.73 74.31 20.07 57.09 80.92 2.20 26.74 22.35 12.60 71.75 56.33 50.17 67.23 32.48 73.71 66.97 52.16 31.39 55.07 25.00 14.28 31.75 54.03 10.22 46.11 52.61 59.56 21.82 10.25 21.39 54.19 0.33 11.61 91.62 97.42 7.74 20.73 90.49 95.88 93.02 11.90 37.28 75.03 17.88 67.49 93.24 22.60 40.84 17.77 37.98 68.67 32.30 89.85 28.60 20.09 45.71 3.20 68.87 95.93 43.38 97.81 29.89 54.17 40.55 72.08 68.55 71.85 90.77 81.75 94.97 54.04 70.29 8.46 47.64 20.58 90.13 60.13 -51.31 35.63 92.65 72.53 38.28 0.81 48.47 0.90 89.70 78.49 26.18 90.07 17.67 39.54 56.50 39.64 22.98 10.83 41.48 21.39 4.83 44.01 47.41 29.18 48.12 15.48 56.35 38.22 1.37 96.68 79.21 67.04 25.83 34.33 80.88 10.51 39.58 20.95 58.23 10.54 33.70 50.31 44.15 77.13 4.26 4.17 70.85 38.91 0.39 46.14 29.12 89.58 54.17 9.53 25.81 25.75 89.54 60.72 10.74 87.39 54.73 9.69 98.06 16.77 28.69 38.32 95.61 90.62 23.18 66.82 64.66 77.03 66.75 6.70 93.93 17.82 74.21 97.46 92.24 43.33 85.51 52.22 20.55 34.74 24.10 36.74 14.49 92.81 62.93 91.07 31.96 43.67 85.52 65.37 86.13 93.02 68.24 73.85 69.15 26.29 -59.77 22.93 49.60 33.16 22.92 94.25 32.94 56.25 44.65 49.07 33.21 53.50 7.37 28.89 74.68 71.82 26.03 20.55 69.28 94.70 42.91 82.60 88.07 42.29 89.49 17.83 58.38 36.14 45.25 11.33 81.01 84.86 25.95 58.73 96.15 24.71 38.41 5.99 83.19 46.90 81.55 53.35 65.12 87.92 21.40 28.77 73.25 74.26 53.26 71.98 3.99 24.16 45.23 1.99 43.79 49.84 99.22 83.34 79.66 24.97 62.59 43.11 42.11 18.21 75.12 12.92 42.94 88.47 44.50 62.77 21.88 28.17 70.27 85.49 97.25 85.80 68.71 68.27 73.03 89.60 89.24 66.93 78.94 56.73 76.77 52.41 25.71 23.47 29.67 30.74 43.92 33.88 54.84 16.45 10.60 71.64 76.42 27.84 48.79 47.89 -77.77 92.70 37.08 98.70 83.72 78.60 72.78 18.62 7.16 46.30 96.46 26.85 86.20 28.48 24.36 98.89 67.12 38.44 28.95 68.45 74.44 54.34 50.91 81.44 89.89 77.74 81.79 12.71 85.38 90.11 13.15 58.88 66.02 27.78 5.96 16.49 94.53 62.10 44.79 85.93 76.50 42.94 53.83 54.91 81.82 26.06 50.44 78.09 3.60 72.32 14.03 92.44 69.84 77.85 89.30 95.71 31.97 0.38 90.05 81.53 53.90 33.35 0.37 84.69 47.94 63.88 54.09 88.37 15.71 50.07 5.17 15.76 5.76 19.63 55.84 45.04 36.42 46.99 38.95 92.78 4.45 5.70 49.17 35.03 86.84 42.34 46.04 73.00 45.20 84.57 59.45 79.26 9.15 32.21 70.00 0.59 55.68 56.22 91.52 34.06 -63.97 45.99 43.26 28.36 82.55 81.50 3.71 62.77 58.90 43.96 37.00 0.23 88.53 80.58 99.55 41.96 2.36 15.60 7.44 82.00 71.67 42.11 46.81 62.90 23.75 4.50 6.08 3.64 3.27 58.35 84.21 78.01 14.00 90.06 6.18 18.10 45.62 64.33 99.37 5.53 53.46 66.61 57.17 94.93 42.91 84.64 73.94 58.84 38.10 57.47 96.15 14.13 87.98 51.78 13.56 72.40 13.03 17.08 71.42 93.08 43.30 36.24 73.94 93.25 84.31 32.15 21.74 18.26 82.62 26.06 41.19 12.99 44.87 75.21 41.67 51.20 43.37 98.03 72.24 30.71 45.04 21.28 77.09 92.78 85.67 4.16 20.15 19.56 69.44 94.17 52.60 73.27 95.61 33.72 46.10 50.63 96.42 18.32 13.36 80.54 -67.70 57.04 96.89 13.37 18.75 45.08 54.36 7.31 17.05 58.63 37.72 34.38 28.78 1.45 35.48 38.77 94.47 10.14 10.10 52.41 99.48 71.31 6.13 36.77 81.12 53.36 82.98 38.16 36.68 1.81 64.89 6.53 71.53 47.35 27.70 75.67 21.56 42.39 51.73 35.67 41.67 81.69 39.30 6.26 92.44 88.98 28.98 26.99 62.11 87.47 64.78 94.31 10.57 67.28 27.24 61.24 86.59 99.03 59.65 66.38 60.06 42.07 86.48 7.84 94.19 13.44 82.20 76.28 84.13 59.95 69.39 99.64 29.69 83.85 7.45 46.93 8.20 39.04 46.03 1.62 8.53 56.93 97.01 69.63 98.57 96.48 60.99 71.62 23.90 68.23 19.12 21.22 74.79 2.60 84.19 36.30 76.82 50.42 6.76 66.60 -31.91 85.48 46.78 87.58 32.70 55.04 49.35 76.95 83.45 60.59 82.57 37.56 74.45 92.13 40.89 14.60 9.41 21.56 37.28 35.55 23.08 37.42 49.07 47.45 85.27 48.32 51.51 81.72 24.13 53.77 80.26 39.45 80.92 7.05 74.78 48.47 91.81 86.68 93.32 16.69 78.52 77.58 95.27 63.55 7.68 39.19 80.53 12.20 90.55 94.26 2.25 62.45 64.63 69.43 78.44 86.92 42.64 30.82 88.53 84.84 13.46 85.09 40.50 37.99 18.20 58.27 87.74 32.13 67.98 22.29 89.87 81.55 57.56 58.40 68.61 26.20 46.11 36.41 56.71 98.66 4.69 0.27 62.69 98.38 65.37 87.72 89.99 3.89 30.29 68.25 79.02 59.69 30.81 50.19 23.75 56.57 61.85 58.82 98.94 63.40 -74.13 2.36 43.18 48.68 71.89 67.96 83.60 80.76 12.22 10.25 45.38 50.05 62.52 66.25 64.73 98.12 30.00 86.74 11.23 30.37 97.68 77.68 24.71 27.38 79.84 87.70 89.28 98.01 66.59 14.12 25.48 96.58 38.74 82.86 26.13 17.23 71.75 93.79 50.56 34.19 41.70 59.36 87.61 33.73 38.87 61.35 79.08 36.27 74.51 78.27 64.02 45.00 16.43 78.75 48.95 9.01 71.01 44.25 65.47 44.65 3.54 76.59 78.44 11.20 93.98 69.47 83.55 26.98 4.12 52.84 26.36 12.03 74.33 89.55 32.54 51.80 3.13 68.57 37.86 80.47 55.01 91.66 16.13 25.29 87.98 67.49 16.20 47.88 4.35 14.62 62.50 35.60 97.32 20.31 65.80 21.20 14.85 89.83 14.20 79.80 -43.78 11.61 16.25 63.57 50.46 64.36 76.38 22.41 70.39 53.27 33.37 74.77 54.97 62.32 98.28 50.19 15.30 37.79 10.25 13.70 95.53 73.94 80.64 71.78 68.96 75.35 24.39 18.58 38.31 88.94 92.78 46.73 73.82 16.74 45.55 15.38 15.05 30.51 13.90 15.34 50.52 43.24 51.55 46.77 76.27 95.22 5.89 4.31 35.15 80.43 94.98 23.91 41.49 66.07 10.07 30.97 92.01 69.18 25.20 93.04 73.88 68.30 8.05 1.15 40.98 32.49 99.42 85.44 15.13 98.34 44.19 37.77 70.04 60.30 23.51 9.53 10.22 80.30 2.94 40.10 77.97 74.23 14.61 5.99 80.80 3.68 14.18 39.83 33.78 31.38 18.78 91.42 61.24 82.10 14.85 61.91 27.29 85.15 52.90 46.20 -42.78 33.90 79.24 38.47 74.91 8.11 5.56 45.79 34.07 69.17 84.12 67.48 57.28 13.89 61.08 36.09 71.22 62.73 9.21 27.43 68.52 91.00 70.85 61.21 36.96 12.67 78.13 98.30 43.24 48.77 26.11 9.88 70.98 66.42 54.82 2.19 1.87 8.92 82.23 29.11 51.54 98.93 85.03 38.43 6.21 14.43 80.53 89.40 44.17 63.12 55.06 81.62 25.86 22.23 93.84 91.72 40.40 15.27 5.46 44.76 59.21 73.00 63.48 22.01 23.03 97.00 76.56 57.51 23.07 39.65 65.99 4.17 49.75 73.70 77.38 84.18 31.08 57.57 74.69 33.52 94.29 98.70 52.62 48.18 74.79 86.34 30.17 95.57 0.56 85.27 93.29 70.22 69.09 30.32 72.31 41.48 78.19 42.55 37.14 36.88 -2.40 20.15 46.78 76.54 62.88 66.90 88.61 93.35 89.61 90.01 16.64 13.72 61.00 3.37 67.25 13.89 41.79 54.94 4.96 7.80 26.25 60.99 85.10 50.58 0.49 36.75 88.22 49.28 51.73 16.14 89.81 82.77 19.24 48.43 89.02 18.49 6.83 38.65 34.96 17.87 29.86 21.16 68.42 20.60 8.32 73.20 80.21 48.48 70.00 49.91 78.35 64.85 41.94 15.30 20.32 66.93 11.36 92.78 82.57 98.94 20.68 66.78 2.00 76.58 87.87 49.12 36.05 95.09 69.74 96.07 82.85 32.76 72.39 41.81 84.16 73.15 7.95 74.52 39.73 89.49 81.51 33.65 36.86 13.45 60.26 76.22 37.97 86.61 75.30 22.74 38.89 38.27 57.43 18.58 53.48 3.61 1.17 2.76 65.39 63.01 -28.27 44.31 8.78 44.60 66.21 70.81 98.41 14.73 35.71 27.38 3.87 11.09 58.70 36.41 64.13 23.13 79.25 25.65 81.69 68.06 14.51 83.54 72.50 16.20 62.19 61.63 95.35 82.63 6.16 10.82 36.08 51.91 96.15 59.32 21.82 88.02 21.94 80.78 70.47 63.67 56.10 87.15 36.14 7.05 22.60 93.94 68.93 95.80 73.03 15.53 48.60 83.79 16.42 19.35 20.58 1.84 83.20 66.90 29.65 6.55 82.43 85.93 72.47 89.83 33.49 97.23 11.82 7.68 16.93 8.91 7.91 15.17 7.48 32.48 55.75 64.05 89.42 10.59 2.62 63.62 82.67 79.37 41.77 5.16 64.31 83.52 3.83 0.98 77.32 97.36 36.60 11.95 41.20 57.12 16.38 77.96 97.74 54.01 39.60 95.42 -62.91 74.45 64.13 56.18 40.38 42.19 37.33 97.91 99.15 97.86 22.08 30.83 17.38 79.22 88.60 64.80 23.22 52.36 25.41 62.28 82.34 14.71 90.80 69.95 75.19 64.88 45.61 33.31 3.62 42.70 41.56 35.85 93.71 46.92 79.59 3.38 90.53 47.29 13.21 52.77 1.69 78.53 87.68 41.38 19.63 0.31 50.71 31.91 90.86 11.18 19.04 97.68 93.26 67.24 84.40 74.15 72.44 0.82 43.89 64.55 82.97 57.61 80.37 12.77 26.84 29.25 30.88 34.10 61.43 23.79 79.51 55.35 48.13 49.21 79.62 14.22 31.66 52.75 31.99 51.89 13.30 81.07 31.75 33.49 21.62 69.39 11.46 70.46 90.29 31.28 24.84 86.12 49.07 62.85 55.84 75.41 66.21 4.63 76.51 62.63 -53.68 98.56 73.82 94.33 98.41 26.00 10.43 70.84 22.62 2.77 42.81 17.83 62.81 6.64 27.01 67.37 38.26 30.87 3.64 49.98 88.92 14.37 14.74 75.17 54.22 57.42 68.77 96.67 72.61 20.11 41.75 16.53 2.88 69.10 86.93 0.80 32.59 39.47 6.09 7.63 98.48 71.70 54.47 4.68 80.84 62.94 16.68 38.98 61.50 22.66 62.13 93.17 0.30 65.32 87.68 61.12 90.59 85.84 89.25 8.29 92.43 6.06 39.15 65.45 46.38 22.43 83.78 99.87 72.85 50.08 1.04 98.84 80.54 6.00 36.02 11.49 85.48 39.61 19.74 89.82 84.97 41.30 89.21 17.60 27.53 40.03 1.91 11.83 78.15 63.96 30.38 83.84 22.12 92.15 73.27 58.40 9.27 6.03 46.62 2.65 -84.91 37.43 39.89 78.55 55.57 97.40 17.49 95.98 59.09 16.17 3.39 94.59 52.77 1.60 43.64 57.80 25.14 51.59 39.04 19.52 55.70 79.60 7.94 45.78 19.90 64.39 12.83 4.86 46.66 83.22 66.17 56.69 15.97 59.51 8.03 23.48 26.49 2.86 3.76 11.05 39.75 22.27 90.60 93.85 80.92 7.48 82.14 43.03 44.35 37.17 59.76 21.91 49.75 43.17 56.98 33.85 31.96 63.44 27.74 64.16 70.11 79.59 45.90 77.97 80.71 96.81 81.71 31.43 52.90 71.86 79.20 51.41 40.89 65.33 85.33 19.72 64.14 90.52 77.38 99.91 3.16 18.35 40.69 86.73 60.87 3.68 15.55 9.63 32.55 40.19 90.99 58.81 7.54 27.21 26.21 29.24 91.91 90.76 39.64 13.05 -62.71 95.17 56.62 71.95 37.07 36.04 6.84 38.10 70.65 18.14 78.79 56.48 84.13 35.27 19.17 96.19 60.32 80.78 91.31 6.18 65.19 68.95 73.11 81.10 74.83 52.10 2.02 68.81 18.96 19.41 57.68 43.31 4.31 93.60 68.39 94.66 58.07 82.05 84.40 43.07 37.51 89.86 21.69 24.71 80.11 94.54 48.73 19.00 82.56 16.43 8.72 77.10 72.25 59.14 52.52 24.46 91.39 24.39 94.44 23.51 83.84 98.01 75.70 85.25 69.33 58.94 84.01 30.79 71.71 69.60 50.33 50.71 25.71 22.49 9.60 81.10 35.39 84.18 39.06 84.22 65.60 16.48 2.48 34.29 22.64 8.76 80.89 71.71 67.28 81.64 39.62 74.20 47.34 18.75 53.14 3.63 34.41 91.21 42.80 16.66 -57.83 67.21 52.43 82.66 40.47 62.70 68.82 60.68 41.83 5.02 28.26 20.88 67.40 88.03 62.40 63.87 14.50 21.45 73.48 51.54 26.81 68.81 98.89 22.71 36.54 43.82 58.65 21.95 30.06 24.39 40.46 41.87 36.92 19.78 58.91 91.15 18.22 42.91 1.05 67.17 95.64 89.80 89.40 47.96 66.87 61.29 98.44 12.10 94.52 43.60 61.23 4.15 16.69 23.71 54.98 79.52 60.42 34.14 11.59 43.87 60.08 61.91 64.82 31.22 78.78 45.03 2.64 88.55 82.34 40.43 40.12 39.42 80.72 22.35 80.85 3.42 31.04 86.73 30.49 90.81 35.49 57.36 1.35 2.49 53.72 96.65 75.84 44.46 14.49 59.33 1.37 28.29 38.29 73.08 68.89 61.79 77.11 73.10 69.06 77.99 -63.19 32.06 94.88 91.22 26.94 31.59 22.97 38.00 66.83 10.29 51.54 43.36 17.19 45.26 79.63 96.71 53.83 38.28 8.51 17.42 1.34 89.22 62.26 33.33 95.34 73.25 40.99 90.41 40.13 66.05 13.43 66.27 87.13 42.99 96.85 13.57 83.97 33.67 70.75 59.75 86.20 23.45 46.75 54.77 87.59 15.98 52.15 97.88 89.16 35.64 99.63 54.38 50.27 26.43 90.90 89.45 10.62 81.97 39.66 8.16 90.80 18.42 81.84 38.93 65.31 47.19 73.06 39.63 68.41 42.10 36.80 58.04 29.70 43.02 64.92 4.37 78.03 66.54 99.01 95.67 67.06 18.02 3.46 40.14 2.80 79.27 38.52 68.77 96.06 38.05 4.37 98.52 35.30 13.56 96.63 62.47 35.63 13.18 36.75 30.26 -11.50 2.95 62.01 7.92 78.15 92.00 38.72 61.19 93.19 68.99 42.32 42.85 80.00 72.94 83.23 87.21 27.33 15.50 51.86 77.76 1.86 44.59 74.31 21.56 13.21 16.88 91.42 88.17 26.97 11.39 29.83 56.59 31.08 3.64 8.42 65.73 32.98 56.76 92.96 97.05 33.73 77.69 6.04 69.57 22.90 47.29 87.19 97.21 3.07 30.50 57.36 50.19 79.47 10.16 12.75 59.32 4.06 90.03 65.25 33.21 42.59 81.48 43.74 48.05 57.48 55.40 44.53 70.03 15.39 49.22 43.27 40.20 3.32 6.25 31.58 23.76 55.92 1.58 39.85 53.57 92.42 5.81 99.28 66.32 29.64 73.70 31.66 4.32 68.36 26.59 47.19 57.36 45.59 16.01 39.04 71.03 8.37 43.47 79.30 5.92 -69.89 45.62 27.48 32.40 20.39 12.69 25.49 56.59 63.83 16.04 19.69 51.23 16.06 2.86 41.68 15.34 97.27 29.09 46.32 19.96 2.75 94.32 13.87 43.96 96.83 34.31 23.51 0.82 68.62 13.63 14.13 10.24 24.09 6.96 95.11 58.44 84.13 5.96 69.32 7.02 4.06 68.54 35.68 82.34 69.49 75.03 65.90 51.04 41.69 41.49 35.52 49.11 49.83 94.79 73.61 46.61 38.52 77.08 75.37 7.17 92.56 5.50 97.43 20.13 42.86 59.41 57.88 59.07 91.55 5.55 25.43 10.13 44.30 6.72 77.23 0.45 87.42 30.30 83.65 78.56 62.19 90.52 36.44 93.63 12.98 97.44 97.96 62.12 64.80 93.34 51.49 51.16 96.33 48.22 68.06 28.93 5.29 76.22 78.93 97.73 -4.20 22.87 91.22 27.95 21.27 33.08 51.31 49.85 55.69 2.50 10.73 87.85 11.70 99.15 7.77 29.56 65.73 3.63 49.64 99.60 83.13 12.40 23.40 84.09 31.68 15.62 0.51 61.71 31.16 37.20 76.94 18.34 10.74 12.47 94.60 50.28 70.97 80.34 0.55 28.12 35.44 68.95 2.80 26.70 80.05 23.47 90.34 19.04 92.59 15.69 86.43 20.67 92.86 74.02 14.74 14.48 57.08 68.16 98.49 45.98 28.69 7.52 18.46 26.94 94.60 91.76 50.82 18.38 46.11 92.36 10.63 22.25 25.73 51.23 18.42 10.53 61.63 22.73 16.72 96.04 50.11 95.56 66.25 91.15 89.54 90.94 55.55 77.72 16.63 84.56 96.23 6.25 15.93 12.54 36.46 45.54 90.31 91.41 5.58 1.38 -3.68 5.64 23.90 29.52 75.12 49.81 55.59 75.69 4.50 55.98 36.34 78.04 20.37 76.20 37.28 23.37 17.04 66.91 61.54 6.74 68.83 0.12 95.82 17.44 66.06 91.57 88.53 93.92 58.28 19.87 29.18 52.85 41.88 10.33 26.98 71.50 33.86 78.73 24.92 92.04 8.57 60.31 84.52 69.56 74.33 27.50 90.75 65.69 18.03 34.76 4.46 19.46 33.89 55.14 37.38 27.14 82.21 33.38 88.81 64.89 78.06 87.32 56.36 0.29 8.17 51.81 26.76 82.21 62.22 63.22 8.33 69.21 16.50 38.43 33.08 90.89 25.15 90.34 14.84 2.63 72.81 73.39 26.83 86.43 44.35 14.43 87.74 16.22 73.37 77.39 26.72 30.57 90.83 77.16 32.02 13.82 54.17 68.03 28.33 38.34 -74.73 79.34 67.16 19.83 12.27 65.20 93.01 61.24 19.37 81.39 19.59 51.43 6.96 20.37 98.96 77.63 51.61 24.33 46.34 26.30 57.98 28.58 8.76 73.41 82.74 65.93 51.31 94.19 52.75 42.80 26.33 56.60 47.62 66.23 54.25 61.82 47.68 77.79 30.29 26.41 84.85 8.39 63.76 81.17 13.83 4.02 25.23 54.25 65.03 68.42 58.29 5.81 23.57 15.74 77.81 67.01 32.50 0.62 98.34 78.76 76.67 40.65 86.71 12.14 87.19 39.88 73.96 15.02 77.93 39.15 26.60 34.66 98.31 59.25 59.48 15.86 60.73 73.94 47.98 63.31 10.64 54.12 50.41 16.37 21.16 98.43 25.09 29.67 77.22 63.03 78.09 37.39 27.60 0.79 32.72 87.39 11.30 31.00 88.34 18.99 -67.66 54.32 91.56 27.78 16.31 36.96 44.51 0.44 93.27 94.93 53.44 93.64 75.58 55.11 30.88 51.60 12.74 14.47 77.27 17.74 79.82 88.67 66.09 40.22 39.04 5.90 50.78 24.82 92.68 59.89 30.74 23.68 57.31 69.91 27.39 30.79 75.62 75.52 21.14 36.91 59.47 23.22 58.09 10.16 22.29 17.29 78.95 83.69 64.48 50.43 89.43 67.88 62.06 87.13 57.35 88.74 57.72 98.21 81.67 23.14 64.95 97.66 11.11 34.06 45.14 80.55 66.54 75.37 73.58 50.56 46.56 38.79 81.26 95.76 62.23 19.37 10.78 28.60 99.70 50.27 52.62 57.31 53.91 30.13 28.51 33.03 21.50 12.25 85.24 59.36 57.18 62.08 70.29 84.70 11.82 62.42 93.05 12.09 89.02 90.90 -48.60 4.85 98.67 15.51 74.67 30.83 71.25 90.98 60.12 63.62 8.17 17.25 80.16 8.43 39.41 6.70 97.70 33.59 0.78 97.67 59.06 15.51 83.76 93.13 61.88 60.90 79.73 41.27 61.92 48.93 94.98 89.67 66.71 26.94 79.67 25.38 14.51 18.59 99.66 57.46 52.93 71.95 9.07 25.08 76.14 68.81 69.07 87.98 68.01 58.43 10.79 12.26 38.27 34.31 54.07 41.68 23.22 56.14 24.62 64.48 40.47 58.49 19.84 21.77 38.05 27.08 69.69 28.12 21.24 48.46 24.79 85.84 98.06 10.31 98.50 47.22 99.08 99.98 48.36 33.41 12.09 33.20 8.78 37.80 18.61 90.34 87.34 32.15 63.01 37.62 9.54 39.69 85.54 30.34 27.75 99.31 16.23 98.61 36.67 23.26 -72.70 73.76 12.48 64.67 13.66 27.48 98.50 45.96 2.65 73.97 64.53 65.07 85.67 75.05 23.63 35.63 69.49 64.74 7.57 93.80 56.16 90.45 47.20 1.82 20.97 91.10 87.26 93.93 47.73 54.69 0.04 91.73 54.08 82.14 67.09 82.47 1.27 52.40 47.63 24.35 35.45 83.71 47.30 59.43 28.81 22.19 33.31 13.67 41.77 99.85 11.40 75.10 9.49 68.10 29.70 64.85 28.08 24.53 95.22 16.43 86.43 92.37 85.23 55.73 70.62 19.72 7.53 12.99 16.13 96.07 60.23 42.55 75.78 50.20 68.88 11.14 60.40 86.73 62.25 96.28 90.32 95.40 89.41 93.18 75.57 43.50 32.47 83.63 98.22 22.65 48.68 77.34 61.65 95.47 55.26 80.10 64.08 95.29 66.84 43.54 -57.49 2.87 28.18 23.96 51.98 30.84 67.89 77.02 68.35 36.23 75.22 99.82 80.32 18.91 0.26 15.07 73.56 51.20 85.96 17.30 91.00 48.15 52.74 57.58 40.52 19.86 27.02 12.61 55.33 32.92 69.15 12.87 45.65 28.64 33.37 56.92 45.87 97.31 85.42 66.33 56.52 81.64 55.91 15.65 84.82 55.20 31.29 78.11 45.52 78.99 66.22 74.77 51.02 90.21 5.56 46.13 9.92 79.59 22.01 60.54 38.13 68.04 62.84 58.95 41.81 64.90 24.72 89.94 56.33 76.83 52.70 43.28 46.23 77.35 84.71 92.79 65.38 66.52 13.15 90.47 9.45 70.92 32.95 90.35 98.19 13.21 85.21 52.31 28.59 38.98 30.31 34.69 50.74 16.09 63.19 55.56 75.33 32.46 48.04 1.88 -26.63 82.00 32.39 28.29 7.16 19.10 75.95 86.88 20.01 67.35 68.26 91.59 61.52 42.80 74.59 90.56 41.29 51.65 20.04 31.87 85.45 29.68 64.18 49.23 50.76 85.11 11.05 92.33 70.83 93.76 86.87 66.81 35.55 73.44 88.64 45.05 95.96 49.48 17.61 52.91 9.48 43.96 21.96 12.47 45.84 77.35 54.26 7.20 23.70 28.49 13.41 63.80 51.99 96.82 98.55 36.01 86.64 90.42 1.84 20.42 36.17 35.11 33.69 72.25 58.30 61.48 96.46 8.15 83.75 85.91 60.11 12.29 45.34 43.35 95.48 71.81 27.54 53.62 23.38 33.82 8.02 8.71 97.13 86.35 95.16 41.50 61.99 2.24 29.23 64.57 50.87 62.70 83.81 0.31 27.99 85.20 75.57 50.52 11.23 94.15 -80.00 79.09 65.28 62.46 74.41 91.39 6.83 44.49 72.98 6.29 23.13 22.84 19.54 77.33 30.68 64.84 54.52 70.15 69.40 21.49 59.30 66.94 63.34 27.38 7.08 85.32 69.67 25.25 64.52 55.61 92.19 66.70 16.84 44.34 76.33 31.14 49.95 98.60 83.88 64.72 60.32 19.13 31.86 78.55 75.77 37.45 83.74 95.73 75.65 69.93 25.24 13.41 61.95 24.93 53.60 71.97 29.81 31.66 42.34 52.41 4.39 55.01 87.98 19.02 59.74 94.98 97.62 55.22 20.45 54.65 74.06 23.27 57.31 51.66 69.95 16.76 8.68 33.43 68.44 61.34 26.37 1.45 21.93 87.65 54.09 57.44 48.62 77.08 92.88 76.61 13.76 20.05 2.48 34.01 22.08 22.59 49.80 37.39 69.31 3.13 -35.56 1.93 4.23 28.37 8.35 15.15 10.29 82.40 28.68 68.33 16.29 19.54 66.02 86.24 65.15 4.09 83.27 3.83 37.83 26.32 65.04 84.86 4.84 88.93 19.43 58.48 66.47 34.13 82.05 83.97 72.97 89.23 41.66 16.67 63.11 14.30 10.16 30.55 74.73 45.93 73.77 92.80 57.68 56.00 7.73 12.37 39.36 45.15 67.42 3.26 45.42 32.82 72.07 7.70 40.13 35.26 67.15 94.76 65.84 6.98 8.69 25.73 71.27 37.34 55.79 80.21 22.57 32.24 18.33 75.65 44.22 69.16 46.29 9.76 87.18 42.38 35.37 83.63 16.10 57.60 73.57 48.30 61.72 20.66 0.31 64.19 26.67 25.68 90.13 13.87 23.62 96.42 70.15 72.45 53.80 84.28 83.75 9.09 77.08 22.76 -64.17 16.23 10.06 77.11 68.71 13.82 32.74 72.89 82.59 82.64 81.46 77.42 75.65 17.87 22.09 87.47 94.25 79.56 58.66 27.24 43.92 53.42 70.25 62.09 82.74 68.08 39.15 19.59 3.04 12.52 46.21 87.71 34.96 49.07 75.04 69.94 54.80 54.89 0.69 44.97 48.60 48.70 38.29 76.38 23.72 82.96 69.12 93.61 35.43 88.88 73.33 86.49 93.04 70.77 92.84 56.53 37.55 74.46 73.67 98.25 2.47 53.62 15.76 56.01 47.31 54.86 82.63 42.16 55.80 13.83 18.13 50.80 56.22 13.82 76.96 45.30 71.50 31.88 42.61 0.95 59.65 77.73 39.05 17.67 6.74 44.36 77.23 16.18 94.39 69.40 77.70 11.53 62.54 6.95 67.46 17.91 71.27 5.88 7.80 57.03 -8.02 80.27 17.93 7.50 44.31 63.73 15.80 12.16 58.16 21.89 98.30 19.28 27.43 90.43 88.78 87.92 43.70 95.60 35.87 3.60 90.35 57.94 43.27 2.14 75.71 35.24 91.87 44.93 26.06 78.01 80.09 22.13 74.43 44.48 83.60 26.56 16.48 67.30 93.01 83.47 7.34 67.26 42.14 91.54 99.86 97.74 76.72 51.76 75.70 70.84 76.55 7.05 4.02 32.02 17.72 26.62 75.58 25.12 80.22 71.03 90.63 66.56 41.35 46.76 53.31 86.53 8.93 28.31 18.94 64.08 89.00 69.61 42.86 36.85 94.72 60.20 29.64 70.46 65.98 85.78 96.60 77.39 89.17 42.02 65.76 14.04 24.96 38.93 50.01 66.17 19.57 59.02 92.00 8.44 99.97 53.73 4.77 57.44 1.32 5.46 -95.82 82.57 76.87 28.50 48.34 91.90 63.20 97.73 22.78 89.56 38.84 28.43 83.89 48.60 72.53 79.07 6.72 64.01 18.21 18.69 79.32 77.05 55.72 39.09 2.31 85.32 68.63 0.98 22.51 72.19 36.62 41.14 10.82 37.58 20.26 22.06 41.23 56.91 22.94 20.09 14.19 16.95 88.88 98.26 97.78 57.78 63.45 90.84 48.47 18.62 12.58 74.76 40.27 90.65 76.69 64.98 94.05 38.93 54.18 81.25 35.06 71.53 52.71 90.56 57.07 23.86 84.13 39.69 53.28 95.86 69.98 14.63 27.41 4.37 78.40 80.91 43.53 2.46 27.40 60.93 65.54 8.81 49.00 99.19 12.82 22.14 8.62 70.95 97.88 78.34 29.92 98.44 45.21 24.59 21.49 48.29 31.56 14.49 71.88 66.00 -90.60 88.85 85.05 31.51 23.32 20.14 34.75 3.81 98.42 50.13 20.04 44.25 11.77 41.04 3.81 83.17 37.69 47.43 36.53 74.03 44.73 31.82 57.78 38.12 66.90 97.48 63.59 68.25 36.09 45.84 98.15 92.46 63.86 91.17 75.41 29.19 27.56 98.62 79.53 37.39 21.30 45.40 28.53 1.23 96.32 58.10 93.47 89.46 52.72 43.72 29.09 88.05 0.78 2.76 45.60 21.46 78.90 82.98 73.38 88.18 58.90 61.54 43.04 37.53 68.39 64.54 6.13 39.25 23.33 55.15 73.81 99.84 28.35 51.80 43.96 24.59 9.13 55.26 66.64 73.29 47.83 77.54 30.78 54.55 19.83 17.32 39.22 75.43 63.22 21.67 45.54 59.69 98.85 89.29 83.31 48.91 74.03 70.27 12.33 51.03 -41.89 71.15 37.81 65.51 20.61 3.84 90.66 75.86 44.86 87.92 5.25 28.79 31.50 75.72 42.20 34.79 40.61 84.39 90.93 45.54 21.86 53.23 14.57 43.15 61.57 87.03 28.52 6.01 43.70 71.31 59.68 28.10 77.68 40.74 60.79 19.82 36.96 92.09 77.44 40.54 67.90 29.34 60.30 87.59 71.52 32.68 83.79 83.13 78.81 53.60 97.65 66.81 16.56 61.48 92.69 8.02 62.26 61.01 58.37 86.48 36.01 55.03 64.11 32.70 61.55 30.60 8.18 27.24 18.03 74.51 69.20 39.46 96.87 20.63 22.05 11.67 83.70 32.18 8.42 75.32 74.22 33.65 32.69 89.22 62.75 27.57 37.88 0.69 59.14 87.95 35.60 24.68 13.79 30.34 9.51 14.82 13.43 16.53 7.19 65.29 -96.25 28.52 2.70 90.74 94.59 53.92 75.04 12.70 6.80 23.47 75.02 99.55 60.85 21.31 15.53 26.62 96.94 46.99 59.67 73.76 43.90 95.05 7.41 48.29 89.97 84.48 59.74 34.88 89.95 5.26 54.88 3.00 72.76 82.21 92.46 19.71 39.10 32.55 28.04 11.59 82.21 42.13 92.96 80.27 86.87 37.07 65.89 33.73 4.94 45.90 83.64 66.02 37.42 61.74 23.98 93.70 26.92 5.42 90.18 27.24 98.49 39.60 87.32 48.69 67.69 43.77 71.95 87.20 5.92 14.96 40.08 2.12 66.92 89.85 52.35 3.81 83.48 35.91 3.94 80.15 23.05 42.66 88.31 29.00 23.81 46.56 24.00 4.92 58.00 39.81 57.25 47.72 18.83 64.79 83.35 8.19 86.28 65.30 79.11 48.95 -64.79 21.88 47.65 62.89 78.19 40.99 12.49 57.47 10.07 80.97 74.03 72.52 38.02 92.54 25.60 48.85 20.81 22.53 1.24 76.65 17.88 18.20 3.72 37.39 69.70 26.43 32.69 18.37 82.70 24.95 75.80 90.05 56.15 67.95 1.95 29.05 88.35 92.66 79.13 84.91 29.12 21.76 1.87 46.34 90.22 14.23 89.92 28.33 98.57 73.79 90.73 16.97 20.67 85.08 9.20 12.90 75.47 75.91 44.40 40.98 59.68 31.34 32.74 92.19 71.02 82.89 97.83 71.81 3.51 75.91 20.53 47.53 52.68 21.66 33.97 53.41 72.62 16.38 20.10 62.91 15.76 36.11 24.73 19.92 54.58 85.07 72.85 64.59 0.76 55.68 20.92 6.62 32.27 36.02 1.10 6.08 15.93 66.34 15.75 34.71 -85.02 9.43 3.65 3.46 42.87 70.64 26.17 56.71 7.22 75.34 18.61 58.00 32.62 10.52 14.28 11.92 80.74 18.50 55.68 50.43 85.86 46.26 74.08 91.82 86.79 91.77 93.58 52.44 69.69 38.76 11.69 70.92 92.17 72.36 59.97 91.64 67.84 99.16 17.34 94.79 43.17 34.03 35.87 4.33 8.34 86.12 6.30 85.99 56.72 55.46 48.45 40.93 12.31 72.36 31.19 65.47 58.44 82.59 91.01 44.35 99.25 19.46 70.95 84.07 77.35 56.74 18.00 85.00 65.18 14.66 55.40 33.25 82.97 8.76 43.13 24.33 99.04 98.38 24.81 19.61 69.41 94.52 23.39 39.30 73.75 65.81 1.66 58.29 70.74 2.58 10.77 94.40 72.87 15.68 95.29 98.38 74.55 92.41 69.39 77.24 -54.36 51.31 2.61 25.15 42.78 92.06 62.31 26.44 55.19 47.25 47.77 99.01 96.69 83.38 95.37 87.84 41.58 34.30 84.55 85.61 42.05 11.96 46.23 93.41 3.90 68.88 5.55 76.18 15.58 18.42 30.99 71.74 8.05 86.20 57.44 38.22 93.36 96.36 29.49 5.15 23.08 40.22 70.64 16.94 74.14 97.73 84.56 17.16 5.02 51.68 91.55 35.28 31.98 48.22 29.92 42.14 80.62 89.29 65.68 42.00 70.29 52.11 92.31 52.93 93.55 44.97 97.99 97.89 60.80 61.38 79.25 30.10 99.82 81.51 99.15 35.52 16.97 70.68 93.32 67.50 51.78 97.69 68.30 78.38 68.81 76.15 83.75 48.83 72.74 19.99 16.19 55.15 9.67 42.58 87.49 22.93 19.32 39.32 14.15 50.40 -4.40 52.59 98.82 69.84 25.71 93.91 67.69 83.53 74.63 28.92 5.86 24.19 25.61 86.06 31.55 28.09 22.55 49.42 7.05 92.35 81.40 62.14 23.61 65.55 73.64 8.64 25.79 59.89 87.20 17.03 28.49 97.06 26.31 10.72 77.43 56.69 32.10 57.50 57.45 13.60 3.09 66.75 82.00 96.89 13.09 98.24 36.08 46.10 97.85 31.81 11.59 45.93 31.54 59.77 63.15 32.56 15.29 59.79 56.89 29.82 51.90 65.46 58.46 74.64 14.40 57.22 95.86 83.21 67.88 4.61 47.57 8.04 81.29 47.98 0.73 97.72 66.45 71.70 35.44 23.94 93.24 99.04 85.72 29.81 97.25 4.15 18.42 1.32 54.58 97.24 31.99 89.98 98.58 90.18 34.38 25.23 50.45 14.35 14.08 94.06 -86.81 21.74 73.09 1.63 98.67 17.14 58.34 21.07 89.90 4.13 79.95 74.34 64.64 28.23 82.76 91.15 11.31 11.73 48.49 65.05 8.74 36.28 54.43 79.69 59.31 41.09 53.30 55.74 73.11 45.26 80.89 91.15 88.05 38.75 52.94 84.58 64.47 75.84 55.64 24.19 22.91 12.89 70.60 82.45 3.64 68.96 35.38 64.09 4.13 32.35 13.63 48.68 10.62 13.30 98.63 73.27 98.62 15.96 85.21 64.63 9.20 19.94 76.67 37.58 44.40 73.55 71.84 69.32 46.80 48.93 48.39 84.21 87.29 6.88 94.68 70.36 61.56 12.13 47.45 74.82 97.00 48.18 63.04 57.46 23.30 25.64 5.91 25.60 79.62 72.10 82.62 15.77 89.21 86.20 12.38 22.95 65.54 67.16 26.09 3.58 -91.21 65.35 90.74 83.73 32.17 78.07 76.57 68.83 21.91 4.89 92.05 46.63 15.94 73.58 98.46 99.53 98.47 8.27 80.74 21.38 94.70 62.86 6.77 76.78 64.91 90.19 4.46 25.31 24.52 16.58 69.61 73.83 24.46 90.67 43.11 28.47 28.80 39.01 45.78 77.94 21.70 27.56 89.88 92.92 36.75 40.25 53.35 93.20 18.86 97.56 72.44 35.88 63.96 69.59 33.94 84.40 5.50 15.70 35.21 72.01 24.86 93.65 34.39 75.93 48.81 46.96 42.73 32.54 65.49 75.52 81.43 3.08 31.61 40.29 66.33 69.85 79.33 96.35 69.94 24.75 84.77 79.55 33.77 20.60 3.94 3.00 49.37 24.66 54.24 96.98 46.25 24.04 2.98 25.97 47.26 65.39 6.52 42.00 44.72 59.07 -49.00 94.72 44.47 5.25 81.43 49.42 82.07 30.77 45.75 87.37 57.36 80.89 70.92 7.21 37.56 87.68 41.04 11.16 35.07 46.94 8.21 39.70 87.38 93.84 53.95 17.87 67.11 94.39 68.08 94.01 78.00 26.82 41.85 61.81 26.21 25.71 45.39 18.88 79.13 5.02 52.85 8.96 6.55 49.24 40.76 49.63 29.63 36.92 52.72 79.96 88.82 45.24 21.05 45.32 47.07 2.22 43.69 37.85 89.96 59.07 85.18 12.96 61.87 98.61 82.36 27.16 17.36 57.88 33.75 43.87 86.57 87.26 0.39 70.64 0.59 54.74 11.54 8.96 90.60 7.29 24.95 80.08 32.41 84.81 88.67 75.72 35.98 24.68 44.05 85.12 93.80 29.34 98.64 44.91 52.64 44.80 7.92 52.88 30.28 7.86 -2.88 82.65 77.30 91.95 20.69 74.34 25.60 17.38 95.56 17.47 30.61 93.22 96.54 39.72 65.67 3.79 82.18 57.34 86.45 22.36 45.87 65.35 77.17 56.31 98.53 98.58 13.51 50.24 29.55 37.88 69.85 49.47 64.38 30.63 1.26 40.50 54.75 16.29 31.74 34.17 43.52 50.45 2.66 6.19 74.72 16.17 60.09 3.90 44.43 66.54 29.63 85.94 58.95 96.97 21.22 32.52 75.96 76.06 48.19 63.14 34.75 58.91 18.35 79.12 74.62 33.38 36.61 64.31 86.22 60.74 68.27 59.10 12.40 15.12 39.88 51.04 13.03 75.07 28.23 80.63 62.91 72.95 65.40 7.22 78.94 5.16 36.21 60.11 17.59 58.02 91.43 61.00 92.79 65.89 62.75 15.00 11.44 29.39 17.49 4.46 -15.92 62.86 42.36 59.18 51.36 67.93 79.16 77.75 70.72 89.78 33.82 69.95 60.98 47.43 69.77 48.85 44.73 82.81 51.82 91.62 90.75 65.31 52.56 14.95 69.03 40.99 95.54 73.01 22.80 22.61 24.96 87.42 97.10 46.36 21.79 32.30 31.77 6.24 41.86 78.12 48.32 61.65 76.30 18.78 2.15 54.57 98.97 70.51 77.49 23.19 21.88 69.71 25.65 82.06 54.15 86.06 58.32 50.94 16.33 63.15 50.96 4.61 20.88 61.40 50.68 88.59 85.32 62.94 38.30 72.30 77.25 47.89 56.06 72.43 49.53 36.68 99.52 7.96 37.72 85.20 68.19 26.19 79.81 92.80 4.39 49.61 14.77 93.56 67.65 93.81 55.13 16.76 97.60 66.25 68.29 22.48 87.10 13.63 46.67 14.57 -53.41 88.95 1.97 57.11 85.46 65.41 97.16 2.44 75.52 56.39 54.20 5.86 53.99 98.02 31.78 21.46 45.13 96.96 21.88 25.69 40.80 83.82 91.82 24.56 61.42 57.00 74.06 55.79 78.15 62.45 23.85 17.13 46.48 63.16 4.27 30.35 87.38 46.41 86.43 94.32 20.07 22.25 80.38 15.50 97.36 68.56 12.55 19.52 8.32 40.72 37.01 94.05 80.10 85.60 2.89 58.69 37.26 22.12 84.40 58.92 22.53 40.62 66.56 36.49 82.11 31.59 77.99 46.35 2.91 29.84 96.33 66.48 49.32 87.18 68.19 68.71 49.20 9.38 2.13 81.87 84.92 15.32 67.76 65.03 9.55 58.13 76.46 18.33 83.10 14.19 39.69 6.80 35.03 34.73 33.51 46.64 11.12 9.74 40.16 73.88 -84.34 26.17 5.44 16.87 62.21 0.08 72.57 3.71 12.69 81.69 34.88 41.10 62.13 54.57 52.31 57.33 63.42 20.33 3.29 16.37 94.45 85.32 39.39 31.49 84.22 46.45 22.96 20.92 95.54 48.96 57.74 65.10 97.91 29.96 8.91 36.28 7.84 14.00 21.06 98.48 75.09 25.06 64.07 91.35 13.61 36.47 10.02 89.36 22.30 46.78 99.94 6.05 26.08 39.49 43.06 59.53 41.19 2.92 39.97 67.63 77.59 0.85 45.22 64.07 83.87 62.96 21.57 40.12 86.73 96.61 58.22 84.95 4.03 43.68 80.72 12.57 69.51 29.77 23.32 14.63 4.39 77.47 3.51 41.09 52.61 60.42 29.85 70.85 58.36 36.66 53.23 7.57 73.83 34.99 87.13 36.16 24.73 43.04 92.48 28.96 -39.35 13.77 92.07 50.26 29.07 70.50 67.67 35.53 6.90 56.90 94.86 18.69 10.39 68.12 88.98 99.64 66.40 29.59 54.32 80.43 18.79 53.79 30.82 83.05 74.46 11.36 26.38 63.77 63.04 90.77 95.67 23.32 64.88 72.66 51.47 72.40 22.15 49.07 22.78 68.56 60.42 52.82 23.30 10.70 21.78 78.54 17.41 84.50 95.08 35.66 55.01 44.87 65.62 94.66 6.67 29.59 10.40 70.52 83.17 99.28 89.40 79.78 25.65 38.91 16.59 4.44 56.25 64.01 25.97 76.65 53.83 27.48 26.81 25.28 89.65 19.86 2.42 18.01 31.23 77.96 27.22 79.43 54.00 99.50 70.14 92.30 2.68 79.82 72.68 62.76 53.81 25.35 57.05 11.67 58.12 31.47 52.16 19.29 93.17 22.62 -67.33 34.60 17.86 26.15 63.32 31.83 92.33 55.92 67.69 85.57 77.22 5.61 57.65 62.01 38.78 13.52 7.61 82.10 4.74 29.40 70.95 41.37 89.52 19.43 35.23 10.38 58.06 4.62 71.60 81.67 62.29 25.79 82.35 43.27 40.36 42.08 21.03 48.73 25.08 62.25 6.13 48.48 72.38 15.98 25.58 47.53 33.80 76.39 92.13 32.43 91.31 4.34 6.73 25.56 62.62 1.77 53.37 92.47 3.54 47.45 34.66 55.92 79.30 61.34 36.19 88.92 0.92 16.50 54.64 39.43 25.94 75.72 31.60 89.52 50.27 85.47 58.79 18.66 68.80 65.55 7.28 56.30 95.35 47.25 86.71 64.19 61.91 93.01 16.55 5.62 17.13 61.39 79.12 30.77 4.75 82.47 36.27 6.95 82.84 9.09 -92.24 4.59 68.73 30.36 9.47 73.38 16.37 0.63 55.43 32.78 45.36 87.95 97.33 77.74 38.19 76.22 9.21 10.27 28.90 29.71 99.70 62.59 9.05 11.96 65.37 22.62 53.70 47.59 16.41 99.85 42.21 60.09 79.96 67.52 80.49 53.34 48.60 24.94 83.06 45.07 30.97 64.96 25.76 41.47 27.06 66.69 31.67 99.94 22.52 71.10 49.82 41.12 15.08 94.08 69.71 98.23 94.83 49.36 93.46 16.72 34.65 77.32 88.92 59.18 18.54 37.50 88.67 60.78 9.50 90.78 72.52 19.05 63.43 12.99 75.37 16.24 6.66 13.03 31.53 18.08 8.44 9.66 93.14 43.15 75.35 79.03 38.40 38.89 60.19 62.43 72.49 18.77 36.16 11.53 67.15 55.04 0.36 64.52 11.72 54.27 -88.12 46.71 82.31 24.54 38.46 27.47 88.51 22.15 3.31 64.04 5.40 79.46 44.52 43.34 9.06 88.96 51.00 97.17 47.24 85.09 35.63 96.47 60.85 31.33 45.49 45.91 67.05 13.22 40.31 3.69 53.41 70.03 12.30 47.64 10.25 9.93 61.08 90.02 77.22 75.84 21.80 72.29 38.49 29.34 2.09 18.78 61.42 86.40 14.47 87.02 84.25 24.57 49.97 90.40 1.23 60.56 19.94 81.72 45.67 91.07 33.25 97.55 24.26 96.91 63.29 50.48 50.95 38.33 13.89 9.50 95.04 32.31 4.98 38.84 2.49 63.54 61.95 37.99 22.73 27.76 56.43 71.58 33.53 93.34 61.86 59.92 67.37 74.98 21.46 61.10 75.01 57.69 31.33 36.15 26.80 13.12 60.45 93.66 0.81 38.41 -86.16 22.21 61.25 21.50 80.24 74.94 63.58 34.51 57.54 54.62 68.32 52.71 11.55 69.94 14.49 10.89 90.11 93.08 62.38 0.22 74.54 62.55 72.90 66.31 26.10 58.50 10.67 23.69 88.91 17.21 78.65 84.60 96.10 64.69 51.01 6.47 81.93 89.19 2.18 63.83 2.08 91.51 11.45 45.04 65.74 75.08 59.14 14.80 4.99 77.38 61.41 64.10 11.00 57.50 61.15 90.34 49.03 46.57 8.15 60.77 26.60 65.65 72.65 6.60 70.21 90.31 3.01 77.06 90.41 42.66 66.98 49.21 84.88 37.87 47.33 20.35 40.35 58.78 50.08 76.89 41.48 21.51 41.34 40.38 66.60 81.42 21.42 14.36 51.19 2.31 54.09 76.52 11.56 69.59 17.21 14.84 60.18 10.29 6.38 13.61 -59.45 33.72 48.24 58.32 58.11 17.13 99.31 77.00 12.39 4.28 74.53 11.32 77.32 34.29 38.01 67.17 41.15 31.84 37.53 59.52 62.38 77.11 21.10 32.74 95.57 24.19 65.72 87.22 59.36 39.12 11.02 3.65 64.69 7.79 78.27 78.84 6.35 0.46 72.95 72.29 37.58 97.12 73.66 25.83 61.52 69.06 72.30 53.66 43.44 85.86 7.30 85.88 29.30 29.22 38.58 24.21 4.57 48.56 5.71 44.40 12.73 61.64 37.96 14.32 11.63 58.64 72.72 25.09 7.96 46.65 2.53 2.89 1.37 1.79 21.13 30.91 61.06 11.30 88.90 10.73 93.46 50.29 4.42 3.81 34.59 16.03 15.59 46.17 93.42 60.41 70.11 15.82 64.21 74.42 66.89 17.57 87.32 34.70 39.22 66.81 -75.97 44.75 73.90 50.02 33.32 58.62 49.55 9.01 70.73 19.17 51.81 56.05 84.72 18.30 89.80 10.27 56.06 73.81 11.61 69.11 24.93 99.01 46.23 32.48 13.49 38.06 89.87 57.23 91.92 85.34 31.56 88.84 0.31 75.28 61.05 9.81 0.87 59.23 32.57 26.20 8.94 19.71 87.77 74.63 39.14 0.79 90.16 69.29 42.53 58.84 47.28 63.11 61.15 14.06 4.62 1.27 46.21 61.75 55.25 76.49 59.52 86.02 96.14 34.84 17.34 44.54 7.88 79.13 93.13 79.52 4.05 9.91 41.37 92.76 31.54 24.22 13.93 3.70 43.94 48.94 66.55 59.93 50.76 69.19 36.69 93.74 89.89 97.58 53.13 37.95 27.38 40.69 30.08 15.62 15.86 49.47 14.71 83.87 56.79 71.37 -16.01 52.87 20.20 9.25 67.69 32.89 93.96 16.32 67.57 48.77 54.36 16.30 64.26 34.91 11.51 43.10 26.81 7.93 9.46 69.83 35.69 17.37 9.15 32.48 41.53 89.17 77.83 30.20 67.31 69.53 80.98 17.00 27.21 45.18 37.68 58.90 70.17 99.84 92.49 23.82 97.63 5.94 27.16 91.80 53.93 67.24 11.59 44.85 62.60 3.03 50.15 73.45 61.64 66.34 99.56 47.38 93.48 63.65 13.36 53.60 5.55 75.87 23.44 52.25 68.42 49.30 99.39 35.85 57.11 63.31 49.70 59.53 34.40 66.17 73.92 85.04 9.28 84.92 4.29 86.29 91.44 19.06 53.06 67.12 40.70 19.79 17.17 68.66 64.32 59.19 30.73 60.74 58.04 32.03 20.39 89.08 74.24 43.38 44.20 17.28 -96.69 90.76 66.52 17.33 50.29 6.35 12.28 17.23 81.86 53.69 13.86 22.75 40.16 95.40 97.08 19.13 27.53 70.06 17.17 54.18 55.00 7.87 48.97 98.29 56.89 76.02 37.78 69.43 33.39 35.77 67.23 66.69 12.94 48.50 56.70 81.95 57.11 29.92 71.05 55.33 17.57 83.03 69.36 89.31 2.68 45.13 5.99 14.44 41.31 5.00 64.05 59.06 30.72 11.90 77.10 90.82 12.06 22.26 71.61 78.62 77.02 40.82 51.81 79.31 3.78 32.15 23.86 33.21 35.83 56.63 63.18 95.77 40.52 73.96 98.57 11.93 98.59 23.17 3.38 31.84 77.95 76.66 74.77 46.02 33.61 83.47 58.35 80.78 12.68 21.86 14.11 46.52 61.72 7.74 60.71 53.75 54.02 31.45 83.35 26.05 -55.53 11.33 20.07 91.63 23.57 74.79 99.40 99.41 67.73 25.65 13.62 44.33 53.90 73.03 10.12 8.88 50.36 8.74 85.36 94.25 29.92 9.06 53.10 69.03 20.90 24.82 86.01 67.98 38.03 20.72 65.46 3.39 73.87 82.01 71.04 96.03 38.81 46.82 4.36 92.50 93.92 76.31 30.42 31.23 20.10 25.10 49.99 4.81 36.05 75.37 91.41 9.36 96.84 28.62 34.55 50.96 3.09 12.90 17.94 5.37 24.58 45.39 30.25 71.72 21.68 70.47 43.95 76.77 20.02 7.86 67.40 63.79 8.13 68.08 33.01 1.11 35.85 36.55 69.14 22.58 69.54 8.94 42.03 20.02 2.75 63.15 64.36 42.89 84.03 4.82 5.08 77.02 14.51 50.02 8.24 50.96 50.52 61.36 38.19 86.51 -18.86 28.86 47.06 54.28 21.80 36.16 66.34 74.88 54.14 39.31 10.50 62.78 83.80 9.52 19.82 3.00 65.45 92.73 43.25 32.79 53.41 99.32 1.80 76.25 78.31 39.82 93.67 81.50 23.49 98.57 80.74 12.84 33.75 61.37 52.59 69.70 56.48 44.06 5.70 70.48 41.74 75.95 38.06 65.19 85.35 78.14 21.75 63.75 55.12 96.30 2.08 99.38 13.00 64.98 40.28 63.49 48.89 74.05 60.94 25.89 19.01 22.88 97.62 10.91 79.16 24.65 8.60 80.71 6.18 14.45 69.91 33.63 9.70 58.13 84.60 0.78 49.52 63.03 76.22 44.98 88.89 0.21 79.98 69.27 1.94 50.06 9.52 5.38 9.74 98.66 84.53 20.51 58.87 66.42 54.41 58.71 40.45 44.61 19.08 94.10 -72.59 30.01 11.00 87.35 81.11 19.50 76.07 99.61 38.38 65.30 32.71 93.59 30.12 7.80 43.37 35.22 22.39 81.55 95.66 74.14 92.40 96.23 14.69 65.55 23.42 93.01 62.93 49.57 82.98 98.04 56.41 31.15 28.85 27.48 18.86 85.94 22.73 77.59 86.47 99.52 15.92 69.16 45.00 49.74 85.68 61.27 61.22 3.52 76.98 47.74 33.34 28.95 77.99 96.09 68.61 85.59 21.39 86.00 24.71 52.06 51.53 25.74 28.09 38.29 73.42 76.10 96.02 24.25 77.55 83.44 86.06 38.40 50.10 19.98 23.52 21.75 68.17 25.46 99.50 87.50 62.39 40.44 35.89 89.09 38.33 61.08 31.06 30.73 6.12 61.19 61.30 20.01 52.77 40.30 9.14 1.51 57.78 20.26 70.51 89.16 -5.48 26.27 61.64 39.67 96.07 36.14 8.36 86.89 67.01 92.48 16.84 92.88 95.07 17.85 47.24 61.35 53.44 54.48 89.14 58.20 87.35 83.81 99.07 63.02 87.17 17.16 46.96 7.20 85.96 57.06 0.80 72.14 58.82 61.16 96.06 11.11 45.16 44.40 18.52 93.24 70.94 63.45 43.24 48.55 93.55 21.99 90.69 85.61 79.34 14.23 56.83 51.44 0.89 14.33 98.69 59.57 94.06 43.60 37.18 23.82 49.85 42.91 30.84 5.78 20.94 24.09 84.68 18.56 52.96 89.03 96.89 28.12 69.91 99.93 81.54 63.63 8.44 5.48 43.79 3.98 74.04 27.92 31.94 19.42 54.33 64.59 45.85 97.62 96.66 65.47 40.17 92.72 1.88 93.92 48.80 35.65 97.88 34.89 28.17 78.17 -17.81 43.19 36.57 85.64 82.95 66.94 74.91 94.22 14.11 31.18 34.35 73.64 87.36 61.18 0.30 80.31 18.16 89.65 67.98 62.51 10.23 49.14 64.63 45.80 6.47 47.99 55.35 78.44 28.55 9.23 50.76 54.09 85.71 24.33 19.19 30.27 52.35 97.13 12.92 43.41 80.39 33.24 92.71 68.06 96.42 86.56 27.82 38.40 93.53 94.87 99.73 97.96 73.83 6.86 96.69 25.76 55.82 70.30 74.01 42.78 22.79 62.12 24.40 14.54 54.47 74.35 14.90 39.08 48.84 52.76 5.73 99.23 11.23 13.58 40.53 10.80 99.66 37.62 9.98 52.08 37.22 48.91 19.93 18.77 10.21 93.39 43.82 78.77 60.51 93.67 92.96 16.40 13.92 53.08 44.20 29.09 15.91 49.53 93.24 12.35 -3.35 15.72 0.28 68.82 43.42 71.55 92.44 97.32 88.45 80.78 43.74 91.62 35.04 84.78 16.96 22.42 84.93 18.95 73.09 7.48 7.94 68.78 92.90 3.24 5.08 0.48 27.42 10.06 91.51 79.65 67.59 1.28 68.41 51.64 62.65 44.45 16.84 7.37 72.00 91.59 75.52 97.18 58.27 36.57 39.61 50.01 4.41 10.01 77.22 18.23 93.31 93.51 16.13 46.19 34.98 37.61 69.05 81.25 20.93 51.31 63.14 83.39 58.06 36.22 49.89 52.65 0.98 80.91 32.06 83.44 87.04 44.12 53.78 66.09 8.34 56.91 39.86 49.82 23.29 70.62 21.45 73.41 88.62 56.79 80.29 57.66 57.29 97.12 62.50 48.41 23.15 11.04 90.13 50.65 17.18 38.10 62.37 18.54 32.26 49.31 -38.27 71.07 99.98 62.77 78.96 43.70 91.97 56.22 4.51 44.84 27.71 62.16 10.43 21.12 41.14 50.61 74.82 85.40 83.95 2.73 82.34 34.43 18.92 92.99 59.67 81.63 89.11 63.23 6.46 98.44 27.53 76.98 11.03 74.25 64.86 43.12 19.66 65.91 50.34 27.34 46.46 43.39 2.37 0.46 35.24 14.77 19.52 95.87 21.92 1.41 24.12 68.54 10.46 13.61 50.82 97.03 42.97 48.28 85.84 85.63 92.18 96.20 3.88 29.31 67.69 62.47 37.09 65.85 3.58 6.16 43.10 60.62 14.42 84.20 74.11 71.07 71.33 64.38 99.83 60.56 6.25 16.47 42.81 79.29 13.26 43.73 77.84 86.34 5.21 42.34 54.30 76.95 14.27 98.73 54.79 70.75 48.92 26.05 60.60 43.68 -49.54 66.04 7.10 71.31 2.56 52.37 62.70 45.45 68.27 41.27 35.70 44.37 64.99 47.56 74.95 94.10 48.65 93.20 89.37 41.32 28.51 67.10 63.69 34.68 38.80 73.36 83.26 85.46 34.51 27.50 9.87 5.29 83.23 1.65 46.31 83.43 27.08 43.71 1.80 29.46 76.32 61.41 21.27 46.57 72.33 24.83 61.65 14.44 53.70 78.23 69.56 31.27 26.13 79.56 26.91 52.98 67.01 23.85 94.71 49.53 85.94 55.97 20.65 87.08 50.97 89.92 41.85 91.27 75.78 7.21 74.21 28.22 65.69 19.07 67.49 54.15 16.00 8.00 31.84 89.71 61.21 48.17 69.15 49.09 84.39 16.83 99.27 13.69 49.41 69.80 81.01 41.09 22.56 30.35 28.68 62.30 27.61 31.15 48.69 55.10 -47.18 52.86 40.63 23.25 32.57 6.40 10.61 41.01 48.86 24.14 19.21 73.40 57.92 98.43 56.64 28.71 93.26 90.78 92.36 7.25 55.87 90.03 18.79 42.04 89.80 52.00 4.34 34.43 30.58 61.65 84.30 91.88 23.84 87.85 89.55 47.96 73.87 82.25 10.11 98.46 68.14 16.80 98.13 3.56 0.84 35.60 4.79 70.63 61.86 92.80 29.15 7.80 17.90 45.33 69.86 44.98 40.27 63.58 27.12 53.68 37.50 68.77 16.50 79.42 60.94 61.95 57.63 90.61 33.60 8.64 72.20 27.21 92.90 55.28 21.80 96.70 97.64 46.36 75.36 74.99 26.74 63.33 11.82 27.07 62.06 92.20 25.67 71.42 98.78 94.30 44.70 92.02 94.33 97.98 45.75 34.50 70.95 18.48 22.40 51.61 -95.22 2.78 48.60 44.38 64.70 45.79 74.75 99.42 64.82 27.89 84.42 41.04 12.91 94.01 66.84 3.93 2.26 47.72 1.25 95.37 9.33 86.60 66.31 29.62 92.06 2.56 12.17 97.47 15.16 75.78 55.85 2.52 63.56 96.57 34.33 29.14 68.44 76.97 44.31 49.50 17.41 58.45 20.41 59.07 51.27 80.82 28.61 79.18 88.78 22.14 48.73 69.91 65.17 81.64 99.21 66.88 60.15 64.72 37.22 15.21 72.16 98.29 97.99 57.24 77.75 37.90 30.80 9.17 80.73 17.60 97.08 5.53 24.19 74.60 66.41 6.95 84.50 64.66 59.35 22.18 6.65 57.74 51.23 39.02 69.14 72.52 51.88 10.94 7.88 51.74 92.71 55.67 49.75 23.95 78.59 33.37 97.60 70.13 5.30 73.99 -46.12 98.61 73.65 30.04 17.64 90.40 99.42 87.34 88.60 51.70 75.55 67.47 17.68 61.23 92.78 85.01 56.49 7.12 31.15 40.91 56.99 51.85 87.71 69.49 78.19 45.84 60.73 85.99 27.01 13.64 62.87 23.81 36.80 18.63 45.94 31.65 90.78 53.17 74.48 35.36 45.74 17.70 32.08 78.20 69.94 59.33 41.90 1.07 53.00 87.13 35.93 62.50 65.07 36.80 16.18 29.20 18.66 41.12 11.89 66.48 42.30 16.18 15.20 75.05 78.04 33.65 46.50 25.46 75.43 85.79 49.24 86.14 11.07 65.80 5.51 81.16 6.51 98.47 45.44 62.10 63.95 80.41 65.94 76.53 36.31 11.64 48.37 31.35 33.92 86.38 81.12 70.57 80.51 56.45 56.14 98.14 26.63 66.75 34.61 88.91 -75.22 95.48 45.87 25.84 58.51 42.54 41.81 97.42 91.46 28.35 81.32 53.10 23.49 73.82 22.49 59.67 4.15 70.65 94.23 61.21 7.20 91.16 48.40 65.53 67.38 4.05 82.92 9.73 92.67 76.44 6.27 17.64 10.03 29.75 96.90 11.77 20.38 69.91 39.24 58.89 49.95 32.79 49.31 56.40 61.32 94.54 78.81 38.16 86.31 74.36 45.48 69.11 32.90 18.14 91.22 42.46 96.84 39.24 64.08 54.83 32.42 58.14 58.39 57.48 88.12 18.89 91.06 24.91 88.79 82.82 32.18 67.97 41.09 87.87 76.02 69.27 99.40 97.03 51.77 71.59 5.69 42.09 8.94 83.33 92.55 92.45 31.40 1.74 54.69 64.51 18.11 50.78 76.38 13.64 98.09 22.58 73.89 93.57 0.73 48.32 -70.46 22.70 83.05 22.09 50.81 68.13 25.23 66.73 71.84 90.16 44.91 43.59 45.37 37.20 8.30 17.60 25.23 13.66 23.33 7.04 55.18 47.08 3.02 88.07 83.48 17.95 86.57 65.79 63.17 84.00 25.67 13.70 80.22 3.68 21.20 27.95 45.56 39.19 58.36 79.19 49.11 85.21 28.71 54.55 19.48 58.33 49.29 70.95 31.01 70.30 53.23 92.87 27.61 5.71 46.47 81.94 25.96 52.52 19.04 27.22 34.08 64.50 59.41 14.12 82.50 94.96 56.15 5.77 61.09 73.14 52.92 98.02 6.85 56.32 67.21 75.45 21.44 73.03 11.97 43.68 64.64 89.43 91.90 53.79 6.37 38.78 86.20 51.19 51.65 13.59 38.61 19.34 28.10 35.26 43.20 77.11 74.93 26.93 47.20 81.11 -78.47 12.69 22.28 86.85 60.41 14.03 62.40 46.25 69.82 22.96 71.83 58.80 96.54 98.58 47.93 29.83 65.54 49.77 28.27 81.01 39.90 24.40 27.20 89.11 8.01 13.79 76.47 44.59 21.26 72.37 74.09 20.99 12.10 67.44 22.60 54.10 83.40 42.99 86.77 9.36 80.78 61.79 48.67 91.10 9.00 38.83 99.21 36.85 65.45 23.15 18.05 65.81 6.03 95.72 47.90 24.46 2.79 27.52 75.76 15.64 2.75 69.06 56.67 46.07 7.07 4.00 48.11 14.26 73.86 73.03 73.36 39.67 81.76 41.51 40.66 5.31 83.26 25.41 62.01 18.65 90.43 21.75 98.41 81.52 20.50 44.18 2.61 71.42 64.21 30.71 26.84 60.99 81.11 68.51 67.53 9.83 46.76 21.49 63.01 62.02 -61.49 1.75 66.54 24.35 41.15 93.83 79.37 24.54 94.84 87.47 33.57 20.44 13.92 25.70 41.44 59.00 15.10 0.80 11.86 13.24 68.77 45.10 18.88 39.82 90.56 62.60 64.54 19.53 99.05 76.49 41.87 49.80 24.79 14.36 70.31 48.78 57.07 57.22 0.31 49.09 73.73 93.54 86.18 96.67 44.24 78.57 98.41 4.52 94.37 76.84 57.75 53.01 65.96 79.39 83.85 33.26 78.59 64.90 17.08 79.03 25.57 50.74 84.39 71.03 24.16 27.67 28.81 9.29 24.22 22.34 1.56 44.03 2.27 56.22 46.51 55.56 72.65 10.96 96.60 57.01 57.51 6.63 29.96 26.60 66.35 40.24 40.50 26.86 25.42 5.42 56.92 21.42 17.24 27.79 94.18 2.95 67.22 15.81 84.96 41.03 -74.58 73.53 63.13 4.62 82.70 86.63 35.34 86.83 56.40 54.12 83.88 73.12 4.79 56.59 9.11 95.23 40.22 73.61 4.33 11.30 22.63 46.98 96.45 66.28 31.56 46.28 70.13 92.14 89.46 73.33 0.58 3.85 33.21 82.48 32.65 67.18 52.32 95.17 20.17 81.18 64.10 94.25 39.82 1.81 48.50 35.78 36.92 0.09 62.80 39.26 12.01 68.08 62.14 53.74 64.94 92.20 55.42 44.91 75.38 52.92 93.38 48.88 2.18 2.06 52.00 99.69 17.21 19.46 32.91 29.39 73.86 15.51 77.77 32.99 0.19 75.78 19.23 51.93 27.73 52.84 57.74 62.21 93.66 19.90 8.06 24.85 9.36 41.44 34.97 27.42 31.31 79.89 77.44 37.29 60.44 61.92 14.19 4.47 91.04 85.04 -75.69 23.03 76.88 42.08 34.41 16.29 5.05 83.45 30.92 76.76 65.59 21.89 67.70 4.61 52.32 35.71 51.35 0.57 27.13 85.87 63.28 62.27 7.63 6.40 82.85 80.74 54.80 7.59 3.16 40.07 26.87 22.27 25.12 1.85 38.85 63.95 28.52 88.27 70.79 30.06 34.08 14.60 51.06 60.24 68.92 51.32 93.12 21.15 13.60 33.48 2.22 25.19 79.98 88.55 68.39 60.88 65.30 68.66 86.16 83.49 92.37 49.73 57.86 96.40 19.88 5.66 82.46 2.99 26.33 21.46 72.53 16.93 2.82 45.20 7.20 62.21 22.12 41.20 74.96 89.10 75.73 98.58 98.88 99.39 43.61 70.55 59.14 57.42 2.50 3.75 1.85 97.89 89.30 40.87 97.15 48.20 13.70 10.28 68.62 36.51 -68.19 74.03 39.07 53.15 44.15 89.89 36.69 79.65 20.74 36.44 27.33 41.05 11.22 27.14 33.43 78.24 17.80 16.46 99.69 21.97 20.05 73.11 1.90 12.86 61.09 73.36 86.19 71.80 2.53 47.41 4.95 38.79 51.35 26.08 71.99 23.02 70.72 73.03 95.74 73.16 35.80 93.68 97.10 95.93 30.48 9.02 70.46 45.69 79.50 31.25 46.47 58.98 31.68 24.06 3.28 98.08 66.36 19.99 20.62 98.40 71.88 40.99 35.79 91.48 25.09 92.68 0.20 10.95 22.56 21.09 0.39 15.78 51.55 84.40 33.03 37.82 30.61 32.64 39.22 83.96 2.44 13.65 16.46 35.78 79.50 3.98 15.77 79.96 14.57 22.56 86.69 24.40 17.12 96.37 1.48 5.60 85.90 65.76 94.34 45.23 -94.54 83.49 99.19 56.11 84.96 90.27 35.00 85.40 57.10 84.21 17.50 6.40 62.73 17.18 79.20 52.34 21.01 29.55 15.28 41.33 89.58 20.22 41.98 5.96 80.03 61.17 24.08 89.66 94.47 38.03 8.73 19.76 20.73 90.95 14.14 24.66 53.62 87.33 78.59 67.84 40.71 28.03 81.88 31.92 25.45 4.90 98.99 16.50 62.06 43.82 14.05 87.40 98.55 92.83 67.64 37.49 35.22 73.85 27.47 9.42 99.83 30.44 36.24 1.37 26.11 23.15 56.51 44.97 62.30 12.72 5.49 67.70 67.80 36.92 28.49 82.67 62.59 39.93 38.51 27.32 75.00 20.68 67.62 98.58 36.95 77.75 46.51 25.41 85.42 44.25 74.60 16.10 19.76 70.59 81.73 14.81 20.19 89.62 11.12 75.89 -39.06 37.94 85.89 79.00 12.03 96.21 48.85 20.00 42.48 3.67 12.75 16.02 24.15 12.55 37.57 49.89 9.85 59.04 27.59 56.27 12.26 15.18 1.95 75.42 15.47 8.89 79.08 51.86 53.66 98.91 89.28 57.76 39.76 29.59 44.90 81.05 5.64 6.10 26.87 34.58 15.66 48.94 42.65 98.31 57.25 46.05 50.16 86.00 41.73 78.58 77.44 17.97 10.23 39.21 41.20 33.14 30.96 65.96 10.09 45.97 48.93 16.86 78.72 31.40 65.39 30.22 11.86 73.54 58.50 52.24 32.55 18.73 81.20 95.40 30.36 53.87 54.94 20.72 38.39 82.25 92.32 92.00 13.26 60.74 40.07 34.30 11.66 9.58 35.92 47.67 95.27 81.10 47.89 61.82 89.57 43.72 39.17 57.58 53.64 39.44 -43.55 33.56 2.73 15.73 25.89 32.84 35.86 24.31 69.55 72.57 77.59 15.91 66.62 28.33 88.25 22.88 24.67 18.16 19.84 48.26 60.54 58.23 60.50 90.57 47.10 13.86 32.56 86.78 40.91 40.37 55.74 35.76 86.77 11.81 18.32 46.28 86.58 79.57 18.60 7.73 55.12 80.51 92.51 34.03 16.10 99.13 64.34 81.85 76.06 55.88 59.84 68.82 52.36 27.16 60.07 23.28 27.21 40.40 69.15 25.58 73.58 93.41 89.15 34.05 54.21 91.01 36.17 91.28 80.31 71.41 81.97 42.53 9.39 5.96 79.83 38.96 39.13 47.91 44.79 51.36 35.93 47.01 84.76 7.21 2.92 27.57 48.88 75.67 94.47 23.70 4.39 30.89 93.25 15.35 97.60 44.90 75.84 80.02 76.71 26.16 -55.28 42.90 20.12 6.58 21.23 87.69 6.88 85.75 86.37 11.10 45.07 89.67 81.47 69.63 62.11 31.56 81.85 6.35 65.60 82.25 34.41 1.01 84.53 45.19 5.68 31.68 58.42 76.72 96.16 90.51 56.81 76.55 8.65 24.19 52.61 22.22 13.65 98.48 75.06 48.79 67.41 54.98 62.51 78.39 17.75 42.69 58.96 10.26 79.67 34.57 8.94 18.30 12.69 69.99 37.30 43.15 46.83 88.15 64.36 79.78 43.65 27.49 48.29 29.01 55.91 62.26 38.79 40.31 2.44 94.81 45.50 88.70 5.68 17.23 42.22 51.52 31.30 84.99 98.80 65.15 78.23 36.96 75.08 19.49 16.32 57.19 20.50 15.68 37.19 25.93 70.54 45.38 95.51 73.49 91.93 99.49 76.78 99.77 57.69 7.69 -68.19 29.58 91.18 21.67 28.74 15.64 97.99 19.16 76.24 6.33 85.45 96.07 85.74 73.19 45.79 72.30 81.88 38.24 27.30 13.72 62.13 0.14 47.57 75.55 43.62 97.23 98.27 4.28 20.99 44.14 42.63 39.70 84.30 46.66 57.02 55.93 1.34 6.72 29.05 2.27 46.67 4.23 70.02 87.57 13.58 8.94 49.17 40.01 86.16 59.85 49.13 85.87 79.93 98.93 53.64 95.76 90.31 54.89 100.00 46.29 61.20 68.77 50.67 2.67 32.01 96.15 27.47 39.30 54.37 98.22 20.52 82.42 77.14 38.86 36.65 77.29 28.27 13.58 53.79 67.94 41.32 75.72 53.42 60.07 0.86 17.77 38.70 18.56 94.53 83.68 73.66 68.38 38.86 71.90 18.86 0.27 82.37 29.02 98.51 95.32 -35.35 24.23 43.00 5.64 6.18 42.68 9.60 5.59 9.27 23.07 95.69 14.20 9.58 93.19 14.28 69.69 99.78 96.72 50.09 96.18 53.09 96.63 95.03 62.27 30.08 74.63 2.56 29.09 88.91 91.87 26.02 41.01 63.31 39.77 18.05 58.36 91.02 37.62 61.95 66.52 2.62 27.07 15.22 16.13 26.91 75.15 91.08 75.00 2.61 10.90 70.76 20.98 22.93 0.60 98.80 94.84 12.68 32.65 34.61 13.46 68.64 11.64 36.28 30.82 68.67 3.67 57.35 44.31 14.67 56.73 88.83 26.06 67.26 24.54 35.36 51.09 82.65 62.29 61.14 78.00 69.22 75.29 39.54 87.36 48.94 8.21 90.78 28.13 87.88 52.50 87.36 4.73 22.59 39.84 12.71 19.24 53.19 14.74 20.51 12.53 -52.11 54.12 76.67 31.88 78.63 69.85 10.54 64.48 53.41 68.00 9.76 72.21 29.85 38.80 80.36 24.92 90.56 29.50 44.01 84.86 56.15 46.38 74.17 80.46 35.11 35.37 75.68 76.16 45.59 59.31 91.76 28.41 45.30 13.46 40.09 59.69 24.39 89.39 22.90 30.44 34.94 93.00 29.61 74.30 39.29 37.99 9.88 18.97 62.22 12.99 98.45 69.89 87.62 93.87 34.77 2.65 34.60 48.77 59.27 46.03 9.10 94.91 32.29 42.27 88.60 96.34 90.37 16.76 10.23 75.14 54.90 89.41 36.13 10.93 74.17 17.37 86.58 61.70 51.82 19.79 2.01 85.98 8.65 45.90 45.25 12.50 69.51 32.61 47.75 11.69 9.84 57.27 82.30 40.11 17.95 8.04 65.12 23.46 91.96 52.85 -51.28 63.66 43.22 57.85 47.14 56.35 30.45 53.52 63.38 21.86 84.27 94.63 16.91 72.13 5.74 91.74 47.10 48.66 5.46 60.53 71.60 36.42 62.91 72.70 53.90 39.05 32.34 66.31 82.03 97.57 80.13 18.42 62.98 10.47 41.01 30.08 65.94 74.80 67.80 81.16 67.97 87.72 28.99 67.17 83.51 59.37 93.09 48.60 82.76 73.27 27.77 33.57 8.07 36.01 17.28 74.26 55.31 96.11 63.59 93.18 1.88 97.41 68.60 17.13 9.18 39.78 43.30 50.04 42.24 3.01 47.96 24.08 72.01 49.53 2.08 87.94 31.42 87.16 69.23 12.29 84.88 88.13 30.39 86.31 9.79 83.80 37.26 50.68 50.96 79.39 55.75 97.66 55.74 15.67 37.77 45.72 92.41 56.04 22.29 41.51 -46.89 94.70 27.74 74.26 39.49 98.71 11.07 24.30 27.97 56.68 9.64 26.76 27.67 67.38 56.78 53.60 72.29 49.16 23.39 40.98 87.37 14.26 44.68 2.11 80.82 19.64 89.46 0.49 75.33 7.13 83.75 83.95 12.83 1.76 22.93 5.57 12.20 44.61 57.35 4.72 52.89 86.73 71.46 87.27 88.57 94.41 49.92 15.41 88.59 10.59 71.65 4.52 66.34 95.10 44.46 45.65 93.04 74.12 44.23 88.26 46.66 73.59 4.75 70.96 42.79 10.01 34.11 40.89 16.90 51.04 95.71 11.28 95.49 6.34 15.72 10.51 56.84 29.60 29.16 70.85 24.73 45.12 50.45 43.27 21.61 55.84 16.37 56.42 18.21 76.12 61.63 43.42 40.69 58.48 88.24 53.90 46.53 38.76 20.44 3.66 -44.48 57.70 52.21 59.72 97.18 23.47 69.20 69.59 18.90 85.66 25.74 15.49 74.73 77.97 5.79 80.70 23.81 90.41 61.70 7.06 33.06 77.60 31.34 51.56 39.67 55.66 1.28 71.43 7.08 44.75 41.22 47.81 84.63 64.68 11.66 9.93 99.94 78.68 43.12 27.73 65.17 64.15 86.37 94.88 15.14 12.61 0.97 47.44 22.15 13.14 83.13 39.33 80.80 96.69 37.10 71.68 80.26 88.75 56.32 62.33 59.51 49.60 10.56 19.99 92.76 12.69 80.62 84.61 75.04 90.30 51.23 48.27 69.90 97.52 14.71 91.98 3.07 55.28 2.40 67.78 71.23 76.60 6.19 49.33 15.25 47.33 0.48 58.88 16.74 12.92 40.64 12.62 61.96 93.93 39.80 61.93 22.99 11.81 51.46 17.57 -52.42 55.21 8.18 32.04 26.81 84.77 73.70 75.01 17.20 83.12 83.44 68.60 55.01 61.84 26.67 50.89 59.39 97.07 15.45 70.26 54.56 67.40 17.87 74.57 53.70 89.52 67.91 22.47 79.89 70.98 99.29 92.34 77.80 44.84 87.27 10.79 82.54 61.47 38.04 92.39 4.01 40.69 97.81 11.84 69.83 40.29 40.27 0.71 0.42 53.37 70.95 72.70 13.08 87.74 83.39 28.63 45.88 75.15 35.77 95.35 15.60 27.01 96.94 7.30 89.43 61.50 77.47 35.36 57.59 10.37 39.66 68.32 6.19 75.79 90.13 53.16 15.22 9.60 46.67 24.44 55.39 75.50 66.88 94.37 60.66 71.28 68.99 64.89 84.04 82.36 60.07 55.96 42.79 2.21 25.77 45.02 8.98 37.05 5.15 48.93 -0.46 60.05 56.08 17.24 78.38 93.13 60.88 76.02 34.63 19.51 58.55 24.88 58.06 36.36 30.91 85.99 15.47 72.35 91.18 75.91 62.22 87.36 5.27 3.48 80.69 50.22 33.41 19.62 61.03 51.68 40.73 70.97 5.59 23.56 37.42 7.44 5.21 5.20 24.63 65.75 53.09 74.53 59.62 78.71 33.46 6.87 10.81 61.91 68.52 90.74 84.02 73.43 99.63 80.84 19.99 98.89 17.46 58.94 74.12 87.23 31.08 52.98 20.96 11.16 25.29 54.52 27.90 92.01 26.51 14.92 52.68 80.46 49.22 76.73 16.86 44.33 59.51 93.95 89.27 67.44 34.94 42.62 87.02 30.87 65.94 47.34 58.76 2.24 74.30 11.29 84.73 4.27 34.82 91.69 34.18 70.37 55.72 72.02 58.80 83.67 -2.08 41.88 7.98 63.15 77.96 74.37 39.84 65.87 95.79 42.55 71.37 68.23 27.72 13.32 51.79 51.61 68.38 89.13 62.29 13.00 82.68 98.05 71.35 69.85 39.07 89.54 27.22 48.64 37.73 72.76 41.03 20.20 24.30 68.52 39.88 77.97 2.05 95.31 72.27 6.37 61.66 13.22 13.04 45.74 38.25 72.03 31.63 16.85 99.53 34.86 85.74 12.73 81.36 81.97 31.21 14.37 26.17 63.14 41.22 94.19 52.13 93.96 62.07 91.34 86.77 98.56 13.20 29.28 86.85 13.18 38.32 27.02 65.31 98.43 71.76 35.58 32.15 18.15 29.29 52.39 6.10 68.78 5.26 41.95 98.16 26.76 20.72 81.42 75.92 49.88 77.00 70.49 13.09 70.34 68.77 45.85 10.01 22.73 57.34 30.91 -95.91 3.06 55.58 35.71 28.89 36.09 15.71 88.11 47.39 31.11 42.21 39.89 35.27 66.17 12.22 84.50 56.76 61.08 19.43 46.54 9.32 69.59 7.79 84.13 83.53 0.78 37.53 38.37 68.31 81.41 4.64 45.76 44.65 93.50 61.50 49.40 33.46 10.83 29.36 80.92 48.07 9.58 1.78 86.55 64.86 78.36 74.16 37.89 87.01 22.38 87.91 22.45 51.31 85.09 59.80 26.21 38.97 12.19 66.12 98.18 57.49 43.65 94.93 23.60 54.00 5.52 80.57 30.12 97.82 20.17 81.39 31.37 34.52 63.41 15.89 36.53 73.64 95.22 1.31 45.11 73.24 88.75 23.32 51.72 97.13 48.96 22.80 1.72 93.62 11.62 35.59 20.08 68.45 42.39 70.62 43.20 69.11 97.52 7.62 80.25 -54.34 13.58 79.74 44.34 34.85 54.98 55.37 42.03 15.10 99.04 72.24 38.75 35.64 48.52 22.94 23.68 82.53 55.64 17.26 60.05 69.30 13.56 3.28 9.57 65.62 45.62 83.16 6.05 40.36 21.35 55.52 74.43 11.44 30.44 38.06 65.72 51.32 6.69 89.63 50.17 45.32 87.75 68.86 49.84 9.36 20.44 97.84 28.31 7.25 1.07 39.71 9.08 93.72 11.26 99.23 97.80 61.98 42.65 64.53 86.17 2.84 43.67 63.95 97.67 6.88 16.79 75.24 1.99 84.01 23.60 42.75 51.16 94.12 41.50 79.76 2.02 60.75 4.97 80.22 60.90 13.69 10.53 77.28 70.75 45.63 80.62 92.18 16.88 57.67 22.32 83.93 11.71 45.57 81.33 2.25 41.18 33.20 13.63 12.56 21.18 -8.95 12.27 84.48 63.16 50.63 53.60 67.23 57.46 62.94 92.16 47.29 82.97 23.66 19.93 98.52 65.34 13.67 40.42 67.29 30.67 67.52 19.13 40.42 34.80 11.88 26.00 52.06 30.44 22.30 6.80 56.25 10.03 31.10 56.19 67.98 36.59 22.13 33.23 13.63 42.09 72.78 27.72 12.79 97.65 74.41 17.60 7.62 43.76 19.99 83.43 89.82 4.75 94.04 39.07 61.45 58.98 95.16 39.53 74.21 86.10 92.33 44.71 99.64 7.08 12.69 75.13 41.84 10.98 29.10 83.62 99.43 10.16 26.89 63.15 31.80 66.87 67.67 21.80 83.00 47.24 30.87 13.58 20.15 19.49 93.22 46.09 87.79 3.24 88.33 27.54 78.27 30.51 93.29 73.01 37.97 46.54 54.12 34.05 63.17 49.90 -86.01 93.48 27.41 4.24 2.20 87.83 46.64 64.95 57.14 63.54 79.19 22.40 96.37 33.86 37.12 63.47 86.76 67.69 14.51 88.62 69.70 40.70 98.44 74.59 28.06 49.51 82.62 99.40 12.70 7.15 68.19 25.71 63.83 44.77 47.29 68.54 87.35 92.21 13.65 34.85 38.11 54.46 20.07 12.20 14.35 31.96 23.16 79.58 62.15 67.72 83.93 89.01 7.60 17.89 90.28 61.83 69.13 80.63 87.73 28.98 22.13 23.59 37.91 16.34 86.66 80.06 99.83 26.35 68.99 38.91 62.45 40.62 24.34 46.97 34.11 63.51 15.20 78.03 7.87 32.87 98.13 45.78 70.88 23.51 52.10 75.90 27.89 58.89 5.68 4.37 93.48 48.02 29.81 91.45 27.46 38.10 18.28 69.37 76.30 83.31 -98.86 76.68 31.53 41.03 27.36 40.02 85.49 33.99 37.47 65.77 64.42 44.46 82.31 49.45 63.79 54.15 49.18 32.74 39.89 2.70 12.55 28.76 35.20 23.01 67.04 90.14 62.51 38.28 92.81 76.84 74.66 65.51 25.91 40.81 13.05 66.90 25.53 66.31 50.59 75.97 87.46 97.34 86.47 27.50 9.89 99.43 22.76 21.65 87.98 24.57 26.20 25.28 73.76 62.58 6.61 63.59 8.69 16.68 5.28 18.80 44.06 54.54 33.95 98.30 92.56 26.34 99.85 81.27 73.73 56.96 92.90 1.10 31.08 89.62 41.56 8.83 54.40 77.23 82.08 91.24 57.33 67.40 57.18 61.79 33.83 50.47 78.92 37.35 59.69 33.36 92.62 83.24 30.06 0.20 78.27 57.03 16.76 8.95 49.99 28.74 -97.32 31.98 55.15 40.38 4.59 44.72 89.94 12.82 92.20 34.21 71.39 34.65 58.30 20.21 67.59 8.04 77.67 7.07 14.14 43.25 63.79 66.27 22.90 95.99 0.37 53.18 86.44 60.85 99.24 86.15 10.55 37.92 71.11 24.92 96.90 39.57 80.74 82.04 35.23 55.17 3.44 73.64 83.16 94.26 99.16 95.88 79.73 30.31 82.26 23.21 56.03 46.25 75.16 55.62 6.92 11.43 55.58 28.66 33.34 34.14 27.51 60.45 86.41 5.53 86.65 43.64 64.73 50.61 35.44 76.26 90.37 74.34 50.77 18.84 23.15 79.77 48.19 22.61 2.50 10.16 20.86 66.38 72.31 92.94 96.30 79.25 56.37 61.49 36.96 99.82 20.76 18.19 9.59 39.89 91.71 5.90 10.88 31.97 34.63 45.16 -20.72 11.69 95.49 78.09 45.11 17.47 97.97 18.66 0.71 9.00 59.05 13.43 76.80 23.07 69.26 75.01 37.04 71.06 57.72 85.87 55.78 18.60 27.50 40.21 63.96 64.53 15.76 62.95 94.30 30.70 15.25 25.43 4.56 99.62 20.44 90.63 33.09 38.11 33.39 13.07 41.14 12.46 84.33 75.92 50.11 68.04 11.45 73.30 80.94 21.13 21.92 41.80 19.88 15.67 17.44 27.86 57.38 59.84 65.20 12.42 14.72 82.49 13.12 50.50 84.39 24.99 52.33 79.34 57.12 68.07 72.57 61.48 86.89 42.38 38.65 36.78 57.21 72.14 43.13 61.49 37.36 69.14 87.74 45.44 67.73 60.74 13.19 98.13 48.92 17.67 23.25 11.93 71.04 24.94 47.16 3.86 37.64 12.63 16.76 66.08 -64.25 36.14 35.24 68.49 39.52 38.47 43.90 0.67 32.83 85.96 58.57 68.54 41.77 29.36 45.16 52.99 10.21 77.38 52.60 80.69 27.44 1.52 63.45 35.75 50.58 83.65 2.02 64.24 45.88 4.15 90.62 13.34 78.50 33.57 43.32 9.16 48.91 30.68 99.23 81.93 47.92 7.92 17.83 91.29 87.20 51.27 18.25 85.11 95.37 99.50 21.77 98.28 4.74 22.52 44.83 15.84 35.65 86.67 14.32 39.96 49.29 41.54 33.02 32.63 96.93 25.13 51.46 20.44 76.87 69.76 8.75 98.34 12.69 72.58 73.68 44.95 70.19 20.03 33.43 76.17 84.10 27.69 31.52 87.88 64.18 22.69 91.43 0.93 8.25 79.18 36.25 7.42 14.73 19.60 32.24 17.73 41.05 67.45 51.87 50.58 -8.24 27.52 31.84 32.40 92.34 47.44 87.29 40.79 37.48 93.23 90.50 69.06 11.61 38.10 90.78 43.61 18.17 16.06 54.99 2.38 9.60 86.31 88.07 44.54 20.06 83.38 33.08 86.60 40.03 41.79 2.45 12.51 16.76 13.83 54.07 45.87 57.37 45.46 81.64 27.89 67.44 50.52 10.87 83.24 3.11 19.12 82.04 99.68 71.79 33.27 57.48 19.04 30.47 80.95 15.53 92.55 80.65 84.27 47.38 27.11 1.05 43.69 80.95 82.93 41.00 42.86 28.35 85.22 87.33 52.37 85.35 62.06 76.99 34.62 92.38 42.68 81.99 68.80 48.95 59.28 49.22 32.59 45.93 52.23 4.25 58.49 71.04 62.54 93.85 50.88 78.60 11.59 90.91 56.36 53.85 7.76 83.85 25.42 27.49 87.98 -5.00 4.07 18.25 39.06 96.45 62.00 13.55 27.51 64.80 80.69 77.91 81.27 15.48 2.02 2.12 30.87 25.08 50.40 62.86 37.69 94.40 95.01 0.26 15.73 43.59 73.54 49.08 83.24 34.03 77.63 69.52 45.86 89.51 66.11 1.49 46.94 77.47 45.01 16.22 21.13 53.59 1.63 73.93 28.85 87.04 61.78 86.80 1.36 29.36 65.51 62.90 59.91 38.72 71.18 93.13 70.56 59.65 75.83 63.82 47.15 51.84 32.00 69.53 41.76 40.32 88.01 13.08 11.90 37.15 25.15 3.84 64.38 50.01 2.66 31.24 46.22 30.38 36.45 65.90 92.30 65.27 99.92 80.25 99.01 66.41 37.32 20.55 21.81 78.41 18.67 13.35 57.38 57.69 71.67 51.27 75.92 28.05 87.25 1.95 70.66 -61.48 93.74 51.62 40.39 42.90 15.81 85.08 56.10 1.66 0.93 60.07 35.58 73.42 51.66 71.72 30.82 68.27 18.72 13.16 19.35 45.36 54.86 21.22 43.78 19.23 93.96 17.61 39.82 12.57 57.04 72.33 62.54 49.27 4.36 23.92 74.20 90.66 62.13 95.61 99.33 88.97 80.35 81.43 86.17 83.99 47.61 48.67 2.09 93.33 98.53 60.66 18.45 3.97 95.10 88.02 14.99 52.13 53.18 79.41 37.17 59.02 64.39 6.85 38.36 16.29 34.52 43.25 18.47 83.27 88.37 61.95 85.68 64.41 59.09 56.77 31.73 80.14 51.09 68.42 4.56 43.02 86.51 67.34 25.68 80.86 44.91 68.28 18.40 12.75 36.39 65.39 79.89 3.93 88.43 36.83 62.95 74.52 80.23 48.26 52.44 -62.37 46.28 64.16 89.55 30.57 33.53 6.87 42.59 91.49 72.23 78.06 14.26 94.17 92.61 69.67 4.17 44.49 88.14 33.49 65.74 36.81 69.22 47.87 10.02 34.63 97.51 87.29 79.90 59.66 41.57 10.48 91.96 93.39 25.09 85.20 74.84 68.41 39.02 53.76 59.76 44.24 81.05 78.51 41.88 55.47 24.00 17.77 76.48 15.17 82.52 32.60 54.11 37.36 16.31 19.31 64.83 13.68 98.66 74.61 29.67 32.10 43.69 14.44 34.59 49.50 55.67 69.65 14.99 91.04 22.34 83.85 98.44 60.73 98.22 7.86 38.36 4.07 26.14 80.21 55.01 14.00 70.68 81.00 82.93 16.88 10.41 73.96 32.47 91.38 50.95 51.71 73.65 43.70 41.74 17.11 98.53 64.29 47.12 15.48 1.07 -99.81 70.17 68.63 33.37 78.87 47.38 82.83 44.06 59.78 27.03 93.58 37.97 16.39 64.27 52.89 2.46 51.47 56.02 31.84 11.31 43.78 24.73 8.20 40.60 91.53 84.74 27.95 31.85 64.58 79.12 41.51 51.11 23.18 87.64 65.78 18.20 48.32 96.73 38.06 84.61 10.03 27.14 18.98 78.13 23.96 83.68 98.51 83.41 32.22 12.19 71.54 45.62 48.92 96.81 85.90 17.97 92.93 36.77 0.89 27.57 76.47 13.83 0.42 56.87 38.84 66.84 33.45 59.19 88.60 83.49 60.21 87.10 16.94 70.11 80.71 19.98 61.30 74.50 48.57 48.83 1.55 52.46 61.43 31.75 88.75 99.56 33.74 38.11 62.09 81.55 99.29 36.62 16.94 45.11 29.01 19.01 88.48 48.49 98.17 19.84 -82.45 85.78 32.40 84.74 84.98 85.19 95.87 81.50 88.67 8.51 97.50 68.40 30.89 41.05 13.67 53.02 37.90 89.01 47.83 56.16 1.43 33.71 3.24 66.21 60.28 7.15 75.31 69.98 84.62 72.19 0.41 86.49 21.18 95.39 13.33 56.11 9.39 68.31 82.40 39.00 14.91 48.73 56.50 85.98 99.60 18.29 89.38 22.34 4.16 58.18 90.96 19.64 70.62 11.50 12.96 45.23 61.05 49.62 31.21 8.34 72.37 54.69 70.77 77.69 19.54 73.31 78.38 62.51 82.75 93.67 98.62 43.43 56.55 90.55 2.13 52.82 34.86 88.54 36.70 83.87 86.84 22.09 99.99 91.27 9.39 67.74 36.43 20.88 2.84 53.23 60.00 15.54 52.26 54.28 48.91 78.93 37.86 11.38 96.03 51.12 -70.45 98.67 8.93 56.64 10.38 51.67 33.34 9.20 76.93 96.53 16.93 2.90 80.23 23.28 5.81 13.69 16.82 83.33 0.01 79.51 84.48 90.88 67.56 78.38 46.14 60.97 95.15 78.84 9.17 60.50 73.40 30.91 81.89 42.64 68.84 85.16 59.60 92.25 46.97 95.88 42.93 95.90 87.96 70.32 5.57 90.51 67.00 92.97 89.42 76.14 29.06 98.83 33.19 12.19 40.70 80.31 81.65 39.89 96.64 60.20 22.90 25.72 16.21 99.58 34.24 93.19 16.64 96.43 38.09 36.43 78.05 53.42 3.34 1.54 87.58 82.35 47.45 39.44 69.58 47.54 9.11 57.14 72.06 61.48 23.75 71.59 67.70 50.66 61.45 88.86 41.91 10.26 4.19 48.80 30.42 17.49 88.36 12.05 32.70 72.88 -82.67 95.65 66.29 81.37 72.75 48.45 93.67 66.18 43.11 84.14 82.94 28.25 77.40 87.73 67.70 21.03 61.28 53.87 7.32 67.47 89.98 43.71 88.51 46.51 94.09 61.58 38.81 29.96 47.99 48.56 6.72 3.54 6.51 76.29 79.34 21.72 33.50 34.70 66.93 70.63 38.79 47.33 5.36 21.48 73.61 24.23 41.78 47.34 82.47 33.32 92.47 35.50 21.66 69.03 85.71 95.07 41.11 1.92 23.05 48.21 99.56 36.05 5.16 75.28 84.41 99.86 63.80 37.39 72.88 62.99 22.44 8.06 79.01 92.17 38.38 97.54 80.22 84.74 30.48 84.76 28.77 90.22 56.92 37.12 92.65 11.32 18.68 95.33 4.73 80.67 11.90 35.08 7.56 61.96 33.57 64.55 23.79 16.30 39.93 22.39 -32.30 73.58 30.50 64.76 10.96 70.61 64.01 48.28 95.34 10.71 19.29 80.64 72.73 18.28 28.86 79.19 69.88 56.75 37.01 83.12 87.01 0.79 77.23 92.67 87.96 23.45 72.69 29.09 93.79 14.64 48.15 71.54 4.29 45.98 72.56 67.16 44.14 59.82 95.32 87.67 33.77 29.00 53.39 74.36 79.60 88.46 27.51 79.19 82.44 65.13 41.93 4.54 2.75 73.72 24.22 40.20 74.71 59.35 4.38 9.33 21.14 70.08 2.99 57.56 2.67 32.68 3.48 55.59 29.41 69.37 79.38 78.04 67.07 39.73 58.93 33.74 89.19 22.39 70.90 35.56 54.09 4.06 87.91 61.75 5.26 29.24 50.88 49.72 31.72 62.67 7.33 59.52 85.21 13.63 25.58 96.56 40.08 5.46 28.82 0.72 -23.15 38.19 20.97 20.84 93.48 88.53 93.86 32.41 5.62 98.45 69.01 8.11 78.51 47.31 3.97 97.22 88.89 14.74 66.35 74.77 0.22 95.97 12.03 83.92 8.54 66.36 47.14 2.51 63.75 52.41 98.56 33.63 45.04 74.52 26.78 79.02 53.87 60.43 73.61 63.52 22.34 1.56 93.11 0.10 24.94 30.88 57.88 50.82 49.73 81.23 53.27 64.97 72.50 16.81 96.00 87.97 18.41 4.11 94.57 26.21 10.90 58.81 65.73 31.67 92.43 41.78 55.77 12.39 92.12 36.01 21.77 54.01 3.24 36.80 50.32 17.93 33.00 50.33 67.17 91.50 93.25 29.29 59.82 76.23 45.34 39.33 90.28 21.87 81.82 55.09 9.00 77.00 21.26 76.60 21.42 32.31 75.96 62.35 75.57 50.17 -43.04 61.60 17.95 90.82 48.57 18.94 40.85 42.03 65.51 54.08 52.03 62.29 10.74 50.15 15.32 29.16 1.82 76.25 38.95 90.95 4.24 77.30 14.50 26.09 30.33 52.60 72.50 59.67 25.32 26.63 64.44 14.98 75.98 5.04 79.41 30.76 11.42 44.64 2.48 98.73 95.80 21.52 34.35 26.95 17.05 47.69 75.09 33.24 80.75 94.12 77.06 65.27 59.59 55.49 41.10 22.78 59.65 3.36 60.35 8.49 46.55 39.79 73.98 46.76 11.73 23.75 79.82 67.81 92.66 4.68 90.67 17.74 38.46 76.40 86.69 6.35 64.56 32.83 65.13 32.40 94.83 9.98 33.79 73.52 37.58 47.00 88.37 96.83 27.92 46.83 46.07 68.77 9.50 66.75 46.90 77.94 41.40 34.04 58.77 80.80 -24.93 99.94 46.27 25.38 69.70 59.28 74.17 66.18 0.20 0.26 6.07 14.36 10.73 21.44 49.34 98.67 77.35 72.79 67.05 92.55 55.20 44.93 32.48 72.85 32.52 31.88 45.06 99.04 21.25 49.49 39.05 54.13 1.37 65.46 71.92 43.71 55.84 39.98 44.85 74.43 67.63 89.81 60.77 24.61 20.94 39.70 74.01 22.22 76.66 31.52 89.42 4.01 31.39 0.29 77.22 64.66 36.16 66.78 89.74 33.32 25.60 96.69 98.08 70.38 50.57 2.36 87.94 93.83 57.63 95.21 34.97 86.56 5.67 48.88 22.07 37.63 29.40 86.35 22.24 28.59 47.11 4.79 77.03 21.33 6.06 27.15 55.00 49.56 51.31 93.07 74.01 55.46 33.04 70.17 89.34 63.48 71.36 96.42 42.78 91.76 -56.58 84.49 35.11 72.95 24.99 5.96 65.56 19.85 59.59 94.27 51.59 6.16 68.23 3.83 63.30 19.31 6.06 56.44 51.27 81.43 21.14 52.49 61.62 53.09 51.75 93.70 72.09 49.75 4.58 70.17 72.58 90.40 72.61 79.15 19.93 56.52 94.66 59.35 33.14 32.27 50.90 48.49 98.85 30.41 99.20 59.25 28.16 15.55 55.30 80.27 53.36 1.35 83.65 92.60 72.68 63.38 0.57 8.86 40.69 9.46 2.30 64.67 81.29 99.47 98.40 49.44 7.80 25.27 28.89 82.42 41.49 97.39 11.86 60.89 6.13 41.60 52.34 70.99 46.03 11.05 31.89 43.94 82.28 83.19 16.59 63.19 35.53 89.07 57.15 21.60 4.97 76.10 72.27 27.89 87.20 47.36 63.82 32.07 89.10 82.72 -89.52 6.15 0.34 67.22 44.65 51.28 82.64 31.62 91.87 94.92 24.50 46.04 33.34 60.74 73.28 90.41 58.68 86.38 21.08 29.93 16.95 21.98 37.97 93.99 39.65 97.50 33.21 96.14 0.14 48.42 77.06 46.57 85.63 74.82 4.17 3.93 66.06 36.01 59.21 94.44 19.21 71.04 46.99 77.63 8.24 35.69 24.28 48.23 88.69 33.18 28.39 46.93 1.05 71.62 62.68 67.87 20.72 89.58 21.76 85.44 0.86 73.88 38.93 14.15 26.90 28.50 38.49 26.39 85.86 32.63 71.88 84.03 50.70 40.57 89.73 71.91 52.02 78.30 64.23 53.98 37.42 26.21 2.72 22.75 87.28 94.47 68.00 42.24 92.60 34.92 36.13 11.17 23.93 4.88 62.53 49.75 67.56 39.17 33.78 59.49 -58.79 90.15 25.43 39.69 56.36 20.95 98.17 48.99 73.55 19.11 85.08 0.48 76.91 82.70 95.18 20.41 17.20 25.26 58.58 91.72 22.22 23.92 78.96 64.37 22.88 28.33 96.39 46.94 25.64 67.77 2.93 36.54 33.77 55.46 82.77 42.23 37.75 61.63 10.91 48.97 70.35 87.48 89.25 59.22 80.67 74.81 92.47 62.90 86.53 72.93 78.31 75.06 42.90 86.32 56.91 96.06 58.00 3.31 43.97 15.56 66.71 48.84 0.01 59.73 20.99 57.16 43.01 1.14 25.93 5.79 64.81 9.50 65.21 69.56 5.67 21.00 5.14 97.41 10.35 97.85 93.56 52.52 62.13 88.98 57.89 10.99 61.33 18.99 43.49 36.01 48.44 6.79 27.28 63.80 3.37 25.86 38.69 21.75 49.35 67.44 -37.09 25.17 88.98 74.53 15.18 5.84 10.95 84.99 28.11 23.96 15.71 48.19 58.68 6.35 9.56 93.59 59.58 89.03 8.30 2.30 53.60 83.70 49.20 17.01 18.25 9.30 77.82 65.17 68.41 35.61 70.43 96.96 54.69 56.66 11.10 98.52 42.85 81.40 72.89 94.10 82.99 46.14 53.40 81.29 3.60 95.54 42.40 41.52 26.23 65.10 73.34 22.45 95.56 47.48 17.63 84.09 13.96 79.29 3.24 22.44 42.50 72.55 29.84 37.60 3.21 73.81 7.29 69.71 60.42 90.73 41.23 39.37 79.42 72.28 82.45 95.75 59.60 49.32 98.43 27.97 37.42 65.45 37.70 2.88 47.17 45.53 82.34 11.11 3.98 60.28 37.97 47.04 90.29 65.83 76.78 92.99 32.78 81.53 65.31 98.04 -79.12 48.09 55.93 68.83 79.39 88.50 64.96 99.70 30.27 15.00 83.00 78.25 63.32 48.19 63.55 52.40 34.31 88.13 48.83 12.36 19.01 41.27 47.99 64.84 19.24 0.89 74.55 77.07 7.90 44.85 33.01 9.18 98.66 40.86 92.50 29.60 24.80 34.22 69.95 71.10 87.74 60.42 62.34 21.29 68.65 31.89 24.60 47.02 32.92 84.60 62.91 31.66 26.99 44.28 62.60 25.80 50.11 25.51 23.10 14.30 84.98 54.71 68.36 1.55 89.57 4.07 52.46 9.66 49.14 14.43 66.51 65.73 54.69 45.31 64.05 36.84 55.71 58.29 25.95 13.99 45.67 11.05 29.04 47.31 51.02 87.49 9.46 86.59 18.48 55.36 35.43 44.45 21.27 5.72 50.90 98.15 48.06 37.56 63.54 60.58 -16.37 59.86 3.41 44.49 2.52 44.88 68.97 36.57 93.64 20.47 76.74 97.68 7.10 11.35 24.32 41.73 78.88 30.80 77.82 54.92 10.31 90.42 10.37 59.93 74.96 37.46 54.56 27.08 90.74 32.16 0.51 34.08 87.89 80.67 44.81 5.10 69.72 44.91 37.03 93.24 98.44 72.88 39.15 79.79 11.15 43.71 8.43 37.19 7.28 3.49 32.59 35.03 75.43 42.62 14.25 13.52 36.76 77.49 21.36 2.08 40.51 2.42 98.73 18.46 1.26 89.70 51.16 19.26 37.66 43.57 16.36 68.40 9.98 3.80 8.14 87.40 45.36 95.85 49.96 62.35 99.21 99.31 24.46 99.76 1.17 86.47 27.08 97.29 64.90 31.79 19.18 68.59 4.06 47.12 27.66 28.05 79.67 45.96 44.72 17.95 -40.28 97.34 65.28 80.29 17.46 47.26 94.74 19.97 86.67 3.27 34.68 67.02 34.63 88.18 33.21 45.77 98.46 32.25 51.38 76.90 20.19 22.39 3.69 51.97 88.36 34.96 53.91 52.78 75.64 52.88 55.22 7.18 52.81 51.04 60.73 37.98 40.20 90.90 43.94 61.82 79.10 81.65 8.22 80.40 37.58 41.20 22.72 26.87 42.43 38.41 34.14 42.52 78.06 73.10 80.62 75.66 13.39 10.42 75.14 8.97 0.21 74.87 80.44 16.87 79.54 36.27 93.76 46.84 46.28 31.69 15.01 5.94 12.44 6.86 88.52 83.17 46.46 65.87 86.24 15.73 14.64 26.59 28.76 85.23 98.05 41.65 70.77 42.85 64.20 47.18 12.58 29.83 32.27 75.92 44.22 13.70 42.60 13.37 80.69 56.30 -94.95 8.21 15.12 91.19 80.02 87.27 70.86 1.79 98.28 91.72 50.14 32.41 58.44 79.25 64.39 53.13 61.70 53.08 82.95 82.14 86.60 45.13 96.03 19.49 34.09 38.00 41.21 94.25 14.82 2.21 40.91 66.01 70.41 58.59 79.03 42.75 44.70 78.26 39.66 27.65 22.87 46.44 97.65 34.23 81.67 90.87 73.94 54.92 3.61 25.27 33.56 55.39 17.82 96.88 49.60 4.85 83.17 18.25 51.88 77.73 37.32 2.23 81.09 2.94 23.72 36.90 33.69 43.43 52.19 42.62 28.61 80.17 39.20 71.66 10.81 63.38 6.76 20.69 5.22 49.26 98.85 75.55 17.92 55.17 69.78 39.07 81.41 45.85 95.90 61.76 66.23 65.61 23.42 60.59 38.19 13.15 55.16 17.25 43.14 11.54 -45.61 91.59 85.38 65.76 37.76 92.83 33.78 22.24 53.12 12.46 75.89 68.50 16.58 24.62 59.62 30.97 58.91 5.06 76.31 24.80 45.99 96.27 58.39 31.23 47.00 27.53 21.51 17.73 34.88 82.10 99.84 82.55 59.73 20.77 28.52 5.95 48.37 62.75 15.70 42.86 33.77 71.44 16.67 46.46 89.79 57.28 65.72 41.31 97.51 76.10 83.20 65.48 5.72 51.59 60.69 67.62 7.58 67.65 31.62 59.09 55.10 60.96 66.04 83.97 22.17 42.42 35.80 91.69 79.12 35.12 70.83 76.70 62.02 89.30 18.25 91.33 11.49 89.96 99.38 67.73 11.78 6.30 26.20 75.34 40.75 46.88 29.16 28.38 41.71 80.65 7.92 35.63 53.50 57.08 57.24 69.93 87.16 44.21 40.42 21.64 -10.70 93.99 63.80 85.78 48.21 3.11 6.50 9.38 85.90 90.71 72.52 97.65 56.21 55.00 6.19 19.42 44.44 4.94 36.77 96.60 17.85 13.11 29.03 41.47 51.98 68.08 90.27 21.46 19.44 1.15 84.51 44.21 57.09 70.39 11.80 90.86 35.28 73.30 25.70 24.08 95.00 25.88 60.31 50.94 26.63 96.16 45.49 56.32 45.77 6.82 16.75 8.92 53.45 8.47 67.55 36.89 40.29 92.28 40.02 2.65 31.53 34.42 47.27 62.86 0.27 50.89 71.80 97.08 58.83 85.80 44.89 69.76 34.77 2.79 66.36 28.28 72.56 95.75 18.99 80.58 5.74 98.49 22.73 55.25 69.85 66.17 7.18 42.88 41.55 3.83 46.86 18.05 55.88 28.89 82.49 24.76 65.28 22.75 30.91 62.17 -0.90 81.51 57.69 89.85 65.24 23.55 6.19 42.77 34.83 33.39 99.36 56.69 34.25 92.79 47.97 2.12 94.77 18.42 41.58 16.45 97.36 99.92 37.38 13.04 3.95 77.71 71.05 73.09 34.40 92.45 51.44 38.68 11.21 66.23 71.79 84.74 56.71 89.10 61.85 68.91 82.69 51.63 51.06 1.55 84.01 62.23 82.26 97.65 93.38 92.95 94.15 2.68 78.88 92.35 69.21 44.79 79.40 69.28 66.77 72.15 34.66 10.68 16.86 76.00 30.31 44.39 67.89 21.92 30.17 84.66 67.74 8.25 28.35 58.64 35.23 65.51 1.14 94.60 35.71 46.72 3.92 85.36 76.81 71.70 0.20 63.88 24.64 32.32 98.04 77.54 87.47 71.37 6.43 81.04 19.63 60.03 77.59 81.85 50.34 18.97 -20.31 95.17 23.71 6.55 14.66 8.62 27.35 44.58 68.80 53.96 10.81 78.05 69.56 86.79 59.46 33.89 63.67 81.10 3.38 43.87 51.53 69.04 57.20 12.00 19.64 68.22 66.27 21.61 28.27 6.96 22.78 12.70 90.50 58.61 9.95 43.72 6.20 85.77 90.13 3.02 47.09 39.47 94.03 6.25 83.41 43.59 3.41 52.61 40.35 94.73 36.87 86.71 36.88 98.45 5.16 34.63 60.60 24.53 77.70 55.10 23.66 97.88 20.30 77.68 84.81 69.27 92.30 64.54 28.64 48.25 89.17 10.83 54.64 71.04 92.37 24.84 2.49 59.08 10.01 76.38 28.09 15.54 99.50 62.16 61.99 98.12 50.51 55.57 52.91 78.88 27.34 30.84 96.99 97.28 48.66 74.72 12.21 64.90 55.63 18.41 -69.46 26.09 75.27 99.02 45.42 41.45 55.93 31.62 30.41 88.58 37.99 58.42 67.88 60.62 46.51 86.99 59.06 17.89 75.16 14.14 63.50 33.34 85.98 5.71 38.66 78.45 1.94 69.66 69.92 40.92 79.16 59.96 98.50 88.84 65.43 3.91 68.53 4.25 90.89 18.66 67.44 22.79 9.58 83.41 14.36 46.75 20.66 11.64 16.56 29.55 57.92 27.85 4.35 41.06 34.76 62.42 94.48 75.58 11.40 17.21 99.35 5.18 90.49 67.58 98.15 54.48 34.45 22.71 46.22 92.28 84.13 90.43 70.26 51.98 41.56 19.81 33.34 97.05 31.15 21.04 33.72 95.40 90.96 87.73 45.82 63.04 24.19 90.59 69.64 54.28 63.78 80.64 20.80 41.15 89.26 16.79 79.78 39.86 7.66 62.07 -56.23 26.61 80.94 84.83 70.90 74.67 17.00 44.11 82.88 0.20 70.74 59.26 68.52 82.32 33.68 61.75 57.67 29.72 45.31 40.58 28.11 17.14 34.52 75.29 49.85 60.28 0.79 88.91 53.10 37.98 95.03 60.62 91.40 2.65 57.65 17.81 72.18 0.34 1.76 26.07 83.00 38.92 13.11 17.03 92.65 36.46 95.23 15.66 33.12 82.79 94.62 25.52 56.10 52.54 97.10 24.27 2.94 81.50 51.49 46.07 56.14 70.24 86.15 60.61 99.63 0.79 85.55 92.79 31.93 58.56 0.59 49.99 77.85 32.57 81.20 71.82 82.84 13.58 52.90 46.14 61.94 89.57 80.47 56.30 23.40 94.11 55.87 90.78 69.64 75.92 17.87 12.70 40.95 49.51 50.44 69.46 73.96 31.66 52.27 78.45 -45.47 71.80 4.05 97.48 66.21 16.62 41.84 31.13 3.93 96.46 17.67 74.43 72.50 67.18 43.73 42.87 62.12 83.12 37.46 86.50 41.83 18.84 26.51 36.42 17.93 30.14 31.03 84.67 25.22 29.69 70.32 2.89 46.10 39.02 72.35 38.02 93.89 66.84 57.83 84.74 64.43 42.66 48.54 89.72 1.13 12.48 80.58 78.50 95.50 94.46 39.59 24.37 15.75 48.04 26.88 35.56 59.84 80.52 7.10 36.96 42.30 20.48 97.21 75.30 46.08 95.28 47.75 58.52 12.19 62.90 15.23 92.68 42.37 11.26 26.97 28.87 11.67 39.61 54.27 22.56 18.88 19.89 22.95 31.17 10.21 11.17 85.23 24.86 44.34 58.70 63.56 18.46 25.02 96.66 85.66 64.21 52.92 35.25 99.17 70.92 -70.13 97.54 56.65 74.86 75.31 25.82 15.92 16.54 24.70 56.47 49.43 84.53 12.83 61.25 41.34 11.81 43.59 49.07 20.47 7.58 86.69 4.45 98.69 63.10 18.94 70.08 90.32 89.29 3.91 15.87 81.28 83.61 38.48 6.40 56.11 6.04 34.61 62.36 58.69 1.20 26.79 2.42 9.22 43.57 29.84 42.22 54.22 37.41 94.26 55.46 64.96 23.12 66.78 76.97 7.20 59.64 49.20 29.83 47.20 32.87 45.15 19.08 49.96 84.30 10.54 81.92 92.10 22.12 12.42 17.73 36.28 68.76 87.51 28.08 22.56 62.62 93.65 67.77 39.72 54.68 28.14 56.57 39.00 69.21 25.20 34.81 4.49 50.56 9.23 46.30 77.95 6.12 100.00 22.30 30.64 44.27 20.32 76.64 54.04 69.09 -20.55 23.29 1.10 55.48 76.17 44.23 49.92 32.86 98.70 65.18 56.26 5.59 29.98 9.30 76.91 85.78 72.95 50.54 73.29 37.60 22.89 58.39 28.81 98.13 42.61 52.68 76.17 39.00 49.61 28.87 89.03 59.61 20.75 30.44 92.75 27.87 50.96 41.07 19.95 87.26 42.26 65.32 38.31 74.89 20.06 30.87 75.75 56.76 24.82 60.15 27.98 58.30 90.96 43.71 63.86 27.87 56.05 79.40 2.75 72.70 66.51 92.53 75.93 55.86 18.81 59.85 69.22 77.14 44.78 25.73 66.47 4.31 95.63 45.42 76.88 47.73 62.09 26.22 14.85 73.92 96.07 93.15 86.22 41.73 37.92 63.81 74.70 59.54 56.83 65.07 36.43 46.43 85.87 76.74 9.20 23.73 39.41 59.64 53.88 61.45 -66.07 91.78 81.51 31.73 63.45 13.37 38.99 1.27 2.29 74.84 28.47 66.50 57.25 9.02 81.76 59.35 3.32 63.45 16.66 83.36 70.89 74.58 21.69 98.07 44.96 14.72 34.17 18.42 19.26 99.79 93.39 80.87 9.25 92.60 75.51 94.13 4.38 27.96 88.82 53.51 59.78 32.74 83.68 21.05 7.46 84.35 25.25 29.43 79.72 91.63 73.05 48.10 55.01 90.16 88.25 95.95 97.60 10.12 60.13 8.42 65.70 87.70 21.96 74.03 35.29 64.21 47.89 8.09 34.66 55.18 80.87 6.46 81.72 32.35 26.15 13.34 1.65 28.54 45.74 55.86 5.09 89.67 12.20 84.45 20.94 7.85 29.43 81.47 43.90 82.23 29.20 57.05 54.14 7.33 72.63 54.40 64.51 44.27 43.43 49.15 -10.36 97.20 51.66 49.19 13.31 48.43 42.23 40.56 13.33 1.65 69.51 50.36 25.20 87.60 56.70 54.73 9.01 21.24 70.87 10.15 13.12 69.84 89.70 59.02 12.59 38.30 22.46 81.03 1.15 37.83 59.06 50.52 42.48 59.55 90.99 99.36 85.41 32.01 1.18 35.83 23.46 53.30 66.91 88.74 9.29 27.97 90.12 60.02 38.67 11.14 63.99 95.58 68.26 32.41 60.47 62.66 87.09 57.45 46.80 0.46 43.57 36.71 91.88 51.96 6.46 67.38 65.74 0.99 67.33 4.43 26.29 85.54 17.73 99.70 22.99 32.94 66.72 68.78 80.53 41.67 61.74 4.20 58.22 93.62 24.42 88.16 62.54 68.01 44.20 26.78 62.91 21.23 88.26 98.25 66.65 27.32 85.26 38.40 10.20 49.42 -0.77 1.23 86.96 83.94 96.42 82.84 76.01 44.26 24.76 62.28 81.12 89.86 60.89 23.65 77.24 11.07 36.70 60.88 66.54 68.91 66.58 97.16 68.44 87.25 73.88 13.11 84.86 92.03 42.65 5.77 5.66 56.30 74.32 57.15 25.38 74.45 10.82 78.42 90.24 93.77 30.83 97.81 94.17 13.53 6.47 32.71 7.24 89.45 81.67 1.43 42.45 98.15 45.31 17.07 36.04 35.96 34.66 22.90 93.73 86.12 22.14 67.07 7.06 19.48 65.06 68.05 55.82 98.92 61.03 82.43 60.07 42.00 57.39 6.97 28.90 53.30 48.93 24.11 1.52 88.83 28.47 0.54 52.83 71.10 82.10 68.17 63.88 15.13 20.13 51.28 70.68 6.32 92.84 18.16 58.61 5.86 84.31 82.85 59.91 48.36 -61.42 20.36 49.97 31.39 11.10 81.08 29.53 26.38 83.77 53.31 79.29 2.99 45.06 41.80 74.95 37.59 82.16 64.98 41.11 11.40 43.80 90.98 65.52 5.08 7.92 47.18 37.54 10.00 91.02 91.46 39.30 82.50 66.37 4.51 95.85 49.62 32.37 39.43 18.97 52.02 60.73 70.68 73.09 44.01 4.73 11.85 35.43 23.57 31.74 21.75 63.43 69.77 18.34 47.67 69.98 87.24 61.32 51.72 34.60 6.96 97.61 82.80 11.22 72.35 1.92 47.97 28.18 66.75 9.66 85.41 22.35 70.54 64.96 3.31 48.81 75.94 74.94 74.47 99.43 95.18 80.97 11.29 37.39 38.56 28.04 48.89 90.70 14.12 30.25 92.39 10.35 24.75 49.40 25.26 41.04 30.05 31.50 6.24 63.68 15.28 -6.53 24.36 15.31 69.25 32.72 83.47 31.33 79.55 32.90 38.25 5.99 77.54 22.77 58.36 11.11 19.20 94.71 14.61 21.10 34.82 29.37 67.65 24.51 83.22 98.65 69.58 24.01 83.05 86.37 1.49 92.69 29.97 73.36 66.59 32.58 85.25 31.34 26.48 39.75 96.70 12.20 8.95 1.14 73.81 51.03 26.21 56.38 88.22 91.58 34.64 26.35 21.70 51.80 99.35 88.00 36.80 78.72 12.40 14.95 32.75 18.84 99.37 51.88 26.86 58.48 53.86 88.81 28.96 63.16 61.06 40.06 41.15 93.18 63.17 9.63 72.84 72.10 91.22 42.88 61.52 12.66 74.39 66.61 13.76 10.67 57.75 9.04 67.55 38.16 49.01 68.92 90.71 56.47 16.66 22.67 19.13 71.39 45.75 10.83 79.41 -66.14 1.84 75.79 22.79 16.01 4.64 9.63 76.82 59.60 20.05 21.10 20.23 77.89 0.99 15.31 2.56 2.49 59.04 38.46 92.07 22.69 33.71 13.96 7.30 30.76 28.73 26.90 17.36 54.23 61.96 49.97 86.17 10.48 91.83 37.30 35.52 39.23 2.35 47.44 19.78 26.17 82.95 60.53 75.31 36.67 19.85 68.77 31.74 68.48 84.78 7.05 72.17 60.30 53.36 24.88 18.58 1.20 8.02 85.12 90.87 95.57 49.04 74.78 53.62 92.46 56.74 33.42 0.14 40.20 2.69 78.65 9.79 49.56 71.16 13.89 8.68 37.69 9.09 54.45 71.25 91.04 39.71 0.87 35.99 93.27 79.49 49.77 95.27 61.54 74.82 0.65 90.83 70.98 99.10 81.49 26.74 95.62 80.17 32.19 74.17 -30.12 36.10 79.35 88.62 20.62 92.10 28.86 60.59 55.07 67.35 7.21 51.34 80.46 30.35 84.88 45.60 86.49 15.65 89.69 75.68 19.46 93.72 95.11 8.23 61.44 88.59 8.98 9.40 77.39 24.73 18.39 77.20 26.59 99.48 85.59 60.37 98.03 18.16 57.10 61.50 46.02 12.43 37.48 22.15 55.04 32.42 75.26 35.25 18.11 90.90 66.31 41.29 70.63 53.88 79.79 97.02 35.82 76.85 98.16 6.81 37.75 68.41 59.05 42.59 53.05 16.04 25.27 22.01 81.89 55.27 30.25 97.54 44.50 74.24 60.93 74.88 39.04 97.29 97.14 7.77 15.38 65.31 43.25 47.73 82.99 47.52 65.76 33.43 55.56 82.06 97.24 56.73 53.70 72.96 40.93 10.04 15.22 75.94 0.34 61.89 -90.78 31.75 17.18 23.58 78.31 60.51 47.01 96.81 0.02 33.25 88.71 82.91 92.79 62.43 16.95 93.39 47.98 37.99 92.81 62.43 76.87 34.84 22.49 8.65 89.64 29.98 76.23 84.26 68.60 27.86 87.37 62.68 91.03 35.39 96.60 14.82 26.91 47.29 68.74 85.24 34.32 24.25 51.74 92.12 76.59 39.71 73.77 24.62 61.33 0.75 14.02 36.41 62.19 56.48 17.91 16.08 22.16 67.46 65.02 52.01 10.58 22.31 48.46 71.73 15.66 42.59 46.04 39.26 83.62 62.41 65.54 33.65 60.36 8.39 16.84 98.19 12.77 28.40 34.51 53.48 14.02 61.11 95.71 30.91 18.11 95.72 75.97 59.18 36.90 1.92 64.06 40.17 70.71 38.37 48.60 11.35 44.47 18.32 16.37 11.04 -88.85 10.48 13.74 5.62 80.95 3.67 10.60 97.75 57.69 31.56 65.54 46.83 7.58 97.30 90.93 92.95 86.56 36.69 11.64 27.92 89.05 71.85 27.07 97.26 84.29 63.60 58.27 47.23 88.57 99.91 4.81 69.67 73.94 74.13 37.27 64.47 55.37 72.83 65.20 50.89 36.99 46.75 33.40 84.24 13.56 69.55 26.59 70.60 28.20 92.68 52.55 35.97 37.75 8.89 96.36 18.45 8.43 66.87 37.17 26.60 12.88 91.46 10.24 29.63 95.34 88.07 49.65 32.71 79.83 65.20 6.62 21.08 85.06 61.49 11.73 95.41 85.89 63.37 34.23 53.88 89.96 67.27 9.95 8.20 27.66 68.93 68.50 26.35 5.03 59.65 75.69 42.51 56.66 66.42 92.15 30.02 81.94 66.58 96.30 97.24 -85.46 46.59 40.01 6.18 58.55 19.75 70.10 16.68 30.24 86.23 6.08 85.97 44.18 12.83 94.31 62.68 88.35 45.66 4.01 22.41 60.86 35.01 11.49 28.33 30.63 58.35 60.81 86.09 62.20 3.46 45.37 34.81 4.22 69.69 24.38 38.12 48.38 86.03 74.91 99.71 18.41 70.48 91.89 35.07 37.93 95.65 42.62 13.45 5.05 30.32 7.38 6.71 12.92 71.23 29.21 20.07 35.70 57.43 10.35 22.47 52.43 96.81 52.42 21.35 16.21 88.51 88.75 24.03 12.33 9.77 48.64 66.56 2.42 85.81 48.92 17.02 74.05 48.41 66.69 46.45 66.17 11.50 81.29 90.89 8.64 85.65 96.32 28.50 75.72 48.02 14.02 99.54 92.05 99.34 24.70 67.37 75.14 89.28 44.59 18.49 -93.10 56.02 53.11 87.54 30.27 47.16 74.41 47.35 93.10 32.18 11.94 89.72 70.26 47.81 74.49 77.28 51.18 26.68 52.49 52.10 16.26 60.59 8.47 33.79 40.58 26.58 82.08 55.49 21.96 56.19 30.76 47.78 45.71 87.74 41.29 35.78 10.01 49.46 35.99 1.65 41.04 97.39 80.60 99.30 35.63 94.79 85.51 96.66 92.03 43.03 82.34 66.25 54.78 94.62 70.50 17.28 30.89 69.44 7.55 48.35 26.60 21.29 17.30 99.54 55.13 63.44 99.66 4.98 0.84 43.00 28.39 19.59 83.80 37.28 43.81 3.51 7.06 52.28 31.00 0.35 50.58 21.67 33.27 79.98 50.38 19.87 64.58 45.78 9.72 93.85 74.41 25.80 8.98 43.27 62.20 67.63 22.32 19.12 24.50 41.06 -94.02 60.58 9.31 93.55 81.31 70.00 52.99 79.93 77.11 12.55 91.30 13.96 60.98 80.00 4.38 45.42 94.07 65.06 5.88 33.43 93.92 96.36 36.74 60.07 29.48 80.40 19.29 66.05 76.63 36.31 47.10 86.13 13.80 39.41 7.51 23.84 53.77 53.69 53.70 26.60 21.37 41.79 22.69 60.36 72.83 34.76 54.93 25.24 43.83 29.70 33.08 64.94 98.58 6.66 33.10 41.25 31.97 20.92 46.34 31.99 87.15 5.36 19.60 85.58 64.16 47.73 48.15 11.18 33.39 10.66 78.87 2.16 85.95 90.95 31.34 76.69 63.70 52.33 92.10 98.10 81.52 28.34 7.54 90.72 39.93 99.80 10.12 38.74 61.54 62.70 58.91 29.53 93.12 1.05 8.48 32.36 93.45 24.35 36.19 93.45 -49.92 77.95 9.22 55.61 95.33 18.60 81.32 20.31 67.28 31.70 0.44 27.76 99.31 57.32 96.86 99.39 82.39 16.83 46.31 41.87 84.99 40.81 2.13 55.20 17.49 51.05 63.67 15.26 41.40 51.56 70.55 34.69 94.95 8.65 37.16 24.49 63.22 62.72 43.61 15.22 48.51 38.16 63.06 19.48 62.22 14.91 77.75 56.02 21.22 90.14 14.64 97.58 28.67 76.90 54.85 73.38 50.08 75.18 79.09 81.18 28.95 39.71 89.87 38.28 58.01 53.27 38.49 45.01 82.48 8.25 28.20 8.42 17.39 85.18 25.37 32.41 88.36 10.63 11.24 42.41 20.20 21.20 81.75 61.48 96.81 93.79 82.48 6.02 54.81 24.14 76.35 18.94 91.14 2.34 86.74 48.55 91.42 18.08 43.28 36.48 -1.78 54.32 54.23 91.31 43.44 70.20 23.84 26.69 85.62 92.35 28.44 57.95 41.46 28.45 94.61 81.91 90.06 53.77 64.80 52.60 24.32 70.04 28.34 31.20 38.50 37.17 38.07 60.18 16.88 44.84 1.26 91.21 19.67 3.34 2.89 58.89 42.27 51.05 26.81 2.14 76.71 86.82 44.35 24.82 76.71 96.35 89.63 60.17 56.62 82.79 72.52 58.38 32.48 80.61 12.41 9.36 64.91 71.94 26.83 38.41 68.02 45.09 21.66 71.14 15.70 51.61 30.54 91.86 73.55 15.72 24.61 85.57 44.45 99.29 89.63 61.89 29.27 3.12 1.86 98.73 35.61 89.67 57.82 88.55 23.00 86.57 92.16 52.25 28.68 96.86 60.31 98.87 50.13 72.07 13.75 33.30 51.21 32.09 19.18 90.90 -83.41 30.67 52.38 80.71 19.96 31.64 97.81 45.67 29.04 94.99 52.17 90.03 81.39 57.52 68.71 2.54 82.45 3.34 22.44 78.27 80.80 75.71 76.85 13.27 4.48 79.09 27.76 30.43 12.71 66.91 78.91 6.94 70.76 0.81 21.88 55.40 56.73 17.48 83.43 18.48 39.14 15.51 61.32 41.08 43.79 47.11 16.08 51.62 74.67 34.62 5.11 72.55 27.09 81.98 73.63 21.52 87.29 93.93 87.88 13.08 20.60 62.92 69.84 15.46 92.02 34.54 14.65 81.12 70.70 3.37 9.71 78.52 11.11 56.27 6.83 21.26 61.03 62.19 33.87 35.06 7.88 71.56 88.33 76.10 44.90 55.05 49.37 7.55 77.39 37.87 74.13 99.00 66.92 73.87 95.22 91.60 61.07 9.72 39.80 81.48 -33.24 30.67 90.63 79.64 58.24 61.09 42.66 57.95 23.11 53.07 31.29 29.90 38.91 67.12 35.97 45.05 87.48 97.68 7.46 82.06 72.01 16.74 38.98 29.94 37.66 94.74 85.08 10.35 23.33 96.33 98.91 9.34 10.42 51.94 35.41 62.69 76.73 71.89 18.14 37.00 27.66 93.65 10.59 36.72 83.72 84.81 70.43 71.04 58.31 43.57 27.85 83.30 53.57 95.26 72.35 77.94 88.99 13.77 1.21 71.69 64.40 70.85 52.80 51.89 65.70 11.15 42.01 47.03 20.32 95.29 25.70 74.96 20.76 15.46 87.68 60.14 53.58 17.10 4.86 25.56 52.79 64.98 72.98 16.73 2.60 64.98 54.97 37.34 3.86 56.24 37.25 34.68 28.93 11.00 83.99 89.58 8.91 37.88 60.71 78.28 -87.52 69.44 79.38 17.37 85.70 36.86 97.40 0.76 31.66 15.31 56.48 50.96 72.63 30.17 1.09 92.43 38.88 49.80 53.07 78.91 78.02 47.73 48.57 87.30 79.19 23.63 9.50 22.64 55.65 54.18 1.36 28.05 32.42 83.45 39.20 85.65 81.87 26.01 12.64 63.52 92.63 5.78 77.21 11.31 32.91 63.88 61.80 90.68 4.38 9.73 61.67 63.21 78.31 81.94 25.49 60.51 36.74 25.27 90.10 59.41 77.76 16.51 88.20 44.50 17.22 93.93 64.55 73.98 33.71 89.37 30.76 81.84 18.07 80.25 7.22 42.34 88.89 65.03 23.35 82.60 54.76 5.35 37.23 23.18 52.75 53.90 52.07 54.85 57.03 93.02 68.83 62.25 40.25 1.35 84.55 0.14 94.65 95.45 53.24 15.33 -24.06 25.61 2.49 80.89 30.29 63.65 85.89 60.34 98.76 36.01 26.95 86.18 81.59 63.93 96.62 64.31 53.88 24.71 81.82 23.02 88.12 99.38 93.66 90.43 46.31 19.10 35.97 11.48 59.18 27.72 77.35 16.62 74.73 29.80 37.06 3.02 55.57 33.38 92.56 73.03 84.27 71.30 71.98 87.36 57.96 12.69 4.18 98.67 12.43 44.13 57.82 29.52 68.76 1.37 99.83 96.43 76.22 12.29 16.80 11.40 53.38 80.67 40.68 73.22 37.85 5.28 59.65 51.68 18.03 16.41 85.77 45.51 39.91 72.88 31.31 19.95 64.68 52.01 70.34 34.86 59.54 56.73 32.88 41.96 91.98 34.55 75.76 61.16 60.92 46.48 94.32 51.83 6.38 82.11 87.84 42.46 90.86 12.91 12.13 44.92 -89.77 19.06 91.91 10.03 56.52 83.96 18.51 48.49 80.99 72.50 29.70 61.27 99.95 51.43 10.40 67.75 42.66 10.58 63.37 50.08 56.99 92.71 43.82 41.55 60.42 91.70 59.17 73.26 77.08 29.14 4.07 0.70 69.99 36.70 96.32 45.70 20.55 87.85 46.11 7.44 92.74 49.14 18.94 38.78 92.78 96.07 84.20 62.70 19.29 8.67 46.67 7.90 62.36 38.20 55.06 24.04 37.91 45.06 77.29 33.93 81.15 19.93 16.34 15.30 36.16 12.76 50.44 1.73 53.00 65.30 73.66 17.19 72.22 15.33 97.64 95.41 96.97 64.18 69.34 19.44 27.39 33.86 17.68 92.76 39.77 25.57 79.61 80.27 90.57 94.81 59.17 68.45 3.39 76.20 69.92 40.32 29.58 4.29 36.76 12.61 -59.84 37.54 47.55 39.15 75.10 54.70 88.31 47.33 43.23 83.45 34.28 87.40 8.59 31.15 34.61 17.06 85.65 76.40 83.50 15.61 60.38 44.96 79.37 99.48 47.67 76.44 80.69 70.49 45.96 42.00 28.21 9.12 28.55 79.74 27.30 39.50 6.83 55.40 55.40 38.74 91.78 35.43 7.47 4.56 84.90 44.26 24.38 8.85 11.88 9.85 19.48 39.72 68.07 62.29 73.19 15.88 98.46 23.23 54.80 15.38 39.20 9.15 99.03 48.26 34.69 54.03 57.66 38.02 64.20 28.30 20.95 68.98 3.02 83.86 22.21 63.25 52.62 35.82 77.81 46.33 77.91 50.12 86.13 30.86 25.12 72.94 74.11 14.31 3.54 13.41 78.56 80.92 64.13 30.05 92.12 68.35 69.28 40.41 70.81 96.70 -74.79 20.32 55.91 66.77 22.96 49.27 32.83 53.03 94.61 2.13 95.69 87.01 35.51 83.52 37.13 43.87 91.64 21.34 86.18 68.61 68.17 79.96 86.77 13.58 97.16 51.17 34.67 95.86 84.79 33.99 63.97 35.60 72.27 37.22 91.70 82.62 9.65 32.93 10.88 35.44 59.10 49.27 6.14 57.09 26.42 26.10 8.42 18.31 99.54 79.87 55.02 63.74 37.90 44.08 72.08 74.93 80.01 86.80 50.26 28.15 93.43 36.15 11.90 52.59 94.97 55.31 23.46 10.52 66.48 41.04 18.76 64.77 76.89 54.46 58.54 91.77 92.01 24.95 96.59 79.56 12.47 20.94 41.49 8.54 19.74 46.39 79.18 75.52 7.69 28.27 77.56 29.01 55.85 68.87 51.08 48.91 28.88 41.73 45.63 43.87 -92.21 76.38 81.94 42.14 35.69 75.78 71.68 36.74 79.68 24.83 93.36 21.82 62.81 59.40 27.33 14.76 36.91 94.75 57.98 83.97 50.03 31.42 99.97 4.58 99.83 46.87 74.75 33.09 46.02 18.89 78.52 95.39 91.82 80.13 32.55 90.81 80.59 2.02 92.55 18.52 25.72 52.31 93.67 65.60 43.68 1.63 20.02 15.87 68.00 54.76 78.07 65.43 21.40 59.07 55.29 73.51 62.92 32.00 92.62 74.15 80.17 48.80 22.66 80.57 70.44 38.92 14.13 31.14 82.82 14.38 71.83 7.92 4.67 62.07 5.66 7.84 93.61 13.58 97.37 31.40 0.86 14.52 13.44 97.49 74.62 85.47 61.05 67.77 82.03 91.40 50.21 78.99 61.77 51.60 16.94 68.44 5.39 15.39 36.62 77.17 -51.48 68.97 77.74 69.87 13.31 41.19 47.49 70.54 97.18 7.49 83.53 84.63 5.31 29.39 17.43 54.75 77.77 66.79 92.37 23.37 66.11 55.35 32.09 47.73 89.96 87.00 16.62 58.41 94.73 24.13 79.27 3.77 89.77 17.28 61.16 44.79 40.88 86.25 44.09 39.33 84.58 10.21 76.18 64.62 96.47 24.51 79.85 83.63 22.00 10.66 74.52 21.40 57.66 18.53 85.33 26.91 75.66 99.43 87.23 30.98 14.59 90.84 64.83 76.07 56.24 38.60 6.08 13.54 1.66 30.85 38.46 38.54 37.73 89.80 16.77 33.76 14.23 20.91 52.27 29.88 17.98 5.90 50.79 79.39 20.31 18.89 6.43 38.82 73.62 91.67 36.35 43.38 55.82 93.93 60.00 10.76 98.53 86.71 57.85 59.94 -54.93 40.40 92.51 71.27 18.15 28.50 72.15 88.75 51.20 31.95 55.19 86.17 29.86 86.92 50.48 47.12 9.26 44.58 76.74 78.19 0.10 21.30 1.44 93.07 29.38 34.54 60.33 18.43 10.50 41.88 64.68 63.52 79.32 16.98 63.31 19.98 65.92 69.82 35.63 75.41 91.17 43.33 89.97 55.19 86.19 24.55 61.60 58.66 26.69 37.03 40.30 99.89 6.98 2.16 86.37 16.64 35.57 79.50 94.52 19.09 16.86 18.64 68.18 70.74 75.19 90.59 3.07 9.82 76.66 18.61 26.94 70.22 44.36 38.18 3.54 13.22 75.76 63.04 31.43 28.46 18.12 29.43 73.04 68.62 11.21 72.81 5.54 38.84 57.25 28.67 48.26 72.20 18.94 62.71 82.75 32.70 16.62 37.39 5.96 78.96 -55.63 7.94 46.94 73.11 63.92 20.06 9.83 22.59 71.11 23.57 23.19 56.28 26.97 97.49 7.54 68.77 61.03 33.73 17.74 76.99 5.46 39.51 80.04 10.33 22.53 18.54 34.52 68.10 87.57 79.89 75.59 15.87 35.30 58.66 10.31 18.10 99.55 40.47 84.80 59.08 8.94 79.12 13.13 5.87 72.72 46.52 13.28 81.10 15.07 63.49 34.18 83.65 12.96 35.11 57.33 1.15 37.07 79.58 66.01 50.69 81.29 8.24 38.09 19.68 41.24 43.20 90.74 23.12 61.52 27.25 92.48 44.58 10.51 73.46 49.17 92.94 17.66 5.98 77.86 45.18 40.25 71.54 18.97 36.80 41.74 81.25 33.17 2.33 53.94 34.35 25.93 25.54 36.77 95.05 87.88 84.07 8.98 48.71 39.19 2.01 -0.82 39.27 56.69 54.29 40.06 44.23 82.47 93.45 8.55 69.68 22.69 97.78 9.25 74.37 38.96 33.60 4.21 67.96 38.84 35.91 51.69 5.61 62.04 77.69 78.02 98.39 9.87 52.30 89.12 12.36 95.47 36.49 52.15 12.80 48.30 22.47 76.62 51.50 65.84 25.23 21.22 67.49 59.05 65.93 20.16 9.58 21.31 33.46 57.93 71.32 3.50 37.01 14.13 65.56 70.05 50.97 10.09 43.13 65.77 96.43 12.01 85.86 38.96 72.35 33.68 1.44 25.85 40.53 69.34 45.48 87.32 36.69 28.32 36.15 68.02 22.79 23.56 8.73 61.09 68.82 55.33 83.62 86.83 58.40 22.17 16.35 1.33 46.46 6.19 58.15 97.49 51.68 68.58 5.81 60.77 27.97 59.92 96.01 55.57 58.53 -97.18 86.64 73.02 92.39 75.20 40.21 17.95 67.97 55.62 33.08 51.58 33.79 33.89 47.18 99.27 47.84 85.32 31.27 1.16 89.32 40.83 69.98 14.12 82.73 39.40 63.02 35.74 37.56 81.89 14.14 26.98 63.26 79.76 40.53 28.88 13.35 92.36 12.10 40.01 51.54 31.68 5.37 17.55 74.83 70.88 15.56 30.20 9.98 69.59 80.93 65.27 30.91 18.44 36.36 15.48 40.92 22.82 34.83 77.47 51.53 63.01 44.76 77.21 29.83 78.70 70.96 10.75 10.25 13.80 69.66 51.62 61.46 71.37 21.47 41.07 33.65 51.80 39.37 6.62 63.60 51.05 76.32 31.22 28.99 90.44 28.78 89.12 18.81 64.39 2.34 79.82 1.50 54.32 47.30 51.49 24.50 37.95 45.68 88.23 19.55 -12.08 63.73 45.95 91.92 76.13 92.56 55.80 22.97 46.22 84.24 35.74 34.90 99.54 77.17 38.08 60.39 3.05 82.75 9.07 2.15 29.47 71.78 40.60 16.73 45.28 65.89 33.28 76.31 65.09 63.21 40.20 50.26 18.39 51.92 82.16 20.15 61.22 60.16 60.13 58.35 3.40 33.92 66.15 95.00 48.71 54.84 29.46 78.69 50.91 80.77 23.87 20.04 22.61 5.92 88.33 30.33 66.43 44.83 1.76 65.16 21.55 49.94 79.87 46.70 18.32 33.89 10.77 32.34 38.85 1.51 0.69 32.92 49.44 93.16 66.92 16.27 18.38 11.46 82.23 43.23 28.62 64.96 80.32 54.81 26.53 23.41 56.68 81.98 15.38 94.05 87.85 86.82 49.09 40.74 17.79 60.83 33.95 25.92 82.30 99.34 -8.21 38.58 43.44 99.77 65.95 19.99 10.90 45.62 50.51 52.72 24.67 29.01 93.08 91.82 13.17 58.47 3.53 6.20 72.12 81.46 18.28 67.99 35.08 6.82 78.48 61.01 72.49 72.73 41.87 95.05 77.17 40.11 7.61 39.38 38.96 61.73 0.48 0.86 83.22 67.28 95.33 2.79 85.76 21.63 88.39 56.82 24.61 55.86 75.66 73.00 78.86 59.75 53.56 29.58 58.65 85.42 8.76 90.27 4.08 48.95 24.50 98.34 71.63 73.24 50.21 74.01 33.03 10.10 74.49 20.79 36.98 90.99 99.92 92.06 3.56 18.85 92.62 30.20 52.62 48.33 3.92 90.00 23.00 31.89 70.97 75.69 87.43 0.93 99.11 45.61 1.06 76.73 13.58 17.31 86.82 34.00 51.43 59.22 81.89 91.39 -23.76 96.71 38.21 13.54 92.90 12.93 60.57 8.26 28.73 95.15 64.68 4.30 44.37 90.91 76.36 70.19 55.90 46.92 85.85 26.04 37.89 55.04 59.89 91.93 58.45 59.15 46.94 18.06 46.00 27.16 29.27 72.93 53.04 81.41 37.02 17.69 90.77 57.68 97.14 47.06 21.02 49.77 47.93 76.48 57.87 20.06 51.33 91.24 74.01 96.10 59.53 57.81 7.54 24.89 22.11 59.34 96.56 59.48 36.87 22.27 33.87 89.34 9.58 20.15 54.40 88.89 89.37 91.54 69.89 19.00 14.63 10.53 97.71 60.92 90.46 86.89 18.89 7.29 48.26 53.53 63.87 47.80 37.71 30.79 57.91 35.45 7.17 46.39 70.25 67.66 78.44 79.60 50.78 70.12 14.60 22.88 18.81 24.12 43.16 42.93 -96.56 70.63 75.13 19.34 47.12 46.61 3.85 70.94 63.62 27.10 71.86 77.36 34.02 1.09 35.24 53.77 56.83 44.44 31.97 22.44 3.47 37.37 80.81 37.24 77.09 98.08 50.54 82.99 65.51 1.63 97.50 31.82 12.46 63.15 91.55 48.63 93.49 73.41 95.91 56.06 11.62 7.47 86.27 62.55 60.78 11.29 77.59 6.45 25.34 15.27 48.56 4.62 43.93 57.04 97.72 88.45 79.11 26.58 2.49 85.44 42.24 13.08 8.47 80.78 38.13 11.14 13.60 17.06 11.29 28.89 27.42 1.60 32.00 92.49 39.47 40.11 51.20 68.50 90.58 61.70 1.39 9.96 71.88 97.56 56.34 5.04 82.84 64.01 32.19 70.18 18.79 66.25 70.96 88.52 83.59 90.98 44.01 50.00 30.04 33.46 -68.03 83.61 12.08 39.49 64.21 16.34 88.10 51.12 48.58 33.43 93.76 16.63 29.48 12.90 58.37 14.85 30.97 64.31 28.45 19.06 16.38 96.30 13.72 60.77 63.78 46.95 35.53 91.47 9.24 64.55 51.84 4.58 3.20 68.68 1.45 98.41 6.80 80.79 73.01 77.88 98.40 56.26 43.17 75.06 54.58 34.39 79.73 42.75 38.68 63.84 12.60 89.49 26.78 18.11 6.86 82.18 22.09 87.81 99.48 42.43 34.20 45.38 2.10 75.09 0.87 48.99 67.29 16.06 23.99 77.28 44.30 0.25 70.07 45.29 26.63 13.51 53.83 96.40 70.56 93.19 31.16 12.23 44.47 62.16 75.66 22.83 79.81 68.46 83.09 13.47 37.84 23.61 61.33 79.53 43.34 65.85 63.53 86.76 42.65 65.40 -56.35 21.33 70.81 83.59 3.71 2.43 2.39 99.00 7.25 18.54 68.22 70.98 76.85 36.65 80.95 21.64 12.34 58.08 70.69 71.76 86.49 61.92 15.91 91.95 76.43 43.10 98.14 26.85 64.60 65.45 20.64 47.94 56.48 66.89 31.28 62.74 36.49 58.17 26.84 1.11 45.86 66.94 47.22 24.84 22.39 58.65 64.62 78.70 49.30 94.48 83.14 96.33 91.96 86.81 75.51 10.28 46.87 19.78 33.12 61.99 20.67 11.89 28.10 19.44 67.45 73.05 62.30 63.72 68.93 10.53 82.71 4.41 87.92 69.96 81.14 78.86 7.51 98.69 58.53 29.49 99.40 34.17 4.23 82.86 69.27 16.84 98.09 22.82 42.48 32.22 53.14 82.08 81.09 11.51 3.28 88.43 6.58 80.34 2.47 42.75 -21.16 2.70 66.15 55.18 5.50 18.81 85.35 93.51 49.27 18.44 96.66 20.67 35.41 80.20 6.97 58.27 36.18 72.82 1.15 92.16 35.68 64.80 97.24 35.63 93.68 92.38 64.83 61.69 13.72 49.91 60.72 78.59 45.48 2.36 85.04 19.81 46.29 95.34 24.94 63.89 37.91 50.55 69.26 12.73 55.92 72.68 46.03 41.59 19.71 60.78 29.67 2.13 94.13 81.49 58.35 36.62 50.89 80.63 41.12 20.17 85.42 59.48 87.68 30.52 99.75 18.25 96.17 95.91 42.32 77.86 78.51 86.76 59.98 12.27 63.66 51.12 85.82 97.91 64.49 16.03 45.93 91.24 88.23 89.18 77.28 95.88 56.77 53.96 64.32 78.76 2.47 85.20 42.64 27.53 94.83 0.10 98.14 43.03 53.27 34.22 -86.84 33.03 0.74 97.03 2.19 57.20 75.99 71.29 31.04 4.56 15.31 82.09 1.35 58.79 39.49 96.49 60.67 43.60 47.94 57.62 23.82 10.94 52.33 83.12 41.33 38.34 98.70 58.68 20.48 73.18 36.60 15.24 66.95 20.62 5.61 47.80 71.12 79.10 23.99 87.17 9.41 93.62 11.50 4.20 84.16 26.05 10.95 91.72 37.46 73.75 50.84 99.00 41.37 84.94 63.83 77.79 57.51 70.07 99.70 98.46 62.61 33.18 7.64 23.13 88.64 40.72 58.02 25.19 73.46 81.33 26.86 99.78 70.60 55.01 43.96 6.84 61.90 94.03 18.88 97.07 60.60 17.53 2.69 73.68 10.02 4.79 91.91 68.41 86.71 0.36 34.61 99.27 73.08 32.33 71.50 76.47 78.02 15.79 24.74 37.05 -54.26 8.12 64.06 87.38 45.68 42.22 10.53 43.88 3.07 79.83 41.94 17.87 52.39 31.95 86.59 85.36 82.39 61.25 63.05 74.36 64.91 7.31 7.17 19.55 85.08 9.04 90.13 75.67 90.18 43.01 84.81 40.66 48.90 20.30 93.89 83.23 63.12 41.77 16.61 37.77 44.94 92.01 12.81 43.11 85.46 85.70 91.97 83.81 37.35 20.90 35.02 93.34 6.65 1.21 53.04 72.22 78.82 91.77 2.40 94.42 72.15 94.37 39.03 11.01 72.01 24.68 35.40 51.97 59.63 51.04 13.88 25.51 65.90 1.90 76.67 79.59 65.47 21.29 34.97 63.34 30.49 71.61 75.41 72.21 2.03 18.47 44.90 69.18 82.88 13.69 50.93 72.52 88.66 4.17 7.33 38.13 37.45 53.53 80.15 77.90 -31.35 42.37 33.09 77.48 41.88 65.30 48.12 65.69 77.05 96.82 54.66 97.73 73.28 73.36 95.34 73.08 11.90 62.56 95.16 5.81 47.00 91.16 34.20 96.75 26.48 7.16 83.36 25.61 44.91 9.33 17.37 37.14 48.23 68.13 85.84 76.23 95.11 59.69 69.11 3.47 50.59 42.63 41.66 17.22 75.96 44.94 66.56 6.25 91.92 75.66 81.94 65.59 95.96 53.45 95.00 53.99 82.85 40.68 32.11 61.70 85.86 83.34 11.32 25.96 54.91 49.38 72.44 51.38 97.28 31.52 1.70 88.89 61.13 4.04 26.79 57.43 11.82 56.33 68.60 22.67 20.82 5.17 73.67 68.68 17.80 54.20 90.28 84.64 19.23 90.69 69.97 56.84 27.53 7.78 19.48 81.91 60.78 91.27 10.72 6.54 -4.45 5.47 26.43 57.23 50.37 2.69 31.80 35.61 97.99 42.57 72.08 95.60 5.75 49.41 77.29 13.86 6.88 2.79 85.13 70.48 92.46 84.20 1.09 80.99 65.79 59.81 70.53 46.63 23.99 41.31 18.58 9.87 69.30 46.82 75.34 97.46 6.98 68.81 8.67 28.00 72.96 66.90 5.95 90.83 42.75 90.98 81.01 73.10 38.92 81.77 54.39 51.93 78.96 27.47 2.14 98.11 49.91 80.91 90.73 78.34 32.50 7.97 30.61 14.28 45.83 11.16 71.58 41.70 25.98 92.90 71.78 37.33 56.46 87.21 18.72 52.59 42.43 89.54 31.13 68.42 39.65 87.41 85.04 91.71 23.35 74.85 85.70 51.96 57.68 59.98 61.83 38.40 98.59 8.87 55.02 96.59 79.55 61.47 92.92 77.35 -90.25 28.24 40.11 46.87 60.71 11.57 73.62 3.13 84.28 34.42 14.00 99.17 58.22 45.53 18.34 79.32 4.92 83.46 26.24 37.77 29.91 52.57 15.77 38.27 30.69 26.85 75.01 76.55 90.06 60.17 24.49 74.75 9.27 84.33 42.90 93.05 34.57 40.28 80.43 52.17 27.48 13.11 13.22 97.50 52.51 59.71 31.88 53.65 68.41 59.57 4.60 50.19 21.45 9.16 34.85 12.67 59.08 47.84 84.36 39.72 23.64 3.01 88.63 18.49 32.93 60.37 26.78 49.18 3.38 94.49 12.71 24.79 32.41 21.62 10.66 81.81 20.40 15.43 78.35 74.29 95.06 40.18 32.91 31.56 30.28 11.58 59.31 31.20 50.70 65.34 34.56 40.78 56.93 24.11 93.16 6.20 90.51 96.02 63.18 89.77 -6.44 92.78 89.71 36.32 30.87 67.96 99.68 84.67 28.12 30.19 99.17 24.99 60.68 15.52 96.42 33.87 13.32 87.87 67.65 50.71 34.95 44.97 87.63 75.14 21.04 80.05 98.16 42.97 84.69 90.25 27.08 68.10 47.37 3.11 64.02 94.36 49.66 1.36 8.03 95.96 98.73 61.15 99.88 20.25 23.79 49.11 84.63 80.25 64.64 22.75 41.83 93.05 34.97 98.59 88.15 22.12 61.01 15.08 92.61 64.99 45.22 74.67 79.68 9.86 2.84 1.24 69.59 85.77 99.22 14.94 54.83 68.18 9.44 88.16 51.50 11.99 43.03 36.63 95.09 59.22 46.27 51.18 52.79 45.70 40.99 13.58 65.08 62.38 79.80 20.63 78.96 66.65 57.53 99.96 98.34 84.84 11.91 38.84 11.94 71.54 -23.57 79.39 4.50 48.89 74.01 84.87 93.40 60.93 58.85 39.86 60.91 1.97 13.98 76.94 66.05 35.82 79.01 57.59 36.87 91.55 22.74 89.08 62.44 63.91 41.11 97.23 25.38 19.19 4.37 90.45 93.39 26.94 92.67 57.06 1.74 98.12 62.24 6.85 41.77 28.17 7.65 70.06 59.51 53.24 56.50 48.08 22.15 14.65 60.19 63.66 22.82 68.28 18.31 43.07 10.05 74.19 80.41 60.93 56.29 90.90 12.48 22.48 87.75 5.67 44.65 39.35 40.29 83.19 19.69 46.09 45.94 67.57 48.60 3.62 64.77 9.87 48.19 53.85 78.01 19.00 54.39 15.83 97.31 72.34 60.69 32.90 33.73 54.52 93.75 8.30 95.42 47.58 93.99 57.05 56.85 18.76 88.88 14.93 14.27 82.25 -75.32 63.55 25.18 71.47 11.68 4.00 79.18 0.37 4.11 5.57 40.97 94.76 38.91 8.68 53.77 1.40 42.56 56.68 48.20 8.58 4.51 21.32 15.59 50.38 86.35 14.95 89.21 65.35 19.54 63.77 1.01 95.16 49.01 49.60 96.34 21.32 32.47 45.84 64.75 84.09 19.12 14.03 43.31 62.14 63.60 10.94 2.06 99.05 60.03 24.54 88.90 22.74 37.09 87.94 80.01 47.73 99.73 10.29 20.07 12.62 54.47 86.94 42.84 84.26 73.12 12.89 59.64 83.83 54.64 98.05 10.51 66.37 96.78 66.95 40.20 40.88 80.23 83.25 49.66 84.08 40.50 25.40 56.67 88.08 60.78 98.80 68.58 91.37 62.04 62.70 83.07 26.14 66.30 55.00 75.09 23.80 16.57 59.51 65.27 26.29 -42.79 3.33 76.47 67.93 79.81 4.64 37.39 95.39 2.25 37.26 81.70 8.34 50.97 19.51 70.39 63.74 58.13 84.92 99.47 51.34 77.09 29.20 44.13 13.05 32.90 23.95 73.37 96.86 6.22 21.64 66.78 71.69 97.59 69.64 4.59 77.18 36.58 28.21 49.09 98.04 8.90 43.17 75.53 68.30 62.92 57.07 37.92 25.79 79.38 43.10 86.00 8.64 20.93 5.21 66.83 28.64 64.69 35.57 15.03 41.38 34.44 7.72 90.35 0.54 26.90 71.55 24.49 26.95 8.37 59.68 91.12 94.76 30.95 47.75 86.72 1.21 45.45 26.23 68.97 14.42 46.78 26.08 31.43 34.30 93.69 95.75 69.92 91.31 14.85 36.25 43.41 83.87 84.54 80.41 63.72 48.19 95.10 21.87 15.48 98.21 -75.62 82.54 87.65 26.99 76.14 87.61 76.64 99.47 93.23 24.37 6.56 38.07 90.67 16.16 51.19 75.95 69.24 89.35 66.16 47.52 25.19 18.86 23.22 2.17 3.42 66.15 60.22 29.34 84.96 79.76 99.09 37.28 94.82 67.40 94.83 60.99 92.11 3.68 3.35 4.11 3.10 6.93 45.13 74.72 27.48 98.95 24.66 46.40 38.36 51.07 54.72 53.80 77.24 98.65 89.91 52.92 17.50 22.37 83.81 72.79 3.43 82.48 73.26 71.02 62.25 62.51 38.56 8.85 81.21 46.55 47.91 41.19 91.08 17.08 61.28 21.03 95.08 50.86 43.84 41.26 9.83 70.26 61.05 95.50 7.33 88.59 50.53 90.27 70.83 48.03 26.39 74.64 65.77 70.32 61.30 68.88 36.29 30.59 6.07 2.74 -71.85 3.99 74.78 1.23 13.87 52.09 16.97 83.34 39.63 72.56 75.33 93.39 62.47 50.72 5.02 83.67 84.66 54.15 93.23 12.95 91.67 32.93 76.89 50.11 95.13 17.95 29.89 21.12 71.94 65.36 43.62 1.82 71.92 32.99 18.06 9.39 40.44 91.12 1.84 74.38 59.91 49.46 22.57 24.28 12.98 34.66 21.57 49.82 34.60 55.54 92.76 63.10 58.56 0.18 4.92 60.50 16.65 4.27 6.43 91.16 31.43 56.62 4.99 97.53 6.22 28.80 93.63 12.43 62.93 82.28 31.08 97.65 51.59 39.94 23.90 58.43 36.03 65.87 2.88 81.29 0.88 27.26 18.89 79.29 55.50 13.82 24.93 50.91 61.51 37.10 5.58 70.60 59.93 78.44 50.01 19.06 18.36 23.61 41.42 3.78 -68.78 0.42 45.18 28.25 69.13 58.29 73.09 23.25 36.95 6.47 34.46 24.40 44.75 10.87 37.83 32.59 13.64 74.00 91.62 57.05 85.42 66.82 30.96 32.35 5.20 97.18 27.67 45.93 6.63 14.73 22.28 66.25 96.46 20.71 73.34 37.47 53.36 42.77 1.16 84.12 89.39 34.03 44.09 50.73 2.80 97.64 31.68 11.94 87.20 33.19 36.59 93.58 62.53 16.76 23.94 45.46 52.87 68.95 89.06 47.35 92.98 90.49 83.47 83.98 45.02 25.51 40.81 87.91 14.60 43.80 75.97 28.49 62.86 66.73 66.66 76.69 23.86 51.55 20.01 46.33 51.63 23.64 72.21 39.27 70.19 36.32 72.15 89.30 58.45 77.61 19.15 71.57 8.68 31.62 55.81 80.25 53.11 76.17 60.14 41.98 -30.35 91.46 22.28 78.64 38.55 34.37 64.80 56.35 49.10 49.59 16.96 24.60 95.16 25.44 95.18 82.01 1.34 83.83 62.90 35.27 55.62 50.62 39.66 58.25 73.00 11.48 88.94 53.14 50.71 64.64 34.05 92.95 47.36 88.62 62.13 67.07 8.24 63.84 52.65 51.90 24.27 34.47 26.23 28.53 56.21 15.21 91.57 66.54 63.89 84.26 92.49 9.28 53.97 69.63 39.97 96.30 71.43 42.43 23.84 24.89 85.70 22.07 78.38 84.29 57.34 22.83 61.69 33.73 93.40 73.62 78.46 70.26 95.79 54.88 89.08 92.01 56.51 29.63 66.03 17.86 16.91 65.35 43.68 84.34 66.64 30.94 27.11 77.02 51.54 87.80 87.87 47.40 88.91 8.36 41.48 41.30 10.80 10.31 66.33 92.38 -38.13 70.66 53.10 72.26 6.04 7.81 90.34 26.59 50.12 47.62 45.32 66.41 54.57 2.18 30.26 50.42 35.09 78.24 85.73 31.76 2.04 37.92 13.05 18.25 96.64 6.79 16.94 83.77 13.21 61.80 31.04 82.94 32.66 43.48 58.26 81.23 74.43 42.23 99.99 73.49 82.34 53.93 85.64 56.14 17.44 37.24 43.04 51.31 31.14 82.73 83.96 58.87 46.85 46.44 18.70 54.59 25.35 89.57 43.33 64.45 19.17 0.52 46.88 72.77 45.91 58.18 64.39 31.61 21.86 77.56 72.23 42.41 73.56 59.99 57.75 58.01 37.33 41.71 63.19 97.93 72.24 36.21 54.57 50.52 92.76 72.44 76.47 18.65 26.49 89.96 86.79 46.44 16.54 94.87 34.43 46.24 44.23 49.84 77.54 19.40 -58.37 28.25 18.99 39.50 33.77 61.54 71.83 33.02 81.32 32.56 53.69 54.43 68.56 77.84 29.40 81.22 58.56 0.32 74.25 72.80 48.01 23.66 15.33 88.14 83.88 18.74 37.72 23.52 73.45 15.84 10.63 51.89 2.81 83.75 51.48 61.51 70.10 60.77 13.21 53.68 8.05 11.94 36.83 46.67 49.72 10.26 22.45 82.65 99.70 57.50 30.57 42.47 82.10 26.73 1.92 90.17 37.01 24.64 51.96 31.81 43.85 36.66 43.87 50.76 95.40 38.74 40.66 44.79 69.16 84.64 90.37 22.03 82.92 48.90 5.35 80.41 5.42 26.67 44.06 22.78 40.66 48.96 50.08 78.29 58.97 86.70 39.17 98.70 82.58 93.00 71.60 74.35 99.53 3.46 18.64 32.05 1.31 16.20 69.08 31.56 -12.51 42.59 14.18 24.63 11.41 23.39 70.56 41.63 86.63 48.16 85.55 31.83 84.71 9.67 33.55 10.63 31.69 89.08 5.03 8.26 19.47 92.61 41.07 22.09 89.93 65.32 74.56 94.97 4.66 11.41 66.38 45.59 53.89 29.58 99.45 33.98 77.46 36.56 88.75 88.75 12.86 10.41 8.95 91.59 93.75 74.33 84.15 72.28 26.22 68.70 46.49 50.70 83.33 57.79 96.08 8.90 56.08 10.51 29.55 96.06 20.00 73.63 0.57 54.21 89.02 43.78 37.96 23.24 27.77 29.95 85.65 45.57 89.82 22.45 54.07 70.28 56.57 87.13 4.56 96.94 80.61 21.00 31.81 23.27 66.20 67.91 28.87 50.97 64.67 47.98 2.63 31.09 96.82 97.05 32.07 26.39 43.89 89.24 39.94 53.85 -58.37 93.24 86.33 43.49 77.39 59.20 64.68 37.79 78.92 74.41 24.01 6.17 45.40 39.85 0.97 85.45 66.70 79.32 70.42 56.18 20.04 53.78 38.37 93.97 77.54 24.85 22.99 26.95 67.22 98.28 36.35 28.22 63.99 36.95 34.97 17.51 37.79 53.76 28.09 60.65 53.45 30.03 28.84 61.93 43.97 93.50 45.02 11.38 79.71 42.94 75.48 24.45 61.97 44.84 30.80 78.75 32.60 47.53 10.77 17.47 56.53 64.04 5.18 59.45 1.69 21.26 36.86 47.94 58.05 66.06 99.68 57.71 35.28 38.95 10.30 44.15 62.87 32.02 64.06 43.27 17.57 81.35 29.98 91.77 81.26 14.48 72.81 35.24 90.34 75.20 10.57 25.99 38.39 63.78 69.46 96.84 8.94 84.25 93.22 44.50 -38.34 14.51 86.18 63.47 6.84 85.75 35.92 49.93 68.71 58.30 87.31 88.26 26.32 65.29 99.63 56.71 39.71 33.69 95.06 56.54 20.10 21.73 82.54 85.24 84.30 77.61 24.75 46.51 34.52 91.22 9.57 4.04 62.23 50.35 61.28 41.40 29.85 62.91 36.64 41.17 54.97 16.46 81.36 66.63 50.14 24.53 29.76 2.48 32.90 31.58 82.25 13.02 68.00 99.03 10.72 50.44 12.69 73.22 53.32 60.69 28.02 8.74 11.87 32.85 62.35 45.57 41.57 68.41 18.11 14.51 44.05 3.89 33.35 65.40 82.18 29.70 66.92 51.99 23.39 8.23 49.80 62.50 24.85 2.94 57.49 32.10 14.43 40.01 97.59 91.39 3.70 49.68 75.11 4.34 50.64 12.09 59.09 24.12 15.40 61.05 -15.66 24.74 45.11 38.90 51.96 32.67 14.17 15.83 78.64 44.06 44.03 3.93 7.87 44.93 23.63 25.75 28.71 27.05 75.93 53.07 10.04 96.80 85.66 57.86 87.99 7.88 7.64 65.68 48.03 10.35 92.72 20.65 60.32 73.96 2.98 49.31 6.86 70.00 39.74 13.50 53.80 95.65 37.39 66.76 60.66 90.78 20.32 94.27 6.63 84.15 22.68 43.81 15.32 80.26 98.66 11.05 12.13 76.85 20.21 21.41 34.02 86.78 32.73 41.34 66.57 49.49 4.60 46.15 31.28 40.65 99.06 12.77 49.59 12.17 18.14 95.07 12.13 78.99 23.74 5.27 91.85 1.54 31.48 75.38 86.08 59.54 41.20 33.43 47.19 15.47 79.26 56.81 13.65 56.19 53.24 70.81 51.68 16.86 93.49 20.75 -8.29 0.24 72.14 37.09 9.19 82.16 0.29 75.23 34.90 3.03 7.14 97.22 36.38 43.77 92.79 82.71 27.27 95.24 88.47 52.79 43.10 14.66 95.45 88.22 73.75 21.72 68.66 27.21 87.81 48.55 53.02 57.29 38.54 85.26 40.17 86.14 90.31 2.52 71.99 33.80 69.83 84.10 52.50 37.00 17.53 89.16 27.76 28.41 85.16 58.63 67.03 41.85 31.35 36.46 76.30 19.82 80.35 70.48 22.74 55.03 39.64 52.11 73.36 11.59 14.47 45.05 27.76 39.54 42.60 15.48 99.85 88.71 62.92 97.59 66.71 63.35 64.80 75.67 30.57 31.90 67.71 49.72 3.43 99.88 98.80 96.83 53.52 42.28 39.62 26.52 33.18 38.52 8.84 31.36 24.48 34.59 40.35 26.18 28.35 82.07 -30.10 93.17 24.26 74.15 69.12 29.60 30.03 24.38 14.00 86.43 30.81 39.52 32.83 67.86 61.24 74.14 57.42 68.09 49.69 55.24 24.04 24.26 42.49 39.41 2.90 80.83 29.52 89.07 69.30 52.95 40.72 60.49 41.93 2.32 69.57 98.40 40.21 46.23 33.60 63.44 41.19 59.30 32.95 64.24 42.67 22.08 58.79 88.64 40.00 54.62 81.90 27.92 70.78 57.92 44.18 71.16 8.25 63.44 27.28 94.01 97.99 64.59 44.73 74.99 27.87 69.56 63.43 38.03 80.11 51.30 86.00 97.26 52.08 73.73 16.21 58.29 0.90 10.92 45.44 88.51 19.09 42.71 87.08 66.73 97.46 30.51 27.03 34.05 62.33 95.15 13.61 17.41 41.75 98.53 96.24 47.81 92.13 8.51 7.50 49.24 -69.22 29.31 28.98 50.93 48.65 96.41 92.13 90.18 17.99 68.15 7.18 15.54 6.81 80.67 79.34 20.18 95.75 73.17 88.68 0.14 79.46 72.16 2.15 21.86 70.62 5.14 74.88 98.07 57.29 8.26 53.34 91.14 83.81 27.18 40.93 62.70 61.06 89.37 2.50 57.90 92.97 31.62 36.88 71.02 88.37 64.08 8.77 63.56 93.66 87.61 69.87 57.94 63.27 0.54 65.08 71.61 16.80 81.08 34.19 44.68 39.15 76.24 82.83 30.38 48.90 0.72 70.49 86.77 23.05 8.45 48.31 41.13 50.52 19.49 13.60 58.83 40.89 39.28 87.42 57.24 9.86 53.87 56.23 19.71 15.69 39.67 79.08 41.29 96.17 58.08 26.04 40.45 87.69 32.56 98.92 68.29 8.69 65.35 86.56 86.25 -18.25 93.88 74.03 42.03 56.90 58.19 88.76 97.17 72.63 57.16 10.47 6.29 71.87 75.04 16.43 1.11 93.03 30.62 0.14 12.97 85.60 63.88 10.66 62.43 51.65 87.75 59.09 31.87 84.03 65.68 74.62 82.36 71.21 99.60 79.60 14.99 91.54 54.99 79.82 89.33 70.76 62.79 3.07 82.58 10.58 34.97 63.40 23.25 12.55 63.83 31.99 24.33 8.41 8.70 48.19 62.08 98.13 54.94 73.10 74.87 46.78 36.33 61.05 75.60 45.79 67.75 13.74 72.81 23.95 52.15 80.92 50.10 32.78 52.01 7.12 62.57 29.35 67.41 63.27 6.48 30.93 68.09 53.38 93.50 29.98 42.64 19.19 22.69 74.59 58.32 24.78 16.57 43.24 8.72 34.59 72.90 70.12 23.39 65.02 43.40 -70.08 35.17 18.48 76.44 66.40 32.16 63.18 86.43 45.40 88.00 13.59 71.83 85.72 46.79 49.65 98.44 17.02 78.35 35.07 28.70 33.72 15.65 78.32 59.57 87.82 7.42 36.00 18.93 16.51 3.95 43.05 91.25 19.70 6.45 1.98 92.84 42.79 13.02 3.41 66.56 18.82 40.83 9.13 73.68 18.89 33.95 70.19 3.54 55.56 29.06 53.00 54.47 74.22 29.92 97.07 25.66 78.32 77.29 28.19 68.20 5.02 71.04 42.82 91.68 81.12 27.12 88.26 12.27 63.79 12.18 78.07 28.11 78.44 33.82 66.25 93.10 56.62 89.03 15.07 52.21 82.96 21.98 97.30 76.74 59.75 31.09 72.89 12.62 41.80 90.26 12.76 33.41 26.19 63.39 51.07 65.62 0.14 91.80 49.47 78.79 -94.55 14.68 58.28 29.92 48.14 97.40 27.26 10.58 3.19 8.44 57.48 62.81 69.53 42.52 61.74 52.91 77.02 52.70 50.11 78.14 41.19 75.97 54.05 63.37 58.34 84.23 25.25 27.12 29.42 85.24 79.46 58.86 53.31 74.20 25.63 17.76 14.75 58.10 80.28 32.65 44.71 95.04 75.15 76.06 47.99 24.00 49.71 73.95 98.42 6.07 68.89 46.15 56.42 38.31 27.59 59.39 98.91 9.01 51.86 78.30 35.70 21.96 1.17 88.29 80.21 99.21 52.51 42.67 69.72 3.05 99.73 9.50 75.18 63.47 66.05 63.50 84.55 4.85 20.05 24.44 65.30 54.50 65.16 46.54 60.51 44.56 21.79 25.14 65.39 10.02 33.20 35.94 16.38 32.21 87.52 56.78 37.62 54.81 88.32 21.96 -35.64 23.27 41.09 70.04 8.75 61.43 84.03 37.02 55.98 30.90 92.95 13.44 3.04 66.20 90.14 88.61 40.96 45.49 50.64 43.64 90.31 2.02 66.71 14.70 25.34 25.74 30.81 14.80 34.43 46.46 78.63 78.66 43.37 65.86 4.83 5.93 33.45 80.28 17.02 41.99 69.91 16.61 47.08 56.53 44.46 37.75 88.99 88.52 41.36 60.86 52.44 55.84 93.00 18.41 55.39 81.41 91.20 0.97 21.16 59.90 47.31 81.34 51.75 87.66 96.68 5.02 39.49 28.50 17.56 18.45 0.70 31.52 24.35 97.44 79.57 3.95 32.22 0.93 22.62 34.10 93.46 54.77 29.33 20.34 35.81 85.83 13.38 63.06 72.75 42.74 25.46 9.19 37.46 37.83 12.44 6.34 9.15 56.05 26.67 92.11 -34.31 78.45 91.64 57.53 44.47 45.25 4.40 57.13 23.76 55.46 95.56 32.26 70.82 77.85 76.67 44.09 91.61 60.11 85.92 75.29 80.85 23.15 94.96 0.73 58.84 37.72 59.54 77.92 59.22 69.29 6.44 93.66 53.83 60.09 8.10 59.57 0.01 48.76 68.38 80.23 62.68 7.00 15.23 8.59 70.79 70.19 31.23 12.81 83.87 64.18 81.13 99.75 29.36 39.00 10.00 39.07 57.33 72.84 26.11 3.34 31.69 39.06 92.98 32.84 42.35 57.02 62.25 95.52 69.13 66.77 73.08 74.87 33.68 82.13 68.75 90.07 80.10 31.09 12.22 96.41 74.55 15.53 30.21 77.66 2.21 54.46 65.79 62.98 13.95 94.98 30.66 68.30 41.93 38.35 12.79 51.74 42.79 77.84 19.50 56.39 -73.89 18.99 66.32 55.38 46.07 64.10 56.54 36.59 43.18 32.18 23.34 84.96 8.66 18.38 36.46 36.72 44.55 37.65 16.79 35.33 69.28 14.51 75.10 6.07 75.60 20.93 78.46 82.11 52.44 84.06 17.15 75.13 18.81 22.96 65.77 1.51 38.79 75.17 71.71 74.37 25.66 61.58 77.78 65.58 56.70 12.96 35.76 11.35 31.00 10.48 20.39 74.32 96.97 26.88 8.14 86.45 65.82 48.53 33.69 31.62 36.14 99.59 74.14 94.45 9.92 43.60 30.92 61.50 75.11 67.88 47.40 96.92 69.27 85.63 76.36 17.18 46.86 86.17 70.99 32.01 1.34 77.39 6.39 7.98 57.85 34.10 19.20 74.27 22.23 97.50 54.73 98.18 7.49 65.14 3.37 19.70 51.99 36.20 29.79 8.20 -52.54 56.41 75.84 80.83 79.63 7.35 85.75 68.77 40.94 52.40 82.63 46.24 19.41 54.64 48.76 56.08 35.62 14.47 38.07 67.69 99.02 64.11 50.72 9.93 76.51 99.92 19.64 36.50 69.99 56.64 0.29 86.61 41.82 18.18 96.59 1.34 6.27 17.79 48.30 18.27 65.06 42.77 50.31 37.73 64.86 17.14 80.68 48.32 11.46 54.55 4.45 58.99 41.03 31.32 75.13 66.15 62.95 6.52 53.71 70.63 6.95 28.57 49.45 85.51 99.67 10.81 63.85 41.23 87.96 0.10 32.54 41.11 79.27 14.66 45.02 58.86 13.77 37.32 32.14 50.88 53.06 42.16 0.83 95.10 59.24 64.83 89.92 22.44 93.19 99.31 95.87 12.04 40.17 17.52 88.14 40.98 39.65 50.54 7.88 33.24 -52.93 66.92 12.82 59.39 12.08 4.84 10.86 68.45 19.75 72.72 92.72 45.31 49.81 79.28 47.61 76.39 87.86 36.93 93.57 89.19 57.79 40.86 84.50 13.29 61.26 90.22 28.02 41.02 71.77 82.67 30.92 63.56 20.28 14.80 28.80 83.97 39.15 3.20 67.12 51.93 13.32 29.20 79.11 67.14 67.24 77.02 53.95 65.40 92.12 61.55 99.56 65.63 25.48 3.10 73.08 29.33 27.20 1.32 62.30 15.22 75.15 49.02 44.55 4.85 16.86 42.55 4.54 15.58 60.75 51.24 33.12 21.63 21.91 3.14 79.45 9.58 61.67 34.60 77.08 5.49 47.02 74.48 59.61 64.76 10.61 64.43 99.40 54.17 87.35 77.60 22.95 17.42 91.30 58.96 68.54 44.26 68.78 82.81 33.78 16.22 -58.09 40.58 75.70 8.72 28.06 62.23 45.35 32.90 26.25 83.22 42.42 64.21 38.90 35.65 6.87 86.44 94.56 15.59 73.51 55.45 96.89 42.56 47.26 1.52 50.11 47.52 78.43 58.11 27.28 3.25 8.87 85.73 80.03 5.96 80.54 85.05 62.16 24.99 96.49 61.99 83.50 15.58 39.64 7.59 21.54 90.16 25.51 22.19 51.13 98.61 80.82 68.27 56.07 52.69 15.22 20.47 88.10 16.57 0.28 44.29 0.15 25.80 14.84 11.72 85.39 79.40 90.43 82.90 18.04 48.74 93.04 57.51 20.29 84.18 95.78 37.05 99.00 47.13 23.67 15.91 3.39 70.59 68.30 37.91 21.68 9.76 49.99 31.09 53.22 40.45 84.05 5.22 10.36 57.52 32.45 8.74 16.85 88.96 46.67 3.59 -28.35 85.20 29.67 92.16 30.39 87.54 22.13 3.83 73.53 54.10 28.12 74.57 80.20 45.40 48.53 7.57 16.06 8.93 53.79 22.80 55.22 47.33 18.65 67.65 21.81 40.33 54.44 16.69 84.62 76.15 33.98 20.26 59.11 49.65 83.04 22.28 16.09 25.77 4.49 47.44 85.08 43.15 64.83 72.56 72.48 57.44 82.54 71.32 56.46 57.86 61.19 52.40 39.41 83.54 88.23 17.09 11.58 13.21 25.43 39.42 37.20 46.19 14.97 50.64 22.30 7.36 6.88 4.77 34.40 63.83 73.64 27.12 76.18 34.19 7.05 8.33 25.59 38.78 34.38 17.38 72.19 83.33 47.15 45.36 48.34 48.90 39.02 41.38 53.65 21.28 56.07 64.61 15.87 84.76 32.29 59.10 76.25 51.20 56.84 94.88 -60.90 84.55 6.77 53.97 10.44 72.57 67.15 63.06 29.75 71.87 69.04 6.35 27.78 6.84 54.79 29.86 38.46 64.67 28.17 20.76 38.62 54.28 52.28 20.89 1.26 58.74 44.27 36.99 11.15 31.84 21.34 43.64 86.26 53.75 62.18 43.26 47.41 61.85 30.64 72.74 87.16 88.36 93.66 26.75 60.71 14.52 2.65 5.97 41.46 22.80 81.50 48.07 5.89 15.17 20.64 26.00 61.96 31.97 2.32 79.03 12.09 6.51 0.54 54.44 72.35 52.59 54.08 33.59 14.92 90.82 82.07 93.29 19.54 25.12 29.42 69.48 44.82 21.02 42.82 74.13 94.21 84.36 33.11 47.99 69.75 70.96 98.33 32.63 62.43 25.58 22.88 27.32 96.55 34.20 32.10 95.00 76.51 55.53 77.16 78.65 -55.94 26.26 15.94 63.41 57.72 86.76 2.06 40.67 76.98 41.37 48.20 95.11 13.96 45.66 89.68 20.10 31.57 84.93 92.90 63.92 0.41 42.28 8.80 0.99 98.47 16.10 42.56 63.26 97.56 19.44 31.86 29.74 89.00 99.95 37.67 24.70 85.17 71.76 16.91 4.73 37.70 92.99 28.96 31.72 62.38 48.87 32.52 5.32 69.11 16.92 26.06 47.42 15.17 9.73 78.26 58.70 86.26 71.02 39.05 42.81 56.45 36.95 98.61 84.14 41.42 78.40 24.08 40.68 68.57 62.79 47.33 74.19 50.89 93.02 65.77 9.36 29.73 87.32 40.49 37.13 7.19 38.19 44.92 78.97 61.46 3.95 34.33 29.78 50.20 79.93 29.78 2.69 87.43 22.10 29.11 26.17 70.68 7.62 4.11 21.56 -60.84 62.12 32.64 5.08 77.55 51.41 25.30 19.92 3.27 21.44 0.71 30.76 37.93 57.96 89.32 72.31 61.65 33.91 24.52 4.33 88.35 83.89 89.71 1.46 0.60 57.96 4.81 71.76 76.19 66.03 44.74 71.94 15.74 3.86 25.66 56.25 94.51 12.18 63.93 89.30 68.53 14.65 27.37 88.74 64.48 37.10 34.05 40.83 12.27 31.65 42.19 11.46 27.90 78.53 99.36 5.21 26.45 70.09 83.51 23.77 64.74 65.01 76.44 85.84 29.07 85.17 1.02 99.60 9.80 63.27 32.38 50.04 30.16 62.40 34.44 47.93 26.86 0.25 5.58 97.96 74.48 54.15 44.80 52.11 75.97 35.96 55.69 2.61 24.98 61.64 27.29 28.11 79.65 51.42 84.20 30.24 78.37 96.54 38.14 78.91 -26.57 71.72 38.09 43.45 54.67 71.15 24.74 23.51 76.67 6.44 57.51 6.39 99.91 94.86 41.48 64.55 83.61 6.11 59.52 50.34 81.50 13.00 43.22 26.90 63.01 0.58 75.11 87.70 92.78 76.16 94.93 95.21 99.33 49.47 59.92 49.59 34.37 45.77 0.63 19.10 32.34 32.43 1.29 22.66 58.60 38.65 21.17 32.05 15.16 74.16 59.79 56.77 93.91 44.35 24.64 13.09 60.41 93.70 7.44 36.67 72.94 23.32 12.50 2.06 35.47 91.71 18.46 79.56 26.02 30.79 30.76 64.65 3.09 78.38 34.68 61.03 61.07 68.87 49.91 34.63 8.08 52.11 8.64 75.88 47.86 16.34 45.52 48.35 86.79 82.05 77.78 55.77 11.99 1.30 48.77 50.15 75.86 17.89 22.56 7.91 -71.47 77.70 48.55 80.66 56.08 85.87 45.96 68.00 22.77 78.88 9.17 59.42 24.68 7.23 19.48 42.15 88.34 31.06 27.03 69.42 83.06 41.04 4.51 31.24 15.94 75.18 98.85 71.59 58.34 10.01 98.50 91.20 50.81 78.23 32.74 74.41 55.83 15.26 77.07 5.17 85.13 73.99 27.31 97.91 31.46 9.30 94.99 15.72 47.78 55.98 48.98 29.61 41.24 57.91 95.73 69.89 99.14 52.27 52.24 0.63 90.70 95.80 73.43 82.60 30.24 25.48 10.85 30.22 44.33 69.52 78.29 65.98 17.01 27.31 98.03 60.31 43.85 32.53 89.79 68.48 23.58 54.58 61.29 4.61 42.17 31.62 26.04 99.29 15.87 24.00 45.34 98.72 24.49 28.31 96.74 85.76 96.61 61.14 11.99 96.32 -80.58 89.13 19.19 76.52 24.28 93.64 65.96 93.25 34.45 69.18 24.10 79.51 90.85 36.19 85.35 85.72 1.36 77.82 86.77 61.07 27.42 9.88 8.29 14.57 87.80 8.76 85.45 21.15 74.36 0.13 9.29 10.80 71.31 97.94 80.91 91.74 82.15 14.72 12.53 23.39 14.40 55.47 53.09 41.83 64.50 23.80 75.45 54.22 83.83 24.81 81.20 81.00 16.51 36.99 6.53 35.81 29.91 93.34 84.51 33.61 98.07 8.49 88.46 87.08 93.52 59.56 48.06 72.22 76.63 41.39 6.56 31.41 37.10 91.82 49.55 96.12 6.80 63.28 50.84 72.00 35.94 93.15 8.34 18.67 91.35 37.32 58.99 68.09 19.06 25.90 11.95 4.95 19.54 71.60 20.63 52.44 97.43 81.85 35.28 84.19 -6.64 30.08 81.82 0.53 63.55 96.54 36.12 60.68 96.22 41.82 82.94 60.75 56.93 98.52 35.10 23.53 51.77 71.33 54.11 83.65 80.00 37.85 9.97 77.98 23.89 17.49 60.06 10.80 85.61 92.12 83.91 3.93 85.06 83.18 30.07 68.13 14.89 31.02 54.96 23.45 20.53 70.74 48.08 10.06 65.12 94.41 41.20 65.11 34.62 25.15 45.07 52.21 54.60 51.03 76.89 83.13 87.49 30.24 43.70 53.59 17.39 47.11 3.87 9.73 75.11 49.76 58.22 65.08 37.06 71.60 60.26 51.07 77.38 52.36 84.63 64.74 65.46 24.95 70.57 78.04 23.13 53.58 12.48 18.70 59.19 80.38 94.81 54.16 94.68 31.35 81.29 54.52 10.35 47.27 66.09 39.22 64.55 98.01 75.17 50.71 -50.97 85.47 65.89 73.01 65.11 79.51 85.04 89.01 80.24 1.03 61.49 34.50 99.37 5.92 88.31 85.70 18.46 27.05 66.09 69.78 18.86 80.01 0.53 2.08 99.63 22.69 91.04 71.89 7.82 63.77 3.14 5.05 23.07 24.62 62.92 20.12 93.39 37.23 22.07 24.65 19.61 31.81 73.70 37.47 77.06 2.58 85.97 24.10 18.45 12.06 39.97 61.68 34.92 95.76 93.29 32.35 64.18 85.31 42.60 33.70 31.68 29.60 4.88 93.53 75.17 79.35 85.93 92.33 56.11 93.16 8.60 63.86 71.54 89.31 45.77 35.05 3.39 86.26 26.63 33.05 7.76 65.49 3.31 20.08 97.10 19.22 27.21 72.98 89.44 93.39 84.81 57.35 63.76 62.16 55.11 58.26 11.49 92.21 85.62 93.80 -89.25 33.33 91.04 94.45 5.92 97.14 75.80 64.79 43.40 27.44 82.37 34.19 29.26 26.49 69.90 76.13 40.26 84.41 79.61 73.84 67.97 51.83 35.97 62.42 78.85 61.50 78.41 93.50 97.43 80.09 72.60 74.31 32.21 73.04 70.52 19.21 65.29 86.82 89.66 15.61 54.00 5.53 6.24 31.28 70.45 59.62 82.58 55.69 97.70 12.22 59.52 13.96 73.92 27.86 49.05 45.56 26.58 76.73 60.43 43.80 75.04 79.31 76.22 72.85 22.99 14.61 9.35 62.35 98.31 97.31 69.59 43.99 34.01 55.05 97.84 97.08 68.49 38.96 20.04 4.52 86.05 84.97 31.47 74.53 23.77 31.29 37.38 43.41 48.62 51.20 61.74 64.37 64.51 16.35 65.78 64.94 0.69 6.52 34.57 13.56 -24.45 88.45 0.25 9.51 46.91 84.43 65.86 79.82 2.47 27.65 23.80 77.83 41.18 81.34 0.47 69.99 73.09 79.74 2.45 21.46 77.11 78.08 28.60 32.21 28.59 51.98 74.24 25.23 11.02 81.20 7.43 47.93 33.63 78.69 71.08 14.86 12.83 8.71 49.08 26.71 85.06 40.38 51.60 58.64 17.19 7.34 69.68 53.13 36.40 62.58 6.51 66.11 3.45 84.12 56.31 62.12 75.98 83.39 0.49 10.12 31.04 66.87 50.23 30.41 37.69 69.65 11.97 21.32 50.43 21.49 99.77 54.99 28.03 56.14 3.20 1.01 33.97 76.23 68.25 32.61 72.43 78.36 75.38 8.73 79.43 68.87 79.93 78.88 2.42 43.37 91.02 79.01 81.12 77.26 42.46 62.59 86.26 96.79 82.17 96.90 -82.08 52.63 21.31 10.36 97.31 51.91 99.18 87.25 46.08 23.63 94.52 84.95 15.98 57.96 10.19 8.49 89.80 59.82 67.80 52.91 69.33 46.90 14.62 86.91 90.48 71.52 16.58 98.89 42.15 37.21 95.58 43.68 44.37 58.06 91.80 6.68 4.02 68.49 1.75 90.53 41.11 18.08 74.57 6.58 18.94 28.97 84.59 53.33 0.58 98.83 81.80 82.45 57.46 17.38 8.23 21.42 66.57 71.00 29.01 46.38 60.07 23.66 24.83 60.53 5.81 61.71 86.86 5.84 34.08 20.54 52.56 50.02 50.51 94.72 67.00 42.97 16.13 74.29 31.37 36.79 99.34 92.51 57.20 70.64 32.42 21.76 21.07 30.62 47.78 72.46 91.49 32.31 84.91 85.87 74.28 18.69 74.05 68.60 47.17 62.16 -84.43 22.83 22.00 47.34 81.21 67.51 80.38 30.90 72.96 91.45 49.02 52.03 60.11 27.18 7.79 97.72 69.78 68.92 19.06 21.34 76.68 69.75 98.64 23.77 59.23 38.08 42.99 68.84 78.95 67.30 24.83 44.34 18.20 95.59 68.19 50.17 68.05 89.34 72.42 4.16 29.80 61.74 54.67 22.60 49.91 93.74 2.71 15.18 4.39 91.24 70.27 84.97 48.80 98.74 29.41 97.73 86.03 20.86 34.06 22.85 83.98 57.29 51.00 95.02 65.01 27.34 56.19 92.56 58.51 57.27 37.33 1.48 85.12 76.82 14.78 51.79 28.37 64.71 90.76 43.91 47.15 71.20 99.43 96.31 59.17 25.62 78.77 71.86 59.78 71.36 31.68 88.22 8.38 54.22 66.33 21.94 40.33 39.03 37.95 58.42 -23.25 9.81 34.99 0.56 44.66 65.72 81.66 23.72 84.19 88.41 50.60 58.38 72.97 44.16 17.40 0.27 31.19 84.04 21.95 66.04 23.18 17.26 17.94 57.43 85.82 32.66 67.95 12.51 62.89 90.81 32.64 9.68 66.75 25.19 21.96 43.17 53.49 10.17 94.12 19.71 79.84 16.16 23.49 61.50 83.07 60.68 21.47 69.58 49.39 22.01 83.26 53.32 73.46 97.05 40.26 8.62 57.93 4.12 98.55 78.45 74.69 96.04 63.49 83.99 52.22 68.44 69.93 51.70 16.21 13.38 33.56 98.21 60.27 26.97 5.33 7.66 84.52 8.07 98.76 16.61 39.49 64.56 33.05 3.66 27.03 49.58 90.41 99.82 80.44 83.31 62.98 13.57 1.60 17.91 3.46 9.63 61.73 99.11 4.32 94.42 -1.63 18.59 22.53 86.75 10.96 83.94 59.05 82.89 58.89 60.12 38.28 37.28 16.61 25.11 4.69 0.29 35.16 11.16 36.13 77.70 63.62 54.41 84.47 96.60 48.93 44.06 86.63 21.20 8.33 8.30 51.43 85.16 82.59 55.98 4.74 17.82 79.37 53.57 85.51 81.93 68.07 62.58 63.00 52.12 46.77 1.62 38.42 22.77 41.21 62.90 20.80 86.36 5.79 89.78 71.43 80.09 91.34 31.74 25.43 6.63 37.92 44.13 40.08 77.63 39.45 8.99 82.21 96.90 27.82 32.23 64.25 32.49 84.20 13.59 25.44 6.47 40.41 54.32 44.95 42.17 70.79 94.55 44.36 88.15 15.14 50.33 18.21 42.92 1.15 74.18 1.93 34.67 51.39 33.27 37.78 26.16 14.84 73.63 13.55 97.19 -64.48 91.91 36.98 77.67 60.60 19.73 59.84 18.37 9.58 73.98 41.44 50.16 75.34 85.47 93.67 96.65 49.22 34.50 60.76 22.04 27.10 86.23 92.94 11.62 23.52 23.35 15.63 44.24 28.57 42.97 19.49 70.48 96.75 3.37 23.67 59.08 59.43 39.01 87.12 29.67 66.78 10.67 91.83 84.63 91.39 67.59 28.60 94.34 77.06 12.17 35.61 63.90 91.87 22.58 44.14 17.41 67.36 13.82 81.65 87.65 75.92 49.28 79.88 50.80 58.97 31.96 35.61 17.67 10.78 18.04 81.20 90.08 13.25 18.23 9.08 58.98 12.04 32.01 52.59 23.09 44.80 44.48 31.04 29.30 80.37 94.91 45.64 51.85 24.20 79.92 83.86 90.15 29.16 18.47 91.24 29.69 16.89 59.48 8.22 37.14 -84.07 80.11 42.29 42.70 53.84 16.20 37.56 45.48 25.46 77.68 30.92 73.37 78.73 65.12 52.55 81.26 14.58 21.15 59.13 14.44 84.95 8.61 40.04 40.04 89.30 85.42 52.29 97.32 33.31 39.77 44.93 30.52 57.42 79.22 89.10 58.82 17.64 14.44 60.96 19.88 23.08 84.53 69.34 3.93 63.32 20.92 35.44 28.92 8.50 50.52 25.40 69.23 61.51 28.63 61.59 50.61 62.25 92.58 31.36 27.58 93.46 74.00 46.34 36.56 24.40 78.14 66.23 21.91 47.90 22.63 21.60 14.78 83.52 89.97 24.11 34.85 32.24 21.73 17.23 86.06 43.79 86.62 16.71 0.00 83.83 45.98 41.70 42.17 78.93 26.98 71.44 74.18 31.42 40.04 31.47 79.55 58.61 76.35 6.19 81.45 -14.60 95.03 37.77 44.21 89.00 56.87 54.67 78.73 2.78 96.88 63.64 3.36 42.17 92.29 79.89 21.70 37.67 33.07 42.00 57.53 50.86 14.94 9.41 89.55 23.80 70.01 60.95 65.21 77.52 87.39 89.30 78.80 18.78 70.27 21.90 96.74 26.20 16.24 71.39 97.08 18.02 19.41 63.19 14.48 57.81 39.56 99.56 55.00 48.13 32.95 23.56 83.39 88.32 13.69 24.80 61.23 53.36 77.14 93.70 31.99 19.37 4.23 20.44 98.12 79.53 28.41 79.19 72.87 89.09 93.21 42.15 94.83 84.29 14.57 87.85 48.28 26.78 55.19 37.76 62.52 27.07 42.84 69.91 86.19 47.71 50.34 63.49 59.83 90.36 91.20 32.64 5.64 43.49 57.45 43.54 33.36 48.57 37.79 81.85 25.43 -98.76 16.76 3.92 17.15 44.24 16.72 98.84 53.60 20.62 99.47 65.37 57.40 51.58 10.79 55.10 44.98 17.99 45.10 19.13 21.29 6.80 5.49 96.16 9.33 78.71 41.42 65.84 19.77 34.62 11.10 78.86 12.88 72.95 84.26 76.28 23.87 27.19 17.25 89.49 89.91 91.04 25.82 49.86 76.79 95.79 39.53 88.84 69.40 99.09 23.17 60.99 79.84 40.44 6.90 67.61 18.42 81.20 56.07 44.90 56.07 11.02 48.03 20.35 22.87 24.18 73.36 90.61 12.87 72.95 22.89 49.31 6.77 48.36 59.64 10.07 56.19 91.83 5.12 88.77 67.07 70.28 46.03 76.92 85.20 34.21 81.80 89.90 66.21 55.15 64.13 13.56 10.58 14.63 81.35 57.63 88.65 40.61 20.00 33.13 11.53 -24.40 10.16 57.32 0.32 15.38 90.27 91.03 95.11 41.23 96.27 61.89 90.87 8.61 95.34 85.26 49.73 33.29 71.33 22.31 28.74 29.08 77.60 6.93 36.35 75.97 43.80 52.07 41.86 93.37 31.64 97.81 71.32 72.74 92.57 60.27 11.70 6.18 83.97 75.21 33.16 23.26 29.96 79.01 79.15 84.43 83.12 35.64 69.51 22.96 23.80 62.78 13.00 99.70 37.93 44.21 36.02 88.53 47.02 34.58 17.00 18.81 96.24 15.43 15.60 58.29 54.86 63.65 8.00 4.77 93.04 75.00 92.44 35.71 44.02 82.31 36.62 86.18 6.42 61.69 99.37 48.57 61.99 44.11 39.99 21.40 9.63 4.52 89.73 54.17 59.25 31.15 31.01 8.54 60.64 71.10 99.61 54.39 45.05 69.01 76.09 -89.02 15.56 39.11 7.55 15.15 6.36 64.71 85.74 17.66 49.21 85.34 15.22 31.83 77.68 74.71 17.63 13.11 23.57 10.61 45.13 31.10 65.86 36.29 64.85 95.27 27.43 92.26 58.02 17.98 5.04 95.34 70.70 83.74 2.45 44.80 64.24 10.84 96.78 63.16 76.23 22.36 54.40 48.71 70.89 23.06 50.63 26.31 17.65 9.13 54.58 27.49 76.44 47.13 67.73 10.67 18.17 98.58 50.42 88.73 56.58 46.86 49.63 85.14 42.04 92.08 16.55 10.50 48.11 54.05 16.74 69.19 99.55 9.19 48.56 38.53 47.33 19.78 0.26 26.17 52.28 6.08 54.83 63.56 94.15 80.01 81.51 94.61 17.01 4.34 41.07 16.87 36.55 56.42 57.14 64.24 20.04 77.38 73.48 79.01 49.34 -54.46 98.18 2.25 31.67 8.38 39.48 31.86 0.97 42.24 9.78 8.04 20.44 22.76 87.26 59.70 70.21 54.78 60.68 18.96 66.88 38.20 39.82 9.56 4.15 49.98 57.32 70.99 57.33 20.23 37.73 31.89 26.43 76.92 13.29 80.44 96.77 3.11 64.96 26.00 5.44 37.68 59.53 90.64 72.81 25.08 13.42 21.96 51.58 10.67 86.57 86.55 57.61 73.94 76.61 48.14 73.91 97.83 60.35 96.98 8.65 19.42 5.23 96.06 97.04 66.18 15.52 42.07 18.34 98.75 50.43 23.20 69.09 84.94 34.35 3.69 99.85 10.64 84.11 97.05 75.78 79.04 9.58 59.74 46.45 4.99 90.18 37.72 15.48 53.45 99.22 22.46 68.38 76.58 76.94 66.79 11.68 87.70 54.23 91.18 15.28 -73.99 98.10 78.80 62.42 27.38 48.11 56.29 90.82 35.88 85.71 26.12 26.76 37.83 86.80 71.05 67.35 54.85 72.08 45.85 62.09 7.54 92.62 48.68 21.68 63.28 89.50 91.13 85.88 11.55 26.13 62.60 48.03 42.63 32.63 84.22 49.75 41.13 47.50 9.32 44.11 28.51 85.49 15.71 69.09 18.81 24.56 4.59 18.98 80.35 77.87 15.48 34.66 56.76 36.55 51.10 46.89 1.84 94.97 34.01 30.30 27.96 87.76 16.45 47.35 9.52 49.12 81.09 0.83 99.11 54.34 34.58 53.69 91.47 5.23 94.36 62.55 18.63 61.43 95.87 87.73 76.92 38.76 5.92 30.25 47.75 40.26 48.31 6.30 47.74 70.39 94.37 76.79 42.34 20.35 8.12 30.38 91.53 16.90 45.33 36.22 -41.73 77.73 34.12 99.53 46.16 28.21 3.01 36.86 34.62 25.71 29.55 63.78 42.02 42.03 19.35 66.97 26.93 5.76 82.03 53.38 37.19 23.55 27.41 35.00 39.87 97.01 53.39 99.45 11.46 88.37 65.23 94.22 89.17 81.36 34.54 42.72 16.50 95.45 21.83 45.77 22.20 24.13 21.23 48.57 92.93 24.60 24.19 47.27 40.96 78.80 64.20 24.00 73.12 26.14 44.16 16.43 22.36 12.88 88.65 12.85 79.61 67.95 11.66 31.52 20.49 21.33 94.21 48.30 99.29 30.16 75.72 75.50 63.12 99.17 95.38 55.47 37.22 63.81 4.56 57.45 34.58 58.15 35.69 82.60 10.35 82.37 13.02 38.21 83.29 77.46 81.00 54.18 37.06 31.01 27.38 12.97 77.51 33.61 70.96 52.50 -61.76 69.81 93.27 51.54 29.45 56.75 0.48 17.06 46.58 54.62 65.30 32.77 97.69 53.92 28.32 93.14 12.21 25.86 28.96 65.63 53.75 78.45 99.39 7.65 2.67 10.99 70.09 76.38 95.29 62.63 49.00 18.73 92.51 35.97 51.08 26.29 27.91 66.90 33.02 24.01 40.22 55.35 45.09 57.36 1.17 80.60 31.90 38.93 70.44 38.73 25.68 55.54 77.08 53.77 36.97 91.33 13.21 81.51 29.84 62.09 92.10 46.07 69.91 46.45 19.65 83.11 5.22 20.25 48.75 10.37 13.57 35.55 80.09 52.58 0.62 15.02 28.78 78.08 97.91 95.71 61.56 6.03 62.17 79.40 24.42 13.79 46.70 82.49 78.15 50.04 23.10 0.85 86.38 8.48 30.29 97.51 71.96 51.26 53.43 78.81 -47.41 24.86 59.88 7.45 90.49 13.35 43.18 67.62 21.29 38.88 5.53 3.79 92.04 64.33 90.45 28.96 87.83 90.64 20.38 70.92 14.08 68.74 44.81 28.04 59.98 25.41 17.76 97.95 12.35 5.52 50.83 1.65 70.64 21.18 1.78 34.43 98.25 47.28 84.03 70.77 46.56 79.98 68.77 49.31 63.78 16.67 50.97 64.43 94.60 15.14 36.25 56.89 68.54 69.65 8.59 48.40 34.74 18.07 14.63 17.51 21.50 87.96 10.15 15.80 43.67 99.74 42.70 52.70 58.93 42.55 33.68 65.65 23.54 53.26 13.94 62.31 54.41 21.60 10.92 77.26 56.79 16.00 47.39 12.64 48.28 12.50 69.02 85.65 3.64 25.37 74.40 25.04 45.13 55.22 93.31 8.55 38.85 40.08 27.70 7.31 -87.37 77.83 77.00 65.75 33.23 86.72 16.92 9.86 67.94 76.62 51.87 54.33 12.91 60.21 6.54 58.54 58.06 16.42 1.55 39.71 80.84 65.55 60.70 26.21 26.55 84.39 2.21 8.54 84.17 75.70 38.58 90.20 99.82 64.93 15.81 43.41 64.52 5.57 47.96 28.01 73.57 68.34 63.67 58.10 1.24 69.70 74.27 39.84 7.33 20.62 9.26 95.07 43.61 47.90 13.61 72.64 50.28 66.58 65.09 76.14 28.53 35.07 76.86 59.04 87.78 64.14 47.51 91.29 29.17 84.94 84.08 99.43 51.73 83.46 77.69 15.30 60.86 57.03 52.10 47.88 73.15 86.86 7.80 35.56 56.73 90.12 77.82 15.91 40.16 73.16 28.43 94.00 3.43 86.92 65.53 29.50 0.98 8.05 6.79 32.83 -61.04 47.53 10.57 25.82 0.26 94.79 39.30 93.34 59.97 41.05 73.08 68.51 11.75 45.65 69.40 36.01 78.33 54.13 4.70 4.32 57.57 10.52 93.06 75.01 10.92 10.17 71.35 87.53 3.45 40.64 6.43 18.42 82.48 9.69 11.74 14.66 78.75 56.12 45.69 0.36 98.87 65.47 32.09 89.81 72.20 49.15 36.13 50.62 28.79 59.51 97.70 20.75 94.13 71.73 83.43 47.41 99.10 98.12 97.88 15.47 68.82 93.17 74.77 78.93 29.75 80.89 40.02 40.46 65.66 15.08 73.08 27.36 82.35 75.18 78.95 56.06 79.72 44.74 86.23 58.39 93.00 92.72 12.08 28.63 60.85 32.52 56.62 62.16 58.70 9.93 6.90 75.75 53.94 90.63 53.49 18.09 32.55 0.96 38.80 7.65 -55.17 52.53 43.53 17.46 72.06 99.74 33.97 67.04 87.83 86.93 18.25 11.62 34.22 97.89 51.37 15.09 22.43 55.43 14.98 78.91 44.64 34.97 84.88 92.81 13.30 65.72 24.72 77.96 23.20 30.25 91.80 18.93 87.45 67.02 59.50 67.90 51.47 58.97 59.72 25.31 98.62 62.05 21.32 80.84 36.36 25.45 87.22 72.27 3.12 70.47 33.03 37.93 24.62 36.59 41.15 55.40 11.16 68.16 42.73 35.33 45.96 89.28 46.55 65.81 81.43 71.35 3.31 69.24 52.14 13.15 62.20 40.99 86.88 96.89 5.97 30.99 32.52 43.71 42.53 88.18 70.63 16.91 47.49 22.42 67.93 11.13 80.29 7.66 12.94 76.44 65.54 48.08 64.11 56.33 13.38 38.49 57.74 4.70 32.67 32.51 -91.24 6.49 70.54 87.03 18.00 77.98 89.32 31.14 40.26 0.79 74.29 0.56 92.62 56.66 18.81 3.84 76.14 71.87 33.62 84.71 80.55 96.89 37.77 35.50 97.32 29.34 99.68 33.99 70.06 99.03 88.85 40.39 93.50 19.95 85.95 4.73 9.07 76.55 61.96 26.78 13.27 48.72 96.94 6.77 92.80 50.34 2.27 68.61 56.19 97.70 51.93 3.99 12.90 38.13 81.24 18.98 44.27 34.77 90.86 7.50 87.87 52.70 13.23 26.74 23.78 44.74 22.38 87.21 47.99 84.44 57.91 8.24 99.61 81.18 65.20 26.31 98.92 11.30 79.17 91.20 30.82 24.88 37.42 30.03 35.07 6.75 77.29 75.28 41.92 34.70 36.11 92.09 27.51 45.10 53.23 56.34 51.43 30.18 75.70 50.81 -51.08 12.10 58.14 82.53 13.74 63.02 27.67 71.06 3.71 90.30 69.35 63.11 50.68 90.31 96.51 54.76 27.43 59.08 46.08 86.32 61.78 66.73 17.14 8.98 78.80 56.23 65.98 88.92 99.00 63.90 89.71 60.07 99.05 6.84 10.35 49.89 81.34 52.59 73.30 82.66 77.05 84.09 38.50 31.97 66.66 41.50 8.40 61.51 79.89 35.04 30.52 0.08 49.33 80.79 75.45 75.35 41.67 1.07 60.85 71.05 96.22 36.95 4.26 88.26 25.96 2.98 39.08 86.11 2.79 68.36 59.48 60.62 37.32 45.60 38.02 15.23 54.69 55.91 44.24 35.93 74.47 72.74 65.96 40.12 6.69 80.36 1.06 47.32 98.18 75.54 47.09 87.50 23.63 59.01 14.38 9.08 26.18 92.90 37.83 54.36 -35.27 50.25 70.84 50.11 16.70 1.31 33.49 53.53 19.16 54.01 44.36 98.89 98.47 65.23 17.34 12.71 62.49 53.36 11.15 49.44 29.45 40.97 98.37 27.76 52.17 37.61 81.54 7.94 22.65 32.63 73.81 97.12 56.96 14.23 63.15 10.98 49.34 92.17 76.57 80.33 88.36 24.42 58.72 29.66 27.12 44.17 42.23 79.81 35.80 27.95 24.89 7.90 78.08 30.98 73.58 12.81 28.66 10.76 65.72 19.14 50.41 75.48 94.23 95.12 83.20 43.72 1.25 28.51 14.89 81.06 5.85 57.62 42.75 16.63 95.16 43.71 19.18 89.74 2.78 63.64 53.31 0.05 17.71 52.74 88.40 39.53 87.82 56.30 64.55 65.80 3.66 89.12 38.47 31.17 56.79 64.30 51.12 40.58 61.48 50.31 -61.26 17.51 9.98 54.67 29.03 84.47 18.46 23.42 69.95 37.57 33.58 15.32 65.16 51.68 14.68 17.05 33.36 1.14 51.03 25.03 47.25 3.63 38.52 99.88 70.79 43.26 15.95 76.14 28.88 55.07 1.28 3.62 37.42 65.42 28.98 49.52 16.34 88.09 32.11 71.70 1.37 74.78 4.01 16.17 97.44 2.73 54.04 23.34 61.11 13.32 50.33 92.72 95.90 43.40 84.73 53.89 82.98 42.94 40.16 45.46 81.19 60.72 49.06 62.70 55.82 23.67 64.78 20.08 94.18 38.40 59.91 32.40 39.65 86.58 37.27 22.98 61.48 19.86 20.87 9.93 24.82 23.93 54.29 21.48 1.11 96.19 53.93 6.24 79.40 29.10 17.38 76.70 66.06 37.55 95.69 23.66 18.42 87.03 63.93 93.26 -72.78 68.58 37.34 15.37 62.78 20.52 96.85 87.17 18.67 6.24 99.22 23.72 0.42 0.48 21.39 75.60 31.18 99.54 19.10 6.50 90.77 6.11 25.32 83.66 74.86 21.88 37.08 71.87 48.44 59.66 79.94 55.19 48.62 43.80 82.88 19.35 75.36 79.27 24.03 62.43 13.87 68.66 43.36 9.99 8.21 97.93 84.29 96.66 47.11 12.58 5.12 41.49 84.17 52.71 21.44 38.87 67.12 46.85 48.24 81.29 12.61 10.52 7.98 98.66 95.93 74.44 81.61 51.93 65.49 8.82 13.17 42.86 77.67 72.12 28.97 1.77 3.78 31.46 89.23 85.07 79.18 9.27 24.87 44.72 84.52 23.84 69.02 22.88 53.47 16.25 67.83 45.95 55.06 33.90 28.74 33.92 72.76 90.49 79.76 0.50 -65.31 13.32 40.65 58.27 6.27 35.86 97.70 95.32 96.68 90.58 12.89 91.74 58.55 92.92 80.93 31.02 11.94 5.04 0.73 71.41 15.17 15.73 22.62 0.97 93.74 56.23 45.00 69.17 39.43 86.78 7.06 58.24 55.50 0.21 39.14 33.69 87.27 1.00 49.00 77.20 84.01 34.79 93.12 29.94 79.59 32.44 90.72 15.83 27.07 89.71 44.44 86.41 60.44 42.82 24.28 36.21 38.71 100.00 70.03 62.03 39.84 89.84 84.88 96.62 34.29 28.74 56.85 29.49 80.09 12.69 98.08 65.17 57.93 90.96 8.94 40.94 34.93 34.18 26.66 85.87 34.53 20.86 24.79 94.58 90.90 81.22 61.32 65.35 98.07 44.97 35.45 68.32 37.87 12.68 19.76 98.15 86.25 68.26 84.53 38.01 -68.07 61.57 36.73 81.76 34.86 62.07 73.77 77.45 9.49 94.51 18.28 72.84 97.08 15.79 29.15 21.55 94.09 72.76 82.49 76.48 94.25 12.98 75.70 51.95 98.95 77.91 56.01 98.67 91.28 66.13 7.26 14.67 50.27 9.31 32.76 61.71 46.05 47.37 85.25 59.53 70.56 9.14 37.81 41.10 98.79 72.71 53.95 51.53 42.41 26.81 0.26 70.73 57.98 15.40 9.30 63.00 48.99 61.74 80.72 94.34 48.56 96.54 83.17 77.57 41.57 1.82 85.38 77.28 52.97 60.18 12.07 18.55 1.35 63.30 27.87 29.17 21.51 97.98 77.37 34.45 33.78 59.97 35.91 57.41 30.99 11.78 63.33 67.05 54.09 20.70 70.96 7.59 6.00 36.12 38.15 10.35 26.11 93.06 55.02 34.20 -45.20 73.94 78.24 9.98 73.64 34.79 62.46 29.29 83.48 83.62 13.03 7.51 7.60 66.33 24.92 40.61 18.26 63.07 16.20 21.79 93.76 36.95 87.47 83.38 73.04 39.85 46.64 26.13 58.51 11.54 73.50 72.19 68.60 41.46 11.48 23.70 84.48 76.51 71.30 58.76 45.57 41.11 95.75 94.87 27.76 22.50 98.74 83.49 92.55 31.45 51.37 69.90 81.62 80.02 92.05 15.92 32.56 91.23 70.57 96.75 4.91 5.97 39.48 59.99 51.16 84.39 13.66 92.58 21.27 36.20 19.12 68.21 43.10 77.26 79.30 16.18 70.12 37.39 47.07 73.39 7.26 35.11 37.07 46.05 90.55 97.30 91.19 62.47 12.48 87.09 45.90 71.10 55.23 90.48 19.78 7.41 13.43 48.50 69.69 9.75 -69.55 92.89 17.11 36.66 85.08 80.38 61.59 72.23 6.45 10.83 88.72 75.04 18.78 56.54 22.85 2.64 47.01 54.47 67.63 65.77 89.21 42.87 40.18 29.02 12.44 21.78 94.80 2.28 0.79 64.65 39.37 34.49 39.92 51.25 40.58 16.69 14.84 74.20 81.54 60.06 96.76 81.16 88.47 15.05 37.10 8.35 91.05 88.25 33.89 23.33 44.26 6.09 14.04 31.89 66.28 57.21 97.10 5.31 47.83 66.07 47.84 92.73 6.08 46.12 29.58 7.30 91.96 13.54 38.07 35.76 58.75 23.22 72.67 76.89 48.77 66.95 18.50 77.25 23.21 38.82 6.71 7.46 67.94 23.26 1.36 92.27 5.14 83.75 90.61 17.72 17.98 51.34 18.49 66.83 21.88 16.43 46.04 60.09 42.29 71.96 -61.39 48.17 82.47 97.35 67.27 23.81 27.22 83.42 94.25 91.75 38.66 95.15 22.69 52.49 27.25 50.92 50.47 48.23 72.32 85.01 58.62 2.51 62.60 59.78 15.62 42.46 58.79 70.70 87.22 84.33 28.27 70.22 73.31 10.91 74.34 94.80 36.73 95.24 20.86 56.98 15.18 38.62 85.42 69.64 63.56 57.21 33.35 94.08 69.12 97.17 1.51 50.26 70.09 94.30 17.07 57.53 37.05 76.85 87.68 48.56 42.26 96.88 44.93 65.38 15.55 79.38 98.98 27.63 86.62 75.37 47.74 86.90 7.59 89.20 87.29 8.13 67.19 26.87 22.95 25.67 65.51 84.55 44.19 39.33 32.65 97.96 81.53 38.59 70.17 32.13 72.45 90.54 46.31 91.42 11.24 52.54 65.73 6.28 89.55 83.42 -92.30 80.69 29.75 15.84 1.83 69.79 60.87 51.21 95.41 72.57 20.43 13.78 80.98 68.52 53.43 89.14 99.27 85.59 70.94 33.72 89.71 97.04 11.40 94.22 60.84 42.03 37.98 62.22 35.97 78.74 32.74 11.26 17.15 67.63 43.29 0.00 98.86 9.74 41.90 0.43 39.86 36.62 21.73 12.18 9.46 48.88 94.32 5.15 60.27 9.38 40.50 35.80 15.23 97.97 36.10 20.05 75.36 81.26 48.92 77.72 50.23 22.79 13.92 0.61 36.82 73.56 12.89 54.02 69.55 19.32 58.20 53.29 15.45 58.03 38.70 47.74 46.36 84.83 47.53 50.69 81.16 38.58 16.17 40.98 24.80 15.25 28.10 83.10 6.23 94.29 4.99 96.66 93.69 46.44 48.98 59.52 94.94 43.77 77.23 92.50 -11.10 21.93 38.07 13.50 93.32 0.31 60.75 41.53 10.53 14.62 75.26 81.39 93.22 4.44 75.97 58.64 71.91 14.60 61.16 42.99 78.29 69.95 82.23 67.21 27.00 83.06 3.54 61.23 76.55 82.26 26.15 84.97 84.08 11.72 45.14 85.58 91.30 1.51 48.11 64.76 16.76 31.05 18.92 22.50 36.60 58.27 4.23 72.51 75.20 70.81 57.96 91.09 64.72 43.59 17.43 46.47 10.78 94.04 83.27 17.92 5.00 27.69 6.51 7.17 71.10 21.52 9.07 35.42 13.07 86.12 51.64 92.25 67.42 32.63 84.58 52.71 5.18 41.40 1.05 41.67 20.45 93.67 43.80 71.87 79.14 85.71 97.65 76.14 26.44 47.49 39.79 89.26 44.76 24.07 39.42 31.66 35.98 82.93 71.94 63.21 -67.78 73.32 32.25 71.04 69.47 72.49 42.52 74.89 59.66 68.13 42.48 22.70 31.64 70.29 4.36 9.21 16.23 79.35 30.92 47.39 17.21 39.68 77.71 51.12 27.14 36.82 53.44 94.86 47.93 54.93 74.28 54.95 92.93 18.84 35.29 25.33 82.57 39.81 76.39 42.73 2.32 42.93 63.65 74.95 42.29 9.16 59.34 11.09 75.23 11.57 15.80 86.64 47.47 97.08 67.42 52.69 93.91 25.98 8.65 34.89 25.42 37.06 13.00 16.27 1.42 60.34 50.11 93.57 27.62 61.86 23.94 34.39 84.18 61.09 75.30 73.69 14.38 8.81 43.10 51.01 6.63 42.69 41.24 26.07 37.03 28.15 86.83 41.19 56.19 50.55 75.11 61.20 21.00 78.48 55.12 66.14 28.71 6.83 65.27 72.91 -59.39 36.69 43.86 19.54 27.28 98.74 66.79 40.77 31.61 27.17 27.71 72.01 69.57 33.44 41.12 69.10 80.16 3.88 2.86 73.03 48.70 59.54 28.23 2.82 65.36 18.18 15.56 73.76 75.91 54.02 27.42 57.35 19.73 77.50 91.34 21.68 6.78 31.96 83.07 68.77 99.39 26.97 3.26 80.98 94.42 10.53 72.19 60.15 7.83 29.21 1.58 97.95 6.94 24.14 9.19 1.67 56.51 66.66 42.61 95.68 7.11 95.17 97.70 1.12 8.55 6.04 24.61 61.93 9.78 89.94 66.09 93.05 85.10 88.06 60.41 72.73 22.15 88.27 61.87 5.26 17.35 92.57 83.17 55.40 68.07 37.79 79.94 31.88 29.63 29.60 50.60 96.19 67.97 48.92 7.34 33.57 32.18 29.61 79.28 8.68 -19.94 93.64 7.19 0.38 59.65 35.29 88.93 85.59 37.00 40.56 17.10 47.93 73.50 66.82 32.56 76.26 57.11 90.01 91.24 65.99 1.20 91.37 92.22 94.61 37.64 22.40 1.99 90.07 3.50 58.21 50.89 73.74 79.78 29.26 88.82 11.19 95.78 31.07 49.20 43.98 43.56 76.47 77.20 76.23 67.04 78.75 39.46 50.46 44.16 95.02 2.94 25.23 88.05 95.98 54.31 87.03 84.34 65.21 72.74 32.68 9.18 67.95 47.27 19.82 20.03 87.49 27.46 76.24 99.09 95.02 57.94 64.14 16.70 6.52 6.39 94.39 23.44 12.37 49.29 68.76 43.28 21.47 59.39 81.22 47.12 89.71 51.88 67.79 72.64 85.42 47.70 87.15 28.03 10.67 92.31 22.69 86.99 71.75 52.93 35.53 -57.08 85.07 4.39 94.24 50.64 33.33 60.49 36.48 21.25 39.67 98.30 64.75 6.12 80.80 77.65 9.23 6.39 30.63 77.32 41.75 68.55 66.13 28.78 92.62 71.44 88.67 14.13 21.11 36.22 12.10 1.38 12.96 17.22 54.47 49.21 71.28 20.03 45.43 62.61 54.66 14.66 32.29 59.96 74.59 57.64 3.95 55.57 87.75 34.25 93.61 49.64 55.28 31.62 47.91 9.36 72.35 69.96 98.21 91.44 44.40 59.49 89.63 23.87 5.89 21.29 50.65 76.15 0.05 1.19 85.83 73.43 99.25 28.19 74.03 68.74 11.43 78.36 55.14 56.87 61.80 30.38 77.34 86.58 18.99 4.37 70.16 72.15 72.89 10.20 32.86 74.86 99.60 85.15 99.88 77.91 82.94 52.64 60.48 16.30 65.79 -98.47 33.31 63.30 99.82 63.75 8.66 58.05 52.29 26.50 97.06 58.97 95.80 52.04 64.80 73.96 94.18 47.44 5.70 66.36 18.45 7.59 53.52 99.63 60.61 59.77 46.84 69.64 58.56 78.52 39.67 16.18 59.63 77.43 11.68 2.33 30.12 50.99 96.85 2.10 50.16 54.11 57.00 92.83 98.47 54.65 70.09 88.94 66.12 44.59 47.09 86.34 33.72 79.18 27.52 56.97 30.30 7.85 46.56 0.81 58.63 68.97 91.51 5.28 76.05 55.43 83.73 43.32 61.00 29.95 40.12 64.40 82.97 98.56 84.69 20.63 38.72 19.71 16.73 84.25 47.10 54.16 51.13 61.99 95.90 64.06 14.09 75.07 62.61 7.22 77.20 1.44 97.03 5.63 50.60 13.15 4.10 52.94 22.11 42.04 56.73 -61.54 19.54 77.02 24.30 69.50 10.97 84.39 72.01 11.11 35.31 80.78 40.33 23.88 42.29 91.75 47.17 77.03 81.77 34.56 76.55 3.82 93.69 20.54 22.65 58.15 82.76 90.82 45.72 22.17 57.64 29.76 74.76 65.66 3.37 97.24 83.18 50.02 47.61 88.48 51.38 83.39 25.35 52.25 30.53 98.76 66.79 77.07 2.19 28.32 90.79 47.90 21.29 35.31 48.77 68.95 1.03 88.84 67.78 45.86 73.01 38.71 33.72 9.71 51.61 82.86 57.75 66.65 71.00 72.50 21.90 49.24 90.54 90.60 25.20 10.16 86.45 3.69 99.13 97.50 86.49 81.42 27.13 92.01 93.04 48.35 55.27 77.15 35.38 36.11 25.16 73.87 93.14 11.03 73.36 78.59 32.01 20.91 83.03 5.27 83.33 -37.25 9.28 73.56 87.45 85.97 88.21 81.62 37.74 79.95 89.51 16.56 66.73 44.35 60.99 54.26 2.43 75.99 54.28 12.29 17.07 33.95 82.92 55.71 48.17 76.85 52.61 27.46 21.81 21.56 3.44 15.48 42.05 12.53 96.45 66.72 81.63 71.66 24.03 75.61 78.04 34.04 84.66 75.00 18.12 2.86 22.53 55.12 99.41 52.68 74.59 46.02 30.84 98.42 5.73 30.65 6.56 27.05 21.77 60.16 10.62 89.23 24.68 57.51 80.85 43.77 37.30 47.91 59.85 70.03 74.47 59.23 9.59 16.04 93.81 21.70 64.34 35.68 1.43 20.04 66.52 99.76 41.26 86.14 57.94 61.93 43.63 72.49 38.36 59.74 3.68 43.77 14.63 99.17 44.54 48.40 4.79 6.52 41.93 0.92 87.67 -88.41 12.84 46.23 91.31 63.65 7.27 62.96 60.26 29.38 3.77 7.50 32.50 61.69 97.01 1.08 48.43 34.40 34.92 96.91 35.81 92.17 0.18 42.99 27.06 54.35 58.25 57.88 13.13 32.17 31.29 28.72 56.01 98.37 23.19 88.75 87.47 52.43 9.61 0.25 50.53 56.16 75.94 88.50 0.14 64.48 81.00 56.97 75.74 21.88 99.07 21.38 28.72 84.62 90.73 74.80 94.30 24.41 56.25 32.46 40.35 88.55 78.15 67.61 28.72 33.48 13.25 47.06 89.75 69.21 29.70 8.77 8.57 12.67 51.58 80.81 17.89 67.95 55.35 80.30 17.78 89.79 32.07 5.79 52.83 5.02 44.03 3.43 4.98 50.72 36.15 70.39 3.80 74.26 99.42 35.32 22.65 79.50 34.69 67.05 94.97 -2.18 7.01 28.57 75.53 51.03 56.05 98.05 14.34 19.19 94.66 78.13 11.05 78.69 29.33 69.22 25.73 90.27 23.43 21.03 13.50 82.07 71.37 4.89 83.43 91.28 58.60 29.27 7.54 5.76 13.81 97.17 84.10 2.13 32.83 84.41 18.14 58.43 45.00 56.24 7.08 23.27 54.24 69.25 57.91 77.09 11.25 32.66 16.16 79.66 3.59 26.28 59.87 34.46 51.92 54.43 8.64 7.71 29.01 61.44 85.59 17.77 74.19 16.15 63.14 74.18 82.15 0.06 35.61 13.92 58.54 98.41 55.32 37.11 81.86 70.85 81.25 78.72 91.97 46.14 25.45 24.83 48.69 7.05 3.23 82.92 82.49 10.53 41.60 34.01 24.09 58.95 41.90 70.44 10.55 94.92 10.07 79.60 14.57 24.36 30.14 -6.24 75.59 40.54 13.96 87.88 85.56 31.11 65.30 44.25 32.65 48.33 27.70 66.09 79.66 58.10 57.01 86.79 18.24 78.26 83.01 96.28 90.13 92.73 9.20 38.58 41.95 2.98 74.22 3.32 97.62 35.23 2.51 2.59 5.08 30.71 43.15 6.93 50.29 17.15 76.27 78.22 51.39 90.26 51.74 75.34 21.90 54.58 51.79 66.25 89.41 68.38 8.47 90.11 23.85 84.00 63.05 92.04 57.54 43.31 50.14 56.56 55.84 5.38 53.79 67.62 21.11 55.06 95.84 95.09 85.39 65.55 86.28 82.02 57.24 52.55 68.57 23.60 10.32 37.20 96.95 56.74 79.56 42.69 61.51 4.01 41.21 26.04 70.26 97.18 0.25 36.77 39.49 16.58 54.93 90.65 40.10 87.80 1.47 62.66 88.18 -95.58 81.71 94.33 74.84 49.60 57.82 93.30 99.24 91.21 84.67 98.65 57.52 91.70 38.15 29.52 84.22 86.51 33.39 45.09 20.95 57.90 2.75 84.98 61.71 83.58 78.90 11.82 84.99 7.02 52.58 38.12 71.48 38.76 99.04 37.62 29.42 46.64 28.05 46.05 5.40 74.85 58.99 82.57 40.78 16.49 49.79 27.44 49.52 77.64 70.02 59.92 21.62 93.84 56.79 53.09 62.56 21.85 57.06 25.88 53.34 13.66 46.83 33.80 10.80 48.29 65.83 90.74 41.19 7.02 15.26 18.36 68.80 50.10 97.63 41.08 72.48 68.14 13.44 11.01 56.56 30.63 85.24 47.07 68.77 45.57 63.96 64.71 97.78 38.23 62.92 7.33 81.48 76.85 28.83 4.56 94.67 32.36 44.40 11.15 58.28 -78.34 79.42 17.11 47.19 48.48 96.14 91.23 23.49 73.78 26.38 67.18 30.31 72.85 21.97 98.76 15.63 10.26 36.97 70.89 60.65 27.89 56.27 7.06 7.65 89.24 96.55 32.68 20.34 24.16 35.45 49.88 28.29 48.49 36.49 92.49 60.94 37.43 99.32 95.25 55.42 2.83 36.88 12.18 97.63 79.54 19.91 18.50 78.37 8.82 69.16 14.23 68.66 4.05 77.41 63.05 20.87 25.29 38.39 21.21 97.78 61.23 13.62 50.70 92.00 54.56 54.61 94.52 90.06 16.42 46.66 59.39 43.49 6.79 83.05 82.59 71.10 41.91 85.57 29.48 79.44 3.24 10.11 15.41 44.01 58.37 25.82 10.21 61.37 76.86 73.53 80.74 46.89 6.72 2.52 97.31 89.79 31.40 65.70 79.76 40.68 -49.92 73.66 87.07 83.04 56.33 72.13 26.78 19.46 62.46 9.43 55.56 6.88 59.99 53.10 31.14 4.02 49.04 48.75 37.84 40.13 58.04 61.14 29.03 52.02 99.85 59.22 2.99 23.22 26.30 80.08 76.85 32.14 31.74 24.17 76.62 22.68 18.07 90.18 66.01 94.57 85.53 74.59 47.14 55.37 17.04 54.47 92.73 81.17 25.93 34.21 28.19 60.54 8.37 2.31 48.70 5.75 9.15 6.85 47.65 4.82 8.45 62.01 14.70 46.20 88.21 68.92 13.30 74.54 27.81 22.06 36.13 17.57 96.87 67.10 44.04 6.63 94.10 4.45 86.72 87.73 35.21 20.96 81.56 96.06 37.30 75.02 19.85 98.22 34.60 48.20 47.58 57.42 62.51 18.02 25.45 59.05 98.13 76.43 98.02 96.69 -82.21 58.01 57.69 99.96 90.58 90.65 48.71 37.98 1.20 46.91 48.83 91.06 0.57 72.14 89.38 84.56 38.59 73.21 81.02 37.74 20.22 20.83 87.21 50.75 82.79 31.27 70.51 2.56 90.35 93.26 31.03 65.96 38.58 6.74 34.97 7.96 97.62 56.51 65.93 61.27 45.61 21.80 3.47 0.12 12.32 82.38 42.49 71.31 41.78 44.86 41.35 86.98 32.67 53.76 68.93 87.03 90.37 41.75 42.45 5.58 63.55 38.08 12.65 5.45 56.28 7.58 15.24 46.96 64.54 54.56 89.94 51.18 34.33 70.79 56.77 3.07 64.44 54.80 59.72 86.27 29.39 27.35 17.74 80.30 52.26 60.26 42.77 49.41 50.50 23.21 78.09 98.48 4.06 65.46 51.46 86.23 55.91 44.62 21.89 54.15 -85.41 65.95 54.46 50.55 82.82 62.99 46.91 19.17 44.99 57.22 77.01 80.12 93.72 47.21 64.41 54.17 70.16 83.14 24.16 68.66 13.62 77.52 93.64 61.40 7.84 95.54 87.84 94.97 64.63 25.40 89.81 82.73 87.76 19.96 85.11 70.94 46.57 85.02 42.78 18.71 2.12 45.16 48.62 76.84 78.99 54.69 68.42 25.51 6.59 16.54 30.90 79.92 72.49 41.71 49.21 40.93 47.57 94.91 71.19 89.00 39.22 24.45 86.39 17.68 76.06 23.84 50.24 29.15 1.82 78.21 2.97 11.74 13.20 54.76 71.58 97.63 31.58 22.13 51.24 51.03 85.59 56.92 2.95 34.07 79.26 64.33 8.44 21.86 19.46 99.78 37.85 64.55 13.69 30.19 2.06 52.72 81.04 62.94 13.14 48.36 -28.04 74.61 21.28 46.72 29.44 76.00 25.72 70.45 52.69 79.32 82.07 89.67 47.81 32.16 44.22 16.47 17.00 76.73 27.80 19.68 11.84 2.25 99.55 16.36 3.51 28.54 90.14 47.15 85.30 95.32 90.38 81.37 20.39 26.59 65.46 73.48 56.32 5.38 88.89 6.88 86.17 87.98 92.13 88.21 14.75 76.33 37.93 21.19 79.32 41.05 33.68 54.21 31.21 15.45 24.75 74.30 29.23 14.89 75.04 18.49 34.54 15.30 90.24 82.94 59.28 90.86 96.12 37.75 13.20 71.37 64.13 55.55 79.46 78.79 57.45 14.05 28.00 50.20 86.90 62.79 63.54 23.53 51.74 11.73 98.84 51.34 49.24 38.79 90.34 36.64 58.14 65.19 23.48 75.43 0.71 96.36 90.70 55.29 78.93 34.62 -34.62 50.81 55.91 16.72 58.87 95.88 49.70 63.00 59.82 31.49 47.58 14.98 63.51 66.05 56.68 94.32 21.32 61.49 76.98 3.51 89.15 33.21 54.99 3.31 3.23 21.74 15.42 94.26 5.61 19.10 39.97 83.29 43.44 33.68 44.85 20.54 88.83 29.44 35.34 38.86 74.93 39.53 12.15 12.83 34.17 72.60 9.73 20.05 22.97 19.75 33.02 81.46 11.33 7.53 9.29 41.35 41.33 40.08 77.07 82.22 36.33 44.84 48.64 65.85 86.04 16.92 71.36 50.17 68.44 7.88 95.12 24.01 28.16 41.66 32.59 66.64 56.09 64.57 69.04 14.36 24.04 33.37 80.25 76.33 93.63 61.19 3.96 32.27 80.71 7.68 95.67 13.81 34.72 52.22 96.37 70.12 62.46 65.35 59.45 50.92 -69.30 6.43 17.12 96.77 98.02 6.77 8.93 23.64 41.10 80.03 85.29 1.38 30.55 71.82 15.41 56.84 49.05 24.20 86.74 38.88 98.03 62.61 72.72 41.88 42.60 51.26 44.99 87.31 68.62 14.55 65.40 39.98 87.07 57.18 77.18 81.40 49.71 78.45 8.30 66.14 81.12 1.73 8.89 40.42 67.23 39.41 10.45 69.08 96.16 43.69 32.07 34.74 26.91 35.05 60.43 20.17 67.47 83.24 72.21 77.34 12.67 33.18 63.25 52.56 9.44 22.69 15.25 13.67 15.85 51.40 69.77 91.19 44.32 49.59 37.80 54.28 18.30 29.03 26.09 68.73 70.59 21.32 90.41 8.95 18.77 53.33 53.87 63.45 73.86 9.87 8.71 68.48 3.28 80.89 76.56 60.15 61.93 75.39 16.85 59.52 -14.32 93.76 86.44 83.42 40.34 47.86 40.76 69.06 47.99 10.96 78.13 48.51 53.04 73.41 47.27 80.06 11.88 41.43 18.27 73.09 9.47 5.31 85.98 34.81 76.63 31.68 94.81 18.09 56.60 92.85 76.93 97.91 46.51 25.26 74.11 34.54 17.10 63.61 93.88 35.44 5.57 22.88 17.27 17.70 3.87 90.42 39.75 67.36 17.82 89.09 88.18 90.47 75.35 95.45 7.23 30.45 47.77 61.45 67.17 56.77 57.53 81.40 39.43 8.01 61.54 34.22 82.65 82.79 14.11 52.48 21.99 29.74 78.81 86.97 44.41 60.02 10.28 21.76 94.30 39.30 74.39 92.84 85.05 9.39 4.89 79.40 55.71 79.24 85.26 11.99 61.14 35.13 40.04 82.05 21.39 36.62 23.65 63.45 17.71 1.78 -99.52 66.22 38.65 7.78 47.33 3.53 48.66 44.41 29.62 8.02 25.08 55.64 16.74 83.89 82.26 68.15 59.69 65.16 25.77 64.75 12.44 5.65 60.31 15.17 27.01 4.62 29.04 77.38 27.20 78.88 28.17 29.70 37.09 79.15 82.58 16.20 45.66 53.37 44.83 55.87 10.92 25.83 55.67 37.54 97.67 27.98 17.07 94.01 40.54 62.29 65.10 80.65 26.77 24.22 52.89 41.49 21.07 78.00 36.34 92.62 38.50 77.51 62.82 93.49 1.40 60.75 9.36 82.13 92.33 5.45 74.30 4.51 78.24 60.32 89.74 61.18 44.59 61.46 83.93 53.52 17.48 81.68 86.14 35.27 62.85 64.62 27.38 69.36 65.29 35.66 29.59 69.20 11.66 73.69 97.05 57.64 88.68 93.47 60.29 39.75 -74.40 94.36 65.06 99.26 77.20 0.81 15.82 92.83 16.26 21.49 8.79 93.11 8.35 69.03 90.40 23.97 71.54 22.34 4.55 71.81 15.21 19.24 26.86 2.44 27.39 67.70 28.37 5.11 2.20 53.35 38.01 25.38 91.57 45.33 36.96 87.69 24.41 41.94 95.94 4.41 39.16 50.00 18.83 25.66 24.02 10.40 31.90 19.24 61.34 8.73 36.84 29.25 78.91 89.75 1.30 85.46 4.95 48.92 11.41 84.09 73.07 80.58 70.37 77.29 59.19 88.93 52.54 24.81 10.84 66.66 19.75 91.47 81.70 74.16 28.21 99.72 31.05 21.58 4.00 22.92 73.12 81.12 43.17 13.24 41.14 47.79 67.63 87.00 17.74 11.02 29.29 36.09 41.81 75.63 54.74 20.32 86.98 95.95 93.73 3.09 -55.30 33.08 36.59 41.78 40.65 63.54 29.94 81.55 53.16 72.29 17.61 67.82 12.14 38.90 19.18 63.82 80.46 74.47 63.21 50.51 72.17 14.89 22.98 65.74 15.60 39.40 75.84 49.09 62.63 92.69 32.50 81.39 81.03 7.87 98.76 26.29 12.76 84.42 41.76 43.38 44.29 82.98 4.98 22.23 70.43 99.05 91.98 10.83 80.41 33.27 40.85 82.09 29.27 27.92 16.14 64.59 6.16 27.00 1.68 76.62 50.73 65.93 47.84 6.84 99.51 66.47 15.71 1.20 70.35 71.68 70.63 72.87 40.33 88.69 13.19 63.00 35.17 4.95 57.66 60.69 48.69 1.09 81.12 31.86 1.65 72.34 31.96 64.26 2.52 80.75 37.11 7.83 73.92 12.45 33.82 79.38 36.21 33.65 86.71 2.08 -66.85 99.37 89.64 21.43 74.23 6.28 34.31 43.65 69.96 23.58 98.17 96.95 35.99 5.08 35.27 45.93 94.82 80.43 51.99 14.63 46.89 19.10 32.96 63.50 91.87 33.52 68.37 26.98 18.72 71.78 90.08 21.64 41.32 8.75 95.28 36.52 30.48 71.86 77.43 66.71 54.46 69.35 82.18 23.51 66.14 3.58 93.94 69.27 32.08 9.98 86.36 57.06 19.54 43.43 78.95 3.05 99.30 91.97 84.11 55.16 44.26 76.72 11.33 76.94 3.12 68.36 0.20 25.22 85.90 17.44 28.53 40.28 81.49 25.15 78.40 17.65 98.74 1.16 28.45 61.55 36.33 34.08 23.31 34.62 64.94 91.43 62.63 90.40 21.96 15.73 82.65 63.51 8.85 20.59 8.17 68.34 29.59 43.61 25.61 76.14 -66.75 90.48 72.11 89.92 85.00 70.42 41.66 16.99 3.23 94.80 56.84 34.41 37.20 50.77 56.49 5.09 44.40 51.75 2.11 31.43 10.43 94.96 85.73 52.46 70.38 2.64 44.80 64.68 69.67 6.48 79.61 9.28 41.34 50.71 76.39 2.06 0.08 11.04 36.61 66.86 61.23 34.57 8.25 64.53 93.68 30.27 69.77 45.82 83.39 71.77 26.51 55.08 99.29 75.76 16.55 22.97 37.73 3.68 98.89 13.14 91.30 56.99 93.76 38.59 13.65 35.47 44.84 86.92 60.97 14.26 97.70 73.02 19.08 87.75 92.13 37.14 52.16 25.41 14.38 56.71 27.42 57.82 92.45 59.70 50.81 63.96 80.12 78.08 57.68 27.63 70.60 19.81 16.22 33.40 18.70 36.26 53.52 74.91 76.10 67.14 -12.10 56.55 94.27 16.75 42.96 97.60 45.92 91.40 52.37 56.21 38.87 57.10 39.55 91.70 55.28 54.06 36.02 90.33 7.83 23.58 92.81 28.51 48.81 25.81 78.47 92.13 57.85 33.98 32.54 23.72 94.83 57.82 23.59 42.59 15.98 75.42 69.18 5.97 45.34 19.56 84.42 96.83 65.85 86.28 53.82 63.45 16.27 76.21 79.88 38.90 49.32 61.49 26.75 39.74 1.76 45.27 34.74 36.33 24.99 48.19 9.87 93.23 61.08 56.43 44.00 27.35 55.79 62.84 56.42 76.31 86.75 9.73 78.99 95.47 17.07 41.23 88.73 89.37 71.12 22.28 34.89 97.62 67.82 33.37 17.22 85.37 50.59 65.94 10.92 75.54 91.62 92.95 32.61 75.28 90.48 18.02 76.01 22.64 33.68 75.82 -73.65 20.68 83.91 64.16 75.40 38.53 54.29 62.02 7.57 75.37 78.92 28.18 35.60 47.96 36.02 21.19 33.63 43.45 42.83 51.99 81.04 18.46 73.76 40.37 9.51 64.60 33.28 16.63 17.21 42.59 44.25 39.38 53.30 21.53 10.46 91.39 68.04 80.41 73.40 83.35 6.85 85.16 42.42 12.79 23.74 32.00 7.33 77.36 18.70 16.15 85.35 61.86 61.92 85.71 24.93 64.93 55.92 60.42 50.57 8.10 34.28 48.50 55.31 43.84 15.82 40.71 90.65 53.88 42.06 98.67 17.32 53.52 73.76 9.30 86.12 81.72 77.05 64.83 78.31 44.12 97.52 32.68 76.71 29.19 27.63 45.95 84.23 19.30 34.99 85.73 60.44 71.57 7.16 83.72 21.27 96.60 22.87 72.92 95.04 85.72 -35.00 60.93 15.58 10.52 23.83 55.24 81.46 56.47 56.06 23.24 59.88 96.83 5.00 17.96 70.26 47.60 50.69 41.63 85.07 35.19 33.52 78.78 48.80 84.09 78.26 62.13 13.36 24.88 97.80 51.09 32.80 83.54 29.50 56.23 21.68 13.43 52.16 74.84 66.91 29.98 6.06 9.92 73.37 56.78 61.61 19.40 30.17 45.37 97.27 61.55 54.66 40.32 18.90 47.39 0.20 3.63 73.85 30.41 78.39 22.01 69.70 45.43 38.61 27.60 80.05 62.57 28.68 31.16 54.44 46.79 93.68 81.92 99.76 94.28 26.64 25.69 1.03 27.91 11.23 93.89 40.16 4.80 58.81 61.56 42.14 48.80 32.58 54.70 62.25 44.49 53.61 15.04 54.64 2.33 47.93 57.11 54.81 76.39 24.50 78.69 -17.79 34.19 23.71 93.84 78.64 14.11 69.60 60.59 26.08 97.48 54.53 51.36 37.79 68.59 18.77 83.87 40.86 70.68 74.87 55.44 23.87 18.25 63.31 9.67 69.92 29.31 81.96 71.75 2.89 82.23 26.76 54.72 48.84 68.18 60.39 33.93 38.92 36.67 21.26 32.46 72.45 40.14 54.15 99.29 14.94 85.79 90.01 50.42 72.40 85.24 78.74 37.21 92.75 60.43 40.44 79.26 64.54 25.34 3.84 95.11 6.01 44.65 68.72 68.06 27.37 59.31 16.07 27.96 64.90 96.77 88.14 55.08 12.38 78.53 98.28 6.53 62.55 97.28 9.26 95.93 47.71 45.90 89.29 80.00 76.13 4.87 79.30 79.44 32.18 23.39 58.40 97.50 88.47 8.78 88.82 59.60 48.98 12.84 83.75 86.23 -23.73 47.93 48.98 50.14 10.61 13.01 57.95 95.95 30.13 43.26 83.33 58.79 76.34 35.45 90.54 57.11 35.33 97.10 9.59 76.83 70.16 65.27 18.15 69.41 73.62 98.18 2.78 17.69 47.50 63.30 45.19 12.88 6.69 40.03 54.61 15.47 79.40 79.60 8.79 72.10 13.24 13.17 3.11 37.83 86.38 3.34 81.28 16.70 94.35 76.56 16.45 52.44 21.23 58.51 39.53 35.32 98.08 38.15 30.05 13.18 68.72 91.43 72.36 8.60 8.38 50.03 10.97 19.64 62.69 45.20 7.58 73.12 27.36 91.35 57.38 55.46 63.02 84.12 34.49 7.54 59.88 37.70 87.55 19.54 39.90 73.25 28.41 20.37 84.58 86.87 77.40 37.42 91.86 52.49 90.16 68.73 79.91 63.30 27.17 26.29 -51.01 45.24 46.63 87.48 89.69 4.28 14.19 65.82 44.80 35.61 24.28 23.16 58.89 40.86 27.32 68.21 69.33 28.64 27.81 57.52 99.64 5.40 2.72 81.64 36.25 60.07 4.16 36.28 88.62 31.49 75.49 89.43 38.90 57.87 3.09 95.56 1.89 81.89 76.46 80.20 16.59 9.70 46.63 5.13 57.34 79.36 14.97 38.13 13.79 14.61 80.27 30.86 3.24 23.92 53.76 91.66 86.11 10.39 17.03 66.17 84.08 7.91 34.91 93.21 20.13 50.41 41.25 15.73 80.20 1.68 81.86 20.14 30.24 94.10 44.87 53.57 2.90 30.48 40.24 69.61 26.67 64.98 66.70 84.45 69.51 69.07 22.34 5.70 14.22 63.16 10.63 63.49 32.92 25.84 16.69 13.60 17.66 80.04 48.20 82.28 -89.97 66.08 55.97 50.84 82.46 28.36 85.50 98.44 69.63 78.78 96.66 64.80 81.65 28.99 40.84 70.94 56.88 39.77 67.31 46.17 68.39 58.02 89.93 33.23 55.33 97.95 22.33 96.09 53.96 14.66 53.55 39.92 13.16 88.23 21.67 58.21 20.74 4.26 45.05 27.37 56.80 55.75 28.31 7.02 6.18 13.09 86.23 36.15 40.54 60.88 92.07 60.35 77.63 80.66 88.60 90.78 45.99 79.56 68.18 10.84 83.14 4.24 14.50 80.09 7.04 42.72 94.21 32.63 61.65 30.21 85.47 18.38 98.28 20.03 91.02 89.56 18.62 39.89 6.23 98.93 0.46 27.80 68.63 94.05 25.48 31.16 22.61 52.31 74.66 19.95 38.26 55.67 28.78 29.78 91.33 10.21 5.86 27.92 68.52 16.03 -21.48 80.05 14.54 4.35 44.73 48.38 30.48 26.53 78.84 78.77 57.89 97.55 54.07 81.68 27.27 40.93 96.08 76.89 65.81 88.13 67.18 58.01 7.39 45.74 24.76 48.68 64.21 59.23 24.94 51.44 78.80 77.87 59.20 3.18 77.27 64.18 31.01 5.34 79.03 80.07 2.87 27.57 35.82 36.92 25.05 37.72 54.77 32.09 28.77 66.90 66.25 5.84 97.12 90.20 62.24 52.68 34.30 88.78 68.52 7.98 19.39 27.58 55.60 55.92 68.53 21.60 11.58 43.72 1.29 48.93 87.55 96.32 1.97 47.38 85.86 30.41 84.66 92.14 56.37 95.93 83.61 5.27 21.72 45.91 20.34 83.76 22.64 69.60 89.63 37.21 62.15 59.83 99.29 26.30 22.77 73.81 84.51 63.57 62.97 45.54 -58.57 93.62 66.44 60.56 36.18 20.42 62.17 63.30 43.49 75.16 80.05 96.98 70.36 60.39 17.44 68.45 30.20 42.99 73.64 10.72 94.27 67.98 58.88 9.94 94.76 52.06 81.20 21.95 81.03 14.84 11.47 56.97 68.28 94.08 31.46 39.86 69.39 35.87 8.34 95.23 99.61 18.83 91.76 70.58 93.95 40.28 71.86 88.43 87.01 54.33 76.62 18.45 55.29 96.53 20.19 8.86 73.76 43.94 65.75 25.60 71.95 74.00 99.10 60.13 72.28 51.62 87.67 46.92 11.64 42.33 58.02 13.96 3.61 1.74 51.03 83.25 88.02 77.59 92.77 88.49 54.78 4.27 77.40 44.94 40.77 79.48 63.87 22.48 9.18 88.01 42.01 1.47 2.47 0.28 98.53 65.99 15.18 54.55 68.66 88.88 -75.25 21.86 52.28 53.59 63.05 82.78 4.71 65.79 81.91 9.15 92.17 4.84 51.03 62.99 41.28 16.48 88.26 16.59 37.53 17.74 48.77 17.97 80.39 45.21 62.98 99.19 13.33 44.27 82.97 45.42 87.07 22.79 73.06 8.18 88.54 24.63 36.91 56.84 2.60 36.61 99.59 31.19 85.85 96.46 92.11 81.97 66.31 40.04 20.32 86.79 1.00 6.97 22.79 27.00 38.02 62.58 77.33 25.74 31.86 42.88 31.34 1.86 81.05 72.43 60.49 57.78 83.33 13.01 13.47 8.24 46.87 32.48 55.86 87.05 66.69 5.37 31.39 34.02 35.93 92.15 31.05 18.11 46.35 83.45 70.69 82.09 71.67 20.67 72.28 79.99 49.38 17.98 70.65 77.30 27.96 20.85 62.73 0.72 24.51 78.47 -13.48 87.27 20.29 38.18 98.38 81.39 65.13 24.74 87.39 39.25 30.01 2.42 42.59 58.32 85.26 92.95 46.18 27.73 22.71 72.26 14.86 27.57 58.81 27.04 4.24 50.49 25.12 12.18 98.62 34.65 7.05 72.24 79.42 66.62 38.34 3.98 64.47 44.21 65.21 15.32 98.61 64.01 87.39 59.02 28.04 87.56 41.45 32.09 0.78 66.82 67.11 19.85 74.97 40.46 41.71 37.11 97.55 58.01 27.22 64.69 61.63 47.45 49.19 64.04 44.03 4.15 67.21 31.12 10.96 84.26 73.77 38.55 14.92 8.30 67.43 84.79 83.07 73.44 57.10 29.68 81.37 55.15 53.74 93.32 32.08 22.57 74.02 22.58 31.35 75.64 34.10 70.24 78.49 6.41 42.59 36.92 72.95 98.53 65.56 38.27 -0.48 37.80 87.59 3.32 73.68 46.29 52.77 28.86 19.59 52.45 69.70 93.75 50.54 33.83 50.67 75.21 58.26 6.55 91.61 54.81 56.79 29.96 29.21 99.77 21.30 41.54 7.72 53.86 44.70 94.29 41.87 66.03 81.14 5.85 17.91 78.97 0.86 38.35 73.07 64.05 71.46 13.18 16.36 89.57 56.64 76.98 9.68 64.23 73.25 44.02 28.18 40.71 95.03 41.05 68.86 76.55 64.48 86.24 16.41 12.78 13.75 33.60 84.11 22.53 0.55 62.58 44.59 28.40 32.83 75.06 71.34 0.95 55.01 98.75 17.78 71.74 65.61 53.45 45.86 64.61 49.62 71.65 82.98 89.19 34.66 89.44 53.90 82.03 42.02 73.55 30.07 47.83 97.07 83.98 27.28 71.04 52.12 71.46 12.81 21.64 -65.71 19.67 74.09 95.45 43.46 96.27 75.72 3.53 87.16 19.77 54.33 62.09 57.21 29.12 4.75 37.02 85.89 78.08 63.58 9.24 94.98 94.75 80.70 41.69 18.77 10.84 29.25 42.85 55.04 75.92 67.02 94.24 38.82 66.19 88.18 21.69 91.80 31.39 2.51 19.95 61.44 19.84 50.47 46.00 79.99 98.66 6.42 60.69 82.19 1.17 27.95 41.64 37.32 6.93 27.79 98.29 44.09 25.95 48.39 74.74 18.58 75.04 38.14 57.73 65.16 12.32 21.94 53.68 24.34 62.76 68.79 22.32 33.02 20.20 56.37 59.46 28.44 63.30 82.32 34.70 2.04 10.19 48.54 76.04 51.68 23.26 51.80 18.84 38.89 57.28 71.62 55.18 26.74 54.89 85.52 37.30 40.76 39.93 2.46 36.17 -9.82 64.27 19.00 31.40 67.14 86.23 34.73 27.30 11.20 94.82 5.82 81.92 66.68 74.18 51.89 28.20 68.60 29.60 86.08 44.56 52.27 69.97 37.61 38.34 88.00 63.59 51.34 22.36 75.83 91.71 48.89 3.58 80.38 7.01 62.70 40.90 69.70 90.92 15.12 98.93 76.49 17.61 41.08 90.62 5.81 64.93 84.50 38.75 4.02 89.21 28.81 1.89 12.06 60.73 4.55 55.39 90.20 68.87 53.27 24.02 76.42 22.26 14.29 96.58 25.10 78.40 63.89 13.95 20.03 69.14 20.36 61.75 46.06 86.60 79.53 27.26 92.56 26.20 44.83 63.83 47.95 16.76 94.57 74.98 93.42 46.28 34.67 0.89 71.86 18.79 47.59 54.24 48.12 8.30 56.63 44.45 36.48 24.37 21.71 61.02 -7.93 43.48 2.81 22.92 54.57 17.31 66.38 95.26 68.06 72.66 36.13 49.77 91.77 22.31 50.41 40.38 26.46 24.03 44.32 6.99 18.29 88.98 57.59 61.11 38.07 96.76 8.55 65.06 88.49 17.09 55.49 68.23 17.78 9.88 73.82 24.79 66.51 22.97 59.74 87.38 95.97 41.29 59.57 25.36 78.00 84.24 6.89 96.53 22.06 25.25 8.43 18.80 2.85 58.34 48.14 70.22 78.31 83.80 35.77 75.69 71.55 32.37 34.49 64.11 62.57 48.79 85.15 41.35 95.20 52.86 15.07 47.18 65.50 92.27 2.57 84.65 28.75 65.80 19.89 82.24 28.90 39.58 11.73 60.54 77.55 7.82 52.39 67.26 31.01 46.87 36.99 99.93 20.12 22.03 30.84 88.87 45.13 87.83 36.89 74.95 -9.38 47.03 0.77 60.50 80.32 47.09 70.60 34.52 55.69 87.48 61.96 40.39 78.66 44.39 91.91 57.07 33.21 13.69 53.64 3.17 84.96 55.19 68.67 39.21 99.45 20.42 20.22 68.49 37.01 5.01 98.65 95.34 49.13 15.14 50.85 96.98 13.39 77.31 12.45 1.35 59.25 43.58 24.76 1.89 44.01 68.82 68.51 14.59 65.64 39.33 1.95 64.27 66.36 33.82 93.57 8.42 13.18 12.49 57.62 56.13 8.14 28.26 85.59 64.09 67.34 49.96 40.71 64.46 95.57 68.06 2.15 27.86 35.02 82.59 40.23 18.00 77.30 10.59 98.14 43.54 78.50 15.18 87.76 73.09 80.57 92.08 51.89 8.86 72.66 52.18 51.87 50.96 14.56 45.33 91.43 19.06 6.78 4.30 51.23 20.63 -20.33 38.30 24.87 35.14 7.25 39.58 13.89 40.25 57.65 71.91 5.75 58.90 4.20 50.20 51.41 25.84 95.06 13.30 27.58 79.74 71.89 21.60 0.49 93.25 15.37 81.36 81.78 14.43 96.13 75.31 67.02 81.10 5.02 14.97 80.51 54.89 90.69 50.55 99.54 80.45 82.14 30.73 52.25 73.07 3.12 44.75 77.99 65.39 97.93 35.35 16.05 36.07 56.82 56.55 34.40 99.59 33.21 2.52 16.52 41.58 39.16 0.91 13.46 91.19 88.78 11.58 43.23 68.54 83.49 48.33 26.18 94.91 91.23 55.68 61.91 3.67 10.91 71.46 4.23 28.76 50.22 81.04 5.82 93.25 3.07 85.57 2.27 33.82 36.24 42.13 54.69 20.22 51.78 70.45 23.98 33.32 2.83 56.09 57.94 36.08 -48.93 34.37 99.50 0.69 73.51 68.29 0.53 4.19 95.24 71.49 70.88 66.79 24.89 66.40 99.63 51.65 19.76 88.74 69.80 40.27 1.04 85.90 8.87 18.91 60.67 80.93 29.70 87.99 87.19 36.53 13.76 41.21 46.67 97.98 38.08 3.42 55.65 7.66 57.42 68.35 55.55 97.07 59.82 88.77 71.49 71.11 55.33 65.43 58.79 34.39 9.34 73.83 62.88 2.57 19.22 48.83 17.42 18.69 8.67 61.73 10.71 26.22 27.44 37.83 91.36 36.29 67.86 66.94 82.67 72.33 26.28 23.01 22.82 59.75 97.55 92.66 70.03 39.80 53.20 48.48 56.34 78.89 3.42 99.44 50.15 60.19 99.05 58.92 81.13 37.98 41.42 42.38 18.46 58.15 59.51 40.48 97.13 23.55 9.86 91.53 -27.98 63.05 84.03 75.12 94.81 38.73 91.47 27.12 83.56 21.83 78.61 33.70 73.94 83.49 10.51 95.25 41.53 91.74 45.91 79.34 14.16 34.20 24.23 62.76 18.95 21.99 50.76 75.47 20.94 35.36 76.49 38.77 22.06 19.89 52.15 95.73 99.35 70.48 19.15 19.87 38.15 68.34 16.89 42.07 18.94 63.70 54.39 31.23 14.96 85.68 5.76 64.74 48.33 72.60 57.86 96.02 32.96 63.57 42.65 63.03 0.97 94.59 22.83 90.42 52.87 89.85 48.75 86.94 45.22 2.80 38.28 32.56 57.71 66.93 19.42 55.36 67.56 91.30 17.24 55.35 18.90 16.68 37.04 94.14 35.22 70.91 28.56 16.38 80.47 88.34 73.53 60.03 37.70 55.15 49.92 70.30 79.60 19.55 90.36 34.54 -25.21 11.03 25.59 38.94 42.27 81.87 18.83 47.33 79.26 48.99 97.62 99.94 64.73 15.20 81.88 66.33 65.92 16.53 18.26 43.50 6.74 56.43 22.11 36.27 48.55 47.16 40.86 55.93 31.48 48.96 17.66 15.64 96.76 54.51 38.54 43.52 18.89 2.83 19.64 11.58 75.06 55.52 20.28 18.66 79.26 78.53 90.11 63.27 60.63 98.36 59.68 86.67 40.82 2.89 13.83 95.04 12.41 68.59 8.61 66.19 23.15 56.31 98.49 4.14 47.30 15.83 29.99 12.19 57.46 48.79 15.52 23.62 46.85 80.67 4.58 2.85 71.42 96.34 45.55 25.30 57.48 22.04 97.58 60.72 54.51 82.39 75.00 79.21 32.80 87.88 54.05 28.75 94.89 96.00 92.61 89.15 50.92 90.91 84.73 19.50 -33.06 39.24 67.99 90.93 1.90 25.14 86.99 95.96 97.86 84.39 91.59 76.99 7.51 31.77 11.94 21.29 27.34 51.21 41.31 56.81 50.80 21.18 41.84 97.19 34.70 75.30 91.33 57.93 93.19 23.86 35.78 14.17 55.04 93.28 34.63 97.95 30.09 9.75 10.26 74.37 73.42 76.48 99.14 84.66 32.46 83.91 23.17 44.58 43.99 73.74 11.00 76.74 41.79 32.60 48.77 57.96 89.30 15.42 88.71 74.57 28.43 68.15 49.61 20.75 11.98 10.94 35.06 59.19 5.30 80.54 88.75 27.06 97.91 36.65 60.81 51.38 43.73 7.52 92.70 16.78 35.58 13.84 4.72 48.86 24.38 96.33 57.20 38.79 40.07 10.67 23.48 15.01 45.27 3.79 98.75 58.63 59.59 38.49 60.41 15.22 -19.72 59.75 0.44 20.03 84.53 30.44 50.61 61.27 36.90 74.61 70.56 88.67 79.15 96.35 2.51 66.87 43.84 2.88 99.49 68.23 65.69 16.33 32.77 91.52 50.08 97.61 18.68 4.29 79.55 42.22 78.58 79.88 31.64 37.31 8.02 76.69 90.50 26.19 14.38 55.18 49.97 90.94 91.03 66.26 57.38 37.63 6.43 21.63 4.29 29.49 16.13 15.83 77.45 49.56 98.50 65.86 53.82 99.49 92.23 59.40 26.17 10.78 69.90 23.94 38.35 24.97 97.19 54.30 74.93 69.51 21.44 67.60 73.86 22.85 53.89 7.52 63.95 31.99 86.30 32.19 92.03 49.15 74.25 19.91 29.19 89.23 15.61 87.39 28.28 15.39 68.53 80.38 86.71 62.31 40.39 34.21 98.98 24.84 92.29 63.21 -25.66 25.29 92.01 86.98 90.16 1.48 8.93 1.97 63.35 66.86 31.61 22.90 77.60 5.06 43.51 21.15 72.69 11.34 11.09 4.23 6.92 17.90 96.35 67.43 29.95 61.28 24.21 95.67 63.14 68.50 21.78 45.88 58.11 68.38 1.32 32.21 21.27 53.90 0.18 11.07 32.59 38.99 96.70 76.38 5.59 91.97 85.35 62.64 98.10 50.21 22.45 41.13 32.96 35.14 51.97 32.59 70.60 58.81 39.21 80.22 74.37 44.35 41.76 12.68 24.20 78.38 43.64 19.04 86.13 4.21 86.63 52.65 76.68 32.20 25.99 69.57 60.89 36.73 76.28 18.24 31.16 54.51 22.96 95.13 37.93 11.31 42.82 31.56 85.84 48.95 39.91 42.39 78.29 40.16 80.05 17.35 96.70 49.90 72.83 38.57 -9.48 22.27 75.45 18.40 35.34 10.04 50.09 96.34 55.40 4.09 82.24 38.26 39.33 81.56 73.01 28.13 20.15 14.14 69.75 16.05 21.60 8.72 17.16 95.90 74.46 17.22 92.88 74.80 89.89 32.89 5.41 48.18 23.77 33.30 12.83 89.72 75.99 93.72 33.87 50.65 50.57 65.74 39.09 99.28 11.50 37.44 85.79 91.85 47.53 6.15 13.40 53.93 42.16 66.15 55.30 34.91 99.44 0.95 0.01 55.40 66.56 93.65 64.80 58.61 43.80 1.33 38.34 6.90 69.43 29.32 68.37 54.00 85.18 2.68 36.85 84.11 26.70 95.87 19.53 13.32 87.50 31.93 5.11 84.98 96.35 61.76 99.48 6.01 62.51 77.79 34.71 79.15 43.31 18.18 10.38 43.67 71.14 76.16 23.44 72.33 -1.44 0.59 8.57 56.77 76.10 64.47 20.53 5.49 30.50 98.41 5.32 27.59 84.47 31.04 38.91 77.21 39.32 98.80 82.97 28.25 36.37 18.05 45.33 58.64 87.47 10.84 86.77 45.76 3.95 72.58 57.41 30.33 95.65 42.14 82.69 16.37 65.57 42.12 1.90 97.76 27.72 81.27 37.14 89.98 35.02 94.98 24.78 96.59 24.96 76.08 97.01 93.24 94.06 24.50 23.75 31.67 44.52 5.66 46.54 25.38 18.25 22.91 62.43 48.18 20.35 33.40 54.06 80.03 70.62 58.96 20.36 54.12 54.19 44.11 85.10 76.10 82.18 88.20 82.14 14.66 69.57 47.37 41.53 64.58 92.24 83.28 85.16 29.21 79.30 20.28 61.55 61.93 60.71 28.02 72.69 20.45 84.70 94.26 32.14 53.33 -91.10 70.40 97.38 89.26 70.29 57.49 63.01 90.47 58.22 42.06 36.64 18.36 84.53 62.87 16.01 74.28 60.04 24.47 63.06 64.59 73.53 17.43 26.56 55.40 52.34 56.66 55.64 33.41 93.61 56.62 76.02 93.35 45.93 77.70 57.94 15.02 66.16 55.65 43.16 96.33 90.56 51.81 34.34 19.82 7.40 14.60 76.23 31.74 67.87 47.89 10.09 62.60 30.05 2.36 26.61 68.40 12.05 2.20 93.99 18.53 75.53 92.42 73.64 36.37 88.46 28.69 41.02 35.12 99.58 6.26 1.19 54.63 77.68 45.91 67.21 7.83 95.29 47.18 62.10 52.43 18.02 2.57 69.56 85.53 13.63 94.08 42.73 72.93 58.83 38.73 36.31 26.74 38.03 90.41 58.09 89.24 65.82 32.65 91.49 20.56 -44.36 14.20 16.46 84.93 12.59 19.07 35.40 30.99 87.53 75.57 59.63 49.93 70.01 40.13 94.44 25.14 73.74 84.78 17.65 66.25 29.04 14.33 14.81 81.72 89.71 60.49 86.50 95.55 15.28 85.63 50.49 53.73 28.16 59.18 19.05 41.40 88.90 79.21 6.27 11.28 6.40 66.60 86.66 34.09 67.47 21.94 14.42 32.40 46.55 41.96 65.27 84.28 94.55 15.11 58.98 73.82 22.95 75.72 30.80 33.20 92.20 1.76 75.54 47.02 83.27 72.30 44.04 0.68 96.97 76.83 95.08 10.59 65.45 46.73 64.50 33.56 91.49 3.43 73.61 16.55 37.78 75.61 46.90 96.99 93.52 12.69 48.29 77.21 84.28 66.65 16.20 22.67 66.01 76.68 6.38 2.54 78.89 34.76 19.51 66.18 -45.34 40.23 44.57 97.13 23.15 1.77 18.04 45.28 69.53 99.30 93.50 36.18 63.72 22.98 4.24 32.15 56.96 49.30 44.02 71.46 21.84 55.61 31.24 65.22 24.78 67.66 14.52 67.51 71.23 57.51 49.55 14.31 0.34 23.29 89.62 98.37 7.25 95.95 6.08 18.26 44.34 96.81 22.88 7.27 13.15 91.15 81.09 22.11 61.19 24.21 52.12 44.41 25.08 21.45 72.31 29.90 56.11 80.39 59.34 86.02 67.37 81.25 66.22 65.45 52.61 92.49 74.22 80.59 37.53 9.00 42.28 50.29 59.58 96.71 50.84 61.75 96.86 58.79 24.53 71.23 93.12 17.12 63.50 88.24 53.44 34.42 16.15 46.92 81.67 37.75 88.11 46.64 12.88 98.73 30.07 49.66 43.43 98.81 43.90 56.27 -30.17 26.65 87.80 82.16 21.16 62.87 24.51 39.35 30.32 11.12 43.21 76.42 82.96 9.24 66.44 20.39 27.11 79.84 23.34 50.80 12.04 56.08 23.97 64.58 70.90 89.14 6.45 40.63 74.66 40.62 30.72 19.83 60.53 53.42 6.73 90.89 35.37 97.88 43.61 52.36 27.29 36.50 8.82 10.46 50.66 51.95 93.65 60.14 86.90 24.07 86.31 57.96 53.25 75.15 57.20 76.82 46.12 58.27 32.32 24.37 34.96 78.60 75.70 33.68 21.79 18.16 64.94 40.06 76.60 56.95 77.19 43.72 2.93 25.48 29.99 97.05 82.06 23.59 49.01 44.58 84.77 54.24 88.69 0.16 26.42 83.10 55.61 23.18 24.26 12.46 18.48 54.38 52.50 58.88 78.98 22.10 47.95 41.63 50.71 75.86 -24.71 33.37 22.43 14.62 60.85 33.82 15.76 78.69 55.26 36.20 38.85 35.86 64.61 34.37 50.33 48.49 19.92 87.56 94.93 10.61 4.98 74.16 99.74 25.59 71.70 7.23 4.49 14.04 83.19 46.99 12.70 98.64 42.33 31.82 85.81 98.01 30.70 90.07 8.80 81.80 35.36 36.58 83.09 41.21 6.31 29.53 38.88 88.65 81.67 99.38 69.68 71.94 61.70 37.11 24.08 20.13 72.34 46.51 56.62 25.86 65.04 72.64 94.99 67.07 46.64 53.19 0.08 44.52 63.72 43.39 57.92 81.16 68.45 47.33 37.99 90.30 67.15 31.71 64.10 91.11 86.46 4.68 76.36 25.75 54.78 64.24 52.11 9.38 21.45 92.42 88.48 57.33 90.97 27.00 94.71 48.79 52.98 82.48 93.23 21.94 -53.60 73.30 33.67 42.78 41.31 23.83 56.74 13.89 6.42 71.61 1.87 93.11 24.46 92.91 32.88 15.35 48.54 58.62 67.92 35.13 91.44 25.97 48.50 0.20 91.83 73.52 69.59 78.60 85.45 95.39 38.11 47.73 20.19 40.33 24.92 69.04 57.87 39.29 81.19 14.82 61.40 24.90 45.93 36.90 40.96 89.90 4.87 22.25 31.36 49.00 47.45 80.03 88.64 75.95 84.86 13.25 32.19 36.34 68.17 12.45 99.49 6.73 46.50 89.79 83.75 35.31 84.03 97.71 1.98 89.96 58.47 74.14 87.61 0.41 8.77 83.04 16.49 68.84 48.25 27.49 10.57 4.60 79.03 54.30 37.07 51.46 27.15 23.12 62.01 92.65 85.03 91.62 52.99 86.12 91.10 74.03 16.52 30.68 50.96 49.47 -88.82 84.83 67.16 3.45 97.15 0.33 43.73 47.41 32.10 61.12 65.40 60.15 72.26 13.79 97.01 27.16 78.43 88.14 2.38 82.25 85.59 53.73 39.46 8.31 33.14 7.15 59.05 30.94 62.91 96.15 29.90 5.83 33.94 61.06 96.03 54.04 65.58 89.08 10.63 65.09 33.16 9.13 55.20 12.44 81.78 33.45 80.97 81.88 4.98 74.26 48.13 20.42 23.24 60.88 55.13 78.98 49.27 62.57 25.40 80.15 4.26 18.86 11.38 2.91 3.77 94.19 53.97 63.08 16.15 36.25 88.62 23.98 12.58 13.58 95.43 78.37 6.52 96.39 5.47 75.94 50.56 95.52 66.90 70.99 78.31 58.41 84.77 89.46 24.75 59.06 26.54 9.32 96.52 30.93 13.57 23.05 81.63 55.19 9.62 37.68 -22.84 70.92 95.91 69.92 2.30 8.03 79.77 68.32 5.96 17.28 8.43 40.95 98.33 88.79 24.43 37.72 86.68 59.20 88.95 90.82 7.07 78.70 79.19 31.34 35.42 22.79 69.02 44.43 13.21 55.97 48.05 78.71 43.03 54.07 46.53 95.90 48.61 21.28 34.09 18.17 39.50 95.05 24.67 94.04 61.93 6.14 56.90 98.10 28.91 20.05 45.51 85.26 78.93 17.27 74.46 85.19 3.44 29.77 74.32 12.13 53.65 38.75 52.65 15.15 60.29 87.39 24.68 77.54 36.28 64.26 30.70 26.15 1.79 49.02 86.70 35.31 68.98 61.31 24.80 32.56 79.29 6.28 90.40 52.09 21.19 79.46 32.79 56.61 95.97 80.57 14.00 85.61 44.82 46.78 7.37 48.08 3.38 71.62 33.57 9.39 -11.60 57.74 42.65 70.94 48.17 69.11 7.60 52.17 85.44 28.96 76.88 82.45 77.30 12.54 34.51 82.56 28.99 53.28 98.84 0.01 70.36 4.99 96.16 13.29 15.43 35.04 69.50 25.14 82.11 52.85 42.19 5.58 47.50 6.83 35.78 51.25 99.81 79.19 83.36 91.97 77.62 72.48 58.93 14.56 72.20 39.19 78.83 66.41 18.82 34.03 57.26 86.07 37.10 61.69 45.34 94.24 5.86 75.49 90.76 21.14 14.24 20.94 90.89 40.52 99.18 23.75 86.03 54.51 65.69 60.84 71.47 81.58 90.83 83.44 36.35 51.09 42.43 21.89 33.51 13.11 70.13 70.93 55.94 69.85 52.02 31.38 79.62 64.70 38.28 96.28 32.52 62.75 60.53 56.79 57.08 48.92 71.29 48.95 85.85 42.22 -86.86 80.98 37.57 41.99 83.67 76.89 82.51 17.47 59.62 92.12 78.40 68.91 91.91 39.60 68.28 67.59 12.23 89.07 29.49 36.02 22.21 60.98 96.38 74.61 5.04 32.96 28.72 24.03 9.40 31.07 11.23 98.87 86.95 34.81 87.21 2.28 44.06 34.35 24.67 68.50 73.58 45.38 60.17 90.43 29.97 0.94 87.46 83.94 64.68 10.62 99.02 35.05 25.33 71.66 14.32 65.67 79.89 80.05 77.33 22.27 8.23 58.02 55.97 69.75 67.36 22.90 8.68 82.34 60.50 28.80 73.15 94.23 12.72 46.74 12.54 61.16 54.90 5.35 97.85 41.07 19.69 56.41 78.82 21.38 97.29 58.49 11.83 83.63 90.05 54.02 55.83 23.19 21.59 4.26 93.04 77.47 5.81 96.95 92.13 68.57 -28.51 38.36 97.93 1.06 14.04 87.94 99.78 41.79 71.46 17.17 57.83 91.49 21.53 71.47 87.76 39.32 38.81 55.82 36.81 29.17 72.28 81.16 29.29 81.35 55.86 25.25 49.40 47.20 84.95 30.81 20.55 43.56 76.34 16.00 38.77 76.90 78.57 64.07 64.45 57.03 69.87 80.67 63.85 38.64 31.91 96.35 37.94 13.99 94.58 46.70 46.23 25.70 2.14 1.26 75.30 92.43 3.74 78.07 68.55 2.02 36.47 50.94 58.19 15.26 61.28 4.38 78.71 4.36 92.59 63.50 21.32 14.96 53.08 78.83 75.99 57.28 80.87 14.87 0.58 99.72 29.44 55.83 74.79 54.24 30.18 88.94 89.45 56.66 9.59 14.79 32.29 61.85 73.76 92.87 12.77 35.00 98.15 54.25 64.08 35.78 -59.43 22.32 74.18 82.61 75.34 80.50 58.92 48.71 13.01 32.00 5.16 45.35 7.97 35.22 98.55 57.79 84.53 26.96 28.43 81.60 62.52 60.78 77.19 5.40 87.77 12.16 38.85 41.61 48.96 63.34 7.31 72.09 23.97 46.33 76.30 89.98 42.60 9.96 45.05 62.39 69.88 5.22 79.51 86.35 38.74 69.17 81.04 67.49 87.28 72.30 40.99 1.65 78.81 41.10 95.43 75.75 22.74 85.83 64.84 9.56 43.63 79.95 2.65 15.50 52.52 1.39 92.56 4.45 93.62 90.18 43.64 20.24 15.38 59.47 91.29 30.51 90.60 13.73 27.38 92.00 82.50 83.23 90.01 4.19 20.58 1.27 50.84 47.16 51.28 45.34 45.20 92.16 15.02 53.52 4.03 71.69 93.73 85.03 35.57 73.48 -2.72 66.60 77.77 51.51 34.04 54.69 14.10 66.05 70.66 9.81 71.29 42.81 76.76 51.45 67.17 98.77 51.22 93.60 4.11 74.42 25.96 51.65 17.56 79.65 85.78 33.20 43.88 85.60 81.20 4.02 93.91 21.19 21.24 89.61 22.34 56.65 5.23 35.23 87.15 90.42 92.87 81.50 72.05 5.39 78.15 99.73 86.90 3.38 65.07 57.52 85.83 12.51 53.05 77.11 35.01 26.92 0.81 62.91 36.29 59.28 54.79 17.51 93.36 43.79 58.01 18.35 45.25 15.77 72.81 22.23 48.53 50.46 83.14 29.21 35.69 41.40 33.07 61.74 38.87 99.44 81.46 67.08 92.66 92.67 16.84 74.46 91.00 79.33 23.74 80.57 45.08 32.60 12.99 25.60 14.38 14.57 31.54 32.64 80.76 0.17 -65.79 40.66 10.48 2.39 74.91 47.51 29.44 57.78 82.61 28.55 27.05 73.92 94.82 74.73 84.14 33.37 60.96 14.89 81.88 47.21 73.22 68.32 82.60 9.08 98.69 86.83 23.21 60.22 23.44 31.93 3.08 12.99 37.46 90.88 83.72 68.66 86.83 41.75 84.91 60.34 18.51 82.88 47.38 94.51 38.88 54.10 4.03 5.61 7.36 48.72 74.37 74.09 66.66 66.30 37.07 97.17 50.26 38.54 14.12 85.70 60.09 98.78 83.02 95.41 68.46 66.10 96.12 23.04 7.72 97.12 32.44 45.33 34.04 41.42 69.52 40.07 18.99 82.38 17.79 75.53 24.06 46.87 70.13 69.64 40.37 94.57 2.13 22.75 0.91 96.03 48.19 39.19 1.59 19.64 2.23 57.55 87.80 7.67 39.66 50.59 -75.61 98.99 44.79 21.48 72.89 92.37 81.38 65.85 84.18 82.67 88.82 55.02 53.60 51.75 88.58 46.52 74.45 74.17 90.34 35.52 79.29 11.13 37.09 78.86 25.08 51.83 88.37 33.79 23.88 59.87 92.84 19.25 6.28 55.24 47.11 4.04 96.50 61.71 97.16 92.31 70.94 88.81 49.26 97.29 74.65 41.74 58.65 65.19 70.36 85.90 57.12 53.85 26.25 17.43 1.84 38.40 64.30 44.78 39.71 84.84 17.56 43.11 22.66 96.57 33.62 49.15 95.28 86.77 33.82 63.87 20.53 15.86 39.35 20.37 17.01 58.92 43.06 45.29 24.28 21.53 62.65 71.39 7.08 12.57 67.93 81.32 28.08 40.05 10.46 82.04 7.35 86.59 73.96 60.34 88.69 63.10 39.30 21.45 1.17 49.94 -12.82 36.40 60.90 92.50 72.54 88.72 45.88 29.48 61.08 39.72 96.08 28.13 55.19 26.48 29.60 65.21 93.58 6.59 26.76 74.97 57.90 70.48 35.16 75.82 8.30 55.58 3.24 35.35 54.67 39.77 89.51 77.73 30.44 20.23 32.17 61.21 91.57 68.85 99.56 96.17 78.70 25.37 71.96 73.27 57.32 67.03 53.34 51.38 27.34 53.73 66.38 82.74 40.43 65.22 40.86 53.57 89.26 5.27 10.32 23.57 35.96 54.96 24.11 10.10 11.81 71.36 27.47 37.21 33.32 68.84 24.58 54.27 52.08 29.47 53.98 19.46 74.97 61.07 64.56 84.92 58.46 79.51 13.94 61.27 67.71 44.40 68.96 46.85 54.47 23.62 45.23 7.71 67.61 15.85 9.82 12.79 53.76 20.93 13.53 1.38 -30.05 45.86 92.80 73.82 98.62 37.53 6.70 26.10 74.53 53.16 28.20 31.51 44.41 65.57 26.11 67.43 4.76 13.45 32.03 23.55 13.47 29.00 78.65 28.66 72.61 64.84 41.99 92.92 51.83 7.27 21.34 2.59 33.44 83.03 93.51 75.89 39.55 79.36 5.52 21.02 93.37 21.91 2.68 41.12 94.53 43.00 89.98 80.31 38.85 65.55 9.72 75.87 28.85 85.49 56.39 26.55 82.97 85.15 25.95 91.75 77.79 47.23 4.42 24.76 90.01 0.52 8.49 9.06 83.89 28.57 13.32 78.53 80.76 90.38 3.41 4.36 2.18 27.62 4.85 60.40 37.66 41.64 57.72 89.35 49.01 61.61 53.77 91.53 23.37 36.53 49.18 63.81 55.13 36.25 47.74 51.64 58.94 98.42 26.62 41.77 -58.04 74.04 13.73 88.59 91.42 61.42 48.65 17.23 77.11 90.29 91.88 51.27 43.85 84.30 52.88 0.17 24.92 89.86 59.67 28.52 96.17 41.33 61.36 88.13 93.85 70.16 42.22 68.70 52.30 66.02 36.42 64.58 77.25 60.89 31.92 26.47 21.55 10.05 15.73 83.13 91.30 54.06 65.77 9.66 81.74 20.97 24.24 92.77 40.90 60.14 99.01 24.14 57.28 2.63 73.24 48.84 44.07 17.91 1.82 9.50 33.26 7.82 12.67 82.10 55.90 69.72 98.70 87.06 2.32 70.62 38.32 46.38 89.94 17.62 9.08 16.77 42.65 99.55 31.08 62.80 46.71 35.41 85.81 19.40 9.59 47.19 25.91 5.28 65.40 75.72 63.68 52.96 99.48 97.26 26.78 43.78 79.16 94.31 57.46 8.91 -92.18 45.96 85.53 66.14 63.19 41.80 24.61 99.32 80.59 97.60 4.16 31.60 53.96 13.41 57.93 0.95 38.49 45.14 90.50 31.77 64.85 5.32 15.72 92.66 25.75 78.95 86.47 15.47 39.47 11.82 36.38 34.08 51.79 95.73 91.25 67.65 88.89 97.32 37.16 79.55 93.90 79.50 94.91 42.44 21.08 85.14 91.43 61.87 32.57 48.30 57.30 39.16 38.52 11.63 64.46 52.18 82.39 29.14 59.59 41.67 38.16 34.21 29.06 96.64 69.56 41.93 29.80 90.14 13.90 78.39 9.16 9.51 47.74 50.96 25.71 47.67 85.40 78.58 55.39 78.75 68.17 13.91 16.42 58.51 40.13 79.56 65.19 63.10 25.15 56.63 10.15 26.05 13.65 19.99 86.30 63.30 46.76 64.21 31.69 69.77 -47.18 4.32 52.95 60.94 13.69 40.59 43.10 15.36 93.78 91.82 52.92 1.59 70.02 29.96 87.85 74.23 30.15 39.55 17.72 80.48 39.92 11.80 12.02 27.28 16.32 26.29 29.94 64.06 10.68 56.54 61.60 63.03 86.90 74.93 62.74 3.74 19.53 18.29 83.33 32.85 75.08 73.36 36.09 75.00 20.34 49.72 11.88 76.11 58.76 35.08 93.99 94.55 33.28 72.68 74.90 41.20 34.10 38.25 32.44 84.00 51.77 69.68 9.57 89.34 30.45 49.05 0.84 44.57 12.78 99.63 83.86 28.74 91.72 31.52 11.05 12.11 11.01 35.68 26.08 99.94 67.67 55.00 72.47 23.06 87.77 96.59 56.30 43.89 84.48 35.42 68.12 61.37 37.16 88.08 50.10 48.56 31.63 24.83 52.26 35.01 -41.44 76.99 34.50 68.38 93.37 85.06 48.11 46.79 99.34 80.47 16.90 65.40 51.83 34.42 41.50 86.80 10.64 12.48 51.45 39.38 95.37 39.79 45.15 15.97 73.94 20.28 33.24 79.98 67.92 52.21 67.52 89.36 51.90 88.49 12.11 58.89 21.54 55.12 47.41 97.07 72.36 77.17 36.83 49.02 94.41 5.30 23.24 8.07 35.62 41.21 15.24 69.42 20.92 99.58 14.18 79.97 63.55 97.10 89.14 97.74 13.70 70.20 62.00 73.29 96.19 13.20 37.65 33.72 50.01 17.05 87.91 77.89 1.66 53.39 69.12 65.44 26.72 89.33 44.29 29.29 17.81 44.38 44.47 2.87 71.57 99.80 35.69 77.91 5.61 48.85 27.85 91.22 27.47 10.77 45.87 97.74 16.83 5.36 55.89 87.12 -1.04 6.23 84.14 37.75 60.59 67.49 32.41 57.06 75.87 53.91 95.64 99.23 92.89 38.55 16.59 50.92 14.19 75.72 54.33 48.59 3.66 79.30 82.71 47.25 67.25 66.53 55.40 69.92 83.22 44.71 19.17 76.59 36.77 8.39 63.82 97.76 86.59 73.16 64.37 39.35 21.07 32.43 17.72 78.20 15.92 43.95 67.16 36.19 53.52 70.39 14.10 50.51 7.94 18.36 22.66 48.14 69.47 29.83 71.98 3.69 35.64 94.19 90.53 39.30 37.20 46.69 83.31 17.00 85.57 33.15 50.25 82.35 59.73 2.10 97.95 45.67 37.40 17.65 17.33 40.45 10.14 82.99 52.58 18.16 33.16 82.15 34.75 10.05 28.36 17.86 34.89 15.80 70.88 32.89 89.25 28.03 61.93 69.07 44.76 27.89 -53.39 3.56 97.48 86.98 38.97 90.56 95.57 96.32 64.38 43.38 7.44 52.81 0.73 60.79 55.38 64.72 76.32 24.22 44.77 47.31 92.22 37.73 46.23 61.20 78.97 54.66 30.25 67.29 48.62 54.99 18.87 83.56 43.04 50.58 65.40 27.67 14.46 74.38 4.30 32.05 31.06 30.06 17.25 64.94 31.42 17.50 71.11 30.59 87.52 68.68 46.22 10.21 51.78 55.12 4.66 46.14 44.69 1.25 91.44 48.47 54.28 56.49 99.41 19.27 56.57 83.48 13.81 37.03 89.26 56.27 90.94 17.93 57.55 84.53 97.06 32.94 50.87 61.47 34.03 33.55 54.25 51.97 90.08 95.90 61.20 47.18 39.78 33.99 23.65 74.40 79.22 55.93 43.35 66.91 32.89 31.15 18.90 42.92 71.16 91.09 -31.48 20.55 78.65 33.33 24.82 65.87 41.16 71.34 92.29 70.40 91.64 19.58 9.14 80.13 33.13 57.25 23.52 99.71 37.98 65.56 95.64 51.57 33.93 88.87 24.37 41.22 29.43 67.44 65.34 97.83 75.96 54.58 56.94 15.35 75.50 34.00 11.88 92.99 22.22 7.43 14.92 13.09 67.60 1.44 29.76 38.98 62.43 75.45 93.39 7.09 18.79 85.27 8.92 73.48 34.43 22.05 16.51 61.78 21.41 95.61 26.74 53.03 16.14 44.16 33.28 25.43 22.83 30.08 38.02 67.10 87.61 33.30 56.41 24.20 52.05 40.90 86.59 77.07 20.13 95.77 50.34 47.54 96.20 68.97 86.66 56.10 62.54 97.64 99.71 15.84 18.27 78.61 17.80 45.34 62.65 0.35 75.95 37.50 95.71 90.43 -37.73 95.39 32.27 28.72 69.94 12.34 69.38 88.77 76.28 23.01 57.88 88.31 55.42 98.15 38.58 66.76 23.34 98.83 11.99 29.65 88.63 55.67 13.66 56.76 35.16 27.37 56.57 62.36 51.05 59.45 3.70 84.03 39.36 68.06 12.47 73.91 20.41 81.59 6.73 72.54 93.94 60.68 72.69 74.58 12.96 19.68 76.17 79.20 78.53 50.05 46.25 7.58 10.76 91.57 20.10 87.34 31.76 33.31 43.89 33.15 37.86 31.71 64.98 92.99 3.34 83.36 13.26 49.98 90.40 50.80 26.12 56.24 43.15 98.62 82.23 27.91 29.73 44.17 29.32 54.54 88.25 96.57 83.41 64.79 59.31 43.74 0.81 25.58 58.75 24.75 65.54 13.05 50.09 86.09 38.87 20.54 94.88 12.34 98.92 87.63 -48.16 5.55 77.29 40.91 94.43 21.07 28.35 98.00 51.92 30.99 67.57 76.51 66.90 24.91 35.74 15.39 34.67 94.32 53.53 19.17 3.54 8.24 39.11 46.31 66.20 84.60 13.01 88.10 28.86 26.39 88.34 70.67 9.36 60.40 14.34 59.15 25.62 76.21 58.20 49.65 77.78 1.84 21.15 87.22 65.28 35.99 24.82 59.30 46.50 26.26 19.17 72.97 37.07 50.37 73.33 3.76 85.82 0.21 75.21 3.77 28.76 61.80 40.75 65.02 15.76 71.94 4.27 67.86 48.70 98.95 43.68 0.07 86.79 55.09 9.40 57.43 7.86 56.74 31.27 29.06 92.10 9.27 61.52 68.37 3.21 13.26 68.04 9.38 34.73 36.58 59.31 90.11 28.88 57.84 26.54 39.66 83.63 96.50 97.44 54.52 -88.68 37.90 54.65 13.54 90.44 36.99 22.67 6.84 25.18 20.02 80.70 60.53 83.03 63.79 21.80 8.69 79.29 98.65 99.56 46.81 13.89 77.46 36.75 21.77 11.42 0.06 24.14 13.40 30.28 85.43 33.99 11.79 81.47 48.14 98.44 3.26 9.02 19.33 93.93 15.70 1.56 13.78 71.70 21.15 89.02 12.50 31.19 72.03 59.50 11.97 97.78 56.65 11.53 23.27 51.53 40.23 53.24 21.19 77.50 80.98 49.10 53.59 70.69 10.74 26.97 39.58 92.05 99.10 21.97 8.53 38.70 0.18 99.34 44.64 0.53 6.99 9.89 2.87 31.95 83.76 12.95 80.01 18.71 80.62 38.33 9.11 30.36 11.97 18.80 70.22 11.25 30.73 69.63 89.61 13.93 74.06 45.72 28.21 73.07 84.23 -79.22 22.04 16.22 24.72 97.26 51.14 17.58 53.02 60.83 77.50 93.27 99.63 7.65 58.48 90.76 68.05 2.84 54.41 93.52 1.87 48.25 75.27 83.05 22.01 83.02 2.75 17.71 8.52 80.72 41.43 58.26 47.33 33.07 17.44 20.99 40.37 77.52 26.70 47.27 90.89 38.86 36.77 36.58 11.59 22.51 37.73 97.46 48.45 88.20 87.97 56.79 22.15 42.31 59.11 45.12 39.07 75.78 36.04 33.33 67.10 36.84 77.37 48.01 98.77 52.05 78.20 34.61 84.22 20.71 31.81 65.63 53.82 12.91 47.45 41.64 85.74 43.20 72.74 62.49 3.75 14.26 38.46 1.39 45.81 27.13 35.94 41.04 60.41 56.44 15.81 2.41 78.56 74.43 26.80 17.22 46.48 52.92 94.72 99.66 3.85 -35.53 68.00 20.39 93.65 88.30 74.75 38.15 36.97 52.62 51.87 74.82 25.74 16.70 56.20 16.05 69.94 9.78 55.17 1.62 49.59 58.89 95.40 83.80 98.55 9.85 73.40 95.51 24.77 47.24 6.35 79.06 88.42 22.70 99.77 62.90 26.00 99.02 74.56 33.63 33.47 48.21 56.02 73.23 49.81 81.04 86.11 87.92 64.23 56.09 5.40 25.16 22.57 6.05 36.56 65.49 30.06 4.05 59.78 10.71 86.06 52.33 72.14 94.89 47.87 34.88 6.66 81.70 1.65 27.67 64.93 13.82 50.97 58.82 66.81 85.22 20.24 32.17 10.33 92.88 16.74 40.48 37.78 55.30 98.75 26.05 29.32 31.79 88.39 59.85 68.82 41.87 57.46 28.39 88.04 22.19 20.46 66.03 58.95 73.94 90.03 -1.38 21.22 49.59 19.35 35.91 81.34 24.05 55.22 61.39 90.70 86.43 0.20 85.67 72.93 46.03 23.52 21.14 91.85 16.16 13.60 90.68 23.20 4.51 98.03 86.73 60.80 88.18 32.28 33.27 6.70 83.95 99.47 3.38 83.19 67.08 21.11 38.44 27.63 69.75 15.76 68.64 73.35 17.41 23.30 85.85 44.17 90.63 99.40 4.04 68.22 17.98 36.05 7.95 2.59 64.39 23.89 54.77 88.97 49.37 30.07 54.57 67.31 26.90 42.61 67.08 18.31 83.36 73.90 90.26 65.89 21.62 44.64 77.47 25.92 18.36 7.18 50.26 1.37 63.81 39.08 44.43 17.74 78.57 1.50 90.87 54.08 66.00 7.52 81.56 37.09 28.89 8.90 76.95 7.22 5.82 24.07 41.80 29.06 88.16 75.01 -66.78 9.97 76.40 92.02 9.31 33.68 88.94 57.04 65.47 34.54 28.07 77.31 14.70 85.52 12.59 41.30 86.00 21.31 76.92 64.24 7.38 29.84 56.94 29.44 19.54 87.58 66.04 34.18 77.22 15.45 35.98 35.30 51.66 69.44 13.24 35.36 10.27 35.62 50.39 80.21 19.50 18.11 26.52 70.08 93.90 32.69 18.01 98.71 7.21 39.52 97.14 29.13 25.62 17.70 92.30 5.12 14.34 88.86 45.17 5.49 33.53 14.42 3.39 87.97 36.75 4.38 77.62 38.26 70.77 97.40 79.01 45.71 5.25 42.82 63.88 6.08 18.61 61.78 80.33 34.35 10.39 99.92 22.64 73.31 79.61 75.15 3.51 41.58 29.89 45.45 64.80 39.57 33.41 67.72 9.93 2.12 69.93 22.15 58.92 17.40 -52.89 56.22 85.69 85.49 27.59 92.78 25.23 10.52 86.61 8.79 75.68 10.39 55.51 19.61 62.27 84.91 51.10 4.21 40.34 8.46 4.38 68.30 45.94 3.93 98.52 93.92 9.10 24.92 81.65 34.06 86.49 35.99 97.63 51.28 29.05 24.50 37.92 73.50 90.70 40.20 41.52 84.54 61.53 26.49 38.31 22.49 21.27 88.35 34.72 41.89 67.69 4.25 81.98 33.59 87.68 16.15 13.83 67.94 82.90 69.23 15.88 36.02 58.57 17.71 6.34 46.84 6.96 76.60 41.42 71.60 37.03 5.76 26.12 88.38 59.83 1.98 54.01 37.19 84.44 16.33 24.75 16.23 23.34 11.79 49.99 87.66 65.57 28.52 89.25 69.61 18.42 16.33 55.78 38.02 48.36 87.07 82.96 25.28 98.48 69.71 -19.12 11.83 51.32 17.40 11.36 19.67 88.55 19.51 65.54 17.87 49.04 24.13 77.69 34.00 46.04 18.30 74.10 87.48 3.44 77.96 3.16 61.85 12.15 72.97 37.71 94.79 40.63 40.28 69.13 91.73 70.61 3.92 50.20 20.09 71.31 23.79 2.76 46.39 14.31 66.39 80.27 34.28 57.51 84.90 52.27 16.83 60.92 51.87 67.20 18.42 71.57 61.21 78.58 91.40 83.44 55.99 7.02 38.60 79.44 52.76 59.77 88.71 93.85 29.71 47.96 16.94 7.81 32.45 17.05 57.49 14.89 3.85 11.94 86.05 75.83 65.28 59.21 0.34 37.93 10.71 33.72 23.40 21.35 6.57 64.97 85.28 5.05 35.18 89.19 36.45 97.94 14.06 49.94 70.14 44.74 10.02 71.07 49.03 83.41 16.24 -76.37 98.14 62.94 4.29 67.09 26.59 76.86 53.96 61.87 39.42 76.31 76.82 73.89 72.20 46.48 59.18 9.30 27.63 92.15 35.27 91.45 30.21 46.73 38.87 58.54 45.04 27.80 42.79 69.71 89.14 75.40 88.96 42.53 51.68 23.75 34.14 65.11 69.88 52.76 31.70 3.73 31.24 27.26 32.21 3.81 74.02 72.14 12.11 79.97 90.50 7.54 5.95 20.81 73.96 66.84 56.31 46.14 62.86 22.30 68.03 84.79 32.25 31.11 47.74 51.15 17.10 12.56 60.88 52.07 97.19 34.23 12.91 86.18 95.00 56.12 9.94 91.21 59.86 16.59 37.59 47.91 69.73 70.75 1.34 9.58 9.00 41.73 78.49 25.35 99.91 1.18 97.85 45.07 30.44 94.32 69.89 66.76 88.28 96.49 6.25 -56.83 16.28 49.88 51.48 47.22 6.93 88.97 30.80 21.14 79.59 91.40 27.60 32.56 76.17 10.94 98.07 69.52 96.17 23.90 77.04 75.30 40.11 18.12 93.61 57.18 40.97 4.53 36.22 22.10 93.14 11.89 26.04 47.38 58.12 20.14 91.37 4.04 38.74 35.05 42.46 76.56 62.78 56.01 50.25 84.88 69.77 93.21 34.19 27.71 51.49 66.35 95.75 52.90 13.13 72.41 2.84 66.19 1.06 65.77 43.47 84.70 48.57 42.05 13.55 42.82 7.21 99.96 35.92 23.66 24.40 82.06 99.97 64.76 24.01 22.05 40.41 88.90 75.78 90.65 84.78 17.02 86.05 62.65 66.31 76.28 52.00 33.84 63.08 73.79 98.44 17.01 66.33 12.63 14.75 26.93 24.77 32.11 24.88 74.61 83.35 -62.78 28.12 12.20 95.18 42.31 49.48 51.87 56.91 23.61 45.32 65.21 90.98 18.58 67.86 1.26 98.17 42.26 46.52 45.97 57.32 0.07 30.63 99.35 3.02 12.04 48.01 76.49 50.26 53.94 2.04 6.65 63.75 62.12 19.74 77.10 98.20 44.47 80.32 3.57 0.51 72.13 67.32 36.05 39.78 95.33 51.75 97.02 33.11 73.92 73.06 21.73 13.96 29.92 43.82 90.86 52.47 6.88 85.31 86.28 65.36 16.70 92.53 39.49 4.86 29.15 78.94 69.17 88.41 7.45 62.97 64.86 37.69 2.83 54.62 90.75 27.30 35.35 79.91 30.28 15.14 54.37 34.06 39.56 64.55 50.53 14.23 60.59 37.97 59.09 24.28 63.95 33.27 28.85 23.30 71.23 36.81 65.87 46.98 95.42 48.74 -92.50 39.75 63.22 59.88 79.35 77.31 31.77 44.35 37.59 73.23 11.12 56.01 51.18 97.49 3.39 37.11 3.61 94.20 77.18 44.68 13.51 4.20 32.24 30.16 94.44 0.80 21.71 36.88 80.13 20.69 5.21 82.83 48.31 82.44 9.41 14.51 50.26 92.44 58.72 64.45 40.53 44.22 84.13 50.28 28.20 53.10 80.32 28.92 82.13 40.49 47.43 19.75 19.85 97.69 83.21 95.78 29.38 2.66 52.51 4.75 51.43 80.05 65.37 82.01 32.80 69.15 12.36 72.91 30.57 69.94 3.28 85.22 99.83 84.38 18.15 45.59 15.87 95.89 7.37 77.87 13.34 68.62 67.90 21.58 87.55 12.97 24.30 78.80 81.19 88.13 79.08 82.93 36.33 98.54 1.70 38.87 29.45 28.35 37.57 63.95 -95.19 48.88 83.96 59.49 14.97 71.86 52.30 44.15 9.49 2.37 35.84 97.24 55.30 16.22 21.34 59.67 9.97 94.52 26.39 85.06 84.26 64.99 45.37 84.21 77.09 53.06 52.53 66.56 66.78 70.61 2.89 84.04 21.97 74.65 85.90 91.42 65.04 47.23 5.83 69.40 82.58 3.40 21.58 42.72 34.19 8.59 40.31 3.33 62.77 24.89 80.25 0.46 79.95 26.93 78.90 74.32 68.60 85.19 94.02 94.55 24.08 3.50 58.81 39.81 66.01 64.54 83.02 49.70 87.54 86.84 9.71 43.19 26.34 68.28 91.14 90.85 35.86 4.41 40.31 31.62 92.06 87.45 78.03 52.66 4.85 51.96 8.40 2.69 19.07 86.20 89.21 31.42 4.70 46.67 20.34 57.51 72.74 51.78 4.06 15.46 -45.23 12.90 49.23 60.60 50.93 63.48 25.39 95.96 98.08 81.69 60.27 84.61 42.45 33.63 35.53 43.95 50.36 80.11 74.84 48.05 89.59 89.12 83.42 11.20 3.42 30.40 6.09 89.88 20.00 30.42 83.45 40.53 14.05 86.03 97.57 79.56 67.18 65.47 15.10 62.98 17.51 54.94 2.60 19.95 79.47 92.88 19.84 41.24 86.83 25.76 52.78 82.30 63.33 15.67 19.91 44.77 58.17 3.25 17.78 74.82 6.57 30.08 94.27 6.24 21.13 18.22 68.47 21.26 23.09 92.04 95.70 7.79 49.04 9.05 0.09 82.56 52.62 35.08 94.34 22.65 94.28 20.56 66.10 43.35 43.78 99.51 41.48 69.80 58.45 63.81 30.59 40.24 4.34 88.34 92.06 24.51 0.06 54.51 79.91 13.69 -78.59 59.89 59.96 94.16 38.87 1.05 28.68 87.41 63.75 50.90 20.15 87.68 36.28 4.21 73.84 2.71 30.07 40.68 55.29 77.38 18.45 82.84 95.45 15.56 82.46 83.20 14.29 9.06 30.49 67.41 18.43 2.44 20.90 48.82 19.74 24.55 16.32 39.53 20.33 0.02 98.71 28.39 82.26 44.01 29.15 30.40 43.79 79.98 80.69 54.98 90.49 73.62 37.65 77.82 96.01 47.91 88.14 19.51 73.29 58.80 53.12 6.86 81.43 58.86 76.26 22.44 69.78 87.81 15.13 79.49 93.05 49.50 94.41 52.87 97.91 64.93 45.94 96.03 0.84 37.50 81.61 55.39 59.99 62.07 46.25 70.41 80.04 40.07 46.38 65.57 49.64 16.11 61.08 63.13 6.21 11.93 54.11 41.50 99.49 91.81 -47.43 31.28 20.26 41.39 92.41 49.29 24.32 61.99 19.98 64.58 67.14 40.93 79.70 42.94 83.92 22.84 4.47 39.80 3.92 39.06 2.59 21.54 31.38 80.02 65.47 0.65 43.61 88.82 23.81 29.08 63.89 15.57 19.84 33.28 6.86 65.28 64.34 6.82 98.55 86.21 5.84 19.43 67.80 21.36 49.22 95.94 13.07 10.46 37.64 63.96 59.03 66.31 59.22 88.62 22.09 55.89 79.59 75.14 30.15 23.70 0.96 38.47 0.40 42.42 30.01 40.71 12.07 5.54 93.81 19.36 88.89 41.40 98.40 33.87 22.22 14.24 60.33 70.24 13.13 54.86 18.54 14.08 83.17 66.16 3.94 25.00 40.48 40.35 41.22 50.46 78.59 60.44 79.97 41.03 2.97 50.76 74.59 46.95 88.01 26.78 -91.14 86.72 20.45 68.01 38.56 84.37 26.88 65.98 29.43 94.94 43.93 28.08 91.16 61.85 74.94 26.15 81.05 69.03 81.53 83.85 14.06 17.47 37.47 47.43 36.49 27.16 4.25 35.63 87.33 18.12 51.58 4.69 97.77 39.02 62.49 42.28 57.50 77.42 81.60 17.31 7.33 73.96 82.22 87.18 95.01 30.52 58.82 26.66 67.87 44.82 28.83 12.42 47.44 30.28 22.74 92.83 80.10 97.71 45.91 35.86 6.84 10.73 23.14 36.71 96.44 72.02 55.63 19.88 54.12 43.19 24.89 5.84 37.17 32.14 64.80 9.09 70.78 16.95 22.30 46.60 49.73 24.41 30.07 60.13 46.83 17.74 95.28 92.55 76.61 80.80 36.57 77.19 69.59 93.78 15.31 21.98 78.16 34.26 5.81 0.15 -41.66 16.90 0.50 86.38 74.33 14.06 27.24 25.71 57.78 92.91 83.94 43.19 14.74 49.94 82.69 27.81 60.44 9.53 53.46 47.34 6.06 65.81 8.79 63.88 36.00 5.20 96.24 64.78 20.12 91.63 2.68 49.76 44.15 23.30 51.12 46.01 42.76 45.86 54.60 50.73 31.62 10.27 78.67 65.90 23.67 95.98 77.64 24.43 74.99 8.21 47.26 88.56 10.08 39.26 78.48 9.43 91.79 75.62 33.86 95.33 98.46 35.73 64.98 70.97 8.60 91.66 33.94 94.20 42.50 52.51 65.40 94.03 34.51 62.20 52.60 80.79 86.65 32.32 82.95 12.21 77.83 28.12 28.85 30.51 36.18 28.61 90.62 34.93 92.85 20.61 15.97 61.27 96.97 80.04 75.88 74.14 54.90 88.38 1.11 63.78 -70.17 48.46 51.70 19.42 29.75 44.10 92.68 64.53 3.10 11.73 76.98 99.93 60.96 74.36 84.99 59.12 25.77 51.44 35.01 16.11 93.17 4.91 85.43 84.26 13.12 28.26 56.27 35.37 72.67 55.81 34.22 2.73 10.81 97.33 17.03 3.61 62.54 37.35 35.93 50.65 18.78 1.48 61.78 74.20 26.88 59.09 63.62 64.92 82.93 60.42 66.31 19.35 81.67 78.91 74.94 15.07 22.44 46.85 56.47 71.31 32.74 81.90 59.50 24.12 39.04 17.65 71.77 91.40 52.76 29.14 78.85 82.62 29.89 63.13 53.27 30.90 26.70 34.03 53.46 60.27 69.52 69.51 8.27 82.22 82.60 5.61 73.71 11.84 66.71 28.50 91.52 81.03 44.49 11.89 36.35 80.43 69.72 31.02 85.90 66.22 -8.91 5.52 5.64 90.25 60.36 33.51 79.93 95.95 67.65 57.58 53.73 25.09 67.20 38.56 56.20 67.20 19.76 38.71 69.82 67.63 90.41 53.22 59.34 72.52 48.09 71.92 9.14 10.21 91.87 42.46 44.98 19.98 83.09 38.85 84.29 46.53 8.89 56.50 71.27 78.66 81.25 59.04 52.31 88.13 25.79 95.91 26.85 75.57 18.81 43.36 33.10 92.12 98.00 54.51 52.75 30.75 5.08 61.57 44.32 98.83 27.64 69.55 43.62 66.27 38.38 72.48 50.12 50.22 5.86 19.79 39.72 74.26 22.66 17.19 70.69 49.67 57.55 13.75 91.26 9.83 5.33 32.34 81.32 43.69 40.94 75.82 82.23 58.78 14.28 17.13 99.81 27.62 53.66 56.54 55.11 11.37 40.50 74.44 35.03 86.26 -95.52 29.20 73.05 2.59 77.71 65.95 98.34 77.33 93.35 12.68 67.88 69.18 0.34 62.79 80.50 25.83 88.94 90.72 50.27 20.06 59.82 2.85 54.53 80.98 2.54 81.98 58.93 96.17 41.86 70.34 71.17 92.53 25.07 23.22 80.21 21.88 26.64 56.44 11.06 6.44 72.33 6.25 9.98 87.06 90.66 9.14 68.14 36.24 80.46 7.36 94.66 30.39 42.80 27.92 44.28 14.22 53.69 65.49 49.39 4.54 41.39 33.39 81.42 88.97 43.01 25.39 72.08 49.81 57.63 30.55 88.10 20.12 10.23 32.31 79.93 66.75 85.70 58.03 92.11 50.41 8.65 2.73 62.23 10.19 93.81 62.91 60.64 68.62 51.41 97.15 95.71 27.50 59.44 68.58 74.91 96.98 75.75 42.59 13.76 2.31 -73.23 51.86 96.22 60.50 22.03 42.33 96.78 22.54 69.74 68.96 40.50 64.37 63.13 22.71 90.96 20.01 12.21 73.78 45.45 87.44 37.96 14.17 10.48 5.95 51.50 1.68 76.71 70.01 87.28 24.47 43.80 3.50 25.78 69.92 30.41 98.66 58.63 92.10 90.97 69.23 89.26 32.51 8.91 87.63 40.19 23.74 62.92 59.86 40.36 45.74 45.38 11.73 75.27 39.30 13.87 94.57 97.73 53.40 87.41 74.36 19.53 85.47 17.09 44.35 17.73 21.60 95.27 63.70 30.24 46.12 79.60 5.09 23.54 0.43 15.15 71.30 90.22 83.70 75.89 22.91 24.41 70.51 97.61 7.59 34.39 41.18 26.43 71.35 40.41 51.86 20.40 99.53 8.85 50.66 83.48 44.87 64.76 31.89 34.02 30.23 -75.32 7.44 86.93 51.18 26.44 26.96 97.01 38.42 85.86 74.37 78.86 51.04 17.88 63.20 7.61 4.02 87.58 89.87 60.56 94.58 83.79 68.67 85.53 29.66 89.02 27.56 88.42 39.98 93.13 77.24 17.52 17.71 37.42 2.42 3.77 31.88 13.42 38.98 24.92 0.82 73.28 35.93 28.85 43.73 42.77 22.13 82.23 36.13 89.22 32.38 38.82 59.29 68.97 50.72 6.96 42.62 99.83 54.49 54.55 97.45 83.84 47.75 72.15 35.61 42.04 78.71 94.92 6.37 90.11 0.83 79.81 82.47 50.23 93.51 22.58 75.82 94.66 61.08 71.78 26.35 98.81 22.49 52.55 44.85 93.91 1.99 81.40 62.77 51.71 97.30 32.22 76.48 33.09 32.96 23.40 35.39 16.09 52.29 34.69 93.84 -64.42 64.58 35.40 74.60 30.76 44.33 47.69 92.74 3.03 27.65 40.32 1.18 41.49 83.57 12.06 82.14 80.53 17.99 71.38 49.23 70.22 13.08 35.70 66.72 56.90 72.28 36.07 88.36 40.18 31.54 82.35 77.44 39.63 38.66 24.44 8.34 12.73 61.13 45.09 86.24 17.40 33.32 88.49 57.08 42.42 32.47 88.13 12.00 87.35 12.59 61.82 59.71 13.86 51.83 68.87 18.57 83.02 92.90 66.42 60.38 80.46 23.72 4.78 44.86 11.00 20.19 2.80 54.91 40.75 52.35 55.06 71.76 86.01 76.81 82.51 4.21 61.41 2.50 61.10 76.23 27.68 41.60 45.24 41.71 19.11 52.20 71.89 17.44 38.64 95.30 57.56 78.56 5.21 64.98 86.51 6.54 74.24 72.87 2.24 69.53 -74.88 77.31 83.57 23.80 92.62 66.34 64.43 99.62 89.08 17.42 36.88 68.76 4.25 80.69 1.67 71.02 53.12 76.71 38.92 97.39 37.96 83.97 39.91 53.38 85.86 56.53 85.64 85.91 12.31 82.98 77.23 90.10 33.12 6.71 90.45 50.68 24.21 96.57 44.06 53.11 37.99 77.61 66.69 2.42 59.69 76.85 57.79 75.18 84.31 97.95 66.46 31.03 41.29 87.17 56.52 72.72 90.45 54.90 99.59 81.95 20.06 23.11 25.52 87.96 57.73 84.58 59.51 11.99 88.20 36.23 98.49 42.44 56.97 65.37 80.50 24.74 18.15 10.63 38.33 62.82 40.45 60.06 42.88 1.81 36.45 88.03 11.09 22.41 43.36 65.73 96.79 45.23 57.19 91.86 86.96 43.25 94.98 85.30 5.68 14.92 -11.09 60.26 34.26 72.98 22.82 40.20 4.27 71.65 27.54 84.63 98.77 86.16 97.82 2.25 70.99 71.63 59.66 70.10 54.44 94.25 82.87 50.77 78.57 78.05 92.59 97.74 32.05 70.22 14.64 75.89 64.83 70.30 39.40 59.13 77.18 15.46 59.44 63.31 32.01 78.86 2.93 7.98 43.84 65.29 41.63 63.80 68.45 26.76 84.80 51.36 5.23 82.51 31.90 91.85 41.74 54.37 70.96 36.89 25.55 62.01 98.80 37.91 21.32 68.43 38.64 44.44 91.54 51.20 15.16 57.43 62.87 97.46 9.20 77.24 13.31 90.60 90.83 31.67 5.60 60.51 11.27 22.13 64.51 83.42 78.59 10.18 17.24 63.56 11.16 66.88 89.44 25.32 57.64 98.80 58.99 96.27 6.68 75.33 60.87 95.40 -81.93 95.81 98.16 34.09 33.91 67.16 86.87 44.31 42.03 62.15 47.41 10.91 88.41 85.28 37.36 15.24 20.15 98.66 29.19 28.73 44.60 96.73 80.48 98.27 58.38 47.40 74.66 10.16 35.46 59.01 36.25 4.50 18.48 87.43 93.10 84.09 41.21 21.94 85.29 92.84 97.99 78.08 43.53 10.37 51.07 37.01 97.74 65.53 67.93 23.28 11.13 79.09 29.52 30.49 64.42 31.11 15.04 0.57 96.88 82.39 94.69 10.88 6.97 26.64 46.53 30.08 28.73 55.73 0.38 14.88 93.73 38.47 88.72 28.41 61.79 57.68 94.84 78.36 60.01 18.96 76.42 91.89 64.40 36.49 34.53 46.21 1.70 13.38 19.76 99.50 45.49 46.69 70.51 46.18 82.37 22.98 96.37 86.53 79.87 8.04 -40.47 95.19 21.05 82.44 72.73 99.68 46.04 66.43 39.09 35.07 14.34 28.53 0.39 96.10 57.12 63.16 92.27 25.47 65.32 22.00 23.48 0.47 50.70 28.19 5.35 13.53 61.97 46.16 17.97 63.72 28.15 19.73 62.22 94.15 92.89 2.66 62.44 31.78 1.87 76.39 15.67 9.24 28.34 26.10 36.06 10.43 58.35 9.94 64.14 57.07 15.31 48.41 59.44 82.17 60.69 3.58 12.47 92.54 44.06 66.55 97.02 10.63 51.68 96.59 56.02 9.49 39.26 64.66 45.16 19.63 80.15 33.18 85.63 5.34 58.42 51.04 17.85 51.96 54.27 96.73 22.53 23.18 28.89 29.61 85.08 63.56 48.42 91.94 51.74 6.20 8.86 43.53 97.13 43.25 31.48 82.72 59.94 44.00 1.29 27.19 -58.09 11.01 54.98 44.74 28.31 13.17 37.73 38.14 59.96 47.20 99.37 31.24 33.17 51.96 94.89 77.76 98.23 30.39 5.86 84.74 87.26 58.85 93.17 33.98 80.38 39.70 54.85 47.22 57.54 24.31 24.91 98.76 67.13 83.44 81.46 0.05 49.72 91.33 93.14 64.66 51.64 98.40 96.37 59.06 94.65 99.75 81.12 85.45 19.06 52.61 28.32 59.66 44.73 38.88 77.90 47.72 0.48 83.13 59.44 83.51 54.75 92.44 88.64 74.02 27.48 48.47 65.54 83.74 18.72 38.27 80.54 91.83 59.71 51.75 38.78 59.09 66.29 83.80 67.69 41.67 59.37 12.60 64.95 14.34 29.53 18.75 29.28 58.20 44.20 14.85 8.74 89.41 78.17 29.75 3.13 70.49 20.27 31.39 53.96 21.24 -50.41 32.09 37.19 62.87 69.90 89.26 37.32 41.02 73.38 7.17 33.13 22.08 96.23 85.71 34.05 10.11 99.64 3.17 57.72 1.05 68.85 63.41 35.07 76.62 39.46 31.10 63.73 27.68 75.17 19.12 60.08 27.65 28.52 90.15 28.03 33.09 34.26 81.07 32.71 79.04 6.37 94.73 87.20 57.81 88.11 30.52 5.24 98.42 18.45 83.80 13.69 56.69 86.21 84.13 19.16 19.47 38.81 60.14 80.26 87.81 46.21 6.60 84.49 86.39 55.49 33.14 7.01 56.30 36.99 7.18 1.54 45.91 46.93 91.98 59.55 42.91 92.06 11.80 30.01 67.15 90.38 89.50 40.98 62.47 21.34 99.80 90.11 15.32 47.87 35.19 14.02 75.94 12.97 52.99 39.34 56.74 32.71 93.24 50.36 94.05 -86.88 78.34 69.50 55.93 79.17 58.25 42.87 25.74 81.27 36.57 4.23 5.30 28.56 29.23 71.73 87.11 0.28 29.33 89.91 48.81 78.88 26.65 27.13 26.74 35.67 77.89 39.41 42.85 58.01 19.43 2.39 65.18 45.47 37.12 55.63 11.41 48.86 48.15 73.99 24.85 11.94 27.62 73.73 83.74 12.83 57.55 3.90 59.44 50.50 20.21 55.29 15.82 40.59 94.61 59.66 40.33 54.00 82.00 26.08 86.74 26.96 52.58 34.47 95.73 12.17 98.09 5.07 63.17 1.49 98.01 34.54 90.20 93.78 86.27 57.40 55.74 45.48 1.56 99.82 14.10 35.23 76.64 61.53 2.50 67.32 70.01 56.44 83.59 65.03 53.89 18.39 33.76 42.82 88.26 98.19 50.57 12.04 74.82 20.10 81.92 -45.36 30.52 40.36 45.93 2.27 25.54 14.60 66.91 81.78 44.35 85.20 51.81 37.27 12.13 42.96 75.22 14.48 1.55 69.81 75.13 43.22 69.31 14.61 42.13 18.98 30.78 41.57 53.34 24.63 7.63 69.93 80.29 76.73 70.24 64.59 23.93 9.88 36.01 82.29 90.43 83.74 96.10 94.25 38.01 15.30 72.69 5.20 7.92 32.19 34.53 86.00 82.94 6.08 0.22 31.50 6.84 2.43 81.53 24.76 86.25 99.77 88.07 32.42 22.09 88.94 29.77 27.96 6.69 0.23 38.17 99.08 86.35 3.06 29.69 17.97 42.47 42.89 68.66 10.18 54.42 61.63 69.98 38.90 32.63 81.93 24.44 64.21 20.74 30.67 79.72 20.26 52.54 68.32 94.39 45.96 34.14 54.49 33.26 41.60 46.97 -57.63 90.30 55.12 71.56 14.70 13.02 29.27 30.06 30.64 5.21 30.98 96.54 10.36 67.11 13.75 98.31 50.03 58.31 44.27 35.66 53.61 86.28 5.36 61.67 96.47 20.39 41.40 5.00 72.84 11.27 71.48 53.95 48.21 24.86 1.87 48.50 88.96 11.17 71.24 7.16 84.83 77.59 24.56 27.75 56.52 58.06 16.86 70.53 15.66 54.81 10.11 79.44 26.87 25.25 89.02 32.76 67.01 75.65 1.15 42.30 32.14 48.60 63.50 86.19 91.66 40.00 3.17 69.92 87.58 5.81 20.66 44.73 12.33 21.65 78.78 88.29 68.17 42.37 72.37 58.19 16.11 66.07 91.10 82.35 36.11 23.43 90.12 94.09 1.65 77.08 70.27 88.08 86.24 80.91 28.59 48.67 91.61 96.22 34.70 62.14 -22.68 99.83 38.98 91.83 45.95 83.47 38.21 84.89 95.22 85.22 7.99 18.89 65.49 53.00 27.55 41.43 57.89 69.83 3.58 85.96 87.12 66.39 83.33 64.98 46.97 35.39 65.47 77.36 52.54 0.46 12.39 11.19 50.40 59.91 35.46 30.48 16.51 65.95 2.50 80.86 60.66 63.52 19.33 59.20 74.37 53.03 96.12 68.79 81.19 77.26 57.70 37.25 12.43 76.22 11.99 31.38 76.89 4.07 30.27 82.97 31.10 18.12 36.98 83.03 86.92 73.47 70.55 98.18 93.91 86.51 38.20 76.70 26.91 77.73 22.39 47.34 83.40 41.86 87.01 9.09 65.71 88.27 51.62 84.84 73.84 16.02 76.34 62.64 16.61 55.79 40.16 35.54 1.01 32.94 94.06 11.64 14.73 64.01 26.87 0.07 -43.22 95.67 19.23 69.06 90.34 34.98 59.17 71.28 24.23 14.66 16.91 51.11 73.78 86.82 29.58 59.71 73.79 3.52 58.86 74.08 42.05 71.96 69.25 5.40 51.86 90.99 39.05 58.56 3.69 54.40 25.12 20.26 18.92 21.84 21.31 96.86 96.10 99.92 40.16 5.27 69.32 49.86 70.65 60.06 45.91 30.16 62.78 89.12 72.41 8.85 21.81 82.11 40.06 89.20 24.78 11.49 52.69 47.08 24.11 54.47 45.03 20.99 84.24 18.13 83.49 53.61 1.85 23.17 97.43 33.04 58.61 93.16 44.06 16.82 22.22 36.24 65.74 44.08 73.44 28.36 83.65 98.41 42.64 71.18 92.11 88.83 38.40 98.22 27.15 6.70 57.60 81.26 42.20 68.20 42.54 38.72 40.97 45.15 43.60 65.65 -67.18 84.46 71.67 33.24 38.31 5.49 93.00 75.37 78.10 63.79 96.04 78.54 61.92 32.30 33.55 13.18 64.14 75.20 39.18 63.20 61.29 53.61 82.74 89.20 14.84 90.24 40.28 82.85 92.80 23.90 66.77 5.82 37.75 9.54 52.24 10.99 5.73 25.96 7.25 56.22 69.45 34.51 40.58 2.49 75.96 86.54 30.77 98.41 91.83 10.97 39.68 86.32 56.44 51.71 41.92 2.59 71.63 4.04 68.89 77.80 39.33 12.72 46.76 81.72 39.15 71.02 38.09 2.12 61.05 72.62 72.87 90.40 67.44 69.01 98.50 32.05 23.76 7.34 99.17 36.89 83.15 38.49 32.96 10.00 75.97 45.01 24.83 33.23 74.04 36.88 60.14 86.13 58.36 14.68 74.43 54.46 89.87 35.63 84.76 99.87 -87.73 18.78 38.94 51.83 10.88 91.58 26.93 30.43 34.76 16.58 68.62 25.20 64.78 90.07 31.47 30.94 80.46 20.50 8.90 93.61 5.81 54.67 49.44 34.12 78.19 4.94 58.16 9.31 59.29 90.16 22.35 65.95 64.88 18.13 21.67 18.89 8.40 96.92 61.14 55.83 42.16 27.77 84.08 1.88 95.40 93.95 72.08 26.94 13.97 57.51 40.98 44.87 40.44 82.96 92.73 32.82 89.06 36.55 23.85 10.86 19.47 39.04 6.31 94.89 17.15 47.52 39.81 99.00 8.28 16.75 42.70 63.34 17.10 92.48 73.50 5.53 83.59 60.06 35.39 48.38 43.83 83.16 64.01 71.20 87.35 10.28 69.92 72.15 76.23 14.08 86.07 16.62 96.33 22.09 76.26 13.06 42.83 15.33 10.25 14.94 -22.18 27.12 90.48 1.36 77.33 64.44 25.45 36.24 39.58 45.40 54.79 40.39 26.05 41.38 83.47 52.22 11.68 96.36 15.71 33.58 57.81 90.19 21.22 62.14 78.07 45.59 81.19 34.50 71.83 88.10 98.80 1.01 28.34 21.58 61.72 46.83 31.81 29.00 73.69 98.63 55.67 68.89 61.30 80.69 76.25 84.77 1.51 68.41 15.00 13.87 49.33 83.96 84.57 55.65 61.73 29.25 73.51 21.29 59.41 63.60 33.39 92.79 37.86 14.23 14.32 19.55 20.18 65.55 74.23 94.84 80.31 17.74 62.89 45.16 27.39 55.85 54.92 16.47 20.82 97.41 19.53 18.18 51.20 11.76 80.52 57.70 19.42 98.49 10.36 0.82 70.40 25.09 82.70 31.03 94.99 3.72 3.52 87.60 88.17 98.95 -57.61 62.03 67.37 84.41 30.52 59.20 25.38 17.02 46.18 68.84 9.47 47.81 8.20 65.38 37.52 19.74 2.31 26.59 44.71 50.83 32.81 0.34 46.96 92.24 65.14 66.92 71.95 32.10 87.57 30.97 37.65 53.41 15.06 75.07 33.37 81.35 32.63 7.03 71.33 14.24 75.58 85.91 21.75 83.31 53.92 2.26 11.40 83.83 90.89 77.87 98.64 80.70 41.23 9.37 93.13 38.67 27.29 97.79 34.27 2.27 46.04 48.61 15.73 88.77 66.30 86.17 90.93 66.70 37.72 34.15 25.30 47.69 61.12 85.22 48.51 34.81 9.02 16.68 99.40 63.23 15.27 14.98 5.09 79.35 86.10 81.27 40.28 56.84 79.92 44.05 68.33 73.17 32.07 0.07 60.37 86.00 86.91 39.99 87.58 83.01 -8.79 44.49 3.24 45.37 96.85 25.72 94.12 0.03 3.52 87.35 42.65 2.47 18.64 89.07 10.60 52.85 60.33 43.81 18.95 56.04 25.98 59.13 23.96 54.68 56.73 29.69 35.97 12.10 85.00 68.97 3.11 81.46 0.82 87.23 32.93 55.64 26.60 86.44 11.58 24.16 48.03 12.06 70.60 14.50 77.91 3.56 77.45 74.85 53.04 67.80 75.93 4.21 94.52 18.39 79.82 92.37 34.24 48.47 22.18 10.77 67.55 70.34 50.32 89.70 28.11 97.30 65.71 44.15 92.44 62.10 53.42 2.81 67.09 3.06 6.60 21.29 21.49 8.57 14.61 34.30 5.22 10.21 81.80 10.70 69.67 87.14 15.09 29.64 5.65 20.15 83.31 55.49 61.47 57.80 72.97 27.43 91.64 43.33 47.94 75.90 -72.06 97.75 81.41 73.83 27.94 14.41 13.57 39.17 45.58 9.45 11.83 70.77 10.51 34.94 20.65 69.22 22.23 6.60 36.40 91.48 37.38 8.42 55.29 89.97 12.93 67.72 46.18 31.32 19.23 1.95 20.94 8.95 62.12 29.76 42.25 97.39 30.53 59.13 37.98 66.69 86.78 67.13 58.14 24.81 23.03 77.85 63.06 62.21 56.63 21.67 64.15 50.63 68.80 65.85 63.66 95.84 16.70 33.10 33.49 29.46 45.06 95.78 6.89 29.16 63.80 71.80 24.09 86.70 29.03 47.48 53.54 72.69 7.52 67.28 91.76 70.95 36.28 48.42 86.70 80.57 59.51 50.80 57.46 20.90 51.66 88.85 98.98 3.72 53.40 62.47 5.44 80.97 29.77 74.82 41.50 93.01 50.03 8.34 98.47 41.81 -4.42 75.11 50.93 27.88 15.22 26.00 21.55 50.16 31.91 19.06 69.25 3.43 54.58 61.69 37.91 62.47 6.67 60.88 85.07 49.65 88.72 12.25 89.84 26.17 78.38 92.32 20.17 50.39 89.22 65.39 60.93 52.07 98.19 85.26 29.22 92.75 88.30 97.13 81.80 69.23 26.04 13.78 66.02 13.29 95.23 85.82 50.72 38.77 91.68 7.65 56.64 84.45 85.97 31.48 2.94 78.48 89.63 93.26 41.74 14.04 85.83 68.80 99.90 91.55 75.38 62.24 24.32 33.57 71.53 71.22 40.96 94.98 3.93 85.37 12.56 89.95 66.68 42.04 35.95 90.30 31.64 69.38 58.42 15.67 75.05 71.50 63.77 68.69 15.54 66.52 44.69 21.76 62.93 25.61 8.73 36.67 8.04 66.11 91.37 70.22 -19.96 69.66 79.67 45.92 79.76 34.19 77.07 6.61 23.33 65.93 77.18 97.41 81.13 70.53 77.19 39.67 65.82 96.19 61.48 44.28 57.12 70.73 44.68 45.45 35.92 44.77 96.07 14.72 13.60 92.37 18.79 88.15 54.61 5.12 31.55 29.16 41.82 18.12 73.24 69.53 86.97 23.06 17.62 11.21 47.89 16.40 75.65 54.62 17.13 57.16 81.66 68.78 63.33 87.85 59.36 19.26 66.42 62.16 66.33 85.32 40.53 62.64 5.91 59.70 44.14 65.47 59.10 68.30 72.49 18.76 14.16 86.19 15.43 24.48 33.17 23.71 42.84 86.26 27.91 33.72 27.20 75.59 19.26 49.23 18.97 95.35 98.57 67.07 33.60 27.27 30.65 89.59 42.01 87.01 63.18 40.61 96.55 24.49 17.47 71.05 -61.42 4.50 65.31 24.12 42.90 22.67 81.03 36.13 92.71 94.64 16.76 59.52 23.68 43.13 40.34 32.85 89.36 97.44 22.02 89.11 1.28 23.03 92.10 84.90 38.26 50.86 26.78 2.16 75.72 80.11 5.10 14.53 3.60 49.74 89.94 22.00 12.17 77.74 48.31 52.70 52.46 96.46 59.93 74.13 28.53 73.12 86.61 95.37 74.58 99.16 91.46 42.85 2.38 13.95 33.20 51.82 12.54 79.57 22.47 25.69 29.65 4.43 53.35 89.04 64.52 50.30 61.05 20.23 52.35 14.84 35.08 36.13 59.20 33.15 61.69 54.48 37.87 96.20 99.16 95.16 81.81 81.30 96.92 27.72 31.76 63.75 4.39 14.04 77.14 19.61 12.69 100.00 22.72 62.39 64.14 17.93 83.99 17.72 44.34 92.97 -63.79 15.03 71.09 61.19 9.85 35.03 69.70 4.68 83.81 76.61 85.34 7.99 37.20 10.26 43.75 67.91 49.53 53.87 84.31 28.86 11.57 95.58 49.18 50.71 69.80 10.64 13.58 75.48 45.34 36.90 23.69 68.80 15.33 91.05 94.37 48.18 3.00 83.07 41.07 44.05 14.76 99.74 23.68 79.00 50.08 31.66 59.75 65.21 90.90 66.86 54.70 34.87 52.68 14.13 64.95 50.25 17.72 28.19 2.56 44.24 30.02 78.18 48.62 3.44 67.83 0.62 4.10 79.25 18.92 59.45 21.47 9.87 3.20 29.94 21.31 76.71 38.80 33.53 57.05 17.25 96.90 61.28 47.15 57.37 61.23 56.25 48.77 77.36 70.93 91.27 71.42 94.44 42.11 6.24 32.96 36.77 3.61 92.96 91.85 98.91 -73.19 13.52 12.54 3.60 78.06 76.50 71.81 4.13 56.95 80.22 0.92 93.06 62.80 11.04 55.20 14.16 84.06 26.57 28.76 22.19 97.53 19.41 30.93 66.49 26.26 10.29 28.19 66.66 17.00 61.81 54.05 11.52 11.43 54.60 30.17 35.55 94.07 20.89 70.50 57.33 17.56 85.42 76.60 38.84 71.68 64.69 18.98 69.26 27.55 47.62 30.74 24.09 59.29 81.68 63.19 69.66 77.45 19.18 30.40 18.69 22.64 70.30 64.29 91.34 36.70 14.97 78.83 69.34 76.89 15.52 95.66 35.62 92.00 18.77 87.44 99.41 36.21 16.27 94.72 0.44 20.32 23.38 33.41 49.10 4.26 91.77 96.95 43.31 14.30 37.73 5.64 42.94 0.05 20.35 97.21 2.87 87.94 25.76 11.31 68.49 -38.14 49.11 1.44 52.42 26.92 37.66 76.32 17.78 73.83 50.18 55.57 50.40 60.14 2.75 14.34 80.14 86.97 59.94 91.98 66.92 20.15 61.91 12.92 5.83 53.81 23.34 83.97 90.29 43.40 38.60 24.32 47.48 83.39 80.26 41.32 27.27 92.26 57.46 68.95 0.48 97.39 4.49 6.06 87.82 25.63 87.12 36.66 51.06 68.87 92.96 28.14 59.12 66.79 14.68 83.43 12.27 56.96 12.90 33.16 52.63 37.71 93.20 49.19 31.13 95.83 84.91 81.11 95.93 34.91 89.15 11.02 67.44 54.66 68.56 87.40 3.10 86.65 73.34 21.25 93.05 43.21 81.57 37.86 71.53 43.64 23.09 57.74 72.86 78.25 34.23 56.84 87.62 39.12 65.57 98.58 54.85 91.18 78.69 65.09 85.82 -5.69 82.74 7.95 4.79 40.57 62.70 83.86 44.04 42.48 89.50 9.71 31.34 20.48 97.16 4.92 90.41 76.93 72.56 51.75 40.41 14.32 1.23 58.94 11.21 69.01 52.08 27.27 99.67 55.48 60.20 89.31 68.52 92.97 72.45 50.75 1.71 76.58 95.12 70.76 91.92 68.89 53.97 94.08 58.17 29.57 0.35 67.93 7.89 83.40 9.50 12.34 18.26 57.13 94.95 52.98 98.13 26.96 26.71 56.88 29.58 7.87 38.98 77.31 72.48 90.54 28.04 46.63 98.51 82.89 60.47 65.65 38.79 64.16 35.22 35.67 85.15 54.56 72.05 5.35 84.27 28.35 0.57 20.81 73.39 13.69 49.33 38.08 7.03 66.47 91.45 43.39 90.73 8.00 5.80 67.06 3.82 11.09 80.28 57.62 93.92 -7.12 92.13 37.47 41.82 72.95 97.04 14.80 24.36 79.31 76.49 2.14 15.96 80.11 3.56 55.41 56.27 72.97 21.38 28.59 5.31 58.50 1.50 91.93 33.27 13.98 13.05 99.67 97.56 93.26 32.49 62.78 72.03 83.09 83.52 42.26 80.40 92.08 78.47 53.39 60.85 86.64 53.24 42.08 80.23 93.23 98.07 32.32 33.43 31.49 0.95 6.46 0.25 66.37 26.34 54.80 98.77 21.69 92.67 14.94 15.40 81.97 89.70 60.50 44.47 20.91 93.89 87.21 78.35 25.66 32.47 19.27 93.95 10.18 7.92 68.95 14.11 29.56 23.54 57.30 6.77 8.05 91.83 20.00 71.90 53.15 18.58 74.87 90.69 46.72 17.01 70.50 21.01 89.33 0.40 20.74 91.65 97.50 75.83 67.31 22.95 -25.58 54.34 12.99 92.07 20.58 5.20 14.19 50.63 70.98 54.22 89.52 93.05 17.86 4.15 2.02 43.08 69.17 97.35 70.42 93.43 51.96 93.61 32.23 53.39 42.28 20.54 6.59 25.67 18.92 92.68 43.17 78.40 39.70 23.10 31.06 60.42 68.49 0.87 90.79 41.12 22.14 74.12 3.59 19.34 51.75 40.01 39.55 68.12 64.85 17.56 3.98 43.80 91.92 87.24 45.90 49.52 28.29 57.65 20.04 44.21 13.93 79.50 11.13 54.72 45.48 47.98 30.05 54.17 23.22 61.30 76.78 27.92 51.75 41.25 72.54 30.63 13.27 18.19 8.99 5.89 39.39 94.89 52.30 21.11 10.46 8.14 84.23 35.91 2.61 98.96 59.52 48.22 77.18 24.03 49.87 4.26 18.42 37.63 69.80 8.61 -54.18 80.52 89.28 6.67 14.91 23.44 88.81 92.36 88.19 31.10 73.35 88.83 51.43 71.26 76.79 82.05 2.17 95.68 22.64 92.58 58.77 75.39 38.45 26.33 24.84 36.00 97.01 88.90 70.12 98.03 22.62 30.84 36.35 34.19 17.02 59.83 24.88 67.76 3.67 78.91 75.34 2.01 21.35 5.49 62.91 4.13 71.26 31.48 44.03 16.32 54.05 51.35 20.23 86.36 41.43 22.08 82.62 11.22 54.38 46.62 67.16 93.98 53.24 87.12 59.70 69.59 16.91 7.17 61.20 67.46 6.90 20.08 9.99 76.20 16.36 37.02 73.80 44.71 42.46 5.41 25.79 43.53 50.61 26.19 11.61 96.02 67.97 75.70 15.60 59.34 8.08 19.32 45.49 27.12 84.57 46.43 5.91 44.46 68.40 87.76 -67.23 35.05 24.19 97.89 81.20 60.51 92.55 83.87 85.44 32.64 89.29 52.85 47.28 26.24 56.65 18.35 78.72 89.34 59.40 9.79 43.72 56.80 60.92 63.91 11.40 61.30 28.88 51.80 97.30 11.23 65.85 97.30 81.86 53.52 3.95 68.34 9.77 94.35 27.53 57.83 63.94 8.25 16.11 54.38 19.61 33.55 43.00 10.82 29.95 61.21 44.75 12.78 57.99 72.58 50.47 16.85 4.36 99.09 79.09 76.81 48.43 78.22 32.01 29.81 14.92 8.28 68.06 65.59 2.71 13.81 30.49 15.68 47.33 85.18 56.54 13.35 72.36 64.14 65.02 63.95 43.89 19.60 45.96 22.69 64.18 39.39 88.37 5.90 65.81 44.04 43.03 72.14 34.48 46.68 74.23 49.27 24.21 27.93 2.40 70.74 -71.82 24.63 41.41 43.50 55.13 88.15 7.65 3.11 70.93 76.41 82.65 93.69 64.45 12.32 97.89 14.66 63.22 79.84 44.68 23.53 10.47 20.78 50.94 35.38 14.91 77.90 76.19 68.92 51.83 28.14 6.26 18.09 11.91 10.89 1.72 96.45 86.03 84.89 52.16 68.21 9.89 77.80 51.30 47.18 70.11 29.25 37.58 32.76 8.30 85.82 57.60 8.04 17.08 89.69 37.30 8.51 2.25 0.54 58.60 51.97 5.31 44.85 47.42 22.21 59.09 18.56 32.00 19.74 86.42 26.33 93.33 58.59 69.72 45.42 81.68 63.28 12.67 62.24 34.69 92.12 67.25 51.30 34.87 26.15 99.72 44.82 25.49 13.19 70.68 82.89 40.54 82.67 43.42 53.13 55.89 29.21 71.27 86.12 44.55 0.27 -95.81 78.75 61.96 2.84 63.13 74.37 66.18 74.62 87.67 30.15 13.60 65.76 85.15 63.45 45.94 51.90 21.81 61.13 48.80 19.44 92.81 41.37 67.49 83.58 40.80 30.27 72.93 66.77 68.71 38.51 74.19 94.89 82.69 96.88 61.58 21.41 0.38 74.92 86.20 97.57 4.26 14.16 25.76 89.62 31.92 1.78 32.18 89.26 48.00 63.83 30.52 36.63 84.68 84.27 62.20 4.51 70.98 51.27 30.41 24.22 73.04 63.17 74.98 15.35 11.27 20.62 8.07 63.56 54.73 74.96 76.56 87.68 59.84 65.75 25.17 90.89 65.98 93.45 64.91 59.07 6.62 10.89 82.60 99.87 2.21 28.46 80.68 98.88 91.05 47.73 94.39 95.02 0.43 44.23 94.85 58.38 27.39 5.53 54.80 15.28 -45.17 38.67 67.18 95.36 68.41 30.76 50.30 33.65 32.07 26.89 51.29 18.62 81.05 23.97 39.28 16.00 86.57 12.48 59.67 43.32 67.12 79.61 51.18 73.17 72.06 44.44 28.30 95.96 18.76 54.22 29.94 48.06 16.58 11.49 43.04 68.93 56.83 44.53 5.89 75.83 47.49 54.39 43.69 4.56 37.93 10.37 69.40 89.17 32.28 84.68 29.49 63.02 58.36 26.55 64.25 78.03 95.98 4.22 84.97 23.74 98.65 39.81 45.61 34.74 18.91 90.77 79.43 45.16 72.42 40.42 75.03 81.48 56.83 44.28 21.89 99.99 89.13 65.51 98.81 19.07 57.98 53.44 98.10 10.09 33.48 76.57 94.08 25.39 6.18 15.02 25.95 33.12 38.12 71.47 79.50 95.22 23.73 86.65 79.72 29.61 -29.40 91.18 47.98 57.68 52.44 97.88 58.09 17.73 75.16 40.85 87.98 19.45 18.25 16.45 47.41 84.94 2.34 6.53 55.14 86.99 85.01 23.16 76.76 67.64 46.40 94.56 67.73 71.28 48.32 57.76 70.19 41.19 91.08 46.65 70.08 97.04 79.35 49.53 25.78 9.83 53.59 27.55 32.33 89.93 68.28 99.43 66.39 96.76 23.08 37.69 85.41 96.94 49.48 66.47 89.16 72.45 19.01 69.22 82.28 31.29 47.32 27.35 73.78 33.85 94.50 55.13 11.60 69.07 22.81 30.71 17.00 47.46 74.24 67.27 46.98 93.08 98.23 17.44 89.86 83.24 61.05 30.14 3.40 11.70 75.06 42.95 86.74 30.88 5.47 26.83 59.61 14.48 55.21 17.02 0.23 66.99 12.91 0.76 5.96 31.72 -71.87 45.59 41.32 1.53 3.57 90.01 79.29 97.85 71.89 40.41 80.42 21.11 39.31 22.02 62.65 4.63 18.42 51.94 72.90 6.95 24.05 83.47 59.78 70.93 0.88 13.15 66.62 45.21 23.83 95.98 4.88 15.25 6.60 36.94 1.84 18.99 97.50 26.92 90.19 73.72 23.84 8.36 81.87 32.88 53.84 0.00 96.67 79.26 87.08 76.83 8.04 0.91 9.21 1.85 33.18 26.63 58.46 8.35 85.08 97.04 56.15 14.72 3.37 9.48 97.23 64.29 29.91 29.79 8.26 44.22 82.41 7.00 44.89 14.22 41.97 97.58 84.98 47.30 64.76 78.71 94.19 33.29 70.68 36.65 77.74 2.68 69.67 58.04 36.96 82.11 25.85 74.99 49.16 87.61 90.85 59.54 46.32 27.35 15.04 81.52 -59.66 72.40 61.30 2.76 39.41 69.34 64.53 67.86 55.80 0.44 87.14 11.18 11.65 13.11 97.79 89.30 91.09 61.06 76.31 41.13 55.07 29.28 96.44 14.63 42.02 71.04 96.10 51.78 45.15 25.53 24.75 99.37 4.57 85.05 37.36 82.51 10.38 15.03 50.32 56.41 27.24 39.11 13.53 17.67 77.28 41.17 92.10 39.44 22.09 21.10 52.04 55.64 18.61 27.01 32.04 19.94 50.63 76.86 1.21 49.03 9.67 36.85 57.76 78.55 57.27 61.95 33.42 81.23 47.93 99.82 73.60 52.00 7.32 8.10 85.98 79.34 20.23 90.47 45.48 74.32 9.94 68.13 14.72 30.98 1.85 38.39 42.69 95.82 13.04 46.27 37.79 43.86 7.25 92.97 3.26 85.87 83.42 52.38 55.20 89.96 -90.62 74.98 6.60 12.08 54.24 46.04 9.00 31.31 96.85 17.36 57.14 23.45 68.03 10.82 61.27 98.63 17.92 76.51 43.05 35.25 37.06 57.37 59.26 92.99 7.24 82.52 22.02 21.04 99.46 58.83 80.94 43.44 26.37 20.13 86.67 36.03 46.27 1.76 74.04 61.90 31.13 65.02 60.22 70.60 62.25 33.53 72.40 57.85 87.19 59.11 16.88 99.67 35.38 41.52 84.50 5.63 66.33 39.94 11.77 11.38 36.92 52.24 54.53 21.80 85.38 34.53 3.03 39.77 59.55 91.45 41.34 48.76 23.66 20.95 40.31 25.61 97.94 55.73 38.12 24.82 42.10 24.01 25.71 84.85 88.82 78.94 2.75 18.69 14.44 67.10 52.22 59.67 62.69 59.80 76.79 17.19 63.16 8.78 32.41 80.81 -82.43 13.35 19.83 4.96 75.51 46.79 0.94 61.95 52.07 39.78 7.22 4.99 76.95 97.99 45.06 80.79 44.71 68.64 36.11 80.44 89.04 52.73 88.85 56.41 82.69 98.11 11.37 49.28 43.67 21.22 26.32 70.69 91.05 24.41 59.97 7.47 29.17 18.83 57.58 80.05 8.25 66.95 35.34 85.88 31.92 34.33 18.84 23.54 65.01 0.83 8.27 32.21 0.21 51.81 99.99 73.46 65.59 46.65 2.21 48.22 89.29 44.12 95.03 34.14 79.83 13.23 87.07 89.54 88.26 1.73 1.51 19.50 10.45 82.81 17.99 13.46 39.90 50.28 65.31 82.34 35.43 73.68 33.78 94.21 22.71 59.96 24.30 83.72 81.15 63.17 69.43 57.07 36.28 4.61 4.46 3.00 78.65 17.16 0.21 24.39 -94.39 33.59 11.66 50.54 27.57 40.40 42.77 33.70 71.37 74.22 99.32 77.35 44.23 72.73 50.38 39.42 36.56 53.37 20.47 38.20 94.19 57.18 19.86 1.46 99.89 4.42 63.82 97.30 21.64 59.15 42.92 48.13 27.81 43.10 55.81 22.70 52.02 49.07 3.16 82.66 82.25 30.66 19.32 23.25 19.33 7.28 24.78 10.56 34.67 11.38 6.27 89.34 52.90 54.58 88.67 92.29 75.05 28.83 57.21 41.97 6.38 92.95 99.50 96.69 7.18 41.87 62.00 65.35 14.11 19.64 18.64 32.62 69.12 22.90 47.07 0.44 27.52 85.26 24.51 59.45 44.53 89.61 51.07 29.54 76.24 28.51 87.91 19.30 99.50 6.04 97.73 31.39 77.41 3.08 40.67 0.56 34.12 7.69 70.30 81.28 -9.41 32.82 28.48 51.92 12.03 77.40 98.63 20.34 84.91 37.42 79.68 73.79 40.22 59.71 95.71 26.77 33.27 21.69 22.41 42.22 61.99 0.37 26.69 90.19 68.14 19.98 39.65 49.44 8.68 36.57 33.64 80.80 28.14 30.58 39.79 51.88 95.38 76.91 72.77 60.31 34.66 48.15 34.10 68.52 26.60 50.01 4.76 63.61 42.14 18.75 34.27 77.83 49.03 97.52 67.55 5.01 33.60 66.16 48.33 66.53 90.04 35.57 66.50 84.12 65.60 4.88 51.14 25.90 56.79 88.65 96.43 23.19 21.71 70.55 49.17 42.19 45.01 39.45 56.47 78.23 84.90 20.91 61.78 87.77 15.58 12.17 14.42 84.29 43.51 55.74 23.88 48.35 74.32 93.09 94.00 84.05 23.54 40.48 78.82 13.91 -41.06 86.26 56.28 64.03 48.31 31.34 54.54 27.31 50.13 85.17 67.17 91.13 78.69 68.26 55.80 99.18 44.83 74.83 93.82 75.56 71.42 7.25 68.81 64.29 56.86 67.25 94.02 9.45 29.97 23.43 26.45 7.42 63.37 38.84 47.57 22.34 54.89 81.73 76.27 7.59 11.26 95.58 50.70 79.89 66.88 29.66 0.63 42.58 30.97 48.19 73.48 66.62 13.48 14.09 62.41 88.45 64.62 54.89 1.56 10.69 43.11 17.75 16.60 90.79 94.14 48.48 99.67 36.75 46.29 39.17 69.76 89.01 41.05 7.09 37.98 19.95 18.12 11.22 15.13 11.66 91.48 36.80 13.58 75.56 17.32 76.20 87.44 35.40 95.16 90.91 0.11 0.50 82.60 14.75 20.13 30.85 23.85 69.24 55.77 64.77 -15.78 80.29 19.15 56.05 21.53 67.08 52.09 84.87 30.16 60.11 40.80 98.23 70.80 55.80 4.71 39.35 96.28 42.91 82.47 59.62 86.39 52.92 58.50 94.32 0.44 57.80 45.20 90.88 33.44 67.91 84.06 3.96 54.96 40.18 88.02 13.83 3.51 15.37 11.36 37.55 71.16 94.46 21.67 1.82 29.92 26.65 10.07 65.68 22.88 61.84 78.60 73.20 49.49 58.56 73.34 80.43 78.30 51.76 42.61 57.66 38.93 65.02 35.27 19.49 77.78 3.69 83.76 39.22 51.23 70.16 94.93 78.39 13.41 38.20 92.93 16.52 33.35 26.75 82.78 0.51 22.77 80.35 60.80 59.10 61.72 38.43 19.36 86.82 81.59 44.93 6.82 1.78 1.26 81.39 57.48 64.75 96.66 45.40 87.51 25.99 -79.39 52.09 20.62 5.53 76.96 58.97 74.52 48.33 15.56 37.95 48.13 1.75 36.37 13.57 10.35 67.00 51.80 70.59 25.82 62.27 93.11 44.55 87.41 41.60 6.39 24.88 10.26 23.37 78.42 96.81 13.05 43.60 2.41 76.43 37.62 87.67 36.89 92.23 7.05 53.58 45.72 79.07 10.27 53.75 92.43 10.09 32.23 48.66 54.44 40.13 31.91 98.21 0.27 12.48 60.50 75.06 26.40 39.79 87.30 12.52 9.99 28.31 83.17 44.96 62.51 69.25 68.84 24.93 16.93 21.13 44.96 18.15 35.59 5.89 39.15 53.33 32.79 62.13 29.84 7.83 32.96 27.76 95.37 98.47 96.57 45.36 74.57 27.66 65.09 94.13 35.18 23.45 90.51 13.45 9.54 74.28 21.66 55.98 74.38 80.68 -68.25 63.49 10.62 50.71 19.37 23.05 34.79 66.87 33.84 4.44 95.82 35.70 96.60 38.88 64.51 65.16 49.02 3.40 72.13 90.50 88.15 73.53 92.03 62.59 72.26 42.23 26.12 27.72 36.95 89.70 45.67 61.89 87.54 29.79 31.01 79.72 52.35 2.28 9.19 6.06 96.53 57.66 82.36 43.11 22.44 36.94 65.98 85.12 4.38 77.51 11.77 73.94 14.43 70.34 78.26 67.70 42.89 42.49 67.97 86.91 53.71 22.46 58.45 88.24 26.92 82.25 70.91 25.25 16.59 18.50 55.27 40.13 76.56 82.99 56.68 52.94 21.05 18.04 41.73 43.52 44.32 88.07 8.40 65.23 43.10 21.46 59.12 68.11 37.80 86.97 31.38 14.32 7.44 0.11 60.36 38.54 69.27 84.42 12.74 75.70 -96.31 29.08 58.38 9.15 42.08 2.56 30.08 7.92 58.55 85.14 1.33 85.14 96.94 94.68 51.03 78.13 27.39 29.12 52.79 25.34 68.01 34.04 93.09 96.16 60.32 16.26 46.46 18.59 69.63 55.62 80.08 68.56 68.04 93.49 57.01 10.35 83.00 28.93 43.87 61.22 9.44 51.87 45.13 40.90 97.46 13.99 37.32 52.29 37.84 28.54 41.47 16.54 56.44 25.01 2.78 8.58 5.88 65.86 0.43 85.01 85.80 16.56 82.33 64.44 11.06 56.76 39.46 62.31 87.93 7.42 56.08 9.12 36.17 39.58 63.69 4.17 84.03 39.53 34.24 40.27 76.29 19.97 5.78 26.35 4.87 50.57 23.11 20.34 97.95 21.59 82.62 19.92 8.52 48.37 90.06 57.02 0.49 98.03 52.99 59.55 -54.62 53.81 8.19 33.90 1.89 11.58 70.52 98.61 34.11 60.45 99.23 37.30 72.39 34.34 77.16 53.74 86.88 63.41 1.99 19.91 58.45 61.03 45.65 20.10 83.03 46.27 80.82 93.54 5.40 22.17 69.52 93.52 80.48 98.03 46.79 67.94 39.02 51.94 37.12 4.83 79.55 12.36 67.34 18.73 74.22 70.89 87.42 74.91 22.28 85.31 85.00 82.34 62.50 92.98 95.07 96.29 33.99 69.23 99.38 34.85 19.81 76.38 69.93 60.29 39.71 24.73 30.61 90.77 56.72 21.28 14.64 80.48 50.73 41.03 75.13 35.41 31.39 49.62 20.29 2.06 53.56 99.87 34.28 97.95 44.03 92.81 65.66 53.12 78.57 98.03 46.34 65.15 37.93 12.98 62.32 69.72 86.92 11.65 20.02 38.93 -20.36 15.83 71.75 87.45 95.82 25.56 4.03 17.72 56.42 9.26 89.19 29.12 40.87 4.18 58.30 99.87 15.71 18.10 7.00 48.99 3.77 94.92 36.93 55.46 87.64 10.89 2.96 29.70 79.58 13.46 38.50 61.96 3.94 82.02 23.78 23.72 88.16 83.07 51.32 62.81 81.32 20.08 53.22 37.38 9.27 66.21 14.06 83.95 68.24 66.25 52.32 9.93 14.39 69.05 43.48 65.28 20.62 79.15 11.71 15.38 53.55 83.56 96.50 7.12 73.70 45.61 63.50 96.05 55.21 36.65 17.10 56.49 44.87 19.06 55.21 44.04 30.10 82.65 14.01 88.99 95.81 22.29 23.56 86.58 51.15 19.55 4.06 98.47 87.06 34.07 78.07 93.23 39.62 46.42 80.84 59.76 7.64 22.80 62.50 70.59 -4.22 77.27 19.75 77.90 90.43 67.93 73.06 58.28 46.95 76.66 36.58 93.51 65.25 41.66 52.56 13.52 14.34 14.62 83.19 51.28 32.94 3.27 72.26 29.56 8.11 22.63 13.84 54.21 42.06 46.36 20.07 87.58 3.47 0.24 93.28 83.41 98.35 24.87 28.12 29.78 48.99 33.25 4.58 45.70 20.06 59.53 81.23 49.79 75.79 47.20 29.68 62.05 45.17 21.77 10.78 38.64 32.06 75.45 90.54 94.72 0.32 81.76 5.37 62.84 56.05 96.26 20.52 73.24 27.23 93.18 64.93 65.93 79.35 87.94 49.35 77.90 22.85 23.35 77.89 30.55 18.02 15.72 51.92 32.91 84.95 90.09 47.27 15.57 77.22 20.87 80.09 16.40 6.87 6.22 37.32 26.13 22.44 98.96 60.06 99.27 -97.53 59.11 85.65 61.33 21.51 48.64 57.43 78.00 93.70 51.72 42.23 4.15 38.03 18.86 9.44 3.87 77.55 26.48 57.21 61.02 13.84 51.20 56.57 88.86 49.35 35.16 53.65 52.30 95.15 59.39 14.48 52.19 6.57 19.33 60.20 85.06 94.80 5.64 52.54 33.38 25.91 1.27 45.88 73.44 12.36 34.81 60.29 13.75 84.24 94.87 4.42 69.33 81.24 42.17 91.93 2.80 99.27 97.13 1.05 54.86 7.54 63.55 44.44 37.44 88.19 31.29 4.78 39.98 16.49 98.75 5.30 21.67 27.30 68.25 3.25 77.92 33.32 23.86 51.65 4.22 85.94 23.13 36.70 42.17 43.31 66.20 23.06 23.64 15.02 15.57 62.43 5.42 86.98 24.63 1.55 80.70 72.44 36.12 3.44 58.97 -14.48 70.04 51.30 91.82 84.82 62.40 35.66 13.42 27.93 58.81 78.93 25.01 91.37 32.36 18.51 66.92 44.15 65.83 0.79 78.23 85.70 20.20 8.90 74.86 97.50 75.10 39.94 66.99 3.51 93.84 36.82 35.90 53.87 33.21 41.86 45.22 96.31 89.12 55.89 96.82 71.08 91.04 66.24 6.71 2.36 88.69 83.63 39.23 86.49 30.02 87.58 96.30 23.37 61.38 57.84 84.23 60.91 41.93 2.97 31.07 95.01 72.56 25.74 24.45 79.30 62.31 95.69 59.70 1.67 9.43 83.29 34.11 83.53 3.05 90.37 9.97 71.51 83.99 29.74 5.77 63.48 4.75 13.16 95.06 17.45 90.26 7.87 32.80 74.36 15.69 0.68 60.62 49.57 96.45 11.56 15.02 90.83 73.07 43.89 8.94 -28.49 74.78 53.61 70.48 1.29 37.49 79.46 73.39 82.26 62.05 11.21 90.98 33.04 95.44 82.83 98.34 71.55 61.25 13.75 76.18 74.77 60.34 75.41 14.49 41.05 76.66 29.90 30.94 98.74 90.84 76.58 88.80 17.84 23.24 79.27 76.31 80.48 96.11 62.41 18.03 75.78 67.48 72.14 83.14 54.42 52.85 63.42 53.45 37.07 63.35 2.05 69.38 9.49 28.95 71.63 34.57 61.66 21.85 3.17 39.73 87.54 19.63 23.54 76.68 45.89 11.53 17.56 32.82 10.05 3.77 15.27 98.43 10.63 38.94 37.35 99.74 45.63 94.34 16.66 79.96 53.38 37.28 68.40 37.21 64.51 22.72 81.15 35.72 95.35 35.46 31.85 54.65 30.81 21.20 27.88 79.29 63.99 8.73 62.88 75.74 -83.20 90.69 51.43 89.32 16.81 71.61 99.42 98.85 32.92 38.57 56.82 52.81 88.77 6.53 57.92 4.94 50.44 43.08 1.71 59.54 51.37 23.58 40.09 77.05 99.24 59.03 68.28 57.72 67.97 52.07 85.35 35.75 2.25 16.19 77.91 62.78 21.90 43.14 6.26 83.93 61.86 51.15 75.70 18.50 64.15 62.21 9.14 89.48 49.10 81.23 94.39 24.95 77.14 67.41 68.62 1.67 82.49 8.52 4.08 19.15 86.52 70.59 70.91 38.19 58.70 18.02 79.68 71.05 74.69 34.95 3.58 47.09 3.99 63.17 32.97 41.03 36.84 57.24 89.28 10.89 75.85 64.62 85.00 79.42 3.65 39.51 53.54 68.90 47.17 52.20 62.33 2.05 5.70 60.05 23.37 37.89 73.51 27.14 34.54 12.31 -36.49 40.19 79.79 99.39 96.99 95.56 11.03 94.08 18.01 19.12 12.03 97.61 41.36 56.81 12.24 86.10 44.64 27.86 1.28 94.51 44.16 66.13 41.25 93.44 64.80 31.03 13.64 47.32 20.64 63.07 63.07 93.15 47.78 33.56 42.90 39.66 13.84 17.96 37.52 8.89 62.70 52.84 74.04 21.54 28.36 61.68 39.80 22.60 97.70 70.67 88.27 38.74 78.96 78.81 39.36 70.97 56.37 49.97 84.74 76.90 21.06 86.85 54.00 1.10 73.79 66.12 39.40 92.33 26.28 19.53 66.46 76.05 69.22 8.73 25.35 88.67 64.97 86.04 20.86 27.16 39.31 17.68 24.23 82.77 10.81 77.31 89.05 46.73 65.65 33.81 50.32 37.98 26.27 67.25 19.31 0.39 50.16 22.56 19.86 98.86 -97.97 46.99 74.19 7.62 73.24 8.52 71.63 73.73 82.51 65.91 50.27 58.51 38.90 50.04 50.48 57.04 18.54 16.60 80.28 95.99 84.92 18.66 20.29 11.85 84.88 88.23 44.79 62.29 68.30 44.67 36.55 10.87 82.50 26.02 64.41 7.86 92.26 93.97 14.95 59.66 57.72 63.30 51.12 0.65 79.41 36.23 51.61 6.71 77.71 85.36 30.79 70.31 48.82 85.83 21.34 83.50 98.22 45.93 53.29 9.01 28.42 53.57 78.38 65.62 93.79 14.02 28.17 57.81 82.12 6.94 56.77 30.97 30.94 42.65 56.17 81.58 79.15 29.52 57.08 40.23 69.87 76.76 85.12 88.59 28.74 37.38 72.07 37.55 22.15 16.76 30.72 95.51 55.85 59.58 33.14 86.95 78.91 37.24 23.56 41.81 -84.80 36.55 61.20 82.96 62.27 20.16 45.13 85.16 26.84 93.84 7.37 73.85 72.81 77.10 78.05 29.73 37.29 88.95 50.91 51.12 77.87 49.00 56.82 83.77 62.23 1.25 42.79 85.97 2.52 76.99 41.11 68.29 97.19 96.77 8.67 99.92 42.72 83.39 27.29 45.14 15.52 19.07 66.07 8.33 35.71 11.37 62.14 25.48 90.68 93.01 15.81 91.38 66.98 27.58 85.41 11.58 16.89 38.23 30.51 42.80 3.98 31.99 0.99 41.06 88.45 23.59 39.97 22.73 29.87 28.01 67.54 48.73 27.81 98.61 91.51 29.03 24.00 43.34 94.45 58.62 78.19 16.45 2.13 13.37 32.59 7.37 45.43 33.72 66.65 76.13 75.31 35.83 89.84 46.43 48.54 41.69 65.47 41.41 89.53 76.84 -6.23 45.09 32.49 67.00 32.97 6.24 14.14 91.07 0.90 78.94 97.52 84.34 16.52 25.37 95.43 13.63 5.91 46.28 95.64 90.66 44.27 33.12 75.13 27.59 74.50 14.89 43.32 15.83 15.32 8.00 57.95 52.95 59.05 22.16 32.08 70.62 96.15 69.28 88.06 25.36 95.41 27.03 15.45 49.65 7.47 92.39 94.79 0.35 60.42 5.55 91.61 27.68 52.34 78.04 59.51 41.59 41.02 54.60 8.48 91.49 80.80 67.85 67.67 59.16 30.75 86.33 33.40 16.15 9.53 13.57 5.69 52.37 8.97 5.93 3.86 20.12 20.26 51.28 84.27 68.40 31.49 12.13 56.14 68.66 36.32 77.92 42.17 12.07 12.97 88.89 67.98 32.17 33.55 93.34 54.99 42.48 12.34 79.23 86.64 84.68 -67.96 42.89 43.80 41.34 20.37 37.66 53.71 19.57 98.78 72.92 59.42 46.38 79.99 16.08 51.24 49.42 97.85 69.81 61.28 98.11 63.58 40.50 60.93 76.89 96.12 6.59 37.89 49.11 84.34 60.37 37.92 35.42 86.72 16.20 1.66 61.13 25.00 41.43 13.46 95.80 54.99 15.10 44.60 38.66 39.25 24.62 74.36 88.69 62.90 0.46 35.66 14.99 7.77 0.14 42.83 20.72 40.86 18.02 10.34 93.41 10.88 62.27 41.94 53.75 3.36 77.12 85.01 11.92 91.09 78.00 16.37 85.41 20.10 85.57 40.92 54.37 13.79 20.30 85.17 8.75 74.84 30.68 73.12 32.52 56.36 36.83 98.51 3.48 50.70 73.93 54.62 17.80 95.48 85.87 85.99 20.77 51.34 31.86 47.08 61.44 -91.19 78.36 39.80 97.57 27.31 17.31 54.08 43.39 30.09 8.33 89.58 10.52 40.22 35.39 80.72 59.99 19.76 66.98 43.65 12.83 25.96 62.15 23.96 38.18 20.03 10.95 90.20 44.38 17.06 72.51 60.63 26.03 55.53 78.33 70.73 77.48 69.84 60.81 48.76 5.23 11.03 44.97 85.82 6.97 85.30 72.20 73.14 62.48 95.86 47.40 51.84 41.36 58.82 68.27 44.52 98.46 97.11 18.42 15.36 2.87 5.67 13.62 40.85 36.51 71.23 86.93 82.42 37.87 14.15 14.42 69.03 38.28 99.48 44.13 0.23 75.39 5.39 83.20 62.54 54.45 44.36 90.10 12.07 57.50 52.60 38.16 34.07 22.83 38.18 55.45 14.02 80.33 49.63 65.70 96.81 24.48 44.45 23.45 62.25 24.62 -26.68 75.79 34.02 9.62 55.93 19.02 66.59 60.28 31.13 9.14 10.05 20.01 68.18 2.11 66.77 70.69 25.17 13.89 91.25 24.41 57.77 84.89 34.58 65.48 96.71 60.45 18.40 21.36 76.42 22.03 77.82 84.68 10.94 32.00 96.59 28.46 70.79 61.60 27.18 10.33 64.92 82.53 80.35 42.35 92.38 73.23 34.80 6.53 24.49 70.30 53.59 14.52 28.35 42.49 47.09 37.77 8.59 80.40 20.13 83.22 31.48 37.23 53.64 4.10 0.28 64.46 71.66 38.90 43.41 19.80 66.88 66.74 18.20 59.81 67.64 89.90 93.61 50.29 53.33 73.04 37.70 67.55 4.33 17.69 87.02 89.37 79.25 17.00 63.10 40.78 40.74 16.11 79.20 15.16 43.46 57.36 37.10 40.03 65.40 64.13 -11.32 89.88 30.08 21.62 21.55 12.56 5.69 57.42 12.03 88.55 64.71 0.63 82.06 93.27 31.09 50.54 85.92 45.15 61.76 41.13 45.89 52.41 79.10 1.95 80.36 46.09 57.36 22.94 46.05 23.94 40.85 46.00 12.14 51.17 48.57 74.45 67.69 58.87 51.17 35.54 65.17 38.56 26.30 86.43 91.56 17.54 15.78 62.27 39.38 34.92 83.86 57.32 68.95 72.84 62.22 17.11 16.23 3.72 35.10 91.06 48.87 81.32 35.17 60.79 27.46 49.21 38.95 73.67 14.96 92.86 99.77 83.61 98.72 21.40 49.43 16.48 21.92 19.53 49.91 27.15 59.85 69.92 34.40 99.90 95.63 47.86 44.34 31.41 53.69 24.99 8.31 60.30 87.94 22.72 14.53 93.88 38.32 63.47 23.18 62.74 -80.67 12.63 63.11 55.66 40.90 98.00 90.91 98.58 95.92 26.03 98.08 31.67 0.27 1.80 95.74 91.02 64.87 59.86 98.12 61.50 15.01 3.95 45.97 17.96 57.27 74.68 98.17 55.27 56.12 40.77 81.96 5.00 24.70 17.86 59.40 38.86 29.24 71.49 38.56 65.08 74.48 94.61 55.82 32.82 59.38 33.16 50.05 24.31 53.87 66.15 41.59 56.33 5.08 42.97 53.61 80.69 43.19 1.73 12.75 65.86 69.55 75.31 35.69 88.73 28.07 22.02 4.08 21.08 61.27 64.06 82.70 72.52 0.23 66.47 66.49 9.39 77.43 56.18 76.18 36.38 3.59 88.81 39.27 65.62 69.45 24.40 95.73 6.91 70.60 0.34 51.52 90.33 5.36 25.73 79.15 34.71 42.02 10.56 82.58 72.91 -37.75 24.02 81.36 88.13 95.01 46.28 13.86 75.94 56.76 52.29 75.92 44.39 44.54 44.77 21.43 73.06 43.05 78.75 36.68 11.31 83.62 63.58 54.12 40.80 84.86 62.99 8.44 65.70 56.83 93.26 59.51 30.61 56.75 2.47 60.98 14.07 54.45 42.06 48.08 48.50 8.07 90.38 52.37 66.81 83.18 68.36 94.46 39.03 40.87 28.30 24.89 45.50 7.09 92.15 63.31 95.47 61.57 41.14 84.13 47.86 6.81 66.62 10.14 57.37 62.54 46.30 54.16 98.35 7.39 91.69 26.84 82.16 9.06 97.73 67.06 66.41 24.82 42.45 63.24 2.44 65.66 51.10 32.08 71.76 74.34 25.53 30.91 26.57 50.59 68.57 40.28 16.73 41.02 29.50 36.75 32.37 54.58 70.06 99.05 58.01 -77.01 39.06 44.40 83.71 16.25 99.24 14.69 78.60 50.14 96.60 73.73 87.20 7.62 34.87 69.89 27.95 74.24 78.36 85.67 63.70 79.55 80.42 38.51 29.93 22.55 57.95 96.21 99.65 55.99 42.41 80.53 63.75 80.26 22.34 11.78 59.30 54.95 60.25 79.49 78.16 7.62 29.46 36.66 94.61 6.81 68.93 22.33 65.03 58.99 53.67 82.11 47.97 0.20 36.61 6.50 57.18 84.27 91.28 71.28 53.65 18.66 78.33 83.01 50.02 94.27 82.05 61.95 57.01 18.34 62.96 58.28 64.89 72.16 51.66 73.16 72.27 91.20 88.71 62.19 13.58 53.09 72.90 75.60 70.57 40.84 80.48 40.28 22.90 69.73 59.31 67.91 85.68 73.38 80.25 19.14 49.52 81.03 25.93 31.97 83.32 -76.12 74.65 31.88 8.26 94.54 90.17 17.01 13.10 72.09 74.81 77.48 14.52 59.96 72.27 90.07 80.60 33.16 50.40 51.04 97.22 31.32 67.99 30.11 63.02 68.32 40.63 52.22 68.05 92.82 42.03 39.51 92.69 84.64 42.09 11.46 80.11 80.72 16.43 1.08 99.37 23.32 96.11 3.08 59.51 31.23 99.65 76.20 20.04 99.59 55.66 65.08 27.09 64.59 92.75 35.73 91.77 51.73 51.01 6.99 89.00 74.28 3.28 61.65 46.99 2.74 16.01 32.31 96.95 92.42 55.75 64.30 16.05 36.01 51.26 82.32 90.37 54.27 25.56 69.06 66.81 62.65 0.22 63.35 55.42 74.22 63.97 46.44 34.81 11.28 34.46 89.38 44.15 61.63 3.30 86.52 20.40 9.38 89.35 67.48 58.67 -3.84 74.64 43.28 70.62 17.14 6.55 39.59 7.13 19.06 53.55 64.37 82.89 53.58 3.20 97.39 89.44 40.76 56.91 42.41 3.51 3.22 34.99 10.61 28.52 14.59 6.07 75.52 23.46 43.11 99.42 91.35 99.39 85.66 59.06 66.38 10.98 57.05 43.83 99.14 83.22 92.58 88.18 10.76 31.38 70.43 27.74 73.04 60.86 70.68 74.61 34.17 33.70 42.67 74.45 97.99 90.05 33.21 54.32 48.95 69.97 39.08 51.73 68.20 15.95 99.94 99.45 15.31 41.03 40.20 72.36 18.93 44.44 71.25 8.63 84.86 71.69 70.86 51.09 25.21 36.81 72.05 53.87 66.13 30.48 42.44 9.63 74.01 31.82 98.72 44.04 29.41 69.16 3.33 69.62 58.34 32.50 53.55 3.25 97.78 14.34 -23.65 61.88 54.13 78.64 18.35 67.13 82.62 19.89 98.89 17.72 33.23 85.64 53.75 27.63 31.38 23.52 58.18 3.07 21.10 48.78 89.76 57.53 52.84 68.29 96.18 87.42 30.20 61.20 82.32 82.30 13.34 19.31 12.48 29.33 55.08 76.80 9.41 31.82 25.31 17.10 43.55 25.92 5.38 37.89 99.98 58.06 90.49 34.55 63.26 81.51 96.26 28.61 0.61 7.31 64.67 61.33 25.46 10.71 42.85 27.79 30.64 50.30 8.94 81.31 34.41 43.97 15.12 78.49 70.94 36.84 70.37 37.62 86.80 69.96 62.10 62.98 83.09 12.68 25.70 41.33 18.52 10.10 69.89 27.92 74.67 2.84 15.28 5.87 4.93 5.33 78.60 55.83 21.27 71.44 68.75 91.95 36.98 79.33 5.19 52.65 -65.44 97.41 66.85 25.42 71.36 64.75 47.55 92.10 67.56 98.35 27.61 84.58 85.03 78.83 5.16 59.15 62.47 43.26 7.56 59.91 51.66 65.79 85.29 98.34 6.04 49.45 99.53 38.94 15.72 63.64 4.20 39.92 48.27 30.01 42.51 82.53 28.30 5.68 27.42 18.76 7.31 50.28 77.82 85.11 70.38 48.43 28.48 6.61 18.80 7.34 46.40 59.68 90.40 23.01 92.22 33.33 71.70 99.74 31.68 76.75 40.35 55.51 74.37 50.42 91.58 37.46 68.34 56.15 14.39 24.62 93.34 71.22 17.11 74.87 16.05 70.79 59.31 94.91 55.64 87.23 12.25 38.23 27.33 70.15 96.91 38.18 39.90 4.03 24.64 61.22 49.57 43.80 84.02 36.63 52.17 40.77 76.02 75.44 85.68 35.18 -85.03 34.40 94.97 46.80 48.49 92.34 50.87 57.08 73.08 57.01 3.06 91.50 68.27 79.71 8.76 67.42 28.01 49.57 9.23 5.46 96.63 79.65 97.25 3.81 11.48 96.98 34.66 37.25 38.79 39.63 51.95 48.19 2.12 93.42 85.76 46.21 5.34 76.97 56.62 68.03 94.52 6.22 16.79 83.40 70.77 70.82 41.22 93.92 14.11 97.50 86.87 87.46 93.54 73.30 85.22 36.43 85.99 69.16 2.03 45.42 87.78 51.39 97.99 32.18 79.18 33.56 74.10 56.46 44.31 25.00 89.91 36.53 17.13 88.08 45.89 70.09 75.23 45.55 24.58 44.78 41.79 5.39 80.15 84.99 7.00 66.68 39.94 31.42 4.11 31.74 8.29 73.07 81.97 7.61 77.05 78.23 21.26 86.59 2.74 83.93 -60.97 87.64 64.99 70.48 42.50 51.19 58.13 81.30 32.58 91.82 76.10 83.69 8.15 66.35 36.27 87.21 99.78 90.90 69.22 74.08 35.91 96.57 13.95 23.74 85.42 94.93 4.67 71.03 7.21 22.73 71.82 17.96 17.55 72.91 1.02 41.44 3.62 18.07 60.99 79.62 13.47 43.06 38.11 7.36 74.39 35.93 63.63 27.50 76.90 0.23 48.67 1.19 81.68 3.57 61.71 90.36 28.76 73.26 18.14 30.55 68.64 92.90 10.92 24.80 54.11 63.97 30.28 2.15 38.15 19.45 55.27 3.51 5.81 48.65 16.52 27.83 12.18 9.40 45.21 97.84 60.94 47.62 92.35 68.78 62.75 85.90 40.08 82.76 52.31 22.58 3.77 62.58 36.61 97.83 54.15 76.10 95.02 89.84 46.47 73.62 -16.44 98.87 95.91 20.39 11.36 0.98 49.26 4.12 32.01 69.02 77.69 27.66 90.31 23.41 34.65 92.87 45.09 14.62 17.44 26.69 67.21 15.40 63.30 29.35 44.07 32.10 74.93 23.17 68.65 46.89 28.87 15.65 95.53 65.70 43.69 74.90 30.04 15.67 13.67 80.53 26.29 67.96 70.60 35.50 96.46 33.65 56.63 90.81 44.06 96.00 94.74 38.15 34.13 25.57 54.56 53.15 84.70 20.35 79.87 24.55 70.37 7.76 9.03 60.98 88.55 40.52 82.06 3.38 38.00 61.57 64.79 17.69 68.74 35.34 34.91 83.37 33.77 67.98 39.62 72.78 48.84 78.29 83.07 53.75 86.52 8.34 24.67 83.67 63.58 96.60 85.16 28.07 52.35 47.92 86.98 62.80 77.25 57.83 15.24 80.95 -56.48 50.59 58.10 72.21 11.01 70.43 41.10 84.82 98.63 66.42 36.22 31.46 55.10 47.61 94.39 26.84 79.08 11.78 8.14 97.28 19.05 21.80 63.56 57.14 31.56 32.81 23.71 63.31 57.31 36.07 96.15 76.19 86.81 12.33 68.44 14.16 17.53 25.65 92.46 25.90 70.13 85.55 41.66 83.28 3.41 64.88 73.65 85.00 82.32 53.96 56.94 51.37 7.50 46.99 53.79 45.01 35.49 61.95 67.42 7.70 71.85 66.21 24.69 71.91 51.78 59.97 85.43 86.17 47.69 23.37 48.89 84.39 8.25 55.55 6.74 65.43 92.02 46.57 61.29 49.37 81.83 72.91 53.50 68.82 42.11 66.06 26.69 87.47 20.53 86.30 38.16 26.66 98.70 31.10 13.00 91.12 22.51 8.51 44.02 64.11 -11.30 72.42 51.35 98.59 51.67 18.96 82.73 24.78 35.02 4.86 57.94 84.30 51.04 35.31 81.15 28.59 58.61 29.41 79.21 88.34 66.54 78.64 88.02 85.89 69.23 78.92 67.36 63.47 81.40 36.17 44.94 40.94 38.81 99.54 94.61 31.72 35.52 86.61 72.29 17.73 88.11 95.29 69.39 43.43 93.87 22.66 62.48 4.57 25.70 12.05 78.62 92.00 2.79 0.37 0.62 44.56 64.78 17.58 41.09 57.25 31.29 27.99 17.01 39.53 53.95 9.23 8.46 74.08 16.48 60.01 80.92 80.72 84.80 43.45 79.68 79.10 31.80 38.18 70.48 44.06 10.03 9.66 26.67 79.62 41.07 44.73 11.70 51.73 80.31 48.07 76.68 86.57 41.42 42.38 62.50 60.97 35.08 7.22 8.99 81.50 -46.80 66.97 56.87 56.65 1.64 92.26 51.33 1.17 21.86 82.65 43.54 66.39 1.26 92.40 54.64 11.87 7.61 60.84 40.25 7.91 22.47 17.26 80.65 33.04 31.63 34.98 4.09 40.38 2.19 74.41 59.74 85.97 38.26 39.21 20.58 75.10 56.64 48.38 72.06 80.91 9.04 21.92 61.73 86.77 57.40 43.71 15.05 85.33 29.93 68.19 16.03 66.86 85.79 14.17 21.10 78.80 10.94 82.93 97.01 41.64 60.33 89.60 16.46 94.93 48.57 59.09 50.22 76.49 69.98 51.79 71.22 65.65 92.78 54.32 29.92 64.85 49.85 28.77 37.94 28.84 48.27 71.19 38.95 61.00 98.12 15.42 62.64 48.84 60.69 81.34 52.84 35.36 96.40 13.31 19.43 94.87 57.31 94.54 99.89 28.82 -25.67 97.59 0.46 49.54 15.85 20.80 29.91 90.53 93.05 72.43 99.84 28.35 47.16 95.42 29.83 28.19 91.18 4.86 73.83 59.37 61.80 44.16 78.34 88.04 72.94 17.36 21.36 95.92 98.86 35.07 69.72 17.59 37.61 41.55 51.88 58.81 57.42 18.97 12.71 63.59 3.21 66.26 34.20 30.52 75.08 1.52 62.04 54.23 0.86 21.82 12.30 73.18 97.45 99.98 63.94 31.67 83.47 8.47 4.44 76.22 43.00 73.00 40.50 50.66 11.07 71.24 47.29 0.89 93.20 46.48 26.58 5.62 21.16 51.44 29.53 95.93 81.20 45.94 59.54 85.91 55.02 52.24 14.65 78.46 50.91 61.62 10.98 78.05 45.58 61.33 48.81 38.66 39.59 48.98 90.31 78.01 87.98 19.93 32.48 14.58 -79.27 93.33 65.69 62.47 74.08 93.16 1.19 31.44 31.83 11.19 2.71 6.02 18.00 13.35 4.07 54.10 52.94 12.66 48.47 94.39 42.87 64.23 20.76 52.61 5.30 37.31 39.55 30.17 67.52 98.80 6.14 86.72 78.66 11.60 69.05 60.11 93.29 80.10 34.77 15.21 94.94 64.80 52.16 80.97 21.57 51.46 34.06 30.92 16.49 90.58 60.98 87.43 71.26 47.62 77.44 74.61 38.80 20.31 21.62 8.48 88.28 88.70 48.91 31.99 59.37 27.13 81.46 49.28 89.51 8.84 20.48 72.60 93.14 33.82 77.35 63.47 28.55 2.33 72.25 46.00 66.61 66.42 60.55 78.32 5.66 28.09 25.18 16.93 49.82 21.82 22.05 88.86 10.02 56.90 98.35 42.47 55.89 8.46 41.97 53.01 -96.39 2.29 80.78 4.92 72.21 66.85 81.07 38.41 38.58 6.20 10.11 79.73 32.49 43.04 20.48 45.71 36.66 34.34 42.59 58.78 71.95 92.72 75.31 8.35 2.87 4.17 57.88 30.67 99.12 10.35 87.61 82.98 76.58 55.46 66.53 75.82 83.26 80.01 24.33 49.47 34.02 98.49 17.84 34.24 1.44 36.17 76.20 1.90 78.79 47.94 0.05 46.47 59.11 23.43 9.08 15.77 40.87 24.70 2.45 62.65 36.97 31.21 46.49 70.27 82.58 57.17 3.98 35.02 33.61 24.00 79.28 15.44 4.16 72.76 0.33 58.30 79.61 37.76 95.17 10.83 59.08 48.29 13.04 6.96 30.60 35.87 72.29 62.64 54.97 44.84 50.95 5.05 22.67 43.30 0.09 24.56 81.44 82.86 15.21 45.28 -81.48 61.49 24.00 10.77 2.29 67.65 63.58 74.35 48.60 50.92 62.51 68.87 99.83 79.33 32.70 26.63 26.69 90.04 58.86 14.04 85.51 84.99 91.96 3.14 91.83 12.70 5.43 69.22 51.08 58.91 88.90 54.05 57.06 76.93 1.94 64.65 92.38 15.26 17.01 75.65 62.67 68.62 24.22 51.32 84.30 31.87 34.65 33.11 19.04 42.89 43.39 70.32 4.40 8.84 69.97 23.97 81.74 25.53 99.44 18.79 65.14 56.72 48.44 59.16 6.75 50.44 16.97 4.71 85.32 89.34 40.82 18.61 23.34 76.15 78.68 89.81 42.44 68.20 13.16 23.61 74.13 56.01 67.52 85.10 62.51 47.80 46.21 17.97 19.85 49.41 41.00 87.82 54.29 22.82 99.14 63.99 34.86 1.82 95.73 68.86 -58.55 70.32 77.56 91.15 78.75 61.22 6.29 0.27 13.01 12.09 30.37 31.05 58.86 55.74 34.71 44.94 59.49 94.27 71.96 97.31 29.18 30.54 6.03 68.96 96.87 86.69 3.09 0.54 5.11 18.88 79.99 0.50 55.77 71.53 52.27 91.74 56.79 51.93 84.15 77.12 38.96 54.10 29.90 69.38 75.37 7.71 90.38 14.19 88.53 95.55 22.82 16.38 97.78 97.52 53.75 86.00 94.31 90.84 48.43 25.12 35.09 23.70 99.84 88.81 8.67 6.66 34.00 13.55 72.15 56.76 64.57 75.89 69.83 65.79 10.33 4.29 96.44 82.35 49.10 87.44 85.38 28.64 5.15 92.58 38.33 69.90 10.35 10.57 97.03 38.59 48.60 66.12 22.95 16.01 74.72 62.99 94.33 92.72 17.21 28.13 -61.86 45.81 57.34 90.17 86.84 51.73 55.55 34.90 96.93 46.90 56.51 40.49 66.33 58.44 62.88 83.57 75.14 62.32 28.67 86.43 81.94 20.70 56.11 7.68 45.35 80.15 86.81 10.36 15.59 78.51 97.60 73.72 8.30 54.12 10.42 44.95 53.31 71.96 61.60 90.54 75.40 7.93 44.73 54.67 13.32 5.74 0.68 64.54 95.22 50.63 19.58 24.85 61.04 23.26 29.75 44.47 97.71 29.49 71.73 53.61 40.78 29.93 28.02 58.23 22.31 20.25 51.92 60.93 81.15 78.54 67.09 59.06 48.72 55.14 58.38 9.99 31.70 74.87 19.15 49.78 95.81 6.22 35.86 62.27 7.67 15.33 80.99 49.23 4.16 45.39 55.05 6.17 55.44 24.93 79.31 63.05 65.18 34.78 65.10 35.25 -1.84 88.05 85.93 54.52 54.41 20.46 35.84 65.00 58.19 41.87 19.42 57.48 61.95 44.39 90.06 29.10 92.30 11.29 66.71 72.93 67.67 36.21 94.60 28.35 2.47 56.62 36.74 96.23 11.04 39.02 45.69 47.42 57.32 13.26 39.87 7.30 81.37 55.19 93.22 16.17 15.72 81.63 91.83 4.50 25.39 79.76 43.37 98.64 2.13 39.81 86.08 42.71 73.99 95.50 17.92 5.88 61.51 15.17 3.09 21.98 25.89 2.46 11.10 88.99 34.23 7.20 52.94 47.27 89.18 63.03 59.83 33.45 25.52 55.24 10.83 38.56 76.03 83.81 1.54 1.00 67.59 50.20 34.40 12.07 76.42 40.84 25.95 31.75 6.04 43.42 4.76 43.45 67.73 32.38 7.82 72.33 5.19 89.45 10.28 95.81 -38.00 14.46 48.91 2.11 84.92 77.81 96.01 96.29 27.21 33.48 34.99 6.34 77.86 29.13 72.98 83.40 19.56 71.51 20.39 27.11 92.15 9.27 83.93 49.56 32.47 92.59 63.77 97.14 67.19 85.19 84.31 87.24 21.19 52.27 78.69 30.31 80.34 36.52 26.38 72.61 98.81 83.06 72.10 78.66 92.92 94.43 76.26 6.25 49.72 16.29 32.18 61.46 17.12 24.25 83.74 16.99 4.49 3.43 41.74 83.06 41.26 44.42 60.14 81.16 76.80 79.34 65.55 97.27 30.96 32.58 77.20 89.18 28.76 51.36 70.40 38.56 62.43 13.44 2.00 26.47 37.09 15.90 74.52 21.60 23.83 4.95 68.17 50.63 61.65 94.48 54.02 29.13 23.44 12.98 21.04 93.07 30.99 37.87 21.97 32.48 -6.12 19.06 13.95 17.75 28.27 91.05 61.54 99.71 17.34 73.01 76.03 34.55 73.96 15.38 17.36 87.73 67.92 55.56 80.80 79.85 96.09 7.58 61.70 19.64 62.82 32.74 76.27 93.44 13.28 81.70 56.12 58.71 21.89 75.54 56.35 7.03 16.44 69.64 48.79 3.89 78.50 33.36 34.23 39.75 62.24 29.46 8.35 13.24 30.70 76.97 92.75 8.81 86.83 39.95 15.99 88.80 29.71 65.33 84.39 26.36 12.04 62.64 64.71 50.53 53.95 83.36 47.51 12.34 27.67 99.49 46.57 23.92 84.26 1.32 6.13 63.75 78.91 26.64 36.39 38.01 21.10 69.18 24.44 46.17 87.22 90.03 0.45 93.68 74.30 22.37 37.70 88.84 12.83 35.98 47.44 37.29 11.91 68.51 52.11 97.48 -15.92 9.22 95.75 69.89 67.98 28.30 33.74 91.97 6.24 99.20 14.99 80.75 89.96 7.82 92.18 27.47 77.17 43.32 51.25 77.18 83.02 11.98 48.82 3.49 29.33 6.86 47.31 15.25 66.96 48.50 92.05 1.00 86.87 20.54 80.89 97.52 53.68 21.56 81.49 42.00 26.20 56.74 78.07 14.35 18.81 7.88 65.90 13.93 44.05 16.04 48.57 44.33 5.33 61.77 81.96 49.56 13.78 27.44 50.04 43.32 45.44 21.88 40.85 53.55 44.68 22.92 14.75 11.96 19.29 54.13 1.29 54.84 9.11 85.20 71.71 34.32 58.46 53.14 71.88 48.09 74.99 42.87 38.89 13.42 70.83 69.32 14.02 58.20 3.54 19.08 48.15 85.75 51.00 88.18 12.55 92.19 96.36 82.42 89.40 30.84 -98.17 23.90 5.20 92.88 98.87 55.20 37.76 15.23 64.94 66.50 14.34 34.57 68.54 88.72 38.63 0.56 41.04 30.90 79.93 28.47 33.78 90.43 86.47 69.98 52.31 22.05 46.09 68.41 69.85 87.82 65.61 7.89 5.84 54.30 67.23 73.16 11.78 83.26 65.14 60.58 29.47 77.68 66.74 39.19 54.13 44.50 81.30 27.79 72.93 70.92 7.48 19.14 31.83 28.05 30.84 2.57 30.09 42.80 70.40 5.79 40.24 33.57 73.80 42.20 26.87 52.64 2.24 80.17 15.10 44.19 31.21 13.26 9.56 67.49 80.64 57.95 0.29 36.21 56.14 92.87 68.66 99.11 82.84 83.36 21.19 45.33 89.52 83.26 90.94 78.37 5.12 52.73 47.02 13.77 10.09 90.00 18.62 57.26 4.23 66.82 -90.69 74.62 29.66 35.56 68.38 25.52 93.53 99.85 73.23 81.75 28.16 11.80 80.81 31.16 45.05 95.85 21.78 82.41 16.36 10.33 38.71 6.16 81.91 28.32 77.89 18.59 1.09 27.41 32.66 10.85 56.24 16.29 87.12 50.17 49.80 64.49 15.49 10.70 91.79 97.34 41.06 13.04 29.45 76.68 16.34 72.63 43.18 74.04 31.53 88.68 90.93 35.66 98.32 89.20 16.71 12.37 48.98 93.32 29.50 45.26 32.33 44.98 88.00 46.66 25.68 93.97 94.23 60.19 40.91 11.54 31.35 88.02 43.20 86.99 48.63 76.73 81.64 61.27 34.20 61.08 93.24 43.77 30.68 87.54 70.41 59.58 19.82 88.05 65.30 92.67 86.47 67.15 9.02 8.84 35.20 92.48 49.07 59.20 98.06 79.70 -83.10 90.44 34.29 14.04 0.91 2.67 72.41 66.30 60.71 96.66 37.11 23.94 41.05 12.81 84.53 47.14 51.49 39.48 22.29 41.00 78.28 11.16 0.53 57.29 16.18 0.52 47.20 46.45 17.10 24.69 40.85 40.60 56.48 39.10 91.95 72.24 2.43 13.83 33.08 48.15 8.90 84.64 97.76 20.36 70.96 14.44 84.84 56.49 52.37 79.52 93.46 80.64 98.99 75.39 13.54 35.15 92.66 13.88 20.30 94.11 60.21 76.16 0.15 27.03 2.50 87.13 40.90 29.53 35.61 61.83 40.25 57.64 14.82 63.10 1.01 73.35 25.53 8.28 30.58 1.99 97.87 93.20 59.45 60.26 8.88 62.08 8.26 91.30 58.61 87.17 37.57 36.10 92.81 64.14 65.34 90.58 41.56 24.67 2.85 47.20 -77.52 77.91 60.41 83.06 62.65 72.55 53.40 61.06 12.67 98.45 1.57 99.93 98.88 87.56 59.12 14.50 59.50 84.84 1.19 55.74 19.76 77.01 40.23 98.42 15.30 26.60 87.51 74.38 22.76 13.84 52.46 88.02 69.61 52.77 76.25 50.55 36.90 90.83 33.79 26.98 83.90 87.04 48.39 68.28 30.35 59.28 71.04 10.86 97.55 61.73 50.32 11.98 31.47 56.35 0.75 76.62 82.91 16.09 27.07 94.22 90.33 30.41 13.57 53.07 55.87 40.69 78.64 41.27 93.37 46.90 7.73 12.27 75.78 64.88 71.86 52.49 41.37 34.39 15.66 85.93 15.56 22.44 69.87 82.38 37.76 8.68 96.43 10.29 71.00 54.36 95.81 61.16 38.92 11.82 37.17 11.91 87.87 42.88 45.17 74.93 -64.65 96.93 92.47 76.10 18.53 81.54 54.08 66.43 48.49 50.85 39.73 18.65 0.85 96.22 23.42 11.35 60.06 12.82 68.50 78.27 94.53 62.46 21.57 0.65 70.15 13.92 91.01 59.16 4.70 41.50 22.60 32.67 76.48 39.66 77.56 72.54 28.20 75.67 5.60 93.67 83.46 23.60 15.33 69.28 32.71 27.16 78.58 36.16 30.34 26.60 62.55 58.31 89.65 71.79 41.64 64.86 28.39 20.58 38.06 60.10 75.17 60.98 86.83 80.38 88.69 32.78 72.35 43.91 89.64 49.19 62.77 2.41 91.28 16.01 62.87 90.39 33.10 98.78 74.67 54.46 74.37 56.27 12.86 20.47 90.32 40.80 5.26 40.53 46.09 84.47 19.05 68.55 38.83 27.93 2.58 91.41 59.68 25.84 90.08 99.97 -15.67 96.13 20.58 61.03 53.59 5.42 73.82 47.76 93.27 72.60 1.18 73.92 55.54 64.48 47.86 36.58 37.69 35.03 11.92 83.12 12.57 68.01 27.34 95.92 67.92 24.61 70.41 83.99 44.96 67.78 26.69 80.15 6.02 55.78 25.87 22.56 12.07 72.53 55.14 10.77 12.21 69.19 38.40 65.24 53.49 20.83 96.30 21.14 75.99 2.54 90.93 97.63 91.14 88.31 0.81 96.56 65.87 80.06 58.64 29.27 49.93 22.77 7.61 55.90 98.25 95.58 33.37 38.03 47.59 54.83 73.53 7.63 27.93 29.48 92.36 60.09 90.61 60.56 3.46 88.04 76.43 42.37 63.47 74.55 83.28 65.03 5.25 71.20 97.13 0.57 93.70 99.35 86.09 5.01 67.25 66.90 12.40 1.80 45.34 6.04 -12.12 43.81 42.01 43.25 22.10 81.43 44.85 73.37 22.18 10.88 79.33 83.36 69.30 2.60 69.46 75.94 22.89 38.75 19.32 34.43 60.35 67.41 91.25 23.43 65.45 10.54 30.18 24.85 39.99 26.30 51.75 55.41 27.50 53.64 53.38 23.31 67.64 32.62 76.32 94.71 44.86 92.13 43.31 22.57 5.36 68.81 0.40 71.28 39.37 12.60 49.67 80.55 15.56 87.83 21.58 96.23 89.38 3.24 18.37 60.87 38.50 54.66 11.46 29.71 68.12 32.99 1.18 68.50 50.40 20.44 12.46 61.90 19.56 29.27 23.22 69.91 6.67 91.53 65.90 52.00 36.19 2.48 74.60 80.47 55.40 32.47 34.27 16.14 52.74 73.29 48.75 40.38 42.29 18.69 76.85 93.02 32.43 77.84 42.04 3.83 -89.82 96.88 23.74 81.80 81.83 98.78 43.71 40.87 10.75 34.01 55.56 73.68 43.30 37.80 55.63 32.93 33.90 72.89 60.94 88.45 2.62 90.11 12.49 96.06 96.53 83.29 38.95 86.00 24.03 36.89 33.82 5.05 97.98 48.96 45.83 22.82 16.54 26.11 43.32 14.68 99.38 53.04 53.82 26.27 84.52 43.12 59.25 88.88 7.69 47.19 26.52 78.88 85.18 8.67 0.61 83.24 90.07 55.27 61.43 57.20 64.39 49.12 83.48 8.27 43.54 27.09 85.21 8.30 7.49 72.33 2.42 83.70 63.38 78.62 64.09 90.47 51.70 24.29 95.99 95.45 54.63 98.35 6.37 34.92 5.54 17.78 12.06 2.21 96.40 16.01 9.99 18.54 88.59 70.23 78.09 77.96 63.06 34.98 54.78 62.95 -21.31 25.50 28.35 91.38 1.42 7.09 55.84 22.61 23.96 73.12 24.38 41.77 41.54 58.09 74.18 83.34 99.82 26.50 67.89 55.70 65.34 58.16 42.75 29.84 7.49 34.07 58.05 41.77 61.16 26.37 8.34 91.05 86.95 60.42 14.64 88.97 73.70 79.67 36.59 40.16 31.38 4.41 72.41 64.27 7.12 70.63 3.18 13.54 46.74 87.83 26.88 73.20 66.76 59.06 81.15 4.47 30.60 78.40 90.22 83.26 80.13 51.49 42.70 15.83 78.49 2.11 66.53 16.01 50.03 88.42 67.44 32.43 53.10 84.72 73.80 32.42 1.53 53.04 78.80 8.62 67.82 94.74 81.70 72.74 31.43 77.34 29.33 51.19 52.32 91.66 70.62 34.97 93.94 36.63 6.37 11.28 63.25 9.40 21.18 40.63 -67.73 77.04 67.64 25.12 22.70 5.94 27.82 14.34 67.64 47.06 80.60 13.04 2.03 41.48 87.24 25.28 13.84 16.10 98.62 27.10 86.77 98.49 33.22 14.18 0.56 37.90 87.92 46.89 35.39 69.77 36.96 61.42 47.60 66.57 41.57 0.55 23.76 10.39 65.18 19.31 69.31 70.54 78.16 83.98 18.74 83.22 89.43 68.05 53.47 38.52 86.69 21.35 65.11 17.93 64.80 49.89 77.24 58.97 99.28 10.28 4.27 44.92 90.08 55.27 15.18 63.25 69.59 25.77 89.76 68.80 95.27 49.94 8.42 95.67 50.90 11.39 5.04 50.11 98.79 18.02 48.18 23.59 29.92 58.65 84.09 47.94 7.35 43.92 19.86 62.83 18.03 36.63 55.54 94.53 6.45 43.20 50.39 47.68 18.64 46.78 -92.82 70.82 92.94 53.85 51.44 45.67 68.94 3.82 33.59 51.93 20.70 53.30 70.60 67.44 11.85 50.62 58.84 94.15 27.06 33.78 53.28 25.77 98.51 9.36 26.42 66.95 43.48 79.86 73.08 62.80 83.15 49.48 71.59 47.58 36.66 16.11 30.23 4.98 50.10 77.01 39.80 17.72 95.89 5.40 83.10 86.81 74.50 89.83 3.47 21.01 80.48 31.95 78.21 46.49 15.82 65.04 20.26 86.59 87.73 16.54 18.56 9.35 34.82 58.74 67.10 14.84 60.23 12.35 50.23 15.68 36.17 73.01 34.45 6.66 96.36 58.93 81.56 18.95 18.65 26.61 81.33 76.35 34.31 42.96 25.01 91.03 92.92 36.31 82.80 82.02 83.51 79.89 29.22 2.43 74.50 57.78 98.91 11.89 42.87 40.11 -41.74 47.22 13.36 63.61 49.90 22.09 36.87 8.20 0.73 37.35 31.29 49.66 36.73 27.00 58.47 13.72 80.19 60.13 63.97 86.73 22.86 73.02 96.85 99.43 81.47 56.00 1.55 5.29 86.69 41.00 86.20 40.68 70.39 83.72 29.27 70.79 58.53 16.77 81.54 91.74 66.44 29.13 36.91 25.52 15.02 2.74 44.63 2.39 20.58 35.86 78.03 92.45 2.38 9.73 58.92 66.50 50.92 45.18 66.08 60.30 98.08 41.38 94.40 79.83 94.12 10.69 75.61 28.90 19.45 22.28 37.75 71.01 32.92 71.23 84.92 86.31 95.81 87.67 70.15 7.60 61.20 66.59 84.90 65.71 59.41 64.24 80.11 80.80 80.08 35.90 15.02 48.38 16.73 62.37 61.78 6.32 22.75 16.56 41.50 65.39 -71.26 17.51 95.87 10.61 77.48 26.71 69.35 90.99 33.81 99.24 90.75 57.70 51.92 52.48 61.71 76.99 44.27 12.00 87.90 35.25 84.67 44.90 61.22 52.20 4.84 87.35 92.07 42.97 56.41 95.47 99.24 86.18 68.87 70.40 86.69 13.83 45.88 37.24 55.02 0.26 65.16 39.53 44.66 89.60 21.02 70.14 18.64 75.50 40.23 39.71 96.91 96.62 21.47 42.96 14.48 16.45 90.48 20.20 30.85 23.74 55.00 55.49 37.92 75.64 29.55 63.13 81.48 66.16 16.36 98.89 74.22 49.36 76.29 73.99 36.98 61.31 37.26 31.94 36.09 83.29 84.28 97.68 72.50 38.24 24.92 43.79 36.45 22.44 97.53 19.18 57.86 42.68 28.91 61.54 93.52 86.51 78.73 72.47 21.20 34.26 -62.01 46.18 84.96 79.62 61.62 77.23 31.87 55.92 25.27 5.47 96.37 47.74 51.03 48.85 97.66 41.89 51.22 1.43 12.51 22.71 69.91 57.66 85.97 14.82 68.22 26.04 87.40 8.23 40.22 70.87 34.23 11.94 57.61 81.58 34.04 35.93 97.19 99.04 68.81 59.82 58.56 62.87 17.73 79.69 16.41 20.67 27.05 49.93 28.62 48.39 75.10 63.57 90.53 73.54 82.41 13.34 62.42 4.48 59.81 21.39 0.91 15.93 42.96 48.63 26.51 49.64 76.05 1.63 17.63 11.10 23.04 32.03 79.76 72.61 15.14 30.06 66.13 30.41 0.38 94.16 41.17 56.21 19.05 95.03 69.72 37.83 17.42 16.51 34.22 82.48 4.71 53.44 88.36 22.62 29.54 59.73 21.41 73.11 85.79 3.76 -60.55 2.46 65.31 2.22 27.90 31.92 38.92 98.26 52.97 65.06 48.28 78.28 34.81 0.16 83.34 87.73 14.07 31.53 75.46 59.08 23.11 60.61 6.88 68.24 2.73 39.66 66.53 8.60 46.45 13.30 97.24 4.05 94.26 16.32 6.06 80.44 32.91 1.28 72.77 25.76 48.50 80.47 35.71 31.96 46.74 86.78 79.00 90.51 99.62 96.45 56.39 26.02 37.58 2.64 43.72 58.40 90.09 97.20 37.17 48.41 90.36 74.24 23.10 90.13 47.94 72.78 3.77 50.02 70.43 34.63 4.47 0.22 22.34 11.46 37.18 25.02 8.08 63.01 76.56 4.51 99.00 79.73 71.39 20.47 93.51 59.32 74.55 48.88 55.06 93.92 55.43 1.65 31.41 51.71 43.06 16.80 73.45 32.72 35.43 27.29 -66.61 48.01 2.99 26.97 86.04 80.64 25.94 77.56 78.59 4.29 65.96 51.15 72.94 97.66 17.70 95.37 72.44 42.95 48.94 81.90 81.81 41.94 80.24 35.45 76.80 73.21 36.09 37.72 58.28 75.68 51.80 4.12 87.60 89.28 34.62 96.75 52.56 1.01 42.90 90.75 25.54 81.30 86.47 83.06 41.67 99.36 75.80 98.02 16.63 10.11 32.54 24.42 16.86 87.62 11.46 7.57 43.33 83.37 11.61 88.39 25.63 34.43 82.69 16.88 40.96 13.68 15.52 48.54 49.46 12.35 63.55 16.80 68.28 1.90 97.37 54.98 38.04 54.88 83.22 87.61 78.33 60.19 84.05 83.04 43.21 37.67 95.77 26.96 47.35 81.59 32.08 81.65 85.12 33.72 4.51 21.14 56.91 62.11 2.58 73.31 -34.49 28.28 2.04 3.45 51.51 66.56 3.75 90.48 97.94 86.89 34.84 53.71 72.00 5.83 42.10 11.38 59.07 96.69 43.24 83.20 39.70 29.89 97.75 19.89 39.71 51.17 44.09 87.19 17.44 41.73 53.98 6.13 69.61 59.23 93.72 88.11 86.15 58.96 93.93 90.58 65.77 73.55 5.91 88.45 75.95 98.49 1.89 74.03 35.29 2.20 65.47 22.07 54.84 75.57 55.58 87.40 18.89 73.61 99.90 3.42 22.81 54.75 55.92 69.66 26.75 94.29 10.36 96.56 6.06 94.60 45.94 81.95 98.86 6.41 37.65 21.42 47.72 81.36 48.91 24.99 7.34 74.36 45.64 51.07 78.41 51.98 3.91 37.90 2.99 0.68 12.33 21.56 5.37 30.19 20.00 96.92 23.60 75.07 90.72 41.98 -61.49 90.65 88.55 59.69 20.66 73.45 36.18 24.98 98.84 54.95 20.76 33.57 6.48 21.54 30.18 36.31 90.14 78.95 95.98 79.84 56.61 66.08 37.91 40.91 66.42 33.78 54.88 31.70 40.43 81.25 59.76 61.10 40.69 97.22 0.14 87.39 75.20 6.75 69.59 74.84 5.04 21.77 15.01 95.18 23.56 37.99 4.11 88.47 49.59 17.46 49.78 21.18 99.11 52.91 54.00 12.95 35.31 50.19 98.17 72.94 84.99 70.22 63.25 83.10 10.47 24.79 77.83 33.67 32.39 49.72 81.26 99.89 0.45 9.09 31.60 21.91 79.32 22.12 62.43 66.91 39.05 38.51 77.98 18.63 20.66 32.36 93.59 75.65 77.24 38.51 95.43 80.64 34.68 81.89 8.36 91.12 98.20 34.65 91.71 52.84 -92.44 72.06 69.45 77.25 67.00 82.72 31.43 92.44 28.48 47.59 47.43 90.74 34.93 22.27 51.59 38.57 9.82 70.52 99.25 86.70 73.61 83.75 4.04 46.48 85.18 36.85 33.77 37.16 18.60 20.23 82.41 10.36 45.17 79.95 82.42 26.58 64.86 26.66 66.00 72.28 33.05 60.14 71.51 82.64 60.94 38.78 91.81 43.10 20.45 4.22 56.69 21.75 71.86 90.74 93.77 82.09 24.97 82.87 85.69 13.20 14.77 5.29 62.44 0.05 70.09 65.43 31.16 34.00 4.47 90.76 93.49 19.73 28.66 2.11 41.69 17.75 21.14 53.78 67.19 13.29 52.02 0.27 33.07 72.82 18.86 99.90 27.82 78.63 36.76 1.94 82.00 89.67 62.31 77.31 47.11 48.55 44.73 57.51 81.32 78.89 -9.50 48.80 99.42 33.69 71.37 96.90 2.00 72.82 77.24 72.97 55.75 25.86 21.44 83.19 14.35 25.00 67.26 82.09 98.47 79.92 70.46 99.90 88.69 25.72 65.22 37.84 89.57 45.50 71.39 9.23 62.86 21.79 82.40 53.63 52.56 59.84 13.15 56.35 37.95 65.48 55.12 64.46 20.98 95.10 45.62 19.27 97.65 67.74 85.17 67.91 71.60 17.47 86.65 84.61 55.61 85.67 92.75 68.40 83.57 99.41 85.37 4.87 50.54 87.39 46.61 61.00 50.26 26.73 24.68 63.30 97.97 25.49 55.77 62.87 57.19 93.36 72.65 66.94 85.54 11.27 20.39 61.54 2.14 80.29 72.73 20.41 25.82 23.27 20.06 9.10 57.61 15.53 26.87 81.60 43.38 15.96 81.40 33.87 44.07 49.04 -94.64 83.31 40.21 19.88 7.57 10.50 29.10 18.85 1.83 74.48 97.29 97.65 5.91 74.20 28.66 6.19 93.91 28.84 38.90 7.09 19.42 56.96 76.07 97.33 71.26 42.57 75.46 56.06 6.36 28.01 64.14 56.63 66.42 81.47 2.49 49.66 72.17 40.88 41.59 26.04 14.48 52.59 9.08 76.04 41.89 76.10 61.18 33.17 15.02 82.40 87.55 4.83 32.42 52.21 30.53 24.36 95.89 15.68 35.36 61.90 95.10 83.86 13.39 76.89 29.25 79.82 18.23 14.37 50.69 41.52 10.38 14.11 9.57 74.23 18.14 67.26 28.63 55.75 98.77 87.49 92.91 90.85 10.96 84.14 82.32 74.02 67.30 78.68 5.74 57.69 87.19 64.57 40.19 38.95 46.01 25.97 2.70 4.03 67.28 68.86 -93.08 4.78 63.80 74.73 84.89 56.50 83.98 15.82 56.72 10.70 74.65 42.56 96.63 64.15 97.73 32.67 42.06 77.57 74.67 83.60 64.12 43.06 49.43 4.63 10.64 10.84 29.20 5.79 76.41 86.68 58.25 8.06 93.19 26.47 52.57 38.25 47.20 51.56 10.23 68.99 97.73 95.48 26.52 72.58 21.22 33.02 27.35 37.52 43.98 2.10 96.70 58.18 66.19 1.77 70.25 48.85 16.75 95.86 48.10 91.62 58.13 23.47 81.51 9.18 64.05 68.55 2.20 26.02 89.30 95.63 56.09 56.37 62.18 0.06 84.46 96.06 71.93 82.89 48.82 88.31 7.23 94.79 34.11 45.41 53.46 92.19 75.49 96.40 78.73 80.38 41.31 2.60 11.18 4.40 8.33 41.91 90.82 48.48 28.77 34.76 -6.28 67.56 97.59 24.83 79.91 37.76 79.08 55.99 35.96 46.80 39.25 47.46 93.21 16.90 41.94 77.68 79.30 42.74 62.17 2.51 16.87 71.38 39.97 42.22 54.06 46.53 82.65 14.89 68.94 62.58 41.23 49.95 15.93 69.89 24.69 5.59 72.73 77.11 91.30 72.42 59.02 9.69 87.49 77.03 19.44 15.35 19.12 97.63 13.49 70.52 49.46 89.64 77.18 10.83 51.05 66.08 24.00 7.74 22.54 62.73 64.41 99.26 60.78 5.10 48.95 28.70 92.21 80.83 85.39 91.21 67.79 9.04 84.66 16.89 51.21 84.59 17.14 75.47 13.74 7.96 53.67 11.81 92.62 20.73 97.37 94.90 73.98 9.21 45.84 53.32 33.13 54.54 66.22 51.77 11.51 57.03 42.78 64.78 90.68 16.05 -98.17 26.89 46.43 98.61 77.87 2.04 90.96 18.06 10.38 35.75 57.13 34.77 93.45 33.78 61.70 53.50 99.11 63.67 65.28 56.57 55.92 62.84 48.27 86.52 68.78 85.03 77.22 84.99 79.99 55.39 2.18 4.74 48.61 32.59 29.70 94.66 66.45 49.95 3.36 82.78 99.58 36.12 52.01 79.79 79.92 87.86 73.73 1.64 54.52 32.41 4.68 33.69 91.79 60.68 2.00 31.45 69.05 24.57 75.78 72.29 4.00 21.75 97.53 71.55 71.31 11.98 40.34 95.34 24.37 41.94 54.47 47.15 89.78 89.54 11.93 5.76 43.30 54.67 95.43 37.95 16.84 69.21 33.12 25.96 32.36 6.36 61.92 51.64 71.46 56.75 56.41 14.58 34.27 22.29 39.65 76.85 87.32 4.42 78.35 90.11 -35.32 3.09 94.22 78.20 55.42 33.89 97.30 29.11 39.75 75.69 70.51 74.61 61.60 85.62 30.80 11.29 82.30 9.16 17.79 27.45 46.27 90.80 11.54 53.78 32.85 58.45 56.46 73.41 95.72 7.44 90.56 84.80 11.01 5.77 72.42 42.81 3.88 16.27 85.83 48.63 50.31 23.40 24.63 73.30 38.13 5.14 75.33 28.17 83.98 86.79 23.09 73.27 79.85 54.32 91.14 96.92 76.00 32.45 42.50 49.74 12.30 17.74 76.62 90.17 45.77 55.73 49.38 10.71 16.94 9.63 89.81 88.46 38.87 97.52 65.02 98.41 90.08 74.85 64.98 54.59 50.01 16.86 68.59 14.28 87.86 87.62 30.08 58.47 81.97 62.70 41.57 52.64 70.01 68.39 31.90 48.13 92.78 68.54 30.66 52.88 -95.12 37.90 97.06 65.02 96.88 77.55 7.41 64.13 43.88 44.87 91.84 47.96 59.32 25.08 22.65 7.45 8.86 22.97 54.14 33.11 63.48 86.46 2.82 50.63 27.02 10.20 15.71 89.22 98.09 76.31 71.54 37.92 30.84 39.52 28.50 92.44 46.90 25.10 8.78 96.89 34.49 77.63 96.91 9.59 88.82 70.28 58.73 24.61 29.09 36.10 17.16 23.13 15.47 55.97 0.96 69.97 71.80 69.43 77.22 49.27 49.15 17.18 48.37 13.15 7.36 99.42 27.39 32.92 50.47 8.69 59.04 46.68 14.84 97.25 61.36 13.30 67.01 1.71 36.63 21.47 88.85 92.22 67.50 5.46 64.38 25.23 9.98 8.03 51.96 18.99 61.90 17.70 48.05 27.92 89.20 78.02 25.49 28.54 91.02 14.75 -72.05 44.81 83.16 1.94 0.20 17.38 29.15 1.50 99.29 7.49 72.83 52.98 85.87 88.86 42.52 92.16 93.30 34.36 35.73 85.35 67.26 85.37 64.42 39.07 66.48 10.11 90.50 89.55 44.93 51.79 23.05 57.55 40.83 96.62 75.30 80.85 14.28 94.69 50.00 57.61 33.13 45.30 91.08 69.93 2.19 46.99 65.08 3.55 86.64 87.72 95.74 18.14 84.99 58.28 54.83 46.03 28.98 48.40 50.03 49.36 3.27 86.51 1.23 94.65 73.98 99.25 40.92 13.60 17.88 29.03 68.23 86.12 83.15 12.86 83.30 99.58 18.22 88.65 0.76 16.84 77.30 75.99 68.25 86.81 27.83 96.69 45.38 64.03 40.70 20.31 61.66 78.59 81.04 55.14 40.55 39.13 98.33 34.06 20.91 87.25 -44.76 42.07 92.05 31.99 71.46 34.03 12.51 7.44 32.91 48.69 37.25 21.25 95.03 25.19 0.65 53.56 43.66 45.63 36.90 15.88 69.16 74.92 43.63 93.05 7.43 86.91 49.49 80.71 49.11 13.94 40.70 56.53 37.80 95.17 58.09 61.85 65.92 40.87 90.97 96.60 78.14 62.12 73.70 66.08 33.90 58.97 96.90 32.14 58.61 3.19 94.22 0.31 20.96 36.86 10.49 80.63 48.35 73.03 57.34 59.72 41.15 13.11 68.77 77.49 7.11 75.58 36.60 77.90 12.98 57.83 13.98 34.07 50.79 24.85 85.25 55.48 69.56 40.66 23.31 87.52 18.16 14.66 8.42 12.08 87.94 52.97 41.27 69.75 12.68 0.06 69.60 9.25 36.28 79.10 6.55 72.97 0.97 69.11 70.69 74.70 -31.65 80.98 17.20 49.62 63.81 72.08 52.21 93.26 57.27 86.57 40.93 48.55 10.33 63.87 72.67 47.55 6.97 70.61 91.25 75.08 1.19 43.71 50.66 76.35 33.97 74.16 85.21 20.23 67.91 73.62 18.88 4.34 86.50 32.71 40.77 80.02 27.09 25.38 83.64 84.61 74.15 29.09 1.40 96.07 76.92 81.06 61.17 43.12 41.15 12.56 29.50 52.04 38.59 8.79 30.51 89.39 90.45 7.03 4.11 18.55 4.64 62.77 40.51 13.76 41.75 34.94 20.70 95.94 46.84 97.25 76.50 61.80 26.81 90.67 62.74 50.62 73.30 7.57 20.43 71.27 47.67 9.43 92.07 58.82 30.40 48.12 56.56 39.33 62.62 68.57 82.15 85.31 61.00 28.41 28.77 76.64 48.73 78.19 35.48 79.43 -4.63 38.31 33.35 53.64 57.09 45.29 59.37 15.02 1.65 87.27 6.94 73.76 99.56 19.68 59.01 11.71 4.54 4.44 75.89 3.42 12.39 48.05 18.72 14.78 76.64 10.80 7.79 70.92 68.63 46.85 37.69 12.21 57.99 25.21 37.30 33.30 1.31 53.79 38.54 52.00 9.46 32.36 91.99 38.13 61.14 32.32 64.39 18.04 13.60 65.62 85.47 11.76 26.83 15.85 88.77 89.59 46.30 66.29 49.39 97.53 76.01 54.01 73.02 51.49 92.97 75.48 36.52 33.14 2.16 85.01 22.52 53.49 82.71 62.52 90.06 43.51 36.88 22.97 93.85 89.29 26.51 87.19 94.89 62.92 29.76 37.63 15.29 78.43 25.99 44.75 56.21 24.40 90.04 78.74 37.58 53.30 92.92 0.40 52.56 31.02 -41.83 80.73 8.96 77.46 80.05 44.12 49.64 8.86 49.65 0.12 63.75 91.81 1.00 88.18 5.40 18.03 26.94 22.90 53.35 80.07 30.32 11.70 19.44 25.47 2.49 35.78 18.82 20.13 26.89 60.10 11.59 21.85 35.81 93.36 43.96 11.38 70.60 82.75 10.41 35.62 10.28 17.32 59.60 72.11 87.32 69.06 20.98 57.67 37.32 19.42 38.88 26.19 96.83 10.10 20.82 20.95 11.90 49.75 66.80 54.26 74.54 43.53 79.26 37.82 3.94 71.99 66.61 20.36 40.10 99.42 93.33 33.17 35.51 56.03 73.85 23.43 16.83 61.65 3.41 13.38 86.57 13.08 51.28 54.78 16.55 71.09 63.08 73.91 1.75 23.23 7.80 18.99 89.90 20.76 73.62 71.89 18.37 89.70 68.23 95.80 -31.43 65.96 13.22 68.09 12.16 18.72 62.51 53.20 22.69 60.87 49.58 11.76 60.54 23.61 4.30 3.78 42.38 52.12 25.71 73.37 95.88 88.46 6.88 58.49 24.88 12.72 12.53 99.78 2.51 43.65 4.04 3.13 10.80 70.71 20.33 48.63 94.07 44.58 70.13 74.56 38.41 23.82 2.99 1.53 12.81 87.40 99.37 82.79 53.63 8.46 89.32 83.08 36.48 30.17 65.82 99.21 34.52 42.25 59.76 37.19 22.65 86.85 82.01 61.93 85.58 27.97 94.72 61.40 96.78 34.76 64.66 42.89 98.56 83.85 41.34 49.20 82.47 82.00 61.05 51.94 90.83 65.00 41.16 66.23 23.11 16.82 15.90 65.74 66.44 84.25 97.30 9.72 37.87 26.08 18.82 89.05 46.61 54.60 40.83 63.45 -25.79 97.09 53.42 24.75 15.28 49.57 8.18 12.15 94.15 6.18 82.79 97.00 25.17 55.02 12.05 80.23 35.76 60.23 65.81 1.34 44.70 33.06 77.09 90.59 74.63 16.67 95.25 37.76 86.31 12.13 27.79 0.74 93.22 60.03 96.45 88.28 64.74 93.14 91.00 22.88 10.75 22.17 85.85 15.04 80.78 0.86 67.54 35.06 35.13 34.28 69.39 92.01 44.70 10.36 41.14 11.51 33.62 41.90 12.94 39.28 13.23 58.04 40.88 89.89 15.43 23.58 93.00 31.24 2.39 95.45 1.47 87.79 74.73 3.35 74.12 44.76 19.23 50.35 3.96 48.53 83.19 73.73 67.30 13.73 66.73 19.23 55.22 56.48 11.97 32.86 44.80 64.21 46.57 6.46 20.85 96.80 44.46 2.73 68.37 68.96 -82.54 84.60 12.77 90.16 16.74 39.83 6.00 30.92 33.75 57.76 92.50 7.77 46.79 68.61 19.94 45.49 24.25 7.00 51.53 11.64 52.51 52.96 17.39 88.16 36.39 70.86 56.98 10.78 95.86 72.85 66.76 87.34 34.80 45.67 16.12 95.65 15.58 37.60 44.83 57.06 90.10 14.14 86.08 67.55 5.14 27.57 8.30 12.54 83.49 87.34 46.86 56.73 93.86 95.90 11.34 56.81 22.45 86.12 53.02 3.32 96.71 22.86 19.69 35.85 39.26 42.09 3.93 86.93 95.33 41.80 57.28 43.55 47.98 80.12 52.83 18.21 88.44 86.99 3.46 39.36 95.05 51.38 43.30 48.57 25.44 32.94 95.63 23.86 91.16 35.20 6.27 68.17 81.32 17.70 50.42 23.88 79.55 87.33 1.11 52.08 -90.09 33.69 40.78 65.39 89.16 95.92 77.57 24.11 86.80 46.07 63.77 30.50 29.12 56.69 24.23 19.21 84.81 77.49 98.43 81.42 39.63 56.43 9.19 99.92 61.64 8.26 65.37 20.70 63.66 48.63 62.07 52.69 11.29 20.71 20.01 47.26 30.44 72.26 26.81 19.89 47.91 1.70 0.33 1.21 35.22 80.84 15.66 38.33 62.64 62.38 15.16 89.62 48.18 82.91 17.75 65.48 90.92 76.65 52.59 11.74 83.91 0.02 28.93 81.00 90.01 30.54 29.84 26.60 0.55 10.47 62.94 28.95 4.20 57.94 70.53 30.14 45.45 52.60 70.67 6.68 58.10 62.76 62.36 79.45 2.11 23.46 32.02 40.61 68.04 13.59 5.01 8.78 10.96 51.24 32.81 18.88 60.23 72.61 49.92 87.10 -7.24 7.28 58.57 20.43 65.29 57.83 78.79 23.20 42.00 40.31 60.62 41.37 6.35 88.28 25.14 17.41 33.31 93.97 82.99 49.16 94.59 88.42 41.09 57.68 11.67 0.81 49.35 60.58 52.13 52.00 90.07 78.66 33.15 28.16 6.45 70.40 5.99 39.24 75.50 39.80 92.79 61.36 47.07 94.11 10.89 63.75 50.36 84.76 51.46 47.92 31.88 35.59 43.38 44.98 43.60 19.83 81.30 98.05 59.19 65.35 76.73 64.02 13.66 30.99 14.39 20.74 28.15 17.02 89.16 51.60 15.30 73.00 6.24 41.07 98.20 61.67 34.25 71.83 6.27 42.68 18.93 17.95 29.06 96.97 15.90 16.59 50.50 45.37 73.44 5.64 94.61 28.73 97.37 40.20 57.75 33.01 2.65 76.84 66.52 15.29 -41.47 63.99 48.69 24.70 80.32 72.41 74.37 37.58 55.67 7.84 18.30 28.59 4.52 27.05 35.50 54.55 81.05 34.86 74.91 86.94 89.80 40.74 10.25 27.45 11.52 76.84 68.20 99.28 56.94 60.00 36.71 6.79 30.33 97.10 19.81 97.65 53.64 0.16 44.51 68.80 58.46 89.44 64.02 89.02 2.35 69.56 42.88 48.75 5.33 30.34 34.96 51.56 75.64 83.38 4.14 41.75 81.63 85.69 57.54 86.26 5.71 9.97 77.22 15.42 3.03 67.02 0.76 94.51 55.56 46.35 1.79 48.70 99.78 57.80 85.28 30.55 62.03 36.56 21.03 76.03 58.34 99.37 83.51 27.49 4.97 11.42 56.19 75.96 58.00 58.87 98.00 17.11 58.63 48.27 63.01 91.97 19.14 51.62 16.66 52.73 -99.87 56.23 71.91 8.04 11.54 78.79 58.59 24.69 88.86 56.61 84.41 17.70 10.58 49.93 99.44 30.80 16.28 9.73 48.04 31.37 5.77 44.09 25.99 16.64 64.80 67.33 55.52 83.51 30.78 0.77 94.99 76.35 53.79 28.69 70.10 44.85 39.47 43.28 55.53 39.01 95.77 82.80 44.98 81.47 74.91 2.59 6.40 5.91 5.12 94.46 5.91 62.86 22.94 74.98 6.37 48.54 50.59 57.10 14.14 42.31 66.12 24.42 68.64 33.64 3.93 65.44 62.70 59.28 48.18 16.26 78.60 20.73 19.76 42.55 5.16 36.10 50.43 29.22 2.62 35.08 12.69 35.58 14.51 79.01 14.93 69.24 80.36 65.14 21.50 9.00 45.12 44.35 48.05 72.46 39.20 3.76 5.53 37.83 90.09 61.22 -44.08 60.31 41.13 8.55 59.98 64.88 96.05 79.05 67.05 37.91 58.38 67.30 2.90 23.15 65.48 49.07 14.70 66.69 98.97 74.73 64.13 24.50 70.16 64.57 33.80 22.19 99.23 71.34 30.66 64.63 72.31 64.05 62.46 62.31 23.72 63.81 64.34 16.24 15.30 91.97 95.90 12.40 86.53 18.61 26.32 17.64 59.69 12.77 50.15 55.05 41.16 90.90 85.35 30.45 64.35 62.55 47.59 21.22 24.58 13.89 81.63 19.69 0.13 44.87 45.49 17.93 93.06 64.47 41.17 53.24 8.27 82.72 66.67 40.30 70.86 35.48 95.50 8.92 11.63 50.06 53.03 1.27 39.23 88.05 70.85 27.91 78.72 26.22 52.27 78.28 33.24 83.00 23.12 48.54 4.54 16.33 72.30 79.33 45.43 7.84 -66.90 39.70 28.82 4.66 10.56 56.95 2.39 5.45 59.85 47.30 23.30 99.11 65.76 98.93 43.86 64.75 98.31 10.38 62.01 46.97 77.89 79.14 87.17 99.91 9.76 97.15 88.88 55.26 78.97 80.64 0.24 39.44 49.21 38.97 49.51 44.39 85.57 88.36 37.72 0.98 66.22 18.15 86.08 22.39 38.42 38.08 80.48 81.83 81.81 48.67 70.87 8.74 69.43 64.22 79.78 62.47 81.80 20.15 71.01 24.24 85.78 59.65 52.23 47.92 16.45 38.85 83.55 76.92 68.57 59.86 9.95 26.50 52.88 2.47 5.62 28.44 82.52 41.90 0.12 22.03 34.14 5.01 51.06 14.15 70.68 89.37 50.80 43.86 66.30 68.25 13.80 16.57 71.53 21.46 17.74 2.18 58.06 47.25 30.75 55.03 -44.46 39.96 5.70 70.66 3.03 87.66 4.17 81.29 79.59 38.18 66.09 82.00 83.56 45.87 82.54 92.43 79.99 56.84 41.22 68.13 43.89 49.66 15.25 34.10 49.82 14.21 80.73 32.05 82.19 76.74 77.22 86.00 71.60 69.38 97.59 99.23 27.60 5.96 30.75 65.19 1.16 99.96 24.54 50.96 97.21 2.76 23.20 71.97 74.15 28.09 48.98 9.21 73.87 91.85 49.61 22.21 47.11 51.46 78.49 95.85 21.12 84.33 83.81 52.49 81.80 47.94 95.37 78.95 29.23 18.59 30.70 79.15 78.93 34.95 2.56 97.86 92.16 10.11 61.40 19.59 7.86 36.35 55.93 55.37 37.54 98.74 77.80 96.59 76.81 9.02 6.42 41.66 15.61 0.57 22.75 21.18 15.03 82.74 65.50 57.97 -59.52 1.21 41.69 80.81 0.15 74.32 95.22 2.12 67.08 37.06 51.94 96.81 65.09 25.47 13.67 91.20 67.59 45.98 46.97 13.36 3.17 31.12 94.48 5.16 72.36 96.55 46.53 87.39 88.25 9.45 38.72 46.80 25.91 27.34 88.18 24.74 44.87 11.64 9.68 86.76 86.75 87.06 97.23 6.56 85.51 54.74 77.01 2.71 34.95 71.69 87.42 23.72 13.98 92.93 0.34 78.62 92.72 15.46 46.15 59.60 82.31 77.22 77.14 8.80 25.19 88.87 90.80 30.63 98.20 27.10 6.11 80.62 1.53 3.28 17.98 10.40 28.01 77.83 95.90 14.97 5.47 75.06 4.58 64.57 26.00 24.63 22.97 93.14 92.64 6.63 59.75 57.47 37.83 34.59 51.01 61.77 69.85 50.86 10.50 25.29 -21.02 35.06 30.46 11.15 30.27 69.31 28.45 62.02 96.56 48.02 36.61 71.96 23.71 46.87 90.86 74.12 90.61 39.38 71.08 42.84 94.06 1.53 38.39 77.77 13.76 23.75 79.84 62.74 76.41 93.51 46.42 42.85 23.09 58.45 93.93 75.34 96.66 67.96 90.21 74.25 51.23 90.11 59.05 79.49 62.03 80.34 36.38 61.68 17.02 73.26 66.90 56.01 48.76 17.11 50.90 96.83 2.12 3.45 54.28 81.25 75.49 23.01 35.20 36.37 29.07 7.84 63.37 86.25 78.69 88.94 80.25 23.72 45.51 95.30 95.42 10.88 66.94 81.58 82.52 11.99 0.68 90.25 89.67 31.90 15.41 3.20 61.36 48.14 16.13 50.94 91.51 45.97 24.24 22.78 88.28 8.04 24.79 6.51 24.81 79.02 -59.80 63.96 88.80 82.50 86.77 30.14 46.14 18.70 41.36 77.67 8.85 12.26 20.00 40.55 20.15 61.55 49.69 25.92 90.20 70.81 2.67 52.14 92.75 15.30 76.50 5.82 50.11 68.60 34.84 75.21 71.05 47.85 92.09 52.30 21.76 31.20 67.63 70.02 58.29 1.26 75.39 47.05 36.95 82.41 52.26 91.34 12.14 84.22 63.89 96.27 31.13 28.30 3.51 66.00 1.92 11.51 3.68 86.64 76.83 3.26 7.53 86.54 17.78 37.11 40.52 31.89 93.64 53.88 55.93 75.34 96.83 61.54 67.53 20.41 57.75 42.14 10.72 9.11 3.71 1.39 81.64 51.16 8.75 1.51 75.50 90.73 78.90 14.50 81.64 48.83 71.01 6.76 45.65 54.97 48.23 69.79 33.45 84.69 9.40 92.08 -59.87 22.18 97.81 56.69 21.66 94.47 52.93 24.64 35.95 78.64 70.84 19.09 38.57 79.68 41.70 70.42 16.77 0.18 78.77 86.97 8.99 47.73 43.92 89.82 98.06 75.02 93.88 29.18 45.08 1.12 96.04 49.12 63.67 20.41 64.37 60.99 53.66 30.28 14.87 42.29 52.90 66.26 72.30 35.98 44.39 50.69 20.04 21.69 67.74 28.98 86.55 14.63 97.78 91.24 70.75 4.69 64.43 54.14 30.82 92.29 98.43 47.64 64.45 88.40 98.61 59.60 8.78 28.21 81.77 48.82 76.05 49.28 12.32 42.67 56.23 42.94 58.53 68.68 46.31 18.14 26.97 22.90 54.51 39.22 89.92 80.90 24.38 40.24 88.24 37.68 8.18 31.41 38.37 83.09 37.94 28.20 7.00 76.85 84.29 88.46 -22.09 27.70 32.87 15.66 65.97 70.59 22.82 95.19 7.81 44.54 6.31 53.28 61.41 87.51 66.68 2.40 19.92 90.77 76.05 24.12 86.81 50.79 44.38 42.25 99.05 57.56 75.82 12.16 15.78 53.83 62.53 1.70 26.62 38.96 19.87 40.04 38.43 25.53 95.62 60.48 22.52 68.31 3.87 93.00 44.07 19.85 59.01 37.54 13.04 86.11 23.66 31.91 87.13 69.05 7.71 27.21 3.48 67.09 62.66 16.57 44.57 15.96 43.31 28.69 63.55 42.77 63.50 59.95 70.35 93.55 6.78 11.17 55.57 82.12 14.20 38.37 52.26 33.21 81.18 25.11 51.25 55.69 7.40 81.47 53.11 32.85 22.73 75.17 11.95 54.25 69.69 12.19 6.47 24.70 57.13 10.30 23.55 76.57 83.58 65.80 -20.31 0.91 98.37 83.54 25.24 69.22 85.16 54.92 3.42 33.42 88.06 40.69 95.63 7.07 1.42 43.34 59.96 40.17 4.42 42.53 15.23 98.67 68.65 92.90 31.84 69.95 43.61 15.32 96.75 40.31 55.80 50.28 88.04 51.42 94.94 62.77 35.56 10.57 88.64 44.27 91.50 41.38 28.58 80.77 33.60 28.56 47.43 74.34 37.40 44.67 69.54 28.58 85.77 41.22 54.24 59.27 3.22 51.39 43.87 7.89 7.04 42.62 54.97 72.75 70.86 98.42 63.96 53.87 97.73 49.52 9.17 31.10 9.66 69.81 63.48 51.49 95.81 57.31 60.49 17.69 21.19 6.86 92.56 81.37 1.76 13.22 92.83 74.26 3.34 11.50 42.31 59.52 55.09 46.67 54.38 73.89 47.25 87.63 68.75 18.77 -24.41 90.30 71.36 49.14 52.80 37.10 99.37 36.30 28.41 11.50 92.94 86.19 41.85 5.57 40.31 3.20 70.75 6.37 62.93 46.78 9.27 90.86 54.95 20.27 38.90 11.28 49.51 55.73 55.10 41.22 88.16 9.18 68.70 34.43 14.24 17.44 35.10 86.77 15.44 6.98 81.78 5.62 79.64 33.14 79.85 22.02 92.26 39.20 79.36 47.64 59.58 34.24 46.27 79.67 53.14 94.47 95.34 85.20 41.50 55.57 21.97 65.98 76.10 8.65 54.49 59.39 50.64 63.36 97.14 21.51 5.89 74.57 94.51 9.92 35.05 43.17 62.08 41.72 91.67 91.54 27.29 32.29 55.35 31.91 94.04 6.91 37.26 70.74 44.67 87.41 37.50 27.31 75.87 68.58 54.23 0.97 56.24 15.55 72.10 0.92 -77.73 33.70 47.55 44.20 27.51 8.76 3.34 14.83 79.52 66.55 42.04 95.95 43.56 21.23 30.83 14.45 79.12 68.25 96.95 0.73 44.30 95.84 60.14 70.47 87.55 13.12 78.04 61.68 76.92 21.14 52.29 27.95 76.58 96.43 76.74 78.47 0.09 43.07 85.78 24.96 39.13 50.87 40.78 62.05 29.17 54.17 55.09 60.72 47.38 99.15 75.18 31.95 70.18 98.78 85.05 92.88 18.31 82.47 39.25 61.39 26.06 76.93 97.64 13.32 98.14 54.27 79.07 77.90 68.78 98.74 32.85 81.29 96.42 89.45 98.36 83.17 62.05 90.90 62.15 20.43 94.82 19.84 38.47 23.23 6.16 47.26 59.72 87.01 45.67 46.09 93.45 38.78 40.12 88.47 14.51 31.81 25.98 62.52 89.34 72.58 -9.99 89.08 35.30 78.65 95.90 45.15 43.18 60.11 50.00 57.67 13.61 98.93 34.02 3.70 42.88 62.04 78.68 63.51 39.77 11.03 30.88 67.15 49.04 12.24 12.85 3.97 0.45 39.42 95.77 88.04 56.03 83.77 74.12 49.12 34.64 73.98 10.63 40.71 21.77 31.53 0.72 73.76 86.86 8.29 89.26 93.86 3.28 75.57 65.82 66.52 8.18 35.65 89.93 95.76 46.07 9.66 83.88 70.83 44.64 97.10 59.08 11.10 91.23 14.41 1.03 44.34 41.80 37.07 33.74 46.24 55.58 26.09 53.52 67.02 24.71 62.45 61.16 58.18 78.30 0.53 65.01 62.22 74.48 64.20 53.49 91.27 16.17 90.72 25.76 88.67 31.74 86.49 21.86 83.29 94.76 76.29 83.17 9.75 90.34 13.32 -81.48 88.00 51.40 74.18 12.39 84.92 95.12 15.17 49.92 15.81 61.03 60.07 13.04 78.69 45.68 31.14 70.29 73.35 45.04 21.57 48.96 28.59 36.76 18.40 55.08 40.88 13.86 57.39 41.02 6.27 71.88 10.09 65.97 13.45 57.14 40.46 34.14 87.59 91.71 29.28 28.02 89.09 1.21 75.76 74.34 46.77 56.36 82.41 41.17 49.42 56.49 3.34 35.45 74.29 27.41 47.67 60.32 35.01 48.63 30.21 55.32 87.86 58.60 35.76 50.75 91.56 90.12 81.22 55.30 94.30 97.68 45.47 73.74 33.91 52.19 74.83 67.40 39.26 31.51 25.29 39.86 73.85 16.06 69.56 10.09 63.64 87.04 15.39 83.29 76.62 6.11 91.84 58.33 53.13 22.87 32.90 94.46 22.57 54.49 27.73 -91.23 89.89 77.64 65.91 12.67 68.29 74.47 10.57 92.31 64.91 11.92 33.41 80.05 13.02 45.66 93.66 99.00 30.49 45.92 42.93 77.87 74.06 85.31 55.86 31.70 36.44 11.08 33.07 7.20 67.99 23.36 70.58 26.58 91.80 40.13 46.40 94.96 76.66 34.77 96.46 5.68 53.58 21.93 29.11 41.08 53.23 8.82 65.35 5.03 36.34 7.63 38.33 15.78 70.84 22.79 60.43 42.47 18.67 61.37 30.29 17.30 37.91 65.50 29.20 20.36 64.59 0.60 7.87 66.60 12.43 83.20 55.09 28.40 55.61 67.73 22.79 48.63 36.77 78.68 47.51 75.83 37.42 58.09 39.90 3.56 4.56 37.48 3.18 98.81 52.32 95.47 50.77 81.78 17.99 28.62 87.56 29.90 49.06 32.94 39.10 -59.28 80.00 56.78 98.25 40.08 49.30 32.40 31.05 58.88 77.02 92.64 99.98 30.68 99.69 57.14 24.29 78.22 21.36 14.74 57.43 0.53 29.11 6.11 85.03 94.21 70.90 34.82 78.34 47.51 29.36 19.71 7.87 84.43 60.81 86.37 96.45 34.90 42.26 96.35 60.99 73.46 52.33 38.31 36.27 37.65 5.45 80.55 7.73 36.50 66.18 11.67 27.17 9.42 16.77 68.59 86.85 33.62 29.43 98.49 89.36 55.89 91.82 52.99 73.00 84.29 88.94 42.03 46.93 81.37 48.63 39.18 51.84 13.09 86.63 61.29 67.25 85.63 61.52 23.07 68.07 52.67 33.64 93.84 55.59 28.52 64.70 86.24 48.76 14.20 84.37 81.69 38.21 30.26 90.13 30.62 71.34 68.99 23.00 79.63 56.00 -53.11 60.03 55.29 87.04 4.39 3.91 94.56 18.81 85.52 97.67 22.04 50.40 23.12 29.74 98.23 56.72 36.82 74.92 7.60 40.01 23.43 80.01 15.45 0.82 35.98 4.17 84.66 4.89 27.41 59.66 93.92 42.05 35.59 82.28 29.19 1.12 75.00 10.28 8.66 46.51 69.72 22.32 26.92 82.45 92.66 17.92 63.30 82.43 74.99 81.00 20.49 68.75 34.74 41.27 64.57 60.88 47.37 78.74 51.36 51.14 18.31 75.90 9.14 27.43 63.93 8.64 77.61 5.20 51.47 57.54 95.67 37.79 75.39 64.20 28.16 3.36 83.54 91.44 22.88 94.79 20.88 91.02 6.15 17.35 47.02 39.18 55.30 77.24 78.79 17.65 14.03 92.13 41.53 98.53 8.01 48.43 2.85 72.25 86.65 6.51 -83.48 88.50 53.06 33.89 19.38 71.94 52.82 7.14 73.60 78.07 11.79 15.68 93.52 77.07 79.22 30.45 25.78 11.80 40.97 98.44 78.26 39.21 44.39 18.08 50.40 15.82 0.27 84.24 83.58 41.75 45.91 63.50 74.91 22.75 56.63 28.22 64.16 63.41 17.20 28.19 1.68 7.06 18.23 47.61 80.83 9.47 88.18 21.01 44.74 36.34 89.68 85.72 94.99 23.73 5.63 22.57 71.35 47.62 7.38 88.16 52.94 32.98 23.10 9.82 94.68 89.53 67.55 13.94 41.43 91.28 12.01 43.52 16.17 37.60 44.97 95.32 30.13 53.59 25.92 68.41 84.57 59.59 10.78 98.71 21.80 22.31 28.87 92.69 0.62 36.37 88.27 46.56 22.44 7.88 85.03 5.37 13.17 63.55 30.59 55.31 -17.95 90.31 31.49 73.60 86.97 74.39 10.04 49.08 35.69 30.47 53.97 25.61 51.85 2.36 28.11 49.70 64.23 88.29 60.18 55.76 24.41 13.15 39.17 39.14 57.99 51.43 17.46 71.01 51.18 90.59 69.31 81.81 9.17 38.82 16.32 46.68 17.64 73.47 37.24 74.16 10.14 34.82 12.99 8.79 19.19 66.59 94.60 17.19 54.83 82.48 89.42 11.53 60.34 71.59 13.37 9.26 4.90 60.93 92.03 23.04 16.72 95.84 16.41 63.59 99.77 4.22 36.37 64.52 71.39 78.84 31.59 50.67 16.76 38.64 48.38 41.47 25.28 6.36 82.82 24.39 10.92 35.22 66.46 83.35 54.73 91.54 97.67 14.01 94.96 55.77 83.43 23.28 2.26 53.40 20.70 84.41 62.45 67.16 15.69 61.55 -91.08 31.99 53.64 52.15 28.30 37.92 89.64 27.08 31.41 78.72 50.71 5.84 91.51 38.43 31.98 87.17 62.27 42.72 53.54 56.18 51.37 20.53 84.16 65.53 90.26 31.75 57.27 85.26 12.75 83.32 24.43 85.83 13.43 91.38 15.95 14.51 87.82 35.35 71.03 78.35 44.90 55.02 62.68 26.10 17.95 35.07 91.30 83.26 3.18 22.46 3.61 20.39 21.07 43.48 27.66 94.89 18.25 31.23 17.08 80.15 72.52 50.26 88.82 51.60 30.60 37.37 52.77 93.24 9.28 83.44 36.24 70.12 77.11 66.12 10.97 19.21 17.17 23.06 27.92 17.23 9.94 69.50 13.90 46.60 30.20 12.75 49.08 12.80 93.66 92.52 70.83 97.70 9.67 77.11 11.84 93.20 1.06 33.07 30.75 58.76 -64.78 24.12 86.85 77.93 49.45 38.30 77.31 56.01 54.67 13.83 58.63 52.45 15.19 26.25 10.45 64.88 84.85 13.67 62.46 37.74 16.16 69.71 10.35 85.78 58.52 55.44 52.62 11.00 29.38 9.44 23.11 74.98 82.16 95.42 23.49 69.30 81.14 46.31 83.38 12.20 72.89 57.72 45.35 33.03 61.63 16.87 98.61 22.24 19.29 12.94 79.61 60.95 99.23 74.03 8.78 52.55 66.37 75.32 6.31 87.51 97.83 31.16 13.45 96.27 81.04 47.52 4.29 66.32 30.72 95.74 73.67 53.31 13.70 55.84 72.20 26.51 56.40 96.19 93.51 49.00 53.57 55.67 72.56 95.08 67.83 7.55 19.60 30.32 41.26 81.29 80.85 87.86 38.63 72.58 13.39 92.96 31.75 19.80 29.10 8.07 -19.45 50.35 26.91 42.98 39.95 28.40 53.86 67.28 82.66 17.69 49.62 37.87 60.54 15.91 30.42 14.63 69.93 58.93 84.06 37.38 7.22 83.84 61.09 7.99 11.63 71.81 73.84 23.27 15.43 50.69 36.46 62.89 33.88 44.24 4.97 80.46 43.64 1.33 13.76 40.62 75.06 25.84 18.29 87.73 89.53 36.01 92.04 46.27 12.06 35.75 19.93 47.98 78.27 41.43 69.66 91.33 66.73 15.18 73.40 12.52 88.99 43.41 65.19 86.55 54.78 52.98 39.94 9.65 55.41 49.81 97.78 20.96 56.51 27.32 1.27 74.95 2.61 57.77 17.24 73.22 56.43 68.57 79.22 27.69 19.46 63.19 22.84 85.81 52.22 69.85 45.33 60.39 30.75 3.45 81.47 14.69 75.48 83.63 61.09 41.00 -9.48 57.12 20.39 12.52 51.50 84.15 36.37 15.74 77.19 51.45 34.48 31.21 60.73 59.87 86.82 57.80 6.73 76.98 89.50 60.37 68.85 59.30 35.48 22.58 28.40 69.69 37.20 61.98 7.68 71.38 52.06 66.05 77.20 12.32 81.63 5.57 58.41 88.09 8.85 93.68 59.13 50.84 1.14 57.99 23.77 26.09 14.34 0.86 90.78 45.96 55.45 56.51 45.51 22.74 79.18 70.17 98.54 80.18 44.60 17.88 77.70 12.93 75.87 22.38 87.93 62.47 53.95 56.81 64.69 99.75 59.66 80.76 9.63 39.24 31.28 63.35 12.74 15.36 65.68 11.52 12.03 31.02 34.66 23.91 49.97 67.17 17.94 11.92 70.24 40.91 9.25 64.86 53.91 59.57 96.64 89.53 89.02 46.25 41.83 62.04 -87.11 30.00 42.77 37.89 72.01 93.38 71.34 75.21 59.34 23.98 12.44 82.17 90.76 98.79 14.78 5.58 6.04 86.50 23.21 26.82 19.22 7.69 5.60 13.04 30.63 1.08 37.25 20.89 44.81 55.50 17.74 5.83 98.82 84.77 22.56 19.79 57.84 45.49 98.85 53.94 91.05 50.56 48.76 41.50 27.02 93.16 59.21 30.15 93.63 90.62 22.67 20.26 99.02 86.56 34.68 52.06 28.42 51.68 93.68 62.34 26.75 30.97 34.09 91.48 52.94 5.52 59.24 18.39 57.28 16.78 59.15 27.42 52.02 87.26 14.19 18.65 35.34 12.52 58.09 20.05 8.34 48.99 18.14 35.15 62.97 88.09 53.00 98.75 16.44 1.26 92.73 44.32 18.98 52.49 35.07 96.72 90.15 37.02 11.69 78.75 -18.68 83.12 42.08 45.56 86.47 38.28 68.88 98.56 44.74 77.91 71.32 57.41 57.97 88.08 24.98 97.93 46.41 79.62 22.41 69.43 48.83 1.58 54.17 82.92 8.22 94.13 16.70 1.80 64.56 7.21 19.03 90.84 20.37 55.22 12.11 25.33 16.71 86.79 49.17 60.70 75.21 50.90 92.44 6.51 77.56 70.48 0.65 41.42 48.47 5.05 46.39 60.84 8.33 62.59 80.96 46.36 71.75 46.46 49.29 35.79 54.18 57.51 65.09 84.86 99.63 46.90 41.69 99.97 44.95 40.84 36.26 5.20 97.90 96.40 58.44 43.94 71.24 49.76 29.18 65.32 53.70 15.18 82.81 52.90 11.96 51.35 57.62 83.78 67.29 98.25 81.95 53.20 60.38 14.08 2.23 74.88 65.18 2.47 41.87 29.69 -81.58 37.98 61.48 15.46 42.66 9.80 48.81 37.33 41.94 98.83 88.51 16.98 75.01 3.64 63.73 61.35 10.74 64.16 36.91 15.74 48.33 1.16 7.71 10.84 10.64 24.56 11.51 64.58 32.00 12.45 29.43 37.71 31.32 40.66 29.14 0.27 1.28 60.05 53.34 15.85 19.44 34.59 79.69 11.36 88.31 40.51 2.81 37.56 79.47 47.83 35.68 64.75 99.99 3.47 97.22 26.37 8.40 99.74 8.30 45.48 77.48 90.06 24.45 87.57 82.64 43.58 67.46 33.38 82.53 95.26 9.80 10.44 31.62 56.88 61.32 30.64 31.14 42.20 70.37 30.78 87.71 29.57 38.68 92.42 41.88 0.82 34.66 3.62 25.13 38.06 56.62 55.41 69.50 59.33 36.48 4.57 97.66 12.11 89.73 47.76 -0.07 23.39 65.94 36.70 35.57 17.08 69.59 98.65 69.60 47.11 14.15 92.13 31.28 55.54 25.00 13.10 49.18 53.69 65.26 18.98 32.57 30.86 48.16 90.89 83.94 32.76 83.17 99.87 12.82 71.68 43.76 37.09 56.00 90.56 60.28 11.49 47.78 21.53 21.70 60.97 55.76 69.44 70.48 68.29 70.11 15.60 98.85 1.35 69.39 21.53 12.66 72.99 11.79 39.62 43.10 58.52 80.41 97.36 64.23 98.03 11.69 60.81 1.98 30.03 84.83 99.92 75.13 54.78 2.79 63.65 96.19 15.50 54.40 58.86 65.93 65.41 36.50 11.46 8.70 13.83 50.46 85.36 64.05 45.34 20.99 63.77 96.22 30.30 35.68 31.41 75.86 39.04 49.30 94.42 68.36 49.35 94.02 77.38 19.84 73.46 -21.86 37.77 49.64 82.86 23.94 46.95 86.26 38.46 0.76 90.14 88.83 56.43 92.31 17.96 22.51 31.94 65.20 79.55 58.48 9.17 74.48 15.23 60.59 34.41 26.49 94.95 15.70 97.59 10.70 95.35 23.03 3.56 21.13 74.90 71.41 18.76 96.97 86.05 60.06 24.14 18.30 49.22 33.77 96.59 87.99 53.54 38.89 51.53 31.10 68.29 50.02 15.89 78.36 46.30 37.91 90.06 32.53 18.86 18.69 4.33 11.41 49.86 38.70 48.52 93.00 23.29 5.86 88.42 13.94 20.71 30.92 20.74 84.26 85.77 33.34 45.91 96.86 25.22 99.86 86.33 2.75 28.99 7.85 67.62 52.44 7.03 10.60 25.67 38.58 41.23 70.33 15.78 68.66 62.53 77.35 9.94 8.68 69.26 17.68 2.05 -34.58 42.92 48.56 48.77 83.89 24.36 52.24 42.31 8.97 49.63 8.94 22.65 46.30 68.13 87.53 78.02 54.29 50.33 65.61 99.35 70.13 29.76 79.61 2.97 34.14 5.06 98.77 76.52 50.48 78.68 71.48 19.86 53.55 62.20 33.73 56.46 94.98 79.98 40.53 61.78 66.14 41.18 91.00 64.32 44.22 23.71 68.06 8.36 45.47 48.93 94.24 31.25 6.51 86.26 43.75 43.47 45.48 44.89 81.98 29.82 84.85 41.53 34.09 49.22 45.46 26.68 61.13 40.65 5.36 33.26 12.01 3.09 47.57 20.34 98.74 48.10 5.81 87.35 57.11 3.88 0.50 43.67 43.02 74.41 92.59 73.63 44.42 6.18 33.15 0.96 81.05 85.78 88.77 96.38 41.59 78.90 3.23 74.76 31.14 96.78 -37.33 41.30 7.47 81.04 53.04 55.66 52.82 57.48 89.47 86.16 75.86 63.92 59.02 80.53 35.65 11.66 69.65 90.54 61.68 86.84 38.04 46.60 88.69 63.67 62.16 20.60 61.77 23.71 75.57 85.70 20.20 59.57 69.16 22.17 79.11 74.49 33.04 40.57 35.67 93.26 51.04 87.79 70.12 68.46 65.47 74.32 93.06 93.92 59.53 18.20 69.26 47.49 82.70 6.82 24.02 94.74 87.03 33.58 50.14 22.48 4.72 19.92 16.25 62.47 12.42 6.47 99.21 83.47 65.99 57.86 25.50 14.64 41.26 63.10 95.50 28.63 2.59 32.73 53.43 94.80 5.70 51.17 31.26 14.85 48.12 38.69 42.60 53.05 35.27 47.34 54.25 10.98 29.31 15.46 10.47 3.81 71.05 57.63 52.94 22.61 -1.46 57.35 17.15 93.19 84.75 30.50 85.02 50.13 47.52 22.19 14.29 89.52 75.19 53.90 76.18 11.53 14.35 60.73 43.21 46.21 32.21 78.95 81.55 84.20 80.66 54.25 66.20 64.04 82.00 52.42 21.52 9.47 6.37 96.46 49.95 92.49 53.32 50.62 35.99 7.56 3.78 31.24 87.91 35.41 73.02 75.44 27.15 39.60 94.74 14.76 99.82 29.50 60.39 10.21 80.29 57.15 75.92 43.46 80.34 39.59 1.33 23.52 78.95 75.69 87.72 56.35 11.16 63.11 9.52 11.06 31.78 58.71 2.15 59.57 98.39 53.41 23.86 94.13 23.26 43.33 56.72 15.78 61.93 12.35 73.27 49.37 25.54 33.52 81.49 71.22 48.67 39.87 13.28 99.88 97.32 90.13 96.99 84.50 77.39 62.29 -68.58 48.06 47.64 44.50 47.33 25.28 61.57 78.66 42.24 32.08 0.66 10.69 78.00 2.39 51.97 30.91 32.20 87.49 73.55 52.23 81.54 48.11 1.92 87.43 8.71 35.39 34.93 68.00 44.55 24.29 23.38 28.05 99.14 22.59 96.80 39.60 78.50 66.69 32.87 92.19 44.78 36.39 20.79 11.59 60.20 55.93 29.90 32.73 1.59 9.04 74.35 73.41 21.42 73.45 84.21 63.41 73.07 6.21 55.28 30.17 81.04 51.74 75.14 97.45 62.22 75.66 5.92 3.12 6.71 48.38 38.25 37.07 65.01 60.53 8.65 41.01 23.53 89.70 13.55 52.04 40.29 54.92 75.73 31.39 97.73 44.44 50.55 97.55 17.72 53.24 57.12 16.95 59.39 78.36 68.04 59.54 21.08 45.96 98.29 82.95 -26.20 53.90 96.37 78.92 3.20 47.06 55.14 44.32 7.40 22.05 96.95 36.84 74.04 15.55 66.92 63.62 56.70 53.62 80.03 81.24 76.21 42.28 28.05 88.54 20.78 40.13 65.84 11.93 18.49 19.46 46.34 15.93 11.87 9.55 14.62 13.71 82.61 80.55 53.48 4.00 76.08 5.34 10.54 28.48 71.73 32.66 7.80 86.20 27.12 50.49 21.61 57.22 97.53 49.61 49.32 52.41 21.85 36.97 9.69 40.87 25.32 11.08 1.64 46.12 46.50 5.61 52.16 75.66 40.78 13.17 53.24 91.77 16.58 13.03 55.74 51.77 28.48 68.49 11.39 39.66 48.23 87.24 19.28 62.36 97.09 50.58 39.40 3.21 15.61 29.24 5.50 51.89 68.92 81.61 64.08 19.39 56.89 51.33 45.40 49.45 -34.93 14.91 92.14 55.61 87.58 25.85 73.53 25.31 1.44 66.25 27.36 6.15 88.95 70.22 33.17 38.35 29.54 64.30 48.15 61.85 18.16 13.04 94.99 55.99 56.76 71.39 69.44 91.51 66.98 79.96 75.28 97.95 48.23 10.56 32.97 57.14 30.84 95.83 82.84 18.10 68.41 0.31 41.02 28.73 6.07 2.38 20.34 36.20 5.20 67.05 95.32 22.90 87.30 52.84 86.99 85.60 45.05 26.83 37.00 80.94 84.86 83.96 31.49 25.37 72.27 4.77 27.46 72.71 7.90 3.93 6.17 88.69 62.28 33.86 6.12 50.58 71.98 42.00 81.10 74.82 1.62 72.73 0.86 6.00 81.75 11.86 90.47 43.57 63.14 16.72 51.25 39.55 32.91 51.31 89.50 35.99 28.26 81.64 15.29 20.65 -66.11 7.71 22.16 62.81 8.20 41.36 48.57 59.14 19.39 3.63 92.26 63.52 91.85 74.95 49.04 16.67 63.15 44.57 8.20 98.44 81.33 21.97 86.33 96.43 60.85 91.34 62.06 48.84 77.38 48.31 19.50 23.67 11.35 36.01 15.10 66.04 30.20 68.46 41.48 99.86 97.76 83.15 90.73 7.03 3.58 70.91 54.54 49.66 86.16 50.58 74.90 18.03 49.77 80.41 81.49 51.48 18.87 85.14 43.12 8.66 62.86 25.82 59.13 29.98 31.59 77.55 16.17 39.99 19.75 96.63 55.58 18.57 38.74 28.15 3.92 7.34 60.49 72.45 18.44 64.27 9.15 30.74 69.19 7.84 7.49 99.57 97.30 32.82 37.80 53.34 95.11 52.90 9.18 88.19 75.06 38.45 2.16 30.07 71.09 67.52 -26.59 74.52 62.86 40.37 93.41 49.54 79.16 28.72 94.95 53.55 23.94 55.04 44.51 7.06 10.39 71.34 65.74 86.68 2.38 6.14 42.26 17.28 63.95 41.00 12.97 66.86 16.10 75.48 20.46 59.43 45.82 12.35 82.58 75.51 30.08 53.46 18.24 10.06 1.58 19.11 14.69 50.54 54.47 96.22 41.82 43.30 51.98 14.71 44.52 61.94 55.97 65.52 68.82 2.09 90.98 81.48 44.76 86.63 28.76 46.95 4.86 99.35 33.78 26.29 83.03 53.34 32.85 71.91 29.06 6.81 28.50 46.62 17.55 3.03 39.70 76.48 7.66 9.44 14.10 82.55 77.37 37.62 72.61 32.71 41.88 57.27 68.63 80.54 54.66 49.63 75.43 34.75 14.32 64.61 80.70 63.89 33.53 55.81 75.20 21.60 -74.77 32.21 29.53 70.44 3.83 36.96 22.84 9.23 30.72 90.96 84.81 85.54 83.08 19.07 91.22 50.84 53.21 49.22 16.69 0.72 45.49 32.09 43.58 87.61 82.78 67.94 95.87 51.57 5.68 69.06 81.04 34.43 20.15 21.03 83.30 74.10 47.14 39.48 34.17 37.96 72.47 85.93 52.88 60.98 42.84 43.99 81.03 20.40 98.16 36.02 19.84 36.93 23.14 67.35 27.67 19.63 11.81 19.75 55.72 56.28 62.26 20.48 24.02 53.02 60.26 90.17 75.17 66.79 92.09 2.68 84.23 39.94 2.38 87.28 49.85 41.40 32.50 83.22 78.87 67.00 42.83 21.31 32.96 96.92 70.89 75.61 65.87 59.98 14.24 69.66 53.11 65.78 50.11 16.17 46.48 74.45 78.57 94.59 8.19 62.06 -96.88 57.73 92.16 83.03 58.76 54.77 47.30 9.88 99.70 62.05 64.36 31.62 80.17 90.73 68.88 35.90 55.85 42.57 59.39 99.33 65.53 27.60 18.40 24.48 83.54 28.64 5.54 23.23 87.36 15.86 73.21 45.72 67.09 7.01 55.63 39.05 18.73 93.94 78.34 76.22 59.92 63.70 32.48 87.87 45.82 95.55 87.15 82.69 97.26 81.57 90.51 35.39 73.76 93.42 31.62 27.28 69.01 4.07 65.13 40.29 41.17 1.07 28.37 72.95 42.37 77.37 64.85 32.55 20.76 92.61 56.16 88.14 28.64 28.65 92.31 32.42 55.62 97.67 32.09 27.76 36.14 67.38 64.30 90.18 81.96 34.05 18.67 77.15 90.35 97.57 98.47 96.35 38.28 63.98 85.15 27.90 44.94 45.07 3.03 92.25 -92.49 92.21 42.46 52.65 91.67 32.95 54.40 77.04 30.14 37.99 32.78 25.33 57.90 95.07 72.61 55.00 54.00 35.44 19.98 29.20 5.14 17.93 80.76 10.45 14.09 4.75 36.75 41.65 20.62 58.66 10.73 30.48 51.70 20.40 85.47 16.10 7.41 86.69 38.23 79.65 41.37 76.42 53.08 40.38 66.69 74.75 1.29 27.88 6.78 7.53 67.67 11.35 82.33 2.91 73.29 61.78 78.95 25.03 40.71 9.53 85.47 51.84 13.24 97.56 73.07 87.12 31.19 24.40 66.50 57.54 97.65 44.38 92.19 45.12 40.12 41.79 6.92 80.34 0.81 48.85 95.97 99.04 72.49 95.13 83.15 94.17 86.51 67.48 81.75 94.20 22.39 36.11 64.38 51.94 19.52 15.15 65.40 86.94 3.84 3.48 -46.19 78.83 98.36 89.16 32.92 7.23 89.87 83.11 20.92 90.09 24.07 40.49 63.87 15.81 17.24 65.96 32.89 1.05 54.13 59.05 50.86 93.90 71.63 61.58 37.12 29.52 98.25 64.56 29.00 0.30 69.31 90.98 2.00 61.85 19.17 29.27 27.18 2.26 85.74 72.31 16.48 59.29 0.97 31.82 30.24 90.19 31.97 98.39 3.96 98.31 38.09 34.91 7.15 86.43 13.18 32.40 63.11 26.93 9.28 69.02 69.49 45.00 76.68 34.02 30.05 26.53 4.98 70.49 36.00 98.12 19.86 65.90 12.52 27.15 48.43 32.32 31.58 69.47 72.69 21.72 92.55 50.72 61.97 94.34 62.23 59.48 61.67 35.18 4.84 64.34 76.48 9.20 25.86 12.05 16.36 96.54 17.23 14.10 82.43 71.82 -21.93 56.32 17.31 23.93 58.70 69.92 53.96 52.43 81.77 94.45 64.86 60.73 59.96 15.61 45.15 71.56 28.91 31.97 73.63 81.54 88.48 44.02 83.04 69.46 90.35 79.06 72.95 69.61 99.51 9.26 37.25 99.98 88.55 55.84 49.05 22.12 59.13 3.54 12.86 60.10 90.62 69.04 57.62 54.59 8.68 33.96 58.02 43.57 24.74 2.90 49.01 70.76 25.35 55.14 21.06 13.21 85.19 1.69 1.38 48.65 19.06 71.65 9.98 8.62 70.54 41.99 93.93 61.10 47.44 19.49 41.36 23.07 7.44 7.56 37.32 76.13 52.05 63.88 66.95 93.62 94.19 61.12 18.67 42.64 16.38 30.90 72.67 87.45 8.40 33.34 92.38 7.53 40.81 84.56 24.07 62.84 21.69 99.75 76.85 88.23 -71.04 79.78 80.83 15.23 26.89 8.99 26.85 99.43 17.46 92.55 76.24 98.47 85.36 41.63 49.05 0.41 27.96 77.15 76.07 95.47 26.11 44.00 72.43 10.96 63.02 22.67 1.81 19.08 97.26 64.45 26.42 26.79 63.39 84.89 19.51 90.46 32.49 58.71 60.99 96.06 99.99 55.29 39.08 59.30 86.87 0.07 53.96 58.66 41.90 20.28 45.53 23.78 45.17 48.29 99.20 50.30 57.00 61.66 11.05 23.22 14.99 4.45 57.09 39.46 94.73 55.68 36.54 62.64 89.33 88.53 70.19 57.00 95.95 57.07 51.99 78.99 13.36 81.44 52.36 72.07 11.29 91.77 58.18 51.96 21.50 78.98 43.24 63.24 41.56 89.67 79.23 55.03 97.80 97.66 92.27 76.27 18.83 56.14 51.77 90.44 -92.38 73.85 7.63 51.80 10.43 16.08 23.44 98.23 61.06 68.55 5.56 31.10 65.86 92.13 82.33 51.28 56.79 24.21 87.06 65.83 14.90 66.10 60.86 87.08 67.97 29.91 9.41 28.47 73.64 94.99 70.88 42.31 88.72 45.68 62.08 64.00 81.87 88.47 10.39 52.72 72.36 77.76 54.33 72.78 68.32 13.08 32.51 71.36 68.64 13.87 56.77 59.04 4.63 26.09 72.97 75.15 39.38 55.74 6.22 50.56 65.22 39.13 91.27 74.40 61.78 36.62 22.55 12.71 94.89 20.48 74.52 30.00 86.81 85.96 61.49 75.04 29.17 90.70 32.50 59.23 84.25 39.90 90.65 20.72 66.40 70.00 9.87 85.15 97.29 45.50 26.35 87.65 22.55 87.27 81.36 92.80 82.24 71.26 15.37 93.64 -94.68 33.79 17.45 63.77 29.22 74.13 32.05 69.93 11.62 30.60 95.20 44.36 92.54 11.72 32.68 16.86 30.71 18.37 33.44 9.60 49.97 78.38 1.75 76.60 96.16 82.00 53.62 90.37 3.37 5.55 35.57 11.08 2.16 54.39 68.38 15.65 83.80 47.02 40.59 6.76 37.99 21.70 17.01 85.20 43.17 5.84 50.52 47.37 71.64 50.34 2.15 66.27 88.98 59.06 96.11 40.13 26.59 76.14 25.30 15.68 35.40 81.56 22.32 54.58 67.49 17.15 22.04 3.43 25.16 28.46 25.49 23.57 84.38 89.47 61.90 55.94 13.17 34.74 31.71 93.51 67.90 69.85 42.83 13.22 8.74 39.19 4.02 60.46 82.27 17.04 44.30 16.62 28.95 5.97 55.47 98.78 64.59 93.23 27.76 76.92 -48.68 98.50 0.39 79.61 43.82 32.03 43.91 40.23 48.16 14.48 56.56 58.57 16.27 35.03 77.76 65.95 23.89 36.47 87.88 30.74 14.57 77.40 65.18 55.36 67.41 90.92 37.86 10.83 28.91 93.73 99.73 37.25 40.66 62.01 49.99 83.29 0.62 88.16 96.18 95.82 23.61 3.91 88.98 78.94 7.45 44.51 51.01 82.95 27.31 33.92 73.14 96.96 21.31 84.18 47.63 98.89 67.93 31.02 50.22 37.69 57.57 51.34 53.43 3.49 80.10 31.19 19.30 40.64 77.19 5.21 88.29 80.14 97.39 11.76 31.99 92.56 12.51 25.35 19.40 73.61 96.90 82.59 5.43 70.14 37.35 73.18 76.20 75.02 52.55 77.92 92.98 5.70 22.69 10.52 69.04 81.07 41.13 83.02 26.89 34.15 -0.92 31.59 33.51 17.04 30.44 49.35 20.05 85.73 83.57 45.08 92.26 77.32 43.54 70.42 80.54 54.28 74.09 18.14 4.69 88.03 33.10 47.21 25.36 4.93 91.97 20.28 3.01 78.39 76.65 96.45 53.02 67.18 29.82 55.63 19.57 73.56 59.74 42.42 16.07 14.53 53.52 3.76 55.19 84.85 24.46 39.08 2.06 50.19 61.97 91.59 36.52 96.96 36.32 54.63 5.11 47.98 29.67 1.23 71.40 74.24 39.18 24.37 2.62 58.45 88.99 34.90 34.59 45.22 14.36 44.38 72.18 29.71 14.44 5.36 8.73 18.53 89.55 71.60 82.12 80.32 10.11 44.10 52.50 2.51 99.63 93.00 40.51 44.47 8.90 59.63 3.44 28.24 41.24 41.15 56.95 47.57 92.86 1.11 13.43 52.71 -26.80 73.61 83.59 70.48 19.75 27.46 84.50 84.56 24.72 99.09 41.47 23.23 35.97 52.78 35.72 11.77 38.32 48.79 28.10 31.28 44.39 19.64 42.90 15.66 89.84 96.71 30.82 14.11 97.01 97.59 16.56 22.65 68.45 22.77 97.03 89.00 50.22 4.02 0.54 32.47 77.95 49.06 8.60 72.31 54.41 33.53 21.69 97.76 91.88 97.31 96.57 82.15 82.40 32.15 83.88 5.80 55.22 6.32 79.11 9.61 8.20 95.50 8.39 47.88 71.45 91.31 64.97 56.66 84.68 50.99 16.17 97.79 35.56 92.85 79.28 5.46 54.85 54.88 16.86 5.64 24.15 48.36 24.98 78.47 80.50 78.28 78.52 69.55 97.47 51.72 28.00 92.31 8.81 63.46 65.91 14.78 25.44 74.85 6.73 28.78 -20.40 84.69 16.23 63.46 98.47 38.71 37.68 42.60 44.14 15.77 82.18 95.04 38.01 87.15 92.08 58.10 23.98 35.91 77.03 55.57 99.64 78.06 53.25 22.89 38.63 33.20 68.32 45.20 93.87 66.54 6.48 85.18 5.53 2.72 58.63 6.18 98.10 74.41 14.77 42.57 15.39 66.92 65.37 82.64 49.19 23.95 48.12 12.24 15.94 62.55 52.55 41.31 49.14 99.03 11.54 16.58 92.80 37.99 45.35 32.54 34.83 0.86 69.55 12.48 67.47 57.14 82.84 12.73 33.06 46.29 31.85 45.36 21.93 85.52 93.00 26.52 77.77 79.85 31.00 84.56 1.27 5.81 12.08 82.06 52.89 82.87 9.97 12.42 37.64 91.26 76.29 67.43 1.25 43.54 58.11 28.70 30.00 93.22 18.88 4.57 -59.56 16.17 30.69 79.15 47.67 93.04 7.74 32.83 58.36 25.27 60.86 4.13 82.84 56.59 96.76 71.18 3.74 20.62 86.00 75.38 18.55 53.79 73.38 53.87 83.84 43.54 98.95 43.46 26.23 29.52 7.52 37.99 2.09 85.48 29.43 32.18 29.39 17.98 8.84 93.75 90.09 19.91 85.74 55.84 47.93 28.45 28.97 88.02 85.04 2.07 35.43 95.72 55.46 40.29 39.58 59.02 88.87 72.43 66.21 61.40 89.26 52.18 48.21 6.37 91.80 30.65 50.50 62.43 35.47 26.58 81.97 43.53 54.57 78.20 24.86 88.43 21.75 57.69 72.79 61.65 23.48 28.62 19.99 23.01 5.58 11.12 39.30 15.56 56.62 8.55 90.51 12.53 45.07 42.79 18.30 73.24 62.90 96.53 65.54 39.83 -29.61 99.25 87.51 78.14 48.47 78.17 36.93 59.59 37.49 10.49 36.27 3.92 9.41 52.58 72.77 54.77 91.39 98.91 15.32 84.63 80.75 36.87 19.54 64.79 89.75 74.41 19.54 65.74 30.95 12.78 79.09 16.39 38.11 77.49 28.85 15.73 31.23 52.25 50.04 12.76 58.63 67.86 43.23 16.40 45.87 14.58 81.53 64.16 73.98 35.53 41.07 54.58 8.72 57.36 78.07 46.77 67.12 58.27 55.25 91.62 34.75 33.60 85.12 98.67 23.94 50.53 36.76 5.67 41.93 61.72 21.16 1.66 56.65 67.20 53.01 42.09 49.01 2.04 46.00 41.04 46.12 48.20 48.90 19.74 0.40 46.45 47.31 31.70 79.04 65.02 41.40 82.44 24.35 59.22 87.25 45.33 62.71 68.16 83.87 81.31 -16.03 77.74 48.25 41.39 79.86 90.93 43.38 87.51 70.89 81.43 69.92 80.60 23.88 63.00 73.22 13.36 60.03 73.63 30.88 84.40 4.17 52.01 30.89 90.45 2.12 24.52 28.66 63.36 94.72 36.95 46.60 57.62 10.00 23.07 35.33 62.53 11.24 56.02 72.66 67.42 81.87 21.70 85.12 86.14 27.17 19.01 15.32 58.34 28.63 17.63 67.26 14.81 58.06 92.42 76.69 34.36 23.61 66.73 1.40 27.05 30.48 1.99 20.70 27.28 42.92 16.56 88.04 41.25 89.76 14.08 61.26 76.91 66.48 58.90 70.72 76.95 61.42 66.53 53.91 82.32 70.46 4.99 28.65 69.02 46.37 3.47 55.81 23.04 20.99 4.88 4.02 84.48 25.70 29.31 30.65 68.26 15.66 29.95 14.79 9.53 -37.19 55.12 99.04 83.37 52.50 31.79 40.89 63.09 75.85 98.57 0.53 29.95 28.17 45.27 39.11 89.46 41.65 69.74 26.17 55.83 36.63 73.52 63.86 33.85 99.28 63.74 5.21 87.18 44.27 0.37 28.91 99.94 66.62 43.69 57.91 31.53 81.97 70.63 40.79 50.92 30.51 24.68 14.01 71.90 81.63 34.37 69.04 1.69 71.05 3.54 69.71 48.96 55.88 46.92 91.38 74.41 48.69 12.01 82.94 3.87 51.32 26.45 89.85 36.28 25.49 61.84 66.06 7.53 75.38 3.83 84.67 62.30 27.78 17.45 37.80 71.13 15.34 91.72 96.77 58.83 36.84 48.62 52.06 30.03 20.60 7.55 82.02 60.22 49.70 60.42 26.11 90.60 16.16 6.67 83.82 40.47 71.42 60.09 55.97 81.16 -31.76 17.59 90.80 42.62 52.01 66.55 43.78 68.92 89.94 57.54 41.07 42.47 28.26 83.45 30.02 27.67 66.19 53.26 8.25 97.82 84.31 52.82 94.93 17.61 26.99 93.63 11.73 49.65 55.71 71.80 1.91 22.87 96.00 66.55 50.38 81.48 29.65 53.29 96.45 66.19 52.14 91.39 45.41 7.43 7.41 12.76 14.63 33.57 75.29 16.10 67.50 82.56 6.00 71.08 84.05 29.18 87.97 34.07 53.72 53.04 78.83 9.18 10.18 0.82 14.57 16.57 44.13 77.91 22.49 28.60 92.27 45.79 19.23 8.70 96.56 51.32 69.09 90.36 30.64 1.60 49.61 34.82 32.95 36.96 46.89 72.46 26.53 44.99 22.10 93.35 41.13 10.80 65.52 32.66 72.58 18.54 77.03 98.87 97.19 61.80 -8.07 49.57 75.92 89.00 45.62 77.69 63.36 93.53 72.33 56.60 93.00 18.07 52.47 13.98 47.33 58.59 79.49 56.23 96.84 78.40 73.57 38.05 39.23 85.36 71.76 17.80 12.06 27.57 2.68 73.52 31.14 33.63 98.59 67.11 49.43 42.54 40.85 77.74 88.37 93.07 74.69 19.07 67.66 75.10 58.69 46.76 33.17 52.65 44.04 89.95 91.23 3.26 26.85 73.72 89.48 66.43 13.55 37.64 76.66 34.28 76.25 24.90 16.50 2.26 94.13 6.20 54.22 0.66 86.47 23.58 50.49 93.77 98.28 28.68 58.80 73.11 50.96 92.20 28.82 13.73 35.22 8.13 42.55 18.57 2.34 83.71 89.73 78.75 22.08 21.45 67.64 82.72 87.16 2.64 19.52 40.81 44.87 49.61 68.58 70.87 -20.30 26.28 32.84 12.84 34.87 76.75 42.19 52.78 2.25 93.68 8.48 79.24 21.26 27.53 57.73 89.03 97.85 48.93 0.01 46.45 53.40 23.95 70.88 67.64 74.08 90.73 31.67 6.58 77.01 97.36 27.98 52.89 37.16 21.56 67.47 96.92 75.11 8.40 81.22 55.45 17.30 28.89 48.35 25.83 40.86 93.39 16.61 68.24 65.29 99.97 62.06 90.83 75.86 93.31 48.74 87.80 98.02 7.77 96.14 43.16 37.23 88.47 79.29 90.65 57.87 54.13 91.74 2.02 6.75 85.46 37.21 19.36 39.91 55.62 0.46 32.22 50.54 73.47 17.99 47.22 5.41 24.04 97.64 71.10 2.29 12.66 24.88 86.47 43.35 68.67 2.49 28.09 95.90 48.89 80.41 5.07 0.26 24.22 28.46 98.48 -19.99 99.61 71.34 99.41 19.27 25.96 55.51 79.96 7.16 62.66 33.20 27.68 44.46 76.54 28.73 17.06 76.85 11.22 34.33 23.91 94.00 56.66 41.41 52.93 30.48 50.73 79.28 62.27 74.03 78.97 78.24 22.73 97.94 57.94 69.69 61.04 34.86 52.87 98.66 82.34 19.56 88.98 64.64 18.67 15.96 84.21 89.44 33.48 11.40 25.62 57.34 82.84 53.10 80.93 6.95 44.00 4.97 0.07 73.67 25.32 91.42 70.98 80.16 21.36 60.08 40.75 46.44 70.00 88.89 89.03 13.82 9.64 68.85 28.14 80.03 0.26 74.99 13.07 73.89 85.33 97.74 58.83 99.51 74.77 47.47 41.54 23.40 88.98 22.49 14.31 15.86 65.58 74.16 43.90 95.55 17.33 81.01 19.98 38.02 99.07 -73.35 51.79 94.00 74.68 37.67 47.11 33.48 63.07 4.00 39.25 47.77 51.06 26.88 27.01 82.93 71.17 40.39 64.50 40.37 16.85 47.27 23.55 20.82 1.47 53.73 30.13 67.30 43.98 26.55 31.45 0.67 80.27 72.09 1.78 91.12 91.81 53.13 66.09 48.41 14.50 43.60 31.00 30.74 99.30 18.04 70.13 72.07 37.39 34.63 73.64 90.67 21.64 19.03 15.58 52.04 20.47 15.32 0.15 14.99 38.83 20.16 65.57 64.10 44.25 97.86 84.49 80.12 80.91 27.43 87.00 87.97 82.78 0.13 41.05 37.66 27.06 26.58 58.93 33.98 29.19 49.55 57.21 2.35 6.96 48.04 64.48 97.85 0.15 96.80 59.49 73.20 45.85 67.65 28.76 30.61 31.52 26.12 50.64 67.19 47.89 -94.64 87.53 72.32 39.45 94.74 57.94 80.69 60.70 10.41 26.23 64.79 42.22 70.17 20.22 75.74 27.84 54.41 73.88 25.71 21.05 37.53 38.12 40.15 14.85 18.62 80.33 86.13 7.88 84.30 53.75 10.40 96.03 35.92 91.68 94.60 43.56 17.63 18.09 71.50 86.46 10.77 6.39 48.25 39.35 17.24 43.67 68.69 98.07 70.06 69.32 60.89 3.99 15.94 26.68 49.35 31.65 70.31 87.06 97.49 64.75 5.21 93.92 38.26 98.57 17.72 81.43 59.43 75.96 45.32 95.38 51.30 37.83 82.08 23.27 1.33 97.38 56.59 9.48 8.45 50.31 30.46 50.61 78.36 67.24 91.10 58.83 40.43 10.75 77.52 0.28 27.64 85.21 44.49 48.62 83.19 10.69 54.25 13.17 91.59 90.00 -6.32 52.91 52.11 81.70 27.26 85.42 33.75 53.48 1.26 58.02 13.91 70.23 21.35 76.74 25.68 58.86 5.31 43.05 69.13 97.24 34.52 60.70 61.12 85.75 17.63 47.26 70.43 19.66 20.43 49.13 77.81 80.96 58.02 98.68 57.48 66.29 33.35 77.57 36.18 52.69 28.21 98.77 6.12 11.91 24.07 11.81 82.39 71.36 76.52 60.82 46.88 41.18 32.33 12.12 96.02 41.58 8.68 85.62 81.95 70.04 13.87 13.40 52.70 25.82 87.23 93.97 39.46 45.13 52.68 7.94 83.80 26.12 73.55 19.74 3.54 38.11 73.73 71.64 15.59 96.69 82.52 85.89 27.95 32.76 9.72 82.41 27.21 44.88 77.56 33.96 77.27 66.89 1.12 92.35 68.70 5.65 18.15 97.00 31.71 37.76 -6.34 36.47 27.12 39.48 12.37 68.28 87.04 46.24 31.51 55.50 70.92 45.59 96.98 54.17 39.75 4.22 30.77 42.99 95.56 9.08 63.55 75.71 5.82 78.37 68.94 23.84 43.43 4.80 94.23 81.55 36.06 0.87 54.60 63.28 22.36 99.38 84.27 3.61 74.70 15.75 55.76 18.65 92.62 72.20 48.24 25.00 63.39 8.85 15.15 12.81 90.40 55.92 24.89 58.36 5.35 99.53 46.52 17.17 88.73 23.35 96.78 25.07 31.75 35.73 48.55 35.37 73.66 60.50 43.10 19.80 11.50 59.28 75.02 61.83 88.61 67.84 96.73 7.52 5.30 3.71 93.72 70.38 94.97 89.61 99.21 49.53 79.82 9.78 38.90 17.15 11.75 39.91 38.20 67.04 89.17 34.98 94.88 53.92 45.52 39.84 -61.24 55.95 89.12 33.40 21.23 78.52 36.29 90.01 42.61 25.91 85.35 24.81 74.60 48.14 4.80 23.95 56.12 17.24 26.33 95.98 36.00 76.22 18.33 76.82 78.38 13.68 31.28 62.25 55.93 24.73 57.59 9.71 9.34 9.56 74.23 35.97 41.00 52.69 92.89 98.21 58.74 40.32 70.62 45.67 11.92 50.69 19.74 89.23 70.58 53.70 34.77 98.29 81.91 1.19 67.30 9.42 35.68 33.07 9.80 57.28 18.75 70.96 89.41 94.54 85.27 79.62 12.96 38.96 11.82 87.51 78.43 21.56 73.35 87.91 13.55 24.69 8.79 2.31 90.53 49.90 37.77 46.56 96.56 12.87 61.86 32.77 97.84 10.44 49.65 88.67 52.05 41.86 53.09 67.81 14.05 20.76 78.18 12.38 35.41 58.25 -19.03 0.13 35.15 32.20 25.28 4.02 57.81 93.73 15.82 96.14 81.83 3.87 61.95 66.77 94.98 14.33 31.07 95.66 23.53 52.38 30.85 64.14 45.15 12.92 25.91 23.41 70.00 28.16 73.72 69.15 14.73 42.25 8.17 61.57 81.12 66.56 65.00 70.72 22.74 3.02 13.43 83.02 69.92 21.80 53.93 95.11 51.80 94.95 32.31 35.50 36.15 23.86 70.49 40.84 24.31 51.54 93.10 46.69 94.37 71.27 39.69 29.69 47.71 73.37 80.10 84.39 13.71 17.63 13.41 24.83 53.55 57.91 64.28 36.31 77.45 7.96 91.05 43.64 2.26 16.63 19.50 61.99 15.73 77.88 77.91 48.76 27.10 0.30 77.32 47.57 25.77 46.84 28.27 89.35 6.13 31.72 52.71 92.34 33.26 57.52 -71.01 39.28 23.00 28.83 88.09 72.95 27.71 43.31 75.82 42.01 28.78 28.96 26.68 20.17 79.72 20.95 59.33 19.28 25.38 68.01 81.36 56.69 85.53 74.58 35.26 66.67 46.35 87.00 98.50 81.80 11.33 9.02 23.32 41.24 49.25 86.42 95.40 54.48 80.13 80.04 98.40 6.25 79.58 48.53 30.96 26.51 39.77 13.85 56.24 13.14 85.80 28.28 6.24 50.43 89.91 50.30 62.82 87.52 61.93 37.48 64.40 40.81 26.15 65.23 51.41 49.27 86.08 76.36 62.24 57.81 18.36 50.12 39.69 94.56 18.15 18.47 27.28 87.63 37.40 61.55 51.83 83.66 24.09 77.66 6.10 52.18 91.12 42.29 9.15 94.60 66.55 89.83 58.69 64.48 95.54 59.17 66.71 30.17 26.08 86.53 -59.74 29.81 29.52 77.95 10.79 11.65 7.11 80.31 55.61 48.77 33.63 88.70 34.50 16.52 86.00 72.52 26.41 35.89 31.28 34.89 13.15 98.53 70.78 64.16 14.79 93.45 44.54 94.45 99.17 35.25 36.33 82.46 79.45 44.15 88.80 45.63 1.76 60.91 62.78 82.47 90.17 83.81 57.82 38.67 43.47 48.84 85.09 31.33 87.38 54.36 63.18 59.43 51.02 28.38 85.31 74.21 2.03 46.78 88.54 15.69 82.54 21.06 42.39 40.10 92.47 18.61 71.55 37.44 96.94 69.02 62.36 98.07 54.10 42.48 80.87 36.17 15.57 45.86 71.53 84.40 17.14 2.37 81.29 70.00 72.39 72.07 35.82 98.22 23.11 16.18 27.79 47.84 62.28 39.89 57.28 54.66 92.46 32.43 62.11 84.34 -84.60 62.56 48.33 95.28 97.59 2.49 78.29 49.09 79.80 31.55 89.81 75.28 83.23 52.41 26.52 60.75 0.49 28.49 35.83 56.70 27.36 88.95 51.20 69.04 67.34 79.39 46.23 1.76 90.05 34.43 24.28 48.32 81.94 35.53 69.04 88.34 90.27 1.32 44.46 69.94 20.73 51.45 67.50 7.33 99.88 60.85 22.49 65.22 97.93 16.72 29.92 67.90 21.83 29.52 86.08 35.11 69.33 71.77 10.01 68.05 13.35 1.96 93.34 99.97 13.03 45.86 8.34 18.73 12.99 87.80 43.28 70.97 90.26 11.18 84.13 14.67 63.63 35.29 90.11 95.07 72.48 46.85 32.70 70.76 13.00 82.74 16.84 29.66 47.32 49.06 13.34 53.19 76.75 7.08 80.97 78.67 5.85 59.79 74.41 37.34 -10.29 75.52 27.22 81.12 37.32 37.57 53.51 98.09 32.87 68.09 65.30 11.88 54.98 9.36 84.81 19.75 16.22 29.31 61.92 16.96 43.04 90.47 5.16 39.19 64.89 57.34 0.50 50.93 15.51 91.74 66.26 49.65 51.15 18.81 31.29 46.57 5.26 48.67 52.24 86.76 35.20 2.17 19.19 2.65 28.06 25.96 89.21 17.33 82.65 42.86 17.96 87.20 61.22 25.85 12.60 46.43 63.22 54.41 15.59 6.15 82.77 49.89 16.40 65.29 5.31 83.57 5.68 46.06 41.76 79.76 66.98 37.71 51.29 30.63 58.47 5.00 20.83 88.37 34.90 15.96 42.61 10.68 31.08 86.72 61.26 70.32 55.19 77.85 78.08 89.62 94.50 4.51 45.91 36.72 27.85 39.63 21.36 17.38 85.00 0.38 -17.25 59.47 39.11 89.13 77.23 74.33 7.31 35.93 75.66 54.59 86.91 95.41 39.48 17.08 83.38 29.14 8.03 27.62 27.40 65.73 28.47 93.47 13.83 38.83 28.41 6.26 79.53 75.92 28.71 32.71 31.02 49.96 50.02 98.69 54.87 11.81 36.54 97.69 11.42 82.30 53.98 70.86 78.65 80.70 50.72 62.98 60.67 32.72 63.15 83.06 12.32 38.95 36.69 25.56 11.96 80.06 86.34 69.98 3.66 25.73 27.86 97.66 77.09 16.48 67.77 60.73 0.09 49.30 78.78 87.72 62.21 33.84 75.04 63.58 93.80 39.86 30.91 9.87 27.89 75.51 45.27 95.04 5.91 85.88 84.18 83.44 5.04 13.59 39.71 32.12 26.68 19.61 70.69 39.64 38.51 11.59 88.33 23.87 61.83 16.42 -78.71 86.73 20.07 82.65 43.02 28.27 39.48 83.24 3.66 28.10 93.73 93.93 6.90 77.12 67.62 16.99 92.05 47.32 99.39 6.82 92.27 45.02 27.37 85.26 76.81 34.71 49.56 96.60 22.48 6.35 73.81 56.36 99.76 96.12 22.11 28.35 32.87 53.76 22.25 52.05 24.89 71.94 93.20 46.00 22.59 56.09 38.30 59.23 81.20 11.63 95.15 64.14 30.23 76.85 3.58 47.33 80.35 24.62 0.37 60.18 45.46 92.17 41.95 19.66 35.04 23.58 37.83 49.11 79.90 86.68 28.18 65.73 7.26 22.50 93.64 34.47 63.60 98.00 50.35 61.48 49.38 23.65 58.07 66.58 60.31 43.08 41.35 26.13 40.55 14.89 89.24 57.26 3.14 35.02 2.93 17.43 67.46 62.44 32.77 34.26 -7.06 51.55 37.85 89.86 5.87 53.82 87.00 53.89 92.09 44.14 31.18 70.72 88.02 58.23 59.96 40.45 56.76 57.78 85.41 37.15 41.07 12.67 71.90 65.76 81.62 74.71 93.27 98.28 7.49 79.42 15.28 25.24 57.84 52.09 59.61 31.35 34.56 17.41 4.65 53.07 44.67 15.28 38.21 80.65 31.88 83.40 97.10 60.80 2.55 80.20 21.54 34.79 82.15 54.43 57.21 59.59 40.97 39.02 44.71 13.37 38.36 81.80 94.65 61.43 42.67 79.09 78.73 52.91 92.97 71.04 40.57 48.89 99.84 5.75 94.83 61.74 51.77 87.39 51.35 6.84 14.52 6.51 45.17 71.60 97.81 3.04 72.88 89.14 54.21 24.86 9.26 22.39 4.13 91.60 1.29 27.51 84.97 93.95 12.38 14.29 -61.23 53.98 94.78 83.09 45.06 0.08 97.05 17.08 0.16 1.78 77.63 78.09 67.42 50.65 49.58 43.60 45.56 54.89 36.09 24.40 81.72 89.01 44.76 63.22 11.56 7.35 73.41 10.25 58.29 33.64 72.57 4.01 56.09 71.57 87.39 18.01 84.73 35.04 34.99 68.74 16.89 26.03 37.63 57.28 27.70 49.66 94.25 30.28 3.56 4.91 67.76 28.62 60.25 74.06 80.26 97.22 52.44 58.87 90.33 69.32 32.68 31.06 95.51 72.13 52.39 51.14 80.45 71.09 26.19 85.54 17.24 52.74 72.99 8.39 85.04 5.69 50.98 79.79 98.72 31.98 2.46 90.85 88.92 9.30 75.94 62.04 93.92 77.25 56.87 58.84 84.54 25.23 11.93 12.43 82.52 45.21 27.89 80.43 50.13 16.48 -24.38 98.46 19.50 91.78 35.07 96.29 68.11 51.68 15.33 0.88 29.50 80.75 3.75 35.59 40.42 88.34 75.17 12.67 80.00 25.65 3.29 1.72 25.55 64.15 92.00 98.69 29.24 80.33 80.72 25.94 20.65 99.66 82.41 23.89 42.13 97.72 60.37 54.29 52.11 32.55 17.01 54.31 19.65 73.89 5.25 90.89 93.03 86.16 13.89 23.57 86.46 54.08 59.93 47.10 59.03 57.78 91.39 36.42 23.04 16.96 94.67 6.63 19.92 97.62 80.10 35.04 84.55 9.66 5.05 98.66 98.99 99.11 3.11 58.11 99.12 58.82 51.60 71.60 63.43 48.95 21.14 73.59 36.62 34.08 61.32 43.64 93.39 80.06 86.82 16.35 18.09 51.51 42.82 91.35 97.99 18.98 70.70 60.42 18.64 67.83 -80.26 28.12 95.39 88.60 4.31 41.21 80.47 93.88 56.54 60.21 50.05 86.91 32.36 79.84 73.90 81.83 85.40 30.82 82.23 20.81 4.52 75.49 46.44 22.18 13.60 2.71 6.11 62.82 24.91 14.85 91.69 23.70 77.26 65.08 96.00 77.50 85.00 85.21 15.98 84.16 63.49 16.31 61.30 53.38 89.95 8.92 77.28 18.95 80.58 42.84 26.16 94.57 31.86 48.44 22.86 52.53 91.30 52.52 37.61 99.79 13.89 91.93 18.06 96.92 26.18 58.25 85.68 59.28 14.71 90.45 74.73 4.00 73.33 86.13 32.35 78.84 21.10 18.04 6.46 48.99 35.33 57.46 91.97 31.30 42.77 54.38 56.40 57.74 0.67 54.28 80.27 5.76 50.78 30.19 57.18 32.29 99.83 69.76 51.24 24.52 -19.20 39.61 34.39 21.70 55.83 44.64 94.71 3.64 81.78 1.68 19.68 9.10 50.61 96.38 19.39 5.26 43.81 62.21 71.90 0.71 46.41 71.34 20.44 47.04 71.39 28.56 68.04 22.57 11.17 30.89 9.56 95.41 69.00 75.50 41.12 60.89 75.44 54.22 9.34 28.80 71.26 98.95 73.65 66.26 95.32 89.12 13.96 48.06 24.61 89.71 72.58 6.64 91.76 75.55 69.35 42.73 35.91 22.28 46.22 0.03 57.19 17.76 23.40 31.29 36.54 72.25 44.33 21.09 62.65 43.64 87.17 82.91 7.61 71.24 14.34 43.01 19.79 62.35 36.46 6.47 61.24 44.48 99.46 93.95 14.93 88.59 72.12 87.06 89.83 10.95 9.24 4.91 25.83 65.61 6.26 11.05 65.07 0.71 59.68 30.24 -93.68 49.50 41.61 51.13 33.63 62.72 99.82 52.13 71.37 71.11 33.23 19.85 2.20 19.19 89.06 76.68 46.93 72.41 8.58 12.61 34.86 0.60 75.74 40.32 26.30 48.16 81.97 21.42 23.79 53.84 14.58 73.15 75.19 19.95 17.22 91.05 85.41 74.81 36.63 55.02 23.80 85.99 58.91 53.94 61.60 51.53 71.74 56.65 87.08 14.98 75.95 57.22 44.72 87.25 12.23 29.67 20.11 84.52 16.41 16.09 22.72 46.13 20.71 34.45 74.85 76.67 79.18 92.40 67.35 71.63 50.33 99.89 34.67 56.75 25.28 13.75 16.62 70.85 62.10 16.20 65.63 71.28 60.47 87.68 87.57 94.57 10.67 29.44 35.67 38.27 55.36 48.78 40.69 21.60 72.42 9.75 58.54 69.40 14.96 16.72 -76.12 37.98 30.36 9.99 40.82 35.49 3.26 78.31 89.62 31.62 62.74 84.18 49.82 86.14 97.36 21.94 96.90 47.93 70.25 40.27 1.44 17.77 5.45 50.93 31.92 13.36 1.33 42.86 15.26 19.82 29.18 70.38 99.97 20.21 66.66 92.12 68.26 63.20 12.84 31.42 43.04 23.14 88.87 93.67 38.30 23.54 53.11 44.24 62.71 94.01 22.45 1.98 36.02 2.81 4.35 41.78 3.21 40.58 13.52 7.15 94.24 93.89 69.36 31.26 2.30 45.59 13.35 55.31 87.08 3.22 75.65 17.02 39.02 84.47 62.03 14.90 87.81 8.34 89.59 84.89 4.90 15.36 33.11 88.60 39.40 21.69 69.71 11.78 34.41 79.88 18.80 69.29 62.27 38.77 84.51 90.27 6.55 42.81 41.43 90.80 -92.06 87.88 92.51 45.40 69.97 38.16 60.14 89.07 9.97 41.95 90.31 30.63 43.13 79.92 15.64 47.82 47.40 30.27 72.80 1.51 22.16 80.59 84.70 37.42 48.09 50.21 57.90 60.28 38.24 13.34 98.02 18.56 85.36 69.66 14.39 14.33 9.90 78.51 26.19 26.79 68.50 78.14 14.84 94.18 98.70 88.55 81.97 21.43 95.13 47.87 22.77 68.13 12.42 87.52 7.41 70.45 11.64 42.74 52.75 69.67 69.26 56.90 57.81 44.45 83.29 81.95 27.61 22.75 80.02 58.11 14.04 24.25 45.32 70.74 98.53 33.77 57.00 93.90 91.98 88.21 72.83 66.20 79.90 62.88 2.29 80.98 66.42 27.62 25.10 5.91 71.00 4.29 51.14 94.26 72.22 84.70 70.33 49.04 75.40 50.08 -86.02 15.10 66.09 29.65 81.94 9.92 1.09 45.21 15.69 10.15 61.65 4.48 46.13 99.63 27.80 95.09 74.72 7.77 31.07 52.63 46.97 32.22 74.63 51.44 34.64 98.69 27.45 94.69 64.46 19.32 70.94 66.37 40.09 52.22 36.42 28.80 69.30 61.96 2.74 69.72 58.03 14.67 44.17 94.68 55.25 84.92 92.33 3.45 58.00 1.87 92.91 27.73 10.07 2.42 17.40 40.48 11.42 80.88 57.01 82.32 91.18 23.80 48.18 88.95 23.29 73.42 13.29 94.95 14.33 33.98 30.92 7.40 17.13 96.66 52.93 14.80 99.47 66.40 77.57 90.17 16.53 35.63 55.00 28.37 38.77 75.02 49.58 51.65 77.71 38.31 23.18 92.96 99.65 92.05 80.62 63.31 71.97 13.11 19.20 89.13 -82.27 31.47 81.12 71.08 6.37 47.76 67.90 95.15 4.96 85.57 0.84 97.90 37.12 2.99 55.76 67.31 17.66 42.12 21.57 59.05 19.10 14.38 94.75 25.80 68.55 32.11 25.02 88.65 16.34 16.60 11.02 48.10 68.48 88.73 56.41 2.12 28.24 74.39 91.23 78.42 83.80 84.82 22.55 97.40 53.46 48.98 4.39 45.10 60.49 67.71 11.07 30.73 69.02 32.19 20.72 91.50 5.62 63.59 60.18 38.95 11.98 57.35 60.58 27.24 44.71 27.15 9.21 61.23 9.59 18.46 9.20 91.95 50.82 93.42 24.16 15.24 86.32 53.71 2.91 2.66 1.47 74.93 81.81 62.13 77.94 70.89 56.13 44.94 22.73 96.43 51.44 3.08 39.59 60.11 86.01 7.41 77.17 22.22 12.16 68.28 -94.26 80.70 13.93 66.88 19.12 64.09 67.26 7.85 49.84 98.40 40.27 67.20 61.51 63.80 48.40 93.47 11.66 60.73 81.27 82.70 97.53 41.42 64.83 30.44 24.35 70.14 7.59 56.15 82.32 96.91 49.72 31.19 17.34 90.51 96.95 90.09 86.16 39.41 95.38 78.99 85.95 85.70 11.87 38.68 37.41 92.52 29.63 65.37 11.54 99.45 65.99 18.23 59.82 89.32 55.23 65.32 18.57 27.61 30.28 22.55 96.34 73.33 51.88 11.15 14.68 92.15 12.20 68.09 3.06 48.32 58.33 24.68 87.05 33.42 33.66 21.55 62.25 63.27 36.32 82.21 34.28 2.42 19.24 6.56 58.51 0.60 31.02 28.37 37.20 63.96 5.94 66.46 52.10 39.90 16.47 53.06 86.47 22.98 83.47 41.41 -28.15 18.10 71.91 49.56 93.93 82.24 92.77 18.04 33.05 0.93 11.84 20.10 78.00 97.28 57.45 80.97 85.40 20.96 48.57 8.04 49.58 19.14 21.52 40.18 19.24 41.90 9.10 71.58 27.97 50.06 13.07 5.39 84.76 42.81 92.77 26.03 76.96 65.22 68.51 6.81 15.41 78.63 56.25 16.97 77.93 71.14 58.30 18.39 62.91 71.45 41.71 95.93 58.93 97.52 31.30 99.05 39.74 38.90 16.70 81.47 50.47 96.10 56.06 65.49 40.01 60.90 90.04 36.23 76.41 99.28 5.99 25.79 48.86 33.51 91.91 97.96 95.61 35.64 69.56 5.06 20.75 55.32 40.93 77.90 41.91 28.32 39.93 51.03 36.72 28.50 32.92 35.44 14.19 37.31 49.98 19.96 70.88 78.25 22.84 83.37 -68.87 51.42 37.77 31.17 92.88 52.49 79.99 4.36 56.38 39.18 88.28 53.27 4.83 55.54 69.51 6.96 63.87 81.79 65.71 38.67 6.14 36.79 4.73 40.34 5.67 79.44 97.12 24.14 96.65 55.07 0.85 1.26 7.25 85.43 68.33 54.12 75.43 72.70 25.56 74.67 70.57 89.07 67.60 14.16 3.29 0.17 79.69 97.11 89.77 72.56 18.16 59.87 30.19 74.17 82.65 95.42 3.76 62.14 84.16 23.86 87.39 38.55 37.58 58.66 22.52 72.62 87.83 79.48 3.35 84.57 26.45 33.06 40.92 15.93 30.18 75.96 34.70 66.65 75.25 82.40 0.48 93.82 62.74 8.30 93.41 81.25 18.75 81.00 13.80 87.72 73.11 44.61 75.58 66.24 53.15 21.90 87.71 56.59 86.71 62.06 -99.32 80.81 95.56 88.44 22.35 64.22 41.45 72.24 73.55 8.19 50.45 46.55 14.22 40.00 92.77 93.70 97.97 47.89 56.59 53.24 96.38 62.10 99.74 15.41 71.94 62.69 24.78 18.29 34.63 58.85 30.11 2.67 64.43 92.64 49.13 62.48 11.27 87.57 0.75 0.08 15.63 66.31 87.68 90.11 48.68 96.96 44.51 81.61 17.30 18.03 38.23 4.27 24.98 9.17 80.21 21.77 51.27 82.15 47.45 66.65 52.12 68.95 62.10 81.97 61.43 69.41 8.28 84.56 93.31 98.73 49.03 98.88 67.18 81.20 73.36 87.75 39.25 70.93 32.59 5.09 35.68 62.55 27.14 31.70 99.67 72.82 82.04 64.63 66.34 66.33 1.20 24.74 48.00 60.20 63.23 66.19 78.90 76.06 4.62 37.09 -24.24 62.44 13.72 51.85 58.14 85.52 79.69 16.53 97.43 51.13 49.25 56.21 40.10 29.78 38.84 70.87 74.13 0.44 1.43 27.32 26.86 14.81 70.85 10.85 57.30 21.67 46.80 51.33 73.52 64.06 34.14 12.05 15.69 48.49 91.62 36.70 28.52 19.46 77.39 47.03 20.92 18.53 0.12 62.92 46.42 1.16 40.27 46.45 65.91 50.54 26.21 7.29 14.35 94.59 89.02 92.50 31.40 2.60 73.12 52.74 23.78 8.15 41.34 58.83 18.09 36.78 52.21 32.58 48.38 70.34 82.30 41.09 38.04 79.18 3.59 38.58 48.40 15.13 39.11 51.30 3.60 92.10 97.11 16.68 22.23 88.04 35.42 79.90 27.34 72.00 38.27 14.46 88.38 26.79 32.33 79.45 60.25 23.35 28.87 88.19 -12.86 76.22 15.95 14.89 46.66 20.67 70.01 74.17 20.62 74.25 21.34 99.58 90.18 9.87 76.01 48.33 71.96 73.35 58.76 22.75 0.27 23.39 95.16 97.80 26.81 77.71 23.88 55.48 29.43 83.93 83.74 65.05 14.89 90.09 56.23 99.24 47.52 0.02 65.13 10.80 9.43 60.70 82.19 63.03 75.04 35.36 62.17 30.84 47.89 29.47 10.25 7.43 68.96 24.75 27.67 59.42 97.48 90.54 93.97 40.31 66.98 51.24 20.52 59.61 35.20 36.23 86.01 2.87 91.36 22.67 18.05 37.39 56.88 53.18 8.71 89.08 61.63 44.24 60.53 13.63 35.79 23.87 87.94 14.97 53.15 97.64 27.07 46.94 3.21 95.87 90.79 86.78 48.83 48.25 70.19 30.46 39.29 90.67 71.40 91.25 -5.60 66.95 66.88 72.58 29.42 6.10 73.35 63.01 12.32 87.67 76.12 41.24 75.27 93.49 75.53 0.13 81.97 98.02 96.69 40.07 94.23 37.88 78.97 42.64 60.71 78.77 78.06 23.76 71.66 8.92 32.56 38.39 11.26 80.22 81.52 20.94 81.62 48.80 75.61 31.31 10.28 72.61 21.84 35.59 56.69 98.36 29.49 54.25 78.02 50.34 51.07 53.73 59.50 22.23 79.04 10.22 70.43 51.51 67.49 1.98 24.54 69.45 71.10 47.72 25.11 54.90 26.57 86.07 38.39 43.80 73.47 95.73 86.71 23.14 55.42 29.52 61.33 78.18 87.22 0.10 43.64 88.93 36.17 7.25 44.86 46.75 57.44 5.62 87.35 3.74 11.12 72.37 79.47 99.22 66.81 76.91 61.69 2.32 57.77 9.10 -35.76 8.47 83.61 22.43 55.42 20.90 57.71 24.64 68.87 39.65 64.22 66.80 73.70 20.79 39.61 16.28 27.73 20.63 2.61 49.28 37.75 95.51 78.81 22.36 59.67 55.55 41.65 6.47 74.47 25.58 75.10 19.57 54.97 51.27 25.58 13.06 84.78 40.30 21.22 78.81 92.80 7.57 39.60 51.42 21.55 99.82 39.64 30.76 50.59 11.18 16.72 75.63 71.65 54.85 66.57 18.19 11.37 8.74 14.47 37.49 16.70 55.29 25.73 8.17 49.26 39.24 7.67 59.72 64.75 79.27 68.86 38.98 2.16 9.94 60.21 87.55 52.91 98.58 94.56 65.79 37.72 45.09 28.89 5.67 65.21 33.92 36.06 71.33 65.24 27.52 38.25 41.69 54.33 62.95 90.06 73.53 24.92 31.63 79.26 98.33 -1.26 83.24 90.11 76.19 77.56 55.92 38.04 19.87 0.59 30.14 62.93 52.80 9.51 35.91 69.71 69.85 44.45 81.04 84.47 52.80 79.21 43.97 17.71 55.80 56.41 34.01 86.86 52.52 24.77 96.96 61.68 60.33 83.18 88.00 74.10 8.19 74.09 31.14 59.85 94.63 27.25 95.53 64.33 34.69 64.25 91.68 92.17 67.98 5.81 15.25 81.71 16.93 13.51 22.12 3.65 23.79 58.14 70.07 27.69 12.66 87.72 85.65 78.94 77.84 59.70 88.96 6.43 0.31 94.34 19.35 85.42 92.50 26.58 7.69 2.67 27.39 53.41 32.18 75.36 94.29 2.37 56.93 29.39 14.92 94.16 12.44 37.21 48.61 65.64 6.71 32.69 38.73 88.62 74.84 25.26 82.81 12.45 18.21 42.89 23.38 -54.85 38.70 95.77 52.62 90.95 87.10 81.46 87.73 64.09 68.13 93.28 63.09 43.02 12.31 8.86 93.63 10.74 97.84 69.10 52.49 6.84 78.11 48.48 84.95 50.84 43.98 80.18 59.35 2.78 32.21 46.92 15.50 47.37 23.45 65.12 67.08 28.34 51.39 27.70 91.73 37.48 2.78 43.22 19.11 57.47 29.81 2.71 58.14 81.64 18.27 19.27 90.82 4.23 95.50 40.02 87.85 46.21 27.49 29.55 26.92 26.19 4.07 11.76 38.83 50.68 55.41 22.34 0.67 37.17 43.07 37.02 94.62 16.39 19.85 23.12 80.77 7.02 40.07 14.61 18.49 3.24 28.35 93.57 86.02 81.10 90.14 47.51 85.75 66.34 86.78 22.36 16.37 94.14 83.20 51.76 89.84 48.32 76.95 5.54 82.99 -8.93 1.36 31.10 75.13 39.11 72.22 39.83 43.75 49.38 11.47 26.33 0.83 7.92 17.97 12.57 4.36 57.99 62.03 25.33 27.46 48.43 73.36 75.15 70.62 45.40 34.05 75.93 43.26 11.74 66.15 46.86 40.89 74.29 66.33 74.76 25.42 99.62 64.80 80.58 41.75 30.99 42.78 68.43 70.28 30.08 8.39 7.05 43.94 7.75 63.66 30.36 76.40 67.95 79.13 31.22 32.33 65.68 90.01 15.85 40.18 84.49 23.80 74.25 99.15 41.52 53.40 71.74 40.17 54.71 57.50 87.52 56.47 5.70 41.01 37.12 26.14 12.47 18.89 13.96 92.29 16.03 32.95 32.61 36.75 31.65 30.78 76.42 43.85 84.49 99.64 94.60 18.51 61.95 1.65 72.14 80.87 48.09 6.53 64.67 45.65 -29.96 22.36 79.65 87.23 20.03 59.98 61.68 56.94 42.83 7.79 25.20 71.05 73.36 25.30 3.40 64.47 91.48 7.03 19.94 66.61 32.76 6.79 25.36 3.43 76.14 97.49 52.09 27.21 6.00 15.84 91.15 73.31 97.17 53.78 2.02 91.08 20.60 52.43 53.38 10.70 24.40 4.58 98.64 13.26 62.88 32.16 8.85 94.00 49.51 39.98 29.97 69.44 7.21 42.75 50.48 22.74 13.14 92.82 34.28 29.09 86.59 92.09 32.25 21.04 45.45 57.78 38.91 5.31 93.50 75.83 11.99 63.50 96.93 36.06 51.07 98.58 38.01 7.89 34.09 99.78 7.72 91.55 51.46 23.75 15.74 64.57 52.02 89.23 63.27 73.24 68.20 93.69 61.78 94.13 61.04 44.96 12.08 93.51 4.18 11.61 -74.62 25.89 22.19 9.36 36.47 80.93 40.02 69.48 45.70 45.55 83.91 40.27 4.75 91.85 22.73 84.03 31.32 66.14 34.77 25.24 27.00 17.20 60.97 94.93 35.74 37.05 37.45 64.15 83.68 60.03 5.42 52.66 85.29 89.00 34.12 18.02 47.32 81.32 86.11 24.69 3.72 67.01 38.68 14.37 31.41 0.33 77.64 48.67 99.58 41.00 87.74 8.95 39.08 37.09 97.01 81.16 38.74 84.54 30.61 67.74 40.91 5.23 70.98 52.44 52.15 41.20 27.13 3.61 83.80 35.02 32.10 49.04 55.19 96.05 48.49 34.11 51.39 8.95 67.26 93.38 82.63 89.81 67.02 9.51 23.30 36.24 89.55 43.19 94.21 21.53 24.54 87.95 40.93 3.12 7.92 89.47 10.77 42.41 76.71 21.78 -47.94 31.02 0.80 92.77 22.54 60.02 30.05 46.34 51.08 16.61 58.94 91.79 78.57 49.32 88.13 30.87 96.03 79.59 98.84 64.28 37.03 8.05 82.90 34.96 60.36 61.57 66.50 84.15 16.07 82.81 4.21 34.43 68.15 4.23 59.98 99.22 54.57 43.78 58.09 81.01 23.99 73.47 73.51 74.74 78.41 50.11 78.40 77.91 35.14 84.54 94.77 96.13 93.19 14.88 51.02 3.95 74.87 36.76 71.16 32.99 50.07 74.68 9.74 18.40 96.38 15.39 57.46 30.24 58.18 50.16 6.44 87.77 29.06 25.52 96.31 36.08 1.31 60.76 12.74 85.61 76.36 47.59 79.72 98.55 20.03 69.95 11.27 55.84 88.80 83.66 69.62 86.61 65.53 60.77 82.59 17.70 40.56 47.26 32.96 70.65 -14.48 31.24 75.78 36.59 51.67 47.65 20.06 45.31 77.36 27.19 3.94 4.13 97.19 38.91 67.89 20.88 29.70 47.51 30.20 17.23 74.97 34.22 94.11 48.74 27.22 94.61 10.24 12.17 67.95 65.64 72.31 53.51 52.39 59.15 5.93 99.83 81.34 62.51 34.19 40.59 68.66 94.22 97.07 14.75 88.73 74.93 80.67 90.49 78.39 32.78 43.85 76.26 19.26 76.47 14.16 41.36 76.83 86.54 12.26 21.27 11.39 0.67 74.40 36.68 32.57 79.12 67.46 15.96 20.17 18.08 30.33 37.51 19.94 32.02 74.91 87.75 13.23 4.16 5.59 27.20 14.20 10.39 74.75 90.62 35.95 71.83 49.52 51.38 79.33 37.55 93.52 10.49 57.80 89.58 47.86 86.90 15.03 84.89 84.42 34.53 -20.92 20.29 94.80 70.73 65.14 57.50 17.97 48.12 89.42 50.45 13.57 16.36 66.85 4.57 90.31 6.68 50.47 79.42 66.88 9.97 20.47 92.09 27.97 6.27 48.21 3.24 17.97 72.53 34.16 8.61 78.48 65.52 28.41 53.51 70.40 83.05 86.10 5.26 60.89 12.47 35.79 7.96 54.36 71.94 57.35 1.86 17.03 99.14 10.64 98.45 52.71 4.71 95.47 29.66 1.16 30.81 6.47 20.90 27.75 72.74 13.89 41.31 41.86 56.83 78.02 5.35 32.63 26.69 82.15 79.16 1.54 14.42 90.63 85.62 51.19 11.40 44.68 25.01 60.19 97.17 12.87 67.72 58.08 83.40 99.98 2.21 63.58 88.24 80.88 24.89 46.25 54.01 67.40 24.23 23.72 91.00 85.55 64.62 36.91 13.57 -80.71 3.86 32.22 18.98 19.82 26.81 43.93 4.35 59.58 97.67 67.11 95.78 19.95 17.35 58.06 83.85 96.84 80.09 88.61 69.76 6.24 44.71 86.32 11.05 86.03 1.77 68.88 19.54 67.54 55.07 86.56 47.86 47.99 32.32 77.77 78.60 87.79 10.22 50.45 71.35 41.76 86.49 69.87 70.66 55.54 49.47 26.30 91.73 63.67 98.53 55.55 40.97 71.54 38.08 69.68 56.49 42.97 74.95 36.42 53.15 41.22 99.76 59.10 36.69 66.16 4.90 49.73 29.55 46.56 65.43 28.02 80.12 54.12 75.24 68.86 26.91 81.86 31.45 61.97 60.30 54.74 24.20 3.25 96.74 48.86 92.75 42.33 49.99 6.47 90.61 41.69 89.92 69.36 84.01 52.80 52.40 24.15 34.16 48.96 17.57 -16.64 94.45 19.13 78.45 38.86 43.72 11.11 60.90 26.51 88.14 63.26 65.47 89.79 80.66 30.88 46.41 82.86 59.14 13.68 1.00 94.87 8.31 56.67 30.38 7.46 14.05 80.57 25.09 99.42 47.50 5.65 7.80 11.23 7.53 87.09 21.28 83.56 30.57 26.50 71.69 54.00 99.38 91.14 95.75 50.26 94.24 41.33 35.62 39.80 92.14 29.83 57.89 75.80 23.54 85.94 3.90 43.73 51.98 65.75 58.28 73.77 6.93 65.23 13.14 49.21 38.49 76.10 26.83 84.47 46.22 66.16 24.29 47.42 10.34 49.95 77.26 26.87 80.06 5.03 85.22 72.55 87.06 53.49 68.91 66.33 57.19 48.64 26.75 27.69 17.42 8.05 46.74 95.62 91.97 22.88 33.67 8.68 25.31 86.63 8.70 -70.49 54.18 24.53 79.44 80.08 53.85 86.71 50.21 82.96 89.77 79.77 76.60 37.11 95.12 59.67 92.94 81.29 71.01 52.95 25.96 0.64 70.67 43.25 3.79 23.09 7.13 53.20 37.72 8.68 19.74 81.14 7.63 45.11 97.87 88.25 89.55 66.00 43.60 52.93 72.67 61.52 62.03 67.87 54.32 10.77 1.59 62.91 56.19 73.25 2.45 50.94 46.01 29.18 80.14 91.98 7.45 6.08 83.54 80.40 44.71 81.03 55.81 53.19 2.41 27.22 9.73 90.12 64.92 58.23 22.82 26.59 41.62 75.00 72.89 15.25 66.38 37.24 83.88 58.64 14.59 25.96 57.72 41.11 22.81 83.43 42.50 1.48 90.42 3.22 81.99 77.39 11.15 97.09 5.47 59.14 41.77 34.76 69.01 77.35 82.79 -90.09 81.62 89.19 97.79 14.55 9.14 35.64 47.07 99.83 91.41 87.99 10.16 26.99 67.21 40.46 54.44 38.42 26.93 64.56 0.98 73.71 32.63 40.73 49.27 92.49 26.03 41.86 61.33 76.22 95.01 9.21 72.92 0.15 97.88 96.11 2.15 48.45 10.26 21.23 13.44 76.67 38.54 79.76 69.18 35.92 30.95 44.21 14.82 97.31 79.34 66.22 25.75 67.59 75.28 32.11 58.85 63.93 99.25 45.71 91.23 56.73 0.30 41.13 39.35 94.39 10.98 39.50 58.55 57.89 25.20 32.16 46.12 81.24 41.69 56.93 54.45 0.17 70.90 88.55 14.64 19.46 3.28 43.85 33.55 22.51 6.65 89.18 76.12 93.87 13.47 18.77 95.22 34.19 2.69 95.40 33.30 66.80 67.78 37.81 4.74 -59.25 3.96 16.83 0.06 95.58 79.68 96.26 81.93 92.72 18.70 94.34 40.48 54.04 50.74 94.36 57.96 93.19 97.28 17.00 52.04 1.55 11.85 26.33 1.92 75.51 34.31 29.91 23.65 95.89 98.91 12.87 30.54 57.13 6.99 68.95 90.47 42.15 91.92 35.73 65.38 75.12 84.36 19.49 96.78 8.06 75.73 2.84 35.28 44.56 85.43 31.30 99.85 17.93 45.13 9.75 85.51 24.98 19.78 27.81 52.22 60.09 37.60 51.57 84.43 80.43 60.83 25.20 51.26 72.60 85.82 53.82 66.48 61.82 49.52 80.74 48.22 9.04 62.73 44.63 17.86 8.34 52.98 34.20 40.88 89.82 92.19 70.09 9.73 37.33 87.05 42.79 70.45 6.70 20.31 86.51 71.15 80.09 89.62 73.08 10.74 -36.37 57.67 68.30 50.28 55.64 38.20 55.35 89.87 77.57 15.84 78.63 0.53 50.20 50.37 31.30 58.81 52.38 30.89 3.10 84.89 81.93 23.91 12.96 42.73 45.41 5.37 20.32 43.34 45.45 85.30 32.94 10.29 40.24 0.63 4.59 33.68 17.89 18.06 95.73 85.50 8.91 41.34 87.39 87.29 66.28 6.24 68.79 78.43 6.51 8.26 13.19 8.30 75.50 9.12 2.71 57.23 18.56 6.26 12.88 99.34 8.86 85.43 64.33 59.72 24.66 66.17 3.48 4.78 50.84 12.14 17.52 85.68 71.04 89.02 27.13 70.60 56.30 6.15 15.80 86.44 29.54 2.49 7.35 76.10 56.16 14.09 32.52 35.47 26.52 4.94 45.84 22.12 29.96 47.03 33.49 47.75 92.43 48.55 81.31 28.92 -98.05 42.50 81.56 83.93 13.62 32.52 86.53 38.58 90.68 79.76 81.29 12.65 96.09 7.84 89.33 95.75 45.42 60.41 61.33 13.14 88.75 21.32 57.52 33.09 26.27 48.90 69.93 71.85 43.37 73.05 46.31 14.05 3.28 40.98 69.40 61.01 6.57 87.91 11.57 69.71 11.18 98.53 10.18 29.05 28.64 34.26 43.84 69.23 90.94 92.25 25.04 19.27 31.11 4.88 16.97 56.47 19.05 4.35 17.97 95.49 33.46 0.88 62.90 17.51 54.99 88.90 75.02 67.11 95.67 9.34 50.63 38.36 38.68 63.92 42.83 55.30 53.28 33.67 52.38 14.47 89.25 28.00 1.88 92.34 40.11 12.42 24.58 88.90 85.24 2.09 96.57 57.48 36.82 68.45 98.44 27.95 10.73 8.31 88.24 0.86 -9.64 96.35 59.75 45.27 48.72 89.73 74.72 6.20 52.05 30.76 26.96 91.99 15.25 27.12 75.60 93.92 1.52 29.46 57.50 41.82 58.72 82.42 59.35 10.39 16.43 90.12 44.33 64.16 76.01 98.77 17.16 12.54 53.96 65.60 81.79 71.64 60.76 32.96 73.97 46.83 63.22 47.55 53.79 44.94 52.54 38.21 99.80 30.91 52.13 38.85 82.26 91.05 81.99 60.88 24.26 45.83 56.60 59.78 56.78 0.16 7.74 82.41 24.70 51.60 61.19 35.35 20.47 99.67 69.75 65.92 7.03 52.79 81.63 15.03 82.27 34.24 88.80 47.41 1.39 51.60 56.54 73.29 35.62 90.10 28.61 96.30 95.02 8.43 20.97 49.70 66.82 93.56 77.85 50.93 93.09 44.27 26.86 11.69 62.20 25.98 -75.41 27.62 39.45 77.76 62.69 38.34 48.38 24.47 53.77 26.18 26.07 62.42 58.61 62.37 60.84 44.52 24.06 97.11 70.46 97.83 94.32 8.20 24.01 35.66 20.35 98.89 85.67 83.03 8.39 17.95 16.26 28.86 80.61 78.19 25.74 56.93 38.30 1.89 44.72 12.13 12.71 54.17 70.64 8.80 7.97 85.91 62.70 7.78 23.36 92.98 2.99 46.99 92.98 0.15 32.84 80.02 94.58 84.63 22.69 27.26 28.08 4.19 21.35 86.54 99.50 84.39 37.17 66.93 85.72 76.00 32.24 51.90 67.55 47.91 25.15 76.95 99.19 99.83 32.59 55.05 45.47 33.26 85.45 40.81 11.29 45.16 43.18 90.39 96.26 79.26 18.13 52.68 4.47 16.79 6.57 9.37 81.44 29.38 98.32 98.34 -80.47 42.05 46.08 83.19 29.12 44.51 46.27 92.58 58.00 55.62 38.35 75.27 94.71 75.44 42.01 90.97 64.63 84.37 21.63 98.45 69.32 82.07 53.66 61.58 28.04 6.17 97.21 31.05 62.75 33.07 43.33 72.48 28.41 47.88 79.57 0.18 24.45 22.23 3.80 85.51 51.48 26.26 46.63 17.40 9.26 75.60 14.56 18.39 20.11 71.35 97.30 62.88 74.19 3.87 11.17 42.20 75.92 32.19 53.02 44.10 45.79 37.77 59.12 28.73 67.61 55.11 43.98 90.83 52.16 98.98 94.87 23.07 51.31 75.23 50.96 77.11 66.28 52.47 10.15 46.03 61.48 50.04 16.05 63.93 23.74 26.23 79.66 0.45 20.01 16.86 52.72 35.67 42.28 54.33 6.41 13.67 60.92 47.44 7.14 4.07 -3.60 37.75 35.37 74.95 34.52 27.12 21.61 44.98 22.43 55.44 96.41 49.73 65.50 19.05 18.82 72.57 90.48 71.45 13.56 14.29 35.52 39.90 21.88 47.36 54.45 35.65 75.38 1.15 92.79 84.34 70.15 76.96 13.31 85.22 64.60 55.28 64.56 3.37 89.01 54.01 46.54 85.96 70.10 66.64 46.40 64.96 55.99 77.78 66.33 65.21 21.85 42.70 54.19 83.22 64.26 15.02 71.29 35.98 74.10 14.92 64.61 89.03 31.84 30.41 45.94 33.36 35.68 90.36 40.51 79.89 15.05 27.42 54.53 59.18 97.78 44.29 61.91 21.55 90.98 14.33 16.18 49.92 25.98 63.78 71.68 46.45 2.83 99.94 64.91 60.52 79.71 96.97 66.41 39.14 17.88 75.50 37.16 85.77 33.50 42.93 -80.12 66.67 11.84 67.73 49.64 21.38 31.94 90.64 97.71 4.20 20.71 81.13 56.54 19.44 79.60 81.47 19.69 46.14 59.65 18.40 54.71 16.97 81.78 36.78 24.32 51.41 37.70 81.70 32.18 21.42 11.95 88.94 46.17 40.22 8.87 60.37 59.69 14.77 72.90 45.69 54.76 39.36 66.52 46.98 34.94 66.64 9.19 72.60 31.27 7.17 40.96 22.87 76.41 83.47 40.15 97.32 5.66 58.40 72.36 77.88 28.11 35.85 4.66 60.35 91.39 80.10 66.76 74.22 39.15 24.32 80.42 67.31 73.42 17.15 35.93 54.89 15.49 33.85 69.58 61.54 12.54 73.41 9.19 11.88 34.42 49.10 35.14 34.10 89.85 39.39 61.77 39.26 36.71 80.56 10.85 39.10 50.70 77.33 83.02 98.94 -69.86 14.41 23.95 75.52 95.29 7.67 3.19 67.88 61.28 35.33 99.50 31.44 55.51 76.97 4.64 14.16 15.26 52.58 8.35 69.03 76.49 54.43 76.74 63.13 29.56 81.13 14.25 1.69 43.43 85.45 96.19 71.23 28.39 19.03 2.37 23.32 85.37 64.97 32.03 26.47 25.85 23.73 83.45 40.36 21.62 30.43 72.27 8.86 19.53 75.84 71.63 9.33 26.96 28.31 57.97 6.12 1.35 15.49 50.45 14.21 73.28 38.53 2.01 58.42 6.86 53.28 49.38 11.94 60.86 9.72 65.56 18.79 88.65 24.49 11.91 35.90 33.55 17.45 87.80 20.05 60.19 81.21 89.37 30.41 86.79 16.52 26.51 8.51 97.82 3.81 57.07 83.94 3.70 12.99 92.11 30.21 73.32 20.41 2.42 32.08 -49.35 80.69 36.05 15.64 35.98 95.69 85.37 88.49 49.13 92.00 86.05 13.01 55.12 48.99 54.54 42.92 66.27 79.39 68.36 56.77 56.21 67.23 53.80 52.71 93.03 7.43 71.31 7.11 52.51 32.38 22.76 30.75 34.73 37.48 83.31 44.79 68.40 37.49 42.13 94.33 73.66 73.25 79.27 68.11 69.23 18.69 44.84 93.39 16.32 37.96 52.94 50.49 56.61 73.06 24.24 42.09 59.23 57.82 58.51 33.49 72.76 37.52 49.35 71.39 40.26 38.23 28.74 95.01 13.21 80.51 20.64 61.46 44.22 63.63 28.01 14.35 50.52 97.12 54.08 21.58 73.42 71.02 18.12 71.21 16.17 36.02 63.95 36.73 94.62 41.68 44.68 92.30 60.46 97.72 28.83 59.52 98.56 38.65 21.86 72.27 -6.40 42.47 10.51 71.60 80.58 22.81 91.34 57.42 8.84 33.98 93.32 17.16 6.34 82.56 2.04 54.18 45.11 33.03 18.61 43.29 39.14 34.87 37.69 20.81 45.34 50.42 83.52 52.84 80.58 31.22 50.51 50.67 71.36 25.08 17.88 32.43 90.29 84.05 87.80 53.67 49.38 97.35 9.56 81.92 52.63 58.49 82.11 61.02 40.22 87.12 48.94 10.99 50.96 6.32 9.17 41.14 49.14 21.56 50.66 46.89 6.92 66.11 44.55 70.85 13.17 97.04 46.06 98.92 83.89 18.36 93.51 1.37 31.37 69.97 17.52 74.40 87.33 10.56 7.24 43.92 59.50 2.96 87.58 37.98 11.61 5.88 79.27 65.03 21.65 51.37 1.40 84.79 71.24 54.01 94.36 28.65 5.96 34.03 85.16 43.96 -64.93 30.05 87.41 74.81 6.77 33.51 73.32 42.81 69.84 17.87 65.38 28.88 92.30 95.93 49.49 17.49 16.14 1.05 6.50 2.36 76.76 94.16 41.70 20.85 92.95 88.15 62.34 12.61 4.92 30.80 60.54 63.77 97.48 63.74 65.77 8.66 48.65 75.80 40.03 69.17 28.48 25.72 15.32 85.29 61.90 51.21 14.48 29.32 8.80 1.30 75.37 94.09 5.35 45.64 62.95 82.73 7.11 40.88 19.29 65.48 89.15 79.93 82.05 35.33 0.94 96.82 35.24 94.15 44.51 45.47 68.04 33.85 36.62 17.65 56.59 36.80 10.58 63.26 82.06 2.90 59.63 98.44 59.96 29.95 97.22 69.31 61.88 50.54 71.26 67.40 30.28 88.65 55.22 33.13 60.38 81.20 64.65 92.19 73.57 84.23 -91.85 62.18 40.00 73.15 49.92 54.75 1.62 78.11 42.32 38.85 86.36 79.67 97.09 78.93 52.53 89.96 56.41 15.38 36.27 14.59 38.20 61.96 40.63 8.56 41.06 13.06 56.05 7.54 88.15 63.24 77.18 49.66 29.64 12.63 50.90 74.33 82.35 20.56 81.90 45.87 93.15 67.72 60.99 12.17 45.93 32.83 4.36 33.02 63.57 81.78 38.10 99.51 74.44 27.85 75.20 86.90 92.21 71.53 98.30 97.05 8.34 67.37 33.89 22.92 10.29 76.79 92.33 76.38 73.21 87.89 75.22 83.65 69.94 74.21 47.19 98.65 70.31 34.00 31.19 54.39 15.44 50.25 20.16 21.15 55.06 40.79 42.00 98.87 6.05 18.34 83.10 94.88 45.83 13.81 63.89 18.45 61.78 46.00 61.59 62.24 -39.76 62.02 70.79 60.60 2.60 80.80 55.50 99.73 29.33 78.62 14.03 53.59 14.06 51.73 99.20 2.18 48.44 62.43 84.69 56.67 79.25 10.82 35.85 2.82 77.56 39.53 63.07 2.02 44.18 91.97 3.80 22.59 94.35 41.86 40.80 54.87 9.90 97.08 2.62 36.22 44.05 40.71 61.06 70.11 4.73 13.38 51.73 2.34 98.81 10.94 35.48 80.31 41.02 54.67 49.33 91.48 56.57 99.85 65.35 79.25 69.47 66.18 68.52 63.12 47.19 20.61 35.28 33.44 44.43 15.32 25.72 41.65 70.83 92.02 97.39 89.91 3.13 61.16 46.99 16.79 13.27 44.02 82.43 8.88 85.96 94.01 45.23 13.92 89.18 88.85 91.31 91.86 61.56 55.21 76.85 58.52 92.11 19.63 46.06 61.85 -22.13 40.54 89.28 86.63 87.73 74.05 45.32 77.34 45.22 58.20 46.04 75.79 82.84 24.67 83.04 79.77 62.83 23.17 49.80 75.93 70.79 84.65 85.51 21.68 74.85 12.40 36.06 76.12 54.50 78.79 79.13 32.17 76.17 57.56 85.22 79.93 32.61 29.57 87.93 93.73 1.59 24.12 31.58 76.05 87.63 96.55 56.96 27.05 78.63 63.64 23.92 72.47 29.49 78.38 91.57 66.93 58.78 28.54 48.74 84.58 15.95 62.30 33.68 43.54 94.17 0.46 28.02 70.88 10.93 19.45 59.38 36.86 90.38 17.57 75.88 29.12 52.38 3.31 19.00 17.21 31.68 20.67 63.52 21.80 80.56 52.86 58.09 57.65 7.34 19.03 41.27 63.20 26.34 65.65 49.57 40.38 7.27 64.29 79.67 11.17 -89.01 29.88 42.18 42.69 38.04 39.74 7.20 74.40 52.13 13.61 36.26 63.48 70.55 15.73 45.43 20.85 93.24 45.28 24.51 85.93 79.39 32.53 72.93 77.40 64.16 40.73 10.95 44.25 53.79 8.73 28.21 45.26 80.09 96.46 32.98 79.38 93.65 59.90 22.34 69.63 9.01 88.87 80.37 62.21 71.61 6.54 76.44 82.00 73.52 79.78 48.31 93.11 82.81 60.33 90.21 81.81 78.28 74.44 78.53 96.08 7.27 41.51 85.06 26.32 80.99 72.91 16.22 20.19 70.24 32.51 42.62 89.48 35.21 73.57 77.87 94.68 62.59 68.18 95.21 21.81 80.45 80.87 42.53 77.25 37.32 89.29 4.38 0.84 74.50 85.42 27.31 48.81 61.37 39.16 67.54 45.16 17.46 80.14 16.08 58.62 -8.83 98.82 44.76 59.91 21.89 28.39 78.52 81.79 71.77 87.92 77.86 81.51 76.70 82.55 64.73 52.12 1.86 5.88 27.76 11.01 86.53 58.60 89.00 80.49 34.72 29.47 39.29 86.74 21.76 15.37 76.80 29.90 59.31 33.77 9.33 89.46 21.81 91.09 37.35 42.76 68.37 16.50 79.59 68.19 50.76 98.98 83.10 86.12 54.74 38.95 89.69 21.68 2.81 22.31 85.56 34.05 92.91 28.77 85.81 45.46 91.90 19.89 3.17 86.85 97.03 91.37 13.25 79.99 57.32 27.37 55.80 65.66 58.16 36.59 90.80 12.82 55.79 43.58 59.46 57.73 45.12 73.25 83.33 46.76 18.21 99.50 30.93 59.77 61.35 32.10 69.87 41.03 32.35 56.80 33.45 74.16 16.52 86.50 49.57 9.65 -69.21 17.51 12.33 65.55 59.40 73.00 71.36 64.64 49.54 73.12 59.13 6.68 31.32 59.27 77.18 91.17 77.57 28.35 35.87 0.29 21.94 34.26 52.77 98.28 86.30 58.16 60.95 30.29 57.97 65.93 26.14 14.89 75.22 29.99 69.01 85.00 74.85 62.28 94.78 3.31 26.11 4.54 34.45 86.24 39.15 39.26 42.16 51.88 21.93 82.78 98.05 13.93 53.57 8.59 18.56 69.03 71.60 71.36 51.36 34.64 23.63 63.89 13.01 10.58 26.58 83.03 95.17 4.75 99.53 82.15 23.69 32.85 11.16 51.30 81.62 8.25 89.89 90.39 41.35 19.58 53.18 87.16 92.87 3.74 18.25 84.98 39.99 23.01 51.14 25.23 17.62 29.50 4.83 91.54 62.93 17.36 9.09 91.78 13.08 15.38 -19.19 29.02 50.35 28.02 83.66 25.14 86.19 60.51 43.74 0.08 57.82 91.10 6.26 78.21 88.56 23.38 30.78 1.98 49.35 23.64 20.28 5.36 77.63 24.91 99.92 36.06 54.24 64.51 35.73 71.12 18.49 76.24 39.15 45.41 0.20 72.63 3.76 19.80 78.81 29.61 42.77 66.71 44.68 23.12 53.52 51.54 82.27 75.21 32.50 3.87 78.12 82.21 42.55 12.83 93.30 90.69 51.04 26.20 95.51 45.70 29.68 0.01 54.55 47.06 73.61 97.45 60.06 65.53 49.25 23.64 91.78 6.86 50.53 0.55 33.54 25.63 97.73 78.00 42.81 51.47 10.06 93.05 69.87 67.31 19.59 55.67 6.16 96.61 36.07 14.24 89.23 35.53 52.29 92.77 6.53 59.95 41.82 55.15 22.14 29.90 -20.59 46.75 83.97 33.39 50.06 53.87 88.41 53.69 90.50 34.50 78.16 27.71 56.38 1.32 11.03 81.45 5.35 52.32 24.79 22.42 62.16 14.58 89.67 93.06 5.49 70.87 73.67 44.29 86.35 12.19 65.14 40.65 86.04 80.97 42.36 40.62 80.78 8.60 48.68 27.06 13.07 80.18 85.12 60.01 31.80 12.99 87.36 55.71 92.33 66.84 55.95 72.35 24.91 51.59 69.40 41.90 34.20 88.96 51.31 88.58 65.10 45.82 65.59 44.13 4.15 38.53 56.21 88.33 25.48 32.97 5.96 90.10 93.08 60.02 74.91 35.18 71.40 34.60 45.93 81.91 41.58 61.85 3.68 8.49 96.48 97.51 37.41 41.07 47.65 86.69 80.95 30.68 48.27 21.95 94.30 91.39 96.52 65.86 81.24 67.35 -9.73 93.25 81.97 58.41 92.30 28.09 27.12 44.96 42.97 41.75 88.81 39.84 28.89 85.35 0.70 10.28 10.22 24.64 61.04 40.31 55.20 85.06 37.16 40.32 27.68 89.90 62.59 4.53 16.73 76.15 12.78 70.93 34.03 57.73 25.81 85.20 76.44 25.05 78.54 61.43 66.17 43.95 26.43 14.41 6.61 40.86 39.46 30.18 50.30 97.75 5.49 77.05 81.19 87.10 82.29 59.51 7.42 18.24 60.89 51.16 88.06 84.73 40.13 49.43 38.38 72.02 81.39 54.59 65.85 39.68 15.78 85.07 88.13 46.31 65.83 39.69 74.13 16.70 68.45 89.79 74.54 82.75 5.83 77.97 48.90 26.96 88.50 65.98 99.36 95.64 70.10 78.95 52.15 31.91 0.88 80.72 62.33 59.34 82.20 5.67 -78.89 92.90 60.69 70.55 18.00 26.41 39.14 20.65 56.03 82.41 34.95 28.00 25.05 59.62 14.91 12.11 94.29 87.17 46.46 98.96 27.04 51.70 99.35 11.50 61.38 23.56 49.69 93.21 82.65 63.92 60.73 20.03 17.85 70.44 57.80 89.69 22.13 1.45 87.27 16.69 88.55 44.76 63.60 33.23 20.39 88.56 52.29 0.30 44.44 44.11 40.97 1.37 75.17 73.86 36.88 54.78 1.07 2.03 0.99 75.95 50.04 71.10 99.20 28.07 29.55 47.04 76.78 54.87 60.81 14.93 70.65 41.28 78.84 37.66 26.32 17.41 85.87 67.93 49.41 64.84 75.90 22.55 65.15 87.11 34.18 35.23 93.41 12.30 10.11 12.87 65.67 98.85 3.04 68.50 91.69 70.05 39.35 48.29 11.35 87.67 -69.78 44.45 61.93 82.48 36.81 38.88 39.20 3.36 51.74 54.25 20.54 12.22 92.48 49.52 22.90 96.21 41.64 89.28 1.97 12.74 56.55 14.54 48.62 80.53 45.75 93.28 37.64 58.85 52.42 25.59 14.02 86.80 37.42 55.48 83.62 10.28 60.47 86.96 96.66 25.11 8.81 45.81 72.60 79.95 80.07 12.15 93.31 19.33 59.14 38.50 71.94 34.95 34.48 16.82 20.86 10.25 5.52 5.13 76.73 77.20 35.28 56.38 21.67 76.98 73.44 76.39 4.63 83.09 58.54 79.97 73.97 22.60 70.10 64.16 59.74 80.93 95.33 41.66 5.00 88.23 1.43 92.71 48.85 59.18 99.47 78.08 89.94 28.70 55.13 75.60 57.95 66.11 52.63 23.50 74.65 96.74 47.97 84.62 86.41 35.60 -60.22 76.90 83.00 15.80 57.36 63.89 11.27 2.85 49.49 56.53 6.78 73.55 33.36 10.85 87.96 81.65 93.22 77.19 97.82 34.85 30.41 1.65 29.88 43.51 11.15 46.55 40.70 13.43 42.54 13.91 30.12 3.01 83.79 96.08 87.08 87.06 78.23 11.23 78.54 58.89 36.36 23.48 65.67 52.48 77.73 84.02 15.77 20.84 25.33 61.61 30.09 64.50 90.12 65.71 48.98 56.63 1.17 15.57 8.42 49.52 76.74 66.45 57.41 37.79 65.22 3.12 56.24 39.33 1.47 26.06 39.06 50.38 44.52 87.38 80.13 67.47 86.37 70.67 25.34 10.46 36.59 26.21 39.41 0.35 95.30 83.54 2.79 80.58 38.73 88.02 70.02 29.91 59.21 76.81 86.23 16.77 30.09 52.58 22.19 82.60 -50.97 95.11 34.82 60.30 30.72 81.34 95.84 69.12 51.14 28.87 56.21 47.46 45.60 89.05 35.00 68.79 11.37 50.23 46.26 77.35 87.63 12.53 22.11 96.54 13.70 55.96 87.00 14.46 39.08 1.59 51.61 77.39 95.43 24.14 86.38 14.63 57.22 43.24 54.00 28.95 79.79 41.12 6.77 8.38 35.31 46.16 3.17 81.64 87.72 14.52 23.71 94.51 39.61 51.52 44.11 99.28 25.00 75.94 70.25 20.83 8.45 74.51 53.66 70.12 87.16 4.20 11.34 76.98 54.03 78.35 99.86 88.68 26.34 90.51 40.46 70.21 64.29 46.50 53.12 87.02 98.54 82.74 25.57 98.20 4.12 27.46 69.17 98.52 49.21 93.66 34.50 12.01 11.87 93.13 90.12 77.24 0.75 20.13 74.50 54.82 -34.73 94.19 26.13 33.80 94.74 73.27 63.15 32.08 44.31 40.37 25.42 23.75 3.01 61.66 11.70 94.15 40.99 22.38 98.29 58.42 39.92 50.82 64.91 88.93 6.67 67.23 59.37 44.90 58.97 48.87 73.76 42.52 68.01 57.57 45.42 99.98 59.21 13.18 38.17 48.37 72.95 35.06 42.10 5.18 66.10 62.14 87.31 93.31 2.94 75.93 72.59 65.67 22.45 97.32 1.06 83.96 33.49 51.46 69.45 47.15 32.66 32.15 20.91 95.51 65.67 17.93 66.11 52.74 12.53 12.24 59.02 96.92 38.64 99.44 95.12 72.70 42.22 37.95 80.07 92.39 5.33 55.04 56.18 50.51 47.93 22.37 8.50 17.78 53.62 53.44 91.29 82.66 15.61 24.45 20.79 21.82 61.21 11.21 88.46 10.39 -56.41 46.70 82.91 43.46 90.05 74.91 33.53 63.79 12.28 25.54 45.84 47.65 69.82 49.31 24.37 92.63 27.80 53.04 1.12 75.60 52.12 3.21 82.82 23.54 13.98 46.67 73.35 57.72 58.64 56.20 27.04 52.20 18.20 4.13 19.00 67.13 70.54 93.08 21.15 4.70 4.37 57.87 10.87 68.24 90.17 94.20 66.03 8.63 9.86 39.01 61.12 45.32 93.52 29.42 72.47 0.06 89.20 62.14 85.17 21.54 77.78 10.02 97.87 64.70 60.77 32.14 24.37 13.55 5.22 60.04 53.19 71.23 63.71 45.57 30.52 3.68 56.15 94.19 85.71 63.84 96.27 12.55 82.42 29.07 91.55 57.37 82.39 49.09 91.44 50.26 8.12 55.80 67.89 33.71 56.09 24.14 47.47 98.77 27.19 31.17 -10.01 90.91 11.81 80.71 12.06 17.00 79.40 44.34 37.04 84.86 72.88 92.90 11.77 60.50 25.59 94.78 26.46 55.27 21.11 20.26 46.28 28.61 23.85 72.46 55.86 93.92 90.69 23.08 35.46 71.71 71.17 96.50 74.07 10.19 93.19 10.15 88.70 31.27 38.51 20.13 36.81 78.33 93.41 10.95 74.93 47.32 62.62 51.80 27.06 79.35 89.98 27.57 27.78 37.78 28.75 94.16 86.69 76.18 96.28 7.12 14.81 70.57 99.27 72.11 13.49 73.42 82.53 28.59 21.55 71.86 48.20 15.26 56.20 29.37 14.52 44.94 80.91 57.15 49.00 36.47 4.22 83.78 54.32 9.78 94.65 89.88 19.93 13.91 72.05 17.14 34.74 19.15 91.21 51.75 20.45 54.22 87.92 51.02 27.62 74.36 -12.15 31.86 12.28 3.50 48.59 99.48 26.11 61.35 19.17 42.59 49.30 27.56 5.55 87.88 80.80 5.62 16.82 53.18 67.31 81.71 41.52 43.51 18.68 49.01 50.32 32.07 99.11 82.77 38.95 66.81 18.56 41.87 17.30 66.97 83.17 80.62 69.26 92.31 91.51 57.34 93.33 32.21 81.08 96.91 17.04 44.05 56.90 17.38 96.09 77.77 89.50 12.15 37.64 16.84 74.89 17.39 3.22 79.55 22.98 21.41 99.78 80.28 33.02 8.73 89.47 72.38 3.92 19.00 80.10 30.79 53.03 73.30 55.34 81.03 22.77 70.63 11.40 78.64 61.96 26.05 44.02 77.87 49.64 15.83 91.30 29.57 88.98 3.20 11.24 31.88 75.46 64.93 7.78 54.92 5.16 63.56 49.47 51.98 74.09 51.68 -14.09 67.21 62.15 79.57 18.78 44.24 37.30 57.78 21.11 51.93 26.31 37.55 45.27 86.72 82.78 34.47 68.03 86.92 66.48 29.42 13.69 73.09 89.60 35.51 4.14 3.72 52.46 35.73 33.23 5.30 57.13 86.63 8.24 9.59 6.39 63.45 4.71 43.46 42.27 82.38 92.92 66.28 85.30 8.54 65.96 47.70 31.86 36.05 15.26 45.86 44.85 2.85 39.20 90.98 13.33 90.43 54.66 2.53 85.72 50.31 29.78 5.87 68.91 57.70 21.22 85.68 97.05 17.76 79.80 51.04 22.95 62.69 88.22 49.80 78.03 72.38 68.70 55.12 15.36 67.80 60.09 64.72 87.01 98.31 4.89 84.67 16.45 41.82 97.58 52.43 90.88 97.83 14.81 47.41 55.90 76.83 32.06 19.33 98.77 88.57 -2.54 54.04 55.90 27.18 79.67 81.90 23.23 47.00 31.11 73.64 24.90 45.69 87.52 35.32 28.77 91.96 91.99 36.36 28.42 93.41 59.44 6.40 92.34 33.96 3.69 6.92 0.95 28.05 12.37 36.41 52.61 78.63 8.03 81.39 94.15 34.90 34.30 59.69 84.68 64.12 92.74 7.41 63.17 3.97 68.24 23.85 35.66 5.02 87.92 30.71 83.34 55.65 49.82 73.87 26.53 12.09 55.66 67.09 45.59 11.79 76.50 93.04 26.15 88.50 22.38 6.96 10.54 92.69 11.40 88.19 72.06 74.06 21.92 74.57 89.81 81.85 70.40 66.55 66.27 70.94 3.26 75.19 57.30 75.82 2.06 91.45 27.08 97.93 6.83 91.35 19.51 96.34 65.48 3.70 4.70 84.25 39.12 1.13 97.93 17.08 -62.58 76.55 1.09 65.31 92.39 24.49 74.55 49.09 87.32 87.59 31.84 24.76 24.29 90.58 21.35 72.85 22.78 43.61 89.78 59.94 48.89 20.60 75.22 39.35 90.40 54.45 76.37 81.14 92.62 86.89 44.11 97.69 4.81 45.12 39.93 32.05 53.04 4.60 43.14 94.17 47.47 78.49 19.54 19.78 90.74 2.60 27.10 55.90 74.03 69.71 78.79 72.84 43.65 96.52 21.14 29.72 81.25 17.69 20.56 37.58 45.66 84.56 92.22 21.32 16.03 28.18 92.32 58.97 34.79 8.06 19.88 84.09 69.31 35.76 26.47 97.82 82.85 36.73 10.05 97.23 23.41 53.53 62.05 8.31 16.57 74.71 91.86 52.67 50.44 20.10 12.02 32.93 84.29 74.16 85.56 98.76 5.72 99.32 3.40 33.45 -75.28 19.19 14.71 73.82 93.60 66.80 82.31 60.50 16.41 84.78 57.15 88.56 49.29 26.36 76.79 97.05 71.90 56.75 44.02 25.21 14.93 14.30 7.56 63.46 58.60 54.00 35.48 39.17 83.87 31.86 84.67 83.90 84.81 71.14 65.13 82.34 29.83 35.77 4.18 49.25 55.38 50.24 58.25 71.02 35.09 37.43 76.81 39.96 26.61 70.13 63.52 17.76 81.48 78.50 2.32 87.90 56.52 92.95 21.59 85.78 59.85 34.12 69.84 44.35 57.63 54.47 40.87 41.77 21.68 42.02 35.65 85.48 40.38 15.57 9.63 38.15 70.46 18.16 65.30 81.13 18.75 64.48 11.58 49.02 82.71 56.89 17.60 58.25 54.88 67.43 18.81 23.59 89.33 59.81 77.15 62.21 75.67 37.50 6.79 83.38 -24.84 54.59 58.97 22.34 59.49 44.19 35.22 30.54 45.64 18.24 53.90 93.52 76.17 26.99 9.84 51.81 74.29 58.48 56.12 99.30 51.60 32.31 98.83 85.49 78.37 17.32 31.00 19.02 5.07 94.20 46.85 75.51 87.61 3.53 0.99 9.17 15.17 99.60 2.54 1.56 3.41 11.88 97.41 16.18 73.16 56.59 42.15 84.68 60.04 20.61 61.65 74.99 0.65 11.53 94.53 96.38 74.68 25.86 91.82 46.60 37.60 9.47 92.59 55.03 13.02 71.29 37.88 66.39 35.29 56.02 31.35 51.98 38.88 45.96 79.14 93.42 5.16 17.33 89.28 78.70 14.60 81.90 5.89 34.87 68.50 35.41 59.61 88.42 25.14 98.95 92.19 43.30 91.79 35.32 21.49 43.19 17.38 55.88 21.19 17.02 -79.74 21.33 76.70 79.42 99.82 61.91 51.16 92.38 89.86 34.86 26.06 66.00 89.77 87.65 29.08 0.53 55.19 68.59 14.51 70.54 96.78 7.11 48.25 27.28 69.95 59.19 88.68 6.41 65.02 38.16 85.98 46.46 96.95 43.68 32.94 56.63 77.51 65.35 40.32 9.84 52.09 9.34 3.23 88.76 48.70 59.71 76.51 26.39 18.13 58.12 34.12 59.39 65.94 11.28 53.07 24.95 44.38 85.40 23.28 95.31 0.25 13.16 78.37 87.02 37.95 17.58 93.36 20.82 94.39 52.04 92.01 6.22 36.43 31.66 29.54 75.51 29.60 73.09 37.54 56.58 70.23 10.51 74.28 66.77 34.81 12.48 11.01 67.35 85.77 66.73 85.94 87.86 9.38 38.07 77.77 89.67 24.55 83.99 80.13 0.68 -96.03 21.13 88.23 0.32 90.76 15.45 13.48 48.25 86.01 34.64 63.25 81.35 44.78 78.98 85.00 41.31 47.02 46.65 34.45 33.46 70.85 83.78 18.62 40.15 98.22 41.20 26.99 2.37 35.22 69.61 52.89 71.07 35.99 68.09 10.39 62.24 1.63 53.08 52.98 4.69 43.32 93.79 13.44 16.70 23.73 71.69 78.89 20.26 72.47 92.58 79.37 45.54 87.14 98.13 21.23 21.36 26.34 33.86 93.50 90.58 24.49 84.21 63.46 45.56 61.83 51.53 34.02 82.46 12.72 99.94 86.53 41.10 28.72 15.45 4.07 96.77 67.26 50.95 0.96 21.24 62.22 32.13 9.83 20.41 19.71 12.60 3.04 4.84 51.62 92.66 50.47 69.33 9.60 45.37 68.61 10.22 85.68 54.13 5.42 20.14 -30.90 94.37 24.93 19.65 94.12 67.49 9.44 53.73 58.85 28.24 97.88 47.36 59.27 77.03 61.61 82.82 96.66 50.23 36.67 85.59 22.51 35.42 34.90 20.76 5.28 50.97 29.67 29.65 86.43 42.26 19.55 70.35 90.51 64.42 56.77 90.60 41.61 9.02 36.00 33.40 93.48 66.89 91.64 74.48 24.46 38.06 61.74 62.65 37.07 97.24 81.63 24.72 12.30 20.63 91.83 89.73 40.70 90.83 21.27 54.39 10.29 42.43 84.34 25.95 31.26 15.15 64.66 52.10 15.97 9.67 74.17 86.51 69.80 35.03 61.77 89.32 13.52 35.65 70.14 84.16 55.06 72.94 41.78 23.55 94.04 92.09 12.39 12.06 72.05 73.77 69.21 27.06 19.07 39.23 44.63 75.38 1.37 31.18 55.00 25.94 -27.92 32.99 58.63 71.56 75.41 88.56 87.27 90.01 62.70 26.10 60.48 8.55 2.77 41.02 75.02 56.39 82.39 98.06 80.27 83.06 98.26 60.82 30.23 33.73 0.98 42.98 53.63 77.66 10.38 31.62 85.43 75.55 48.86 47.29 85.24 81.98 41.61 55.15 32.14 36.43 58.25 12.98 88.98 58.35 11.98 24.11 24.39 44.08 2.33 34.82 79.29 45.71 72.78 8.65 39.91 28.47 16.58 77.05 38.29 47.09 34.43 33.10 34.07 37.89 27.35 38.92 46.90 86.22 83.39 41.24 33.92 90.63 26.84 77.85 99.06 32.57 43.23 24.34 53.97 86.22 81.77 66.83 75.93 52.42 24.40 50.58 15.22 43.32 72.81 65.58 97.34 1.61 9.24 61.81 48.25 96.99 4.08 80.03 39.64 75.76 -68.74 75.38 97.60 40.29 39.35 6.67 64.28 73.09 54.18 43.63 27.57 48.35 50.99 32.47 39.89 16.94 37.78 62.17 82.79 30.74 63.77 81.54 1.84 56.55 99.95 18.94 56.84 26.61 23.18 86.42 0.26 19.78 61.38 40.33 62.33 97.03 58.73 32.82 99.64 81.08 26.80 45.30 44.60 39.71 48.63 64.81 32.60 42.38 48.40 49.21 94.57 65.16 51.26 13.50 70.60 94.28 1.70 48.84 69.47 29.27 70.47 53.92 37.35 34.72 53.97 48.40 92.42 51.40 56.15 64.32 64.91 59.15 32.49 75.85 91.07 9.92 64.73 40.41 20.80 84.55 51.65 40.83 95.94 46.16 10.52 46.96 40.74 6.60 9.02 25.82 51.62 62.53 94.42 6.36 85.79 7.39 11.07 93.07 57.03 27.77 -21.06 63.29 83.90 57.24 50.31 9.68 21.73 62.05 95.56 3.28 58.63 26.11 62.17 79.54 61.08 7.11 72.98 3.46 76.91 60.76 62.23 72.90 62.64 5.97 91.36 47.08 17.43 26.60 62.62 27.78 44.58 97.67 69.36 11.64 22.72 55.55 62.59 24.45 61.17 18.73 34.83 12.72 22.11 9.70 52.23 27.73 1.77 37.21 25.18 3.39 91.48 23.90 43.95 92.43 70.76 35.37 36.72 51.47 79.87 48.21 42.57 95.87 12.83 40.93 2.62 15.88 52.66 47.07 89.93 71.57 6.11 41.32 13.65 43.47 82.30 74.72 13.81 14.88 11.43 89.29 37.86 34.68 64.55 45.88 73.36 63.80 20.46 93.41 0.31 79.68 7.73 37.29 9.86 3.45 26.18 60.20 29.51 8.30 65.45 85.41 -44.19 28.57 8.08 27.84 91.14 62.13 9.45 63.64 73.62 49.09 57.18 52.71 39.91 51.62 85.73 9.75 62.70 91.17 98.87 43.07 31.41 10.28 11.13 69.94 76.73 59.23 48.41 15.72 1.02 17.43 23.59 80.17 37.79 92.17 82.12 7.07 71.51 25.78 76.39 26.18 47.32 60.55 28.78 47.94 79.65 20.78 24.34 29.29 49.29 80.16 81.36 21.40 77.11 91.80 25.69 70.89 58.09 90.40 91.69 24.33 16.01 13.37 19.95 99.47 40.45 86.84 69.57 92.76 1.61 62.57 79.34 29.06 88.69 71.71 72.79 36.55 73.04 82.56 9.47 5.70 92.07 91.79 14.03 27.47 74.84 93.22 76.50 58.05 81.03 7.61 58.60 9.65 87.84 10.45 40.26 96.45 42.57 98.82 29.33 31.85 -37.03 60.92 74.48 96.30 68.08 55.68 50.66 43.42 40.99 40.74 90.09 23.34 59.57 76.05 52.37 52.57 80.90 40.10 93.68 24.73 68.50 21.59 79.52 7.76 41.34 84.55 57.79 42.30 77.87 31.53 98.65 65.67 2.54 46.53 75.74 48.85 4.90 83.19 32.93 25.31 21.40 28.79 57.86 52.63 83.11 60.40 99.80 89.08 33.45 10.85 92.89 45.48 99.56 46.24 53.80 32.48 83.42 55.97 69.48 17.47 62.57 15.88 39.08 17.28 65.12 13.71 36.11 64.28 3.37 29.19 19.38 39.16 16.67 55.55 43.00 78.86 91.54 9.13 44.41 19.73 81.15 69.72 28.90 27.41 63.38 35.36 83.70 80.06 84.71 88.75 43.36 85.25 51.67 27.70 62.36 75.92 91.79 49.52 5.89 18.01 -62.64 88.58 11.66 99.43 45.84 32.50 80.95 3.28 3.60 91.43 35.46 83.87 25.79 66.85 42.88 10.96 52.88 79.99 94.44 97.64 98.37 38.97 41.47 54.74 0.02 70.36 31.04 0.36 12.95 22.30 65.55 87.47 59.32 12.68 72.71 82.73 81.12 56.41 19.59 73.68 3.45 93.44 40.24 20.14 16.51 24.25 25.64 91.55 66.89 13.73 27.11 4.86 37.51 16.64 24.10 57.62 29.10 4.61 39.14 73.62 4.82 21.76 43.57 82.52 32.33 52.36 60.56 9.03 96.97 82.51 70.15 18.23 38.59 15.77 91.61 24.33 16.76 51.93 3.24 36.79 88.41 13.96 27.19 91.95 30.53 23.00 59.84 31.19 62.61 79.68 5.43 68.85 93.39 13.24 24.46 18.01 43.20 18.16 22.10 13.16 -78.57 57.52 9.33 90.09 65.20 54.01 88.12 50.19 26.74 21.36 21.32 21.12 94.44 4.18 14.78 86.05 52.20 76.98 20.28 74.08 37.88 94.22 20.13 11.32 99.70 47.41 19.82 3.06 58.88 15.51 37.17 30.16 20.70 28.19 54.70 80.69 82.05 77.77 29.06 96.42 89.03 20.88 81.06 10.99 13.25 60.15 90.31 63.29 67.93 70.03 27.38 20.36 70.27 24.17 79.94 3.35 58.46 50.33 67.36 12.34 2.34 15.65 62.32 63.62 93.75 21.14 94.00 71.59 91.27 74.30 2.21 19.73 14.97 65.91 87.13 23.93 17.68 27.66 99.74 32.74 66.58 72.09 86.19 70.67 50.48 93.27 22.23 64.40 60.14 31.77 12.95 99.38 78.84 74.71 17.55 73.69 87.96 79.82 75.89 57.06 -37.59 0.06 58.57 75.06 2.84 74.38 93.60 81.81 71.09 22.57 70.55 27.81 3.79 51.16 21.73 8.91 12.88 22.65 20.35 50.85 40.54 37.50 55.30 72.04 95.73 46.32 97.37 39.52 26.39 34.01 87.80 0.58 16.40 12.39 81.50 42.76 17.65 67.75 39.47 0.83 40.04 15.27 21.21 89.61 78.15 19.26 13.89 90.62 33.39 46.77 55.34 30.72 31.58 71.92 34.38 53.21 3.18 64.11 63.44 56.83 6.08 47.45 37.56 69.03 27.52 78.91 27.71 71.32 75.12 78.59 1.88 60.77 24.09 4.20 91.07 81.90 73.26 83.83 22.66 44.04 30.86 29.26 58.12 1.97 78.54 84.53 6.66 50.99 68.59 80.59 12.61 11.90 97.73 59.55 50.49 39.88 80.34 54.52 31.72 78.97 -32.66 50.61 33.67 37.58 54.20 77.74 72.70 40.13 49.05 26.92 95.20 74.51 12.40 88.13 11.35 86.73 2.75 89.79 6.59 70.62 67.26 38.94 94.70 59.03 84.82 51.52 42.65 56.96 56.96 64.00 2.01 3.05 31.68 82.69 37.53 7.90 91.24 49.48 93.04 38.70 92.52 71.03 4.01 65.06 3.26 80.39 39.19 73.66 37.33 17.80 23.44 12.73 10.68 32.13 88.29 6.36 56.17 59.01 58.12 1.52 36.31 11.48 19.36 1.19 99.11 48.77 12.59 64.61 29.44 79.76 91.03 18.92 8.94 5.97 99.63 40.34 76.56 70.09 51.78 32.77 73.74 19.48 99.87 13.71 86.16 96.42 46.57 82.11 23.44 83.87 23.37 78.91 22.19 7.72 88.66 84.85 57.76 94.21 87.72 4.72 -75.72 99.62 31.79 32.20 86.02 14.48 28.10 15.60 93.15 63.97 96.66 64.15 6.17 5.52 72.27 58.65 52.47 40.76 26.25 9.13 77.59 32.25 40.64 85.02 99.70 2.17 69.13 26.03 79.93 34.13 19.36 90.02 80.85 30.88 47.38 24.69 34.13 11.00 18.42 27.32 11.60 32.99 89.87 29.66 95.28 87.18 99.71 59.20 59.25 46.05 41.74 23.06 35.55 68.29 32.62 14.39 80.49 20.67 36.45 84.26 54.18 74.01 51.37 80.24 46.30 82.40 78.86 49.24 96.75 6.96 79.19 45.08 53.31 51.47 32.83 19.51 65.19 62.22 74.94 75.78 63.86 23.97 38.55 25.89 0.47 11.38 67.80 57.96 72.83 54.13 9.00 51.59 58.26 33.26 92.83 13.18 4.76 5.97 44.30 49.50 -83.14 61.73 98.34 66.20 45.37 75.55 2.21 7.34 96.65 55.80 18.68 78.67 82.27 79.92 55.15 33.54 52.56 48.60 83.33 16.73 81.12 60.72 38.80 15.72 47.30 89.02 52.02 49.07 66.64 46.99 58.85 28.39 2.68 20.55 13.59 2.20 34.00 49.43 0.81 48.77 3.75 52.64 66.97 43.27 68.68 42.64 57.81 69.40 26.29 78.00 6.90 12.11 52.27 79.67 58.31 84.30 58.85 5.16 31.79 81.44 13.56 57.81 20.49 38.92 59.63 82.31 7.74 60.05 98.20 4.47 96.98 60.00 15.84 70.23 31.28 75.37 29.48 12.76 13.51 38.24 24.15 92.92 81.03 25.55 27.96 34.72 48.26 46.56 9.04 2.25 51.10 54.58 70.14 8.35 46.72 71.25 78.88 57.64 56.31 43.17 -98.11 33.64 89.97 53.97 10.96 32.49 79.52 31.59 74.17 33.59 45.55 0.01 81.50 3.26 81.72 82.85 23.46 21.05 72.14 29.42 81.72 11.24 14.92 94.59 48.35 70.84 14.01 25.55 46.68 79.82 2.75 78.27 98.96 5.01 71.10 2.02 30.08 47.06 28.88 66.80 78.87 37.56 34.88 99.85 35.32 70.47 55.31 52.56 57.12 28.87 65.27 30.53 65.79 36.36 47.46 13.50 63.30 79.24 96.67 48.67 31.89 18.54 4.02 69.90 60.30 88.65 84.47 69.51 44.01 30.22 83.65 62.26 59.04 64.35 4.33 38.43 39.87 14.54 5.14 80.76 32.54 29.99 50.51 27.40 78.06 61.75 81.16 17.90 31.85 50.65 66.77 10.11 37.24 11.34 95.52 66.61 74.88 49.81 54.99 87.74 -45.38 43.26 21.75 58.73 28.70 86.89 88.04 77.04 75.43 53.23 98.76 69.60 57.70 49.50 72.77 89.00 39.97 22.38 28.10 85.57 84.32 89.07 71.28 26.36 43.78 82.54 11.84 57.09 43.08 90.63 71.20 16.40 77.32 71.57 3.29 78.10 98.72 68.08 63.70 29.65 36.71 64.88 30.99 60.37 12.35 87.35 17.03 85.38 74.09 61.11 77.47 99.05 11.14 88.98 67.33 95.45 4.65 37.81 51.11 38.80 44.86 89.91 83.68 80.68 59.56 28.77 65.67 32.84 23.77 8.77 10.09 87.97 86.80 30.31 78.97 3.13 14.44 80.03 59.32 42.07 75.22 9.97 56.97 69.21 78.00 72.79 15.49 13.35 67.81 90.35 87.14 59.99 99.34 82.94 65.12 57.09 48.01 44.76 43.23 31.80 -40.94 1.39 8.73 88.07 40.72 95.78 60.32 12.70 58.70 16.21 78.07 95.36 11.24 92.66 63.43 99.64 24.97 27.21 10.66 25.28 23.13 98.84 40.14 71.80 71.15 24.40 23.45 19.12 68.57 78.75 18.52 70.52 69.67 40.87 57.04 90.33 91.95 96.45 78.75 56.93 17.11 82.47 2.57 43.70 1.54 74.86 57.00 64.95 4.91 81.42 61.33 89.00 70.45 24.64 32.24 73.91 23.23 35.25 72.66 1.84 26.10 66.66 62.05 66.74 2.93 37.34 45.14 50.52 61.74 12.66 55.88 16.04 45.25 15.29 4.46 35.99 38.72 53.68 96.48 64.97 79.95 53.98 7.20 17.22 2.67 82.25 26.05 42.92 88.49 68.57 31.56 57.33 94.21 39.80 53.69 76.41 85.12 14.19 15.41 56.22 -8.48 5.62 80.46 16.51 39.26 56.77 65.90 89.27 61.94 3.41 99.49 45.13 3.75 50.26 68.65 9.79 40.87 45.11 1.28 4.39 10.25 13.69 77.38 94.20 69.92 97.77 91.99 48.37 60.84 22.20 16.44 82.90 21.91 93.13 3.20 96.75 15.71 32.54 53.45 32.35 99.44 56.91 1.09 78.96 14.12 40.13 10.41 75.34 80.79 33.94 62.21 10.03 48.93 49.68 70.77 90.08 81.29 42.39 43.85 39.81 38.87 60.68 32.30 92.88 39.85 53.71 40.06 44.34 4.37 10.72 65.71 26.33 73.98 7.42 89.65 11.14 84.96 0.95 58.80 42.65 51.67 97.59 49.28 53.63 45.33 3.47 28.54 13.98 40.83 2.46 10.24 31.36 64.49 89.49 57.93 60.50 98.70 3.47 60.34 40.39 -45.16 72.18 73.55 87.67 16.41 78.25 48.98 93.15 21.60 94.39 10.34 88.14 77.85 79.36 25.26 97.22 66.55 11.82 79.37 61.31 9.33 63.43 30.61 85.84 37.38 23.70 38.68 10.09 16.51 66.51 23.66 90.39 56.45 91.11 5.43 59.04 52.95 41.59 29.52 64.06 20.75 93.60 21.95 93.33 55.15 86.11 47.95 10.95 2.47 56.11 59.99 54.24 21.96 56.35 33.90 8.62 91.29 11.65 38.89 81.34 60.11 33.82 36.16 32.03 33.71 29.50 60.37 95.19 17.28 14.80 64.28 81.69 17.87 19.33 42.70 8.42 7.99 37.22 10.72 37.68 51.54 52.90 57.54 52.74 12.87 18.78 1.74 42.33 57.50 34.79 10.61 92.27 14.33 99.75 49.66 31.92 2.02 0.14 53.16 87.56 -12.57 10.33 37.87 20.95 68.10 17.92 59.27 0.97 28.68 51.84 4.44 74.61 55.11 27.09 55.71 93.96 96.87 43.48 86.25 65.90 68.29 95.23 92.32 33.87 41.12 78.60 22.00 10.39 92.29 62.09 62.84 36.02 34.36 39.65 98.97 52.23 28.54 49.36 78.76 18.05 99.03 65.96 24.89 85.04 97.97 96.94 22.61 9.24 40.12 11.77 49.05 48.97 42.47 53.84 35.20 76.39 37.63 66.57 55.96 7.59 94.41 94.11 6.57 89.33 99.20 81.39 67.37 18.10 84.60 55.55 89.37 24.75 9.72 3.96 77.18 74.73 75.59 19.72 27.82 2.57 36.49 24.55 53.07 96.45 35.74 27.20 21.48 16.04 66.54 99.60 98.16 36.05 47.14 99.52 13.01 59.89 1.96 97.35 52.17 14.92 -61.67 64.91 65.39 36.39 21.42 51.68 98.58 81.46 78.25 74.66 83.70 57.93 34.56 89.34 74.88 70.86 34.28 56.88 73.20 90.07 58.35 73.87 29.46 72.93 84.21 84.36 15.15 42.45 19.04 26.90 2.36 32.34 69.70 17.32 4.08 58.01 57.20 57.72 71.16 99.76 96.20 50.43 0.09 25.06 23.24 63.91 63.90 87.54 45.25 10.31 66.17 94.17 0.76 81.61 28.27 65.48 65.94 69.70 10.73 99.64 74.38 27.91 78.72 29.77 35.42 32.08 73.78 32.75 8.89 30.98 16.57 26.03 74.49 76.44 21.43 68.01 71.58 23.89 64.77 62.88 8.65 41.80 30.79 32.01 38.08 74.17 23.13 51.85 47.41 35.99 91.83 26.22 32.07 28.92 10.92 91.65 52.56 2.56 64.94 65.68 -28.46 24.87 6.84 96.76 38.26 12.33 18.56 76.89 48.14 97.27 5.05 76.56 46.89 39.51 85.78 49.42 54.57 80.50 52.52 28.02 55.44 56.61 38.87 23.01 33.40 27.43 62.80 26.05 35.47 79.25 40.27 96.30 25.75 83.46 2.32 86.60 13.10 25.17 4.42 43.28 58.35 91.49 45.43 54.06 50.51 50.83 17.95 80.33 64.96 36.13 71.48 12.13 69.73 32.84 7.99 58.49 25.54 2.58 65.77 86.46 68.81 20.55 21.58 72.12 21.95 64.08 72.45 4.70 99.65 66.21 61.80 6.13 36.45 67.69 25.93 24.67 95.58 46.29 18.04 33.67 12.94 80.85 22.22 89.02 17.53 29.10 41.30 92.12 0.80 37.27 30.95 92.65 88.32 42.46 49.67 74.06 16.97 98.04 87.49 34.71 -57.80 40.79 93.52 99.31 96.38 18.56 16.75 15.01 62.98 82.19 73.59 97.35 1.86 62.73 45.08 1.41 43.74 27.51 53.29 87.14 63.73 91.32 41.40 48.17 17.13 0.12 48.57 89.26 21.37 40.40 56.19 85.52 9.74 83.33 26.12 1.53 89.06 69.86 35.81 67.05 81.87 92.53 46.30 77.67 84.65 23.62 29.96 18.31 94.42 71.54 64.30 20.63 45.99 77.13 51.13 82.83 4.92 77.90 38.60 22.58 97.09 12.00 16.25 78.68 87.71 54.29 97.01 65.25 34.86 86.39 44.12 15.31 91.02 37.74 88.44 91.89 60.30 1.36 28.03 83.70 5.27 69.17 48.58 63.42 35.05 14.36 50.83 43.55 46.82 62.48 66.74 64.98 99.35 42.28 72.30 95.92 83.77 73.00 68.34 16.28 -47.80 53.99 26.60 75.48 9.36 94.81 23.52 40.80 17.19 79.34 74.82 47.60 99.89 67.81 98.45 17.30 45.22 58.22 48.61 5.38 5.91 98.99 93.39 93.52 36.12 68.51 40.45 3.19 15.79 49.68 32.97 93.27 92.48 54.62 62.72 39.13 46.45 20.13 9.58 48.52 2.22 99.79 46.24 65.06 40.47 36.83 11.99 44.16 48.00 23.34 20.52 84.40 91.09 5.63 93.91 83.39 38.82 82.35 25.28 24.48 59.67 86.23 62.03 14.09 60.80 23.59 52.22 43.22 37.16 35.59 18.42 30.65 47.84 46.55 77.53 98.44 67.39 75.40 20.59 17.83 94.85 41.01 64.66 96.26 42.94 42.97 37.36 32.42 51.99 95.17 21.77 57.80 53.79 1.69 78.91 40.12 51.21 90.92 12.35 34.08 -67.84 79.47 69.15 14.66 4.80 1.38 74.12 70.47 76.48 98.95 6.52 22.09 77.57 26.57 85.68 77.24 1.68 37.95 79.65 37.43 48.57 82.06 8.39 29.61 95.39 68.37 6.39 74.02 43.12 53.17 61.53 28.36 68.82 46.49 31.55 2.09 2.50 11.05 32.52 35.81 96.66 49.90 37.07 10.10 77.66 10.42 46.73 52.85 80.74 91.04 90.41 37.64 72.86 7.66 75.05 98.31 97.36 96.24 36.44 50.97 92.09 55.57 60.42 60.48 92.08 64.65 32.96 71.82 25.35 9.79 21.99 65.30 20.61 6.76 51.37 74.07 94.99 60.36 89.37 65.05 61.83 63.57 34.85 82.34 7.28 96.97 27.03 85.41 61.26 77.55 72.64 72.09 51.16 11.83 55.40 49.78 38.69 47.11 17.39 58.49 -56.01 6.70 24.04 5.27 87.21 95.38 19.20 97.90 72.24 43.40 87.24 83.61 18.26 43.57 77.41 86.76 30.62 58.58 99.62 65.81 45.14 25.45 88.52 75.90 50.18 46.97 60.82 1.79 69.37 26.20 39.15 7.64 62.21 83.61 87.84 79.70 97.74 10.27 46.04 33.44 78.88 12.83 19.34 54.54 30.38 2.79 0.77 68.04 78.11 36.35 69.18 81.72 85.37 98.59 69.62 33.39 41.25 32.51 63.65 76.32 1.21 2.20 73.74 53.29 69.14 81.60 10.78 41.59 22.48 49.60 73.58 87.86 92.31 57.51 27.17 11.96 12.31 85.84 93.30 49.57 16.11 48.17 79.01 19.94 10.33 31.62 37.28 36.69 0.30 13.94 87.52 73.40 92.87 63.09 89.51 27.53 23.87 88.56 51.51 0.66 -59.83 22.82 91.66 51.65 96.34 19.28 45.82 72.34 66.54 91.38 60.36 86.81 49.22 62.51 78.63 6.00 86.50 77.45 44.17 18.39 9.75 79.80 13.74 22.37 98.82 74.63 42.45 88.29 49.04 26.01 55.55 72.48 94.48 34.71 29.47 53.70 18.59 2.75 9.50 5.67 63.10 80.10 55.85 12.86 83.18 41.95 53.87 25.44 84.93 12.00 5.60 95.22 49.73 2.34 13.83 36.23 34.82 30.93 38.53 17.53 85.20 93.98 92.17 60.07 52.14 25.47 69.52 81.64 1.89 54.52 67.92 92.86 60.85 75.82 38.71 39.23 39.59 86.53 15.75 77.26 53.79 55.99 86.26 11.71 76.67 40.27 18.78 85.87 27.59 51.53 34.86 99.35 67.07 51.79 14.53 55.10 73.59 24.84 94.47 41.65 -52.04 26.21 98.39 39.36 29.71 75.70 75.95 58.56 79.72 26.50 93.31 53.88 45.00 88.98 42.87 99.36 28.46 17.56 21.29 40.72 92.84 85.26 96.54 77.20 52.09 41.76 27.85 63.65 35.48 71.92 89.38 11.65 76.07 7.10 36.34 25.97 7.41 83.80 30.83 13.06 33.84 49.34 99.01 2.10 89.84 83.31 75.29 78.25 42.53 4.64 24.55 93.66 51.75 74.73 54.62 56.52 95.94 25.52 37.08 12.91 13.15 88.12 90.71 51.63 77.50 66.74 53.63 49.18 72.90 24.43 42.84 32.74 91.54 52.75 63.47 66.48 52.05 14.54 97.66 69.43 52.57 58.62 48.25 29.40 81.80 82.45 35.76 2.83 15.28 33.36 59.39 70.08 63.96 96.64 51.59 54.70 23.21 49.22 26.69 29.57 -97.21 88.35 59.10 92.13 27.02 85.41 6.46 23.71 47.05 13.10 68.41 91.79 99.71 55.21 8.32 34.52 43.62 76.75 24.30 43.85 29.06 52.54 26.40 71.19 53.16 66.78 20.54 43.25 30.02 43.39 56.27 94.54 8.10 30.32 22.81 16.80 53.59 57.62 53.94 70.14 77.65 41.75 5.11 33.01 1.01 93.29 44.81 3.49 95.64 84.13 28.51 43.04 12.24 19.12 8.01 80.86 30.78 76.13 9.53 25.46 58.69 16.89 67.30 25.25 54.56 15.84 26.80 21.64 1.09 72.79 92.05 82.69 0.66 5.31 98.40 47.55 79.34 99.21 54.98 65.68 82.76 67.80 90.57 69.14 2.10 89.89 38.01 3.62 45.49 21.52 40.70 15.28 54.12 97.50 37.17 91.73 97.97 83.71 86.11 19.77 -10.76 5.68 37.10 20.19 44.30 11.35 98.50 8.21 13.37 57.54 4.36 67.39 55.38 33.46 34.68 76.88 24.47 50.63 54.94 41.49 31.20 97.49 26.34 41.29 50.17 79.45 81.20 45.55 90.91 23.72 38.37 77.53 2.20 96.71 80.40 0.52 6.95 2.73 37.61 76.92 14.36 64.62 13.21 44.10 47.97 55.39 35.63 21.37 63.38 87.41 60.88 79.82 81.54 43.74 16.71 75.32 16.15 16.36 4.12 69.30 35.89 75.09 70.57 65.17 58.34 14.75 19.52 15.36 37.06 68.30 65.75 21.53 55.05 48.12 59.51 61.16 64.21 65.88 61.25 48.39 25.32 42.87 52.40 40.63 60.71 1.55 16.13 60.72 84.29 64.36 58.58 91.19 36.45 85.79 83.63 85.38 89.56 10.17 84.68 38.85 -37.56 18.11 85.11 38.62 39.66 2.35 75.16 44.78 7.96 82.20 48.45 88.48 45.21 48.81 44.68 7.85 35.53 33.05 91.18 81.93 67.30 85.30 96.95 53.79 94.29 56.14 5.67 5.11 49.84 44.66 10.26 76.76 42.91 59.45 76.71 82.10 37.86 24.29 89.27 99.76 46.52 46.96 46.99 84.60 88.94 61.65 83.23 50.60 31.59 80.57 15.56 62.08 13.58 43.93 82.19 7.46 59.78 83.75 62.15 70.74 42.84 34.50 48.38 51.94 38.22 47.54 77.01 98.82 26.41 40.57 77.93 56.07 34.27 63.14 92.33 66.24 91.03 51.73 60.83 61.79 58.89 38.67 89.63 17.71 30.13 17.88 9.33 7.18 72.29 2.87 63.46 37.92 99.19 29.28 13.71 98.39 47.94 24.38 49.92 79.05 -60.87 88.39 1.49 48.43 58.10 62.91 96.67 98.83 52.20 22.67 85.19 32.76 40.52 19.27 90.48 65.74 42.49 37.30 40.77 10.13 65.28 29.03 49.56 29.45 61.60 66.48 80.52 49.33 40.14 85.84 93.30 31.58 26.66 40.92 28.99 65.34 62.74 33.69 59.77 5.09 24.56 86.07 39.87 90.55 27.91 52.46 46.50 82.15 52.87 10.15 39.85 85.95 5.91 49.65 37.63 62.44 35.43 18.49 94.71 39.94 27.87 39.32 20.74 53.09 63.63 30.10 24.31 7.62 73.77 67.82 14.89 90.42 4.64 48.99 38.75 27.21 25.36 50.37 81.27 53.34 70.87 44.54 12.69 22.89 81.78 67.47 22.10 15.04 74.22 26.38 56.60 13.78 19.62 34.47 7.20 35.01 85.05 8.60 97.54 98.78 -47.63 52.39 10.68 55.59 30.27 78.43 69.08 14.59 6.89 16.53 60.51 0.17 64.47 51.73 22.37 58.10 11.19 12.91 33.16 93.07 27.86 53.19 9.65 22.17 18.41 55.31 14.69 27.42 64.58 66.20 32.26 35.07 62.32 8.59 49.59 99.74 61.12 4.66 46.83 8.48 6.76 55.63 89.42 94.39 75.91 78.91 98.76 53.60 23.35 53.60 38.55 13.28 24.59 26.89 68.38 70.30 40.13 43.88 82.69 4.11 1.63 98.33 48.68 65.94 20.34 27.35 73.58 94.08 90.38 11.19 30.15 21.81 1.39 0.45 61.18 81.56 50.57 41.06 80.83 49.54 16.57 23.45 99.15 19.43 82.25 87.03 12.26 63.18 0.14 71.28 73.99 39.78 48.32 8.54 93.09 82.08 85.07 16.62 24.99 84.46 -19.34 86.13 60.01 32.76 18.39 9.29 14.48 44.93 26.32 46.75 13.04 54.44 20.79 16.15 87.87 71.45 97.08 67.52 46.46 77.45 83.44 85.58 77.31 78.30 42.09 41.97 4.87 49.30 33.27 4.99 66.45 88.57 2.98 9.00 35.11 57.18 66.24 93.84 34.70 1.20 73.71 25.48 64.75 54.13 3.69 14.19 86.47 73.00 68.80 70.47 65.66 96.45 42.93 58.81 81.44 61.22 93.72 93.49 97.90 91.63 72.27 10.29 66.22 16.52 4.63 87.61 70.05 62.77 63.23 20.65 98.73 67.24 96.00 56.63 97.18 32.56 16.86 26.57 67.55 56.70 50.54 95.01 69.17 45.74 91.41 87.76 53.17 93.03 14.98 2.37 47.52 11.53 76.68 41.47 18.05 54.45 98.23 80.61 58.32 49.32 -23.42 7.34 11.53 60.72 49.67 46.47 79.85 40.29 30.91 25.37 48.72 96.50 92.65 76.19 15.38 62.71 1.02 16.68 8.91 13.00 31.54 70.55 28.97 1.64 86.63 54.67 63.29 95.38 70.17 76.68 9.50 71.78 76.67 1.81 55.16 63.16 37.40 78.68 10.66 26.40 53.95 44.93 94.19 43.33 9.15 70.43 29.58 96.86 15.34 65.04 58.47 41.63 1.59 72.18 81.36 15.62 65.39 14.56 57.82 95.36 22.79 42.77 64.21 35.53 54.87 52.26 48.85 4.13 14.03 28.72 0.34 26.03 17.66 47.45 96.88 94.17 33.93 40.73 84.63 43.26 97.67 30.59 19.82 80.62 50.39 31.77 73.64 68.45 93.27 3.41 36.06 87.82 59.57 77.97 94.81 5.57 27.38 44.52 76.08 32.63 -17.44 10.96 27.64 7.40 67.89 91.68 73.55 30.96 45.42 8.05 99.48 76.49 47.80 17.71 72.16 12.88 87.19 64.63 62.55 75.47 59.69 52.34 32.08 43.32 99.68 17.91 75.48 29.46 87.46 64.75 84.58 49.49 55.21 21.08 51.44 64.40 64.13 68.15 95.91 78.74 75.15 59.16 17.75 67.84 9.18 38.72 57.94 23.65 72.63 20.63 48.40 63.94 62.06 67.84 77.40 94.54 48.09 73.71 74.39 17.12 80.40 59.13 73.19 97.29 10.04 71.62 67.72 27.43 61.30 32.98 89.64 30.33 44.96 89.41 53.13 49.68 58.93 17.44 77.00 59.33 43.46 78.73 28.71 87.73 40.53 11.42 10.03 4.36 98.99 61.94 23.87 48.08 10.89 54.19 16.89 9.30 39.08 43.63 12.15 84.11 -84.13 98.94 38.14 45.73 9.01 20.80 86.83 90.01 12.36 28.09 18.03 33.58 70.78 35.46 18.14 89.30 90.57 90.57 6.72 65.69 44.23 21.54 27.61 50.29 79.06 61.23 15.30 19.23 45.90 49.37 52.24 22.13 14.40 22.98 78.54 44.67 86.66 54.74 83.76 80.02 18.46 28.80 7.73 0.45 87.10 32.12 82.77 94.49 55.24 5.88 78.25 43.95 95.05 23.51 19.26 5.89 19.00 86.37 56.82 7.01 15.79 64.34 77.80 19.87 58.02 54.20 32.94 97.63 9.89 3.55 76.95 31.36 67.14 50.63 68.22 71.58 71.96 74.28 75.40 52.83 44.03 12.06 60.19 19.03 37.14 95.46 82.86 5.24 58.05 74.23 81.30 1.83 79.66 77.52 79.66 37.50 7.97 39.59 83.77 61.15 -31.60 15.69 49.91 28.14 83.21 24.64 65.61 4.12 36.51 58.88 30.19 35.02 91.53 74.54 70.16 45.53 53.51 72.51 48.63 76.93 11.37 73.12 83.78 51.16 87.05 7.96 49.43 39.99 76.77 70.87 29.68 83.93 10.91 50.66 59.06 90.70 74.49 39.27 67.87 67.49 31.56 54.84 28.49 36.20 70.64 77.87 83.58 27.73 54.68 90.24 79.69 57.92 61.85 96.09 32.47 15.51 54.54 92.60 66.88 99.53 37.46 99.24 98.01 17.92 85.62 28.78 55.57 35.48 34.84 77.49 49.63 21.97 12.36 60.35 86.40 48.72 42.19 47.73 80.41 46.53 91.94 78.73 70.45 58.16 56.57 1.77 28.61 64.69 51.56 50.15 60.60 33.05 45.85 71.03 28.56 65.03 41.91 47.85 38.95 53.06 -84.35 76.84 32.70 1.58 96.55 24.39 33.87 66.31 54.44 64.03 86.46 48.22 86.87 60.31 44.80 2.51 79.69 81.85 54.67 19.28 22.60 71.94 65.32 28.53 83.86 7.92 2.87 19.43 88.42 37.17 15.54 49.32 57.74 78.72 3.85 67.81 61.45 59.45 32.21 96.48 35.44 30.94 81.37 3.44 24.08 16.57 62.99 31.70 72.41 21.02 46.93 47.24 87.18 45.82 52.13 50.70 87.45 62.61 83.61 0.10 21.26 3.79 26.60 84.23 7.60 0.86 67.19 75.75 96.49 9.91 14.17 4.95 7.65 9.22 25.82 26.67 61.20 58.23 2.72 39.23 5.34 24.45 68.34 32.05 54.80 75.11 18.92 10.09 56.58 24.28 20.42 1.79 42.07 19.82 15.67 3.71 83.11 90.17 2.56 97.19 -75.61 14.69 50.64 17.29 79.77 81.59 24.44 98.00 40.67 30.93 86.07 18.11 81.84 93.21 17.22 26.08 74.88 5.89 55.95 3.72 78.25 19.08 94.88 35.17 54.60 57.65 7.11 80.97 3.93 5.36 77.80 11.57 21.28 57.58 17.40 62.63 23.76 9.91 7.14 77.80 56.83 70.76 76.14 22.49 20.69 79.38 87.06 86.25 90.87 72.41 51.82 81.32 62.90 39.95 40.21 43.63 25.60 34.41 20.75 9.28 99.25 73.41 19.91 19.58 6.56 14.27 81.67 33.12 99.80 75.85 17.72 59.29 23.87 97.01 25.21 91.92 13.82 38.19 49.64 98.15 77.63 80.11 18.55 18.46 79.76 27.08 86.89 24.56 36.12 31.36 79.82 78.14 23.48 91.25 2.92 83.81 35.72 84.81 89.20 71.64 -28.59 29.24 94.40 87.07 41.67 26.59 4.05 28.02 53.81 68.08 90.56 92.62 40.71 99.87 34.97 66.93 70.00 55.64 77.78 46.63 68.17 72.99 77.78 15.85 55.26 4.27 56.01 91.47 54.66 59.62 15.69 24.65 62.08 93.99 83.31 32.84 99.30 72.86 7.69 29.14 57.88 26.57 89.93 99.01 82.94 88.59 17.94 92.23 20.46 2.93 48.09 10.32 28.00 83.19 17.20 99.33 92.20 77.50 80.06 68.15 91.02 89.72 61.60 48.33 91.27 62.39 6.80 79.13 49.71 15.75 38.69 91.05 57.54 84.42 61.34 61.07 93.58 57.70 68.61 7.24 23.49 52.62 52.43 81.69 93.09 11.69 60.13 87.72 12.79 32.52 97.93 78.56 73.35 88.80 55.11 32.90 45.62 30.92 65.75 38.36 -55.71 35.81 6.92 53.08 10.15 32.19 33.01 14.49 77.21 29.25 12.23 30.36 69.63 53.35 77.38 81.78 97.63 12.41 37.38 73.68 58.02 38.83 85.04 82.99 92.88 11.71 80.36 42.74 11.85 29.12 38.46 3.29 14.34 19.23 6.07 85.35 67.40 26.84 75.53 38.35 52.67 44.53 49.60 97.68 83.47 60.69 24.31 92.35 36.76 82.73 59.06 46.72 3.56 72.24 36.27 84.54 2.33 78.09 37.47 42.90 76.54 25.61 67.35 57.49 11.42 61.69 76.93 39.09 63.96 67.82 59.59 21.05 4.35 15.12 76.08 85.76 80.85 93.36 25.29 63.55 3.13 86.04 39.39 14.91 22.79 26.78 70.54 66.29 67.51 18.82 18.03 60.64 42.17 53.52 77.98 55.14 95.86 71.79 65.78 35.54 -38.43 83.95 50.14 57.84 62.81 38.88 44.48 9.05 72.36 25.74 14.11 85.40 50.19 81.54 2.02 67.77 90.30 19.26 17.80 29.80 55.19 13.99 10.68 59.95 59.43 81.26 66.62 33.52 36.73 62.57 26.64 74.24 7.94 28.24 47.72 98.94 0.24 58.12 2.48 43.47 67.07 23.35 12.06 4.47 72.39 71.47 8.09 55.63 10.39 10.17 57.61 48.75 23.39 33.04 76.92 39.45 36.90 83.09 96.81 69.02 30.36 71.60 38.46 96.95 61.77 14.08 58.22 87.49 13.60 39.74 5.93 51.40 43.44 56.93 4.17 27.65 98.46 79.11 8.58 58.83 95.98 56.63 20.31 77.84 74.77 16.44 91.37 66.85 62.99 14.80 79.16 7.07 50.56 69.83 6.24 7.72 13.23 5.87 0.78 82.69 -38.95 11.79 33.22 60.42 33.69 48.11 93.62 53.42 7.45 85.70 82.78 5.15 90.00 62.83 95.82 71.44 24.36 78.17 77.35 44.27 99.26 10.72 44.22 87.49 47.88 63.31 9.18 38.93 21.44 48.81 18.00 91.14 13.35 17.95 13.90 6.07 93.91 24.80 63.70 8.91 79.94 52.30 12.46 33.10 57.49 71.51 23.33 82.58 85.00 98.98 64.47 14.29 92.59 46.26 68.60 50.10 85.11 59.22 37.06 20.13 70.33 11.36 71.59 8.29 13.75 36.69 11.86 78.55 72.22 89.71 61.83 98.28 91.57 46.45 24.58 23.23 86.04 30.28 48.38 22.90 87.14 69.51 72.25 56.38 85.23 87.38 21.33 73.78 55.21 41.90 62.43 82.88 22.18 43.74 87.44 44.86 44.10 40.08 96.13 10.53 -75.61 8.12 52.66 42.63 7.05 47.90 13.46 20.94 15.56 20.01 46.12 61.91 16.80 30.24 55.12 13.51 66.23 75.91 56.44 26.02 54.41 13.89 33.78 17.95 11.50 81.43 94.25 53.46 23.98 97.42 28.16 17.23 40.42 17.62 52.56 36.84 24.85 11.76 70.87 66.18 28.10 1.62 47.72 62.41 79.91 16.16 73.10 9.03 22.62 25.39 94.43 56.79 96.92 5.49 70.73 77.24 24.60 80.90 34.46 77.73 1.98 97.42 14.46 39.59 24.85 68.72 54.46 85.96 98.32 58.71 36.31 38.94 72.90 48.05 72.06 36.90 59.94 76.45 24.87 33.42 49.74 79.77 18.47 46.80 24.04 98.17 50.23 1.93 59.41 58.94 39.64 67.52 95.72 12.47 31.51 45.32 76.32 77.52 94.42 14.23 -53.72 40.78 30.58 54.02 23.47 83.45 7.03 45.36 47.87 85.49 30.54 38.87 79.36 25.41 52.78 70.01 67.16 7.18 79.41 24.46 47.24 11.27 95.15 96.60 15.20 47.66 22.31 86.10 73.59 57.71 49.11 88.83 52.28 65.23 97.79 8.11 86.55 67.89 49.63 70.50 69.02 22.39 59.71 95.08 30.13 10.12 28.38 6.35 3.71 99.62 26.71 29.19 71.75 11.29 38.45 13.22 99.75 21.66 83.88 98.02 36.94 5.86 91.71 88.40 85.99 80.29 61.64 62.65 96.30 78.08 33.40 41.60 7.52 0.94 12.62 82.96 70.95 59.62 24.93 39.45 94.05 15.91 71.24 54.83 86.85 24.19 60.37 93.29 88.21 26.92 72.13 1.83 38.65 58.97 18.21 56.25 34.36 78.53 81.77 2.06 -68.87 80.74 26.75 13.11 30.04 94.61 74.29 15.14 13.13 39.51 11.06 86.15 60.48 66.28 83.04 20.49 70.37 95.13 76.87 65.92 86.40 63.62 46.16 57.38 16.95 13.25 50.25 38.06 9.23 37.51 42.54 56.14 92.00 13.20 29.29 16.25 27.35 45.06 40.57 18.27 53.02 52.79 42.81 95.29 36.27 76.36 5.45 44.17 36.19 11.09 83.64 83.36 81.22 17.19 45.25 4.16 30.31 15.91 34.66 34.71 9.31 24.58 30.71 51.22 11.52 37.42 93.96 45.63 85.85 61.94 0.85 55.09 17.42 4.19 76.93 78.47 45.62 55.66 69.37 10.27 58.56 51.51 39.31 87.58 28.83 16.30 79.18 89.23 59.49 38.68 39.01 39.75 5.70 26.91 17.51 44.26 45.03 91.99 5.06 73.73 -10.38 92.94 79.38 81.59 19.91 39.69 1.08 63.85 50.32 2.63 77.69 56.00 53.86 7.67 37.62 29.05 23.15 61.62 57.49 82.01 14.05 7.02 28.98 95.06 9.38 72.96 9.40 66.22 16.65 59.25 20.81 75.41 43.96 6.52 62.07 9.51 94.78 39.31 80.91 84.33 7.18 82.80 3.98 58.25 74.67 92.98 98.23 47.10 62.00 95.61 80.13 24.55 53.62 95.21 52.13 46.96 76.08 67.53 79.44 28.64 19.86 71.25 51.07 10.40 70.92 94.44 1.53 8.09 17.52 10.11 2.05 40.41 71.61 80.92 44.85 90.05 72.50 45.73 94.14 56.33 49.19 2.39 23.24 27.20 87.84 20.13 43.48 65.45 64.93 82.75 49.91 42.95 10.00 68.52 58.10 82.14 81.46 12.27 81.49 20.77 -3.43 23.02 66.55 2.79 71.89 35.94 6.90 46.56 10.34 10.80 73.94 61.48 20.34 46.29 79.19 90.01 63.20 13.47 33.79 83.85 47.21 2.86 15.29 56.36 83.24 9.13 34.24 45.91 86.39 33.71 30.83 73.66 24.44 4.24 58.02 1.69 50.41 61.37 79.18 98.74 89.57 69.88 24.14 31.47 69.07 38.73 85.65 59.34 4.71 35.96 27.84 89.97 73.84 88.25 80.95 16.59 12.75 43.50 98.10 34.49 85.69 28.59 0.67 51.46 50.25 10.70 47.37 43.00 48.55 46.83 0.64 84.99 80.82 37.91 81.26 77.51 26.12 57.16 49.96 16.96 21.72 3.98 60.08 51.83 25.29 86.43 98.75 42.97 3.94 21.20 98.09 39.58 95.14 2.59 46.13 21.15 86.62 72.11 47.61 12.37 -93.49 19.43 88.32 98.59 57.54 50.94 68.70 95.34 4.92 21.27 15.19 95.92 10.75 21.84 6.56 92.49 10.51 37.79 17.49 78.87 62.43 80.12 82.43 7.21 67.32 76.03 58.93 10.69 96.29 6.12 27.37 76.83 75.58 48.61 48.12 68.08 10.23 53.82 45.36 61.26 73.24 11.07 29.76 66.29 85.37 70.35 63.27 34.18 20.46 0.46 20.27 22.50 18.39 97.42 87.66 43.50 84.80 44.23 74.54 72.58 43.96 78.41 83.57 17.03 30.11 81.83 18.30 64.12 21.06 84.53 89.73 40.94 29.67 78.18 35.60 70.65 0.66 69.74 72.51 84.45 13.81 50.05 1.26 22.86 32.05 22.91 40.71 62.48 73.82 92.64 31.45 93.62 73.88 2.95 65.00 77.96 49.99 44.82 29.67 46.14 -99.58 22.26 34.11 82.53 6.69 76.99 68.41 91.81 58.64 43.67 92.83 19.48 81.07 9.02 11.11 35.29 45.22 26.36 37.54 39.15 43.50 42.95 11.12 50.21 88.45 50.96 26.21 64.05 55.73 88.61 82.02 21.80 96.65 92.58 43.71 20.98 67.30 62.23 82.20 33.72 7.09 25.88 2.40 83.08 46.70 27.85 96.77 87.55 76.85 75.09 62.55 24.16 36.65 63.54 2.24 0.36 59.87 92.94 92.52 78.94 24.06 90.61 56.18 67.57 87.19 26.80 98.74 53.36 52.13 12.96 15.66 59.65 13.05 70.82 42.72 93.91 58.58 53.28 19.33 97.06 9.05 37.84 22.60 28.09 74.22 90.71 4.78 99.68 59.43 15.83 28.29 30.30 15.75 41.62 75.76 64.53 5.69 55.04 37.85 59.97 -73.61 44.22 66.93 30.42 25.67 58.47 9.69 87.90 73.36 89.21 42.90 87.32 71.71 70.31 18.73 9.62 24.44 19.15 85.49 92.57 51.58 60.35 72.52 90.40 79.75 8.38 3.28 61.97 73.02 55.43 22.59 87.42 68.85 37.21 46.21 9.60 80.39 98.76 73.30 86.11 65.15 45.08 80.40 95.53 70.79 83.81 52.64 26.70 97.46 70.88 24.88 7.51 93.81 15.15 82.13 92.87 76.71 63.82 49.32 99.86 22.87 9.34 93.21 35.12 5.32 83.44 53.82 16.21 41.11 85.59 34.66 17.88 82.30 65.62 27.20 8.92 56.53 83.54 3.78 81.11 2.93 2.59 16.26 52.71 63.51 81.73 14.02 42.71 75.40 9.19 60.72 76.15 98.44 67.12 90.56 81.60 3.02 92.61 30.48 22.77 -24.61 62.14 58.66 78.57 7.37 88.12 71.58 93.19 55.71 1.93 92.92 40.68 86.73 5.86 60.74 36.78 38.75 11.40 13.95 67.29 62.48 68.25 55.48 84.39 90.15 15.01 9.94 37.87 13.91 15.80 88.95 72.64 86.65 6.38 11.05 38.21 55.81 30.23 91.55 69.83 5.41 75.64 25.82 5.20 52.40 37.44 18.67 20.69 51.64 36.17 57.36 94.66 47.99 90.20 47.57 73.63 63.82 45.07 4.60 29.29 93.73 5.50 36.13 42.35 34.82 65.23 36.84 23.76 27.51 39.61 37.03 32.57 55.30 50.03 72.55 76.31 7.09 77.73 60.29 58.47 67.94 36.15 49.01 90.02 79.97 49.35 27.07 14.96 88.94 7.75 19.04 34.47 17.30 17.45 7.91 63.48 63.06 68.68 99.75 43.33 -67.07 68.67 26.22 21.33 53.02 20.37 37.63 55.11 56.16 48.37 92.54 57.41 62.01 15.18 80.36 7.31 34.62 15.87 67.99 8.80 43.14 25.73 62.41 85.75 49.36 25.40 72.03 20.14 56.05 50.41 76.94 18.37 57.62 25.54 14.90 28.28 43.70 3.06 29.90 67.28 40.80 76.38 48.80 14.28 88.05 78.49 19.27 47.59 75.29 4.31 42.88 73.22 46.23 11.81 20.45 35.10 30.78 79.28 33.98 16.62 58.89 0.54 53.40 69.14 30.02 36.23 74.31 79.54 35.61 60.45 62.21 14.35 39.84 18.10 51.38 13.06 73.34 17.20 44.63 5.25 15.26 91.65 52.70 66.60 29.75 42.83 36.97 4.92 85.36 1.10 30.57 51.69 35.36 86.77 29.45 30.64 3.60 5.34 52.46 84.63 -88.33 2.97 28.73 3.61 12.27 60.58 88.47 12.21 99.33 86.61 87.08 98.09 20.06 72.39 52.33 7.43 22.47 48.50 2.48 3.96 27.31 91.52 57.41 10.07 69.37 46.79 0.24 93.19 51.96 13.78 53.00 60.70 8.67 54.48 24.29 10.57 55.32 60.87 50.39 52.31 53.37 44.50 56.06 34.61 60.07 0.41 47.92 74.73 0.60 33.59 66.50 18.04 63.54 34.80 80.32 42.76 92.77 7.79 88.11 40.39 73.75 7.76 84.98 56.08 32.13 95.64 68.65 92.25 23.21 46.89 28.79 56.70 9.62 19.86 55.85 83.11 15.56 59.16 74.70 42.19 64.06 15.85 76.24 61.75 63.84 32.27 39.31 39.85 11.47 48.89 12.10 63.70 18.00 93.76 64.46 10.58 61.10 11.74 13.58 27.84 -43.13 89.38 71.44 55.98 89.09 10.63 27.71 5.88 26.26 46.99 92.91 66.44 87.07 85.16 73.21 51.54 16.96 79.09 13.75 28.62 92.08 12.72 99.35 4.41 81.29 92.39 4.62 71.70 83.19 36.30 93.81 27.58 75.62 57.39 16.80 20.54 29.88 8.52 72.89 51.41 10.13 42.74 35.80 70.59 35.77 57.45 81.50 65.93 77.96 68.18 90.98 29.30 10.88 76.16 13.86 51.96 41.85 13.40 73.42 30.40 7.04 88.89 37.23 89.99 69.33 91.81 14.99 82.05 62.83 66.72 2.96 95.83 46.83 8.27 77.58 79.08 86.28 12.29 31.12 11.04 64.44 12.24 9.12 18.64 37.80 84.06 6.27 43.60 30.31 47.61 26.19 25.33 53.18 85.50 7.04 85.51 84.02 72.02 22.60 98.94 -62.73 87.31 94.29 57.21 48.46 89.61 60.31 31.47 20.76 1.84 93.38 73.09 87.95 21.61 78.86 67.70 18.60 45.92 35.46 59.67 62.20 63.82 44.10 67.64 84.15 89.12 48.94 22.40 64.29 25.51 11.09 10.33 44.71 8.91 70.68 2.91 41.06 31.64 15.16 71.55 83.19 60.23 29.93 95.37 68.30 78.86 23.58 86.14 17.19 83.93 89.27 52.34 71.13 35.52 17.73 26.31 5.68 67.73 76.52 45.04 47.99 46.42 0.48 50.55 51.12 88.82 87.34 60.50 5.41 77.35 37.46 3.01 17.95 23.33 2.08 71.96 78.22 93.01 59.99 39.86 64.21 76.21 76.13 31.17 86.89 53.45 89.70 35.46 82.30 81.60 75.63 44.04 46.15 17.63 76.06 78.21 60.05 34.72 52.93 11.85 -65.02 45.74 55.14 68.97 73.81 52.37 57.37 71.50 90.99 39.47 63.38 71.94 68.75 9.15 74.60 2.49 30.31 15.90 23.99 14.31 77.60 55.34 20.56 96.64 98.62 95.89 82.48 76.31 62.01 81.40 76.37 25.88 53.58 63.51 76.80 1.00 21.45 59.89 95.18 77.93 60.98 30.62 55.73 49.91 98.82 81.59 54.96 48.17 25.88 70.71 56.29 20.72 49.43 37.97 97.50 84.41 45.16 49.67 31.01 22.77 93.66 49.30 68.61 30.52 21.21 95.53 71.55 97.42 25.39 22.77 33.58 25.52 64.30 35.35 4.89 60.82 61.03 78.72 5.95 32.15 90.06 32.39 66.72 54.53 61.18 63.90 28.00 15.44 66.70 47.77 22.45 28.05 11.19 54.06 70.44 10.90 94.90 94.28 60.86 58.90 -34.29 80.77 62.24 27.51 22.10 67.12 49.27 40.80 22.11 9.30 39.97 83.41 73.02 86.80 90.76 93.03 37.70 78.63 32.90 60.06 5.98 17.86 64.27 76.09 82.06 29.34 59.49 0.53 83.90 7.00 48.38 76.45 73.91 62.19 15.04 92.46 93.79 91.13 84.29 26.10 22.97 19.54 20.93 75.79 4.84 67.78 15.65 44.04 74.73 80.95 57.82 81.29 4.51 38.00 70.05 4.76 25.10 34.72 12.48 5.52 42.23 21.99 62.09 91.78 92.82 71.06 87.70 62.07 10.39 19.40 12.54 24.30 17.58 9.77 57.49 82.84 20.72 97.66 30.64 2.06 10.14 50.18 69.67 94.79 27.34 48.43 95.55 57.39 72.45 68.33 79.16 21.34 39.89 28.03 21.27 45.23 54.73 96.78 7.17 28.30 -25.54 11.04 55.80 80.19 79.87 76.88 81.44 7.51 88.64 63.97 7.81 40.88 72.05 73.09 93.23 46.55 26.06 69.86 44.67 85.60 18.77 92.58 63.76 39.04 7.30 14.50 83.54 18.03 49.00 29.87 18.17 31.15 57.98 7.68 22.49 96.89 51.12 44.72 50.83 83.27 1.80 24.95 10.60 65.65 0.06 86.29 8.80 81.12 4.80 92.79 42.02 39.76 66.62 65.90 72.29 80.28 39.52 7.61 6.13 62.86 62.27 8.87 51.51 44.38 57.41 60.66 93.31 84.77 31.29 96.45 85.05 29.72 51.52 64.68 28.52 94.21 82.34 46.40 90.55 29.40 32.11 93.96 23.84 23.65 29.37 53.68 74.25 58.49 86.81 92.70 80.01 44.05 11.06 3.51 87.65 71.84 96.01 33.82 22.93 91.53 -71.68 56.70 68.70 47.32 38.54 46.40 20.69 88.93 74.58 29.06 24.89 27.54 75.71 10.92 13.44 82.27 63.77 12.71 56.81 82.76 33.34 35.17 32.64 80.89 56.07 52.37 59.47 72.49 92.74 48.90 59.85 93.27 50.01 50.33 79.51 96.19 87.46 85.51 65.30 60.05 26.31 38.83 42.15 8.79 64.86 56.28 43.62 15.88 42.10 28.03 38.86 42.14 51.70 64.93 3.14 67.76 31.19 52.73 12.37 6.13 53.86 4.23 19.73 33.74 13.83 80.61 32.95 21.67 8.32 4.67 88.28 61.24 75.88 17.88 26.87 14.63 64.91 43.01 21.20 74.46 7.91 59.42 25.31 94.57 45.20 79.29 82.60 15.20 85.78 33.58 91.87 81.05 90.02 26.39 93.28 37.95 72.67 93.03 51.67 73.77 -58.24 54.06 75.77 89.63 97.69 93.68 37.40 67.10 53.06 87.56 60.37 4.56 71.13 63.18 39.55 23.85 4.78 66.68 45.33 82.16 48.87 63.93 10.25 69.92 40.17 24.54 30.81 31.44 43.97 42.58 38.56 25.59 14.42 1.96 73.43 5.41 96.11 67.40 72.08 14.45 48.62 70.96 32.53 62.11 67.07 2.69 94.87 52.31 86.97 3.72 79.05 24.46 19.23 86.51 6.21 7.44 73.19 58.16 89.78 11.70 44.74 17.15 52.03 32.71 75.56 94.17 61.57 69.96 58.68 91.86 24.54 28.76 47.45 79.16 13.76 33.09 52.91 98.76 40.16 11.07 74.19 4.74 63.23 5.98 5.06 51.49 9.78 5.41 73.92 78.30 20.84 22.83 30.11 35.37 83.06 45.66 45.92 17.42 67.66 65.10 -41.80 47.17 98.82 8.87 87.04 84.61 27.44 2.75 83.37 30.92 8.61 34.68 31.61 82.15 54.93 69.05 81.40 25.06 1.43 30.35 24.52 25.82 55.77 72.47 46.18 58.73 40.58 60.65 81.17 96.44 23.64 46.09 18.39 55.01 0.90 93.92 84.57 17.91 81.86 48.71 34.38 83.32 76.44 64.69 38.17 26.75 2.70 4.07 31.36 20.71 42.44 9.20 57.80 12.91 72.14 97.49 54.40 53.27 19.37 49.51 81.82 41.83 98.97 1.94 44.86 83.28 48.94 22.34 97.78 87.09 39.67 49.57 94.57 53.50 13.47 41.68 22.16 85.25 15.31 97.96 47.60 77.52 21.67 44.18 84.89 74.66 85.20 28.51 64.83 58.45 14.40 65.85 13.30 93.14 88.70 3.76 55.09 5.43 74.75 65.68 -37.48 13.69 13.99 0.13 8.95 28.85 58.32 72.54 50.35 26.79 44.67 82.26 12.34 95.51 48.70 21.22 28.15 71.48 73.67 22.14 82.44 6.54 41.88 40.44 65.71 56.56 0.04 82.28 47.43 69.33 76.48 43.36 87.22 79.70 0.50 98.62 22.60 73.48 87.88 40.18 38.34 61.50 24.74 30.21 94.16 82.21 26.57 78.92 12.23 39.41 26.95 39.04 50.50 65.01 18.02 98.70 36.93 0.39 13.24 37.03 73.57 96.88 37.86 79.76 91.95 87.93 60.25 78.81 16.30 48.62 28.81 12.91 8.10 10.60 58.62 51.97 56.54 21.43 77.75 16.25 57.81 74.86 91.67 52.05 82.80 29.54 5.12 92.99 12.28 68.15 31.35 88.09 57.19 3.82 59.22 67.91 45.85 60.14 37.44 20.27 -91.72 11.73 11.29 28.36 97.98 47.87 28.22 6.63 66.36 66.56 29.89 1.45 65.88 25.85 10.09 17.63 5.16 62.14 89.42 72.37 22.64 66.68 31.24 76.44 14.91 52.94 87.90 24.54 64.27 29.80 14.37 50.52 8.90 57.80 21.15 17.40 44.92 59.77 49.75 99.63 54.48 15.93 65.60 1.22 7.03 41.03 73.04 93.43 63.99 62.59 68.65 56.78 33.29 65.28 55.29 11.89 18.77 29.57 87.49 97.82 84.12 73.46 1.81 26.06 84.67 16.05 97.30 90.02 52.38 99.41 51.08 99.06 56.21 52.99 45.41 64.42 77.83 34.40 53.26 66.86 72.06 0.12 88.93 94.53 89.22 28.68 56.56 83.22 72.29 74.81 41.94 63.61 82.45 82.97 97.58 94.66 64.47 34.51 42.55 70.14 -41.80 4.20 97.83 78.20 25.88 86.75 96.05 0.71 11.71 83.50 35.26 53.06 91.35 66.63 68.38 52.86 11.03 19.11 20.45 14.12 3.21 35.56 14.05 7.41 39.05 47.29 46.29 65.81 24.41 46.07 75.92 54.59 84.20 77.94 95.49 24.96 49.45 26.72 26.67 64.17 43.69 85.15 50.23 35.56 9.45 82.21 87.05 38.99 64.52 43.63 66.51 21.33 44.07 9.76 93.55 63.80 25.77 41.46 54.18 30.49 68.24 15.95 63.77 92.42 46.71 69.62 74.95 93.21 33.26 30.66 69.69 4.63 96.56 51.36 38.18 71.40 74.39 91.19 33.39 23.94 71.40 26.95 51.09 32.74 91.65 24.95 97.99 4.72 4.41 33.23 8.27 1.34 51.23 79.05 39.01 41.78 75.57 61.30 11.24 73.74 -61.26 88.99 10.49 65.48 53.30 34.01 40.42 96.17 21.94 86.02 43.93 93.98 80.91 10.58 26.96 30.65 91.09 86.79 70.06 97.24 76.50 49.31 78.39 71.44 39.70 12.63 31.67 77.12 23.32 32.72 28.67 40.68 69.18 93.22 50.33 12.16 89.24 54.14 23.59 75.80 22.22 83.90 1.29 96.26 22.02 4.29 93.32 17.86 62.70 63.11 46.94 63.95 71.41 7.63 67.87 17.14 74.62 9.95 26.77 4.67 43.33 15.83 96.52 33.44 39.47 50.92 64.30 62.41 40.74 77.87 60.21 82.54 70.19 8.84 0.36 88.46 53.30 11.39 10.48 16.67 94.04 10.77 69.15 11.85 59.45 89.58 13.61 99.84 40.36 32.33 48.47 38.45 66.34 12.33 20.54 88.96 3.02 15.11 79.26 59.51 -43.32 77.99 18.32 19.18 24.56 92.76 11.99 44.18 93.91 35.34 28.44 99.70 96.03 39.88 37.81 51.82 22.38 90.28 72.68 43.21 66.92 70.41 95.67 93.01 54.66 99.09 90.09 95.38 7.39 93.64 23.16 45.32 70.14 26.23 83.80 10.61 58.25 89.48 5.95 32.78 36.43 35.19 70.68 11.33 38.21 2.91 29.22 94.76 6.05 37.26 68.98 73.32 26.99 11.36 74.01 11.11 18.26 63.82 59.48 32.54 38.80 86.72 34.42 7.76 57.32 95.87 43.59 66.13 9.40 56.56 28.71 98.27 98.21 31.26 26.74 60.94 35.19 22.08 22.28 98.74 32.93 80.03 96.28 77.46 67.13 78.89 44.61 29.62 26.65 39.46 17.68 90.31 94.00 65.12 7.10 82.41 14.66 22.96 30.16 10.24 -99.84 51.70 72.35 43.38 51.52 65.39 23.35 86.90 33.82 68.74 48.59 63.54 19.31 26.74 0.81 41.46 81.62 92.31 60.19 88.95 51.10 11.12 23.99 10.33 53.70 22.98 44.66 39.57 48.13 57.62 95.13 36.13 23.89 34.06 54.15 45.39 4.10 68.71 47.70 59.92 38.18 58.79 61.66 42.40 2.22 68.94 4.97 89.12 19.74 43.24 36.62 42.08 17.91 77.31 76.94 38.90 77.20 77.59 92.24 19.21 29.91 14.14 71.51 70.25 65.92 50.34 58.14 97.84 80.02 90.72 6.89 97.79 44.03 45.85 74.21 94.15 32.98 69.65 55.90 72.58 42.77 93.40 47.03 70.94 76.30 9.49 46.49 37.44 44.67 89.86 35.69 63.08 11.78 19.94 39.33 53.55 75.47 60.69 16.91 27.22 -9.59 11.89 31.24 26.79 74.13 19.13 48.53 78.24 40.70 5.15 64.72 0.72 60.07 94.49 32.66 94.34 27.52 65.17 91.97 90.00 75.82 71.61 40.20 48.98 2.53 53.15 67.90 50.15 3.94 73.84 23.32 21.16 58.79 28.39 98.45 7.19 5.20 6.51 85.17 55.49 38.82 78.10 34.88 46.93 14.82 16.31 42.73 28.41 72.90 1.47 30.11 56.03 52.90 2.91 64.73 41.73 45.72 82.86 33.44 26.22 18.56 85.45 8.31 17.41 21.36 62.87 9.15 55.81 54.97 13.38 29.93 57.71 90.77 68.57 68.19 54.77 69.94 55.16 0.13 16.09 98.92 75.66 82.15 62.06 15.17 19.51 63.45 28.69 1.74 73.81 23.02 82.58 31.57 42.62 63.10 80.45 6.31 66.82 60.09 29.60 -69.87 84.36 88.38 79.38 2.89 75.44 42.35 33.47 24.58 2.42 90.28 19.74 91.82 21.38 97.53 65.64 96.39 28.13 87.09 35.45 9.01 92.76 24.99 59.06 76.16 4.78 25.41 47.62 49.98 56.74 36.11 9.84 66.46 95.10 14.91 98.07 92.31 86.05 78.49 77.60 73.73 47.50 42.51 98.12 49.82 11.86 88.26 89.66 28.75 48.86 89.01 54.08 92.09 27.12 8.42 26.71 33.71 88.56 32.26 18.64 34.39 15.20 55.25 66.30 22.11 23.65 10.51 1.33 39.10 80.49 31.26 4.88 98.57 68.22 78.42 36.61 83.38 22.21 19.88 63.12 51.05 75.10 13.49 47.83 87.30 42.85 63.40 15.34 42.46 90.54 31.81 64.50 55.25 38.91 49.24 82.28 80.61 91.42 1.74 40.13 -13.44 21.02 3.29 74.83 78.85 24.29 97.30 36.54 13.77 86.59 60.31 25.11 47.73 52.62 30.78 62.22 52.80 84.37 62.71 35.59 88.92 95.69 61.62 79.14 50.40 5.90 16.34 73.51 98.31 34.63 32.79 77.29 16.18 26.57 94.77 49.73 97.97 83.04 56.12 24.67 13.13 35.14 47.28 85.67 52.88 93.54 85.04 90.01 20.02 29.56 86.28 85.38 49.66 14.02 8.09 61.65 94.57 78.02 92.01 7.50 70.15 40.41 70.98 59.41 93.20 7.61 88.31 64.82 4.02 0.71 90.01 92.60 96.16 63.15 13.26 52.90 57.97 7.07 25.64 13.20 30.85 67.98 77.17 99.68 35.38 74.69 5.33 97.79 91.97 65.94 44.08 55.26 3.64 74.48 39.28 30.43 8.55 0.59 46.49 51.69 -87.61 87.72 93.48 85.52 59.96 38.28 15.23 76.17 55.41 91.83 1.98 55.78 59.40 14.13 53.84 66.57 74.60 30.71 11.09 12.17 29.82 54.34 79.02 62.25 22.45 79.48 72.98 55.82 93.43 17.01 28.29 39.69 29.18 19.65 4.71 6.52 16.91 82.23 60.67 62.39 19.63 97.80 80.02 14.36 19.59 91.64 98.88 32.87 10.23 19.21 24.12 97.79 29.33 38.05 84.90 31.58 15.56 37.43 49.77 59.41 11.10 59.54 15.96 90.27 4.55 3.63 14.10 17.70 49.54 57.60 92.54 26.56 33.63 63.14 81.77 14.25 24.02 24.54 16.21 79.25 3.70 73.96 76.97 82.36 20.47 51.33 22.00 70.17 58.79 14.93 59.70 20.39 38.76 47.62 18.54 32.91 0.91 64.50 79.27 32.13 -47.13 15.50 23.70 63.05 96.25 66.12 47.18 47.78 19.94 19.80 79.46 32.61 45.51 88.92 2.47 45.99 58.45 50.78 15.07 70.19 30.32 4.07 86.31 33.73 27.81 86.52 90.82 43.13 77.95 15.42 0.92 20.64 46.14 20.29 85.09 30.19 0.98 33.50 39.03 64.25 48.71 53.60 21.80 46.08 45.77 46.98 83.83 41.55 96.55 45.24 1.26 77.64 11.79 51.11 8.91 91.10 59.16 4.61 72.63 58.63 43.22 34.88 39.05 60.07 29.69 12.52 64.20 30.65 61.06 85.95 71.35 13.31 52.41 84.48 30.92 28.96 2.38 12.47 83.55 49.39 5.96 52.58 31.47 19.11 32.32 9.21 42.20 19.92 77.80 61.37 18.52 47.21 40.17 34.87 40.28 74.11 52.19 64.99 29.36 35.20 -77.08 82.92 32.56 39.95 64.79 54.99 62.21 2.24 24.18 1.95 60.61 88.64 56.16 30.81 57.66 67.44 90.95 58.29 72.22 88.73 92.91 62.44 30.14 58.43 92.04 41.77 41.00 78.99 31.53 30.21 36.82 88.39 72.80 21.50 50.60 48.02 84.09 91.13 33.21 19.34 1.00 91.50 91.06 69.25 99.06 12.28 51.71 65.58 78.34 64.45 66.56 24.86 19.34 61.43 42.74 39.85 8.52 3.28 72.01 72.36 68.77 48.37 23.02 16.49 32.65 6.74 6.53 8.29 55.49 40.29 18.83 52.97 24.14 78.04 92.39 77.83 87.35 2.37 20.60 89.48 95.61 27.29 38.73 53.82 10.06 34.47 39.97 10.15 3.78 77.27 91.54 83.43 95.03 55.15 72.48 56.54 98.95 5.95 20.93 84.79 -42.83 99.24 16.05 49.92 53.81 48.78 19.30 30.84 40.67 38.37 74.43 80.09 77.96 46.54 77.04 75.65 63.60 91.23 9.59 35.36 91.66 5.57 63.25 70.49 27.85 19.47 32.78 18.92 46.63 72.10 17.67 70.40 84.28 27.94 81.84 94.10 12.91 53.29 60.69 48.78 16.77 57.62 15.99 80.60 90.70 63.20 83.97 12.29 24.13 69.95 73.45 94.23 47.92 89.20 32.57 17.74 36.45 55.47 23.17 84.35 73.23 43.69 30.93 6.49 66.25 22.25 72.35 21.71 13.91 89.69 9.39 86.92 64.55 36.28 64.52 17.63 35.20 96.58 46.80 20.66 43.28 69.20 76.82 98.53 31.11 29.60 1.43 22.25 99.84 77.81 4.60 62.07 56.17 55.04 98.08 91.86 26.77 28.11 73.20 48.50 -9.97 73.21 65.10 40.87 63.71 1.33 95.14 80.31 80.27 90.94 15.70 33.15 38.79 0.74 63.75 4.08 61.45 71.90 83.22 29.27 7.10 76.20 42.22 66.16 0.10 31.36 26.04 44.07 91.35 54.77 57.97 71.39 2.37 56.53 69.05 77.56 7.18 7.42 88.23 76.48 85.59 4.22 39.48 98.62 7.62 82.06 0.39 35.47 70.17 70.93 42.66 20.83 9.26 68.15 82.37 28.61 3.96 23.42 3.24 83.88 25.61 35.59 43.13 47.33 74.55 92.30 60.70 1.97 17.42 66.61 53.59 59.18 61.00 64.99 3.03 0.44 97.00 13.07 5.77 39.13 20.91 9.88 75.43 38.56 48.32 25.66 56.92 72.14 38.66 84.22 39.81 52.34 0.25 56.67 3.49 30.17 89.88 57.11 78.22 10.17 -52.77 22.70 30.08 81.86 62.22 42.76 46.33 49.44 45.36 69.67 38.11 37.77 80.39 91.18 18.83 81.87 86.87 82.61 34.58 89.37 99.69 70.11 40.26 33.54 46.66 79.27 88.83 25.19 95.36 44.36 97.62 57.63 32.46 44.46 43.10 92.89 17.79 20.84 26.02 8.00 24.83 38.00 13.30 7.22 38.59 58.19 79.35 98.00 44.52 52.28 78.35 60.21 19.09 12.00 87.80 42.77 61.55 0.90 93.87 59.84 38.97 52.80 60.52 49.03 34.37 53.34 54.43 89.49 54.07 15.95 97.71 71.33 64.28 62.07 83.99 51.57 63.79 83.69 45.39 71.12 48.02 80.00 73.85 79.87 12.27 59.19 68.52 75.09 65.50 37.11 14.47 2.64 76.63 59.37 50.84 58.99 29.52 63.74 53.44 0.91 -69.12 31.03 96.71 17.66 94.87 68.78 33.57 56.07 79.20 47.12 27.05 23.38 4.91 52.42 49.16 5.55 13.20 86.06 31.52 4.35 4.20 60.55 57.85 15.57 74.56 81.74 96.04 6.64 32.91 58.38 64.57 49.51 6.83 69.30 74.35 57.20 59.20 44.99 91.04 7.45 0.21 2.93 89.02 9.88 83.46 93.39 69.12 16.27 20.16 34.91 76.86 92.69 95.53 58.76 76.49 87.56 41.71 56.70 20.67 46.25 86.54 15.00 2.51 73.15 54.46 45.70 71.47 98.30 19.44 29.63 92.38 2.74 14.91 30.91 11.84 5.65 53.95 11.47 58.59 4.52 87.77 90.77 57.13 15.89 14.31 16.50 84.13 92.41 79.43 68.40 99.73 62.13 69.13 9.57 19.73 78.17 45.27 71.71 29.17 97.70 -93.33 43.09 89.75 31.27 31.71 92.50 81.56 66.95 49.67 18.68 48.53 31.51 91.17 24.78 16.42 24.07 86.94 10.32 69.73 37.05 36.57 23.12 99.35 8.45 63.04 99.16 22.31 97.60 88.55 94.25 51.75 77.98 42.94 52.78 81.89 47.73 56.71 86.82 53.01 52.49 28.20 38.39 24.07 76.99 48.93 43.26 91.74 90.45 66.11 76.25 98.63 10.75 35.20 19.30 97.59 53.63 51.34 49.57 96.21 85.90 82.92 88.41 71.97 31.24 3.57 13.20 54.93 61.77 67.20 29.88 42.38 84.32 9.13 84.93 74.73 32.74 48.05 19.92 69.01 94.09 4.87 49.37 86.61 62.83 85.71 36.00 35.54 27.50 81.53 77.60 81.03 87.11 74.88 85.17 29.33 39.69 2.31 2.53 14.53 85.29 -5.77 35.00 15.42 77.84 43.02 99.38 98.69 41.46 86.94 89.41 15.69 82.40 68.59 53.50 5.84 40.22 64.22 62.68 89.15 42.28 40.95 33.31 75.89 28.93 6.24 40.38 9.52 92.77 82.73 14.10 72.05 35.15 70.70 5.97 36.32 35.37 14.57 42.41 86.20 38.36 57.40 34.36 77.29 10.35 14.76 84.67 29.11 81.36 27.61 68.19 69.32 29.76 5.85 75.43 58.61 11.19 24.45 26.61 88.44 37.58 2.53 47.65 55.74 4.10 25.13 64.48 31.98 10.37 49.83 22.98 77.26 5.99 63.76 9.24 24.99 47.46 98.79 74.13 72.01 2.33 44.63 44.80 75.09 97.26 23.29 45.60 83.82 5.20 49.93 31.19 96.81 40.18 76.92 77.85 58.48 79.36 28.79 7.80 97.99 34.60 -42.06 51.48 86.45 37.12 38.79 45.09 89.51 3.26 77.43 14.50 35.42 27.94 11.66 56.77 76.24 96.29 41.40 72.97 71.77 18.11 25.27 64.30 18.81 76.25 23.86 64.50 9.92 23.68 72.15 86.54 78.59 42.48 29.77 70.98 96.56 7.51 88.90 79.08 66.78 0.75 44.00 67.34 5.36 52.87 46.43 60.03 51.88 36.71 94.74 10.15 4.35 11.63 76.56 21.37 80.19 34.27 56.75 20.83 68.93 54.58 95.31 53.34 23.87 45.05 7.18 9.13 17.79 9.75 3.29 37.89 44.61 41.83 20.62 98.60 40.46 37.61 79.53 29.42 54.34 23.62 19.95 36.63 1.94 64.38 96.48 33.02 95.48 47.87 4.91 85.76 96.77 46.80 26.12 13.38 39.87 73.57 59.47 69.72 79.03 94.01 -64.57 25.70 28.65 6.47 10.36 15.66 11.27 42.28 16.57 6.70 31.70 24.56 4.03 74.35 42.51 17.07 76.63 74.80 85.68 29.70 12.42 82.89 84.04 51.77 8.26 15.16 53.56 95.42 11.16 1.44 99.15 87.60 18.29 41.79 12.47 19.60 27.90 88.72 24.03 38.06 51.70 60.82 27.23 79.09 28.33 96.10 77.17 96.35 48.57 85.88 13.95 2.61 34.82 2.30 66.91 65.81 32.90 32.55 50.68 8.68 82.61 95.21 99.09 10.30 3.66 35.63 51.03 49.62 45.35 38.47 0.44 91.07 0.70 16.48 76.84 74.93 23.55 51.56 91.77 35.24 56.18 45.62 79.41 96.50 73.33 24.22 81.19 22.99 87.35 3.43 95.85 6.50 74.41 58.11 94.36 34.88 50.68 40.11 41.79 27.41 -94.32 98.43 50.72 31.56 88.96 38.49 44.31 91.21 91.96 1.12 79.46 38.01 81.68 31.00 25.57 11.13 25.60 77.53 26.01 82.95 78.89 15.08 0.42 41.24 51.05 56.25 55.41 10.11 6.88 23.41 99.20 97.12 29.85 51.01 49.90 45.01 78.21 61.45 43.34 47.25 4.65 1.24 76.49 32.79 22.06 69.90 91.45 5.09 68.56 44.46 73.40 15.18 44.87 89.13 48.35 56.61 67.90 1.01 32.15 21.75 8.20 20.31 69.48 47.11 42.85 32.45 69.63 65.84 36.74 9.75 59.28 40.86 59.44 51.50 30.15 67.48 2.79 61.37 80.90 98.94 64.79 86.90 19.23 64.53 31.83 48.01 65.68 85.61 92.77 89.48 31.26 14.42 96.43 94.83 73.80 4.97 16.11 45.93 73.62 76.11 -39.44 36.03 82.31 1.70 17.72 6.91 34.10 95.13 76.59 12.16 82.75 44.92 70.32 75.76 53.86 21.49 57.36 13.07 0.10 75.03 31.88 9.87 85.63 73.70 53.11 10.02 15.98 92.39 14.79 21.05 69.10 83.29 73.83 41.50 18.03 50.52 26.42 59.77 77.65 66.05 38.40 59.52 17.53 23.61 19.64 32.39 61.71 9.04 75.43 54.80 33.27 52.12 99.29 31.23 98.83 99.74 32.42 47.66 67.45 16.79 41.37 91.25 7.68 55.07 96.78 1.32 4.13 96.37 93.28 55.12 51.64 95.67 11.38 22.61 44.47 56.96 26.32 57.84 48.81 73.86 61.23 16.97 5.88 39.39 49.30 77.21 75.00 74.12 5.40 75.89 57.16 3.71 60.93 69.22 12.27 26.19 54.26 68.98 55.62 79.29 -79.44 15.13 45.82 43.21 15.48 79.96 52.37 55.18 63.03 16.62 86.45 94.15 8.81 0.97 25.06 98.96 42.05 79.50 72.60 9.92 46.08 41.21 75.64 51.62 50.73 66.85 81.19 93.33 59.64 71.52 88.13 81.99 97.57 47.13 13.16 78.31 26.09 70.85 11.98 68.57 29.25 69.75 23.63 99.99 88.68 86.07 5.92 97.61 20.07 19.04 24.52 88.02 43.27 7.52 55.98 89.71 52.56 59.13 90.90 40.02 22.97 73.44 62.27 84.19 70.19 46.43 58.80 11.36 65.92 84.22 97.05 62.37 41.83 54.26 2.19 69.24 0.65 7.78 71.47 78.53 64.88 4.68 73.18 65.99 58.61 14.92 35.37 82.53 44.49 25.52 57.08 37.86 56.29 59.17 34.27 18.37 1.87 66.22 38.05 78.00 -88.92 68.82 21.75 47.56 50.63 18.24 79.57 99.52 19.09 52.59 59.01 56.54 80.10 56.63 83.04 58.28 44.64 96.49 93.99 1.84 98.82 52.34 28.99 94.73 24.37 23.74 3.42 10.14 0.54 26.76 61.94 7.68 68.15 59.12 53.56 73.52 3.81 31.22 55.99 31.86 16.37 52.26 64.79 7.87 91.57 48.63 47.27 40.23 93.69 62.19 63.24 46.89 2.49 91.29 32.32 25.99 96.95 14.07 14.30 15.15 36.24 6.96 32.24 15.39 83.83 94.97 6.24 94.97 49.27 30.09 69.84 20.82 74.15 33.69 91.75 64.00 51.02 10.04 97.39 68.82 88.67 27.21 54.84 2.10 56.36 94.52 28.93 97.23 35.91 4.72 81.18 33.68 36.83 68.73 52.87 86.07 11.80 32.62 16.31 96.19 -45.47 72.65 40.42 51.05 92.67 89.66 86.98 48.78 35.36 53.22 60.70 78.63 46.70 96.86 15.71 38.68 62.49 27.03 43.80 91.45 19.92 59.28 60.38 82.96 14.19 36.05 23.57 36.64 42.51 74.27 41.09 97.61 85.45 12.68 59.97 57.94 80.98 26.70 47.67 6.28 68.40 39.01 11.58 25.53 27.11 3.39 22.19 64.51 25.94 3.35 61.73 55.93 63.18 48.46 56.55 26.36 82.00 61.26 58.76 10.89 68.98 35.40 59.19 52.13 30.09 56.21 66.47 24.62 62.14 5.94 64.77 9.31 41.30 86.82 60.18 26.82 55.19 22.33 20.26 78.38 26.56 90.15 74.85 74.81 7.87 30.64 81.49 97.82 53.13 86.94 29.67 95.74 98.17 80.92 49.14 35.78 96.25 71.66 94.78 68.82 -87.73 81.57 66.20 31.21 42.66 37.46 1.43 72.68 93.92 57.57 75.68 31.66 99.71 94.21 94.23 36.07 56.76 61.64 47.38 63.96 13.15 35.37 58.70 45.50 9.58 43.58 93.54 16.54 42.31 65.53 62.03 44.55 31.15 42.42 42.27 10.39 1.56 18.30 43.00 33.39 13.53 3.82 22.34 54.48 52.64 13.71 3.57 81.23 6.06 3.16 31.35 30.34 18.33 33.30 34.35 4.09 55.05 1.88 85.11 33.36 48.72 46.42 34.40 64.02 67.25 19.97 63.08 93.56 37.92 62.89 85.02 97.20 79.10 57.19 98.93 74.31 34.80 14.58 22.93 0.59 41.29 9.93 95.61 7.18 97.12 34.30 23.44 90.56 88.32 75.41 14.29 81.71 88.89 47.54 22.74 0.70 72.06 88.82 44.37 45.67 -75.04 80.96 46.28 69.07 30.43 27.94 3.56 65.98 83.15 19.62 43.10 36.67 95.31 20.34 2.29 37.35 36.22 9.78 66.66 64.98 78.77 53.71 33.11 6.83 10.22 63.70 68.14 11.44 10.37 60.53 86.36 15.72 64.72 70.30 56.27 21.22 82.01 75.33 64.68 63.49 74.42 3.81 36.84 66.74 11.55 37.86 96.37 25.92 92.23 29.18 1.58 56.03 50.89 14.40 17.31 3.15 52.39 22.66 28.43 48.73 83.58 57.54 91.00 18.02 9.07 2.58 80.57 76.07 94.19 30.07 3.34 58.57 56.90 12.57 4.16 8.40 28.52 23.67 52.37 42.70 12.70 25.75 67.52 28.50 34.63 38.27 29.06 14.95 66.94 37.89 67.72 51.07 92.99 0.38 60.30 6.71 84.65 25.54 96.59 3.15 -94.81 63.02 76.55 33.90 9.21 36.86 51.58 19.37 50.12 88.86 19.57 6.64 69.36 90.96 0.99 49.34 86.68 71.18 56.78 5.91 9.94 13.25 8.17 55.08 53.67 33.80 94.64 3.40 74.86 96.64 29.63 37.57 18.83 7.63 48.88 58.29 81.33 18.17 57.85 96.32 79.85 7.02 38.16 81.46 13.41 66.65 37.71 43.77 78.58 18.12 68.21 59.29 40.64 39.38 12.70 27.81 85.90 98.90 26.19 59.69 59.71 45.48 24.23 89.00 86.71 92.87 97.06 70.19 67.11 0.05 75.88 93.85 28.02 99.92 9.66 30.80 3.76 16.45 80.71 97.23 83.35 24.55 3.62 99.93 74.92 99.85 56.65 87.58 61.63 60.90 9.62 15.20 8.45 61.19 26.88 7.60 22.05 6.98 4.00 54.96 -60.14 38.05 63.70 42.07 19.41 60.74 68.93 88.51 18.19 49.62 86.55 9.94 12.21 66.24 0.72 28.76 75.28 70.88 64.67 82.45 13.80 35.30 4.43 67.08 88.52 38.79 57.25 17.41 3.52 30.57 31.44 18.65 25.95 43.95 0.78 9.64 62.26 13.68 62.88 16.11 83.79 72.59 67.77 73.05 70.80 35.13 40.70 48.00 25.08 16.55 17.80 96.90 16.83 28.95 90.42 65.39 58.04 60.26 65.14 25.00 41.25 4.48 1.68 74.03 11.12 42.38 23.06 58.70 83.69 25.98 58.23 30.42 2.68 12.71 59.14 43.51 7.23 6.60 73.19 12.56 11.53 58.48 57.36 6.98 83.91 60.51 17.84 50.10 41.92 67.27 41.57 34.94 68.78 3.20 50.28 85.41 62.90 23.40 91.68 9.75 -5.85 77.84 97.61 28.25 81.95 11.39 24.34 84.04 91.56 57.82 24.50 50.16 93.43 87.82 29.12 8.32 56.78 90.97 46.00 71.94 25.56 1.25 16.60 68.13 74.96 60.11 70.45 70.70 98.08 38.37 77.20 23.63 95.32 10.19 84.12 55.37 8.88 97.04 39.00 12.55 52.33 11.58 96.59 10.19 39.72 47.00 30.56 76.65 24.41 65.95 36.59 73.85 35.44 49.80 65.10 66.36 11.95 70.58 88.28 45.20 88.79 47.23 59.40 34.04 60.37 26.08 71.23 69.05 3.36 55.44 77.92 63.04 62.03 68.58 69.18 42.63 28.50 67.46 73.04 98.71 36.50 1.45 96.74 94.56 65.91 66.68 44.29 37.66 22.09 39.34 89.03 4.30 59.03 2.14 83.99 68.59 89.65 43.38 39.70 29.31 -71.27 97.08 34.13 14.53 81.00 61.37 27.14 10.36 48.50 14.34 5.82 96.12 19.17 84.28 38.52 15.09 45.53 26.69 92.41 0.98 82.51 56.92 3.40 68.71 37.18 78.11 99.20 60.21 84.02 71.57 65.09 98.95 66.16 24.48 64.00 51.48 35.20 53.30 72.85 33.65 9.61 7.81 6.27 77.56 22.62 13.49 13.86 52.25 37.90 41.51 81.08 14.55 18.58 11.50 37.26 90.88 39.71 28.72 41.29 29.31 96.34 60.76 65.32 48.37 56.35 44.77 21.15 97.71 73.13 87.41 46.91 48.08 96.73 79.26 44.82 72.46 79.60 42.02 81.33 17.76 65.21 98.88 77.89 27.80 21.88 20.31 74.22 91.30 50.93 24.08 6.50 60.44 68.31 0.41 73.33 9.37 59.67 47.80 57.37 6.58 -30.63 16.91 4.41 17.04 6.42 51.26 7.47 60.95 76.99 40.08 74.53 26.05 69.19 88.03 73.89 70.80 97.55 40.66 77.20 17.95 16.32 32.49 1.09 14.39 68.38 57.07 26.03 60.36 23.33 24.57 69.17 40.38 29.45 25.72 20.41 69.78 10.56 65.47 45.57 5.68 98.97 49.93 65.77 37.18 71.20 1.13 62.99 23.71 91.39 3.59 41.01 94.16 42.71 72.91 61.77 63.97 40.44 75.40 93.16 46.36 73.65 25.51 72.38 34.84 7.56 92.13 78.88 44.56 30.74 50.55 67.22 6.07 55.53 76.61 19.09 79.67 33.80 93.63 40.46 67.17 96.45 96.70 44.05 72.19 71.53 55.57 7.13 3.11 99.45 96.29 3.82 60.33 49.32 98.40 38.76 68.69 60.21 52.81 67.19 32.36 -79.82 5.30 24.91 86.77 93.68 1.12 38.48 44.23 62.69 60.85 6.89 87.98 86.18 52.64 25.75 34.52 18.20 74.38 45.20 1.91 12.70 13.91 61.13 16.87 85.17 59.80 91.64 13.21 67.11 49.29 14.95 65.44 67.49 51.86 91.76 92.77 19.99 6.29 89.04 40.41 97.60 95.13 67.13 75.55 17.24 75.70 95.97 74.10 19.09 34.40 65.21 6.12 51.35 27.20 58.26 50.11 50.50 55.96 70.26 53.45 81.39 74.78 32.16 11.63 86.08 1.91 66.43 37.34 89.04 34.11 6.57 16.45 27.46 75.27 83.17 17.61 97.24 57.47 13.84 71.87 43.72 4.31 9.72 65.76 35.52 90.23 13.72 98.67 85.17 78.58 91.04 97.74 95.94 21.06 91.90 36.90 3.51 69.10 83.61 90.02 -28.20 48.39 58.82 52.85 64.12 64.76 71.25 77.07 43.55 69.10 34.27 63.16 9.90 99.29 12.70 9.98 24.87 54.83 35.82 50.11 22.44 14.01 28.87 82.66 43.92 64.78 48.34 87.27 12.37 52.49 82.80 26.50 54.33 73.18 1.65 17.07 99.93 84.96 34.89 46.56 31.36 74.58 7.24 41.29 8.09 76.14 90.66 71.86 24.06 66.66 12.89 37.40 74.60 96.55 98.44 68.58 67.16 87.70 28.38 51.25 17.67 80.21 18.51 22.47 97.43 87.31 99.09 6.41 94.22 65.66 61.79 55.70 29.50 59.92 13.15 81.07 94.54 44.52 0.69 2.01 32.77 3.30 57.98 68.31 86.40 81.28 59.64 79.16 87.21 11.31 61.74 14.60 29.04 5.38 35.38 63.59 25.93 68.20 80.05 82.75 -90.33 65.93 67.73 76.37 44.83 91.65 58.93 8.39 14.34 72.79 39.32 67.31 49.08 97.55 15.99 49.30 87.39 59.83 97.41 17.46 92.34 9.96 18.97 8.87 22.73 72.70 78.56 23.99 95.18 19.83 98.18 87.43 57.40 31.74 90.99 69.82 65.35 40.24 55.64 57.00 11.84 78.87 46.83 55.29 73.01 58.62 73.06 74.92 41.69 93.24 80.55 19.38 58.35 6.47 35.84 4.55 97.45 98.92 81.03 86.35 22.95 29.81 98.00 28.36 8.61 13.79 43.14 74.82 94.97 25.73 86.00 20.73 26.59 60.72 88.11 78.43 11.87 86.71 26.28 75.28 19.49 89.92 51.75 12.48 43.08 36.34 19.43 98.73 12.35 93.10 84.37 33.31 55.81 56.87 41.58 82.45 38.10 86.22 20.40 53.08 -52.98 67.00 98.51 18.80 63.82 17.81 13.21 17.44 92.49 75.96 82.83 23.52 78.00 89.09 70.18 55.84 35.80 69.21 80.11 38.83 59.32 17.76 87.96 69.92 58.95 93.37 46.46 29.18 98.54 4.72 74.24 87.22 64.90 10.27 70.02 32.03 4.80 1.95 46.21 3.45 62.05 32.16 64.41 96.48 48.83 27.39 65.98 71.04 4.17 56.88 87.70 15.08 97.69 13.32 22.63 36.62 4.55 30.23 23.88 33.94 48.99 64.61 99.47 75.15 36.97 71.75 18.88 69.48 7.93 89.91 37.51 38.34 2.14 69.46 68.06 50.45 35.48 69.40 11.06 12.28 36.59 66.57 96.90 25.02 75.95 84.01 67.30 74.54 80.02 40.19 13.35 26.50 0.92 20.99 14.78 47.97 75.47 39.48 62.58 29.11 diff --git a/docs/examples/data/mfarray/constant.txt b/docs/examples/data/mfarray/constant.txt deleted file mode 100644 index f25513d6..00000000 --- a/docs/examples/data/mfarray/constant.txt +++ /dev/null @@ -1 +0,0 @@ -CONSTANT 10 \ No newline at end of file diff --git a/docs/examples/data/mfarray/constant_layered.txt b/docs/examples/data/mfarray/constant_layered.txt deleted file mode 100644 index 5ed61d32..00000000 --- a/docs/examples/data/mfarray/constant_layered.txt +++ /dev/null @@ -1,10 +0,0 @@ -CONSTANT 10 -CONSTANT 9 -CONSTANT 8 -CONSTANT 7 -CONSTANT 6 -CONSTANT 5 -CONSTANT 4 -CONSTANT 3 -CONSTANT 2 -CONSTANT 1 diff --git a/docs/examples/data/mfarray/external.txt b/docs/examples/data/mfarray/external.txt deleted file mode 100644 index 172f6744..00000000 --- a/docs/examples/data/mfarray/external.txt +++ /dev/null @@ -1 +0,0 @@ -OPEN/CLOSE ../external/array_ext.txt diff --git a/docs/examples/data/mfarray/external_binary.txt b/docs/examples/data/mfarray/external_binary.txt deleted file mode 100644 index 900b0209..00000000 --- a/docs/examples/data/mfarray/external_binary.txt +++ /dev/null @@ -1 +0,0 @@ -OPEN/CLOSE ../external/array_bin.txt \ No newline at end of file diff --git a/docs/examples/data/mfarray/external_factor.txt b/docs/examples/data/mfarray/external_factor.txt deleted file mode 100644 index e29c9c18..00000000 --- a/docs/examples/data/mfarray/external_factor.txt +++ /dev/null @@ -1 +0,0 @@ -OPEN/CLOSE ../external/array_ext.txt FACTOR 0.1 diff --git a/docs/examples/data/mfarray/internal.txt b/docs/examples/data/mfarray/internal.txt deleted file mode 100644 index 452822d1..00000000 --- a/docs/examples/data/mfarray/internal.txt +++ /dev/null @@ -1,1001 +0,0 @@ -INTERNAL -40.94 83.57 50.55 31.33 27.09 97.25 26.54 33.33 78.00 45.84 28.30 52.41 32.85 34.93 90.48 55.89 95.21 68.33 57.00 21.69 48.22 23.27 25.18 95.35 51.89 12.59 33.82 68.64 2.73 92.45 44.73 15.84 54.15 83.45 2.60 84.66 17.68 65.35 26.72 73.44 32.12 21.88 72.66 45.99 51.68 35.18 28.60 55.56 62.07 6.79 46.24 13.74 40.36 94.99 91.76 7.25 92.33 56.94 85.07 27.15 23.91 87.53 6.13 19.76 17.12 58.57 3.97 1.95 72.38 47.26 74.73 69.33 67.46 82.97 72.77 50.90 73.54 77.18 15.34 51.60 74.50 19.16 38.98 59.62 9.52 2.97 30.59 35.91 77.43 92.03 15.92 51.78 11.96 49.45 81.56 59.75 69.94 8.38 91.26 96.34 -29.11 93.72 73.09 11.00 38.70 13.71 61.68 33.08 1.36 51.98 18.44 28.11 74.41 56.70 44.03 7.71 89.89 18.14 40.75 94.48 73.37 10.76 53.37 62.20 45.48 91.40 79.37 0.19 80.00 72.82 44.42 30.20 88.38 76.68 78.96 59.02 53.87 27.93 5.29 42.27 20.41 35.84 34.50 75.43 93.46 20.88 87.17 17.82 67.30 77.23 30.11 44.92 49.74 29.74 61.88 47.91 77.59 28.04 22.49 51.49 51.76 98.60 48.60 9.24 1.14 53.92 41.21 81.80 29.57 73.13 7.52 68.08 57.54 88.51 20.69 56.85 68.25 30.65 77.30 76.35 75.25 38.54 75.43 96.29 2.56 52.72 13.89 74.08 12.67 70.94 22.51 88.10 47.89 89.85 69.39 42.16 11.42 56.56 67.53 18.72 -62.84 99.78 52.00 91.52 15.65 76.51 15.54 44.09 60.11 32.85 14.15 83.02 8.89 63.78 58.89 30.03 76.74 97.44 11.16 75.33 91.44 46.80 19.96 97.53 10.16 58.72 14.13 85.53 98.52 7.42 14.85 13.03 82.60 65.01 87.95 59.19 34.57 11.53 36.56 9.58 91.56 11.49 68.40 42.91 74.37 76.18 46.90 26.12 0.63 28.66 66.49 51.92 14.15 16.60 45.75 56.84 20.79 10.93 0.90 4.71 14.46 70.57 85.23 5.24 76.81 46.35 90.66 1.83 71.71 3.42 6.34 37.55 2.13 39.49 37.80 28.45 60.79 22.47 90.72 52.61 12.19 19.94 53.82 57.96 84.49 52.04 47.76 98.93 53.70 89.93 29.56 44.24 99.71 75.55 39.65 11.42 18.36 99.51 19.15 10.24 -87.91 4.54 91.01 85.61 79.83 68.59 41.23 20.05 9.18 80.21 88.54 16.01 75.61 80.48 48.29 47.53 58.06 61.68 14.26 73.24 7.98 11.30 74.18 24.69 94.14 41.28 47.91 9.48 80.47 82.24 88.28 36.63 91.63 27.08 74.61 24.16 13.63 32.75 64.44 94.59 1.77 70.37 8.21 78.36 51.73 4.21 1.17 19.44 74.82 18.25 98.97 12.59 83.09 32.32 88.22 88.25 57.34 56.74 65.06 99.39 40.96 55.81 80.95 52.61 22.23 34.75 20.27 58.49 79.93 6.04 6.92 69.38 5.44 76.25 74.71 37.12 17.88 28.96 18.33 53.85 64.51 62.28 8.92 46.09 33.89 99.65 48.12 65.61 67.64 54.44 73.11 71.79 44.17 31.50 62.29 20.14 4.39 92.88 76.28 29.51 -0.32 66.22 86.82 60.48 98.31 82.94 5.11 52.54 5.12 74.52 61.26 62.16 44.08 97.53 21.71 62.04 1.26 44.02 5.75 58.17 27.02 62.30 11.25 42.01 68.05 58.93 51.43 57.92 15.66 54.73 77.92 12.61 92.82 53.98 9.74 50.12 77.95 65.08 56.24 45.21 43.01 15.47 58.42 86.28 40.05 59.34 87.36 29.30 23.51 15.48 7.53 56.55 73.19 68.25 78.07 69.05 2.13 96.91 67.76 94.20 42.59 99.71 73.52 58.78 96.92 71.61 83.38 60.06 76.59 5.70 68.45 88.42 44.85 74.99 6.15 99.90 95.40 45.31 98.01 16.84 23.26 45.33 37.91 26.17 75.25 11.99 94.14 55.04 6.53 78.00 41.58 73.77 56.04 27.70 57.16 4.62 21.49 78.82 49.21 47.59 -23.64 54.74 67.24 27.48 68.18 96.05 75.18 45.16 10.16 94.42 71.87 66.13 71.88 45.39 2.03 15.97 76.09 86.25 17.90 82.81 66.99 33.86 38.75 52.36 32.25 43.76 66.29 85.26 10.80 64.94 72.41 54.76 76.89 34.13 83.64 92.98 3.75 17.33 85.81 0.14 35.14 41.45 78.29 89.53 47.81 96.10 58.62 63.95 60.14 58.53 95.28 15.12 65.62 81.29 0.57 74.12 60.38 16.30 61.97 34.26 44.83 2.55 27.42 77.20 34.55 48.56 47.37 29.40 3.42 74.12 43.98 16.90 91.21 49.74 25.96 46.96 24.74 8.29 70.76 10.03 95.54 47.42 57.48 69.68 58.56 42.99 8.25 91.18 51.39 32.66 68.16 23.99 14.00 39.68 84.93 1.18 14.37 82.96 42.27 95.70 -22.87 26.22 17.43 70.85 52.49 88.85 84.43 50.02 8.22 29.05 47.55 85.95 19.60 45.65 30.48 49.52 54.07 25.34 23.30 13.54 40.28 34.95 88.93 35.30 24.87 58.07 77.87 52.07 3.22 85.85 66.50 60.06 56.84 34.19 69.94 69.99 14.23 37.41 12.41 49.44 75.69 38.76 29.06 52.56 48.20 47.15 69.08 28.65 66.12 14.55 44.74 80.98 70.78 52.58 15.78 48.37 65.87 96.58 85.68 71.10 45.31 36.99 67.00 9.70 76.93 14.49 80.17 67.13 98.35 22.59 20.55 8.61 99.06 94.15 21.51 79.58 18.10 1.50 80.42 90.82 73.18 78.11 42.23 73.62 62.02 15.01 51.94 1.43 49.61 56.41 27.22 82.94 62.89 86.16 21.63 84.55 28.69 4.15 61.53 60.80 -84.71 91.02 42.86 65.72 88.78 63.65 51.52 55.08 85.00 90.96 32.16 75.16 53.63 56.76 65.94 47.96 95.59 1.97 41.72 91.02 85.14 7.08 54.76 97.19 81.26 33.49 83.22 61.96 90.24 4.21 43.08 37.02 3.08 2.12 1.21 87.14 37.12 67.14 78.49 15.72 7.33 56.50 95.83 34.54 65.03 55.32 91.27 91.08 56.74 10.80 34.10 48.50 34.53 72.97 44.33 67.42 74.08 95.09 73.79 34.88 61.72 1.85 19.50 39.54 88.44 1.11 57.51 44.18 50.19 52.63 57.68 77.22 74.89 68.03 14.71 13.38 86.79 37.80 21.05 47.42 93.42 57.76 5.90 80.27 24.92 23.92 38.22 80.46 71.40 8.18 24.91 98.52 42.04 69.43 57.05 9.72 61.79 37.05 18.80 89.81 -45.23 19.42 63.50 60.92 77.15 22.54 60.63 0.82 33.29 18.58 30.68 25.03 27.61 35.08 47.73 80.59 41.78 14.87 51.10 95.14 41.07 80.22 59.08 49.13 57.24 38.77 30.49 9.14 10.03 79.65 8.39 3.21 51.41 19.78 41.01 10.05 83.63 1.62 33.44 9.13 76.88 57.95 94.67 82.98 75.80 59.34 7.80 45.25 34.42 39.87 49.77 84.33 72.68 20.58 39.92 99.88 51.76 33.33 4.85 63.65 73.48 18.39 12.91 30.99 95.49 63.68 23.10 47.22 63.22 56.90 63.29 30.77 24.02 22.65 43.86 55.80 62.90 55.83 33.30 75.77 3.49 73.24 95.09 69.66 46.69 7.78 31.00 98.68 7.17 86.08 15.86 10.79 91.72 3.55 26.35 9.58 90.52 58.22 23.87 37.91 -3.47 11.83 22.07 84.86 22.54 45.27 67.58 68.65 78.88 21.37 57.26 40.77 68.92 19.97 10.81 28.65 18.60 15.34 77.93 35.97 23.12 3.62 74.36 28.49 94.61 36.41 14.67 69.54 24.16 52.66 30.68 17.12 93.82 68.42 76.87 47.55 19.80 37.91 71.88 68.99 53.37 77.60 81.74 94.66 34.29 36.62 10.00 0.08 86.05 37.44 46.79 11.60 8.92 83.68 34.66 0.47 35.94 65.94 78.88 42.59 86.07 96.91 33.43 1.61 31.43 58.97 72.31 92.52 74.40 85.76 62.66 58.35 70.59 18.24 76.63 89.73 74.09 67.01 25.25 99.63 41.61 25.85 7.61 26.72 91.43 36.14 44.47 7.79 88.36 10.70 82.17 39.13 20.50 13.21 36.51 76.27 24.42 65.48 14.65 87.88 -49.38 8.42 29.26 84.33 96.15 15.05 65.06 69.85 57.65 20.88 19.13 15.89 25.65 23.13 88.28 78.11 27.21 31.22 10.76 90.49 56.79 19.92 58.05 61.18 57.07 15.55 16.84 46.04 99.86 46.58 22.41 22.45 73.98 42.33 71.47 4.83 89.26 32.64 54.55 60.79 46.13 35.92 63.26 36.76 34.69 63.50 10.53 94.44 34.10 64.29 1.84 10.07 58.50 41.29 68.32 50.00 43.09 40.87 6.66 67.05 51.35 55.88 62.78 15.04 70.54 1.00 38.68 19.12 97.34 18.72 98.82 9.73 40.61 79.45 27.68 61.09 23.43 66.51 74.67 11.47 11.54 7.97 88.95 52.86 1.76 35.84 61.91 94.48 13.71 54.23 10.73 31.63 84.71 82.53 20.04 87.61 17.53 82.82 51.29 21.80 -85.08 27.08 83.83 5.49 95.96 51.93 85.66 84.08 20.59 46.28 47.03 53.79 24.20 86.53 78.59 40.87 1.95 32.78 72.95 24.06 48.44 30.35 19.50 80.18 6.46 44.97 57.28 84.15 67.56 81.94 60.70 79.96 50.27 66.48 28.07 12.81 95.71 26.51 77.59 33.04 45.25 25.31 67.14 54.12 62.33 60.62 60.88 50.63 16.34 90.17 60.31 99.29 25.42 40.66 84.99 44.88 43.56 87.07 81.33 17.07 48.34 41.00 94.06 16.50 84.64 57.41 24.65 24.66 96.08 95.07 62.75 89.28 29.66 0.92 6.14 85.05 34.15 33.03 21.77 9.22 77.45 43.69 65.03 57.04 52.66 21.01 73.93 74.56 24.81 23.61 50.52 98.99 38.64 23.80 93.66 74.39 33.79 98.73 19.66 74.20 -53.08 22.23 35.21 45.92 22.16 69.41 39.37 66.22 44.52 85.08 12.02 11.74 46.58 77.85 97.53 40.05 46.65 11.34 50.34 95.08 6.52 70.26 62.56 76.62 44.61 52.97 11.65 47.04 74.01 86.87 20.53 5.81 13.14 91.66 68.67 42.76 50.17 99.02 69.57 49.45 93.20 4.76 30.61 95.59 6.59 24.51 45.14 22.58 31.24 71.36 84.31 92.25 12.77 90.02 85.23 89.64 95.38 32.32 84.64 61.57 46.39 11.58 47.97 27.11 29.41 37.21 84.50 17.32 37.36 59.76 97.24 91.65 9.47 7.66 87.66 46.86 46.27 11.16 2.16 19.13 84.48 16.65 57.66 88.48 3.33 20.44 50.24 75.61 21.17 44.04 16.95 83.91 14.23 99.88 87.84 47.78 7.33 87.27 47.27 41.78 -12.42 32.27 22.60 21.61 17.60 56.65 60.47 36.91 65.92 32.75 88.42 32.26 78.56 75.26 3.43 19.34 44.35 17.45 83.87 79.92 32.00 49.93 15.16 70.88 29.69 73.51 64.60 40.67 45.27 9.11 61.33 38.59 36.21 57.56 50.19 41.23 98.64 39.17 87.37 24.34 35.06 91.10 85.05 21.78 77.11 34.13 43.78 22.35 61.21 20.72 46.45 18.71 31.29 76.51 43.21 25.21 15.15 37.94 59.80 32.98 15.74 93.33 23.90 75.85 94.28 73.20 27.10 91.89 43.39 37.47 79.43 0.80 91.00 17.12 51.63 12.30 93.54 58.11 38.35 5.15 83.18 62.17 86.32 83.20 79.61 54.38 37.17 79.07 49.11 24.40 51.41 71.33 78.28 62.70 15.18 50.64 76.84 92.26 52.39 83.25 -46.06 64.79 5.52 23.98 9.20 81.87 71.53 73.93 38.75 39.51 49.34 99.57 51.34 43.29 70.59 9.91 34.84 53.48 69.32 94.70 49.47 34.51 63.19 22.28 57.64 30.61 33.36 23.61 60.84 29.35 99.26 30.46 26.07 49.06 88.85 29.21 21.46 45.28 32.36 8.06 50.81 49.66 69.85 12.36 96.76 63.82 27.00 64.40 53.08 0.15 75.02 25.62 88.85 90.35 74.24 12.06 42.23 42.54 87.35 47.98 60.17 29.06 30.36 62.44 5.54 73.09 87.49 32.88 68.81 51.03 92.21 32.17 49.28 21.88 63.27 94.72 62.81 91.24 30.41 28.01 79.45 77.86 52.26 71.61 97.39 91.78 99.95 47.42 21.20 13.40 32.41 77.02 45.93 3.52 64.55 56.46 35.32 38.13 60.98 9.99 -80.97 31.90 58.62 39.59 74.33 17.55 41.63 25.94 19.38 96.33 53.02 65.89 61.15 97.41 5.97 31.05 2.96 32.60 90.33 21.48 61.87 71.39 41.81 10.44 86.53 55.76 41.84 4.32 92.32 29.30 51.39 51.21 19.51 27.43 77.17 46.56 45.57 76.95 91.86 80.28 83.92 81.12 32.96 40.98 13.81 64.51 74.07 76.70 57.88 62.27 77.83 0.70 54.64 79.14 14.20 97.09 72.64 40.65 15.99 50.58 35.88 85.83 71.45 85.76 36.42 74.77 58.01 9.83 7.33 77.51 50.59 12.55 76.76 81.40 43.59 49.05 93.68 71.60 15.26 46.99 34.04 28.03 84.62 32.20 97.24 98.43 91.55 52.44 84.12 57.68 89.05 18.06 69.48 63.20 31.80 49.66 92.92 63.55 72.23 74.61 -42.00 39.80 25.14 19.47 63.39 88.29 50.50 93.73 78.59 86.05 7.50 88.53 31.31 75.42 29.23 95.79 80.83 40.43 22.03 96.63 96.76 99.19 18.32 44.88 63.85 35.03 40.43 91.23 8.61 55.50 11.41 43.85 41.19 55.84 59.41 32.45 8.13 27.32 6.91 66.68 16.29 88.18 70.74 84.48 38.73 26.69 86.86 40.36 37.98 75.44 78.40 6.51 66.57 45.60 52.62 6.22 14.51 72.66 47.20 18.86 48.32 44.92 65.02 62.57 65.81 60.39 8.02 33.93 13.94 21.71 64.50 37.12 96.18 55.13 84.97 66.99 8.82 57.16 31.89 0.20 11.98 26.15 2.71 93.54 76.98 47.87 2.37 1.38 80.63 28.43 94.72 33.90 17.00 58.77 48.43 13.47 31.32 18.95 57.16 61.80 -50.15 74.07 95.45 72.22 57.05 61.05 98.93 8.19 68.87 8.07 48.87 45.94 5.12 50.06 50.37 81.65 63.30 10.08 27.38 47.34 29.46 85.43 17.05 56.58 44.38 61.13 0.15 53.70 96.26 58.74 23.15 93.54 72.49 57.16 51.86 41.59 37.41 44.53 26.82 96.68 94.06 84.25 15.18 97.25 66.57 77.43 0.48 83.13 31.53 67.68 71.75 35.43 89.57 90.35 98.44 27.45 38.29 11.47 27.17 13.63 20.84 23.92 90.49 67.30 57.99 96.14 32.26 53.52 11.39 9.10 33.69 31.32 65.62 2.25 4.77 91.04 59.34 37.80 64.63 38.64 35.69 65.12 91.30 82.36 78.16 10.33 65.28 78.22 95.56 56.87 77.40 44.08 94.29 22.52 95.56 66.15 18.43 99.45 48.23 75.22 -73.90 32.35 42.03 1.09 81.49 31.37 84.82 21.40 75.24 73.23 71.99 39.74 48.55 17.34 11.02 88.97 54.85 64.41 95.11 43.28 17.97 51.75 66.78 61.26 51.50 88.76 4.59 50.50 86.92 25.01 47.70 8.57 4.42 4.14 0.80 82.77 7.74 98.18 42.68 63.77 62.82 23.51 95.87 90.26 41.93 97.85 27.85 89.96 27.11 73.05 42.06 4.34 60.62 31.00 94.56 46.82 24.47 17.50 39.10 0.35 1.84 79.40 29.86 82.24 87.21 61.49 87.92 36.90 73.27 33.40 66.05 76.29 40.20 24.16 61.51 26.97 54.59 12.61 52.73 99.01 12.01 84.58 62.53 24.72 88.22 58.78 17.03 88.79 86.67 58.29 92.69 32.33 1.28 80.44 96.29 55.21 15.97 81.12 41.68 76.12 -1.64 81.64 39.00 59.81 12.86 78.46 24.14 38.03 20.75 80.28 98.09 7.63 66.00 13.63 19.26 18.64 61.08 30.90 71.56 95.98 14.10 78.96 4.58 42.76 48.58 18.39 77.97 35.56 60.11 65.47 62.25 99.49 25.82 98.33 60.94 81.63 15.30 34.95 23.04 11.94 96.56 49.14 62.19 73.09 57.16 90.91 34.17 47.39 97.82 41.68 81.90 48.48 47.63 41.50 49.09 51.63 32.32 76.45 24.76 46.42 45.38 73.71 53.11 54.99 65.80 60.43 65.01 97.90 66.60 77.99 53.39 68.07 91.11 32.08 44.39 81.39 34.44 37.47 56.50 34.16 10.65 87.89 64.22 16.51 25.09 69.46 63.45 67.37 4.56 9.52 83.27 32.04 6.20 79.26 43.67 42.91 6.07 41.41 21.39 96.20 -41.04 61.25 88.55 26.13 88.31 58.59 71.11 46.61 74.92 74.88 30.96 13.27 43.12 3.69 70.19 23.48 21.31 47.04 97.18 20.22 94.26 18.45 11.32 25.42 13.91 67.77 22.07 48.47 77.91 12.27 16.77 53.10 7.45 11.18 24.48 90.37 50.37 37.30 10.11 48.25 38.76 80.15 39.88 46.60 52.40 64.21 1.33 77.78 91.91 48.48 76.01 7.75 99.81 11.93 2.17 19.91 63.96 92.05 1.10 59.43 88.55 83.61 38.10 99.76 20.69 55.12 65.46 66.45 34.26 12.30 23.48 50.80 59.35 30.31 19.68 27.91 13.89 46.15 35.98 73.57 23.00 59.44 90.16 77.20 39.55 12.92 5.16 90.04 1.33 53.85 21.59 45.52 68.22 51.53 93.05 97.72 57.47 47.13 6.98 23.95 -54.61 44.25 76.39 14.90 26.96 23.15 51.95 92.81 16.69 81.56 26.44 55.59 77.80 32.86 67.27 67.52 4.59 88.72 59.46 5.70 36.66 0.88 56.89 77.77 97.19 45.48 64.15 47.30 95.37 5.02 95.70 61.94 20.70 45.89 82.25 49.39 64.65 27.80 19.49 89.32 12.39 45.90 58.29 73.14 16.31 57.67 96.87 89.94 79.20 30.53 55.55 88.22 37.35 77.57 48.20 11.54 56.47 40.91 24.36 41.34 50.46 62.10 48.02 81.37 88.29 56.51 40.95 95.92 64.32 66.47 0.74 44.57 53.36 6.77 1.76 35.17 85.30 21.87 2.77 94.04 60.08 17.52 48.32 95.00 20.16 71.21 44.17 74.05 54.84 42.79 88.13 18.39 34.86 46.35 75.72 81.89 52.85 24.51 20.81 87.18 -58.25 75.04 66.10 86.79 66.96 0.99 28.86 13.34 9.17 97.47 32.61 66.43 22.97 82.06 8.14 55.60 59.44 74.26 94.71 67.44 89.27 95.28 13.77 77.22 20.47 8.42 26.16 52.81 19.19 50.59 37.59 62.00 38.27 58.60 42.44 6.44 51.77 56.81 24.10 39.88 17.19 43.54 68.02 46.23 26.73 22.69 19.76 80.24 78.74 59.11 6.13 10.50 93.20 77.46 17.84 10.98 1.65 28.82 12.39 73.31 12.35 3.62 92.22 45.62 46.22 82.33 82.27 33.46 91.43 96.43 50.67 89.30 57.40 39.56 55.77 2.80 48.74 99.97 88.85 63.10 60.43 34.62 35.94 75.98 30.74 68.14 65.35 68.82 12.05 40.01 85.86 75.20 3.96 32.72 46.69 97.99 59.25 99.16 61.53 50.12 -0.11 67.26 61.34 17.33 99.07 4.87 7.55 59.83 22.26 39.91 43.51 57.66 92.36 10.69 71.77 45.49 28.22 34.92 21.66 16.33 46.38 25.25 24.43 13.86 62.04 91.97 28.69 73.10 85.59 85.31 7.28 95.11 95.73 86.76 51.25 76.52 1.00 46.11 18.31 75.88 1.00 90.59 0.53 90.75 62.76 94.27 77.22 77.48 20.08 27.41 4.66 60.67 66.21 59.15 41.38 2.78 4.77 94.03 47.94 63.85 75.26 34.15 97.97 88.31 94.75 96.03 26.84 5.14 37.72 96.13 38.00 26.29 79.74 95.28 47.37 86.26 46.15 17.30 86.94 42.31 20.88 5.88 35.63 49.11 58.69 49.29 87.97 26.57 1.41 95.58 27.80 12.72 63.83 79.37 16.94 0.67 65.98 81.05 59.52 83.52 -26.87 70.77 2.12 94.68 60.98 64.32 90.79 41.28 83.01 69.62 77.17 30.56 97.50 31.22 7.42 39.76 77.45 18.11 0.78 22.58 76.17 67.12 46.84 2.04 77.16 92.65 70.06 59.49 66.31 12.60 62.90 93.02 31.43 66.68 52.72 1.62 45.56 29.93 58.23 30.28 79.96 49.44 91.95 40.44 40.60 22.94 76.45 79.82 21.76 1.45 4.57 33.13 28.51 23.53 67.49 93.34 24.35 22.22 87.11 65.58 62.69 29.59 24.16 11.18 69.46 34.87 6.20 28.46 42.16 12.37 82.13 41.69 71.90 2.41 57.37 96.05 71.63 23.79 69.88 80.91 21.82 38.44 87.56 13.33 1.56 36.90 5.73 34.15 9.69 51.89 92.67 52.00 78.64 53.08 60.87 8.86 59.55 7.40 69.26 24.41 -6.43 5.24 1.46 82.60 60.17 9.28 94.23 96.04 29.25 4.84 89.93 88.69 46.44 9.92 9.50 48.07 24.11 66.78 69.34 71.66 63.78 86.93 86.47 37.60 17.67 8.01 11.50 43.88 75.21 14.03 91.17 62.84 38.48 55.50 83.43 48.60 4.65 97.11 5.47 95.25 59.84 26.33 63.05 3.82 11.87 45.44 54.23 43.75 93.52 71.39 29.93 94.20 29.40 27.12 31.84 22.90 47.30 28.83 23.11 25.65 83.61 4.77 71.44 83.54 72.42 84.80 15.96 89.65 9.82 81.08 37.55 14.11 8.55 7.13 37.86 35.42 27.67 23.82 20.86 72.49 67.12 72.45 42.57 3.81 24.31 68.29 63.75 69.92 69.05 85.68 42.43 21.22 22.91 75.37 24.85 7.15 9.84 64.83 66.37 5.29 -91.35 97.76 77.16 17.42 36.70 34.75 23.83 73.05 1.43 52.68 87.37 86.10 69.27 0.18 40.58 37.45 75.39 7.76 64.10 7.58 93.66 61.72 7.58 35.88 5.37 53.91 68.59 68.33 36.25 98.90 46.51 40.33 94.37 75.27 44.63 71.37 87.12 45.09 58.13 2.81 73.82 90.67 77.08 46.43 89.14 56.02 68.07 25.41 94.13 31.87 93.73 47.11 95.65 35.53 36.77 92.83 17.27 72.09 69.06 74.19 5.66 42.30 74.29 22.67 54.69 56.08 33.42 35.38 13.17 18.56 60.00 89.63 20.10 83.96 87.79 56.91 87.84 83.42 68.93 16.67 94.72 87.77 93.60 82.86 65.23 74.53 1.47 14.86 15.53 47.19 86.95 91.53 55.00 14.50 12.90 76.00 96.22 90.92 72.50 20.19 -47.38 79.36 92.45 44.35 4.56 47.82 55.33 71.69 83.73 48.92 59.75 90.17 45.27 10.54 29.07 44.29 46.99 12.23 3.33 24.78 77.68 67.86 99.09 13.24 12.99 9.07 78.86 98.21 43.81 20.05 51.43 89.55 48.00 24.87 20.44 61.88 52.18 8.01 98.20 68.35 60.30 68.65 14.57 74.06 3.55 76.29 89.86 24.33 0.80 19.03 31.44 89.30 50.85 42.89 60.06 94.38 47.52 95.48 67.62 47.32 5.20 71.21 37.10 56.34 6.92 37.09 99.59 32.38 96.83 12.93 12.38 82.95 60.26 67.51 56.43 13.47 13.55 58.13 90.45 64.14 47.37 67.59 54.95 87.67 33.62 36.45 48.97 73.05 68.85 34.92 43.70 89.61 89.73 0.01 59.97 13.91 90.08 96.02 66.71 73.43 -53.87 51.82 96.55 18.18 3.33 92.55 47.23 64.29 17.58 76.95 6.51 55.57 66.02 1.72 93.20 80.30 29.11 74.98 97.71 12.36 53.36 41.38 17.57 71.07 31.58 97.20 42.83 3.33 96.86 20.31 4.08 49.31 77.04 52.30 54.48 47.27 73.25 53.43 35.08 77.86 92.80 17.68 65.80 40.82 38.25 62.60 57.09 20.27 69.41 34.46 92.85 76.95 6.12 75.52 12.89 84.22 65.94 2.31 64.11 10.03 17.24 82.32 75.69 55.61 85.66 73.18 5.21 26.13 30.15 3.56 45.01 74.87 91.71 25.29 17.81 77.85 12.63 9.68 87.05 25.59 31.23 51.07 16.01 33.11 86.78 16.63 4.67 41.52 89.20 54.84 67.74 35.44 58.41 43.45 74.22 54.26 69.01 93.68 28.19 35.92 -14.12 52.93 55.97 11.14 45.04 90.61 99.73 85.46 8.61 89.50 22.05 9.98 50.24 61.36 63.58 74.51 84.87 15.31 69.61 61.49 86.12 98.97 81.11 17.79 90.96 28.45 49.81 5.98 48.41 71.62 9.41 42.41 90.85 42.46 71.55 76.54 61.03 68.17 75.93 98.44 93.63 83.46 80.10 32.09 60.65 8.76 36.25 83.53 59.11 27.53 67.49 32.88 76.31 9.45 81.09 12.21 76.68 12.76 78.49 8.25 39.47 55.65 34.69 8.77 72.63 41.27 76.89 21.88 36.15 59.61 82.77 31.82 19.54 87.49 93.13 48.01 45.25 38.54 94.27 83.70 65.05 67.08 45.86 80.57 56.59 53.77 27.98 83.39 83.58 59.09 15.51 59.14 63.11 88.51 43.54 62.29 41.31 28.88 95.89 11.57 -50.67 78.27 11.72 56.15 16.73 87.09 76.58 13.57 70.04 12.70 83.13 56.94 38.31 6.35 99.32 15.38 98.89 77.43 93.64 72.45 19.30 25.57 72.77 25.27 48.20 97.36 12.46 3.91 52.72 92.24 31.64 80.42 80.02 28.29 30.19 30.79 69.53 31.20 41.22 33.62 91.22 29.08 58.62 52.03 27.43 39.71 96.23 86.03 68.29 89.19 83.74 51.24 23.50 25.49 27.11 53.86 73.45 53.28 21.75 74.75 1.17 93.49 29.69 31.12 0.59 58.06 93.91 59.18 75.98 7.38 30.51 62.84 39.22 66.49 5.71 68.13 74.72 3.68 79.53 53.79 58.46 79.86 71.34 32.24 76.91 82.83 40.52 50.74 62.31 48.17 92.52 35.92 2.69 17.04 10.42 51.67 58.17 2.72 94.24 1.37 -84.86 79.44 52.02 85.59 80.95 99.14 53.27 0.25 39.25 43.25 23.47 76.25 58.74 74.08 2.86 14.25 4.30 45.70 15.66 17.85 78.40 20.04 53.42 40.59 33.50 31.58 96.46 13.53 49.22 18.63 85.49 24.31 58.82 44.74 4.59 23.69 60.86 35.04 35.43 43.32 21.56 96.86 65.33 82.06 87.42 79.31 59.13 91.52 47.34 69.52 92.56 50.84 81.96 57.58 33.77 87.34 58.64 29.78 18.42 91.15 90.36 5.91 69.03 37.25 10.80 70.26 43.36 93.39 26.16 73.60 68.17 50.07 24.62 50.37 16.21 5.96 42.48 55.83 13.60 45.32 95.63 24.24 51.64 17.39 12.05 10.60 68.29 82.60 63.35 35.92 90.14 69.87 30.00 57.54 92.91 8.34 98.32 76.88 56.20 78.89 -2.93 46.60 46.36 38.60 42.34 60.49 1.58 49.38 96.48 24.38 58.42 51.68 45.74 54.86 59.91 80.11 23.33 72.94 13.54 78.24 93.40 91.28 15.04 32.74 8.57 50.47 74.81 7.07 76.50 35.76 17.54 10.11 5.46 8.55 56.44 9.37 40.05 9.21 74.51 47.09 58.95 65.27 41.62 59.20 8.92 33.56 43.75 75.65 29.17 45.85 53.84 23.50 42.08 71.84 63.06 82.68 93.27 82.89 7.48 62.50 48.71 18.18 37.61 41.05 0.14 3.07 68.36 10.00 44.78 16.04 38.08 74.36 73.63 31.51 8.77 40.22 99.76 57.70 30.93 99.22 85.80 39.15 0.50 42.30 39.22 53.49 29.61 19.01 36.41 41.13 87.38 24.81 13.65 25.25 5.07 35.08 90.05 42.75 24.37 63.56 -22.29 87.60 16.00 75.84 10.04 27.67 57.28 60.85 3.40 92.37 14.60 41.94 58.87 18.28 60.11 16.14 92.44 59.96 43.75 82.20 68.84 79.58 14.50 87.74 61.35 56.87 31.29 94.88 93.25 59.01 2.38 31.04 7.09 24.36 36.87 16.44 48.33 75.26 39.33 88.04 7.02 45.98 28.04 58.91 53.94 36.64 8.69 17.55 43.20 74.26 79.25 3.73 54.69 56.81 18.71 10.45 38.13 72.48 21.24 40.28 38.84 21.24 9.20 19.80 26.30 8.82 57.78 46.07 55.96 12.89 99.34 41.08 7.19 88.44 52.25 16.16 53.15 76.18 8.44 84.71 20.94 87.57 48.20 48.89 83.74 77.43 19.06 64.44 48.67 77.70 99.98 96.11 16.43 58.13 95.82 12.98 78.89 90.99 71.77 12.79 -68.60 88.80 46.15 73.63 16.68 0.88 42.16 31.74 1.25 22.85 23.13 69.17 2.63 5.34 78.59 63.31 65.30 68.86 49.93 4.09 57.55 54.06 11.89 18.50 99.24 75.49 93.08 67.74 88.89 5.91 16.12 22.34 15.15 58.32 87.53 33.22 55.83 99.71 87.62 33.87 64.92 91.65 65.86 5.36 62.63 71.23 45.53 15.20 22.54 61.57 73.94 61.15 5.55 58.30 92.26 13.08 46.72 68.43 97.90 24.72 13.20 55.29 80.68 43.66 56.47 26.50 2.70 49.95 8.61 22.81 88.18 39.42 92.42 64.79 90.09 21.99 40.75 74.92 26.94 46.82 32.43 79.70 35.25 7.42 15.46 69.49 61.46 67.62 37.76 92.12 73.47 26.95 78.59 44.07 99.28 94.58 68.15 90.81 34.75 81.52 -17.62 38.90 54.45 51.44 67.15 18.10 81.09 75.27 44.20 75.73 6.55 43.89 85.03 79.77 92.72 9.90 81.25 83.02 3.59 71.49 78.38 11.16 4.55 75.42 57.26 27.04 53.02 67.25 37.90 6.93 69.31 81.85 23.81 93.42 95.11 82.25 56.91 66.09 92.23 47.96 85.49 93.41 76.54 75.48 94.55 51.58 22.50 16.69 76.72 11.99 87.70 81.32 89.61 4.55 66.37 86.38 31.28 5.52 46.05 32.79 2.29 48.46 92.09 83.34 44.04 58.21 33.40 12.77 76.17 97.95 90.51 87.09 18.41 33.32 89.48 11.67 8.66 97.83 33.20 67.53 30.00 68.71 80.70 91.54 63.17 80.31 36.49 42.06 89.60 22.39 54.48 97.86 25.28 34.28 71.98 80.36 63.09 67.58 83.99 6.52 -49.28 94.08 1.76 56.02 97.67 0.61 62.29 46.48 57.59 35.90 6.91 24.58 46.58 13.75 33.25 67.64 17.54 12.74 78.21 17.87 19.84 86.54 57.46 35.97 73.35 64.01 30.99 44.99 15.36 37.45 20.93 9.12 86.18 41.76 90.74 87.15 83.61 92.31 26.48 92.71 26.83 17.54 8.99 91.76 92.95 72.72 4.15 58.36 44.65 97.74 84.30 46.67 14.49 42.79 8.14 45.75 17.74 39.20 47.39 33.34 12.80 83.40 11.86 7.74 14.04 90.16 26.98 24.50 53.79 59.37 12.30 68.50 5.41 51.58 78.26 76.88 54.76 81.53 65.41 70.07 10.21 99.14 96.64 41.80 96.96 27.72 91.42 39.91 35.62 1.87 26.01 68.70 11.06 84.40 98.12 78.72 54.38 58.72 37.97 84.64 -64.15 5.55 37.47 8.17 11.28 54.03 7.51 83.66 51.50 5.00 8.76 26.46 32.01 65.12 74.49 60.52 13.40 33.07 97.23 25.54 67.78 78.65 80.43 48.87 11.57 72.60 14.84 91.59 94.49 14.14 15.68 2.12 94.57 32.79 78.28 79.33 41.82 90.71 23.81 43.14 72.82 92.36 5.82 93.21 45.89 21.38 27.53 68.85 88.83 77.59 16.78 47.75 19.79 70.34 58.06 29.52 82.29 75.54 99.17 73.57 53.72 57.22 61.77 41.80 88.80 89.20 77.34 18.87 81.09 23.36 1.86 33.92 70.85 9.93 37.99 27.60 24.99 11.09 31.23 3.75 13.37 72.70 99.80 53.17 70.33 14.29 61.26 52.76 91.68 48.12 11.66 35.30 1.79 53.57 57.61 17.38 38.63 24.21 79.77 77.51 -82.57 11.21 60.85 95.84 82.33 89.88 65.03 6.68 35.96 49.33 67.08 74.80 69.84 61.03 36.62 65.43 40.95 65.97 11.33 76.44 35.93 45.63 71.59 12.38 25.72 1.17 33.76 86.47 67.93 12.89 71.64 37.45 56.49 75.50 76.20 35.45 19.13 13.61 93.22 47.79 11.36 64.41 45.80 94.26 22.54 72.66 39.64 34.99 75.96 17.32 61.08 69.81 78.97 44.14 33.79 25.76 79.63 19.13 59.21 53.68 16.81 92.67 39.68 85.93 10.77 82.31 36.62 36.55 29.74 5.34 64.69 64.46 79.38 56.66 75.54 27.04 60.07 5.49 65.78 41.72 77.05 98.20 13.03 71.75 77.59 18.89 60.14 93.20 39.02 78.58 15.58 33.94 81.39 69.83 24.48 90.13 72.63 97.40 23.01 67.40 -98.92 0.35 48.04 30.59 90.92 86.83 15.25 93.36 37.26 25.20 32.87 49.54 23.67 6.33 45.34 57.58 45.95 49.44 86.12 25.27 65.13 52.18 16.69 24.48 64.12 53.20 46.41 43.27 53.20 35.94 11.41 99.28 97.73 4.34 83.93 37.53 57.87 22.75 83.52 57.44 24.97 81.92 80.17 86.80 93.19 98.38 73.63 12.73 4.93 7.90 96.14 89.50 57.79 80.68 97.21 19.16 85.35 23.95 55.44 4.04 14.64 2.06 23.60 62.13 71.47 60.48 8.05 61.04 99.87 59.97 6.22 74.07 86.03 79.64 34.57 71.84 76.58 48.31 13.09 14.25 97.74 25.14 44.47 5.58 84.17 75.62 17.79 11.64 2.43 71.76 51.66 21.87 67.97 65.65 76.95 71.35 3.51 48.57 89.13 38.67 -21.63 10.97 53.25 8.37 65.45 76.00 10.01 8.20 38.98 66.18 63.36 78.57 43.13 20.79 58.80 11.53 66.78 28.32 10.35 49.58 65.65 71.11 3.57 9.22 28.61 89.19 67.53 3.32 11.47 99.74 24.90 16.35 0.36 41.24 74.24 0.14 52.87 92.36 68.89 94.63 58.68 62.28 93.76 0.85 74.39 19.08 31.06 90.08 90.16 61.83 23.83 42.03 76.06 32.70 74.92 47.84 65.29 49.52 60.82 14.31 36.78 36.38 45.89 39.52 70.91 52.12 5.81 8.34 92.11 79.63 69.82 94.95 31.38 66.55 39.67 45.89 54.13 42.35 7.81 64.66 50.80 41.46 87.30 31.73 78.12 42.49 25.84 24.57 46.10 69.17 81.83 21.41 97.30 44.82 93.76 31.25 50.54 71.90 88.41 55.96 -94.27 81.53 73.96 60.70 38.46 47.14 34.66 92.28 31.95 49.63 7.07 96.22 87.94 18.52 23.33 91.26 72.11 43.72 54.55 42.90 38.57 4.21 92.63 13.10 39.84 25.32 81.96 18.28 60.67 12.65 14.49 24.48 56.57 80.12 94.41 25.63 48.43 34.64 31.75 11.03 89.54 16.95 3.97 82.58 36.64 58.81 40.72 36.19 74.04 15.14 99.41 68.92 23.19 38.78 95.95 8.67 45.13 99.00 74.23 29.89 95.25 20.14 61.81 56.13 94.77 86.66 3.16 38.35 51.12 43.90 95.78 48.77 68.81 46.98 81.01 54.50 41.66 9.40 23.99 66.24 20.30 93.83 16.75 37.30 26.61 17.57 17.67 97.59 28.94 65.57 46.34 41.71 82.08 66.64 53.37 0.40 36.53 86.36 68.73 85.39 -66.15 3.27 85.17 21.25 13.97 40.09 24.79 50.10 96.52 61.21 66.02 35.87 13.50 70.69 33.26 22.81 78.87 54.56 46.53 81.64 59.48 31.82 21.59 54.45 70.19 21.69 19.72 54.58 56.75 9.34 71.73 26.67 75.87 47.81 74.40 54.22 93.68 76.02 74.39 41.21 32.92 16.40 58.89 58.04 99.00 84.22 44.04 21.19 13.08 6.37 71.74 94.84 47.05 45.13 28.48 49.25 11.97 29.34 24.88 49.07 44.42 79.97 45.76 98.06 10.90 75.87 24.95 21.30 33.70 89.71 86.11 70.86 81.36 56.87 98.12 70.08 50.30 56.97 2.72 57.43 56.40 79.68 55.75 94.23 34.87 57.73 44.56 42.22 20.25 4.02 53.08 11.23 25.16 37.89 71.58 43.78 63.78 85.80 15.92 27.48 -86.47 64.10 30.89 56.55 61.45 47.72 60.47 51.99 71.47 70.83 99.15 10.96 42.15 0.49 99.21 31.26 6.21 13.98 96.02 13.10 46.12 61.98 80.16 78.29 16.10 93.33 90.79 60.55 80.73 11.65 83.20 71.32 69.47 57.59 22.51 78.25 14.36 87.11 74.08 34.20 85.36 49.05 50.64 69.61 2.67 75.67 10.80 17.24 99.44 25.74 46.76 44.60 54.38 86.06 55.18 67.41 27.79 67.55 50.28 62.84 58.05 61.47 47.05 79.79 14.23 38.19 67.68 99.50 28.89 25.48 59.13 72.50 2.25 71.28 9.60 45.97 73.93 54.93 79.11 76.71 99.35 98.77 6.98 37.52 19.92 35.36 67.95 90.39 1.61 95.02 43.97 4.06 89.20 10.63 26.10 39.23 8.40 48.61 12.61 18.32 -4.99 40.14 70.04 56.70 44.26 28.46 44.49 85.63 80.17 79.20 0.16 33.05 12.01 12.43 14.77 17.02 51.65 74.61 0.74 1.04 35.06 66.57 77.45 51.36 20.76 65.06 32.27 49.54 48.92 30.22 36.22 14.71 11.39 75.13 22.36 79.92 20.25 72.10 32.56 71.18 60.00 48.13 52.67 59.88 76.13 2.07 57.65 39.20 54.06 26.62 83.03 67.03 12.47 56.27 55.89 85.98 27.80 34.71 97.41 98.90 94.98 20.34 69.73 85.77 47.79 30.93 24.57 42.79 0.67 64.77 48.31 11.05 56.51 98.79 78.93 31.49 1.91 91.14 66.87 44.13 36.05 72.32 62.45 33.81 77.34 11.43 87.76 35.17 29.30 67.36 21.12 85.96 52.64 27.98 35.07 21.21 72.35 81.79 96.74 17.61 -2.86 21.72 22.78 98.04 26.86 88.38 2.62 1.81 92.89 81.15 64.04 33.23 31.20 3.36 75.11 28.92 63.92 25.16 13.36 1.10 98.70 43.14 35.01 28.23 82.66 7.25 97.81 97.03 77.20 52.61 68.51 10.40 20.84 18.66 91.84 30.85 46.58 24.61 83.69 61.46 56.33 74.10 91.39 61.08 87.81 58.69 34.94 31.37 42.83 15.02 96.41 60.14 64.38 24.72 46.59 48.14 8.26 0.28 60.45 96.98 6.78 39.08 6.05 54.69 89.26 91.32 12.98 31.09 60.19 34.68 24.74 40.28 86.39 77.94 19.79 99.30 46.51 27.30 50.47 48.85 90.46 29.35 68.41 6.29 21.51 83.32 21.73 6.09 12.09 14.32 84.54 41.43 41.88 6.72 64.97 24.16 74.22 17.36 7.42 53.64 -63.78 24.67 53.13 13.39 46.26 90.24 77.89 72.78 88.20 35.22 90.24 85.31 8.71 28.27 2.81 93.02 56.37 90.28 52.26 25.03 11.28 90.22 43.19 55.98 34.61 83.22 79.88 31.41 61.33 21.56 51.68 51.42 41.57 41.46 79.63 44.38 26.80 27.70 84.21 34.60 60.98 56.99 8.13 36.17 30.88 96.00 18.26 10.45 16.64 54.15 55.19 62.51 69.23 41.73 35.74 44.84 6.87 24.27 27.93 0.71 0.73 27.48 90.23 35.32 61.06 94.92 53.01 47.07 67.24 56.21 21.61 59.73 78.51 13.98 69.06 18.04 52.64 5.81 25.53 69.70 54.01 7.03 41.03 5.02 72.78 80.34 87.13 89.93 96.67 83.45 86.03 73.35 12.58 26.77 72.75 18.46 28.46 73.58 93.82 68.11 -81.66 22.70 9.86 8.60 92.25 12.45 62.03 29.22 98.77 68.87 11.88 58.35 18.11 30.10 85.34 60.47 49.71 97.01 95.06 30.29 6.71 56.13 6.99 27.09 64.65 51.61 38.88 30.89 16.16 83.52 58.74 23.47 52.28 59.78 93.43 72.50 82.90 39.25 82.47 89.77 30.27 45.81 27.74 4.79 35.24 36.80 91.09 34.14 72.91 59.20 52.02 83.72 31.59 39.46 33.90 48.15 35.27 13.64 98.43 22.94 9.54 58.26 60.54 95.53 14.42 22.37 13.35 73.31 2.01 95.50 55.46 47.27 8.13 71.79 25.61 18.49 45.22 45.56 74.26 17.85 4.28 16.08 0.45 50.62 1.09 81.15 0.34 44.31 59.66 32.77 52.35 75.74 53.94 5.59 37.74 27.68 34.29 71.26 55.78 32.05 -89.80 41.47 60.47 54.51 26.60 35.05 26.33 20.55 43.40 42.46 9.19 9.32 78.92 90.31 10.37 89.57 91.07 42.55 53.72 48.49 26.16 49.16 84.91 19.35 80.29 48.16 64.00 47.73 45.66 21.36 62.94 96.23 31.05 84.18 47.45 12.47 11.42 17.12 51.59 26.38 92.43 64.27 79.34 8.34 37.03 79.50 43.67 29.63 45.92 73.23 3.95 82.73 27.99 36.84 39.77 66.48 71.41 99.23 26.58 25.05 74.09 20.50 6.42 84.64 6.39 95.40 28.94 60.31 2.70 20.23 61.38 50.00 54.49 7.47 25.30 33.13 38.10 25.68 50.68 86.78 59.57 39.36 98.70 13.10 80.23 37.74 94.11 39.13 50.62 8.76 26.09 27.41 67.24 31.97 36.90 14.44 11.18 45.84 77.40 75.60 -30.46 31.32 9.48 19.16 3.89 89.93 98.85 99.81 37.80 90.05 5.33 70.54 80.20 95.98 47.82 37.06 24.23 9.06 47.75 84.25 38.78 33.20 96.88 36.26 56.92 58.22 8.65 40.11 73.31 63.69 21.26 93.11 41.95 61.08 34.82 24.71 98.47 14.80 82.98 59.51 0.03 23.20 47.39 15.00 61.03 81.06 69.77 25.03 40.83 79.74 93.98 63.34 47.85 78.20 29.17 75.04 29.54 30.94 5.61 9.04 67.88 86.18 7.88 36.64 87.43 62.94 15.45 42.93 6.05 37.40 56.94 9.78 15.66 53.24 26.93 67.84 37.52 1.53 35.10 82.79 35.89 32.83 59.45 74.58 12.86 33.72 24.20 78.15 19.72 67.16 74.58 25.65 75.81 40.20 66.55 0.74 6.40 2.65 39.77 28.91 -79.53 56.83 95.95 62.12 33.60 9.13 66.13 0.87 43.62 94.32 72.21 77.99 32.37 32.68 18.85 23.64 75.70 66.44 77.43 35.83 92.44 33.60 36.71 99.34 56.81 85.47 50.94 63.32 56.21 12.19 70.01 57.36 84.91 67.61 1.06 48.19 81.28 91.86 2.49 22.67 77.31 7.79 54.53 7.07 51.83 18.42 45.36 34.71 66.82 75.84 82.95 77.39 77.63 13.56 40.33 26.32 73.13 87.31 11.10 87.54 28.45 25.44 55.21 6.18 85.03 67.09 35.44 66.11 96.21 83.45 57.23 69.08 89.45 44.02 70.15 33.56 2.06 85.24 44.99 15.14 52.02 58.39 9.52 95.21 76.58 19.22 79.14 84.71 31.97 66.02 44.53 68.28 14.02 14.06 43.08 55.71 17.10 49.73 49.45 68.34 -78.40 27.68 74.16 9.04 75.21 61.49 54.75 14.75 61.47 83.37 36.46 29.51 64.80 49.72 83.02 41.72 68.75 16.69 7.31 38.53 82.11 80.53 60.49 33.58 73.96 12.32 81.96 9.30 32.22 71.13 78.05 97.04 97.33 49.07 95.10 20.81 39.27 42.20 25.78 62.10 63.61 43.86 17.20 81.35 79.20 52.64 85.19 77.31 87.13 43.54 63.41 29.01 81.15 49.18 42.76 99.89 61.06 88.89 68.05 6.36 41.42 25.91 59.84 46.55 28.87 69.92 72.65 91.64 50.82 77.41 60.64 41.96 9.00 80.70 41.51 82.74 73.52 23.62 30.24 5.25 43.20 81.03 17.23 85.17 39.11 11.27 41.34 46.11 62.58 92.85 10.85 98.14 32.37 92.63 12.56 32.78 15.00 11.45 21.97 38.80 -34.78 78.72 44.84 35.86 21.70 87.22 45.06 63.44 81.30 10.08 81.69 97.54 40.21 69.93 88.51 50.89 87.31 90.76 58.98 89.70 94.04 49.02 60.28 21.86 2.92 6.25 86.45 99.82 90.06 83.56 82.10 16.80 75.30 49.11 27.24 98.49 28.96 15.48 49.46 81.59 44.86 25.94 94.66 80.11 28.13 21.17 99.94 51.06 8.51 64.75 61.27 94.22 90.03 36.07 50.91 9.81 65.51 80.25 84.81 28.41 59.00 91.31 50.55 21.28 59.53 86.51 78.77 18.90 10.09 6.96 97.53 48.99 89.15 47.41 66.66 8.71 87.08 14.84 36.08 92.30 47.34 75.99 22.24 1.09 12.87 81.14 64.48 63.14 78.12 63.05 53.73 56.42 15.35 97.72 87.62 50.41 92.79 77.91 72.66 98.26 -75.95 43.58 74.82 1.13 90.34 65.62 87.61 68.08 2.92 68.26 44.83 93.78 67.39 64.37 81.12 25.65 36.04 62.98 56.04 35.01 71.80 1.52 12.21 19.66 7.53 58.42 15.15 57.41 6.88 71.65 81.00 99.44 82.88 33.48 69.64 35.71 21.74 87.70 16.22 83.08 59.05 54.21 86.23 95.63 75.60 86.74 46.49 51.04 20.73 3.13 8.86 90.22 50.72 35.08 26.06 95.06 56.49 58.79 2.64 45.00 12.97 83.15 4.31 2.45 47.90 29.99 83.60 86.19 99.70 49.84 77.78 74.18 85.68 21.70 68.45 77.19 50.82 90.38 12.56 8.66 93.01 61.04 14.39 35.03 18.38 63.20 16.27 98.33 98.03 6.81 18.66 14.15 83.26 56.85 93.92 96.90 40.26 81.32 95.87 30.58 -36.00 35.73 31.57 55.95 5.72 11.78 42.87 91.58 85.51 85.74 3.03 49.77 74.21 33.85 9.42 31.57 55.57 96.91 34.66 81.91 14.57 12.60 1.43 10.01 16.84 55.42 22.83 26.07 3.86 6.10 5.26 13.86 75.95 36.30 61.65 87.66 83.12 27.82 43.48 57.61 54.75 61.14 21.89 31.22 88.61 1.50 22.19 55.08 26.06 14.45 23.85 10.67 57.65 55.44 57.00 58.55 68.54 3.92 1.59 67.41 16.75 50.03 70.98 24.50 23.41 46.86 54.42 24.63 36.62 36.22 6.64 51.52 15.74 24.15 61.14 13.15 3.93 81.08 93.91 42.28 35.11 62.93 45.04 29.18 41.92 71.41 25.21 18.40 30.21 65.00 77.71 76.85 84.67 53.87 21.37 55.61 78.13 90.23 0.38 14.55 -40.35 9.54 28.46 17.33 43.30 9.01 16.45 36.56 7.99 17.39 88.01 99.37 12.76 19.82 96.64 36.61 33.76 95.83 84.63 92.22 29.58 7.64 48.12 49.82 5.09 12.52 97.59 11.60 21.05 75.41 97.29 93.38 64.21 54.05 77.98 95.45 45.29 17.65 95.01 87.20 19.99 18.99 37.19 18.50 57.17 92.93 34.75 75.94 19.36 27.64 54.87 35.01 34.26 77.29 65.05 21.74 50.46 98.03 89.57 79.60 33.32 88.05 28.86 95.22 24.52 45.67 43.39 27.84 22.34 65.48 60.44 73.02 20.00 95.35 16.62 43.34 19.87 7.86 53.91 47.77 43.27 48.40 26.55 68.96 39.15 72.25 13.91 3.23 42.17 0.89 86.18 81.56 4.65 15.59 89.65 4.42 15.25 17.42 91.98 94.66 -76.42 20.09 49.23 12.68 67.58 62.50 28.78 18.12 79.84 19.02 29.22 38.53 98.31 85.83 13.44 29.74 15.89 29.18 47.63 34.75 5.56 85.15 16.72 91.81 46.63 80.13 11.16 87.92 87.04 55.35 64.18 12.90 13.23 11.02 95.32 43.07 48.91 7.60 64.42 22.78 95.83 30.07 84.32 54.87 14.03 27.51 30.11 59.04 29.62 89.70 54.57 13.15 78.45 34.75 31.77 24.48 31.83 44.45 55.60 47.26 77.11 53.16 16.85 53.41 58.48 46.93 73.84 28.42 38.43 86.51 65.79 74.20 24.18 34.43 51.17 32.71 84.67 46.81 22.95 10.74 47.29 27.25 19.97 68.80 4.95 79.17 82.92 9.78 42.51 38.85 44.76 33.61 22.33 40.61 21.26 49.66 2.05 62.84 2.83 55.23 -67.26 15.65 91.33 86.41 86.43 38.69 97.13 99.34 60.54 80.94 71.55 98.58 46.92 88.70 41.03 19.53 46.81 91.19 99.53 38.79 21.78 96.78 53.64 82.61 91.51 47.65 62.30 62.40 63.18 97.40 29.72 77.80 48.67 50.90 37.84 35.29 79.38 73.55 22.50 15.57 85.10 95.37 48.26 38.84 12.26 70.79 48.87 12.77 14.50 49.56 6.43 68.07 71.47 40.77 95.13 50.82 59.13 43.21 73.03 89.94 36.40 29.35 62.40 2.45 87.49 35.77 48.97 87.70 28.75 39.90 53.22 54.91 61.52 27.98 66.60 55.94 81.94 93.32 58.36 11.84 12.29 89.39 42.87 45.79 76.29 31.05 98.81 47.68 41.41 85.88 83.09 67.65 59.95 12.94 93.36 89.10 83.13 70.68 56.64 24.31 -7.57 99.29 81.90 79.00 24.96 29.91 78.02 78.41 1.80 50.16 90.52 84.05 33.18 45.45 76.67 43.11 27.34 45.09 21.92 85.92 80.84 91.68 3.94 49.54 52.45 14.20 9.40 80.33 72.64 82.14 61.08 17.45 94.70 90.61 29.93 57.97 89.00 97.21 74.65 10.11 91.41 86.60 48.21 31.41 35.12 37.58 92.77 92.12 95.19 53.06 12.24 16.52 97.76 34.53 42.96 71.79 25.86 41.40 12.07 82.19 74.07 71.57 2.63 7.31 15.12 12.59 92.47 52.37 26.65 2.90 47.93 76.49 7.07 93.69 35.07 30.32 94.87 95.23 56.36 44.63 28.85 66.72 71.82 52.04 1.12 48.92 10.86 75.15 85.49 59.58 76.89 94.96 38.23 20.04 67.43 98.80 25.42 94.74 26.44 89.64 -76.72 76.94 54.97 50.42 53.00 9.36 74.60 62.23 65.25 23.42 73.19 33.25 94.80 34.90 16.95 8.33 34.65 6.76 65.70 69.20 78.87 93.63 25.61 24.38 49.00 88.18 13.27 46.52 18.55 15.71 82.95 58.38 41.52 41.05 45.43 9.69 8.24 37.20 65.60 31.68 42.22 57.94 1.60 75.01 26.77 83.50 44.47 33.81 79.48 97.88 48.05 92.15 65.42 31.01 97.81 69.96 98.32 92.29 11.66 66.32 92.58 26.36 11.07 79.29 95.65 22.17 54.68 24.50 30.06 21.75 14.22 95.28 45.05 89.28 38.92 45.61 23.03 78.68 30.94 92.50 46.35 17.43 73.43 77.06 72.26 91.33 90.47 99.80 66.53 7.31 83.76 59.67 93.51 36.41 25.09 64.27 17.21 97.18 22.13 63.88 -5.12 9.11 16.72 29.79 80.29 10.99 59.11 67.80 8.16 65.37 64.26 61.59 39.37 86.01 19.91 24.48 83.85 93.81 37.91 15.63 95.13 98.23 16.31 18.39 64.39 84.08 44.05 65.06 86.05 37.28 39.59 67.59 22.56 88.22 34.03 92.86 1.96 49.87 64.45 46.61 95.08 66.28 55.94 99.84 81.58 13.84 64.95 51.46 57.15 42.83 6.66 60.23 36.49 80.08 1.24 24.26 93.53 72.11 42.13 56.18 45.78 24.08 99.25 73.49 73.33 77.22 37.63 50.94 22.16 88.70 84.91 29.66 85.92 19.88 32.28 88.25 0.44 21.60 75.08 35.33 13.18 58.57 26.41 29.57 68.49 27.49 41.97 71.15 4.09 52.97 57.59 62.03 30.22 57.77 80.92 20.92 10.85 96.96 76.81 41.47 -61.26 23.33 69.00 29.29 62.64 90.68 78.34 86.43 14.21 41.91 38.44 28.39 77.87 61.28 22.15 38.94 79.17 81.71 63.76 32.22 68.61 59.19 1.39 8.89 92.56 15.91 98.52 74.62 23.55 63.84 61.35 58.87 35.69 54.60 14.94 16.58 0.87 84.35 60.61 62.01 7.11 74.96 89.07 22.74 43.95 87.54 16.28 15.17 71.73 18.88 8.00 50.82 66.13 90.99 97.40 28.84 3.69 26.70 2.64 68.90 91.57 90.97 64.65 66.39 26.16 6.60 80.15 66.01 35.54 15.02 64.52 30.14 66.62 59.74 77.55 28.15 34.55 47.88 85.64 32.55 40.61 45.08 68.71 13.00 57.13 44.00 64.85 71.55 75.70 87.74 20.08 91.59 55.04 31.75 49.81 80.44 6.34 59.35 47.32 20.62 -35.72 40.19 13.70 44.62 43.50 29.87 84.95 36.74 18.43 4.30 32.29 26.25 8.90 86.87 60.64 87.16 59.34 46.41 50.52 77.30 92.89 48.57 42.40 30.62 48.42 12.40 11.20 11.54 46.97 64.89 82.28 0.47 99.51 54.30 92.13 91.72 42.14 62.12 90.42 30.86 50.52 48.52 67.97 25.45 83.18 44.85 34.23 14.01 84.13 30.23 73.02 67.16 59.64 64.25 67.30 4.78 40.63 61.67 12.19 14.54 75.77 66.35 83.72 84.17 34.83 36.70 52.67 88.51 29.47 43.96 25.46 80.00 39.29 95.28 92.71 21.41 63.52 82.93 20.88 1.71 95.29 35.82 95.50 18.25 46.70 12.82 48.18 82.62 17.71 90.32 2.24 69.47 56.34 18.10 7.62 50.53 26.62 25.06 5.47 98.39 -77.88 14.92 83.12 54.05 91.30 28.39 6.72 23.51 17.65 53.15 17.33 86.84 44.80 71.65 83.41 33.83 43.06 8.64 8.89 28.63 68.17 38.26 51.28 21.73 48.55 89.27 14.30 46.02 95.00 72.18 95.39 30.87 69.31 93.24 38.87 99.87 22.19 64.00 88.89 33.69 2.66 76.99 67.10 96.34 44.22 76.40 87.21 4.28 11.00 61.81 0.39 91.75 81.29 21.92 62.13 22.65 32.11 47.05 35.42 98.04 13.10 0.50 47.75 82.27 47.24 8.56 12.58 0.08 49.89 16.95 39.72 22.97 13.50 57.18 94.64 10.90 38.82 7.15 87.07 90.82 50.14 42.16 67.24 86.26 63.47 77.94 29.03 5.87 6.34 47.15 79.36 89.59 21.08 2.31 71.30 79.87 14.28 4.40 9.59 42.89 -39.52 58.12 12.01 66.04 67.73 90.02 49.68 83.53 64.57 42.85 92.82 66.77 60.96 5.66 3.47 23.24 65.71 37.06 72.08 90.47 27.19 59.38 79.73 0.29 97.64 8.93 66.94 36.72 33.37 49.46 88.42 91.15 62.50 12.64 81.91 30.34 12.04 12.05 69.39 16.34 26.81 27.32 90.49 37.09 64.11 89.05 28.87 78.43 83.43 42.36 27.61 83.19 83.16 82.75 62.96 54.07 52.34 70.07 81.91 36.06 98.97 86.10 8.81 25.41 8.10 64.86 91.71 97.71 31.07 32.18 26.35 34.38 93.18 45.23 41.39 86.55 3.43 79.62 91.68 91.33 14.66 62.48 74.40 39.90 22.09 61.42 85.18 70.96 55.68 62.24 48.89 23.83 31.94 48.66 69.08 78.69 38.33 24.59 52.86 95.96 -71.82 41.88 75.07 20.06 38.02 90.65 90.74 70.72 54.94 61.92 16.29 21.09 7.70 47.12 0.64 57.03 32.00 40.58 84.45 27.39 60.65 72.02 15.86 71.63 12.72 39.19 71.59 23.17 24.83 8.69 93.35 48.26 71.83 29.68 0.49 96.42 16.67 40.63 41.91 6.02 33.16 4.17 4.68 71.70 38.97 80.16 37.29 53.36 74.06 28.13 29.56 8.31 3.38 64.34 10.04 51.18 97.65 72.06 81.62 99.57 51.43 95.74 56.77 32.16 51.94 60.20 51.22 96.40 84.32 73.34 66.40 20.59 60.98 62.72 99.19 76.98 25.11 73.56 15.60 85.00 31.29 68.47 57.51 26.67 11.46 8.34 73.53 52.96 51.79 32.77 81.35 84.39 97.61 38.83 57.29 81.91 45.29 23.87 50.06 51.12 -50.19 76.32 31.04 98.59 18.22 16.26 1.89 24.15 29.77 27.70 95.55 35.79 96.73 1.19 65.62 85.97 51.58 63.32 71.68 3.16 84.93 36.38 77.47 26.98 85.16 17.67 55.69 81.05 12.86 49.84 60.02 89.58 3.42 92.93 16.09 25.18 79.39 41.10 91.58 90.11 72.19 36.46 95.15 68.03 30.84 58.31 64.77 98.03 6.54 46.98 96.50 49.51 88.31 9.59 0.36 89.94 87.52 58.34 79.56 14.72 5.74 30.66 85.18 72.38 50.32 70.57 87.88 22.46 28.17 75.27 49.25 9.24 69.75 1.31 88.02 65.94 35.12 37.88 18.39 61.49 77.32 79.66 63.27 61.42 26.10 44.84 84.05 64.78 4.01 2.60 69.70 43.96 42.78 82.69 22.23 56.73 12.64 20.70 1.63 74.42 -95.30 23.17 99.43 42.86 4.18 94.43 42.50 45.39 31.68 57.45 86.44 14.20 81.89 58.53 4.83 8.10 44.54 74.76 94.55 86.50 60.42 89.39 91.13 7.51 88.50 51.09 50.49 80.25 28.91 89.69 60.56 49.35 99.68 55.22 36.60 59.11 39.09 26.46 36.49 53.68 70.48 75.67 34.59 55.54 33.79 96.25 92.39 68.20 86.07 56.08 97.48 4.21 21.46 10.68 20.40 97.88 61.83 54.89 43.91 60.90 90.39 0.43 48.16 79.22 10.64 38.64 32.54 50.95 34.57 94.96 30.82 48.75 23.74 88.54 16.36 57.11 38.24 7.44 90.05 90.87 65.97 95.52 43.22 51.31 23.93 93.49 28.79 15.65 25.73 91.81 74.27 17.10 81.34 26.41 49.50 94.34 83.91 33.85 70.60 63.77 -6.81 68.52 99.84 12.77 41.39 90.03 95.50 32.99 15.96 82.39 95.63 87.84 30.36 30.57 9.70 6.67 8.94 79.75 69.72 63.65 69.14 51.11 54.38 85.63 74.88 87.53 76.57 68.43 83.91 41.19 34.16 73.14 54.57 81.52 76.03 74.55 19.63 17.38 92.87 90.10 91.67 32.07 24.79 59.91 11.89 89.43 87.86 62.30 15.72 40.83 42.09 45.27 9.42 13.31 81.56 62.08 60.25 98.66 6.65 77.04 66.51 99.55 70.59 39.31 45.40 76.39 95.51 98.26 40.08 10.26 15.66 60.23 44.54 65.22 96.62 12.63 64.11 80.24 75.79 69.65 22.13 8.94 84.74 38.74 61.65 43.13 76.59 83.51 17.91 43.99 75.93 23.73 94.04 97.90 90.85 48.00 85.24 43.97 80.03 78.87 -65.92 64.80 52.19 27.07 96.63 21.76 78.34 25.32 86.61 12.57 50.84 6.26 42.20 34.18 72.56 31.58 93.98 22.01 7.52 91.53 98.83 82.21 21.25 10.89 98.68 2.30 49.14 33.99 38.35 41.57 55.78 22.02 52.71 31.03 37.60 60.15 74.50 12.84 15.38 74.48 92.79 9.29 82.12 13.61 31.24 77.89 67.74 8.08 41.83 51.34 32.97 88.63 52.47 28.02 17.08 71.35 23.57 8.37 68.08 85.25 80.29 67.43 31.29 81.12 47.92 91.10 27.50 11.43 72.83 26.01 59.83 44.70 19.29 98.79 18.32 27.41 68.10 6.63 74.93 20.77 32.40 59.06 54.23 61.31 48.94 47.48 57.90 73.02 58.92 17.04 42.11 17.35 85.65 8.29 73.28 37.07 94.53 28.41 80.86 67.86 -31.15 43.82 72.99 42.81 10.72 40.97 25.87 22.50 65.04 48.90 63.17 59.17 45.48 12.01 79.36 58.13 40.75 11.93 29.08 54.63 3.58 68.69 71.37 9.74 0.93 1.49 39.48 91.25 48.66 88.36 36.89 48.12 74.40 53.54 13.26 63.21 67.76 42.00 40.17 6.22 12.98 57.42 77.80 94.85 76.75 56.93 0.73 85.32 85.46 55.49 4.25 95.56 31.42 90.57 20.40 82.56 84.58 55.33 32.98 94.45 81.53 85.28 38.55 32.73 82.70 82.25 15.92 9.65 40.72 66.39 97.66 68.76 29.18 4.57 28.60 90.62 13.89 37.24 24.20 98.39 85.83 33.99 43.37 70.56 42.22 85.43 44.42 83.10 83.78 53.88 90.74 10.81 89.83 94.70 70.65 18.73 27.01 83.29 70.09 39.62 -14.74 44.15 93.21 64.92 58.13 0.37 28.58 52.55 37.99 38.26 78.49 97.40 52.68 11.20 91.53 71.65 57.70 3.44 18.42 52.35 12.14 51.14 51.78 45.54 77.55 64.44 89.37 2.35 28.83 94.44 67.70 28.58 52.82 9.67 25.16 66.84 84.77 43.58 97.84 52.52 42.45 16.29 77.48 3.18 84.02 78.91 30.45 41.09 54.78 24.62 36.62 60.42 29.91 27.99 46.94 44.77 45.00 70.98 8.66 29.94 52.77 38.68 3.41 86.31 52.22 74.85 6.99 53.36 32.19 51.36 61.62 32.76 88.50 72.49 29.86 74.17 67.10 71.75 58.66 16.65 26.34 74.74 26.06 35.53 65.74 67.70 3.50 87.31 36.63 57.89 13.84 67.97 46.38 10.96 72.20 12.22 92.28 26.33 2.46 66.59 -69.89 48.46 23.34 3.37 11.21 13.34 98.14 1.76 97.81 73.93 88.38 81.37 13.52 3.11 50.91 51.48 90.12 33.64 34.49 57.83 88.04 2.70 91.81 92.19 64.52 71.81 15.22 36.74 87.69 73.32 19.77 41.80 26.22 26.54 72.89 69.81 36.25 42.13 33.84 4.41 97.95 20.80 14.51 20.74 96.72 31.87 9.86 43.47 4.30 42.68 13.46 63.31 49.74 43.79 38.35 12.81 90.00 65.95 91.03 44.84 70.45 75.67 23.89 14.40 44.08 11.76 3.50 83.10 21.99 50.76 14.98 22.61 55.36 96.39 19.78 60.88 76.79 81.46 44.59 65.12 32.76 69.04 92.08 49.47 6.88 88.06 83.88 16.26 75.89 35.77 10.60 94.17 66.03 7.22 89.08 80.52 37.20 49.50 79.88 64.80 -1.65 42.85 41.47 69.42 44.25 86.88 74.47 1.32 95.00 87.48 24.41 71.56 65.54 33.71 83.12 77.60 59.91 71.54 52.57 10.92 33.24 97.87 97.72 25.04 50.75 90.07 78.24 20.73 34.67 2.38 76.39 84.97 88.46 6.48 61.49 99.01 35.97 97.92 25.46 30.07 89.96 86.23 36.81 4.90 56.99 33.81 27.71 58.43 6.55 93.35 98.69 2.45 79.87 35.92 7.50 90.24 16.48 96.36 82.62 5.85 87.60 55.55 26.08 63.63 21.91 32.78 5.09 24.96 31.78 31.13 55.90 26.51 37.54 1.55 11.02 1.11 54.56 2.63 52.65 21.30 23.76 98.03 75.82 16.35 78.96 35.75 94.92 42.60 96.58 92.51 95.53 58.67 36.61 68.75 0.42 40.79 13.25 35.98 8.03 61.77 -68.57 6.83 0.96 7.19 76.01 57.90 52.36 71.27 65.18 80.73 34.43 78.39 93.15 60.37 62.34 27.05 53.37 47.71 11.28 29.45 68.62 38.65 40.76 45.08 30.48 70.84 14.58 40.37 81.64 61.05 85.59 4.12 22.83 63.76 56.40 29.64 48.16 92.77 43.08 22.33 84.26 43.11 21.71 90.45 76.80 14.30 33.52 43.94 26.07 78.86 44.63 8.27 94.70 69.92 54.98 97.08 86.52 77.67 22.26 85.15 7.11 89.83 29.48 68.05 76.88 68.63 8.10 31.77 78.18 42.39 68.18 10.10 97.59 5.72 3.26 46.09 28.15 48.85 26.11 41.30 13.30 75.23 9.94 38.95 18.93 24.88 68.88 64.26 33.04 41.98 10.25 85.38 50.60 67.59 72.57 54.19 35.04 17.71 47.31 26.55 -20.08 73.32 74.52 8.85 18.90 98.47 18.55 99.57 2.60 77.34 79.01 94.29 73.88 28.15 72.88 90.79 56.28 84.00 45.22 62.54 54.34 30.81 35.02 95.49 92.84 36.50 47.84 40.34 19.59 27.64 81.43 32.28 49.35 70.65 85.39 52.54 79.51 42.06 48.02 4.60 0.14 69.01 30.87 95.68 14.76 32.23 29.62 45.78 8.44 39.99 81.21 91.13 86.91 9.03 69.40 46.88 66.47 71.63 54.41 92.71 35.20 81.14 28.28 23.89 97.56 58.51 56.02 49.11 34.50 94.87 19.47 24.71 58.84 17.95 40.59 42.14 85.28 2.30 57.41 13.28 42.52 61.08 87.61 53.41 92.87 58.44 41.19 4.14 54.76 50.93 48.88 93.89 50.79 87.22 42.65 44.87 31.92 88.71 87.72 17.27 -6.47 58.18 43.35 61.79 99.28 15.44 64.80 85.08 22.28 44.61 4.20 40.53 98.96 44.25 34.47 62.28 99.93 47.19 51.65 77.14 95.41 36.20 25.79 33.03 30.27 6.04 94.29 86.05 49.80 45.06 68.19 55.27 72.11 81.12 7.37 45.90 9.81 84.59 5.73 27.44 96.23 38.87 48.01 69.23 82.45 65.83 50.48 85.81 39.97 94.03 18.03 36.67 36.23 81.32 28.50 31.14 4.54 33.28 76.38 1.90 18.01 26.21 7.02 52.59 7.67 98.25 44.12 82.81 95.13 8.74 97.79 19.51 80.14 89.37 96.40 27.24 41.35 18.37 8.60 45.03 74.77 71.95 49.36 50.78 78.34 76.80 19.74 25.32 20.60 34.36 71.95 51.10 37.58 16.65 21.91 89.74 48.80 97.09 45.90 48.16 -48.66 2.39 32.39 68.31 14.10 4.37 65.38 73.39 4.56 42.05 95.00 36.74 14.89 1.43 84.52 68.54 17.69 47.19 27.20 74.89 25.18 78.85 99.66 44.43 38.90 10.62 41.35 39.03 25.65 7.02 6.71 16.07 13.36 96.01 12.67 37.45 87.14 0.64 15.55 54.02 4.31 90.73 32.12 52.92 12.62 82.52 19.88 52.12 56.73 69.30 60.56 35.27 35.05 5.92 78.81 31.24 97.03 68.87 80.63 85.87 33.21 18.28 83.66 81.61 39.46 12.09 57.07 18.71 80.40 35.76 95.66 86.38 46.32 10.63 27.02 18.84 94.34 15.09 9.96 54.90 15.94 61.23 38.08 29.31 4.58 89.77 12.60 62.75 14.87 40.23 32.20 68.02 47.70 20.70 55.71 79.55 68.29 7.18 86.56 64.49 -90.82 88.33 34.40 73.72 33.87 70.88 37.58 16.82 2.23 32.91 82.93 66.15 53.91 27.05 97.87 38.06 5.90 3.48 85.08 46.82 62.42 9.04 71.09 26.92 60.34 1.97 35.18 89.79 37.18 20.02 50.28 21.54 33.28 76.10 55.62 85.35 41.51 1.51 4.25 0.18 11.41 6.46 24.77 32.90 48.06 74.80 10.30 12.06 68.73 80.44 77.01 43.40 81.06 97.80 35.10 61.84 9.36 25.45 56.64 17.91 49.99 17.49 14.14 89.91 88.20 83.31 51.78 75.80 31.66 73.85 24.41 29.00 53.46 70.77 23.37 92.52 33.94 64.66 23.06 39.68 83.56 9.16 70.05 90.16 39.92 69.91 89.61 92.36 72.43 28.68 57.39 73.95 12.23 27.42 24.56 3.41 25.17 38.61 46.76 79.60 -67.76 22.82 93.58 95.77 37.86 3.34 72.71 74.52 5.28 19.99 42.88 7.84 56.17 27.95 25.10 87.70 8.30 93.84 2.09 50.63 20.11 5.85 84.04 0.37 41.20 85.60 5.45 51.09 39.16 51.22 60.74 73.46 94.84 99.15 26.63 93.20 95.20 95.40 96.24 79.29 5.49 79.97 37.71 9.50 64.42 36.94 5.65 22.95 52.63 59.87 26.03 42.39 25.62 85.82 80.99 24.97 34.68 30.25 21.50 89.88 39.10 32.88 25.36 13.45 40.39 28.68 28.27 10.80 34.84 86.00 87.18 32.73 42.93 88.71 43.16 82.40 86.76 86.39 57.14 31.91 39.33 8.85 5.37 80.70 18.83 92.30 94.51 18.79 74.09 91.49 19.02 96.11 11.89 57.65 13.96 50.97 52.14 27.89 1.29 70.88 -82.14 76.63 67.43 13.21 41.41 33.37 26.58 95.70 8.03 18.81 9.51 54.61 42.02 11.97 76.67 88.72 81.13 30.44 47.26 0.09 26.65 41.50 40.97 54.25 17.19 7.39 15.88 37.78 78.25 67.70 22.61 84.05 43.70 25.03 3.72 28.51 68.81 34.11 75.75 98.31 45.66 1.60 88.23 89.64 23.58 94.34 57.24 3.97 85.17 15.59 92.70 1.67 19.30 29.28 7.71 71.98 50.61 74.92 69.11 40.49 49.16 16.34 6.82 68.32 1.18 30.45 80.80 0.94 1.95 64.98 81.42 96.08 7.82 52.73 75.28 68.33 48.47 38.60 72.80 47.86 41.72 75.24 96.26 87.47 21.03 81.43 29.06 81.60 66.92 67.51 11.91 55.06 87.69 65.42 22.84 46.34 48.39 41.21 78.23 33.47 -29.37 59.66 70.85 19.62 79.88 65.38 99.25 65.42 90.95 5.40 10.02 86.05 30.55 68.76 37.06 9.44 42.86 14.88 96.14 10.86 7.04 64.97 98.27 92.93 8.21 61.57 53.48 21.77 92.47 0.08 26.21 32.59 4.50 64.00 71.91 45.62 53.09 3.46 28.31 30.03 21.58 16.77 98.65 52.39 27.92 20.75 17.67 16.29 24.65 87.46 27.21 57.55 42.37 92.76 82.83 92.96 17.13 96.16 14.22 39.13 58.87 86.38 91.98 73.99 0.02 31.57 66.18 87.49 96.84 56.04 26.34 58.12 18.28 98.58 99.64 58.52 94.97 47.66 2.70 97.49 19.57 49.50 41.64 46.38 13.01 71.63 6.81 61.26 40.39 11.41 58.56 85.53 35.98 26.78 93.68 16.52 73.47 12.76 52.43 44.61 -47.57 11.32 18.02 62.62 67.88 82.84 16.07 79.90 34.90 33.00 92.71 55.62 91.03 62.80 85.54 26.64 65.43 92.81 42.60 60.43 42.61 99.31 96.40 75.91 49.65 55.05 56.17 59.02 10.86 28.33 12.27 78.98 51.36 51.14 80.34 1.10 91.91 68.86 28.42 93.98 80.45 36.37 38.21 7.12 41.07 29.67 77.09 79.10 80.99 93.97 45.64 66.50 47.57 58.41 78.96 35.75 74.33 89.74 11.00 54.60 7.47 29.54 15.09 98.41 85.42 78.06 32.84 33.86 84.35 74.49 63.47 70.64 93.08 15.22 32.12 56.68 54.27 92.00 15.45 76.68 88.34 95.45 64.64 45.53 10.75 24.30 53.04 88.74 88.77 35.50 6.17 2.67 76.57 56.78 45.73 49.29 61.02 98.31 32.47 40.36 -33.32 39.88 68.15 91.92 97.43 74.02 19.90 32.27 23.90 48.45 29.85 72.31 22.03 13.25 36.89 23.56 65.92 23.74 93.28 76.92 98.78 20.88 69.49 68.91 10.72 26.50 89.83 32.79 80.46 63.26 76.63 53.54 61.81 90.17 20.29 81.72 30.46 37.16 16.20 49.92 79.17 94.58 34.90 44.46 92.59 45.96 32.88 52.24 61.89 89.72 99.99 47.93 4.15 47.49 21.65 20.48 4.10 69.01 68.20 75.52 71.80 63.46 65.59 52.22 74.34 26.18 94.09 33.25 48.41 41.05 12.13 45.50 42.13 78.91 57.88 99.80 55.81 23.13 35.55 6.49 6.72 76.29 6.79 37.72 64.83 19.54 87.23 64.95 48.70 89.90 95.86 89.32 64.94 45.48 72.21 52.73 1.54 41.69 18.66 85.63 -7.74 24.74 54.93 93.59 40.21 12.74 1.33 59.11 97.67 67.54 93.91 1.94 39.30 98.67 60.12 76.84 49.27 80.55 72.06 77.00 35.87 13.54 84.33 41.26 68.83 25.18 72.88 50.61 82.40 90.38 55.94 79.61 62.27 52.18 71.06 46.97 48.73 56.54 66.70 6.96 41.58 79.37 58.51 3.84 36.87 79.59 89.36 55.15 80.61 59.90 66.43 52.85 77.41 92.50 43.64 63.76 23.26 52.68 33.52 81.24 93.69 14.04 12.41 60.56 42.53 62.57 87.37 9.54 79.46 46.24 18.32 71.01 6.56 17.40 40.39 93.73 67.94 55.19 74.32 81.22 42.41 64.04 76.77 48.09 38.25 52.30 96.17 17.81 18.71 30.41 40.97 88.47 27.44 26.46 7.69 50.88 96.58 66.97 79.28 92.49 -86.28 38.25 82.78 37.10 53.14 29.91 67.48 2.82 28.70 46.68 83.62 25.89 28.75 29.39 0.77 6.62 61.95 59.66 31.08 26.34 67.28 38.28 50.57 36.54 68.20 59.46 62.61 18.24 31.52 88.70 67.48 75.66 66.47 79.29 32.75 9.53 81.58 74.73 41.56 71.99 32.30 19.78 51.30 18.06 55.33 55.88 82.57 59.64 20.30 66.54 88.10 92.97 85.65 97.77 63.66 4.26 37.92 65.28 8.29 23.36 53.09 57.83 14.89 44.29 54.90 78.97 5.10 53.00 3.22 53.20 59.82 15.82 31.90 54.92 48.67 48.40 66.76 23.97 36.10 19.49 91.41 7.84 69.69 51.02 90.91 61.72 12.43 81.36 25.19 15.71 96.49 80.42 6.30 74.37 48.99 87.48 15.89 39.45 58.53 58.99 -34.70 75.50 61.94 28.35 25.06 15.41 57.81 24.26 62.63 89.99 74.09 1.58 71.92 58.62 37.08 45.39 11.67 37.18 52.84 20.06 81.89 93.95 31.47 74.60 21.40 9.09 81.53 85.04 31.75 23.80 45.44 28.67 74.89 80.56 98.70 6.45 37.27 36.42 85.04 69.18 95.62 54.34 72.34 37.36 16.61 96.36 84.44 78.62 90.49 77.52 33.90 65.47 99.99 40.22 52.59 20.42 90.83 59.86 96.99 60.79 50.48 52.25 90.47 18.16 75.37 77.81 48.80 41.33 18.52 35.10 85.52 23.87 95.20 12.64 53.95 56.16 58.02 2.45 44.32 96.96 75.94 78.62 48.81 31.95 80.40 27.02 90.07 31.74 75.63 21.58 31.13 63.73 65.74 69.48 36.02 91.76 17.36 80.37 86.39 75.52 -74.50 31.97 10.22 38.97 90.41 52.04 17.73 33.88 96.17 15.24 83.35 95.11 95.46 38.64 37.49 11.94 14.53 89.81 85.92 1.22 92.37 32.72 2.75 69.09 87.34 76.98 78.65 1.95 74.97 24.43 38.41 25.93 97.18 0.77 43.82 18.30 51.90 95.52 42.18 44.62 23.80 60.04 28.53 84.34 3.52 63.69 29.80 71.39 68.74 69.04 55.85 65.68 43.11 61.65 34.12 65.18 88.00 99.49 48.91 86.73 73.33 82.12 40.21 14.99 99.99 95.77 21.67 51.36 41.55 16.50 81.02 7.54 94.77 13.84 91.86 18.30 30.63 24.10 87.85 14.23 74.44 46.39 32.92 38.40 41.30 59.96 88.79 40.00 86.91 45.48 63.58 1.91 27.47 76.83 23.82 42.56 69.36 17.56 49.22 12.22 -39.74 50.94 29.18 50.59 57.76 24.84 73.02 76.76 32.73 83.50 88.55 79.31 75.41 44.98 19.09 19.42 55.07 87.72 2.94 61.68 11.11 65.32 23.51 94.50 72.10 93.01 10.22 20.25 0.11 4.25 56.95 89.61 30.23 9.13 91.30 72.88 35.18 73.06 25.05 68.96 30.31 88.04 89.50 84.36 98.95 9.36 72.96 50.27 80.76 9.71 34.46 5.32 78.20 43.58 87.95 5.65 87.46 90.47 60.81 63.57 64.93 81.98 39.88 24.87 16.68 32.20 59.77 12.27 15.45 29.31 19.23 14.49 65.34 66.68 12.14 44.33 98.51 61.80 53.68 36.73 67.32 6.48 79.98 51.36 58.66 29.82 42.06 15.62 40.53 24.52 4.71 27.24 13.98 68.71 79.43 7.48 29.44 6.95 50.02 96.71 -50.79 67.84 70.58 13.91 99.76 0.74 6.29 15.60 77.27 98.18 94.03 63.51 35.82 93.28 68.16 57.90 15.55 38.25 34.12 96.98 48.34 38.35 77.06 60.55 11.22 59.20 62.40 13.11 47.78 0.12 53.99 94.85 53.46 63.67 69.01 2.27 88.56 82.38 38.73 87.61 61.72 93.71 6.03 92.48 94.95 81.12 26.39 95.76 94.51 63.22 52.38 57.62 3.37 16.49 91.24 91.96 88.89 70.36 79.97 9.02 99.90 18.97 80.38 87.16 77.68 76.52 67.86 17.38 55.69 44.72 53.56 58.23 14.55 28.89 5.52 96.50 94.19 26.84 41.19 16.79 20.73 26.23 31.47 50.33 59.10 43.51 68.57 11.59 20.16 71.25 92.95 38.86 48.34 39.04 47.07 55.02 13.21 9.12 15.89 98.39 -55.63 50.28 10.10 71.93 0.41 65.96 30.63 38.81 55.10 73.38 44.87 75.51 17.73 29.16 17.58 77.68 76.89 50.82 72.99 49.68 3.36 30.23 6.56 95.26 75.72 44.31 85.72 61.60 79.91 48.08 90.59 34.47 59.72 88.67 12.99 21.56 2.18 72.86 35.75 44.47 29.91 79.50 56.76 78.74 74.70 60.54 37.94 69.23 79.94 3.45 63.15 98.68 19.04 91.36 2.78 12.38 59.94 43.68 51.45 29.91 44.58 91.86 89.22 58.19 1.76 71.36 89.67 12.20 20.18 77.93 85.61 24.78 57.17 28.75 54.79 5.16 65.42 10.71 82.61 25.19 42.54 25.70 97.79 9.09 30.74 52.04 45.11 84.57 85.00 28.73 67.06 20.91 71.31 43.96 14.22 69.64 95.97 58.80 40.04 27.58 -49.71 15.68 2.58 98.81 62.65 80.10 35.74 38.85 97.22 85.07 33.08 67.26 71.54 96.84 75.11 0.30 29.21 52.36 97.48 87.47 53.15 94.60 22.09 85.07 54.66 84.09 34.97 80.11 76.45 24.00 63.89 18.61 16.18 26.30 61.37 8.25 33.75 89.63 66.41 59.34 72.17 42.37 89.87 77.65 31.21 65.16 99.38 11.97 18.92 21.33 66.83 15.24 73.95 25.67 35.13 50.48 30.46 23.28 2.15 61.80 82.00 83.25 44.90 67.16 39.15 9.67 48.00 57.46 35.26 36.42 37.96 18.30 47.83 43.93 76.01 85.48 82.43 58.02 27.07 62.22 95.40 48.48 17.42 79.00 9.01 12.27 30.84 59.30 60.44 33.87 78.39 8.14 51.57 30.70 9.12 64.21 29.99 63.75 50.54 44.31 -43.93 39.88 27.98 39.98 22.18 80.92 37.65 7.40 6.65 2.52 28.42 30.27 23.47 77.83 37.43 85.02 85.47 44.71 18.52 76.88 58.26 92.92 8.22 65.25 67.10 89.84 41.51 90.84 61.28 0.15 36.45 48.85 45.21 70.41 47.53 8.55 92.36 96.12 67.38 22.27 77.67 53.67 55.08 20.34 96.05 91.50 20.47 68.57 14.30 62.86 25.86 92.31 43.44 1.26 75.56 40.60 41.58 20.39 79.24 76.05 80.17 45.27 74.01 57.18 26.60 89.03 6.34 16.86 88.49 18.02 4.57 30.58 86.32 71.26 35.96 31.30 56.22 47.89 64.84 96.60 1.10 98.34 39.22 51.36 63.55 13.15 3.38 27.93 36.20 45.79 72.68 9.86 43.34 78.32 15.73 2.96 59.53 76.26 27.70 97.68 -7.98 19.11 83.63 62.17 22.42 26.44 85.02 8.44 99.70 77.13 16.26 48.48 34.09 60.40 98.99 44.66 2.84 74.62 1.98 41.04 58.12 80.89 27.22 34.38 94.00 53.59 34.29 44.07 66.32 97.30 25.30 38.68 28.26 66.98 72.30 50.30 59.84 84.10 93.66 71.86 91.82 66.94 42.76 71.05 65.48 57.41 91.29 55.26 20.47 11.06 38.90 48.08 17.94 0.59 6.26 3.61 27.54 16.15 52.35 51.94 69.40 11.49 51.64 86.25 33.19 0.63 16.59 20.80 73.44 9.72 31.12 53.36 75.54 51.54 36.51 55.39 80.00 15.04 72.72 38.63 5.93 43.20 67.19 80.81 77.74 80.52 69.82 46.88 37.05 57.77 61.39 78.98 78.73 3.06 75.08 79.10 71.86 82.52 94.22 7.34 -41.39 59.94 63.04 83.44 24.63 50.69 22.01 46.59 64.37 57.11 9.03 10.57 86.90 15.73 69.18 46.61 98.29 23.57 3.85 53.52 41.62 44.29 47.91 85.83 34.37 46.74 48.61 91.37 74.17 36.08 84.84 38.11 59.08 7.55 47.70 86.02 60.44 26.62 32.50 1.23 27.42 40.48 11.69 60.32 41.15 10.40 76.94 56.72 15.69 7.73 79.70 25.44 88.23 92.64 45.66 88.58 45.67 62.02 18.29 92.25 92.44 68.37 76.54 15.94 71.89 35.67 34.49 60.33 23.64 79.85 38.67 76.33 43.34 50.89 14.69 63.71 60.26 92.43 87.74 86.32 63.74 24.02 91.60 56.38 62.69 15.73 46.50 28.71 12.30 93.73 51.04 74.68 1.71 97.94 75.16 41.27 95.42 61.16 7.28 41.48 -27.89 36.04 4.54 99.74 34.09 96.88 0.69 50.52 1.53 71.71 49.80 96.84 99.47 31.34 74.95 83.74 40.38 65.06 6.71 24.73 73.33 35.46 10.68 36.10 60.83 84.83 1.72 16.57 3.39 21.04 30.70 34.18 73.26 34.94 95.57 59.46 18.55 28.62 4.83 64.58 41.88 51.69 91.94 24.67 79.19 66.57 82.61 65.75 68.24 19.50 42.46 50.52 50.31 29.96 4.72 88.52 14.93 85.89 17.62 55.23 94.83 54.80 68.08 26.43 30.20 39.94 65.24 62.45 95.39 13.30 63.26 55.42 35.87 41.48 9.90 26.00 71.34 76.09 22.33 68.00 37.89 81.69 93.15 68.71 15.62 0.60 41.57 80.88 14.44 65.26 30.26 78.37 98.22 61.18 19.80 5.45 99.63 9.68 74.52 79.90 -63.80 67.74 70.18 65.20 94.88 63.21 98.76 54.04 92.97 68.73 15.94 16.75 74.07 9.99 86.95 28.58 88.08 53.22 40.86 89.77 9.54 46.63 16.61 97.62 99.71 76.31 74.34 0.60 92.06 95.11 19.83 0.42 15.36 90.42 13.05 23.73 21.13 66.44 69.83 98.97 50.77 99.35 85.65 72.43 82.48 94.58 82.73 0.71 13.56 64.84 98.14 52.88 1.69 98.25 39.79 37.96 97.62 34.09 39.67 87.74 88.06 15.81 56.77 23.36 59.42 87.67 43.24 32.39 79.07 77.16 10.59 13.55 58.13 22.00 75.69 32.57 94.23 34.32 14.14 35.71 31.85 50.89 12.85 46.71 4.69 66.99 1.50 50.68 16.45 48.81 43.34 38.38 22.71 4.37 49.53 6.17 92.79 70.68 96.06 65.74 -83.16 50.47 52.47 29.33 14.41 25.15 62.95 73.61 62.56 64.36 21.53 74.27 14.99 1.64 77.85 44.57 14.30 35.03 40.75 65.07 81.09 58.20 92.26 66.51 9.03 55.84 80.81 75.08 10.05 33.95 1.54 27.22 32.12 17.41 61.07 29.64 45.22 94.10 55.15 0.81 19.66 9.87 76.14 25.32 23.54 38.32 95.57 2.30 27.24 51.59 50.87 48.37 26.38 87.97 69.20 75.62 37.74 93.65 79.11 35.65 51.44 14.00 1.49 55.82 83.37 8.25 51.39 26.97 47.24 61.93 9.39 91.19 81.55 74.11 74.57 91.27 82.10 99.40 55.08 9.76 47.23 34.00 52.34 58.05 86.74 52.96 31.71 69.76 51.45 95.48 85.53 22.58 25.42 49.48 24.27 0.44 7.03 0.78 69.47 59.96 -85.38 25.79 10.93 78.29 50.76 43.30 63.30 4.56 56.24 74.34 62.06 19.90 35.53 81.22 15.16 36.82 3.04 49.95 36.91 98.76 74.13 92.44 15.18 18.16 76.42 46.32 44.60 32.93 5.33 91.46 77.65 90.66 97.57 52.11 25.50 77.79 33.86 45.07 7.30 45.72 99.47 25.14 63.37 75.19 47.29 43.15 43.29 6.89 27.76 89.55 57.24 58.09 43.83 81.92 48.50 15.85 97.16 63.18 17.01 78.35 31.03 90.61 61.26 24.23 8.50 32.00 80.09 72.21 30.83 29.78 2.84 52.96 39.84 40.43 82.83 32.49 83.39 7.03 15.10 7.98 6.26 58.30 52.41 42.97 25.19 63.08 48.15 91.31 34.93 69.43 86.79 49.43 15.44 88.98 81.26 53.92 35.23 8.90 59.56 60.14 -67.68 64.58 92.40 32.07 15.44 28.71 92.74 41.71 72.49 83.89 85.18 34.85 1.08 32.05 51.40 37.13 67.51 92.93 72.44 95.93 70.15 56.34 5.98 12.23 54.88 47.55 6.62 91.86 45.15 39.34 83.07 76.21 37.56 45.54 99.76 45.80 8.99 22.06 18.99 47.36 73.02 99.60 50.95 71.71 41.22 98.11 60.56 29.25 82.80 99.37 95.90 78.30 98.20 26.67 99.07 52.16 39.06 2.05 34.81 68.61 52.05 71.63 27.70 40.08 10.71 47.71 9.47 47.88 54.22 48.74 53.80 80.25 19.13 95.11 87.23 64.04 52.50 70.97 16.54 12.43 75.15 82.83 43.51 55.03 9.57 14.83 85.75 15.26 17.34 27.42 2.71 39.38 86.53 41.32 91.99 10.24 0.57 79.61 72.33 8.60 -67.49 65.96 62.24 56.27 73.35 22.19 27.51 26.75 27.00 61.36 60.72 77.52 26.64 71.92 6.39 60.21 33.51 61.03 9.17 25.90 5.39 7.30 24.33 10.44 42.34 2.21 62.55 75.48 19.34 91.52 25.10 82.98 90.82 29.10 34.74 28.46 96.62 43.63 78.60 13.04 97.44 12.24 73.41 42.50 9.17 44.67 39.36 49.37 7.34 62.09 23.31 22.86 70.54 66.20 2.96 97.68 22.38 36.24 55.06 91.23 8.41 96.63 95.66 65.54 44.05 39.55 15.66 72.85 5.98 80.23 54.36 11.36 99.25 63.26 81.91 9.85 87.88 6.38 65.29 48.43 49.63 38.73 51.65 47.85 42.61 43.23 65.70 21.04 62.02 42.81 50.38 64.34 45.52 2.15 61.51 97.98 77.25 9.88 11.42 80.15 -86.35 25.58 98.13 73.05 26.02 41.77 95.86 1.98 98.08 64.35 98.93 66.37 44.25 68.97 37.87 99.77 16.89 23.35 83.11 50.14 57.25 65.71 11.66 98.75 6.04 53.60 21.04 61.53 78.98 63.90 49.08 76.34 56.92 65.67 48.76 40.39 68.44 16.21 5.71 58.39 76.41 82.80 55.46 9.40 7.06 17.65 43.38 23.29 32.85 48.10 12.34 53.41 71.47 56.22 72.19 74.02 10.60 12.88 17.69 83.00 10.17 42.74 66.67 10.71 68.10 40.61 92.17 44.31 45.11 73.09 71.91 89.17 81.04 18.35 29.99 45.83 81.63 0.06 14.98 4.37 59.47 60.03 92.80 78.10 41.06 22.54 36.58 24.07 68.82 31.21 38.31 5.75 97.69 40.62 93.29 28.48 27.69 42.23 75.11 42.67 -40.88 10.78 67.54 99.81 25.68 5.54 13.31 71.95 92.61 94.64 29.77 92.20 48.28 25.82 99.48 99.17 74.76 56.42 51.46 83.45 42.63 55.83 35.15 53.30 59.89 50.41 70.51 51.24 78.01 60.84 55.89 61.37 58.00 86.58 65.55 30.38 57.92 10.25 44.38 75.49 69.94 27.51 41.83 22.11 23.45 47.56 84.74 26.42 82.73 6.03 1.04 17.81 6.16 9.54 14.28 22.68 98.27 84.13 4.80 93.61 98.73 26.52 24.82 6.72 42.34 85.04 80.11 81.71 14.69 46.71 8.98 33.71 53.98 31.69 1.12 59.56 33.30 54.63 22.31 81.65 19.97 89.56 21.59 45.61 61.65 44.99 84.65 2.80 59.45 75.78 66.58 91.30 13.21 62.06 98.51 86.49 34.89 81.40 79.28 85.77 -54.61 99.13 44.80 60.13 94.24 16.62 80.23 33.39 80.49 66.95 6.06 93.26 1.00 79.44 44.44 52.07 41.09 83.31 27.42 30.08 60.42 39.43 68.52 48.37 25.53 40.43 44.86 6.90 68.97 79.11 22.91 14.43 2.81 37.77 93.55 88.61 62.27 33.23 11.41 12.98 84.08 16.63 72.80 51.62 25.76 82.80 35.87 11.08 73.72 17.02 41.42 43.20 71.15 98.55 41.32 30.89 81.65 97.58 91.40 35.05 92.00 44.65 11.36 58.14 19.63 77.61 13.57 80.36 67.08 44.33 64.19 74.32 64.23 22.56 84.46 18.47 30.04 42.44 82.98 64.52 19.49 55.71 56.41 65.56 50.07 10.51 68.48 53.07 84.11 67.01 85.21 57.22 60.45 41.99 61.93 56.72 87.83 87.88 14.69 22.78 -98.21 5.78 70.11 43.90 23.02 52.52 7.68 44.65 26.07 0.49 62.94 97.78 46.66 78.77 56.29 4.49 37.66 60.39 73.66 1.77 28.83 86.05 59.62 5.25 95.04 52.11 64.26 25.23 26.90 76.19 67.29 88.70 11.32 37.78 88.89 4.67 6.96 3.27 26.30 70.19 29.58 73.75 60.66 21.25 80.95 82.64 17.24 91.67 46.49 48.25 78.41 75.74 34.57 88.37 38.89 83.55 5.08 79.97 33.61 36.49 33.46 4.81 7.04 25.53 42.61 82.62 40.48 49.58 86.33 60.17 39.65 69.61 68.03 84.27 90.21 92.11 70.13 88.27 96.52 33.17 67.42 90.29 19.21 25.69 51.34 58.63 48.71 13.02 43.73 82.26 97.80 44.32 32.23 49.20 70.87 27.93 51.17 58.82 19.63 22.15 -57.16 34.10 1.22 46.43 40.82 20.52 34.17 17.90 10.11 26.16 29.75 15.85 27.04 96.12 47.24 68.60 87.14 20.13 69.73 37.83 34.71 27.63 12.08 99.47 83.61 52.76 89.98 82.67 99.97 91.91 70.23 93.39 92.29 8.24 65.23 90.74 11.00 9.67 48.40 32.37 26.26 49.04 18.47 79.89 78.80 90.33 6.96 69.67 93.00 82.06 96.87 2.55 36.09 5.09 8.11 58.36 8.76 79.62 54.27 83.13 0.75 62.03 87.15 31.31 5.22 97.26 30.02 2.74 81.29 18.70 95.42 11.59 0.56 25.09 60.19 4.51 36.07 87.24 67.53 12.83 45.88 62.22 79.25 90.49 20.80 62.61 73.21 23.78 30.34 80.08 51.96 96.51 98.54 89.58 18.91 86.05 28.10 72.02 63.98 1.83 -56.84 96.63 55.19 24.66 52.68 34.97 75.31 45.46 96.92 34.18 43.85 25.87 66.61 39.01 7.87 7.94 76.53 48.19 39.19 6.02 27.99 66.11 90.37 96.95 87.40 85.60 71.20 70.76 46.16 65.41 90.81 13.54 69.61 26.15 58.17 31.08 91.75 73.84 13.68 88.66 99.48 43.33 37.81 64.67 81.61 97.38 52.15 7.97 94.28 14.16 77.21 28.43 54.90 89.51 6.59 71.39 41.59 87.92 97.48 71.14 41.84 87.50 5.20 97.71 74.19 28.09 9.18 62.55 94.11 2.10 61.34 51.33 12.15 96.58 84.23 28.57 90.95 11.79 78.63 58.41 42.98 53.67 15.63 31.98 96.28 40.73 34.91 59.37 63.61 42.01 34.11 76.04 58.36 11.07 47.63 97.60 12.04 90.06 31.52 87.29 -18.42 50.66 28.45 92.06 45.07 42.43 9.62 97.66 49.81 39.03 72.13 96.00 7.59 87.86 77.12 52.33 74.73 35.23 56.70 5.54 6.85 34.94 27.56 88.93 89.44 31.38 31.13 7.81 49.61 50.48 51.84 91.92 10.77 33.75 55.49 90.35 77.27 91.06 13.94 43.77 20.00 92.78 11.70 60.20 20.60 13.35 38.29 38.30 53.58 47.46 45.94 69.35 61.31 49.59 37.30 59.72 31.32 64.01 26.45 33.91 21.00 49.19 59.78 23.99 47.67 5.42 52.62 2.04 19.55 43.38 71.20 98.66 97.63 93.13 3.24 70.39 18.37 86.55 38.61 22.48 12.00 20.80 32.68 24.10 39.98 80.64 24.45 29.55 14.86 8.39 19.37 15.72 95.00 19.76 95.30 20.70 80.10 61.47 89.91 64.51 -32.26 94.08 18.07 20.37 47.49 61.68 47.22 15.71 10.10 57.13 56.34 27.42 97.07 60.16 87.36 12.24 6.63 3.11 27.80 70.48 79.73 55.90 22.10 3.14 18.38 45.83 70.99 77.01 25.37 86.55 62.10 77.46 32.91 89.76 79.26 54.07 13.40 62.93 10.83 46.06 35.75 90.90 49.71 31.01 56.03 15.27 60.42 35.88 65.81 92.47 22.11 97.35 67.74 43.40 47.01 6.55 21.63 37.07 85.06 12.08 66.34 36.83 79.46 38.53 64.20 5.28 38.24 1.44 28.09 8.47 61.70 16.98 26.07 23.68 91.23 65.73 8.60 69.86 92.95 38.45 60.20 11.04 84.82 77.83 2.05 18.73 76.35 80.96 27.32 86.49 28.14 98.88 26.32 68.56 93.35 60.04 69.73 12.23 79.05 67.86 -84.62 70.88 68.04 55.68 96.87 2.36 61.92 73.20 71.68 13.81 68.53 82.81 97.81 42.40 78.27 12.62 45.93 35.07 72.78 21.16 86.75 27.97 19.70 79.73 69.32 78.60 81.08 35.78 82.18 99.31 71.33 91.55 19.68 84.91 20.85 52.52 16.19 98.77 98.10 74.92 22.34 46.50 80.73 65.57 87.31 65.78 12.53 13.78 57.85 37.59 43.45 24.07 81.84 1.34 75.79 61.53 12.11 96.60 92.66 15.18 94.43 66.47 87.77 91.15 8.88 41.53 8.17 90.70 51.35 56.23 34.04 42.47 79.51 44.13 68.33 70.67 16.27 16.92 82.93 36.23 38.90 48.46 92.83 59.03 37.61 75.82 8.55 80.39 6.86 78.41 89.01 2.16 74.65 36.70 16.00 61.09 1.31 16.34 74.92 86.62 -28.65 73.02 18.15 29.43 19.01 23.39 24.40 6.32 54.79 44.97 43.91 22.81 89.84 61.95 96.37 2.46 37.04 63.02 24.19 59.00 33.70 96.35 15.65 55.70 6.74 23.55 11.48 53.51 11.64 54.60 32.17 80.02 61.74 38.24 58.38 79.36 4.07 68.32 65.98 30.47 96.45 75.30 73.97 36.00 76.02 29.28 17.79 23.21 20.76 63.03 56.34 97.43 73.93 54.03 25.39 45.16 82.20 81.53 14.99 30.84 97.40 53.86 63.04 52.70 50.95 88.29 7.99 82.37 79.24 26.47 95.43 54.65 52.11 46.38 77.26 75.45 3.06 18.17 64.76 32.61 29.97 41.35 54.54 88.46 45.05 47.69 76.90 32.76 83.04 47.88 2.78 21.37 84.35 71.76 88.02 77.08 82.96 10.22 31.02 44.04 -68.89 83.27 95.95 52.43 34.61 50.57 42.26 64.91 48.17 48.19 52.46 12.13 35.04 68.64 88.23 17.48 23.96 16.45 5.06 68.33 45.36 6.67 5.42 39.96 61.64 99.15 23.20 52.33 13.04 81.39 7.04 75.91 22.54 96.89 96.53 41.75 88.54 13.78 28.59 7.75 44.55 12.35 17.34 85.37 2.72 53.74 67.01 10.04 23.00 55.57 72.79 98.43 30.47 85.18 16.90 49.47 41.30 15.50 37.32 4.48 82.95 35.41 13.22 6.23 75.19 1.32 95.83 39.36 44.72 43.58 28.17 67.65 3.24 96.83 30.89 61.43 55.05 40.34 63.98 38.31 57.93 49.94 53.58 88.35 18.63 42.87 19.62 87.70 52.65 22.66 61.86 90.13 41.77 80.49 3.48 44.46 58.12 83.80 37.50 36.30 -64.68 33.61 69.61 70.46 11.81 21.64 12.32 80.50 27.90 55.51 73.91 65.54 19.52 84.89 20.76 86.36 0.08 8.23 0.74 85.05 61.05 12.64 73.26 47.51 69.96 81.39 20.44 46.74 90.74 62.94 85.32 91.51 59.17 88.52 98.09 39.75 3.42 79.08 26.07 17.73 90.37 98.10 97.89 48.72 58.30 48.08 4.31 73.05 2.55 65.08 55.72 17.24 29.27 37.99 70.07 46.21 91.81 8.24 69.78 33.47 69.76 35.44 20.46 3.50 98.28 93.00 66.79 8.35 83.49 60.09 93.07 56.55 88.38 77.62 99.42 28.95 90.67 34.21 57.78 37.52 7.02 35.92 39.52 60.40 82.15 44.25 29.74 25.38 59.21 77.46 26.36 23.30 36.37 9.40 3.33 12.80 81.57 45.22 4.26 26.36 -72.75 88.14 96.92 96.07 2.39 69.12 74.37 44.19 78.00 83.66 10.84 95.12 93.48 58.59 84.96 19.18 29.86 17.23 2.12 9.12 16.68 2.63 1.79 20.20 75.91 69.17 58.63 15.70 60.30 85.03 74.54 71.43 0.83 11.04 70.59 5.68 53.20 18.76 46.05 46.61 3.75 45.24 97.20 9.05 39.75 92.33 43.73 98.23 80.82 30.04 16.44 85.82 81.18 6.47 98.86 94.79 35.03 59.85 0.75 27.36 28.75 90.41 77.57 13.95 46.86 98.78 32.80 97.39 16.15 78.66 46.64 5.72 5.49 96.25 87.13 38.60 55.31 38.40 2.16 5.04 96.59 76.71 10.69 87.55 63.70 18.28 13.43 54.67 9.17 37.73 1.18 82.72 64.65 55.16 54.56 97.64 30.02 10.88 50.19 76.03 -73.34 32.35 95.96 21.02 89.01 3.93 17.08 28.72 23.43 8.86 66.10 34.38 3.69 0.56 58.04 80.52 99.99 34.92 28.35 67.78 77.37 91.15 64.26 14.71 16.85 55.34 50.16 25.59 12.40 2.85 8.48 78.32 16.74 43.84 19.26 74.09 4.48 88.50 67.32 8.72 19.73 66.50 74.42 52.34 73.66 63.90 87.20 13.50 31.71 77.16 69.96 33.15 23.80 22.13 82.58 65.92 20.35 31.21 68.36 71.15 81.15 26.23 90.92 78.40 53.29 29.54 85.66 18.28 39.45 42.66 47.74 43.13 14.58 74.31 50.04 17.84 31.10 65.66 31.43 97.73 98.13 39.15 50.01 54.54 61.25 42.13 47.32 54.52 64.76 96.66 2.17 27.98 36.31 74.83 51.31 80.29 13.81 18.43 48.54 82.02 -4.43 82.43 28.07 29.13 37.37 80.99 11.18 17.65 21.52 88.49 51.57 28.17 47.74 24.96 19.87 62.02 95.88 26.39 46.03 97.37 9.40 72.12 87.07 97.48 45.94 0.64 94.28 68.81 36.12 53.41 19.13 33.32 95.95 32.64 85.07 72.49 60.99 48.98 81.43 47.35 90.50 5.94 61.52 49.99 43.26 6.02 62.22 31.43 16.22 28.32 73.64 30.23 29.35 87.85 41.60 70.57 93.27 30.47 47.92 63.42 80.51 49.00 52.32 53.31 59.63 2.50 6.91 16.01 11.44 76.98 69.73 34.14 9.48 40.21 90.64 6.01 4.32 16.05 99.30 60.33 7.23 23.54 33.87 75.17 24.19 17.01 79.50 20.76 69.84 40.36 80.80 32.22 43.91 92.87 9.76 62.04 24.23 38.12 8.62 29.96 -22.41 63.22 35.96 61.89 59.48 8.78 67.16 23.59 84.83 88.86 79.60 71.95 67.55 80.65 80.52 44.35 18.17 42.05 90.00 63.30 78.93 75.66 66.40 84.70 91.21 85.20 12.60 47.47 59.25 82.57 88.27 76.59 11.83 70.99 2.35 65.83 69.15 25.29 61.34 9.70 29.35 14.66 41.38 56.61 63.79 0.77 84.67 47.62 97.95 78.31 24.21 41.63 90.41 12.49 56.74 57.08 3.91 48.06 64.70 27.61 71.55 75.97 30.47 95.98 52.35 13.52 90.31 6.03 59.67 13.15 29.08 85.96 16.74 22.30 29.94 0.82 45.52 83.88 83.85 37.82 42.68 89.31 29.15 4.20 22.53 81.56 87.76 85.93 76.02 48.41 87.26 35.75 41.11 70.95 28.34 96.88 22.73 78.31 61.00 80.00 -16.96 38.29 36.83 9.33 82.50 7.06 42.17 12.37 62.71 4.09 56.45 56.82 25.12 10.21 19.08 19.44 70.27 99.68 13.89 35.64 71.20 67.77 0.25 34.10 69.15 15.53 71.62 57.33 31.09 88.78 95.34 69.29 58.44 10.98 95.01 23.85 75.33 38.48 96.09 85.12 32.23 32.00 25.16 0.74 38.00 32.46 2.69 74.96 51.63 79.73 67.64 58.57 17.47 89.28 20.14 3.33 86.63 7.81 25.62 40.69 41.28 66.58 80.86 63.98 82.56 7.29 87.16 7.27 56.42 92.69 77.60 31.28 74.68 59.24 36.11 95.21 26.84 27.45 55.16 61.77 95.45 49.09 26.73 54.17 76.44 28.32 59.01 4.93 94.16 34.13 48.75 85.19 60.27 63.59 69.66 52.54 61.62 61.39 38.94 7.64 -39.17 67.66 4.38 38.47 5.13 25.80 57.23 0.48 16.60 87.96 64.87 90.42 27.56 11.78 37.27 92.50 92.11 11.21 14.65 18.50 21.88 41.74 28.41 48.23 25.82 25.12 2.82 39.93 86.41 73.32 77.63 33.34 62.11 10.00 5.75 91.24 23.90 59.14 56.67 1.49 64.91 35.64 53.95 88.42 29.39 39.45 45.29 81.56 60.57 72.09 83.13 82.88 40.99 94.14 6.42 61.42 90.70 4.78 6.25 16.90 98.29 90.58 20.66 43.33 29.72 53.37 70.70 83.00 92.88 96.27 61.04 2.40 22.78 64.40 94.80 94.23 9.30 75.33 96.59 69.97 90.39 18.43 52.85 41.25 41.66 66.08 18.06 98.44 66.89 29.43 26.55 37.57 55.58 18.39 7.57 24.61 15.95 56.12 78.39 28.52 -46.16 37.84 54.48 47.59 59.26 95.59 40.18 32.94 88.29 57.66 76.17 36.82 47.49 35.68 94.77 67.49 74.22 72.05 61.89 82.82 22.38 50.78 55.39 67.75 49.76 69.88 86.89 11.57 57.13 23.37 62.12 21.81 63.32 33.70 97.26 36.79 74.40 80.85 51.34 94.57 69.29 3.67 18.82 54.21 30.05 40.11 30.23 78.10 73.90 57.89 93.37 77.99 23.96 46.90 59.67 13.77 8.17 74.80 27.98 34.62 16.46 78.21 51.53 62.18 9.19 24.69 99.47 63.66 10.71 50.52 80.92 3.69 39.25 31.97 81.78 92.13 48.51 46.91 14.69 52.44 67.87 7.44 64.62 19.91 25.46 58.40 36.96 31.10 75.36 28.66 94.95 45.23 96.96 97.27 12.72 0.49 5.25 70.87 94.02 90.02 -9.72 59.04 58.87 66.34 15.80 53.30 5.11 14.32 91.36 16.19 58.48 16.91 97.86 16.07 65.39 15.08 82.45 52.29 95.07 34.01 33.07 86.92 99.27 71.23 46.04 93.98 71.06 85.52 0.16 55.72 7.90 15.53 44.36 11.80 46.37 19.16 85.34 49.33 83.09 48.79 0.24 99.09 79.96 28.13 74.72 93.33 10.40 58.99 54.87 32.72 97.73 29.20 89.20 30.25 41.02 7.81 95.33 25.95 69.26 77.23 45.21 21.42 95.96 44.00 20.60 86.52 90.41 54.20 74.78 50.20 75.26 96.12 94.26 58.50 13.74 95.39 76.27 72.27 6.17 61.21 39.75 92.48 25.09 5.50 29.08 40.99 83.77 10.89 8.62 7.67 30.56 19.87 81.78 28.90 84.72 47.16 30.06 84.01 1.89 43.86 -30.21 4.04 36.11 52.36 27.35 66.94 60.33 49.60 21.60 61.64 23.56 34.05 52.21 35.91 57.30 42.22 13.66 25.03 1.52 81.18 63.62 39.29 30.48 28.94 7.06 93.36 81.07 10.40 7.74 0.93 71.28 8.99 23.82 38.47 99.17 40.18 77.61 61.83 79.71 88.50 40.71 98.22 44.24 56.28 55.72 23.34 91.13 35.73 94.67 0.60 2.34 87.03 59.55 70.00 82.02 71.91 24.84 47.42 15.11 87.08 71.86 34.95 60.63 27.18 46.96 15.15 94.39 1.31 87.54 14.72 56.54 40.05 19.55 22.79 0.11 43.75 61.82 68.95 95.80 31.06 36.22 80.71 4.76 87.52 29.75 13.63 96.87 93.18 34.41 61.65 48.38 26.76 56.52 19.94 11.23 37.22 75.70 64.65 50.64 13.07 -50.79 96.26 17.18 34.41 6.18 33.83 31.84 16.50 77.92 92.19 39.86 71.10 35.14 6.00 90.76 9.69 41.14 70.80 31.46 39.19 77.69 0.47 69.94 58.15 30.72 48.03 97.04 90.62 93.76 4.58 8.86 88.29 55.48 97.35 9.03 95.74 72.86 34.98 26.37 38.44 83.66 55.48 91.65 22.17 62.17 30.06 38.75 20.10 32.31 94.89 40.06 99.87 7.17 26.20 99.18 68.39 53.94 30.86 88.41 52.68 28.32 4.40 71.10 50.74 46.44 14.52 99.57 9.51 85.65 42.86 47.94 37.91 55.30 66.34 4.85 48.78 66.88 44.55 2.98 27.49 34.72 65.21 61.73 22.95 69.06 26.28 35.68 81.12 81.31 4.84 48.14 43.61 95.59 38.56 21.47 54.72 89.28 80.36 28.75 93.43 -55.05 33.45 77.86 58.98 31.95 78.11 18.70 17.40 60.61 18.77 6.98 97.93 4.28 84.07 22.32 14.67 23.21 12.86 54.91 66.55 1.39 87.48 34.00 91.07 4.34 87.32 59.89 82.63 92.95 55.20 49.70 3.63 59.20 83.42 78.54 93.50 47.22 99.97 30.34 8.59 52.47 59.40 5.75 97.20 34.72 89.31 41.34 14.82 23.58 5.75 93.63 66.38 73.68 89.13 47.37 74.08 19.93 40.95 60.95 41.54 54.47 64.66 41.62 17.07 74.28 83.48 69.14 30.93 36.55 66.60 34.20 31.03 33.02 61.66 83.80 38.63 96.89 36.08 57.42 3.22 9.37 94.33 5.08 22.67 8.37 69.93 51.34 87.54 12.81 41.74 21.04 31.15 85.08 96.96 73.73 68.44 23.43 0.27 73.55 10.10 -60.54 87.48 49.21 77.75 28.37 62.99 54.59 18.00 52.75 10.27 95.24 91.20 65.90 91.73 9.78 72.75 78.05 93.41 50.66 56.74 90.15 90.96 55.88 48.07 62.93 69.95 16.19 74.89 12.15 9.15 29.14 17.80 65.67 45.11 78.29 44.38 75.28 33.26 61.58 39.88 84.23 23.31 0.61 33.03 89.38 28.32 87.45 36.71 59.73 37.34 19.50 48.89 32.56 87.13 40.42 66.34 62.30 4.20 13.70 49.10 14.47 18.94 9.48 53.04 69.91 28.61 17.74 29.77 82.14 39.99 4.91 53.12 87.69 12.47 70.83 41.20 9.44 49.44 32.21 49.07 82.95 30.44 91.81 32.51 99.15 75.02 70.91 18.75 32.46 44.22 70.24 93.82 94.57 7.99 21.65 28.08 82.07 56.68 4.99 78.14 -14.65 19.01 17.85 97.19 53.11 8.09 54.82 7.36 36.04 58.90 71.35 68.66 86.31 49.10 99.69 61.02 35.63 29.28 24.74 71.00 47.92 72.41 72.56 30.40 12.79 6.69 45.70 53.85 63.56 22.28 74.95 2.32 21.62 21.56 83.30 6.70 5.55 22.47 62.31 9.48 95.37 96.61 23.15 85.05 24.64 50.84 19.96 36.13 12.58 44.10 85.07 31.99 47.58 57.23 15.26 96.09 45.95 33.29 14.33 73.70 37.20 62.90 71.47 86.26 65.78 2.93 36.05 0.39 77.66 78.81 24.85 97.96 39.28 37.60 3.65 16.71 26.05 56.25 49.65 97.20 60.99 13.41 30.66 23.31 78.41 40.13 66.14 67.75 46.72 53.75 46.62 57.89 75.91 19.72 17.93 27.87 26.33 66.64 87.20 57.23 -59.36 0.48 54.69 72.11 24.93 52.99 45.30 99.46 49.42 10.18 54.08 84.99 98.53 78.02 68.55 63.62 38.90 59.42 6.23 28.57 34.79 99.94 29.75 72.16 7.85 28.78 47.32 54.60 61.61 86.03 17.83 37.72 71.78 45.89 66.08 44.47 75.84 76.69 87.41 18.06 3.64 19.10 21.51 13.57 71.62 46.99 54.12 52.48 32.07 38.24 91.86 40.42 60.68 85.20 75.67 3.19 79.98 52.23 78.03 97.16 6.14 72.13 29.49 56.63 57.80 90.74 32.02 25.18 39.37 13.98 59.66 23.22 78.69 9.97 57.23 50.05 23.71 36.62 24.38 82.62 19.71 82.13 45.13 11.33 48.34 73.96 21.47 85.60 40.26 39.17 92.65 22.44 43.77 97.86 31.68 8.53 43.12 11.62 50.41 32.17 -20.57 42.74 7.24 83.79 97.39 57.99 55.64 0.62 33.56 24.28 28.12 78.04 65.86 60.15 63.71 76.55 75.73 62.80 39.56 1.15 73.24 58.61 72.52 87.68 25.27 34.07 40.13 83.35 31.29 88.93 2.81 30.07 63.06 89.29 1.25 4.56 52.85 79.77 2.07 80.30 13.54 60.72 72.88 99.77 57.66 28.65 78.70 67.99 11.62 22.19 28.94 50.97 27.07 45.70 88.01 62.01 95.31 46.11 83.99 30.34 89.82 56.81 93.28 76.41 38.10 1.81 88.56 79.15 35.48 86.23 65.15 52.33 98.71 57.21 25.33 40.08 17.16 35.84 62.21 60.74 42.41 49.00 32.47 30.98 89.58 74.96 70.44 83.82 37.27 39.86 36.80 56.65 49.29 57.37 34.42 68.69 52.44 81.99 74.75 9.89 -49.24 48.69 46.46 76.70 56.66 51.86 47.03 62.77 50.49 16.31 63.84 75.70 1.90 25.97 63.60 62.88 90.77 94.76 4.64 30.86 58.56 11.20 23.71 82.82 19.66 91.27 31.12 43.37 59.63 48.32 41.61 44.15 68.67 67.56 77.35 36.00 78.28 19.64 64.91 76.85 97.69 70.08 44.29 18.47 44.05 88.11 65.52 56.78 31.64 90.19 92.87 8.07 79.84 17.34 18.65 44.60 28.77 65.99 40.89 52.37 50.24 79.02 78.17 5.66 97.13 52.90 50.37 10.25 69.88 68.37 34.56 61.63 57.69 41.34 57.98 93.66 78.37 53.31 82.23 17.41 53.56 80.80 21.38 39.17 47.28 49.65 70.03 62.84 26.00 92.20 81.22 52.92 21.05 96.26 41.77 90.25 74.88 81.84 92.15 19.22 -80.31 3.05 14.85 22.11 55.74 23.20 77.23 24.16 8.62 23.48 76.60 2.01 41.53 8.80 43.54 48.04 67.50 50.81 83.86 79.86 16.92 15.82 25.00 82.91 68.82 0.71 42.34 88.68 84.87 69.77 49.24 22.72 45.71 98.38 13.98 16.84 9.55 47.60 9.38 60.36 33.09 36.97 50.64 80.43 86.67 23.27 5.32 32.31 63.69 92.29 55.91 97.10 27.42 84.25 68.14 58.18 50.06 79.76 75.23 34.90 83.11 71.93 0.29 71.01 31.80 47.98 98.07 61.32 53.81 71.86 90.45 34.10 43.25 55.29 22.19 6.43 68.98 74.29 86.22 74.48 64.75 91.93 90.64 43.49 37.28 0.18 20.71 9.68 24.83 4.72 11.78 83.17 34.68 25.58 17.58 50.90 29.59 43.49 95.23 15.36 -77.96 8.68 15.02 48.41 32.54 22.51 28.22 18.42 42.70 46.72 86.23 25.79 92.95 40.49 75.18 54.08 42.69 79.06 92.84 84.28 19.12 81.72 37.19 3.28 92.28 22.18 5.65 58.21 59.25 74.81 87.10 59.08 44.93 84.19 12.20 95.26 55.78 14.08 5.24 9.89 29.72 81.25 7.36 22.65 41.05 98.30 29.13 3.68 30.12 22.92 33.43 14.54 66.53 54.15 30.55 69.63 92.39 90.93 90.22 12.87 57.04 91.29 32.30 75.62 35.02 62.06 77.93 29.07 55.36 61.46 81.78 74.22 96.82 59.57 15.81 19.08 56.36 99.73 10.60 76.85 95.60 14.20 37.33 8.46 83.27 20.25 80.23 90.50 13.84 9.83 47.64 65.93 93.21 78.48 97.35 99.27 96.89 15.98 35.04 78.88 -95.69 79.87 62.56 26.72 38.63 22.04 56.75 28.19 60.87 72.31 39.09 17.01 57.35 38.08 18.29 0.61 50.58 62.04 16.23 25.99 79.97 23.77 19.64 26.32 35.80 6.45 25.25 44.21 98.42 91.40 7.15 19.83 60.17 60.16 73.15 79.03 37.02 55.45 37.29 87.23 95.36 40.92 37.73 84.70 3.95 6.17 85.61 29.28 78.33 26.84 95.59 20.06 22.19 40.30 85.84 73.03 59.65 97.14 3.02 66.64 73.44 87.90 31.84 76.87 56.43 58.94 17.21 25.49 13.36 83.67 61.48 75.53 66.03 13.16 54.32 61.04 31.54 25.64 30.87 8.06 23.34 22.23 20.53 68.21 92.59 13.82 32.63 36.67 4.27 48.78 85.57 12.15 90.70 16.77 65.73 83.41 47.35 1.09 3.39 43.59 -86.18 70.05 75.59 38.07 92.53 48.03 5.74 12.84 71.72 47.15 96.39 87.56 52.78 52.18 58.52 95.45 47.36 17.13 71.41 59.18 71.30 62.70 33.26 43.04 15.53 27.12 44.24 25.80 70.20 46.25 48.39 89.84 87.01 69.75 60.40 27.85 76.40 37.19 65.42 57.16 48.77 8.23 38.31 93.84 87.71 46.48 28.23 69.37 23.34 53.54 19.91 98.48 31.49 37.64 12.37 21.98 6.64 13.57 46.63 76.43 77.51 45.57 34.25 63.85 19.70 41.89 71.91 64.87 17.50 39.50 14.67 34.46 7.69 27.63 84.33 12.60 98.02 33.30 0.67 6.83 76.69 72.01 51.40 86.64 73.42 39.20 20.64 71.07 61.99 31.40 32.71 12.20 19.21 61.83 99.64 32.84 86.84 13.36 51.37 62.19 -24.26 59.78 8.68 4.30 94.45 57.19 98.65 51.97 0.29 68.00 55.65 64.29 25.05 53.46 79.41 69.63 91.74 60.52 60.21 55.03 65.56 44.78 83.69 54.29 64.32 56.40 44.21 68.92 31.99 34.13 33.89 19.78 81.66 21.90 28.02 29.79 59.18 78.60 79.70 19.47 52.51 80.05 70.39 91.68 41.94 71.75 80.72 52.32 77.26 20.94 37.20 8.44 71.72 22.51 57.28 5.92 44.61 71.16 37.66 69.32 14.47 79.16 98.17 81.51 74.15 99.14 9.02 10.01 24.77 41.56 23.98 27.59 69.65 70.24 82.24 27.03 43.86 21.44 53.18 71.64 64.87 57.68 74.60 89.23 25.95 86.01 24.71 94.75 32.43 36.78 55.01 55.71 12.11 5.41 83.21 65.53 19.09 6.91 83.16 94.69 -56.35 49.09 30.24 57.28 51.39 8.68 44.80 97.42 9.62 79.54 39.71 62.36 66.87 23.91 35.56 99.17 61.35 94.70 25.58 97.49 17.34 94.01 40.44 37.93 46.48 86.16 0.95 98.98 91.42 88.65 67.37 4.39 35.84 98.56 45.89 29.21 76.27 71.30 84.67 57.00 25.51 47.14 79.80 4.25 33.85 71.33 93.66 28.00 46.09 98.13 25.09 28.93 67.20 21.13 55.24 55.80 93.72 35.13 79.20 30.05 58.72 16.35 10.88 56.61 7.96 1.67 46.05 93.43 64.12 61.31 13.99 83.60 75.51 51.68 25.42 62.53 44.20 92.37 27.34 77.53 25.75 2.50 78.53 59.70 41.38 68.32 6.70 58.68 48.56 78.66 67.20 97.83 74.81 88.09 19.23 77.81 18.55 86.37 21.90 72.01 -7.21 70.34 74.78 24.38 94.43 11.30 28.45 92.23 98.60 17.57 82.23 93.19 53.04 56.28 24.69 49.15 90.88 86.11 34.22 93.09 37.93 51.06 53.58 70.02 22.68 17.79 52.53 6.25 45.86 88.85 90.80 0.98 36.77 72.02 2.61 63.31 51.63 31.53 6.65 96.43 61.75 5.20 63.30 66.48 54.95 28.08 35.69 72.25 30.59 87.90 46.37 50.12 35.71 6.48 10.81 53.73 84.32 6.13 83.10 11.36 62.74 82.17 41.90 50.98 5.90 98.64 78.56 84.46 68.01 0.97 26.97 88.17 95.16 22.41 17.30 3.99 93.18 76.51 6.29 36.58 89.71 67.61 34.16 84.44 32.81 36.08 4.96 50.95 83.45 83.57 58.65 33.74 42.47 68.44 8.86 8.66 1.25 79.00 52.41 20.70 -55.22 9.91 59.00 93.12 82.96 91.49 19.38 2.82 58.51 67.44 0.68 36.08 98.52 67.03 14.32 63.19 13.51 13.52 90.02 80.07 84.02 79.22 38.27 26.93 80.67 59.93 58.72 72.34 15.60 65.74 20.25 6.86 68.45 61.60 77.24 56.49 39.13 56.51 96.27 77.55 63.78 8.86 1.92 94.88 5.89 27.18 79.88 3.79 63.18 78.40 82.41 82.94 85.41 6.75 38.91 1.83 37.79 96.96 55.00 77.49 38.39 42.25 6.35 45.14 79.34 59.02 15.79 63.32 22.17 45.70 31.47 25.15 80.26 49.63 73.43 62.55 21.06 4.50 85.11 89.52 99.11 72.98 68.23 74.32 13.57 72.24 1.32 58.18 36.51 66.93 42.82 59.44 15.45 43.59 79.77 52.04 23.86 47.34 89.10 96.25 -53.06 12.41 44.19 20.94 26.20 7.99 28.05 16.99 92.34 92.49 48.00 60.78 47.07 60.17 76.96 32.50 82.30 76.87 23.84 16.93 25.04 98.39 99.61 48.88 93.92 48.33 20.52 22.84 47.31 68.24 60.60 60.79 9.77 12.36 27.42 61.83 16.52 88.18 89.22 73.96 56.28 50.09 94.92 93.33 23.63 77.89 54.98 8.44 46.66 78.20 27.68 91.06 13.28 31.83 93.93 45.68 84.07 50.88 6.05 22.34 67.68 88.34 35.52 62.77 17.86 5.88 51.07 24.60 45.44 59.81 51.01 45.49 54.73 58.28 75.67 96.98 54.84 38.51 64.92 41.18 32.34 64.10 26.81 50.29 57.97 23.10 20.02 33.15 43.47 74.98 62.94 32.36 75.91 0.53 50.06 26.31 11.86 92.47 45.54 87.27 -18.36 65.36 34.29 27.07 51.13 44.14 33.51 83.49 95.99 67.31 57.02 24.56 27.87 49.79 30.45 84.47 35.38 94.80 1.96 14.64 20.17 2.95 7.61 77.72 64.98 54.43 68.36 36.16 9.53 11.13 22.70 99.05 76.45 31.03 74.50 82.83 10.37 0.77 70.05 3.12 48.40 5.81 48.27 71.83 19.88 10.61 21.77 48.97 63.96 13.04 96.82 95.87 49.05 67.90 17.54 71.58 71.70 98.22 19.39 40.24 89.21 98.09 75.86 74.57 22.69 10.45 49.39 87.98 53.13 57.97 63.36 51.60 4.61 73.10 69.41 32.11 96.75 50.67 83.90 67.82 68.58 8.79 78.41 62.31 52.73 38.55 35.16 82.96 45.97 23.68 80.34 96.37 16.43 62.91 80.33 13.39 98.79 54.79 37.62 61.38 -58.77 62.71 31.61 24.95 70.04 39.44 8.74 71.14 7.61 19.85 6.23 10.17 64.49 91.65 29.21 71.98 92.32 80.68 80.72 89.28 92.40 84.81 49.58 70.02 94.79 89.88 3.05 77.79 21.71 14.47 18.43 18.89 40.06 88.86 6.28 5.83 10.60 35.61 97.53 75.75 46.72 32.63 12.58 79.56 38.82 94.47 22.55 96.65 62.77 77.99 12.01 75.89 90.39 4.53 84.67 44.23 88.04 34.97 60.18 2.87 70.99 27.59 69.55 81.82 51.46 48.40 2.98 26.27 89.70 10.20 56.67 7.94 88.46 80.99 78.10 18.43 16.15 70.11 26.47 44.81 8.81 63.88 64.29 40.67 98.58 96.68 65.48 64.50 82.41 60.51 28.57 59.54 7.72 31.45 70.95 75.55 34.38 29.70 2.19 20.30 -74.40 46.09 13.09 78.89 49.61 6.89 93.80 37.01 88.50 53.58 55.09 67.17 56.06 4.87 39.94 43.99 60.62 58.08 0.01 44.97 54.36 94.80 78.00 47.94 85.18 72.14 76.20 69.61 4.40 60.96 18.26 30.07 8.26 37.73 83.28 94.83 41.55 97.62 29.15 63.50 27.67 31.81 96.39 55.44 6.60 40.99 76.72 92.88 88.15 42.98 45.28 16.97 44.17 84.17 30.34 34.11 85.81 28.06 86.70 16.36 80.28 48.91 25.95 33.69 29.76 73.93 54.80 68.43 50.79 45.19 69.05 99.71 74.25 0.67 39.99 62.71 24.91 74.62 78.70 62.72 59.41 38.17 10.92 11.46 95.67 16.79 98.14 88.14 69.89 76.66 18.50 64.05 55.54 85.18 81.49 81.15 21.21 57.85 37.65 2.21 -24.26 74.47 36.00 23.64 81.28 7.62 90.92 44.63 98.44 90.31 28.18 63.15 46.22 60.65 16.84 24.32 75.72 35.59 65.18 85.42 78.56 54.00 88.28 58.38 25.75 37.24 40.95 24.41 35.79 68.35 39.26 79.13 5.60 32.39 91.39 70.64 89.67 63.57 42.85 3.56 92.01 67.93 16.63 27.37 30.33 64.44 98.56 7.73 51.21 27.08 23.63 18.13 45.29 51.59 62.48 3.01 40.16 8.30 92.37 15.06 40.07 58.30 19.11 33.48 26.99 51.00 80.62 11.35 21.49 76.79 74.22 9.17 83.12 71.03 83.76 21.31 29.15 69.58 30.30 62.35 62.67 44.81 14.19 25.72 14.24 62.01 28.32 81.93 33.60 76.52 79.64 43.69 46.32 73.93 10.56 11.24 12.12 85.63 83.39 15.30 -52.89 0.67 38.93 10.85 73.09 19.54 23.70 86.90 13.83 35.31 69.93 26.32 76.30 66.52 31.89 26.13 63.89 90.23 81.97 52.40 70.23 32.29 60.57 57.07 45.79 18.78 0.74 92.07 49.69 94.61 51.54 5.83 36.00 5.79 51.86 37.48 45.81 13.88 17.98 70.48 90.47 15.35 71.98 0.60 61.81 67.85 94.35 24.63 80.50 88.92 86.30 53.25 56.31 55.22 79.71 17.97 66.31 7.94 3.84 20.75 42.11 21.91 15.72 95.10 74.56 51.27 77.99 20.79 18.44 8.46 36.83 35.91 83.10 38.64 23.06 68.40 75.96 21.22 33.13 26.88 37.04 93.46 44.51 7.92 11.06 53.51 96.54 59.77 63.69 39.38 32.48 53.87 29.76 58.47 93.13 26.87 36.80 92.06 88.67 58.78 -89.01 65.49 1.51 19.00 47.83 31.67 34.71 11.78 62.01 2.95 75.12 63.19 23.64 17.10 94.88 80.18 68.48 89.33 4.46 63.28 42.49 37.24 5.75 50.79 16.91 21.81 84.96 20.48 34.03 47.77 76.37 82.38 40.11 79.38 36.86 92.51 94.58 30.82 86.95 21.67 30.87 58.19 31.23 60.36 81.58 8.96 27.70 98.55 3.32 9.30 9.84 17.79 72.86 29.77 25.50 85.40 62.55 6.02 4.00 4.99 44.81 30.04 15.72 9.70 35.80 37.16 47.51 90.80 45.70 3.79 47.77 49.41 46.72 65.75 99.72 46.14 85.26 91.74 70.43 80.96 66.03 16.09 52.64 12.66 89.47 85.39 29.76 1.67 63.56 61.60 49.45 41.26 19.10 41.61 39.86 31.57 40.07 90.85 62.80 26.67 -80.00 77.62 0.31 52.93 69.71 28.94 71.50 37.21 20.53 66.45 83.34 5.55 28.34 17.76 10.27 44.20 27.15 59.39 57.10 2.78 50.20 52.02 67.83 78.31 1.51 85.12 30.42 21.78 31.61 50.69 10.37 16.66 21.63 1.02 3.86 10.45 48.34 44.25 83.35 15.43 17.87 96.30 14.48 77.09 70.88 39.19 34.20 50.62 7.64 12.50 81.15 9.74 66.09 90.52 84.39 55.60 99.42 24.56 27.52 28.18 1.34 49.91 7.72 34.74 30.50 31.55 38.47 63.14 69.00 83.60 25.68 54.61 67.32 19.77 81.66 60.22 93.88 11.23 38.95 46.66 86.34 38.54 15.51 33.51 76.43 39.37 82.68 67.08 16.45 86.64 84.90 3.12 96.69 8.24 5.96 71.10 9.21 76.68 15.27 20.09 -98.71 82.56 3.73 90.20 68.12 54.58 50.94 53.50 80.46 91.03 58.21 4.11 25.10 37.48 73.51 63.65 40.10 32.33 32.83 26.84 69.95 24.65 68.40 12.95 17.90 16.74 44.93 68.00 5.82 11.87 13.47 18.06 18.96 40.96 15.21 22.43 88.27 46.25 31.69 29.44 54.90 29.67 26.34 56.85 92.77 86.21 4.78 32.69 36.23 53.69 74.80 29.15 16.25 90.55 12.63 94.98 81.56 71.59 8.03 69.07 77.50 88.96 52.31 73.49 33.48 36.78 96.13 6.50 72.65 32.70 26.93 66.64 41.69 94.30 3.47 92.28 26.49 43.54 70.41 50.95 61.46 35.53 45.27 6.87 0.27 56.69 10.75 19.28 94.20 41.05 45.57 67.46 48.71 32.16 44.26 84.56 21.06 54.76 93.03 95.13 -59.55 87.46 52.33 91.18 70.49 91.33 48.16 24.16 43.58 30.48 24.92 55.22 15.28 54.79 37.80 26.56 81.70 12.21 69.20 3.79 24.34 44.99 67.14 35.97 84.17 75.28 46.54 13.41 59.82 89.25 16.64 76.08 74.64 76.63 84.49 82.01 24.64 83.35 60.56 62.92 0.56 26.75 63.26 60.04 98.82 71.06 70.38 66.68 85.02 76.84 69.18 8.62 24.33 54.32 10.49 67.95 9.54 74.38 75.36 57.78 12.29 49.32 77.23 80.20 48.66 75.50 79.42 70.71 78.54 36.69 45.81 50.69 68.44 21.76 38.05 64.93 39.08 88.37 68.83 77.96 68.68 64.35 52.22 7.12 93.85 97.57 15.38 95.38 60.77 21.01 64.32 85.35 37.58 22.99 99.38 30.34 94.45 75.80 14.47 8.04 -30.01 15.59 36.31 32.16 25.76 92.10 55.00 65.90 4.36 51.63 4.69 22.42 37.09 85.32 80.38 56.75 17.53 97.26 47.87 60.07 72.18 24.80 78.21 61.50 27.91 30.92 27.68 7.72 3.33 60.15 31.20 30.76 18.32 80.42 46.93 76.80 25.72 37.06 98.23 43.71 59.75 87.26 75.48 50.01 82.63 56.05 5.24 22.37 75.31 2.72 68.28 61.66 37.78 52.18 47.69 44.56 16.61 81.89 34.69 84.12 97.73 39.80 1.74 92.67 11.67 72.65 19.54 82.70 37.69 14.69 67.63 14.08 4.43 61.14 45.98 53.03 83.16 23.05 49.36 0.83 49.74 38.16 67.73 23.27 82.63 13.96 84.86 58.03 34.27 98.76 47.77 69.82 7.99 58.22 85.84 65.54 97.70 99.00 38.80 71.60 -33.68 45.63 60.10 31.47 77.52 92.40 75.70 77.83 0.11 5.90 36.01 48.98 87.06 44.67 11.17 88.27 38.76 72.01 78.51 45.31 3.81 98.62 95.01 60.62 98.05 34.15 32.92 11.19 60.34 20.67 29.03 66.87 57.93 2.15 28.76 55.59 7.47 72.71 29.97 15.68 18.44 99.30 67.11 22.42 35.62 42.28 91.40 93.59 19.36 92.65 6.82 94.73 75.65 13.83 61.34 43.79 50.81 76.58 62.14 17.58 66.08 49.75 47.53 68.73 63.27 9.23 19.43 67.63 62.55 19.99 85.75 56.65 43.67 41.16 68.75 92.26 83.73 17.83 96.44 43.19 42.06 85.01 47.24 87.71 27.00 0.61 20.70 67.49 75.52 3.39 48.60 39.09 27.41 54.76 18.39 19.08 41.34 7.13 31.49 5.74 -32.82 58.90 13.52 76.86 65.90 89.77 30.43 33.88 30.63 28.05 92.16 8.14 50.10 32.71 47.15 26.03 87.52 79.84 24.65 31.42 35.57 60.54 16.03 72.57 57.42 37.35 9.80 74.66 51.68 7.93 62.78 72.28 57.50 24.71 56.12 6.89 11.24 5.81 34.03 57.99 33.89 78.07 22.67 24.78 90.40 26.12 91.67 93.76 85.31 40.58 54.11 31.47 2.26 19.91 53.42 84.51 36.23 86.19 10.06 31.42 90.39 1.17 59.50 13.17 17.64 84.10 44.91 52.79 5.88 78.97 8.33 64.60 16.51 60.07 80.76 82.99 95.98 49.85 97.59 48.77 51.44 39.51 38.12 11.31 75.84 47.25 69.76 53.64 82.69 17.27 60.75 6.74 7.98 21.61 86.51 47.65 14.65 21.76 35.60 46.00 -43.00 96.40 95.67 63.80 0.86 30.06 97.41 73.94 66.65 51.99 49.62 39.39 65.37 3.00 7.66 18.54 37.58 25.54 68.49 28.16 49.38 49.68 5.96 48.42 87.85 82.32 90.75 46.10 23.69 94.46 70.11 56.19 51.08 56.25 33.25 45.67 17.55 79.36 53.60 89.76 2.38 34.75 39.34 84.11 99.99 25.52 50.29 45.05 30.26 62.53 34.52 15.23 91.45 42.80 74.78 53.96 98.86 14.88 66.64 44.35 16.12 75.84 59.33 80.38 16.83 55.42 30.71 2.23 33.20 75.81 52.68 28.91 9.96 18.31 30.55 49.16 44.50 88.22 11.02 31.77 71.93 46.12 61.88 8.62 19.41 56.89 83.52 87.83 25.98 95.52 36.07 59.65 15.40 80.82 53.41 77.33 28.02 59.98 86.36 74.88 -20.51 14.94 78.08 56.93 88.88 19.28 11.42 58.13 50.87 78.29 94.43 1.26 23.49 67.97 23.64 68.00 48.80 35.61 40.66 46.39 0.28 90.87 19.60 23.41 54.26 9.82 10.57 16.71 54.48 1.88 53.64 38.34 18.48 0.37 63.95 21.99 93.54 77.69 66.25 71.81 64.06 66.43 72.61 95.11 11.95 57.25 61.81 36.62 17.45 64.66 78.08 3.62 44.19 93.72 60.73 63.23 86.59 95.37 59.56 52.76 91.20 39.04 88.43 74.57 76.24 87.54 11.05 34.63 29.31 4.30 1.96 66.60 35.80 62.66 91.05 99.64 1.64 32.87 57.68 50.50 76.91 15.91 29.36 14.60 58.07 58.79 50.86 36.65 67.00 77.42 58.44 53.99 8.30 8.83 7.37 49.45 52.79 98.27 88.37 33.92 -44.01 32.55 61.88 53.05 18.56 40.62 88.14 68.88 20.72 64.30 13.06 45.05 87.73 62.25 6.40 28.72 70.77 53.27 49.84 9.88 20.50 54.46 29.21 94.87 96.76 71.42 82.17 79.03 7.70 48.21 21.92 97.95 65.44 49.83 55.78 11.58 16.13 10.97 57.18 72.76 62.04 45.42 31.13 22.70 77.82 90.33 69.74 43.22 64.54 23.60 84.64 49.26 59.30 4.40 73.14 9.95 15.42 27.68 55.01 70.15 31.89 14.25 64.38 92.00 78.44 63.67 94.55 76.34 89.75 45.72 16.65 61.12 59.54 64.17 87.43 38.31 35.06 62.12 28.46 16.63 23.89 88.78 33.96 51.15 82.03 79.59 99.55 28.40 96.50 54.67 54.23 12.39 17.00 17.14 32.89 2.93 77.36 8.16 17.72 28.34 -19.61 18.83 73.05 98.69 21.83 12.13 70.64 93.74 45.61 81.79 49.36 28.29 2.62 50.99 70.21 88.47 40.12 73.10 33.95 24.18 39.43 48.70 99.49 98.00 32.14 83.08 97.58 17.75 19.11 13.54 18.73 24.73 66.80 36.42 16.93 76.75 33.77 26.51 0.13 99.69 91.06 52.85 19.01 40.75 19.70 38.92 31.03 84.53 70.46 30.02 63.52 40.87 10.81 63.51 30.96 15.89 44.92 90.47 69.25 17.73 89.05 23.90 95.32 9.24 32.59 11.81 42.64 61.05 90.82 43.45 67.12 97.60 64.11 80.00 48.71 95.47 74.15 52.73 87.19 28.15 37.08 62.80 14.40 18.45 20.19 27.85 56.78 34.81 99.27 93.62 8.78 6.58 17.36 17.02 10.98 51.49 58.69 34.38 83.07 96.47 -43.67 17.93 10.94 64.17 15.97 34.37 7.70 33.90 34.40 42.59 68.54 25.31 95.91 32.39 42.54 67.60 95.85 45.93 1.16 11.77 92.37 89.92 5.96 21.00 22.60 17.15 7.66 88.53 11.12 91.92 9.87 49.48 99.71 34.33 54.14 49.51 74.31 77.82 60.87 28.37 8.79 6.51 96.00 41.64 96.72 58.38 38.36 54.87 72.52 99.53 27.89 34.49 88.24 97.03 85.00 59.74 80.54 43.59 65.82 5.86 60.34 7.32 23.22 58.85 94.33 43.73 57.59 78.95 17.74 36.15 97.24 43.77 95.81 41.65 63.58 36.34 1.08 6.86 35.16 95.86 8.34 83.66 89.68 71.35 27.65 3.82 45.86 32.81 92.29 91.68 29.43 22.90 61.90 70.38 89.07 24.74 70.40 82.86 3.73 83.96 -10.31 64.96 18.87 60.43 53.11 22.61 87.41 83.59 31.61 89.51 37.36 68.20 6.86 35.46 76.88 48.23 32.79 1.12 33.10 47.01 40.25 0.19 12.09 23.53 10.77 74.78 42.25 75.30 25.31 84.19 82.89 10.15 85.23 90.80 66.93 15.90 23.08 41.62 71.41 77.56 98.42 50.94 14.20 25.32 84.68 62.59 95.28 61.99 26.45 57.51 93.58 10.73 29.77 96.94 35.95 25.76 98.02 15.29 10.53 28.47 5.21 79.52 44.37 43.94 91.91 3.49 10.42 60.02 31.01 93.89 82.80 39.51 53.57 18.54 86.82 85.12 35.62 65.50 27.83 13.95 11.77 17.04 7.32 98.24 62.16 73.12 82.20 30.66 92.61 27.63 18.69 64.07 90.29 80.72 59.09 70.10 36.85 74.44 4.49 7.25 -23.33 83.25 42.15 33.60 18.90 61.14 95.85 33.28 11.05 3.25 6.37 72.71 46.66 41.97 50.94 33.17 43.65 26.35 45.95 24.51 63.27 57.98 24.44 33.99 73.32 68.41 85.20 16.07 44.76 52.58 32.95 71.05 34.63 99.54 22.27 99.75 21.81 92.72 97.77 14.19 96.09 71.26 95.54 12.14 12.94 99.04 47.55 7.94 93.29 58.62 72.82 25.76 64.22 14.47 13.29 18.34 73.16 43.66 1.62 3.37 42.32 5.07 24.14 33.94 85.16 3.97 4.87 60.94 18.95 58.90 37.01 5.14 55.51 19.86 12.07 47.54 91.69 35.42 28.58 70.74 74.01 56.63 25.40 52.94 61.42 30.45 28.85 43.87 58.18 6.31 23.27 52.13 66.41 80.06 88.68 14.82 18.64 55.77 74.86 83.67 -56.34 90.05 2.13 30.38 54.53 95.88 13.04 85.87 14.22 33.69 4.50 8.27 34.75 35.13 98.20 90.43 20.18 18.60 37.67 29.73 80.79 77.51 53.44 67.67 90.24 52.82 56.07 75.89 68.61 85.68 63.20 6.58 53.15 7.68 49.57 19.08 58.20 25.39 26.74 89.59 50.86 73.97 79.41 76.22 69.10 48.96 38.86 5.25 43.24 49.76 91.72 39.26 34.02 94.02 21.62 57.94 0.16 75.02 67.41 30.48 35.72 80.98 21.88 1.98 18.24 50.94 8.24 39.65 40.00 54.55 64.33 49.61 88.72 96.92 92.25 61.32 18.96 4.09 61.00 58.96 35.15 87.42 26.67 17.52 45.60 87.53 26.18 88.92 74.09 37.47 10.27 30.52 44.06 68.80 60.09 23.13 81.86 73.28 24.43 5.81 -30.30 73.78 45.99 82.86 62.66 62.13 83.85 41.53 46.19 28.86 52.65 67.43 99.54 42.47 10.35 32.92 38.47 77.66 29.35 99.64 25.74 52.86 92.10 78.54 8.65 81.64 4.67 35.41 80.35 60.54 99.08 97.13 45.43 10.84 49.74 72.58 18.96 99.11 10.86 91.64 28.48 98.74 14.86 51.74 51.54 42.56 19.85 44.39 83.04 19.35 38.38 25.27 59.60 57.56 78.21 44.14 30.31 55.39 56.37 49.94 32.82 55.52 5.19 63.96 73.59 14.19 11.51 2.50 43.08 21.96 7.65 92.58 73.82 7.78 89.82 19.25 97.85 27.21 83.13 42.10 68.73 52.54 83.49 74.63 74.01 86.30 80.92 70.57 11.19 78.98 88.77 50.95 66.19 64.53 69.14 95.04 59.77 73.02 80.26 35.69 -77.28 20.73 94.57 5.20 2.12 7.42 77.13 44.26 27.00 40.22 71.91 1.41 44.84 25.64 33.25 5.61 30.24 96.40 36.01 48.56 18.75 59.48 57.79 22.13 88.67 99.07 61.89 64.42 56.30 89.75 29.93 88.37 1.75 93.47 18.75 24.99 44.82 71.56 84.03 25.68 27.44 28.53 21.57 67.94 27.38 50.24 84.21 98.28 40.71 13.64 56.38 28.68 64.31 11.55 45.74 27.80 47.80 42.01 84.31 79.81 11.28 63.90 34.71 10.01 69.55 48.58 47.01 68.46 98.98 16.51 73.85 5.62 53.56 38.83 64.30 69.82 72.53 89.83 65.06 38.48 66.39 27.16 93.35 10.33 48.21 25.45 33.13 6.05 20.63 72.11 38.32 81.18 62.67 91.40 94.81 26.46 59.27 43.34 92.35 68.42 -58.95 85.91 21.59 61.70 89.49 23.86 31.87 72.39 19.27 23.66 65.95 31.36 20.57 58.89 75.94 21.83 26.47 4.96 94.07 92.33 6.44 67.08 11.35 2.83 79.84 13.79 2.88 61.49 32.56 79.69 73.69 69.36 52.69 20.63 28.42 45.33 47.63 32.80 78.29 88.96 40.73 42.26 98.56 97.54 53.67 0.14 12.63 77.15 7.48 97.88 12.60 61.89 30.24 5.71 97.05 29.25 29.53 98.45 26.04 48.29 35.33 12.75 16.25 95.96 89.13 34.46 49.76 34.86 36.74 14.20 26.45 74.25 67.59 77.12 28.10 52.75 30.87 71.91 85.77 29.57 42.99 98.25 55.71 24.89 67.79 49.67 40.97 40.57 49.39 6.06 64.59 61.27 28.43 52.87 93.90 71.92 43.51 32.05 3.82 63.14 -50.07 19.74 52.18 65.39 73.52 60.83 92.92 80.86 30.41 24.26 71.87 51.79 43.59 36.62 83.68 64.78 33.03 51.65 88.70 10.67 62.42 33.42 55.90 11.14 7.35 37.93 38.09 88.41 0.55 93.46 21.17 4.37 75.56 84.27 96.33 55.67 20.02 75.06 91.39 19.06 56.57 66.33 84.68 77.25 55.31 67.80 42.44 2.36 66.36 41.34 92.60 71.06 26.77 69.45 34.25 82.00 50.43 78.11 63.43 26.68 15.19 47.86 26.38 81.65 63.59 6.10 7.26 94.32 39.80 51.97 60.01 70.60 94.57 44.50 19.98 82.78 79.01 61.64 35.38 13.03 31.42 76.07 3.93 77.36 18.31 15.76 58.99 18.42 50.96 46.95 74.16 99.11 28.67 94.21 3.92 14.00 14.66 93.81 38.77 98.57 -86.43 35.27 27.60 70.49 2.60 3.34 2.18 67.18 73.88 34.57 6.83 9.81 13.84 65.29 33.34 95.43 62.91 89.34 90.90 91.90 1.05 59.57 74.28 63.88 28.47 53.95 14.93 18.57 51.65 29.95 59.05 50.43 12.67 91.70 82.78 49.88 47.73 10.34 67.32 98.85 74.64 28.83 43.43 71.77 28.78 39.48 65.00 24.59 96.77 86.52 96.78 1.42 81.78 91.69 82.81 12.06 66.69 28.81 17.35 10.62 43.05 74.20 8.62 91.53 82.92 90.80 73.26 81.91 61.77 78.07 19.60 63.53 55.08 26.27 8.88 77.54 41.26 29.60 96.19 15.95 31.69 67.87 3.97 40.17 36.84 37.58 82.60 31.54 13.94 67.09 95.17 38.50 1.43 36.28 29.03 74.34 49.70 23.94 73.51 97.59 -58.22 88.55 41.13 99.20 93.50 18.38 18.24 31.13 58.20 56.71 17.44 90.07 66.91 27.76 51.61 14.44 67.89 17.28 46.47 23.72 49.22 50.60 77.41 21.67 7.81 54.74 26.91 95.77 84.11 86.26 34.24 77.83 14.62 3.36 64.07 37.34 43.11 14.02 38.43 29.75 37.04 78.99 71.89 19.24 79.60 71.28 89.86 49.15 18.05 35.78 50.08 21.72 54.71 82.02 81.96 98.76 77.38 97.21 23.20 85.78 92.64 92.24 34.99 64.14 87.63 1.08 69.19 55.59 17.03 86.31 78.76 97.51 90.29 15.77 35.27 34.94 34.92 63.15 71.61 50.16 44.40 6.33 84.47 13.90 82.79 60.71 19.93 79.45 88.84 93.10 54.32 94.95 88.58 10.29 98.09 33.74 9.12 64.94 85.27 78.70 -23.14 81.14 93.10 66.77 71.85 21.63 57.68 55.70 86.03 74.51 64.92 24.25 25.55 63.05 39.78 96.05 77.19 7.62 35.99 34.88 98.89 62.34 61.88 48.03 13.62 28.99 29.00 45.19 48.85 92.13 77.50 77.43 4.64 42.60 9.43 10.92 8.15 25.23 32.64 67.25 70.28 77.24 99.62 5.17 79.75 28.77 8.73 79.95 87.18 25.66 2.64 40.49 34.33 37.85 12.50 38.58 66.43 27.63 10.88 77.27 19.59 52.95 92.25 42.25 72.37 7.65 98.54 58.32 2.83 37.16 18.40 85.31 7.30 48.36 0.69 5.04 73.65 61.52 62.32 23.20 79.09 89.61 62.50 64.41 50.99 61.69 88.58 12.84 1.01 49.76 66.89 24.97 13.51 99.78 74.32 48.72 92.00 19.22 72.67 91.54 -60.63 13.21 69.34 30.15 11.09 41.31 60.06 9.85 88.38 21.88 51.52 51.27 75.10 74.26 34.28 53.37 97.12 60.46 79.39 24.70 98.57 79.15 79.47 68.74 33.96 88.93 70.75 38.89 49.17 69.37 4.26 97.80 70.55 25.58 34.18 39.36 67.24 38.13 33.63 59.49 12.09 31.58 24.00 65.65 37.06 78.92 20.97 86.76 8.33 67.61 43.31 59.16 38.20 24.10 79.36 11.63 2.03 7.42 93.86 87.79 25.77 25.69 23.43 36.86 76.43 97.91 17.82 52.88 64.76 46.04 46.00 84.46 97.56 15.11 51.03 59.77 81.65 55.30 79.65 10.38 51.04 83.44 52.35 73.90 76.27 67.24 15.15 1.77 92.17 1.39 67.37 41.93 41.75 21.87 38.77 23.97 4.01 18.03 17.02 88.60 -84.22 59.81 6.32 56.76 69.01 73.60 20.62 69.51 35.71 30.71 90.28 50.40 47.97 5.33 88.23 13.68 52.38 9.91 73.59 70.14 76.89 8.97 49.21 10.31 36.02 88.55 64.81 80.52 79.36 89.12 56.36 76.97 66.69 9.30 11.71 46.19 87.61 0.38 67.54 23.96 78.84 45.56 34.32 39.83 88.07 99.68 92.40 42.78 25.58 54.98 93.97 79.56 50.26 44.37 6.63 29.32 88.96 0.16 5.85 68.38 15.43 31.57 6.93 50.69 68.87 76.71 23.61 15.34 86.25 53.45 66.59 72.81 7.97 82.57 99.07 59.97 23.50 77.38 70.86 23.71 90.32 87.95 14.45 6.11 53.32 49.96 26.23 65.94 22.85 94.63 84.96 39.30 26.58 77.03 65.21 98.10 97.50 71.01 42.49 4.55 -61.41 22.01 93.94 64.85 41.92 78.54 57.93 3.07 37.87 21.48 81.86 36.69 31.34 88.85 68.62 67.25 52.28 40.61 48.78 27.35 69.57 34.26 71.27 31.33 99.69 20.84 55.67 78.67 60.67 71.32 65.22 47.03 4.77 42.03 50.46 15.63 54.17 37.80 45.80 52.76 55.27 46.88 60.46 24.81 78.01 47.00 84.79 57.72 42.59 68.39 83.78 15.11 28.54 54.74 62.96 49.65 10.32 67.41 28.51 68.25 22.24 61.87 53.88 61.22 78.80 90.99 33.28 2.40 41.50 18.61 98.08 33.69 35.87 71.01 92.44 68.93 64.29 91.49 33.33 13.67 22.85 44.94 88.37 76.24 1.32 2.07 6.54 41.16 28.99 17.38 7.37 67.15 98.75 16.50 39.10 21.72 93.40 26.44 5.01 0.99 -11.67 35.62 79.68 77.95 65.11 94.87 81.04 5.88 88.10 18.29 77.45 25.77 40.65 89.44 65.33 59.05 10.00 54.52 93.43 82.19 12.61 23.46 71.77 75.04 62.77 62.50 37.56 62.78 74.74 5.49 72.28 75.13 77.52 43.69 92.10 17.66 3.58 42.24 50.47 16.51 53.90 30.69 17.45 79.60 78.32 25.11 55.92 3.48 81.72 77.38 33.03 80.80 96.51 16.44 1.79 86.47 82.57 80.60 73.80 55.29 73.71 37.31 13.45 17.11 75.92 18.95 8.09 41.10 16.70 10.43 58.60 72.99 90.83 87.70 52.68 25.73 32.43 34.94 54.75 90.62 98.88 14.31 56.72 69.88 72.66 20.36 25.23 48.45 80.59 61.70 76.43 49.64 22.91 97.48 67.00 29.51 29.68 0.51 48.05 5.10 -82.49 34.40 58.26 11.92 86.89 62.49 10.17 39.24 7.95 20.44 88.28 74.03 66.11 29.15 99.99 45.62 71.91 54.16 29.59 39.70 76.72 46.01 10.34 83.85 32.60 30.89 93.48 74.22 26.02 55.31 82.52 38.56 70.98 65.36 71.96 56.23 95.84 6.44 99.31 99.60 31.74 54.43 88.11 83.03 8.92 37.45 89.04 1.74 97.13 97.24 0.50 9.28 82.85 53.53 26.94 97.26 82.36 59.47 52.49 33.74 87.63 95.99 10.65 10.85 34.45 55.83 24.70 71.24 2.35 81.79 5.56 91.40 99.35 94.14 78.19 13.91 23.34 18.07 58.47 48.75 63.38 78.87 84.81 62.15 18.88 89.33 50.22 54.92 22.96 25.98 23.86 24.46 76.36 2.03 57.08 42.77 55.50 21.74 23.40 94.92 -43.79 70.02 72.87 29.87 4.96 13.02 66.86 6.69 32.59 61.40 38.29 5.67 47.67 31.67 78.77 39.73 34.15 12.61 86.30 79.80 9.93 80.24 82.75 35.01 2.97 57.76 25.53 26.64 29.66 43.55 9.90 49.54 4.38 31.78 82.97 85.58 90.89 24.02 44.25 98.14 99.33 94.04 39.96 53.52 77.98 29.39 80.33 52.38 20.12 71.37 41.99 78.88 48.01 95.23 74.67 89.31 60.28 26.81 1.55 86.92 52.95 79.26 5.81 23.38 66.52 71.59 84.52 37.92 86.08 59.62 2.82 88.48 83.60 24.66 9.09 26.21 72.84 60.20 73.35 66.56 87.33 92.06 66.39 40.34 59.05 91.00 71.34 23.73 76.61 44.32 2.58 71.32 28.94 0.98 30.65 72.27 27.78 7.38 59.90 30.99 -9.15 94.85 32.28 18.25 98.45 29.99 49.45 61.00 5.69 79.09 31.67 85.32 47.24 15.76 15.66 96.43 92.88 39.39 86.49 18.44 66.83 28.41 38.93 55.84 14.59 98.77 57.84 41.21 2.96 78.69 0.77 35.07 18.47 90.32 69.08 20.79 79.09 1.59 12.88 75.82 17.48 11.45 16.81 54.65 30.82 23.66 77.39 73.97 67.01 90.03 47.62 9.01 90.65 51.23 8.50 33.03 59.42 28.69 78.42 2.27 71.59 76.00 60.05 81.81 54.84 18.84 45.26 23.18 10.19 52.87 4.67 25.04 69.18 43.76 49.47 94.46 13.05 77.16 70.68 53.27 24.18 31.65 39.53 23.88 58.02 24.44 11.88 54.59 2.99 89.51 98.29 75.52 64.37 35.76 63.15 32.84 32.27 10.14 75.70 26.87 -56.50 48.55 51.75 49.79 23.44 55.81 2.89 50.55 13.01 0.14 97.85 92.02 46.60 48.17 20.65 81.85 87.18 65.51 82.96 40.98 38.87 90.38 69.83 78.15 38.79 85.22 60.05 24.30 75.10 40.87 39.16 17.42 2.05 93.81 34.33 38.90 17.28 39.58 44.58 63.55 62.02 21.97 6.42 1.59 42.36 57.73 31.97 58.58 74.98 5.51 45.25 22.78 56.14 63.56 86.97 48.09 96.00 22.16 39.28 42.10 90.36 94.08 2.20 81.16 8.42 72.74 41.22 3.25 73.53 23.10 26.66 77.45 73.64 35.92 68.43 60.96 37.75 76.72 10.63 67.58 34.13 38.96 97.09 14.49 36.93 1.25 61.43 38.07 43.56 72.99 21.62 88.03 56.26 57.54 52.17 66.58 22.76 63.97 59.29 45.20 -16.86 30.29 31.20 86.64 32.90 6.04 78.83 4.04 59.33 3.70 68.89 30.44 71.66 72.89 63.80 59.88 61.05 90.91 11.61 80.92 69.37 81.22 20.11 13.13 17.99 68.23 90.46 42.70 40.41 69.87 96.64 41.48 1.23 5.50 32.50 59.04 95.10 32.20 34.04 37.02 96.28 79.98 68.83 41.40 37.12 44.15 49.66 81.72 10.12 81.94 85.20 32.45 3.68 66.78 84.16 78.58 90.60 97.39 74.79 41.80 70.47 86.80 76.55 43.48 54.53 82.71 78.26 53.24 42.50 33.44 84.92 48.66 49.82 21.19 22.33 21.42 77.52 18.35 3.62 47.61 97.33 77.30 84.36 53.01 63.09 81.80 34.41 95.42 32.85 49.06 77.29 31.40 17.16 60.30 80.12 75.65 77.30 88.81 93.55 35.14 -67.50 18.37 64.14 48.73 74.28 49.78 9.64 19.75 35.19 56.82 32.38 62.49 70.30 86.98 49.70 74.58 9.23 46.51 99.06 47.17 83.53 86.08 88.41 37.28 78.90 3.26 70.72 55.34 7.72 64.89 55.12 84.75 21.78 95.28 66.09 46.89 38.48 13.36 75.95 15.59 51.47 7.63 58.76 68.59 74.06 67.40 98.45 3.88 48.35 10.27 98.11 68.02 48.50 16.80 86.62 30.83 83.83 56.03 47.81 11.69 45.85 36.75 87.95 58.51 81.77 69.52 68.33 5.03 11.61 43.26 27.37 18.39 51.38 26.65 44.48 79.01 41.80 86.92 94.38 83.84 23.74 54.97 80.71 60.17 1.78 69.99 34.60 5.63 55.79 64.58 0.41 2.63 21.16 16.56 99.29 40.27 73.23 20.81 34.20 68.72 -54.44 65.41 48.15 9.93 40.93 92.77 97.92 86.20 25.99 85.56 99.88 35.26 19.23 11.72 11.37 41.11 97.43 83.84 79.26 16.98 96.30 96.15 86.23 74.32 82.88 97.51 45.58 85.84 95.88 7.73 3.21 88.46 73.60 91.33 25.62 62.21 69.15 20.14 84.25 68.64 57.97 74.49 80.80 75.48 74.86 93.81 57.70 63.67 8.49 89.60 65.85 11.92 89.21 75.92 66.19 71.16 70.59 2.67 77.98 65.77 97.75 30.98 24.96 53.13 27.61 41.87 53.67 42.14 59.53 24.75 53.09 9.75 49.33 45.08 38.13 32.41 4.62 95.71 96.44 94.18 2.30 10.69 72.42 60.24 57.72 94.78 70.45 29.63 40.29 31.66 24.44 49.17 89.25 10.20 22.98 5.07 20.28 10.31 22.23 39.38 -28.71 38.12 6.60 0.02 27.79 57.15 42.01 23.72 47.43 31.74 64.30 47.23 31.76 52.04 12.06 82.65 16.68 36.48 89.19 95.61 76.75 53.78 58.44 1.65 99.05 21.48 38.49 43.32 17.33 98.86 43.36 94.09 94.56 4.57 79.41 76.78 84.36 11.33 64.60 31.96 83.25 14.13 45.26 99.08 11.71 12.29 51.69 96.82 27.56 90.61 98.78 30.89 39.00 8.32 74.36 97.20 23.88 64.43 94.54 47.62 21.85 78.29 62.86 5.91 32.09 39.70 96.11 52.55 34.96 52.12 83.16 3.06 37.09 93.55 85.47 29.43 88.20 80.50 83.22 38.62 14.48 74.36 51.36 77.23 3.03 16.37 84.13 23.63 45.21 81.19 1.95 37.12 80.18 28.39 60.88 55.81 79.80 51.08 22.36 86.10 -9.01 82.52 16.34 9.63 76.68 12.34 47.87 78.44 47.92 43.17 66.34 71.84 98.45 89.37 18.43 99.75 6.62 55.99 88.44 95.57 50.68 66.18 64.30 48.63 30.52 58.62 17.57 83.62 19.04 87.40 68.31 37.65 26.91 30.57 39.58 16.47 14.42 50.20 86.43 21.10 61.90 23.34 99.81 34.85 76.05 71.74 31.84 84.18 14.97 0.54 93.69 75.22 12.86 79.21 96.33 36.70 23.68 36.78 64.27 6.57 49.54 96.51 56.34 10.45 17.42 20.88 27.41 10.30 83.11 14.71 14.33 67.75 38.41 69.64 3.76 19.39 49.07 34.77 5.10 63.26 14.19 28.36 41.50 16.43 93.72 98.43 46.71 0.78 36.78 75.98 48.47 36.55 83.77 51.65 35.40 0.02 43.23 63.67 90.45 34.51 -43.34 59.74 83.40 6.69 91.31 65.93 60.20 52.71 8.21 96.61 16.29 23.52 97.56 69.98 92.48 4.37 88.53 33.42 65.71 42.97 45.13 66.79 27.41 23.29 13.98 62.22 47.08 96.30 73.26 56.27 95.43 2.28 21.98 53.03 87.73 74.54 91.93 25.46 65.03 12.01 94.49 24.34 78.69 86.04 53.51 6.76 66.78 61.13 20.14 63.62 32.14 86.60 5.45 19.61 6.99 86.96 41.17 40.78 31.95 25.16 5.63 65.59 87.43 92.53 23.21 53.42 2.83 83.58 36.23 52.52 51.98 46.67 95.80 60.94 5.25 60.82 72.31 48.16 17.48 39.61 60.60 62.57 95.55 93.05 66.37 68.01 57.46 41.76 7.68 79.41 15.04 51.46 70.17 15.72 4.91 80.48 75.90 87.18 46.56 38.75 -8.51 99.13 65.52 98.23 65.65 44.02 71.19 45.30 95.04 63.51 67.07 69.02 12.45 78.05 23.84 46.27 96.26 45.94 88.30 26.52 28.03 6.85 0.78 0.55 31.55 28.45 68.22 31.72 20.86 32.52 74.18 24.01 48.32 88.34 42.60 85.82 14.61 66.22 32.29 61.30 85.12 87.09 38.14 90.30 24.69 0.43 33.58 95.33 16.09 30.51 80.32 32.44 21.87 20.25 57.34 88.03 34.84 62.03 50.86 26.60 78.43 94.76 85.76 81.20 18.99 32.94 38.17 97.30 43.89 51.34 12.38 42.42 26.33 36.60 48.94 86.13 50.39 51.83 8.41 14.69 21.51 88.97 54.31 89.94 40.74 94.79 42.47 56.80 18.76 34.22 86.38 68.42 86.34 87.05 22.42 2.67 10.60 2.71 67.89 42.78 -77.18 12.13 98.99 1.94 76.76 80.53 15.27 34.61 20.07 91.16 81.44 61.39 97.57 24.00 62.94 41.70 13.44 81.47 82.58 57.81 94.34 87.61 62.19 4.28 56.91 40.76 63.53 73.71 63.85 84.36 5.27 25.30 58.05 20.66 78.60 12.82 85.42 99.53 55.81 45.36 8.40 28.87 26.61 22.40 20.43 23.16 62.22 92.02 19.97 27.20 36.80 58.89 34.34 72.28 64.16 25.85 65.18 66.85 21.95 13.40 23.49 57.21 90.07 27.60 24.99 0.57 89.65 61.53 86.22 30.05 38.12 28.14 38.93 56.69 51.64 33.45 51.87 58.52 60.89 13.30 18.48 25.18 97.25 13.39 81.43 96.27 11.13 6.03 75.68 58.67 89.35 8.30 29.86 42.84 23.57 9.34 39.30 26.17 49.76 19.52 -72.78 96.86 88.88 64.93 50.86 63.61 23.08 60.32 10.68 11.18 7.87 78.87 42.21 17.73 67.26 69.56 25.30 23.87 14.22 63.21 55.19 52.11 86.76 4.04 80.85 95.66 4.22 91.76 40.72 61.67 51.57 51.45 74.09 99.57 47.14 53.54 9.88 97.85 48.32 94.31 16.67 49.61 27.45 35.21 14.80 30.81 32.31 16.53 96.42 93.36 73.76 67.45 27.80 21.61 56.60 64.01 83.45 56.68 72.59 77.14 99.37 86.72 93.53 44.75 92.53 20.32 25.14 31.98 69.17 86.22 89.88 33.12 11.31 20.56 88.82 10.36 36.80 94.75 68.79 21.49 62.42 31.18 27.84 33.78 0.23 80.17 27.93 68.33 7.63 19.17 7.44 1.36 68.44 65.42 5.12 65.11 76.26 98.55 54.08 86.27 -62.58 10.77 46.50 51.02 42.03 35.79 34.72 73.62 60.76 99.54 4.39 3.98 28.69 81.21 17.49 64.78 48.49 89.71 31.79 2.90 0.80 80.79 65.49 37.21 14.42 18.02 36.87 16.17 82.66 60.77 88.10 34.53 91.27 32.72 76.01 97.79 90.01 92.98 57.23 72.78 37.07 74.42 61.63 33.91 65.35 33.20 98.01 80.64 37.63 59.78 22.87 77.44 39.59 33.11 65.25 47.10 38.51 66.54 88.73 54.81 44.59 99.44 19.12 18.14 4.86 19.50 81.61 52.91 33.20 26.97 44.12 32.08 12.86 67.95 15.55 91.22 21.62 32.85 17.39 70.69 81.81 62.16 17.63 0.59 15.92 68.79 18.53 68.79 15.33 63.83 99.12 97.10 57.06 69.58 61.53 83.85 29.48 44.61 29.26 2.43 -8.74 14.92 70.65 39.00 18.94 3.16 64.08 96.87 22.95 67.37 78.93 19.73 30.78 87.51 32.96 52.48 53.19 80.77 43.51 75.06 38.31 30.57 60.13 29.71 50.60 31.00 52.87 25.54 59.93 76.46 25.72 3.80 43.82 86.34 11.42 40.28 42.62 54.32 0.80 70.89 7.74 41.34 30.37 8.03 80.38 49.32 41.83 67.69 22.80 1.59 53.09 13.71 46.00 94.19 29.08 91.40 33.45 52.71 69.41 98.12 99.86 39.10 1.42 84.07 14.29 57.08 65.47 8.79 49.84 95.81 67.10 8.72 56.56 21.15 0.36 63.77 36.67 2.43 84.28 4.21 88.32 41.37 55.38 26.03 19.19 38.09 96.12 44.83 38.24 84.36 85.97 70.77 10.84 51.81 82.64 99.59 84.98 91.12 90.78 37.11 -64.36 20.24 89.89 79.21 78.70 82.10 35.22 28.50 33.76 75.58 9.88 61.57 31.40 6.65 57.31 75.20 60.22 82.09 80.39 78.37 37.56 2.20 60.48 74.46 96.89 86.71 32.72 46.73 41.53 19.93 38.11 98.62 94.44 94.84 32.23 72.21 26.21 22.82 9.25 73.06 31.54 67.85 83.20 61.85 0.34 14.40 40.57 17.45 11.86 45.58 32.01 55.54 72.48 82.29 71.82 1.32 28.09 15.64 40.05 3.51 23.57 82.79 85.19 69.37 39.17 91.22 72.68 40.97 11.53 9.96 83.89 63.70 77.13 50.93 91.09 16.66 13.84 11.58 7.69 27.10 37.42 76.05 99.01 58.94 84.87 58.70 79.13 57.85 8.04 93.72 63.52 39.08 91.20 60.74 8.80 88.87 76.54 52.34 55.10 97.19 -52.28 16.67 62.49 32.85 11.86 51.67 97.31 21.88 76.08 13.81 94.31 22.56 68.22 54.01 35.47 50.43 59.87 65.19 72.83 91.90 21.76 72.64 18.27 52.12 13.69 78.25 17.72 22.66 89.26 16.69 89.52 16.68 51.25 18.22 93.16 42.66 19.74 53.37 18.99 61.99 87.11 20.41 14.00 77.42 90.62 20.54 76.87 30.34 13.12 69.68 49.03 16.96 53.76 18.81 12.07 60.47 78.60 31.89 30.64 55.92 50.39 43.05 82.75 88.58 19.12 44.61 46.05 15.31 53.40 2.40 18.36 16.53 52.62 15.71 34.73 50.96 4.62 32.92 59.60 67.09 30.65 43.76 79.18 28.64 14.03 39.94 35.39 93.73 15.97 33.82 9.99 30.70 45.94 91.42 13.45 19.63 7.13 36.02 22.56 53.89 -71.55 31.89 6.97 28.19 78.79 34.74 35.20 99.21 8.26 77.89 42.67 8.89 31.56 78.24 48.78 93.46 56.42 78.42 84.67 17.45 31.90 25.78 67.59 66.76 48.30 54.18 89.92 5.02 41.54 79.10 43.98 82.13 14.88 66.80 16.19 31.76 55.90 1.08 35.72 89.26 61.96 33.67 82.04 61.62 21.46 71.32 93.61 54.92 12.52 7.22 22.27 27.32 63.77 19.16 58.94 27.47 81.43 79.06 88.07 29.38 79.06 70.98 14.78 17.75 73.88 74.69 90.66 69.68 19.41 52.26 34.62 52.95 58.34 70.00 99.87 19.21 56.60 0.43 3.34 83.85 46.56 80.16 7.89 2.59 6.77 15.73 15.95 37.96 70.18 4.02 15.99 51.87 17.98 98.61 30.44 81.66 79.18 90.14 78.68 62.78 -10.77 76.99 39.22 50.71 96.42 85.09 3.06 10.90 80.00 75.85 75.98 25.96 42.70 3.68 57.16 90.61 94.83 21.59 15.50 91.37 15.66 34.92 11.48 73.00 60.82 48.75 44.80 40.68 67.95 41.85 90.18 18.73 94.00 43.60 88.60 92.26 73.53 66.24 9.71 24.42 33.51 2.46 92.13 19.07 75.95 93.59 68.88 55.68 4.20 73.55 90.73 62.36 53.41 4.58 11.07 89.92 28.11 41.03 62.33 43.12 8.57 87.42 38.67 73.69 71.28 85.36 96.25 15.49 34.08 93.84 24.10 55.25 62.61 75.87 56.80 68.56 5.37 67.88 45.19 21.15 51.86 43.06 18.81 36.72 83.55 66.27 38.28 13.41 75.97 11.39 97.54 19.49 43.43 33.47 58.21 83.40 73.07 38.35 41.93 64.05 -44.77 79.77 0.89 37.15 34.45 88.50 25.35 82.87 19.89 92.61 49.04 99.30 90.33 29.09 95.09 92.08 22.31 37.61 67.89 90.08 86.55 87.11 5.31 22.96 38.87 20.51 54.92 41.18 29.33 53.98 62.85 92.41 93.64 97.10 37.80 79.09 47.31 33.43 25.41 15.61 89.95 65.68 3.80 0.13 54.94 52.09 40.88 27.23 78.96 38.52 65.44 92.98 87.79 73.27 62.19 35.86 88.72 31.69 64.52 38.14 84.95 55.65 49.83 76.77 12.42 94.34 4.55 95.34 42.01 85.96 67.36 53.89 1.16 46.75 70.85 16.61 34.28 2.46 52.81 50.67 31.48 73.60 95.06 63.84 70.03 31.90 97.71 12.33 92.56 2.63 34.31 35.80 30.50 85.16 88.06 66.60 12.62 22.15 49.18 18.69 -37.87 88.98 55.53 63.16 39.63 92.42 56.35 13.84 64.55 40.75 86.13 22.78 93.01 31.40 10.30 10.68 27.85 59.69 53.40 29.06 53.81 97.47 74.10 69.44 9.92 22.02 31.35 68.21 58.87 29.21 2.89 38.09 33.15 15.43 76.04 99.81 26.64 45.74 73.01 42.13 57.57 50.06 25.37 96.89 23.87 49.06 55.19 56.00 8.97 28.06 61.82 70.90 16.50 6.85 52.38 38.90 90.84 36.34 34.86 27.57 38.25 96.80 40.90 46.78 39.14 77.65 44.86 20.81 44.51 64.54 84.14 47.47 37.24 6.29 48.92 9.47 64.52 84.22 18.20 31.62 12.86 38.60 20.14 53.80 45.22 21.26 81.93 47.63 97.46 58.66 96.07 92.03 55.59 80.13 18.50 2.78 4.73 90.50 48.59 27.21 -56.62 63.64 1.70 28.39 44.75 82.98 57.49 28.25 58.34 76.66 78.09 66.47 74.23 43.81 8.13 92.40 18.17 6.55 28.92 25.04 22.30 65.02 44.99 67.85 55.69 19.08 4.75 46.88 18.50 71.26 96.55 42.17 74.32 93.19 56.15 96.10 66.10 42.11 39.16 35.85 89.51 90.80 12.56 27.00 35.92 81.69 77.27 93.37 31.40 39.18 80.89 14.34 69.18 2.76 60.34 70.79 30.21 15.75 79.80 86.16 7.45 62.04 56.83 36.27 15.66 17.07 79.51 17.03 10.19 40.74 87.56 42.79 20.95 18.42 39.29 22.35 94.56 90.63 60.42 56.70 57.84 56.11 61.63 13.65 89.99 82.49 32.67 73.80 56.77 78.79 47.77 55.87 1.09 57.37 66.19 95.20 85.07 14.93 27.48 12.19 -67.72 97.01 98.80 75.82 22.95 25.36 36.92 75.58 11.29 95.25 76.63 53.60 39.97 72.51 27.90 25.48 4.74 18.56 33.01 77.35 56.42 48.61 8.35 21.67 89.24 32.94 44.06 70.21 14.65 35.35 0.39 92.93 64.65 37.36 45.01 42.03 60.49 58.61 15.97 84.96 17.12 25.13 42.48 20.88 64.12 63.42 72.53 58.23 20.11 80.96 81.45 5.61 58.45 61.58 48.00 74.72 69.99 60.33 57.91 49.60 14.19 45.39 89.64 5.78 35.53 60.53 92.32 87.25 89.15 56.53 95.70 93.27 21.23 23.09 25.23 46.48 97.79 63.56 25.01 12.77 75.12 49.66 57.45 29.21 10.74 62.45 87.18 57.18 88.94 75.42 7.07 11.88 46.25 86.36 73.25 0.19 42.75 43.49 88.18 19.34 -96.47 23.66 63.67 74.50 42.12 85.62 57.04 0.95 33.17 55.11 39.25 63.55 21.16 16.28 71.37 89.23 79.70 61.42 98.70 90.80 44.76 24.54 78.35 99.63 68.86 89.69 29.52 90.56 36.13 2.64 30.41 77.50 70.38 45.60 78.63 61.06 27.29 89.15 9.51 89.20 79.34 18.64 43.19 58.79 55.16 95.41 54.49 22.07 45.73 6.43 31.90 65.49 11.96 95.42 49.95 70.53 42.54 32.67 41.10 56.20 51.38 86.07 22.67 97.39 54.85 62.94 50.77 64.92 26.21 41.72 16.19 52.27 52.23 13.47 70.65 97.68 63.12 37.01 99.52 37.06 52.73 69.07 50.04 94.48 56.07 65.91 65.33 80.45 47.09 56.80 90.99 27.28 7.33 43.62 1.42 85.25 79.38 64.59 12.94 47.54 -98.89 53.13 98.38 47.10 38.11 5.53 47.75 94.12 43.11 47.94 1.50 81.40 42.31 21.68 62.84 22.70 85.89 80.48 52.91 68.34 8.61 30.70 90.60 28.63 38.67 33.11 53.56 80.57 44.60 80.33 13.27 10.74 78.26 66.14 86.06 61.26 92.63 40.25 42.30 55.89 78.97 8.00 43.74 29.05 29.22 47.89 48.36 25.62 13.13 16.48 61.75 29.33 58.75 26.20 63.43 93.23 60.07 92.60 19.31 88.93 65.72 46.04 63.52 20.48 22.70 6.68 47.66 20.12 75.37 98.63 16.02 7.79 28.26 66.64 98.26 18.51 50.17 28.52 69.96 12.17 60.24 47.42 58.70 75.83 26.98 83.31 62.94 92.33 58.89 12.09 15.24 71.24 37.28 2.92 55.71 82.88 31.88 56.11 45.71 91.48 -39.98 90.05 91.72 78.36 46.36 27.17 27.18 87.15 60.77 26.13 48.87 98.63 53.81 64.39 16.44 80.37 10.95 97.23 52.00 23.22 49.13 20.51 1.72 28.29 21.75 30.43 81.15 72.18 54.64 63.52 5.45 72.47 12.74 24.48 91.50 63.04 49.05 17.13 2.94 45.29 71.85 74.50 95.79 13.16 10.63 91.56 45.01 76.57 5.81 73.19 36.31 40.48 0.58 42.55 31.37 23.25 27.85 50.87 49.44 3.24 76.81 19.66 41.04 19.79 15.71 18.40 59.63 7.09 69.59 71.72 23.74 84.84 38.03 86.04 8.16 54.29 46.91 54.23 31.35 84.60 39.41 80.76 22.95 72.14 91.09 26.80 43.45 85.93 62.59 6.02 26.26 48.87 56.35 92.51 95.10 73.17 85.58 70.62 34.56 19.27 -78.37 40.68 84.83 70.20 48.80 36.57 27.64 89.04 77.34 67.23 40.54 27.45 64.32 66.21 74.80 53.97 27.11 23.77 63.78 97.76 11.36 8.77 19.85 10.08 92.72 72.01 43.83 87.06 96.05 45.71 51.89 76.33 63.14 38.28 41.94 42.44 58.40 97.18 39.82 1.82 46.73 82.60 85.69 53.86 23.87 61.84 98.83 94.02 15.74 64.43 38.38 76.89 90.11 83.32 68.68 29.52 27.54 58.93 58.38 51.28 94.36 93.49 41.97 87.92 2.64 95.83 40.93 8.76 67.71 6.09 88.30 61.58 99.49 28.57 97.25 21.35 80.80 10.53 81.06 97.77 67.63 18.95 97.66 37.70 69.52 31.91 59.43 61.68 83.48 40.96 2.48 7.41 51.72 18.66 63.90 85.43 28.45 58.67 84.47 79.35 -55.79 42.12 56.77 51.00 19.39 89.52 59.96 57.61 63.79 48.22 40.52 55.17 19.19 36.99 11.79 46.68 64.17 28.27 73.33 7.02 13.59 99.58 41.94 30.42 87.66 35.39 64.83 34.04 44.00 40.14 66.64 65.99 66.46 24.09 98.44 58.72 26.12 77.74 76.69 90.95 44.67 55.35 57.70 90.59 79.13 56.66 8.42 75.58 0.68 29.19 28.10 95.30 71.79 11.73 86.12 24.12 62.86 75.12 71.55 80.98 46.26 78.48 47.37 61.43 72.67 46.87 32.20 90.65 25.00 91.43 42.75 51.86 0.15 30.18 17.48 92.44 35.48 50.79 26.07 68.17 18.63 5.56 42.24 60.59 94.43 53.05 88.42 45.77 67.12 35.97 1.99 11.02 25.91 4.05 58.68 89.48 54.78 15.49 61.67 34.15 -95.95 47.49 16.74 31.30 40.11 85.88 50.91 9.39 19.40 84.75 74.60 14.40 57.31 18.07 25.99 70.45 15.32 47.26 18.42 93.76 99.72 75.48 82.85 43.27 94.08 5.53 38.07 68.06 39.82 75.53 36.39 4.08 64.48 69.34 35.74 53.51 26.36 65.90 44.54 95.95 74.74 9.18 52.14 19.65 96.87 67.62 69.20 74.08 16.12 70.37 15.05 89.83 5.17 69.47 44.57 88.41 76.17 28.60 43.27 61.89 60.15 45.99 89.83 7.23 14.83 49.38 34.63 27.72 75.90 56.57 92.30 38.36 59.57 75.38 58.46 18.23 44.46 8.13 22.79 26.78 51.58 14.02 27.29 83.72 89.57 92.95 58.71 54.68 89.33 49.01 94.95 30.58 56.28 78.55 89.83 52.78 3.71 9.76 65.14 5.81 -52.05 33.46 85.72 42.56 69.12 5.87 36.73 90.89 60.19 48.24 66.50 74.95 51.80 46.88 85.02 23.47 42.36 66.15 48.94 29.75 31.57 49.44 51.06 98.98 74.43 77.24 64.71 28.29 84.34 29.37 43.44 31.65 78.74 60.15 1.54 68.12 87.03 2.85 32.02 31.90 87.65 97.64 37.48 41.28 75.80 76.43 32.59 82.95 16.65 23.68 92.71 19.24 16.69 4.36 39.38 65.41 12.79 27.69 33.95 23.02 82.64 97.12 69.20 88.85 80.91 31.04 65.49 40.23 0.77 67.69 33.10 78.96 10.14 14.13 11.62 98.75 24.33 67.73 83.47 67.45 44.62 52.29 87.84 35.64 75.64 87.72 82.01 11.01 54.73 1.93 58.72 26.65 29.08 40.91 65.71 91.14 34.56 67.60 95.31 58.19 -43.83 94.49 91.71 78.35 34.68 62.40 80.85 18.64 77.52 91.44 17.57 65.05 65.04 41.34 87.45 87.30 88.47 2.09 93.06 72.78 92.24 68.55 43.29 36.83 94.16 75.49 73.34 86.79 0.35 67.09 45.35 54.65 95.59 90.57 73.75 19.87 83.59 94.76 10.97 62.63 54.46 47.90 25.84 42.21 99.94 83.61 31.75 12.95 9.36 25.92 39.63 49.90 24.42 67.56 47.58 22.77 71.65 4.60 11.84 14.56 52.53 55.19 7.91 35.75 69.34 22.58 53.21 26.05 23.16 88.73 12.65 60.87 58.97 58.17 68.03 3.33 51.00 82.76 54.71 19.43 12.01 65.60 88.39 95.78 12.21 43.82 59.98 20.78 84.37 19.70 75.01 78.12 27.94 27.86 79.01 9.90 3.41 74.68 14.52 70.22 -16.17 31.43 66.36 40.49 46.30 0.36 6.43 84.09 84.84 95.14 87.01 97.60 87.43 9.73 80.23 56.27 92.21 73.26 32.27 61.69 16.63 29.76 27.85 19.53 49.81 90.57 30.18 69.90 75.15 55.77 71.65 57.74 42.35 61.72 91.25 85.05 71.30 63.03 37.34 67.89 11.66 84.27 70.68 0.95 8.87 49.77 11.69 7.36 84.06 60.27 66.05 85.01 0.60 49.16 43.48 70.10 85.97 72.77 19.23 68.24 74.92 75.34 54.44 37.57 49.28 21.45 6.01 85.49 75.44 1.71 65.56 93.95 66.85 63.67 76.43 54.98 93.83 91.88 37.69 12.72 59.68 2.38 29.44 88.21 47.03 48.95 4.83 90.98 85.30 62.57 32.65 49.46 91.65 89.84 20.93 89.56 24.43 38.92 39.59 79.21 -14.71 16.15 23.69 18.73 1.64 84.54 96.78 2.36 49.52 26.85 95.63 29.74 11.69 87.26 43.32 94.60 0.74 15.74 23.77 70.31 49.97 39.16 46.08 26.19 40.85 98.69 42.37 2.79 82.43 5.48 44.37 74.09 65.58 63.91 43.49 58.37 29.71 26.40 1.67 57.09 49.61 8.74 17.05 79.51 36.67 39.50 76.02 21.96 65.26 8.18 20.01 39.16 37.84 76.46 11.39 34.69 44.49 81.79 56.52 76.89 38.77 73.63 83.63 12.85 42.74 40.30 14.73 27.39 97.10 31.43 68.05 60.42 45.79 41.43 2.02 37.62 48.14 26.05 17.92 92.78 19.68 70.66 92.30 38.75 74.73 95.78 13.90 64.05 53.94 62.33 85.85 95.45 22.09 66.28 30.55 85.18 76.73 76.66 92.35 57.80 -41.09 28.43 13.67 79.31 78.69 17.25 63.90 8.10 87.72 67.28 89.87 70.94 59.39 84.37 94.61 78.88 44.71 17.19 54.98 61.91 19.49 4.93 83.01 0.74 19.52 90.85 12.04 79.76 45.77 28.11 11.17 80.54 47.85 78.16 26.62 43.03 30.61 42.13 11.06 11.97 95.06 40.60 88.40 16.65 27.39 19.84 81.39 17.99 69.24 37.97 61.23 8.64 32.04 67.46 59.23 16.76 2.26 57.51 62.82 58.68 32.98 5.30 29.40 22.04 45.80 99.99 13.35 54.73 9.03 53.64 21.63 54.56 87.37 21.62 55.22 89.06 99.18 3.03 13.53 70.93 53.69 89.59 66.66 5.69 54.95 50.99 72.23 65.45 53.34 89.86 65.88 0.03 42.48 46.30 71.20 42.50 14.28 8.31 55.43 74.66 -77.15 38.39 47.66 11.57 89.95 71.10 62.86 53.56 91.17 42.62 10.67 37.70 0.04 55.70 2.04 41.29 66.31 8.84 46.39 19.67 15.48 56.48 87.60 28.94 65.38 84.40 81.29 7.03 66.65 81.06 30.30 28.42 44.61 74.82 17.33 23.16 54.63 89.42 3.20 91.84 32.20 95.38 19.95 28.48 81.58 63.16 53.39 19.78 37.84 20.85 67.99 26.66 83.83 81.80 77.16 5.87 62.15 1.65 19.97 89.91 88.93 16.17 42.40 46.59 99.24 43.77 39.73 28.74 63.97 68.54 39.52 35.05 62.60 16.93 79.36 18.09 99.54 53.89 40.66 13.03 51.94 21.83 7.74 97.00 39.60 56.67 6.48 23.35 28.39 63.80 1.18 3.01 31.59 21.34 35.03 34.94 19.03 67.90 65.71 0.27 -84.79 80.74 21.19 14.15 8.05 50.36 74.43 73.85 78.48 42.78 89.58 34.73 29.22 24.15 32.11 32.74 87.53 91.93 11.83 7.31 27.09 47.78 63.35 15.97 80.78 48.94 50.21 83.58 47.63 11.08 52.60 85.58 2.79 11.51 9.09 77.07 50.34 50.37 71.15 35.73 4.77 90.15 80.09 61.54 83.16 65.65 2.67 18.62 33.68 70.55 89.99 88.51 26.29 75.82 94.21 42.52 67.59 88.69 74.35 8.73 82.63 81.80 58.52 48.12 45.10 45.14 90.95 83.86 31.31 45.38 26.17 66.66 50.15 37.30 54.68 36.01 89.93 21.76 66.32 24.76 37.09 15.59 67.66 31.94 4.42 86.81 71.96 98.00 17.12 77.83 86.95 95.24 32.17 91.43 43.35 61.68 48.46 36.00 56.80 96.79 -34.76 11.89 17.57 51.81 32.78 13.03 94.04 75.76 67.46 36.68 92.19 96.22 14.61 97.97 76.58 65.61 56.47 42.08 11.56 86.88 98.36 3.67 84.83 25.22 18.79 29.87 40.79 10.87 72.10 66.08 68.67 62.99 43.70 29.94 91.13 93.16 43.65 7.28 8.47 3.61 54.03 71.02 1.70 52.73 98.95 95.18 34.39 38.50 90.18 90.92 6.56 75.45 73.78 11.37 57.45 86.15 69.74 11.18 55.37 93.08 66.94 78.19 26.66 34.70 26.79 87.09 85.52 33.04 59.20 51.64 98.09 25.17 94.35 75.30 4.16 54.84 75.81 6.91 49.21 40.66 56.40 8.66 34.86 73.58 56.17 4.31 44.84 18.04 38.89 64.74 69.99 56.04 3.48 17.76 95.72 43.00 34.10 52.86 60.77 27.88 -63.39 9.73 43.85 20.62 9.06 55.82 59.55 11.24 99.28 35.79 1.66 72.73 34.99 9.12 69.07 69.61 16.91 41.68 50.14 92.53 5.67 37.57 2.24 43.49 58.99 64.35 92.44 34.66 18.97 12.04 85.41 13.51 54.75 10.41 61.35 49.17 97.63 60.55 9.45 55.56 81.27 12.88 56.94 14.52 35.72 10.08 37.35 91.30 13.09 66.25 47.71 61.59 99.96 12.74 32.12 73.39 36.57 80.10 22.60 57.99 45.60 76.96 14.74 72.90 7.70 30.62 26.47 80.98 0.05 37.87 53.83 10.10 43.85 7.91 48.84 15.02 22.83 76.74 0.02 33.16 14.60 0.68 4.54 81.50 24.85 47.20 24.16 44.04 98.60 40.23 36.34 66.52 80.74 56.39 17.08 49.68 72.62 9.58 87.96 15.06 -29.91 30.62 69.63 40.28 65.47 65.84 4.24 49.87 57.84 68.68 11.34 6.18 10.65 27.26 24.43 7.71 10.02 77.57 52.26 57.68 22.63 25.62 97.67 22.62 30.61 74.61 90.69 43.29 66.64 3.73 13.63 2.48 80.43 60.25 39.26 14.16 93.63 69.49 20.63 76.72 0.84 45.69 86.91 30.03 60.91 32.17 87.42 56.46 36.47 81.71 40.55 34.53 32.25 5.13 37.88 59.68 6.32 18.60 59.15 53.68 35.76 39.89 85.83 17.70 60.48 37.59 6.27 43.01 80.43 52.08 90.95 24.87 76.52 48.63 19.30 17.95 67.93 62.38 1.68 53.81 57.43 25.10 7.86 36.10 63.72 58.43 89.47 61.44 24.83 84.31 23.27 1.04 87.15 72.06 47.52 63.90 43.06 5.17 42.37 63.72 -16.44 50.39 22.79 55.94 37.31 74.24 51.26 24.95 32.42 42.48 20.64 82.08 64.39 65.09 54.57 35.06 10.39 92.12 34.71 24.18 44.74 60.46 59.61 88.22 46.66 82.69 9.04 32.53 89.06 98.30 58.61 68.55 91.30 47.48 48.63 27.48 86.88 17.86 43.70 59.67 20.12 88.61 44.47 69.10 51.19 86.67 74.95 31.09 36.04 43.42 78.65 70.00 79.22 33.97 29.53 82.68 69.34 21.43 33.21 73.05 63.49 29.43 86.78 60.29 99.71 47.34 48.51 76.20 49.74 38.10 25.57 85.60 75.44 99.36 92.09 37.14 29.12 87.11 48.91 56.83 39.44 64.37 7.78 20.38 23.79 61.81 42.46 92.22 34.88 55.47 60.36 74.90 83.63 34.11 87.61 1.64 62.29 8.93 90.74 97.40 -73.09 31.24 53.54 99.15 26.23 97.47 67.37 69.92 23.21 97.15 41.08 49.22 74.96 28.07 36.64 45.17 37.57 37.09 99.64 9.46 30.81 55.55 41.31 16.66 1.33 22.84 36.36 24.11 51.48 11.59 27.81 80.22 3.46 49.45 91.89 23.01 14.51 88.46 40.89 14.51 90.80 76.63 7.39 79.05 78.44 66.18 98.91 99.11 92.49 4.36 68.43 1.01 63.95 61.28 89.85 65.52 85.45 52.78 29.82 37.21 97.51 81.46 36.04 27.73 61.13 4.01 82.92 23.33 27.74 31.70 42.60 99.56 30.06 15.44 93.91 62.85 65.30 62.34 48.93 75.55 73.19 18.58 65.16 7.42 24.04 83.58 33.17 75.95 89.95 97.71 90.05 32.66 32.54 39.14 92.71 25.16 59.96 48.52 93.75 60.41 -18.30 3.72 23.78 93.07 33.54 26.38 88.37 58.73 24.03 23.80 19.49 53.10 17.53 70.12 25.48 81.86 85.74 29.87 30.84 45.58 29.36 13.63 71.67 63.45 52.06 47.36 41.31 13.05 3.61 33.34 33.48 48.79 35.43 67.33 24.88 78.13 29.77 70.75 7.80 37.48 34.06 65.34 36.48 42.75 76.06 76.06 49.94 37.66 54.53 67.67 10.27 8.07 72.38 15.85 30.66 56.19 50.38 1.58 62.70 46.90 71.33 54.32 13.81 79.76 89.05 40.02 57.36 60.15 54.32 96.42 90.84 1.12 48.77 83.33 18.56 31.91 97.97 59.11 47.49 90.00 82.39 83.18 87.14 23.23 72.37 84.20 86.46 7.56 3.19 81.25 17.56 13.20 69.42 2.66 37.25 68.40 41.79 45.00 80.42 73.93 -18.28 45.39 14.63 14.97 8.13 65.04 59.53 89.34 52.66 39.69 7.90 98.00 4.98 1.72 58.98 12.26 80.14 14.66 88.91 12.14 88.03 37.91 28.80 72.93 12.33 99.40 25.29 19.98 27.09 50.19 95.12 54.55 93.92 56.44 51.49 28.35 35.16 0.28 34.98 20.83 85.54 94.23 30.80 59.49 49.50 49.85 61.27 20.75 85.23 7.27 43.47 38.55 93.27 59.98 16.57 98.11 38.96 71.45 1.59 28.28 57.52 15.76 36.06 78.30 23.58 19.43 66.10 41.62 24.43 33.31 78.24 94.93 38.83 76.24 94.43 19.84 96.72 66.26 18.41 63.93 33.00 9.45 80.79 23.11 1.26 38.38 23.66 68.58 91.35 71.27 77.23 80.96 35.07 10.81 45.29 7.01 67.80 30.64 51.81 81.95 -20.39 62.13 72.63 28.40 67.85 73.75 97.42 45.87 12.57 67.97 32.98 63.00 45.43 56.77 63.14 23.23 56.03 2.57 61.95 48.03 2.73 98.27 51.24 44.72 64.36 17.00 52.65 24.94 54.06 4.01 10.51 0.34 61.57 30.09 41.00 52.24 44.47 47.72 21.95 96.07 30.10 19.77 79.98 95.19 15.38 9.24 90.67 40.56 72.81 46.41 50.76 14.34 76.40 63.25 59.83 1.53 1.79 45.40 94.19 8.05 80.61 87.23 92.30 46.49 95.63 64.92 44.62 51.35 66.70 95.21 98.02 67.32 44.64 70.63 92.47 23.65 66.51 48.84 42.58 82.84 94.05 46.78 49.21 73.77 53.85 51.93 8.25 77.78 18.13 91.81 76.70 71.46 89.43 13.07 22.00 36.18 39.79 88.00 54.69 58.09 -25.76 31.91 33.25 55.59 25.53 80.26 96.69 68.99 88.19 14.55 52.42 41.16 93.43 50.40 2.88 79.31 38.01 95.01 50.98 71.41 93.71 40.17 41.42 28.55 9.38 32.08 69.48 16.99 35.08 52.05 47.10 94.30 78.94 88.41 72.81 12.25 39.98 54.83 73.08 73.38 65.19 61.33 84.83 61.65 47.40 51.08 75.86 31.59 47.41 12.08 88.37 38.99 20.27 3.28 76.92 66.76 52.61 82.45 99.85 77.32 16.40 49.01 35.88 9.83 14.70 73.65 40.28 24.21 94.33 90.28 92.25 35.15 98.82 74.27 78.41 80.61 27.29 40.06 95.84 77.68 44.36 48.26 36.19 39.94 21.86 5.73 69.10 97.59 65.64 1.45 66.47 48.62 77.43 49.86 30.17 65.41 8.87 88.44 87.16 5.00 -88.14 81.00 62.96 68.97 75.09 85.35 95.91 13.20 71.90 78.78 68.63 52.46 64.55 6.64 51.51 69.11 87.87 6.46 80.51 40.00 40.47 45.58 55.69 13.96 90.60 87.27 63.87 4.98 32.33 48.79 8.92 87.57 69.54 75.00 16.04 68.46 0.12 71.01 64.37 66.54 82.78 59.33 67.44 64.10 36.73 44.98 49.82 41.69 65.86 18.01 97.52 80.49 87.19 96.84 20.10 18.81 0.75 90.66 38.11 34.91 92.77 22.38 71.22 81.41 29.77 48.29 59.94 80.09 82.13 69.64 5.91 79.71 79.55 47.11 44.69 84.74 38.49 27.37 54.88 10.18 74.97 80.47 27.62 48.43 70.44 13.15 49.52 39.49 47.93 2.31 33.71 36.88 13.34 22.62 9.17 3.16 98.91 78.55 24.11 21.20 -63.56 12.88 26.05 39.27 47.75 84.97 45.67 56.13 82.81 32.26 23.31 76.53 68.87 74.48 78.60 70.15 67.21 65.39 97.42 87.00 93.52 90.88 90.28 60.20 34.89 76.83 94.10 66.03 56.05 17.76 32.65 71.55 90.37 36.04 57.88 80.04 70.20 62.83 64.55 47.59 96.69 73.94 45.20 61.42 46.28 93.01 0.32 45.93 31.09 37.84 14.06 39.00 76.52 17.52 39.72 77.25 32.38 5.63 83.34 90.17 19.85 33.99 19.81 45.77 5.69 41.43 19.64 50.50 79.88 35.19 93.89 15.61 31.45 65.29 99.18 27.80 38.60 92.08 91.07 49.06 70.31 26.47 39.97 93.96 28.43 65.14 27.21 41.24 79.82 22.10 3.84 57.54 16.57 21.60 23.55 29.46 31.84 8.07 88.13 53.11 -37.59 67.35 9.25 91.63 9.02 85.04 81.17 48.79 56.87 43.14 2.39 74.99 36.65 72.72 53.32 8.39 84.01 55.94 81.40 77.58 12.38 59.31 26.01 63.45 41.40 25.41 41.35 82.77 94.25 19.23 9.02 98.00 90.76 83.35 58.36 20.29 23.56 15.83 38.83 1.63 94.99 89.35 82.37 49.11 36.79 82.06 99.23 43.07 99.46 38.56 39.17 50.71 87.42 99.49 16.72 15.96 77.56 35.53 84.84 95.47 93.78 38.54 9.43 93.96 39.49 75.31 44.14 83.12 45.91 7.68 39.02 41.56 64.19 37.60 47.30 58.05 10.94 63.12 63.66 12.51 83.32 50.31 98.89 28.03 8.91 4.01 42.77 7.32 67.33 2.61 55.69 84.89 31.22 75.32 51.49 1.37 78.54 89.74 91.81 92.07 -48.37 64.98 92.37 65.24 47.25 46.27 64.43 99.65 46.77 87.16 17.52 20.11 24.64 42.43 30.02 71.52 80.51 50.83 94.80 38.65 27.01 86.28 58.09 25.49 15.41 72.91 90.28 91.38 3.40 97.62 24.14 23.95 56.85 55.07 96.29 62.08 0.86 21.18 54.25 64.84 84.05 11.84 5.08 62.24 74.19 49.38 59.62 64.97 39.46 22.45 88.89 85.29 38.91 68.27 19.95 93.08 22.93 27.92 48.27 52.09 32.26 38.30 36.76 60.27 90.67 17.73 60.38 80.43 56.76 52.10 9.92 68.61 7.53 11.17 67.90 66.61 86.30 13.34 20.19 94.38 44.28 53.31 79.29 46.97 45.76 57.66 48.40 88.27 11.48 21.80 62.87 19.77 72.74 74.60 55.81 27.97 1.73 93.24 19.35 35.22 -30.67 27.75 35.51 81.87 57.72 13.67 68.18 81.05 6.11 19.94 92.40 71.73 25.43 56.31 63.23 29.23 24.01 86.53 35.13 21.91 37.24 35.75 2.67 21.25 83.74 5.31 88.17 85.69 21.05 35.42 59.22 88.62 56.39 29.94 85.52 28.41 91.32 66.05 81.44 3.71 82.65 23.82 43.92 95.82 43.14 12.70 62.25 98.94 68.49 11.82 89.78 97.79 53.45 76.82 27.90 64.17 18.33 37.76 80.75 40.23 29.48 95.24 93.87 44.80 47.36 13.33 15.62 96.72 86.01 25.21 94.61 80.85 6.76 77.42 15.75 47.83 16.59 45.27 77.34 60.21 1.35 21.65 83.41 58.99 31.81 72.58 52.48 44.11 39.88 34.11 18.95 63.68 19.33 32.63 67.98 27.53 73.30 6.21 74.26 92.14 -90.95 61.39 68.90 2.55 82.00 27.71 65.41 16.35 42.81 0.19 95.84 88.76 92.37 3.99 69.07 22.56 35.54 70.55 44.41 87.96 56.40 45.73 18.00 67.52 58.97 95.50 6.10 28.85 28.33 38.41 40.69 28.34 0.12 79.80 63.07 17.09 33.00 5.08 11.63 8.77 76.06 92.03 15.55 68.70 92.53 51.70 1.70 78.99 17.25 63.01 24.70 47.86 97.57 27.89 60.82 45.42 16.25 74.79 41.98 38.21 3.27 57.07 19.50 75.74 87.42 96.34 44.28 24.44 96.38 15.41 40.49 31.61 12.84 79.82 97.21 81.83 51.48 57.86 0.42 47.58 54.25 95.28 28.93 79.80 89.81 24.68 2.42 39.36 34.39 73.40 74.98 10.32 97.94 5.43 64.10 43.42 80.40 8.72 11.48 42.31 -9.01 69.56 88.86 32.58 66.47 27.55 35.77 74.16 79.04 54.22 98.80 6.92 89.25 3.94 13.49 91.32 92.26 33.19 22.50 72.56 79.35 84.31 2.63 47.66 10.88 32.46 81.19 88.27 0.31 9.45 85.54 70.02 81.96 47.89 69.53 0.05 59.10 38.02 15.02 17.18 4.43 2.90 46.52 21.87 96.12 27.93 31.92 92.00 13.47 75.41 98.03 60.14 95.10 50.68 66.27 70.36 75.88 87.51 97.67 47.22 78.26 80.81 12.64 7.85 57.24 42.21 5.10 29.02 45.06 81.64 52.14 72.49 37.17 63.27 13.23 52.01 44.41 98.23 26.36 97.60 26.11 25.87 86.08 94.30 62.41 27.43 78.44 2.56 71.63 23.00 25.16 90.80 96.42 98.90 86.20 11.35 82.26 14.17 81.37 82.86 -77.88 37.71 54.24 23.20 88.65 18.02 33.51 22.44 32.71 4.52 38.80 77.49 39.69 0.32 57.34 58.81 49.52 56.20 44.64 31.41 98.76 5.95 94.73 31.59 95.58 72.89 73.88 97.81 52.76 72.85 75.17 59.76 31.76 53.04 27.02 98.88 0.56 61.73 25.94 45.39 5.49 30.24 85.06 51.16 36.96 99.09 88.83 94.10 49.76 54.32 82.69 79.40 57.04 69.63 8.82 71.00 82.30 83.83 33.38 62.31 32.03 54.29 22.09 57.38 7.08 27.51 94.07 23.92 83.43 13.44 52.26 86.78 2.39 68.59 58.64 65.03 51.10 5.93 52.66 50.17 90.66 11.70 7.07 35.76 60.98 83.78 54.08 31.00 17.51 57.60 14.33 97.73 98.12 35.58 80.27 84.08 83.47 14.50 37.62 88.74 -77.04 70.54 86.46 81.07 64.45 22.39 34.28 3.67 16.67 58.44 61.85 75.64 89.79 38.55 60.58 12.48 38.16 75.27 45.99 8.37 42.26 45.85 52.48 57.03 10.19 94.14 78.87 18.99 15.73 64.97 85.60 69.72 48.98 74.25 26.51 26.91 54.18 7.71 28.33 78.42 24.68 27.89 47.66 77.76 4.16 35.77 78.54 15.66 78.58 19.40 49.04 37.55 48.96 13.09 73.23 41.80 27.31 3.35 42.17 98.32 50.72 50.51 72.20 37.83 77.21 96.27 86.94 56.61 63.83 1.83 75.35 26.35 91.09 73.32 89.64 16.23 46.86 0.42 91.07 52.49 67.06 88.91 54.28 53.68 23.50 9.72 36.62 68.03 56.22 81.55 18.04 53.07 77.89 55.60 13.68 19.16 22.36 54.44 95.87 91.81 -21.90 51.24 21.77 12.10 57.20 60.68 49.60 43.23 1.50 8.33 47.07 89.72 87.68 58.87 84.41 58.30 4.76 49.98 36.76 92.92 18.44 50.17 89.27 50.21 63.60 58.20 27.12 39.81 49.73 18.93 6.05 21.48 46.36 29.85 73.15 64.91 69.55 26.75 6.10 5.14 39.34 11.87 57.21 51.66 80.71 34.45 44.11 17.84 71.47 32.45 21.17 27.27 15.11 20.56 52.64 44.08 22.10 1.21 60.83 60.98 21.03 83.55 7.82 35.77 12.64 32.38 21.57 56.05 96.78 51.84 42.13 42.53 18.53 58.88 37.34 45.67 87.51 88.29 15.05 60.22 24.15 95.81 68.58 41.62 10.05 42.26 16.81 62.92 68.12 9.87 65.24 41.47 74.84 38.76 53.44 51.06 40.29 13.02 9.91 61.03 -68.37 82.78 14.85 5.84 59.68 69.46 64.81 71.42 63.10 37.85 39.67 94.36 68.10 5.97 92.35 39.82 75.64 38.78 99.03 74.83 23.41 79.21 72.48 32.00 67.94 90.33 0.49 55.98 68.48 62.42 53.39 24.39 61.94 61.10 46.91 89.43 88.67 85.32 84.60 1.42 37.63 73.12 30.34 65.72 22.41 9.68 69.51 70.69 49.05 52.11 53.54 24.71 16.41 60.56 18.45 28.73 97.78 56.58 7.35 79.29 71.77 57.08 68.25 86.27 52.55 3.00 96.31 42.44 57.91 3.53 3.16 98.81 20.66 0.50 19.08 42.34 63.10 8.00 33.99 60.90 39.40 82.72 55.75 77.46 77.87 25.87 60.86 65.70 78.97 11.29 87.56 54.97 83.63 23.53 79.72 29.38 54.18 1.98 88.00 2.94 -20.49 82.75 6.82 80.78 62.01 17.78 32.64 74.57 32.33 55.31 45.82 13.72 67.99 72.28 59.55 15.58 82.58 18.43 44.53 56.78 15.58 30.87 49.67 34.16 79.86 64.54 17.69 40.72 36.21 27.60 50.47 29.07 6.55 1.83 35.05 37.62 46.67 92.69 9.07 61.20 57.77 38.66 41.90 47.21 72.66 4.07 46.30 7.42 39.05 57.63 34.10 23.59 17.28 71.75 8.56 50.19 11.19 34.72 96.55 79.22 84.17 30.86 13.88 8.74 55.11 97.19 14.85 63.70 39.68 32.27 5.73 64.39 23.31 90.63 85.00 54.72 53.68 79.70 97.04 34.74 30.64 18.12 68.68 53.85 1.90 81.03 42.61 22.03 30.63 57.79 44.66 85.19 8.00 66.58 50.80 15.63 60.51 3.53 75.91 0.54 -61.72 82.42 89.88 54.97 78.73 36.40 52.19 80.92 74.52 97.02 94.31 42.76 66.63 43.55 10.69 96.01 42.48 40.12 2.60 4.53 55.13 23.35 85.54 15.76 20.91 94.91 13.40 93.77 67.04 11.22 52.19 97.58 19.36 98.45 1.89 55.78 86.31 83.44 88.62 21.76 30.38 16.78 34.66 86.46 63.05 88.32 40.12 92.25 86.40 8.54 88.55 18.83 86.31 2.80 37.15 42.31 37.01 82.04 60.99 4.07 63.54 74.18 51.13 44.48 64.65 49.24 20.89 14.61 38.24 44.47 22.09 22.05 46.87 80.85 7.41 76.93 73.57 97.80 56.20 48.69 12.66 56.02 60.10 94.72 69.32 77.31 64.76 72.52 85.73 34.62 36.95 28.87 2.07 30.45 53.89 98.22 77.51 23.49 34.15 45.50 -39.78 60.66 55.55 59.35 70.59 13.44 79.33 1.25 10.09 84.20 64.76 62.23 34.19 13.37 85.95 64.03 13.34 30.99 25.46 49.09 52.87 20.12 0.59 91.53 65.54 13.55 37.17 73.67 16.44 12.97 18.75 45.37 26.32 74.65 99.96 7.91 4.03 65.34 52.30 18.90 79.60 65.69 72.59 90.52 31.18 72.51 76.76 53.47 66.82 14.72 57.20 31.60 3.69 77.73 95.47 54.48 40.01 22.03 69.16 42.96 48.55 68.11 34.27 31.39 55.08 49.22 19.87 68.65 26.83 65.05 67.69 68.40 20.31 6.94 68.44 36.73 50.14 12.19 55.22 13.33 34.12 39.76 5.33 17.01 44.37 62.18 6.43 68.33 68.28 14.88 28.59 93.64 37.19 90.05 10.47 36.43 60.87 47.43 36.22 29.94 -36.54 9.66 94.21 2.80 19.27 22.32 67.77 9.39 99.97 81.70 91.50 9.76 52.37 26.89 72.36 29.23 63.17 35.42 68.31 67.63 32.62 9.02 59.57 99.24 75.88 83.25 86.08 8.50 57.50 75.57 24.46 63.44 23.92 18.93 10.03 26.91 71.07 33.60 48.87 86.14 95.81 86.13 26.13 49.56 10.83 80.56 2.42 57.08 14.90 2.10 20.41 41.33 50.44 80.41 69.71 17.84 81.73 70.60 64.72 77.91 26.65 60.91 90.03 88.06 31.17 57.42 20.40 99.04 34.24 39.17 81.49 58.61 72.55 98.72 11.91 76.33 27.56 87.57 36.75 67.08 79.78 85.55 65.21 40.34 40.30 50.36 85.14 52.32 83.12 52.74 0.22 21.19 31.73 7.61 58.59 89.49 45.95 44.89 62.93 33.66 -20.51 2.50 64.01 58.18 49.13 33.85 92.59 29.35 55.87 72.41 74.39 79.16 55.21 9.18 67.99 91.75 70.13 76.54 53.27 56.59 90.34 87.87 63.94 31.74 23.99 12.68 26.06 36.74 70.29 12.69 6.93 44.96 79.13 10.36 20.92 64.39 3.17 97.00 50.74 25.66 70.03 14.19 28.29 81.39 85.23 38.06 95.84 14.27 90.44 6.56 76.41 99.42 62.63 57.47 16.71 17.93 2.44 34.63 20.39 69.68 45.92 3.13 66.43 7.84 34.05 35.20 90.77 99.44 55.44 8.43 69.20 93.32 23.61 47.06 84.32 40.93 66.90 30.90 51.51 70.20 49.58 35.28 94.05 44.27 5.76 49.35 60.04 36.70 59.52 35.38 3.77 55.74 16.08 50.40 94.52 87.63 5.40 75.04 28.76 26.47 -51.55 16.99 5.43 95.42 77.68 4.84 2.09 62.54 26.16 91.11 34.75 51.49 82.26 30.21 61.57 44.16 32.83 54.79 34.81 75.71 95.79 20.66 2.08 12.58 64.35 6.49 43.17 48.45 43.12 66.62 41.26 49.11 13.16 9.32 94.69 34.55 57.73 1.36 90.79 46.39 90.30 53.12 27.96 37.71 10.70 42.10 68.46 53.42 11.18 21.46 25.19 9.43 3.32 15.15 48.55 90.62 71.22 61.58 80.72 33.88 57.45 23.70 59.65 48.96 83.67 35.29 65.50 25.19 84.86 1.99 26.26 92.70 72.17 38.48 82.15 18.89 37.24 35.47 80.93 43.83 63.54 29.45 14.64 38.50 51.29 60.29 92.09 9.72 30.08 5.90 1.32 11.10 2.98 57.07 23.24 96.13 74.99 14.28 76.85 85.86 -34.30 34.75 25.49 56.86 43.65 31.45 54.77 59.09 0.47 2.78 96.67 60.73 8.52 13.56 26.82 64.46 38.66 29.31 62.10 85.02 67.73 3.92 36.00 25.39 21.83 96.98 64.86 4.52 35.95 16.23 34.60 34.44 33.66 83.52 76.14 54.53 60.41 6.32 78.89 23.43 72.30 57.83 74.46 66.81 74.73 82.89 40.28 49.01 79.96 9.69 26.95 89.04 18.32 27.18 98.20 91.97 25.67 2.88 41.63 88.08 22.36 85.88 61.01 18.55 49.73 73.16 60.51 81.44 92.06 87.55 50.47 70.26 71.02 28.52 92.10 4.20 80.77 90.47 22.73 82.50 93.33 20.67 40.84 8.82 93.37 36.08 5.50 2.60 69.29 57.72 4.97 32.60 96.92 52.17 62.28 59.41 46.20 39.95 8.19 24.10 -50.05 80.86 49.04 66.67 58.63 7.93 6.67 54.07 64.82 55.78 95.53 96.67 58.12 17.21 98.04 29.74 93.58 85.42 13.57 22.72 91.64 17.97 91.03 33.27 86.23 82.68 57.32 66.11 14.24 57.02 99.50 68.50 63.19 86.45 95.72 65.40 66.38 17.70 27.53 39.51 99.18 54.22 30.98 1.03 89.17 66.06 80.06 66.11 7.17 96.01 37.14 22.21 64.68 19.28 18.69 99.45 71.49 92.79 36.32 80.32 4.30 16.56 82.79 55.41 0.94 34.07 23.15 53.73 31.24 79.29 84.87 29.31 23.22 3.35 5.03 10.79 25.56 59.03 1.92 18.22 12.57 29.17 45.36 52.94 49.98 15.23 15.04 42.70 11.32 47.46 44.92 69.63 13.66 81.97 8.36 57.51 75.91 97.14 83.43 76.26 -19.47 47.01 77.66 71.08 33.95 82.07 32.18 52.14 63.22 20.12 86.19 24.19 78.21 10.75 27.04 74.95 55.30 77.10 61.56 15.10 22.99 67.23 51.52 13.67 48.58 50.86 73.45 55.39 58.48 29.58 74.77 12.00 63.21 55.86 80.75 43.23 75.15 98.83 89.60 29.69 4.17 35.92 35.46 95.41 85.48 42.91 12.34 1.73 66.26 68.61 77.16 70.16 3.22 55.74 71.89 45.49 97.88 22.39 32.56 11.99 60.94 11.67 59.01 58.69 62.31 22.14 34.98 25.90 60.57 50.55 9.77 31.90 43.02 24.87 5.66 56.35 2.34 71.66 89.20 79.08 38.83 90.55 17.08 65.35 10.73 69.98 46.36 74.64 61.97 82.67 29.74 74.09 81.75 45.92 28.75 61.32 41.83 22.98 95.00 92.59 -72.77 72.03 21.65 89.94 58.26 1.36 40.15 70.07 28.41 79.50 14.80 33.61 22.67 7.09 58.78 70.67 26.55 70.57 43.89 41.45 21.08 61.91 80.35 16.20 69.64 44.75 85.24 73.75 60.66 12.24 25.28 63.78 96.49 48.09 67.63 66.83 12.41 88.61 42.59 7.11 78.52 64.45 18.28 46.51 63.81 57.06 46.25 71.79 43.78 2.09 39.70 82.40 91.16 94.04 10.64 51.62 23.18 33.57 84.74 82.65 83.30 35.08 42.02 80.42 1.44 6.63 21.90 43.32 58.47 58.26 16.35 49.52 89.06 86.54 87.41 73.02 78.84 32.02 69.38 26.98 24.39 6.86 13.14 46.20 63.21 96.34 4.36 82.46 28.63 36.82 67.45 38.15 45.96 91.37 48.88 81.69 3.66 11.78 56.88 1.86 -13.94 79.65 55.49 47.88 6.78 94.24 1.81 34.31 92.84 95.99 22.99 98.86 65.22 68.80 90.18 23.32 3.88 25.81 61.88 88.09 91.33 44.27 7.65 10.94 73.89 45.03 2.32 72.94 91.11 31.58 98.89 8.61 94.19 93.84 45.99 88.56 86.42 47.21 4.19 48.21 85.36 70.16 51.12 28.92 51.07 31.87 43.25 52.59 44.91 53.51 32.91 30.67 96.70 58.49 68.49 35.45 8.21 12.04 33.91 8.90 39.77 33.94 85.17 56.54 60.33 5.58 88.22 36.78 41.91 71.74 80.69 9.77 56.13 4.63 57.70 36.78 14.93 5.68 21.34 15.91 66.42 29.49 0.11 44.82 97.23 4.25 34.55 0.08 37.91 72.80 6.09 35.12 68.28 2.95 70.73 82.25 82.08 24.77 76.99 5.59 -62.79 5.26 67.89 2.15 40.57 11.03 2.42 25.99 81.10 20.71 45.87 89.91 54.05 70.99 64.57 53.51 38.70 27.90 60.68 77.65 89.81 27.49 40.30 7.62 80.87 39.84 37.38 72.08 64.70 9.70 66.35 34.81 87.44 82.72 97.02 44.49 13.51 38.73 66.95 82.61 82.00 90.97 65.16 71.26 42.84 60.55 34.88 46.40 75.30 51.94 30.67 96.48 38.86 47.27 59.01 92.53 53.74 19.88 51.22 41.10 98.62 89.22 41.95 60.87 47.92 44.32 63.87 83.53 31.00 16.34 3.66 21.37 85.49 99.40 21.20 53.52 92.55 81.03 46.35 43.13 70.15 63.44 9.42 85.54 28.29 50.06 85.40 87.60 82.85 16.70 2.17 4.19 78.43 86.04 27.99 88.70 99.47 96.01 70.47 93.20 -22.95 26.84 61.37 83.92 92.24 57.00 47.35 91.10 51.22 28.42 60.24 10.35 21.58 94.53 8.74 53.07 18.35 67.07 26.41 39.11 76.77 0.86 99.66 80.63 27.81 85.80 17.21 48.97 87.53 9.06 61.46 53.91 35.36 28.06 79.25 31.53 64.76 80.06 18.71 74.01 62.20 40.79 45.23 74.20 32.20 22.27 22.44 61.58 0.78 40.72 81.32 3.71 90.14 35.77 25.41 35.52 40.17 4.70 41.50 87.89 2.82 74.83 51.12 36.38 88.97 83.73 66.45 32.34 89.39 46.90 9.19 50.76 58.23 51.87 79.39 65.54 34.61 60.74 78.20 46.41 15.64 63.99 98.08 90.04 93.87 16.61 79.84 47.86 73.46 19.87 15.97 19.67 3.85 86.33 3.30 14.66 19.20 62.21 33.39 29.24 -95.89 16.98 81.83 89.22 48.09 64.73 47.31 77.11 75.84 37.29 11.11 37.24 84.23 19.49 74.13 9.54 15.25 25.51 18.70 60.98 28.73 86.09 60.95 61.14 44.14 91.89 79.48 5.96 95.27 22.38 81.27 32.28 56.89 41.01 71.13 9.38 53.06 16.76 72.30 59.87 70.49 83.34 83.50 24.92 70.41 56.28 78.80 61.66 63.00 66.14 21.32 49.64 43.22 29.05 24.30 95.85 66.04 27.23 35.03 83.30 56.38 44.94 86.77 79.29 12.90 0.97 62.82 79.85 55.06 63.25 92.38 96.46 21.55 95.60 3.98 86.00 15.06 99.02 1.62 86.47 81.80 63.79 40.10 59.13 37.28 7.63 81.09 57.92 19.59 8.60 7.18 58.97 50.24 95.75 82.07 64.87 12.57 63.13 18.12 11.90 -72.16 89.51 99.60 47.62 82.30 1.40 86.53 9.50 8.19 90.68 40.12 69.66 50.43 74.72 35.16 76.68 13.28 26.13 99.79 65.98 33.91 20.75 46.33 86.42 34.36 92.53 67.40 99.29 36.05 24.85 90.64 65.55 60.11 78.26 29.69 71.48 54.99 64.32 36.42 83.34 55.83 69.57 26.67 92.60 28.97 90.55 43.96 61.62 64.78 82.57 56.47 58.05 22.92 43.75 51.68 97.80 26.26 82.59 79.77 12.31 93.06 37.10 77.05 28.05 94.70 16.11 16.66 25.35 77.94 84.84 60.39 93.31 82.29 79.52 46.49 84.35 13.44 13.87 78.81 80.30 39.87 7.44 47.59 10.95 70.68 57.83 75.44 66.46 28.81 79.86 64.78 59.69 99.04 91.34 68.34 57.10 57.71 33.80 92.19 74.72 -17.74 51.21 22.02 80.35 69.78 26.49 46.14 25.58 35.88 55.48 66.74 30.99 75.88 34.64 61.71 38.70 2.16 88.21 12.89 47.08 60.82 84.39 93.80 79.02 14.23 80.30 97.53 21.90 92.14 73.44 28.24 82.43 78.19 84.59 71.75 40.79 62.70 76.80 1.64 80.08 60.81 38.33 5.71 50.04 24.39 4.21 21.03 10.10 54.88 51.41 38.88 53.78 98.92 99.54 43.01 60.94 13.24 40.08 81.15 94.24 10.70 93.26 58.01 66.81 73.43 10.02 23.92 62.14 42.74 61.37 7.98 6.18 35.75 67.09 87.72 56.86 32.75 6.87 95.90 18.69 6.12 36.02 5.47 34.65 6.77 34.76 41.52 38.75 43.45 87.90 58.04 23.13 1.25 91.39 64.94 37.73 87.65 49.29 19.85 30.16 -65.58 74.98 2.29 60.03 80.70 16.67 1.84 84.89 41.12 97.35 11.56 54.20 80.95 89.77 10.75 63.06 91.17 40.02 83.04 88.31 17.37 89.87 26.49 16.32 92.54 53.96 2.18 95.67 71.77 8.46 56.02 45.82 49.99 81.96 70.54 87.71 27.25 47.94 99.45 50.91 8.19 15.47 37.47 21.48 59.92 7.68 93.99 99.91 36.25 98.36 60.86 21.91 92.87 25.11 22.77 55.20 38.07 39.02 44.76 89.60 46.81 78.96 17.09 48.63 79.07 20.33 52.23 99.07 75.09 4.99 92.50 45.75 42.45 30.70 85.21 95.58 31.94 88.82 23.34 54.80 8.57 85.91 93.69 5.22 84.57 76.58 55.47 16.05 24.50 20.22 47.74 36.15 6.99 90.62 77.10 81.86 69.55 67.43 14.81 92.74 -24.60 63.02 5.42 85.50 53.67 85.63 8.79 14.38 88.73 78.70 79.27 41.88 38.28 79.72 69.41 63.75 0.15 58.60 16.68 73.30 48.06 51.77 71.97 52.07 93.50 35.53 77.38 82.57 84.31 79.48 16.18 96.53 85.29 8.60 23.71 13.78 50.30 96.32 17.47 56.15 45.88 34.51 60.61 85.03 69.67 96.96 94.23 9.47 39.46 20.92 47.49 77.54 96.40 58.76 23.84 44.83 54.72 79.72 9.82 42.80 53.51 5.48 48.93 87.80 74.46 19.69 87.87 11.45 13.97 79.93 94.10 40.59 65.08 60.94 11.30 1.74 68.29 94.74 86.02 31.61 64.89 72.20 94.36 62.89 58.17 39.85 64.96 23.78 11.49 45.37 26.75 15.44 41.35 23.22 31.39 71.51 55.00 62.13 96.84 62.99 -64.35 7.26 52.26 23.24 53.55 13.40 31.66 35.13 59.15 75.65 85.62 52.63 37.68 1.98 1.85 31.71 83.36 90.69 10.37 91.72 51.94 95.89 12.14 46.27 92.74 5.59 61.41 27.11 12.35 64.95 79.88 63.98 11.35 75.52 81.06 7.62 91.41 4.29 30.48 16.33 22.30 88.08 23.08 43.56 12.79 26.43 20.90 1.96 54.85 38.45 81.81 75.99 18.32 16.81 80.93 3.81 57.53 33.54 23.19 69.87 86.46 64.85 54.25 67.66 12.64 91.75 39.85 73.31 29.98 41.38 32.28 29.56 99.46 74.72 79.80 1.43 71.86 65.74 25.44 72.62 96.96 9.60 31.29 69.75 66.46 85.91 53.13 96.05 19.38 52.43 34.30 65.75 70.00 14.88 2.23 69.91 36.87 45.97 81.29 51.54 -91.11 35.99 20.97 70.68 90.22 10.77 15.04 8.63 62.26 0.40 40.52 93.17 56.37 11.03 0.17 19.65 75.94 87.94 80.59 61.35 67.10 39.07 1.47 53.92 90.88 82.93 27.65 19.14 88.92 80.45 39.09 37.36 75.73 52.13 26.25 46.46 89.53 94.24 59.24 38.92 81.76 61.79 91.87 40.53 45.81 63.25 97.53 54.10 93.09 88.25 33.71 17.74 2.48 42.97 58.31 3.53 75.03 87.95 89.92 89.52 42.78 31.20 81.74 85.31 9.54 28.74 68.38 74.06 4.83 52.17 83.00 14.95 51.85 57.43 16.22 31.39 84.53 12.01 89.28 20.70 97.88 51.69 54.39 86.71 32.02 72.43 37.34 22.77 25.66 74.20 90.09 2.90 75.24 50.95 13.27 41.65 98.50 74.68 3.65 72.01 -74.51 23.55 5.69 32.91 53.66 55.77 56.85 70.40 25.98 2.85 86.72 26.71 66.09 86.70 85.05 5.19 10.47 64.83 64.28 54.64 11.11 10.89 47.13 37.15 47.74 1.31 12.37 49.43 81.78 95.17 19.16 52.36 89.59 54.06 92.62 70.28 84.21 84.45 64.79 79.62 76.59 28.74 72.04 5.21 71.44 47.78 15.80 51.40 58.85 87.55 61.95 13.08 95.29 70.31 9.30 95.95 58.70 65.06 0.33 51.89 9.47 33.50 98.18 70.93 77.81 70.29 82.91 37.19 52.70 35.91 63.46 8.36 78.50 20.55 41.40 22.79 3.72 76.19 86.53 8.30 19.18 4.49 75.62 83.24 20.21 92.81 77.37 26.30 8.14 48.18 65.55 80.05 23.54 13.50 67.81 63.40 36.84 49.57 20.74 47.89 -10.39 47.92 3.85 90.24 49.28 16.95 29.08 31.87 74.45 85.16 59.15 31.78 32.52 8.37 93.44 36.55 65.86 85.05 90.16 72.63 21.17 3.50 47.74 48.81 35.70 17.57 43.04 58.44 64.62 51.77 52.23 51.06 66.05 94.33 3.12 26.40 22.89 38.03 15.96 50.57 26.07 44.83 67.75 70.28 93.11 88.89 62.02 19.92 12.04 43.57 70.22 43.63 93.89 25.63 34.96 43.50 48.22 45.71 26.34 23.26 26.25 7.80 26.96 18.18 22.48 10.72 38.82 99.78 11.71 31.64 97.63 32.48 99.64 68.96 25.66 70.48 67.20 56.72 52.33 48.09 70.33 7.13 81.66 57.21 34.25 81.11 40.27 60.77 76.80 82.50 75.29 89.07 32.97 79.26 4.86 55.11 93.90 83.75 77.50 21.86 -8.95 37.70 12.34 78.11 45.73 99.80 44.97 82.04 61.05 32.32 99.62 73.71 67.13 6.51 27.56 13.84 71.32 16.75 95.26 69.65 30.32 97.84 77.54 82.48 55.14 28.17 12.38 25.70 56.94 75.52 60.64 0.34 7.58 49.19 16.42 5.99 47.72 71.93 86.65 74.04 5.13 68.63 46.97 49.44 19.09 74.28 34.18 97.40 52.11 50.53 10.70 51.56 27.67 38.12 2.45 64.32 71.30 45.74 22.92 80.86 93.15 0.87 28.44 61.82 72.90 11.89 68.97 94.47 10.74 43.09 10.26 81.42 56.92 78.46 58.37 40.88 21.86 2.39 2.43 21.06 84.05 91.64 27.34 20.50 91.64 97.89 94.83 24.30 67.80 5.75 33.62 77.77 50.52 85.56 39.43 17.41 72.87 43.17 38.71 53.25 -81.76 42.15 55.11 32.94 61.65 27.17 29.27 69.17 84.84 54.12 27.07 20.66 73.16 42.80 88.22 41.18 58.33 91.73 25.81 67.36 42.16 33.73 13.28 1.16 24.56 43.14 19.29 69.73 86.58 69.00 49.76 86.46 13.60 32.61 0.41 79.65 17.30 81.69 76.23 47.83 7.72 78.98 84.26 16.52 97.59 21.08 33.28 9.19 55.27 72.05 35.49 31.92 94.89 96.41 25.80 30.54 81.14 65.75 23.62 0.64 8.56 67.52 76.01 72.41 98.12 21.41 48.80 28.50 27.00 6.60 63.49 13.55 1.93 65.24 4.33 24.49 46.32 49.42 63.66 47.72 28.35 43.02 98.20 61.51 64.70 58.15 50.05 56.62 5.20 1.74 78.06 25.46 76.18 59.88 98.61 34.54 5.16 40.55 69.00 0.72 -30.28 2.22 39.92 24.93 69.60 59.75 31.21 40.15 20.70 22.96 10.83 12.59 35.34 82.81 33.38 22.73 80.94 9.72 38.22 94.31 82.70 64.19 27.53 8.84 43.70 66.10 12.25 13.01 23.74 52.98 33.93 13.67 43.86 82.17 23.33 72.65 53.73 35.52 95.85 58.90 87.97 94.97 23.97 89.00 81.24 16.96 64.70 42.43 70.09 95.31 54.54 22.57 79.22 9.00 73.93 11.90 63.76 65.71 94.73 69.43 65.80 64.63 94.61 14.46 94.60 80.93 84.76 84.34 44.75 76.90 99.85 65.10 15.29 59.99 96.15 21.76 80.74 66.75 17.34 10.57 7.07 5.35 63.03 36.86 41.68 4.56 81.74 54.17 19.39 2.72 39.23 68.11 87.86 88.08 75.22 25.03 45.25 97.39 81.26 23.47 -34.44 48.95 42.31 73.23 57.07 45.11 67.68 90.74 42.75 46.89 5.91 66.43 11.23 88.62 12.42 74.23 56.34 85.05 33.02 77.23 19.14 81.27 43.88 86.18 95.69 85.20 76.46 58.33 9.27 19.96 38.37 74.06 85.84 94.15 56.24 58.85 21.71 0.65 82.55 78.47 42.69 96.31 51.36 79.58 1.17 13.02 69.83 28.75 57.75 0.27 33.23 16.96 40.69 89.30 2.26 32.07 75.06 6.68 20.24 53.09 38.14 79.96 59.18 13.51 73.51 84.43 77.08 66.61 2.51 33.56 23.11 57.85 49.54 9.21 72.53 87.15 56.47 53.25 28.02 46.55 47.61 51.80 31.45 58.83 5.16 68.95 56.10 6.14 20.28 60.79 96.05 4.71 21.00 6.02 51.15 40.18 25.79 13.42 52.92 33.91 -73.47 12.17 70.90 89.03 44.37 87.83 57.25 93.24 19.49 94.76 56.87 93.54 89.41 18.98 33.99 12.15 48.51 90.80 0.27 62.07 13.01 53.30 8.71 41.07 25.08 13.11 64.89 7.32 77.30 98.81 73.26 64.87 90.34 39.36 95.91 6.03 44.31 28.50 27.15 50.00 32.82 12.96 12.35 31.35 72.12 49.11 21.59 54.00 81.59 28.82 91.92 36.03 95.59 86.20 49.61 90.26 85.44 14.33 87.66 88.40 48.54 97.33 40.81 26.12 15.64 68.38 91.15 15.53 53.43 70.44 56.88 63.01 3.99 90.83 16.36 80.72 77.89 76.28 21.83 90.46 73.49 45.99 73.37 68.88 80.75 83.73 7.83 94.59 74.59 91.31 19.51 23.17 54.85 58.05 76.78 21.63 66.16 78.10 83.88 42.91 -56.79 43.96 63.11 3.53 44.47 55.71 37.73 34.15 33.31 22.28 45.58 90.00 64.55 92.36 14.40 8.10 93.69 51.90 40.61 67.90 15.35 70.66 5.94 94.22 51.29 59.28 94.14 66.29 94.66 12.16 65.72 6.96 73.01 73.01 13.95 70.81 56.29 80.63 35.42 82.79 67.07 74.50 67.72 15.43 43.34 95.84 4.04 94.15 23.38 56.50 20.43 0.50 94.74 56.83 27.67 55.55 82.24 41.08 16.09 67.45 79.25 30.20 7.35 20.25 58.13 27.02 39.12 13.05 12.90 4.75 40.26 18.92 10.29 71.08 60.77 29.23 70.25 47.56 59.85 19.45 16.34 4.62 38.98 83.80 96.04 28.63 82.45 26.11 91.78 76.41 27.59 98.31 2.63 22.82 0.23 81.97 23.10 58.24 70.27 1.95 -0.95 26.01 63.41 97.40 94.20 81.76 37.81 74.58 50.62 33.88 70.01 22.06 60.01 89.80 12.37 60.19 51.77 67.87 68.03 94.04 89.23 46.81 51.87 20.04 71.84 26.65 64.72 17.59 12.79 45.26 68.86 37.02 85.07 48.02 10.16 43.13 22.38 57.94 27.08 36.30 96.50 67.05 92.20 78.43 5.79 80.87 57.47 37.55 9.69 20.33 34.99 75.24 51.98 83.44 64.16 84.46 84.72 99.60 54.05 26.30 54.38 72.89 71.53 91.47 5.48 42.75 9.54 93.14 80.81 94.54 98.00 55.81 65.10 88.05 38.69 79.95 31.66 88.89 52.88 90.45 1.73 46.71 19.69 29.76 20.04 16.00 70.03 27.35 33.79 28.59 65.49 3.01 88.87 71.00 4.86 14.77 39.21 64.39 35.21 63.32 -59.54 77.33 8.32 11.91 17.70 21.65 58.01 38.39 8.81 78.34 45.66 73.35 72.04 11.12 66.16 1.08 92.20 24.83 27.72 1.42 54.88 95.68 2.31 78.50 45.23 28.48 42.37 75.06 69.35 79.75 28.76 62.46 37.11 34.74 81.28 8.72 9.65 61.53 96.33 0.69 84.71 53.42 55.31 19.27 24.73 41.06 67.62 90.99 32.08 57.01 90.19 85.38 28.83 47.00 13.78 74.54 92.46 57.63 19.05 44.44 78.13 60.52 20.88 8.53 95.26 2.14 29.29 13.72 22.92 75.44 74.59 85.28 69.30 47.31 24.11 44.96 74.76 19.64 57.96 69.24 42.07 37.14 77.12 86.96 11.32 3.36 17.80 64.86 13.88 30.13 76.85 91.90 51.97 94.26 10.27 73.49 12.25 20.19 79.59 82.17 -82.28 98.04 96.27 89.39 77.48 39.40 73.28 33.72 62.91 43.85 39.42 18.27 41.67 99.81 27.48 73.34 89.73 47.28 40.82 10.94 55.75 38.98 75.76 88.37 44.04 65.38 9.74 34.46 83.34 15.38 56.12 77.17 15.95 95.22 31.14 18.41 94.12 45.59 85.60 10.34 14.31 61.52 11.53 31.45 50.53 99.39 11.15 87.71 38.30 64.27 33.30 31.17 57.11 8.81 70.62 66.61 13.07 25.63 41.48 38.26 20.92 34.28 92.30 61.32 68.19 40.76 38.39 22.16 96.36 0.84 65.75 5.93 20.80 52.04 68.56 88.39 67.53 13.01 6.77 41.66 22.88 95.62 68.09 75.55 80.48 28.92 58.52 46.23 8.42 61.00 3.23 13.25 43.26 5.61 34.01 72.51 68.68 92.71 7.96 20.14 -25.46 84.08 64.94 61.22 47.85 53.69 59.04 79.12 91.33 0.85 62.38 60.41 38.57 33.87 30.43 47.30 43.64 49.78 59.38 77.61 20.83 39.86 34.56 95.39 8.62 21.06 4.05 39.21 75.79 87.32 82.61 62.04 14.89 40.65 82.21 54.87 1.42 94.73 13.84 71.22 3.64 37.05 41.50 29.63 69.32 40.24 65.43 14.88 58.04 84.64 93.34 40.11 1.27 6.21 20.49 89.26 18.82 21.51 18.17 85.88 22.33 89.15 18.23 37.27 42.57 55.04 47.07 34.09 57.63 53.52 3.38 85.94 35.19 53.96 85.54 48.09 61.17 38.45 62.14 11.69 81.85 46.81 0.51 56.53 74.41 29.43 80.09 62.91 3.12 45.20 52.64 10.36 46.28 75.03 51.73 62.24 57.84 11.29 17.57 23.61 -10.84 19.36 36.90 85.87 51.71 87.15 99.50 94.05 75.86 43.50 57.28 81.02 98.23 66.42 74.61 40.18 57.66 85.74 24.79 67.51 4.64 94.51 79.20 37.83 34.53 8.20 1.09 73.39 7.80 56.33 60.98 53.55 45.47 95.04 33.89 50.58 94.58 56.18 99.68 39.31 40.96 13.75 35.93 18.92 37.47 72.71 46.35 35.82 28.63 60.06 10.86 73.94 38.04 4.76 19.95 31.46 30.79 58.11 71.12 47.22 69.64 39.32 73.61 7.47 87.00 42.58 13.64 64.83 31.22 80.80 57.00 90.28 45.00 5.60 48.87 65.18 56.56 69.98 58.84 40.12 95.34 78.87 74.30 84.30 54.93 88.76 97.08 50.47 62.87 80.84 84.77 27.25 25.37 58.99 75.81 76.77 83.04 38.07 7.20 29.43 -22.72 47.14 96.07 73.00 4.35 66.35 49.55 77.89 8.37 18.36 26.32 6.36 23.19 86.35 69.45 48.52 87.67 89.14 87.88 18.82 1.00 18.40 35.47 53.20 48.10 89.29 2.15 83.06 71.37 67.48 97.94 91.29 63.86 20.50 89.81 57.63 47.56 13.39 89.97 67.93 50.71 42.85 49.13 30.03 65.48 39.10 27.64 19.08 61.12 21.32 68.86 20.35 83.26 74.52 81.38 19.82 87.10 28.16 68.36 59.13 52.17 5.59 51.24 47.75 66.23 53.72 35.20 94.95 89.83 74.94 27.77 5.42 5.61 69.19 33.48 37.50 9.08 63.74 34.89 77.10 35.14 69.29 39.73 37.51 78.16 32.12 52.92 76.69 53.12 91.24 6.89 39.10 1.11 85.61 41.17 86.51 94.46 59.54 15.88 64.48 -47.34 57.86 33.87 22.17 83.66 55.81 49.13 84.84 27.52 19.35 6.91 1.21 16.50 68.07 53.83 71.52 98.12 6.27 14.69 98.62 13.81 43.64 67.91 40.77 37.63 78.28 52.97 92.64 77.07 8.13 28.93 6.14 64.90 69.08 89.20 9.98 5.00 98.49 7.84 19.31 51.61 19.18 67.41 52.61 3.16 29.87 65.32 80.73 82.06 55.19 65.28 14.94 48.95 10.62 52.32 22.71 31.70 19.35 86.16 17.74 11.45 85.44 17.83 79.92 78.24 12.94 1.67 98.57 71.57 62.56 48.69 56.78 12.50 89.77 70.09 16.94 14.32 39.76 52.77 94.30 97.74 73.21 36.80 29.34 99.82 24.68 92.43 22.20 87.59 49.89 17.41 11.80 0.15 68.22 20.39 79.28 52.33 32.27 49.91 15.61 -85.45 11.52 98.96 3.70 1.94 21.38 23.40 4.34 27.85 45.15 42.23 47.29 52.64 89.70 20.19 20.51 70.10 50.91 9.08 90.58 61.13 57.84 33.91 0.77 20.31 12.20 89.17 11.61 75.19 56.34 21.55 95.93 19.93 64.93 15.94 31.17 37.16 6.25 27.69 89.83 24.59 74.39 63.15 74.61 68.90 13.80 29.16 18.98 52.59 68.76 32.87 83.86 52.05 58.85 49.75 25.34 74.44 54.24 52.16 37.94 56.72 67.68 98.97 9.69 25.41 95.44 40.95 56.08 15.13 30.76 88.53 72.53 37.13 4.99 58.77 71.01 84.65 48.59 29.72 59.62 95.58 12.20 96.16 67.03 89.71 93.55 47.67 40.74 60.17 24.01 44.15 87.81 55.44 43.48 39.19 88.72 93.79 89.32 58.83 36.24 -26.33 73.88 80.57 98.70 7.47 72.46 74.74 0.50 96.83 63.63 8.68 18.28 28.67 27.32 69.25 5.81 83.34 98.28 94.29 91.36 80.75 46.09 33.27 59.84 97.89 10.54 73.48 21.12 46.04 83.94 51.83 93.61 12.66 4.29 44.94 60.30 68.98 26.15 44.73 82.95 70.19 36.01 83.38 23.24 96.67 46.57 75.59 3.88 32.84 18.44 49.49 69.53 7.39 41.71 67.44 4.61 65.06 81.16 3.13 53.81 97.70 55.49 98.84 47.70 4.87 72.24 90.20 32.34 85.59 93.87 43.28 11.64 96.37 65.03 85.37 36.62 65.64 72.85 94.47 22.28 74.19 18.40 16.97 53.82 97.26 64.16 8.50 45.21 97.47 78.31 9.67 60.97 42.91 52.72 82.39 14.70 11.57 31.65 55.35 71.94 -37.79 49.10 63.69 33.72 16.80 9.14 16.29 15.86 37.03 95.14 26.51 94.72 52.99 83.66 54.99 10.14 49.71 24.44 29.46 60.89 40.36 86.50 41.08 49.81 94.08 23.24 8.28 51.68 72.22 13.25 66.16 0.54 50.71 19.38 19.99 36.92 68.65 9.70 7.20 70.71 76.79 79.99 99.84 9.85 74.31 27.04 74.86 27.97 37.38 82.12 3.46 41.27 45.23 33.51 82.39 36.02 35.78 11.71 66.18 22.99 48.38 65.15 95.52 28.88 23.76 24.43 84.03 48.63 98.69 14.21 25.69 12.34 56.22 50.11 50.12 94.21 44.35 29.01 87.73 81.19 55.39 33.43 28.73 97.90 53.76 89.38 1.65 52.10 52.56 56.59 44.62 20.41 47.77 59.41 85.82 61.93 9.86 30.60 30.12 3.14 -88.69 54.99 0.01 37.95 17.96 68.95 21.23 88.33 42.72 98.47 25.86 11.32 73.11 71.13 49.58 91.74 94.98 79.23 9.41 16.67 23.39 34.00 94.91 88.26 67.59 2.96 26.55 5.07 36.44 8.06 5.90 15.76 36.98 38.35 24.63 54.70 2.68 91.00 29.92 19.48 84.48 57.46 29.78 53.68 0.53 24.36 97.54 66.16 39.93 53.32 33.69 52.32 97.75 84.09 24.43 40.15 56.71 32.25 97.27 8.79 93.11 18.66 53.63 14.62 58.36 96.91 77.02 21.73 71.12 47.54 62.60 82.99 22.38 75.42 64.30 41.58 52.16 70.05 80.34 17.95 82.51 39.65 22.20 74.91 84.24 21.92 58.62 11.02 44.70 57.96 67.06 22.99 99.42 17.04 38.94 29.76 11.62 81.37 65.59 15.28 -15.86 92.48 96.05 15.85 89.43 83.65 77.92 99.58 62.68 97.58 15.27 37.21 16.89 34.69 68.18 18.28 64.32 98.06 23.82 45.57 5.06 14.13 31.56 63.02 82.50 90.17 6.54 73.65 72.32 50.14 13.12 48.39 2.39 45.57 46.83 6.52 1.29 71.84 75.70 42.06 9.91 67.28 85.42 14.27 54.59 23.78 30.77 47.47 77.06 19.75 19.72 13.69 17.10 74.20 12.26 53.47 66.81 16.82 65.65 21.49 76.08 55.29 19.35 86.20 25.08 18.49 68.95 53.81 16.79 27.85 58.87 59.94 9.99 29.23 51.71 44.49 85.58 83.66 32.44 46.64 20.09 7.40 35.69 39.07 62.60 85.75 96.94 4.75 35.38 31.18 20.46 81.68 39.95 80.62 3.87 51.31 70.67 36.89 40.59 37.36 -92.29 31.42 4.34 17.77 83.45 50.20 29.27 97.82 6.06 63.87 83.54 35.51 1.58 92.09 89.38 35.71 61.04 63.63 22.99 78.54 57.58 34.53 86.51 60.76 59.76 96.64 85.82 8.41 65.78 39.28 22.64 98.76 5.83 32.41 76.42 92.60 78.27 93.28 61.11 7.92 25.82 19.88 37.64 42.65 28.18 93.90 12.09 40.85 62.33 14.63 28.55 3.24 29.90 89.93 90.10 3.04 63.66 98.35 3.45 2.59 76.54 13.82 71.10 32.07 91.97 48.74 40.94 87.55 35.30 48.75 37.22 11.77 16.48 50.13 90.18 57.29 65.01 42.05 36.68 7.09 48.73 9.18 39.89 73.73 72.71 16.05 48.44 69.24 89.67 99.66 0.87 83.88 97.24 73.99 79.34 12.67 41.17 93.62 3.61 96.06 -94.70 5.52 67.68 83.29 41.35 59.53 24.31 20.33 2.04 33.15 51.76 52.04 0.77 81.76 48.91 52.55 26.02 43.55 44.90 85.08 77.95 13.77 41.58 45.42 65.72 93.09 40.32 51.78 68.59 33.15 94.14 41.52 62.84 88.33 63.45 57.99 43.40 65.96 65.59 33.59 75.67 61.49 71.15 23.18 37.26 20.96 51.23 11.14 41.40 1.51 6.73 75.48 12.78 52.77 82.44 80.46 10.78 91.25 43.94 45.16 46.09 18.54 66.42 10.41 88.82 90.13 16.82 30.26 60.47 24.73 50.22 47.23 18.39 40.03 84.87 84.01 29.90 30.89 40.49 71.78 2.85 74.82 2.22 84.02 26.97 1.01 79.64 85.05 24.05 41.91 96.42 64.13 3.36 30.14 54.69 37.34 41.73 6.29 27.24 11.22 -34.97 1.10 57.72 79.27 4.81 13.77 56.07 40.99 91.82 19.72 7.13 64.82 9.91 36.40 94.93 13.04 81.83 5.43 88.29 43.61 81.85 94.96 72.24 5.75 97.90 52.21 56.61 35.28 40.28 74.13 77.41 79.25 50.33 13.41 59.23 80.15 36.28 90.75 10.52 16.63 29.73 16.58 78.94 8.97 52.73 54.98 53.76 9.16 3.42 45.06 84.51 37.42 97.94 96.69 50.04 65.14 4.36 20.25 54.34 63.68 91.13 16.67 2.19 65.54 73.30 2.81 92.35 26.72 17.11 0.66 81.73 73.89 0.84 52.09 29.60 42.95 57.44 62.68 81.81 40.72 41.17 35.64 15.25 96.16 29.07 57.18 68.15 50.83 75.24 24.28 75.10 65.03 81.04 49.40 12.06 45.51 58.96 35.08 88.76 17.36 -31.51 44.01 56.53 63.03 94.50 28.17 67.62 44.74 13.53 22.81 11.71 74.36 45.42 78.34 55.37 45.16 95.94 7.57 38.43 79.02 7.18 4.63 39.26 32.73 17.18 41.85 77.35 8.83 73.46 14.36 6.09 27.02 8.20 92.14 6.06 43.46 32.76 60.74 9.22 67.31 77.03 30.45 41.88 2.00 83.20 88.57 87.04 53.64 68.31 21.91 9.52 88.37 4.00 21.68 37.81 55.76 29.83 47.04 90.84 48.00 27.85 99.34 3.55 86.61 72.11 46.43 17.11 11.23 47.56 15.56 44.89 19.72 74.83 73.19 2.55 41.91 81.77 48.40 64.06 15.08 90.79 69.08 44.47 38.41 91.53 32.68 34.18 13.46 26.30 57.32 28.85 26.66 74.46 50.60 78.59 93.56 24.92 13.57 55.61 8.01 -80.04 8.60 17.72 94.76 64.91 19.44 95.83 33.15 68.49 89.27 29.85 75.56 56.39 44.43 76.80 40.41 4.84 34.49 92.36 36.32 90.98 82.41 0.44 87.79 19.90 32.94 6.02 97.02 9.02 34.16 55.81 46.94 35.54 67.70 93.41 36.58 77.99 14.61 93.80 32.61 37.40 0.11 12.16 78.98 58.53 33.19 56.66 58.54 4.16 33.15 72.99 4.31 73.42 8.60 31.27 23.30 45.41 54.59 46.94 38.70 8.31 66.59 26.87 46.22 26.66 5.88 21.07 74.70 45.94 55.92 35.29 48.22 68.41 18.86 14.25 67.04 86.18 92.40 53.52 73.28 81.95 40.05 10.33 63.74 24.93 53.20 46.87 45.25 56.51 3.81 88.02 57.52 67.32 80.56 29.33 79.67 54.36 83.52 56.25 71.35 -97.89 81.33 5.24 73.81 60.24 18.73 41.03 27.33 62.73 53.44 75.15 91.20 92.64 78.02 10.48 65.55 27.69 73.27 52.19 96.25 31.66 69.15 31.01 35.56 64.77 70.17 83.27 57.27 15.20 30.19 14.45 12.74 80.59 18.52 93.91 1.99 54.49 6.06 66.18 75.92 36.30 59.49 50.56 30.82 40.23 39.43 9.84 53.52 64.64 86.72 26.90 87.07 43.32 60.42 76.47 12.18 72.73 40.23 25.26 11.45 2.15 17.19 64.07 16.32 80.29 41.22 15.18 83.72 45.63 42.77 48.46 46.35 11.28 99.52 11.70 30.07 9.54 76.68 79.40 22.47 58.93 66.28 28.93 39.81 62.87 54.69 12.82 23.97 9.77 29.98 43.96 94.61 56.58 16.42 14.33 74.73 89.01 84.33 64.21 91.48 -48.73 39.55 63.25 27.70 66.62 43.08 64.18 93.15 25.23 54.32 93.94 49.38 55.57 59.66 4.74 98.23 66.55 42.86 51.39 12.03 50.27 11.35 48.60 45.62 61.92 14.91 37.39 76.21 7.23 21.70 99.07 39.80 30.10 10.90 21.70 96.26 49.72 57.77 31.71 87.13 96.90 58.61 23.75 39.97 63.47 77.02 82.24 41.77 8.55 45.61 8.73 70.95 99.71 19.01 85.02 97.13 57.85 72.17 24.31 92.62 41.78 7.36 17.84 12.13 56.02 88.43 96.78 67.56 21.48 88.31 80.86 2.97 53.41 55.51 86.05 48.65 4.37 82.07 55.23 70.53 32.66 42.28 90.07 26.87 23.37 1.47 44.96 5.77 35.96 21.82 99.15 98.23 33.07 95.85 21.51 69.24 95.63 34.78 85.14 92.77 -20.78 51.32 61.18 55.41 55.83 21.98 17.49 37.92 71.73 63.42 49.14 96.88 43.18 73.44 81.21 93.52 60.64 5.82 91.52 91.17 82.80 3.59 44.33 8.50 87.76 94.03 25.40 11.69 77.59 71.65 75.67 85.44 5.17 18.70 2.48 76.01 24.05 86.04 8.99 4.31 84.65 56.54 59.75 47.12 29.46 99.95 16.82 80.58 82.27 61.41 3.15 63.21 92.03 4.84 35.29 40.18 51.47 16.36 76.94 57.28 39.56 95.53 31.37 47.77 44.95 12.05 26.19 76.67 50.51 41.39 60.26 70.29 83.45 0.49 83.83 53.20 26.73 7.95 96.13 35.67 80.30 43.08 12.15 40.21 56.24 91.53 35.59 81.91 64.87 87.21 69.42 35.02 94.89 71.53 92.85 97.01 91.02 18.78 10.82 23.61 -96.89 77.48 45.54 33.83 69.61 65.92 63.65 55.62 60.99 90.64 59.35 97.00 84.07 73.54 58.82 42.16 96.41 42.57 94.23 65.29 47.57 23.37 44.56 49.22 17.18 31.94 28.17 14.46 79.26 2.69 65.74 66.94 71.06 25.27 29.20 45.78 52.85 68.73 91.31 62.10 10.64 79.73 47.13 55.67 95.88 85.32 6.44 32.79 0.56 8.88 72.40 66.20 69.42 16.00 1.94 27.22 37.77 20.71 97.54 18.89 22.21 84.34 2.63 45.79 68.99 98.81 75.87 35.48 40.66 58.87 80.72 34.37 23.11 27.44 9.30 4.01 69.51 0.72 26.06 93.96 8.78 15.94 73.03 87.86 9.73 44.89 54.41 35.02 98.35 19.84 83.65 93.80 74.66 63.35 88.56 47.71 11.68 84.91 85.63 47.06 -37.82 24.71 89.22 5.05 98.22 88.92 77.00 74.17 35.53 77.12 40.80 77.83 99.04 76.02 29.19 41.28 84.62 11.12 68.70 36.62 99.84 27.33 25.73 76.54 62.66 97.00 33.94 60.48 52.81 39.06 61.99 12.85 81.70 89.40 72.36 46.84 26.55 2.04 64.17 88.06 42.30 81.90 37.69 76.62 96.12 65.89 87.53 90.24 80.54 19.12 18.95 53.18 78.71 89.33 79.55 3.69 17.14 62.55 18.56 37.86 47.29 37.33 84.47 9.90 81.22 72.61 70.40 46.97 51.82 80.70 42.36 50.36 17.59 82.37 77.12 19.90 34.03 59.18 1.64 30.89 86.17 20.85 51.88 4.68 2.46 20.16 28.79 22.03 95.77 31.70 40.52 36.71 28.63 90.32 28.44 52.38 42.10 20.90 69.80 38.44 -13.76 0.21 78.63 85.08 13.92 66.44 17.13 44.57 74.27 74.41 47.09 97.79 54.16 52.07 66.50 0.96 37.36 4.02 60.50 45.88 37.85 47.60 76.57 55.78 67.38 40.97 40.12 18.59 3.90 36.60 34.37 71.55 55.81 40.37 62.97 40.28 31.36 47.39 58.13 33.47 27.24 31.36 77.78 28.66 64.33 92.99 39.93 44.20 79.54 48.94 10.29 65.05 64.76 38.79 83.78 35.47 11.38 76.13 82.08 20.37 12.89 34.75 5.73 6.00 46.49 29.00 99.84 89.27 49.68 8.29 47.92 54.81 60.66 59.20 29.00 61.31 4.36 2.46 88.21 90.80 19.89 31.15 75.29 4.37 62.98 85.29 18.50 42.42 80.26 16.78 52.90 28.04 41.88 96.86 77.53 46.48 2.35 78.80 42.27 64.40 -63.76 14.59 2.66 83.58 16.01 28.24 66.47 81.66 48.45 77.03 73.54 63.23 32.96 1.67 29.80 8.22 71.30 6.55 35.97 91.53 77.32 50.39 91.92 78.17 54.70 89.92 49.87 52.48 84.55 17.45 80.39 79.63 49.11 30.26 52.46 49.73 39.04 33.50 0.72 59.87 90.72 79.97 97.94 8.31 12.93 81.92 51.32 20.68 50.68 42.83 71.58 15.68 19.26 99.47 26.30 3.17 50.95 68.63 88.84 31.18 32.74 13.71 75.20 22.96 86.54 84.41 48.82 22.73 83.00 26.78 71.50 50.21 57.00 67.31 3.85 26.61 56.43 79.96 20.31 48.55 10.56 17.04 21.29 8.79 3.90 56.04 54.11 26.93 35.15 86.18 0.20 82.25 6.41 49.49 36.49 63.68 15.74 17.85 53.09 21.38 -93.61 12.57 20.76 14.09 51.16 83.54 63.41 24.38 60.01 16.51 34.45 26.81 75.87 58.14 72.39 19.84 21.03 86.11 53.10 65.15 67.35 72.26 50.40 98.53 1.71 35.16 83.95 99.93 2.23 90.82 12.75 4.59 89.03 52.62 20.42 59.27 38.48 80.92 40.27 84.95 51.55 67.48 74.91 20.88 0.97 61.84 62.09 62.60 51.26 23.28 1.74 17.35 95.95 79.58 78.52 4.15 79.48 48.77 35.37 28.11 68.18 17.38 43.31 84.38 62.70 5.16 45.61 38.73 50.45 85.65 55.83 21.25 51.63 41.96 12.18 19.19 55.11 84.71 26.41 86.31 83.01 83.67 70.33 27.75 74.50 97.72 27.27 51.25 18.61 72.01 34.39 10.12 10.85 42.31 22.21 29.96 93.24 66.81 76.82 49.76 -95.03 0.14 9.94 82.99 86.23 41.36 32.54 84.26 95.24 73.77 92.74 81.03 40.03 10.70 8.48 61.65 50.96 39.00 62.64 26.84 39.29 81.47 65.30 44.38 2.12 2.85 58.05 41.28 3.55 90.07 5.22 44.91 96.49 1.19 87.46 48.76 91.79 42.29 61.70 34.66 94.87 92.32 41.57 29.08 57.67 94.47 46.92 49.38 37.95 71.06 17.32 13.62 49.48 68.97 18.24 94.90 96.60 25.97 78.80 2.28 59.86 18.10 98.45 14.37 16.16 58.38 61.23 63.40 57.76 44.28 69.79 30.29 47.28 8.08 20.58 7.79 21.87 92.60 38.88 30.15 3.22 18.22 30.54 58.39 11.69 91.97 67.63 89.22 27.48 29.10 11.84 64.98 89.73 85.38 36.97 14.23 49.81 40.59 47.59 49.65 -86.25 10.91 71.65 11.82 58.92 95.64 49.83 76.40 9.56 39.74 8.53 37.32 64.85 77.86 90.74 99.97 49.21 93.52 51.85 15.12 47.23 55.35 55.69 63.34 4.69 71.09 97.43 53.40 41.04 85.80 23.64 24.82 17.66 29.10 44.39 89.10 80.85 17.34 29.10 57.93 34.15 75.05 58.78 42.27 5.58 33.36 72.38 90.95 88.69 99.44 72.86 35.25 7.02 31.48 85.36 69.84 72.35 64.61 59.18 36.18 54.37 87.17 4.22 67.12 10.76 64.62 59.56 47.97 47.49 99.71 51.99 75.09 17.26 94.18 24.72 32.68 71.86 7.94 99.42 80.48 7.66 82.38 26.98 94.46 68.50 19.81 6.99 94.88 87.40 19.95 80.62 15.47 75.15 59.05 21.40 17.00 63.90 68.98 33.28 75.13 -53.06 19.82 19.24 40.86 4.56 62.70 0.77 74.62 62.89 71.49 71.11 70.40 41.29 51.24 66.50 69.11 54.65 2.69 30.25 19.61 18.25 78.75 29.11 6.31 25.34 74.63 85.36 62.73 8.32 68.12 11.86 95.45 42.71 34.74 0.18 21.52 80.08 98.25 66.87 57.36 8.13 17.03 80.02 79.38 25.27 60.81 76.59 28.61 26.82 62.45 5.76 33.45 67.06 96.46 44.59 13.05 69.84 69.71 74.06 80.35 33.01 21.92 30.23 78.64 50.14 7.76 85.25 24.08 52.61 42.91 35.21 32.72 53.95 73.83 44.31 90.24 97.92 22.26 23.60 95.91 52.02 56.19 79.06 72.76 71.93 20.92 75.97 66.59 64.74 70.22 2.97 10.77 42.14 51.59 93.24 27.56 78.28 23.71 23.02 61.29 -41.00 65.87 62.23 44.41 94.98 76.87 14.22 85.19 19.16 97.38 8.06 57.29 83.45 75.45 20.33 22.52 55.67 0.53 48.36 31.10 40.63 45.43 18.48 55.75 60.53 50.25 86.21 87.74 58.65 56.12 19.02 57.93 14.75 10.74 53.65 56.65 76.75 15.70 51.90 33.79 85.11 94.17 22.16 23.20 51.97 37.45 70.01 47.16 57.34 3.95 23.40 59.62 13.60 42.97 16.48 18.78 97.31 32.38 97.59 50.12 10.49 73.37 90.51 10.33 64.06 36.01 66.94 40.75 12.45 66.14 11.68 81.34 89.97 40.57 63.84 69.82 58.19 92.58 61.46 84.87 50.87 14.24 9.68 46.62 23.10 80.73 65.48 50.14 83.58 84.67 23.95 76.77 68.19 48.12 90.49 98.09 7.12 98.26 71.87 59.93 -72.18 92.27 5.73 9.04 83.72 85.80 15.68 39.99 38.50 57.18 92.99 62.52 63.00 23.62 28.09 33.58 45.92 79.25 74.74 72.15 24.06 36.88 37.33 55.98 60.05 87.45 34.43 88.39 77.66 12.59 41.01 62.19 20.47 83.65 41.09 39.89 39.57 75.89 97.43 15.51 86.42 28.99 90.65 89.30 56.61 69.86 0.86 22.40 9.78 94.55 95.32 76.52 69.94 53.54 92.39 84.44 52.43 45.95 21.05 40.87 80.83 23.10 19.22 93.13 57.01 97.77 65.64 57.78 75.40 34.34 51.60 93.67 22.68 85.68 54.37 7.55 81.64 50.19 45.71 74.61 86.96 67.40 72.84 50.41 78.84 39.80 86.72 60.49 72.35 6.09 72.07 85.41 37.98 72.63 94.61 72.91 17.09 78.32 44.44 82.23 -74.23 86.41 7.94 66.23 62.63 82.67 10.53 55.94 17.12 45.31 15.61 72.57 98.42 61.83 22.21 90.57 85.46 0.63 94.18 55.31 70.42 50.75 3.53 82.68 63.46 56.63 22.45 32.04 98.09 20.32 91.78 82.77 54.56 40.59 71.36 4.13 59.07 23.10 19.33 28.52 88.23 92.37 62.50 53.25 92.97 86.49 97.66 66.51 86.61 14.36 37.11 90.96 99.82 64.59 76.43 86.53 81.30 41.66 90.91 94.33 79.02 30.52 26.42 29.35 67.74 20.14 2.00 22.50 20.29 76.66 86.37 16.05 10.28 21.88 27.19 33.88 8.06 46.37 99.34 27.76 34.75 78.88 22.86 57.85 52.03 91.92 86.61 45.59 90.09 29.18 59.54 6.02 91.96 79.27 19.74 10.20 31.93 23.19 31.20 15.74 -19.52 59.93 45.05 52.73 26.40 26.69 35.23 31.65 10.77 32.71 61.19 11.04 10.53 99.06 74.81 81.12 44.32 20.13 54.78 21.03 82.33 96.79 32.26 22.80 23.64 66.22 11.87 25.48 64.64 40.74 41.60 33.16 73.28 44.26 19.79 38.08 85.68 51.63 71.11 81.09 3.33 15.19 88.99 23.98 23.63 82.69 5.49 30.21 2.09 9.04 20.41 44.24 76.10 2.44 52.57 46.97 54.80 86.94 53.86 58.43 24.81 10.55 35.41 98.25 2.08 84.96 41.41 2.12 55.24 75.50 29.86 67.63 32.09 22.69 35.76 21.65 74.88 76.79 60.81 5.15 75.28 75.18 94.52 83.63 77.29 19.02 58.22 18.77 6.58 72.41 48.73 54.07 28.17 42.41 56.32 97.14 76.77 42.70 3.53 85.95 -58.77 25.25 41.66 64.04 56.75 88.69 87.54 78.80 96.39 0.02 64.73 45.37 27.20 42.78 17.39 73.39 97.65 6.89 50.99 17.61 1.52 75.44 53.94 95.24 64.73 99.33 23.48 9.77 52.52 12.66 81.01 40.64 29.16 24.32 13.72 95.60 98.74 34.33 91.24 57.22 98.03 88.64 59.61 36.71 8.00 9.91 99.68 84.30 59.40 22.60 93.85 58.16 49.76 15.61 32.70 58.63 23.88 60.72 34.87 45.02 82.80 73.76 14.03 3.97 69.82 99.05 27.35 77.12 83.65 91.41 20.80 43.37 13.54 13.05 94.76 65.48 73.22 32.51 37.77 69.30 6.69 69.45 2.19 62.78 4.26 84.30 37.13 18.04 77.17 79.88 34.47 54.15 45.69 1.88 86.47 84.81 57.80 7.95 23.66 59.68 -31.67 84.52 5.24 51.96 53.06 41.15 69.75 46.27 35.92 76.71 3.71 69.22 36.26 5.61 26.96 85.88 3.03 67.52 98.47 73.09 70.35 35.88 23.27 60.08 74.85 90.08 65.81 45.84 76.72 49.81 2.94 66.97 73.07 80.84 18.37 78.24 5.86 36.75 23.85 29.19 37.67 95.74 83.46 39.07 56.99 50.51 98.25 6.04 1.39 59.59 96.12 71.23 19.60 78.19 57.40 79.47 72.13 91.49 20.65 92.12 57.57 6.16 68.57 65.14 13.96 29.24 40.10 36.59 57.21 34.44 68.47 83.59 44.82 13.31 33.11 15.96 51.20 30.55 77.61 81.65 65.10 95.92 20.62 48.16 12.64 99.09 95.56 98.79 87.61 66.23 40.58 79.80 2.91 51.83 97.41 55.82 98.02 5.59 32.77 55.98 -24.37 70.53 9.58 36.59 99.33 19.42 7.64 80.41 67.96 92.25 65.92 39.42 27.49 2.65 84.00 9.86 67.58 21.67 6.77 14.91 86.39 79.07 5.48 14.82 67.63 56.96 16.79 16.05 7.88 54.73 99.27 90.93 45.70 53.42 7.83 0.50 78.91 48.56 98.59 96.74 88.11 59.70 17.40 21.86 71.88 59.39 94.74 37.24 30.45 87.55 96.21 88.76 64.30 82.02 66.37 80.15 45.46 5.88 26.79 51.74 35.85 87.60 15.13 58.77 85.31 58.72 19.39 86.74 57.34 67.29 8.39 90.65 91.56 92.82 36.75 36.22 35.81 17.59 53.13 7.29 24.67 3.16 7.61 67.24 38.68 32.58 51.64 92.51 97.02 74.72 13.29 68.56 11.65 94.99 89.26 1.12 61.77 52.75 29.73 37.95 -73.89 46.23 97.10 41.10 80.41 77.57 71.51 43.42 15.77 83.74 83.15 68.79 30.76 89.43 14.79 30.58 46.37 19.22 59.06 88.81 46.95 26.56 99.85 71.69 82.10 6.50 47.19 76.69 7.33 46.00 43.07 73.95 84.04 3.24 20.28 82.37 57.68 44.89 6.97 4.16 76.24 29.70 56.64 38.22 89.61 11.02 28.20 82.70 45.96 80.95 30.70 9.42 91.54 62.12 52.42 19.91 63.50 89.45 86.73 4.85 21.14 35.23 96.79 26.76 0.98 44.22 88.46 52.07 38.19 78.71 61.14 69.58 8.64 27.21 17.17 35.68 84.63 65.35 26.84 28.80 8.45 1.45 84.50 5.14 12.59 43.09 71.29 64.94 82.01 7.67 55.56 50.48 0.11 14.22 71.16 38.28 31.98 45.80 10.47 17.92 -20.49 26.83 91.23 55.72 81.01 39.91 42.18 50.79 62.97 44.94 3.43 57.52 70.35 75.79 57.32 54.45 68.64 55.97 45.37 41.83 74.38 50.27 13.41 72.88 99.43 56.37 8.03 86.76 56.13 35.50 26.56 31.18 72.20 56.97 23.93 84.87 8.44 11.05 82.57 3.47 71.40 69.66 0.50 62.56 94.82 70.49 33.55 40.81 7.79 18.06 52.88 58.75 57.74 92.40 3.66 34.10 12.74 85.53 42.70 83.58 99.69 3.68 93.49 76.28 65.93 36.18 74.93 25.99 87.20 11.90 39.57 3.29 77.44 85.00 32.70 28.73 86.25 89.56 78.33 49.34 19.79 3.50 95.55 12.96 4.40 12.67 20.89 19.45 59.40 74.08 27.76 17.33 7.21 61.12 28.83 18.86 98.76 23.26 49.34 46.76 -0.62 15.47 68.34 78.77 14.16 82.98 14.28 82.67 21.95 81.33 48.31 25.78 17.77 61.34 3.69 87.03 13.56 77.86 61.15 8.74 66.62 86.23 41.87 48.61 29.77 96.28 13.48 46.99 59.01 2.70 96.20 46.65 67.68 63.81 70.70 63.44 65.14 47.26 46.44 27.20 89.77 3.11 45.17 35.56 65.76 0.33 22.15 19.90 55.90 32.43 98.77 59.49 64.43 74.02 79.20 86.30 81.58 32.09 87.68 36.66 9.18 63.70 6.58 99.31 57.22 98.82 65.10 87.78 89.33 53.34 30.83 16.64 86.75 15.97 0.34 95.97 93.60 60.24 41.22 83.12 53.86 3.48 30.53 46.20 16.33 40.22 74.50 8.76 61.52 32.27 7.26 63.38 13.23 31.57 14.11 50.10 35.22 12.46 92.54 45.22 -37.24 67.19 10.24 85.22 35.47 33.12 40.77 88.34 3.41 0.87 15.66 86.92 97.86 39.21 57.80 75.99 87.97 23.32 26.27 33.55 24.07 57.10 92.46 44.41 14.74 38.14 15.34 67.99 93.63 38.35 75.08 76.39 88.83 48.69 68.94 9.88 92.20 85.64 49.48 8.51 37.95 10.90 28.99 10.00 1.45 6.60 60.26 90.95 58.84 14.81 97.54 91.47 9.67 42.08 16.62 49.01 25.79 71.35 20.99 37.22 38.91 31.46 58.54 87.49 89.80 67.30 98.61 74.49 81.33 45.25 64.13 19.58 96.21 79.22 39.42 15.40 27.03 59.97 3.85 86.39 98.80 11.16 93.18 98.85 6.03 9.81 10.23 65.33 22.60 95.56 22.21 76.93 19.46 14.35 25.47 96.08 88.43 27.08 61.76 72.57 -69.83 42.57 51.04 1.65 48.80 65.57 1.76 13.00 26.34 24.28 62.47 14.43 37.08 25.73 40.67 79.04 49.24 60.33 72.16 65.03 56.89 78.90 23.63 65.58 28.01 19.23 45.89 98.85 77.95 82.37 2.26 42.05 71.70 48.34 28.50 16.41 60.96 11.44 88.26 37.09 83.35 74.04 38.35 99.56 45.11 2.20 8.45 76.76 13.66 53.23 68.86 41.59 18.15 32.34 52.71 16.09 53.55 88.96 48.47 50.92 34.54 59.94 16.64 93.68 70.44 57.20 58.51 30.96 96.62 21.09 24.87 28.59 23.16 33.35 92.41 8.11 55.89 31.70 37.36 39.81 13.31 17.21 83.46 70.26 49.00 14.51 11.72 84.85 59.21 99.25 91.94 79.45 35.79 37.93 66.41 41.16 69.98 56.64 75.43 75.98 -93.61 53.50 66.10 77.92 31.06 78.64 70.90 22.41 19.78 36.62 97.76 58.75 64.41 51.26 11.67 86.51 24.42 17.04 17.33 15.34 73.16 98.20 53.88 88.97 57.33 69.03 59.28 12.18 55.73 33.08 33.10 47.52 88.62 17.64 96.46 7.98 80.92 14.91 81.12 33.71 79.45 98.36 72.81 48.70 30.70 61.13 21.56 39.58 62.35 99.13 66.05 72.81 21.54 93.56 44.68 87.22 65.26 11.97 85.68 16.74 44.55 18.34 7.77 38.30 82.25 68.21 46.23 87.11 55.34 65.61 70.23 30.48 3.06 69.39 34.17 43.29 79.54 8.63 71.02 82.42 43.00 14.39 72.64 81.19 52.18 83.61 20.58 25.47 1.54 96.05 43.31 20.51 24.11 34.71 60.84 8.08 19.68 43.48 64.55 40.58 -17.61 89.96 23.08 71.59 92.49 7.40 78.41 46.10 13.63 75.03 81.24 41.69 86.45 23.66 31.08 82.10 29.86 48.17 89.68 7.94 59.27 65.51 6.30 74.20 21.85 21.73 49.51 43.64 18.53 55.08 13.78 39.02 91.22 30.56 61.67 34.40 62.45 9.61 25.13 78.17 8.26 1.86 92.05 58.70 83.66 85.56 72.10 66.54 87.38 87.45 56.51 74.24 18.14 16.20 71.26 21.29 37.07 7.71 95.49 41.39 40.62 83.08 80.54 51.56 76.70 24.48 56.93 88.70 3.06 55.98 1.59 38.40 0.39 97.31 1.37 88.26 52.19 24.99 78.15 1.39 92.16 77.65 7.44 67.60 98.16 11.99 9.64 51.80 14.00 31.58 74.54 77.22 0.62 69.16 33.97 8.78 19.97 83.35 60.34 48.20 -40.43 88.14 21.07 49.02 93.96 45.59 29.92 71.80 98.36 42.26 79.23 29.13 99.41 97.86 56.05 26.06 53.53 8.18 92.03 22.16 4.33 57.84 36.89 91.28 45.07 45.23 79.29 68.52 13.85 34.31 4.86 83.86 52.53 83.72 39.92 32.76 65.11 64.35 25.64 89.14 80.19 76.30 5.33 81.76 2.55 37.72 16.56 59.56 75.53 11.61 54.29 5.22 74.87 32.87 99.87 10.48 22.11 54.39 44.86 4.89 48.60 88.22 43.50 15.15 51.20 85.37 37.41 89.31 66.15 31.58 77.84 36.75 66.61 27.34 72.41 74.60 23.33 16.26 51.60 97.08 88.08 6.93 27.09 54.60 60.89 68.79 62.39 60.30 99.95 67.53 47.89 53.84 3.89 34.84 9.36 97.73 63.17 93.85 75.47 94.42 -64.31 54.32 7.47 47.28 43.26 28.45 18.62 47.20 59.15 78.58 40.52 98.50 56.72 87.41 8.96 59.95 48.62 85.58 84.06 17.26 61.78 26.13 99.98 10.20 75.27 8.25 0.75 73.11 60.89 9.43 22.02 52.89 5.60 26.30 57.47 6.33 90.52 91.06 13.38 84.71 88.10 61.26 64.26 72.61 69.46 42.65 0.54 65.46 45.22 3.02 37.78 35.83 23.41 83.88 73.16 92.25 68.60 45.99 38.95 70.22 72.04 82.53 89.50 32.37 19.45 95.47 97.00 90.84 3.55 61.76 24.38 69.35 56.96 40.72 7.19 79.70 98.42 82.67 66.13 38.82 50.90 47.76 59.01 8.88 8.26 82.32 23.10 77.42 78.24 82.96 3.80 62.80 21.87 36.73 77.10 50.14 77.62 52.61 84.68 62.36 -26.93 92.25 92.66 33.05 34.24 97.62 7.15 37.57 95.26 84.07 31.49 27.76 3.67 67.09 36.47 47.00 0.68 42.78 38.64 30.38 39.16 11.76 84.62 34.69 31.43 99.59 58.06 39.81 83.18 50.46 29.75 22.31 96.72 67.58 66.40 33.06 87.62 96.30 86.37 77.63 68.26 94.21 38.84 76.63 43.67 8.20 33.18 61.30 17.12 76.27 4.13 3.20 68.08 10.48 50.78 46.68 77.01 18.10 78.79 7.43 81.02 21.57 36.11 84.13 92.25 29.78 82.42 49.24 59.63 30.24 82.56 61.65 44.60 30.45 43.98 42.54 74.28 52.34 24.72 79.65 56.98 29.86 93.11 22.08 92.23 48.31 45.94 26.92 17.61 5.97 84.49 10.55 28.66 73.29 81.74 39.15 68.84 25.04 72.67 65.79 -41.55 60.82 56.65 5.67 11.79 14.42 69.55 33.33 80.52 14.35 97.74 56.20 23.33 98.16 33.24 20.65 51.82 35.58 59.58 44.80 95.07 17.74 52.10 58.70 9.13 13.04 22.67 85.15 80.20 26.92 24.80 3.12 2.34 75.28 44.13 73.18 61.98 93.73 18.79 51.58 98.55 85.21 92.89 23.38 18.48 7.83 7.04 34.83 84.64 89.82 4.60 57.95 19.92 83.45 36.27 2.29 20.43 0.07 64.82 76.28 17.79 98.89 13.42 44.22 29.75 10.36 87.58 46.33 67.32 83.85 64.22 77.80 86.65 26.84 49.30 26.25 23.15 3.01 79.17 29.95 54.23 82.48 99.28 41.55 14.64 23.47 61.97 80.16 80.80 0.21 4.39 32.02 78.97 59.91 89.74 7.41 40.16 45.03 32.09 90.62 -70.39 5.12 25.30 46.52 54.88 8.92 72.42 72.61 96.12 0.02 21.23 60.58 51.18 21.50 6.88 92.53 36.72 84.21 75.77 95.86 34.73 4.23 22.32 76.39 3.17 0.51 32.45 45.07 26.51 86.72 1.71 78.15 91.17 82.06 54.98 94.55 70.01 98.64 42.65 36.12 45.71 58.24 71.94 52.55 8.81 76.63 5.89 33.96 80.58 84.84 18.66 74.04 80.89 86.79 35.51 27.57 14.44 25.26 36.51 91.53 62.80 52.21 59.86 59.28 37.31 15.52 57.15 87.45 15.86 69.30 50.44 33.91 32.24 26.96 58.17 74.91 44.33 8.97 13.05 46.49 7.33 72.29 94.87 52.08 37.83 59.86 45.99 77.83 94.55 68.65 68.78 72.42 95.93 24.44 12.12 85.35 38.97 26.06 57.03 63.35 -18.04 40.54 73.78 54.52 32.64 56.42 67.00 39.01 84.81 82.98 34.11 82.48 15.35 96.05 87.97 98.93 37.18 60.60 87.68 26.85 79.40 65.60 27.74 53.35 4.00 78.31 29.27 46.97 36.91 57.54 17.48 77.48 80.84 92.23 68.25 42.97 36.27 53.47 44.30 78.16 77.51 12.39 96.62 92.95 29.69 57.22 66.40 94.42 67.27 5.05 96.98 93.40 8.92 71.55 55.64 51.07 5.95 79.87 82.84 27.33 55.30 27.71 21.69 8.15 95.62 6.61 60.49 57.46 84.37 50.49 10.02 43.39 31.74 84.74 36.17 10.39 21.95 10.93 59.99 45.43 65.96 78.48 49.50 14.74 24.27 29.36 11.94 20.97 31.24 89.39 52.25 4.89 61.44 72.09 10.18 32.91 55.09 66.74 58.82 77.25 -31.26 72.79 36.72 54.57 70.99 22.62 55.99 16.47 17.37 29.12 93.73 87.33 53.45 81.42 56.36 15.44 81.72 31.22 15.98 14.08 26.70 41.61 39.77 3.28 57.16 97.24 21.90 50.93 2.57 67.12 88.00 86.91 18.68 13.42 27.58 94.08 43.08 78.53 94.48 68.44 43.25 86.17 19.24 26.15 88.33 92.15 78.82 50.66 28.83 62.94 89.01 31.88 74.22 46.57 72.41 61.45 85.57 49.47 85.71 13.33 19.34 46.83 83.59 66.70 6.68 48.88 85.00 54.86 70.32 95.51 23.71 76.78 98.43 26.43 2.02 9.70 77.74 88.94 91.86 79.21 4.94 49.45 1.20 16.69 85.47 68.41 73.13 11.66 89.13 63.04 48.35 44.94 1.40 6.26 70.90 80.63 98.90 9.56 67.61 45.11 -97.22 78.60 55.12 43.20 53.28 97.93 34.34 28.74 53.95 43.02 13.42 79.78 39.34 9.91 91.41 60.49 71.39 43.82 35.44 18.87 41.02 68.92 58.80 41.80 15.94 26.65 88.42 22.63 43.30 31.05 97.81 43.06 30.31 0.31 77.51 88.29 44.42 83.29 80.12 91.77 37.55 48.98 41.63 99.90 35.91 33.26 62.89 62.11 75.70 70.86 96.19 11.07 7.67 94.63 78.41 78.65 99.10 69.70 55.13 65.56 48.34 29.94 40.98 82.76 6.30 29.66 13.18 87.87 49.92 65.12 89.16 27.85 60.26 28.23 49.32 9.73 43.14 71.35 96.99 14.08 43.08 77.02 76.57 1.30 62.18 62.44 50.08 95.58 85.62 89.67 82.93 48.53 48.48 76.94 21.79 11.64 75.28 45.00 28.52 25.17 -36.27 69.61 4.65 84.77 45.88 73.05 17.81 19.15 31.48 77.63 44.90 96.69 26.55 66.99 63.35 13.76 96.58 13.28 11.43 17.83 1.11 81.27 63.23 42.54 28.63 65.44 10.09 58.65 44.57 37.94 67.15 90.14 3.58 77.36 51.46 75.55 92.91 41.14 16.18 27.25 61.59 52.22 54.15 55.32 37.47 39.92 46.92 88.71 33.16 71.17 81.50 90.83 76.41 11.72 52.27 72.31 66.71 92.50 99.40 27.57 74.45 20.46 50.87 87.70 93.96 69.19 95.47 87.54 56.24 32.44 78.13 88.29 6.68 27.24 16.40 60.72 76.30 82.89 36.76 42.31 24.06 24.55 57.69 45.48 68.20 34.17 58.75 33.87 87.60 10.96 64.52 63.02 25.77 78.59 50.39 79.11 12.65 61.10 62.89 40.23 -80.91 46.66 51.00 63.34 65.39 87.34 24.94 24.65 38.41 24.12 87.94 73.27 13.47 74.75 55.01 64.47 51.15 66.87 29.52 39.50 36.77 66.61 54.58 90.64 21.63 32.72 90.74 85.26 90.84 42.30 16.01 23.30 67.39 35.65 74.26 43.47 21.84 68.72 71.13 96.89 35.10 78.24 53.86 65.21 80.75 21.96 19.64 72.37 78.79 61.64 25.86 4.96 69.38 81.26 17.45 43.46 51.57 97.40 47.83 10.78 41.97 67.84 9.66 95.82 1.98 52.44 42.72 76.88 93.21 38.92 69.58 30.04 54.22 52.39 48.84 29.95 16.54 27.43 89.22 16.12 68.12 54.30 80.07 67.45 58.43 88.55 62.95 53.19 99.97 17.58 38.69 55.19 29.89 38.15 78.12 66.31 14.05 2.36 69.93 46.40 -19.47 34.02 26.30 61.00 92.71 90.90 18.29 63.43 88.71 35.15 78.28 77.32 39.12 97.67 60.58 30.55 39.39 41.17 46.91 91.71 94.41 47.45 30.15 26.63 60.75 5.16 8.81 65.48 36.09 38.53 52.01 79.24 17.56 80.86 27.45 77.25 17.09 29.37 23.16 14.50 3.99 3.89 46.31 57.31 78.20 45.33 20.79 9.88 21.74 11.11 3.00 3.73 69.20 98.96 23.78 7.20 87.46 17.05 3.67 88.11 39.55 84.56 33.21 55.76 86.46 9.20 68.29 45.45 13.22 99.85 46.96 50.48 30.30 36.15 87.35 3.61 80.69 24.20 80.38 84.60 91.21 79.05 27.68 86.17 73.22 4.53 47.52 34.41 0.35 82.56 95.92 74.49 46.36 94.98 55.42 29.33 63.74 15.94 56.29 6.61 -76.21 67.05 36.30 8.73 36.96 93.18 5.84 77.39 43.24 78.60 38.61 38.91 34.04 99.57 35.53 64.60 16.74 5.45 41.96 83.61 33.62 21.79 94.73 11.87 75.07 40.75 1.20 61.21 66.82 66.27 8.00 41.84 70.76 49.54 19.53 23.41 44.77 74.77 88.85 1.02 19.15 17.11 15.72 73.00 91.34 56.16 17.56 93.20 81.42 0.95 15.49 56.99 35.24 88.45 6.67 16.28 45.82 36.87 87.39 6.28 78.03 33.67 65.02 53.44 3.96 64.47 45.09 5.52 92.94 3.16 66.39 44.36 35.53 51.00 60.10 94.24 76.58 50.53 84.02 67.05 61.86 18.27 66.98 45.04 27.36 60.63 20.86 7.29 15.98 70.42 0.01 97.27 88.46 11.51 70.85 68.13 62.99 8.23 64.10 86.32 -18.98 16.66 3.16 67.64 24.42 88.90 79.44 13.50 37.74 51.72 62.04 60.84 48.21 6.89 99.92 27.33 15.69 60.98 83.87 17.15 53.29 13.55 17.06 81.47 33.54 55.98 60.20 9.90 0.45 26.74 55.41 98.39 82.73 8.90 24.60 72.58 62.89 36.96 35.21 45.18 10.11 37.13 38.81 57.11 23.13 72.57 60.50 12.45 7.75 46.66 44.50 79.61 21.13 95.10 50.56 69.16 82.89 48.29 32.52 17.19 11.50 60.55 41.55 43.47 48.89 34.35 86.38 22.81 28.87 18.35 95.69 38.69 17.55 85.68 98.30 34.93 83.73 4.91 77.91 36.27 54.80 10.62 48.36 52.31 51.78 86.89 11.67 68.66 22.58 56.24 88.41 52.58 38.62 60.21 71.43 16.31 15.75 15.58 33.24 97.72 -17.66 39.58 46.45 73.09 80.53 67.99 60.95 67.71 20.08 48.07 0.45 44.10 59.98 30.16 33.87 33.85 56.12 54.85 92.88 68.88 35.92 48.95 7.02 60.84 29.84 75.39 53.76 66.51 96.39 29.40 18.57 66.63 3.32 69.23 47.53 87.12 59.55 72.30 68.60 61.06 43.05 48.72 22.45 22.53 97.07 1.45 10.11 79.46 46.55 93.66 87.75 93.56 79.37 5.36 40.63 82.55 42.25 55.10 83.59 84.58 15.39 62.20 52.77 32.47 65.60 62.85 80.45 42.66 38.16 22.97 17.99 6.60 24.26 36.79 97.55 53.83 99.23 29.47 99.11 31.11 4.70 28.11 63.34 23.70 30.93 60.17 16.86 12.27 26.06 3.49 43.03 38.25 38.85 89.43 37.75 16.33 41.26 78.34 50.32 69.24 -58.17 68.79 73.99 68.42 73.40 66.66 76.94 53.50 12.17 82.15 14.63 60.58 52.68 44.05 99.32 17.27 68.54 55.28 47.81 93.08 12.98 71.16 9.73 55.94 46.74 59.02 22.88 71.26 98.92 65.03 84.09 65.41 51.84 42.92 53.96 83.48 30.68 69.13 14.61 79.91 78.62 63.57 43.86 74.08 33.41 87.05 61.61 66.02 8.57 6.29 19.37 57.64 28.47 95.16 68.32 23.27 22.72 53.89 77.23 49.68 6.84 71.33 17.29 12.05 76.90 21.19 86.13 80.03 55.75 46.60 51.29 80.86 15.49 67.92 16.56 20.00 14.31 74.07 89.27 74.95 55.35 45.70 9.05 47.83 30.63 78.88 75.60 19.15 16.14 53.81 63.69 72.34 64.03 53.18 34.66 15.98 93.11 95.22 97.40 72.87 -56.05 89.31 41.97 93.01 83.51 91.97 98.25 29.14 25.22 51.45 28.84 56.34 95.40 0.27 32.39 19.51 5.15 61.44 6.48 94.20 54.79 36.40 62.99 4.23 46.86 81.12 24.98 47.41 62.08 84.35 35.01 25.26 79.44 11.01 70.20 76.05 89.40 73.76 29.25 65.64 62.83 30.52 77.91 47.90 63.55 7.12 7.44 50.29 14.09 77.16 24.67 37.34 90.76 14.07 70.23 66.71 76.94 56.04 99.82 24.29 14.43 24.95 90.38 84.69 44.35 13.91 67.33 15.23 81.86 84.67 87.01 77.97 11.30 30.32 52.04 82.56 10.71 53.67 49.25 37.19 89.30 56.65 83.58 56.79 83.16 60.81 39.13 99.80 96.79 94.50 51.82 96.09 32.55 93.03 29.43 39.24 96.95 61.07 78.85 91.41 -69.96 54.60 13.35 66.25 26.62 32.10 20.91 24.77 12.20 93.18 36.25 28.17 56.40 57.04 64.97 1.26 16.57 14.73 54.41 49.84 14.93 58.68 96.65 35.66 96.43 64.19 32.16 11.48 57.58 55.02 21.11 69.50 33.20 23.10 36.16 93.00 82.16 55.62 59.14 35.55 22.03 67.14 59.73 25.83 5.46 63.67 6.78 34.17 3.79 55.42 10.41 44.21 8.06 36.95 57.35 79.93 9.40 44.45 64.39 66.69 60.91 2.70 30.79 76.37 39.09 89.33 64.08 95.24 80.80 98.51 2.18 17.88 58.27 51.53 10.22 73.64 46.15 73.37 1.78 65.07 59.14 41.18 77.92 54.81 53.70 84.48 63.38 93.66 42.77 19.25 32.64 73.13 23.19 4.32 40.83 31.30 71.49 7.98 29.14 62.44 -4.38 26.93 5.42 56.14 33.45 28.21 32.48 99.03 72.81 99.48 27.60 69.51 71.87 78.10 40.93 13.32 73.24 56.94 99.53 8.38 96.55 90.44 86.87 68.75 21.61 70.12 2.38 18.25 66.59 65.71 24.17 56.86 7.89 36.67 22.87 8.32 55.40 59.90 10.00 42.27 74.64 83.69 68.22 80.61 40.85 23.68 25.99 42.00 82.36 43.18 55.32 88.20 56.30 62.09 11.26 97.26 39.95 84.20 71.22 83.20 68.28 71.64 39.28 93.11 12.12 82.34 43.06 85.59 68.31 38.59 44.49 64.43 65.22 58.04 59.87 18.29 40.64 62.27 45.99 21.32 40.33 85.20 4.70 61.69 57.93 72.16 81.76 53.91 55.58 81.44 31.85 10.22 22.32 39.24 6.53 98.10 95.09 72.15 1.51 47.38 -43.71 52.63 6.37 35.23 89.03 55.68 17.05 14.45 50.94 98.27 42.51 25.62 71.51 1.44 66.71 79.35 35.10 57.80 85.92 79.98 95.98 7.54 76.55 93.34 18.43 92.76 2.25 65.45 51.98 3.64 4.22 68.71 84.56 61.47 23.01 17.34 23.29 23.49 98.91 17.79 66.99 12.18 39.95 86.69 61.41 13.88 48.34 24.72 7.81 29.69 33.84 87.36 61.59 55.05 12.50 27.80 21.21 19.91 45.25 7.49 95.16 67.81 75.12 48.50 66.86 83.24 96.25 36.47 11.83 57.80 1.07 34.10 48.33 53.03 48.44 43.98 54.14 38.85 13.51 49.84 9.03 31.46 17.09 57.46 77.69 79.22 47.02 31.94 7.43 33.11 54.72 97.17 45.28 38.51 19.88 90.73 22.03 70.17 40.26 50.88 -48.43 4.46 89.16 21.92 67.65 93.47 23.41 36.65 39.25 8.05 13.71 79.11 56.33 17.94 93.37 67.17 88.14 75.25 91.75 74.09 9.72 63.31 38.23 97.47 79.75 36.68 15.31 3.10 90.19 25.18 46.37 12.67 29.75 53.69 29.13 41.03 48.69 45.19 72.32 72.38 51.51 29.33 76.24 37.55 79.60 20.49 18.29 53.61 6.94 16.71 3.48 9.91 92.37 4.93 27.58 21.69 62.03 54.90 86.92 63.90 33.57 77.60 21.97 64.89 35.67 38.65 49.77 55.33 80.14 2.33 76.33 76.30 27.78 32.65 74.66 9.17 84.74 83.19 17.07 71.08 24.70 80.25 69.26 4.11 7.35 12.77 62.59 2.99 77.67 34.82 34.79 53.66 2.00 60.42 38.04 43.31 22.89 25.33 89.47 55.03 -15.60 90.05 49.35 1.79 92.04 66.54 27.07 31.94 51.19 95.58 8.73 48.07 95.03 58.86 47.86 17.48 97.89 21.98 43.39 19.97 11.43 58.54 57.78 2.18 19.81 78.44 62.10 10.79 20.42 69.63 63.61 84.99 63.65 51.57 95.35 41.55 65.22 50.49 97.49 37.32 34.70 81.65 95.67 6.47 73.42 41.29 43.39 20.53 16.38 5.13 89.54 81.27 84.22 70.62 6.74 73.43 80.18 80.93 62.74 21.29 12.17 16.26 12.16 72.61 84.44 47.62 54.83 5.84 89.23 66.79 48.33 49.69 47.22 99.82 22.82 14.24 0.07 25.20 43.54 87.35 72.13 97.06 19.09 16.84 95.23 95.63 33.35 90.18 38.04 65.64 25.81 84.08 14.04 16.99 93.36 73.67 98.04 20.90 65.78 17.26 -6.03 40.96 56.61 35.69 64.90 61.59 28.48 51.79 36.81 99.74 14.16 77.95 54.18 55.20 5.03 16.99 71.91 63.00 94.97 78.48 0.59 60.91 27.83 6.93 38.21 59.65 55.73 33.37 56.70 25.66 82.72 76.10 81.88 5.93 91.48 2.60 15.68 74.51 64.27 39.58 61.07 95.93 61.05 99.64 7.20 2.12 49.52 68.02 58.92 33.32 83.50 13.11 25.24 34.39 84.61 47.40 83.34 98.09 6.38 28.94 28.64 80.62 95.07 65.53 83.51 87.96 21.58 35.43 38.29 83.60 61.02 14.02 40.23 64.02 96.50 29.41 45.78 81.75 1.01 67.70 11.51 17.51 63.52 11.90 8.61 83.60 69.04 39.03 81.87 38.41 7.23 38.81 51.98 99.37 40.43 90.43 27.71 65.58 32.32 73.20 -13.70 27.24 20.36 1.62 43.43 51.24 52.58 85.92 87.56 70.59 29.28 85.71 85.00 34.02 24.91 91.17 41.64 85.99 71.93 1.92 53.71 6.47 43.43 11.99 9.57 50.57 94.90 55.71 81.05 53.63 55.20 34.72 24.14 27.35 14.38 18.97 66.09 47.69 60.09 59.44 6.77 46.90 82.01 57.85 99.83 1.02 66.06 40.40 67.48 62.20 51.25 35.27 3.63 14.50 37.08 19.63 53.81 42.73 57.50 31.02 4.83 80.57 39.38 50.88 75.46 22.73 57.30 10.83 57.07 95.71 25.48 40.54 19.87 6.61 3.78 37.33 46.16 70.34 2.15 15.88 43.27 97.93 25.24 49.08 87.93 17.59 49.84 30.46 25.53 25.05 75.70 56.93 64.55 26.97 5.28 75.28 53.84 22.01 44.96 40.62 -98.76 43.83 50.25 0.58 39.82 47.64 14.03 5.77 50.20 70.47 49.47 97.47 95.48 14.18 17.77 40.55 76.41 93.45 19.09 81.62 75.16 79.32 73.91 20.14 79.29 76.25 12.79 74.47 22.78 26.43 70.89 65.51 80.79 39.19 9.85 34.59 94.01 75.63 58.46 75.73 26.37 39.96 52.22 14.53 85.79 32.40 30.99 28.01 65.44 25.69 49.30 0.98 73.41 97.79 75.00 94.69 62.25 36.09 3.22 44.41 0.33 69.36 80.43 55.12 37.62 62.08 78.86 45.39 76.81 96.51 34.01 49.24 8.82 52.29 32.97 89.64 2.12 7.58 73.57 8.94 9.47 53.28 50.36 61.72 12.59 70.07 32.76 61.97 35.77 51.02 55.80 65.78 27.41 48.02 60.71 43.37 15.35 58.76 90.97 55.36 -50.61 76.10 80.50 97.86 2.16 53.05 57.58 16.93 49.04 35.40 24.11 60.69 54.53 44.76 12.96 28.88 19.54 37.44 70.23 39.62 61.32 24.87 18.30 4.14 87.60 17.11 42.84 92.27 54.10 81.05 36.84 10.18 94.82 36.80 33.02 58.48 79.36 67.50 41.37 17.32 42.63 92.84 40.57 67.55 78.88 49.63 49.42 97.34 12.82 60.95 23.32 6.38 88.06 37.87 66.93 35.84 38.11 68.79 7.05 98.03 8.23 92.53 41.43 2.10 34.80 37.12 0.37 20.88 26.48 93.24 38.26 18.07 21.04 80.12 80.60 41.68 37.71 29.88 89.25 99.31 23.95 48.72 32.28 13.65 78.15 61.25 64.13 37.13 17.49 72.13 99.10 45.32 9.57 43.83 31.90 31.46 21.07 92.56 27.48 57.19 -14.74 17.60 39.47 96.31 19.17 24.95 16.56 59.69 63.93 68.40 78.28 79.32 78.11 3.00 24.91 29.14 22.39 5.97 45.42 40.08 46.89 5.02 42.68 21.56 51.76 44.39 2.07 86.88 3.25 8.24 29.37 99.15 59.66 9.17 96.89 37.44 18.66 91.44 31.46 85.69 61.99 92.46 89.04 19.80 50.91 47.85 63.54 7.57 70.12 26.90 30.80 91.87 42.35 37.66 59.04 10.16 11.16 24.76 19.54 9.52 48.73 49.86 10.64 76.78 50.93 92.92 6.65 14.37 71.81 60.82 29.66 66.08 5.37 71.70 69.61 87.53 27.16 31.61 1.49 57.27 24.10 9.25 74.43 67.03 56.37 59.63 37.14 7.25 38.71 3.16 60.52 21.71 65.32 78.78 41.07 0.61 87.23 6.46 13.98 31.32 -24.24 53.13 9.65 19.22 93.63 60.70 63.92 99.71 50.79 44.03 43.69 38.66 77.11 39.64 21.58 78.56 71.53 65.62 91.50 80.48 35.02 12.40 14.68 50.95 89.53 3.90 55.76 42.25 33.74 3.69 0.03 14.56 50.94 17.70 66.13 98.63 41.67 32.40 71.86 52.72 70.33 20.39 28.73 44.11 41.65 29.47 0.61 24.57 33.83 83.12 26.13 62.41 58.42 55.74 17.77 4.49 57.52 54.18 61.66 84.61 20.09 26.26 54.60 72.17 39.73 27.85 72.25 51.90 53.95 28.35 43.31 10.64 25.97 53.84 44.31 42.54 8.89 64.27 15.16 49.66 58.82 11.89 25.42 86.00 82.04 20.03 68.78 82.06 95.18 38.16 48.11 55.03 54.20 85.87 83.40 21.81 71.34 63.90 21.55 37.36 -29.81 25.42 86.01 82.94 35.71 62.09 64.20 25.68 51.59 12.61 79.99 33.00 40.11 42.13 80.14 37.66 40.44 67.98 51.31 84.97 29.25 46.41 25.86 5.94 35.75 3.49 11.37 73.37 92.42 17.03 27.79 10.16 17.32 51.57 64.10 99.10 80.70 32.90 0.79 2.65 34.08 98.04 13.59 85.99 52.68 48.14 78.66 17.03 62.57 3.64 16.12 81.94 32.64 76.08 40.18 71.92 93.98 9.09 60.30 48.39 98.87 50.26 76.51 89.10 10.37 53.10 15.97 21.84 44.75 42.81 73.08 12.23 77.50 78.40 52.14 87.76 73.55 58.41 77.40 29.79 86.43 53.70 43.50 47.74 3.71 4.30 92.28 90.70 42.66 58.25 75.79 61.42 9.46 2.71 15.41 25.15 11.83 71.41 12.88 26.08 -73.73 28.58 53.70 5.07 30.54 37.35 50.12 70.62 19.50 43.39 66.56 61.73 7.14 81.35 44.75 3.81 37.83 18.17 25.65 94.92 58.12 39.59 83.57 20.62 71.51 21.93 13.46 74.49 99.66 74.30 16.18 26.02 58.70 37.71 24.24 95.72 24.87 43.92 15.35 52.87 29.76 74.06 25.40 13.37 60.41 0.28 65.77 92.26 36.22 45.47 35.32 72.22 64.07 34.91 61.58 24.18 3.61 32.29 7.75 25.62 85.46 65.84 58.03 16.91 73.77 61.54 36.14 65.37 17.64 14.13 60.91 2.78 17.31 1.43 23.02 17.11 52.24 33.21 62.50 63.11 14.59 16.55 70.56 24.60 42.52 63.65 30.76 5.31 97.49 33.87 15.22 48.16 70.31 33.89 34.63 72.57 67.53 77.07 27.85 6.40 -94.87 58.26 15.99 44.42 55.10 45.33 91.25 76.38 50.78 55.11 3.29 48.38 74.98 7.06 56.17 79.02 21.66 7.61 2.33 4.29 71.36 7.91 95.42 65.19 95.62 88.30 95.16 50.24 42.76 23.16 85.37 56.79 9.32 64.31 48.77 34.42 42.93 59.13 4.09 68.04 95.69 38.69 69.53 58.91 81.91 2.66 20.72 63.68 75.04 12.90 18.28 15.53 79.22 65.47 80.24 1.09 58.68 54.71 44.27 94.67 80.81 62.69 25.51 56.69 9.56 98.96 18.46 16.55 25.36 46.96 14.67 87.05 58.56 73.23 17.33 39.55 84.34 3.16 47.32 8.36 47.89 51.89 16.42 38.85 56.22 4.34 96.37 40.64 47.84 75.62 53.36 51.94 34.82 24.42 36.97 99.52 5.85 51.00 6.09 40.14 -96.75 17.96 63.05 58.05 93.91 31.50 6.08 22.21 97.66 11.76 47.17 99.68 34.01 13.50 60.27 3.60 89.76 33.27 52.08 25.32 56.95 30.94 32.62 64.72 41.88 61.40 24.52 47.25 17.20 4.42 13.43 41.78 67.56 38.39 53.10 48.66 53.14 72.60 88.57 12.59 62.96 77.13 76.18 73.99 87.34 13.23 88.87 73.15 43.29 85.97 94.42 89.86 38.17 54.36 90.86 82.88 57.57 38.26 51.50 68.91 29.99 99.35 58.97 85.59 57.54 60.75 49.01 75.23 28.12 98.21 2.75 36.46 12.67 92.97 57.26 54.21 98.45 67.76 83.97 82.25 46.48 99.18 63.78 93.73 30.53 1.82 55.67 43.42 36.06 22.88 100.00 68.50 24.89 62.19 94.01 98.29 89.80 94.22 1.09 81.48 -56.79 70.46 15.34 6.64 82.81 52.54 47.42 56.72 50.50 34.88 21.31 48.61 55.35 26.95 48.15 54.76 22.94 33.23 15.61 40.00 21.33 85.31 22.57 73.30 21.62 53.82 40.27 38.44 74.27 76.84 82.50 68.35 86.78 86.32 70.66 65.30 68.80 86.86 98.48 93.13 59.83 41.73 14.96 22.55 3.15 72.20 3.11 3.82 23.72 14.72 38.15 55.81 18.69 50.96 60.40 40.91 13.38 56.10 6.37 76.13 52.29 91.19 40.66 72.28 69.96 98.80 91.67 64.11 36.40 60.45 80.56 58.37 70.86 19.19 40.26 84.18 44.22 97.38 29.52 41.99 43.01 35.48 10.88 15.96 57.50 33.10 87.79 33.32 60.19 18.01 6.01 83.24 18.34 76.46 67.99 39.57 36.05 58.26 10.96 42.96 -52.89 35.30 29.70 65.17 22.40 5.84 78.32 38.65 21.13 8.45 9.69 40.53 25.30 88.90 11.22 12.96 21.88 38.76 43.28 27.87 96.88 36.56 58.62 26.54 71.96 4.82 90.17 92.83 45.43 96.66 23.67 46.80 17.40 26.13 58.19 87.68 66.11 81.97 16.62 88.11 78.38 2.64 21.49 91.63 58.21 84.09 78.12 68.99 36.56 32.72 82.63 27.21 11.35 41.48 19.76 7.45 72.13 25.06 84.59 16.85 99.70 36.92 35.72 65.72 58.58 25.72 77.05 82.66 98.10 20.03 59.40 62.61 26.85 11.49 52.29 19.55 6.31 89.91 18.35 30.13 35.28 95.43 61.35 15.37 88.41 57.27 72.73 73.97 37.57 71.65 25.65 26.20 63.42 48.07 12.07 63.52 10.46 77.92 70.05 87.72 -97.38 61.18 24.64 47.42 94.12 32.26 98.36 32.94 24.06 83.53 4.82 24.34 57.76 64.02 83.93 54.69 83.36 94.60 13.75 79.56 27.82 67.93 39.80 97.99 31.98 26.53 97.57 40.36 96.05 41.86 41.45 92.74 35.90 58.78 51.60 58.10 3.15 33.90 2.56 25.53 69.10 44.81 22.54 51.19 28.10 85.03 72.39 59.69 2.14 56.96 69.39 30.81 33.55 54.02 63.15 20.72 39.79 70.81 7.99 45.17 0.94 11.45 41.99 29.59 28.32 18.38 83.34 34.73 88.32 98.07 86.16 63.24 78.59 34.35 39.19 98.43 9.50 57.41 50.18 75.09 54.11 72.75 48.31 48.28 53.21 98.26 25.86 72.17 6.10 26.15 2.74 68.70 46.06 51.81 1.40 21.17 97.67 55.84 88.65 35.76 -79.08 63.51 7.34 76.60 16.46 19.43 31.36 75.60 98.63 22.76 99.90 25.12 49.52 62.18 52.99 46.35 60.09 68.70 46.67 8.99 31.26 86.82 69.98 8.13 41.64 56.38 12.35 61.28 38.14 65.68 47.63 44.97 45.54 5.81 59.41 56.58 85.81 67.46 83.32 18.47 20.14 72.73 48.76 40.17 94.45 62.59 39.23 17.32 32.32 51.91 44.54 45.15 64.98 73.32 6.92 34.06 81.14 51.98 63.47 3.32 61.88 51.87 49.72 47.43 7.86 84.35 56.28 14.19 98.44 43.12 24.28 55.61 32.75 9.62 32.33 31.76 88.53 50.45 36.28 68.22 84.32 54.70 97.96 32.46 51.59 73.01 68.82 55.47 85.90 19.64 24.86 13.24 24.02 30.22 51.25 59.56 0.85 29.90 31.87 48.75 -0.03 55.36 80.62 13.12 62.98 15.98 89.76 52.42 65.12 29.15 25.47 50.85 45.11 14.07 39.30 44.17 29.83 88.05 12.12 37.75 66.03 44.43 96.58 38.79 91.22 79.77 2.56 47.87 40.56 65.28 0.78 38.89 80.67 88.67 32.10 69.32 79.95 75.29 6.00 9.45 93.45 4.10 41.13 38.61 55.74 53.84 98.43 77.70 34.29 92.34 78.31 7.28 5.93 84.78 6.31 84.61 49.15 43.51 60.75 27.51 56.29 76.21 51.76 77.68 61.79 78.62 34.43 88.73 87.69 54.61 24.28 56.55 46.11 58.48 99.54 21.66 58.55 54.48 18.54 73.37 20.12 32.66 28.81 28.03 64.87 40.11 81.72 47.39 27.32 42.65 4.31 65.09 71.48 5.41 30.35 73.59 15.02 60.52 71.51 93.75 -18.06 18.97 27.26 90.82 53.06 1.96 8.31 52.29 77.11 9.80 59.42 52.23 34.49 53.67 80.88 24.07 72.79 55.45 29.03 45.26 86.31 15.41 69.44 64.84 96.37 65.15 6.92 84.73 13.46 92.85 64.17 30.40 64.00 99.53 53.29 41.35 16.78 87.12 41.84 17.62 20.54 84.46 35.15 90.29 52.30 10.26 49.73 56.07 74.14 85.02 90.28 67.74 39.38 12.42 46.86 0.62 24.98 3.15 82.38 28.42 14.14 8.06 70.91 81.65 46.55 28.21 47.73 93.21 14.15 10.16 63.01 64.35 37.37 9.68 46.43 80.25 86.50 87.63 56.96 79.61 42.68 75.63 70.51 4.66 42.37 90.61 58.28 0.39 15.60 56.42 90.92 30.31 47.64 20.44 67.74 77.48 99.05 42.59 93.58 82.30 -39.76 94.50 41.13 83.53 99.92 21.34 70.67 58.24 6.78 43.67 80.41 51.16 0.56 96.42 70.43 58.41 32.15 42.42 4.56 41.37 83.98 5.78 34.29 20.27 40.76 42.14 11.79 66.85 60.78 46.40 92.43 51.89 4.69 74.08 63.23 43.08 80.31 23.24 53.64 26.39 23.86 97.29 95.33 30.97 39.67 46.25 21.33 14.86 50.34 57.92 4.99 87.91 22.11 89.61 60.59 66.91 41.51 78.35 38.38 61.65 16.71 85.70 92.57 38.03 48.51 25.83 44.12 45.17 90.38 15.17 40.84 3.57 69.12 46.97 26.47 57.02 74.91 29.58 95.60 37.05 61.39 35.10 14.33 68.60 87.24 28.54 48.70 15.54 0.84 38.12 48.66 31.21 30.24 94.43 31.50 6.80 86.95 99.54 96.73 76.25 -23.03 77.16 87.77 10.33 71.65 1.58 90.78 6.15 33.43 50.25 37.68 16.17 28.98 57.60 66.84 36.84 31.87 0.90 31.90 95.13 63.69 60.55 62.79 61.24 46.92 36.73 53.24 76.07 43.97 71.73 15.44 3.89 69.88 31.90 65.39 58.65 44.03 60.36 89.86 65.34 68.59 29.78 23.73 98.06 48.67 22.48 67.17 14.19 82.42 4.17 56.16 69.94 32.61 84.24 41.65 78.60 64.65 76.73 37.27 75.06 46.71 3.61 96.32 80.32 93.87 18.31 48.07 45.85 45.53 29.29 26.46 43.96 87.32 68.61 28.11 6.43 98.67 86.91 44.56 88.53 45.94 26.60 63.72 85.16 97.46 29.88 68.58 51.85 98.55 55.95 10.50 63.51 11.96 42.47 28.83 39.53 10.62 16.78 49.06 85.06 -45.56 56.32 0.02 74.44 99.40 95.55 94.01 94.15 34.69 98.96 91.18 89.65 12.11 72.51 60.32 31.58 70.64 87.12 90.42 62.60 21.14 92.43 64.28 47.33 19.51 32.60 37.54 95.84 93.55 12.76 33.54 49.93 75.11 30.60 29.18 20.29 68.21 68.53 87.42 33.27 17.80 8.44 27.41 41.54 22.18 74.55 63.88 0.47 82.47 47.08 66.31 33.78 55.52 87.72 38.53 91.01 11.07 56.21 88.07 2.86 9.28 92.00 30.14 64.40 31.44 50.62 85.34 97.64 97.69 27.98 11.63 39.31 42.41 18.91 22.40 92.68 58.18 92.17 23.16 13.95 99.22 86.41 21.50 81.54 1.53 31.31 28.71 73.25 14.47 41.04 51.61 30.55 69.06 11.40 89.88 42.77 84.92 90.34 34.61 97.57 -21.41 39.38 4.36 42.55 33.73 12.57 6.43 97.08 30.77 28.40 43.43 25.54 92.03 89.94 88.31 74.81 66.41 11.31 98.47 27.75 1.40 31.33 13.99 46.45 16.48 31.05 28.24 72.32 92.10 33.51 35.07 69.03 38.55 57.69 13.41 24.21 9.89 84.21 66.29 1.42 71.05 27.83 28.64 96.72 13.55 63.86 84.30 76.56 74.37 45.04 6.01 77.14 26.86 87.80 98.58 28.49 23.56 40.91 23.14 69.25 11.34 41.48 11.83 18.80 63.43 54.90 36.98 2.03 49.66 70.01 37.20 34.94 52.58 96.02 31.41 84.33 12.05 75.91 31.40 0.54 49.30 5.58 13.69 92.95 56.00 24.99 18.89 17.20 18.68 65.64 60.07 87.72 64.91 40.45 87.68 55.91 1.19 52.19 48.08 58.61 -91.38 9.59 77.30 57.87 33.56 71.05 40.92 40.83 97.20 23.01 9.26 19.63 89.45 87.54 68.49 43.34 12.96 61.56 86.44 41.85 13.10 89.44 97.20 34.43 32.39 27.12 15.53 56.28 74.05 70.84 83.79 42.48 8.35 7.73 69.75 89.03 76.85 63.10 12.39 27.95 51.51 81.78 73.04 98.38 80.99 6.51 84.37 19.50 82.49 28.99 43.86 14.85 0.02 63.90 96.40 55.69 98.11 5.24 71.47 14.53 79.28 60.58 73.89 77.57 37.67 42.37 62.59 0.26 19.33 87.38 21.83 52.03 82.50 92.46 81.72 42.29 78.18 46.32 86.05 1.48 99.32 80.13 49.20 22.25 65.74 37.54 9.83 54.74 9.11 12.12 72.49 3.89 45.69 52.67 20.52 6.92 60.50 74.84 0.53 88.31 -99.41 70.92 61.74 95.65 92.03 25.53 50.14 96.11 73.12 22.29 68.55 37.95 88.71 86.71 47.93 9.42 37.60 90.18 82.55 23.69 45.94 43.77 47.27 16.00 57.41 68.05 29.13 44.23 58.17 30.67 66.61 50.34 69.34 39.79 0.27 82.50 56.76 49.63 14.30 94.02 54.26 80.76 70.97 61.52 69.66 34.98 79.61 36.27 96.50 92.86 61.01 90.44 15.36 2.11 55.18 59.86 32.80 95.44 7.08 97.30 52.07 59.89 12.67 44.38 39.04 58.26 34.58 16.83 29.46 49.58 91.08 51.76 59.08 48.25 63.79 14.28 37.99 59.61 40.97 3.10 14.81 49.84 67.19 6.49 93.29 24.77 82.62 83.20 48.97 20.75 61.25 1.30 38.02 67.66 85.00 76.95 80.44 36.84 57.43 97.82 -58.99 99.26 0.54 30.15 39.04 16.50 6.87 16.04 85.74 98.68 7.52 48.64 13.04 92.27 31.53 62.58 23.66 54.82 56.36 38.32 34.43 14.87 39.23 71.62 1.97 83.24 99.45 85.40 60.10 24.28 23.18 34.25 93.32 88.29 91.18 35.83 79.82 39.23 58.84 81.47 88.92 62.44 18.23 66.26 70.80 90.73 60.16 69.56 95.33 54.97 87.34 81.56 20.74 37.17 93.97 93.84 73.19 87.59 80.95 86.82 53.23 90.54 3.16 67.67 41.62 62.68 44.55 21.16 31.08 20.50 30.43 43.05 67.70 18.92 90.36 86.19 70.44 45.07 92.43 47.77 80.28 57.12 81.35 83.41 71.12 82.72 12.28 99.48 62.43 95.82 6.10 48.31 8.87 36.50 63.77 16.45 38.45 34.33 46.72 55.11 -48.86 53.10 30.42 69.63 72.66 41.00 31.02 51.54 0.83 10.70 70.45 4.50 19.35 48.72 45.34 34.07 17.27 58.91 63.59 6.82 15.30 98.05 45.02 50.65 81.14 67.18 40.19 9.11 83.10 7.01 40.03 10.62 45.94 86.57 37.54 5.04 34.05 30.59 45.57 99.13 9.75 4.00 32.38 68.84 73.95 83.37 89.94 36.99 1.54 47.48 81.04 9.55 19.24 89.00 39.30 81.12 39.82 83.41 67.65 46.43 28.28 6.50 85.20 72.97 26.32 91.34 58.50 15.04 76.68 59.79 38.43 62.83 88.95 6.43 11.05 48.18 40.76 49.38 0.31 84.41 60.59 53.06 54.54 21.45 88.31 22.95 27.75 44.96 43.62 98.03 55.76 8.64 1.10 33.24 15.73 8.09 35.64 65.28 91.58 41.34 -33.09 76.74 8.69 43.80 66.58 97.93 22.08 50.28 41.89 27.75 59.59 2.78 87.69 42.95 93.85 50.49 29.99 57.60 59.94 53.66 36.34 20.55 26.90 10.91 62.88 32.83 66.93 46.29 54.20 69.82 47.74 51.90 34.90 76.24 3.00 5.81 92.14 72.10 84.64 17.24 41.45 49.51 21.30 36.06 49.33 83.77 74.16 53.15 30.79 42.21 5.61 0.04 38.78 1.04 90.42 53.90 17.97 24.76 32.90 62.44 53.08 30.33 44.98 86.15 40.30 18.20 95.36 23.54 68.43 66.94 40.29 43.09 16.80 94.24 43.27 26.37 18.19 5.34 97.33 34.31 55.34 56.84 79.15 78.21 97.50 30.66 47.59 87.17 1.49 25.78 19.51 36.71 26.60 45.63 80.24 1.41 27.20 66.88 76.20 64.18 -42.80 45.68 60.48 68.69 27.36 7.73 12.97 18.61 64.69 21.95 32.65 17.65 32.90 85.40 73.64 24.57 94.35 68.84 95.81 70.85 97.32 29.48 69.97 28.63 81.12 75.97 19.22 55.95 67.63 28.23 64.80 25.13 4.68 84.81 37.68 86.43 76.14 62.91 96.25 61.01 17.57 70.97 14.98 1.47 50.10 56.52 92.56 28.28 89.01 39.43 23.79 28.96 33.84 54.63 99.00 61.36 36.98 99.80 70.11 90.68 62.61 18.54 40.68 95.16 39.83 86.03 67.12 97.09 45.73 67.41 31.07 81.60 97.03 31.02 69.01 21.49 25.45 10.21 2.93 23.38 55.60 48.39 78.16 98.36 74.83 33.58 73.04 41.89 31.80 17.62 67.64 78.04 8.57 22.79 43.69 79.97 81.23 0.21 48.16 63.57 -37.17 67.20 51.52 36.25 91.07 59.07 30.24 61.50 82.54 84.36 9.77 8.60 48.58 75.35 5.80 43.82 52.14 50.88 26.86 93.91 65.41 67.41 1.50 83.82 64.00 29.36 61.46 64.43 71.59 72.55 9.30 39.05 68.03 52.64 65.33 10.55 40.31 50.36 27.95 7.74 21.35 68.31 89.34 10.92 17.97 39.25 54.99 67.01 85.07 52.95 83.94 99.70 41.71 86.57 42.65 57.27 95.30 78.77 53.74 66.06 3.64 87.52 71.35 54.02 24.93 25.60 17.18 6.25 2.07 13.93 1.23 18.03 70.85 18.03 67.90 26.81 83.95 20.83 45.70 51.16 59.74 19.88 76.16 13.33 64.02 53.26 87.05 9.14 56.26 39.38 65.64 49.58 23.61 3.12 91.92 24.97 76.17 67.31 35.56 93.01 -51.37 85.80 99.31 19.05 33.82 7.19 87.66 48.92 57.23 35.07 42.86 0.16 40.01 20.88 59.92 17.60 68.63 49.54 94.09 80.28 75.63 50.52 52.20 69.66 56.43 5.14 77.43 27.20 99.59 32.68 79.03 78.97 57.90 40.95 77.32 2.16 21.83 32.13 14.12 38.64 59.47 41.46 25.21 37.12 71.80 23.98 49.21 97.19 82.41 19.28 42.13 48.29 82.03 83.21 38.30 74.25 54.53 56.93 43.23 84.70 23.01 23.73 21.06 35.34 41.25 23.46 84.27 91.13 0.95 95.88 24.22 52.63 47.35 17.71 75.71 62.35 39.58 60.42 50.53 93.29 29.02 66.60 57.12 66.18 16.33 7.14 39.62 11.62 17.61 79.80 19.74 45.15 41.71 2.67 83.44 6.39 82.45 10.69 75.57 99.05 -83.58 68.61 10.68 7.27 35.38 46.71 40.24 20.34 71.62 9.81 0.29 61.31 12.39 52.20 73.38 64.16 76.84 94.22 10.58 71.33 79.09 83.47 45.00 93.16 14.25 9.28 86.49 3.90 31.74 11.55 40.19 28.82 28.46 59.08 0.87 22.58 91.38 20.04 80.82 57.65 65.30 34.51 46.22 23.12 87.85 69.47 92.10 99.91 87.80 22.89 91.76 48.25 77.93 54.89 36.50 0.22 43.94 31.29 39.35 88.02 90.71 1.38 59.55 3.15 56.05 42.99 13.76 21.57 25.25 31.93 16.17 32.01 96.29 34.87 73.64 41.54 80.02 12.88 0.13 36.27 20.09 30.10 20.79 32.37 16.40 57.44 65.65 30.84 78.12 85.75 75.35 95.95 46.81 56.84 17.49 18.36 5.29 60.71 12.06 78.95 -98.67 61.90 66.62 48.24 25.58 78.48 48.55 9.88 35.29 0.37 48.04 79.53 62.37 95.91 39.97 92.62 28.74 74.55 43.30 98.51 49.91 20.67 97.13 27.49 58.08 45.45 35.30 41.77 65.05 82.39 88.67 69.42 58.35 47.75 28.50 74.01 38.33 34.22 50.35 25.08 50.24 27.20 84.87 53.86 45.40 41.82 30.43 29.15 58.91 44.66 58.14 41.51 56.49 72.80 56.47 23.01 14.77 2.02 28.91 16.46 34.65 28.08 66.72 93.68 94.79 84.05 18.89 29.56 24.03 65.37 39.59 85.83 64.12 51.86 47.78 3.90 11.61 54.90 4.65 61.12 68.92 93.41 79.50 68.92 59.85 51.84 82.60 28.07 6.53 54.81 71.34 37.99 56.88 77.05 4.03 63.08 1.95 83.45 67.81 78.42 -90.56 39.65 1.68 54.54 48.98 61.24 27.05 71.05 38.70 39.98 47.20 48.46 41.57 30.17 30.64 53.74 22.68 57.61 53.02 78.78 76.73 68.68 26.82 9.54 10.05 88.70 57.46 32.53 58.94 88.61 88.86 4.81 77.10 45.82 42.00 97.61 78.83 38.97 56.18 32.69 16.48 12.85 76.51 33.68 15.10 35.58 56.48 80.23 65.38 70.17 74.57 97.86 77.65 85.54 82.00 9.05 43.25 1.87 37.02 56.98 28.56 13.33 65.10 15.27 67.23 16.25 42.93 6.38 50.49 72.10 69.62 95.85 44.78 17.54 29.95 58.93 13.29 38.39 8.84 6.96 32.97 50.12 20.55 15.42 78.88 34.04 70.20 90.47 48.64 26.67 21.86 35.03 99.07 36.90 41.26 19.36 24.25 8.69 82.07 43.34 -92.55 4.13 85.92 62.29 4.03 28.29 24.79 37.70 36.70 90.40 68.72 40.85 30.66 59.65 63.98 96.41 83.42 0.89 32.63 5.63 89.38 4.50 20.04 51.62 88.79 57.66 91.57 44.25 90.70 73.96 61.10 96.70 33.16 37.18 57.44 81.24 73.55 52.92 62.98 70.47 16.52 75.79 92.64 3.61 62.55 86.39 90.92 89.49 57.30 98.47 76.13 71.61 14.89 57.96 44.82 76.13 16.14 28.86 16.61 98.53 22.26 19.72 28.99 35.42 3.56 93.56 85.74 13.21 53.22 40.45 5.15 60.69 30.84 43.01 93.08 36.31 6.33 5.27 29.15 79.01 39.04 58.79 63.79 97.28 85.99 93.55 98.23 94.76 69.92 83.22 1.22 13.72 27.58 70.97 46.02 80.16 37.17 45.66 2.64 32.38 -71.05 55.86 24.66 95.62 28.45 62.27 57.12 41.23 78.18 85.78 53.11 42.42 36.42 39.90 57.06 24.97 5.47 71.61 31.41 53.38 63.30 98.11 69.64 45.34 55.49 48.47 60.86 72.69 50.64 63.79 39.34 75.15 18.23 53.05 2.98 72.07 80.08 78.64 59.50 42.99 84.70 60.80 50.87 6.94 26.28 60.07 4.99 20.55 50.29 1.57 10.92 73.64 91.55 84.03 51.46 27.96 86.53 60.39 27.54 43.05 43.20 43.51 25.30 38.59 89.72 63.61 49.50 68.67 12.94 79.45 41.20 11.55 58.90 17.25 28.89 36.64 4.39 45.80 56.01 15.27 60.83 74.40 23.07 61.81 50.72 12.43 97.76 33.04 87.53 90.22 79.95 49.45 26.90 43.22 45.43 59.47 13.37 93.00 43.81 86.33 -12.29 82.48 69.32 85.58 14.64 64.48 79.18 4.16 12.42 80.19 96.53 19.80 88.52 97.50 0.35 95.81 67.92 24.36 21.79 48.57 52.63 39.21 38.49 72.45 79.72 33.30 26.99 88.56 65.06 76.89 7.55 53.96 85.01 99.62 76.18 47.38 88.11 83.18 63.18 10.51 62.89 36.83 47.92 2.69 85.79 48.97 46.55 34.06 80.53 79.53 12.20 82.41 42.97 66.36 27.46 54.44 32.75 55.52 13.25 46.68 17.68 0.05 60.22 95.30 13.00 89.53 94.45 3.79 74.04 99.36 10.50 84.51 13.05 23.19 0.26 1.48 90.95 43.51 26.54 76.10 12.86 62.30 28.46 21.76 25.70 67.18 86.40 90.61 43.97 32.05 39.38 5.98 24.88 55.98 17.79 64.74 44.56 71.93 92.07 84.38 -17.43 45.87 56.83 15.57 83.54 30.03 65.34 21.83 64.13 7.26 89.24 86.50 10.98 36.44 44.29 41.88 7.88 29.07 32.52 56.38 73.36 29.40 81.34 61.53 53.91 64.01 10.64 96.39 49.90 80.85 9.13 46.82 38.26 71.81 39.25 53.82 76.08 22.94 82.22 31.99 86.38 67.44 7.93 2.18 10.01 20.35 35.14 22.96 1.12 5.01 99.76 85.46 93.90 20.32 91.68 90.44 77.51 51.25 67.62 13.74 56.61 2.89 21.36 70.77 13.74 13.22 53.90 74.58 12.09 49.51 17.65 34.73 78.98 90.53 42.60 47.85 87.71 92.17 67.11 23.34 91.32 36.99 42.70 91.00 61.76 55.68 96.65 57.00 77.85 0.44 84.62 39.05 70.06 66.27 78.58 96.78 80.62 8.04 82.45 41.64 -68.64 49.70 97.63 47.51 78.35 47.29 32.11 16.91 82.57 62.25 46.44 78.01 13.25 29.90 29.14 76.57 61.43 70.58 75.09 92.58 36.73 45.07 66.60 55.60 26.96 45.49 16.85 78.08 30.01 5.51 82.09 8.73 28.42 64.35 74.08 83.74 16.92 69.75 54.15 3.07 68.04 31.44 49.09 62.02 94.19 69.61 6.80 46.61 53.20 58.57 78.01 7.76 20.72 13.30 53.84 62.89 95.48 10.71 23.57 58.75 26.44 60.01 43.93 97.71 91.57 60.27 96.53 22.54 23.47 64.97 64.31 65.94 48.21 29.77 77.01 26.76 19.92 1.58 0.79 82.87 87.53 24.49 25.47 44.43 24.47 73.99 18.81 32.48 38.38 97.70 72.48 2.57 21.34 42.05 55.11 70.62 14.27 50.98 81.35 97.05 -1.32 93.70 21.75 85.50 10.67 58.32 34.94 87.60 91.92 91.20 49.43 13.40 82.73 68.51 14.86 84.94 81.46 80.22 17.65 27.49 18.81 64.82 46.32 8.51 90.10 0.20 70.84 94.12 53.48 46.38 75.17 6.86 93.65 46.48 5.47 94.37 20.44 62.88 0.66 42.45 79.16 95.03 1.37 22.95 56.60 61.10 85.62 75.19 1.82 8.18 75.47 55.88 87.14 61.78 48.92 94.15 76.83 67.62 7.08 64.83 15.39 34.12 72.22 53.57 6.63 58.28 91.48 16.29 30.20 21.05 54.07 57.70 11.76 11.58 20.96 3.62 47.89 11.54 85.61 80.00 94.24 43.25 12.34 52.55 29.86 15.55 99.73 10.42 72.87 20.75 95.72 15.67 49.88 20.10 96.44 70.64 18.22 70.49 54.81 59.58 -85.61 6.70 71.90 12.81 11.56 22.02 59.70 52.13 89.32 29.86 95.20 23.02 99.86 83.83 46.25 48.39 12.97 71.63 64.38 12.30 22.92 63.86 30.98 94.88 55.88 16.38 88.20 95.42 40.26 86.13 96.01 20.41 44.91 72.80 24.55 45.09 4.08 85.32 79.34 61.03 68.94 21.01 1.97 52.26 6.46 84.28 45.55 68.74 57.63 15.40 74.17 92.79 44.46 59.37 45.06 9.14 31.89 91.04 43.99 20.04 7.60 33.01 12.57 70.69 21.16 13.90 5.43 38.38 18.13 52.90 77.35 96.13 97.75 24.59 3.70 73.66 66.19 41.31 77.19 89.99 6.99 14.49 18.13 5.13 67.56 83.12 88.15 31.87 51.80 33.39 29.49 90.98 72.10 69.08 85.15 67.18 81.55 35.85 3.27 20.01 -35.72 64.33 14.29 12.20 11.22 54.01 54.47 35.26 44.62 63.65 35.84 92.32 89.44 65.20 30.34 89.92 40.42 62.95 20.49 95.03 52.95 46.00 77.88 58.83 75.00 7.01 83.82 40.09 19.49 98.67 9.15 55.22 11.57 47.53 39.24 92.03 96.62 83.87 86.97 77.25 31.85 71.29 61.22 26.25 39.35 29.48 38.42 71.25 48.93 61.74 32.61 93.01 72.03 99.64 94.37 97.06 80.14 0.26 62.77 22.35 46.73 60.56 14.57 42.99 56.22 74.15 22.28 29.25 45.63 64.23 0.63 68.86 72.73 68.53 50.88 33.88 43.57 34.98 45.44 90.67 89.45 3.46 90.22 13.64 21.22 73.04 80.01 26.00 46.44 32.19 68.21 96.34 44.81 47.91 39.32 97.81 90.99 95.29 65.89 78.10 -22.68 31.98 95.57 28.17 45.72 91.74 81.23 64.27 18.76 74.33 90.44 11.59 1.92 82.26 55.27 20.06 88.78 33.73 49.99 79.11 72.25 99.09 89.98 57.02 87.58 69.93 25.47 9.84 13.16 91.78 52.32 13.63 45.17 88.91 60.00 6.62 35.77 12.03 76.92 82.93 82.98 18.51 95.62 50.90 43.65 83.10 59.97 99.18 46.89 0.14 47.72 45.33 13.13 19.36 18.34 31.35 9.13 95.33 30.96 96.02 59.30 61.82 56.30 38.07 70.80 80.62 93.24 6.06 68.72 23.25 31.45 5.45 50.00 58.24 28.84 69.23 30.47 34.83 96.85 16.68 6.53 98.61 56.59 20.19 13.09 54.64 7.46 22.31 18.32 43.03 30.96 0.53 66.06 61.72 96.36 32.15 67.59 65.15 74.83 63.42 -9.63 48.57 57.14 84.72 53.21 2.23 51.23 8.86 58.06 5.18 63.10 1.93 1.96 86.67 34.84 28.54 56.83 69.17 77.55 35.31 85.01 12.08 46.74 28.47 2.07 81.31 71.95 3.98 84.61 17.18 75.12 18.63 51.26 47.84 0.24 31.83 59.62 83.19 95.93 31.15 5.37 51.51 48.56 82.92 93.40 60.51 93.16 76.92 60.56 68.35 22.06 83.53 49.27 11.34 61.69 15.13 85.11 70.64 26.18 6.55 45.31 14.78 14.17 28.82 4.15 90.22 68.35 81.65 50.33 49.75 89.86 30.68 21.92 16.11 40.15 0.78 85.50 24.61 40.46 30.59 81.61 68.60 30.00 27.19 84.09 79.00 40.61 17.51 60.43 83.64 18.82 36.44 1.75 55.79 89.04 68.01 77.82 62.24 49.53 88.48 -90.90 45.74 73.92 18.50 70.35 17.70 95.20 38.91 61.61 30.40 94.50 72.66 61.02 28.45 50.79 75.42 71.52 73.62 15.38 98.40 89.84 11.17 11.26 89.51 85.92 99.99 73.98 30.99 95.51 5.65 13.52 18.59 21.39 93.73 43.87 55.93 62.22 68.75 21.37 8.40 66.39 28.84 98.28 51.52 8.45 59.25 98.10 85.20 3.39 70.57 73.79 64.82 96.84 65.17 91.40 57.11 32.60 62.36 7.04 68.28 26.24 99.27 42.10 88.47 20.40 23.16 90.24 38.96 3.03 49.98 54.15 14.06 27.19 7.84 1.26 70.24 55.11 62.41 35.65 22.79 83.79 17.25 30.22 98.50 6.47 89.62 60.96 21.82 5.29 5.28 32.88 86.56 44.97 60.56 63.33 80.05 94.87 71.80 62.30 16.48 -92.97 49.16 61.09 31.31 93.69 59.16 44.23 95.67 7.70 77.15 98.26 68.38 60.79 9.00 70.03 1.67 85.20 16.38 82.88 49.63 36.11 69.70 2.87 95.83 18.23 34.34 13.37 2.83 23.28 25.85 33.36 30.08 11.21 45.99 94.32 92.85 71.31 73.98 99.07 51.52 4.11 37.66 35.49 31.26 79.81 31.63 0.08 42.78 90.33 62.12 36.12 58.37 52.23 14.13 27.30 34.11 18.28 92.39 47.58 8.89 74.17 69.86 44.20 56.71 76.71 13.28 21.79 85.30 89.05 37.08 77.79 45.41 45.40 86.76 18.75 7.80 50.94 44.08 63.97 80.53 66.87 2.53 30.11 16.88 49.76 89.11 55.99 87.60 49.14 78.23 85.73 98.62 32.34 0.16 85.33 65.55 45.63 27.86 41.38 69.38 -86.85 12.50 29.43 4.26 39.30 67.26 92.65 49.21 48.16 63.34 43.87 89.38 96.61 56.15 84.57 80.24 89.97 14.65 32.72 61.16 89.92 88.62 51.14 85.71 26.14 8.26 75.44 63.25 35.34 46.74 82.34 79.49 70.61 43.64 63.68 59.11 34.99 23.12 42.18 46.03 68.52 71.67 39.14 40.31 76.66 21.82 28.49 55.59 8.00 97.56 56.06 37.16 4.44 86.94 0.43 95.19 18.88 83.70 88.47 76.44 13.88 53.04 78.33 5.99 90.17 86.09 6.04 54.18 48.22 51.46 68.42 78.85 9.34 29.14 41.86 78.63 10.64 0.41 89.26 73.05 47.89 36.40 62.43 56.58 22.17 7.74 85.60 32.22 75.73 40.31 64.07 98.71 18.17 67.38 49.75 85.99 25.24 24.35 38.63 51.08 -24.21 17.74 94.61 55.52 42.94 32.57 94.74 13.42 52.67 90.09 4.26 90.66 82.15 77.52 6.54 3.50 42.72 56.61 19.67 7.05 18.61 44.59 55.98 70.90 46.08 64.48 41.17 39.25 56.94 38.66 0.80 72.39 32.69 37.83 9.72 63.40 70.10 29.70 1.93 91.07 78.14 14.05 19.77 83.60 15.87 50.25 28.39 76.73 25.99 91.86 38.58 93.35 75.77 41.67 18.13 96.06 43.51 61.57 20.56 17.10 21.61 62.58 93.24 10.99 68.44 43.79 90.38 71.29 92.85 85.22 4.65 8.69 33.24 7.64 73.23 83.17 48.63 79.75 0.18 23.79 56.50 79.55 37.55 32.30 53.53 62.79 24.97 47.90 66.84 55.86 26.67 45.25 9.50 75.79 32.70 3.50 45.91 20.07 66.40 61.65 -51.91 4.20 92.41 24.12 23.31 47.77 69.29 10.02 91.19 71.79 9.19 97.93 31.83 93.41 10.18 34.14 75.11 65.89 31.06 44.67 65.23 81.64 10.70 93.94 87.41 56.65 39.79 2.77 1.50 72.24 37.95 44.54 45.66 21.45 9.66 26.27 17.91 18.78 27.11 80.21 44.45 16.30 56.21 62.66 0.98 16.86 31.89 21.75 27.89 82.14 5.39 54.50 15.77 1.95 91.38 26.20 13.36 10.73 28.36 36.62 94.87 97.39 78.19 29.09 27.61 87.16 87.46 23.34 74.53 37.58 89.16 56.94 25.71 53.63 8.12 37.25 5.36 37.61 20.85 33.66 59.28 81.78 21.08 73.49 0.65 46.86 53.69 23.00 35.05 89.81 40.44 46.26 59.56 23.68 68.70 42.64 68.32 68.84 33.34 18.73 -49.75 32.28 37.18 70.22 69.76 5.13 44.08 56.40 72.57 27.46 14.08 25.93 51.08 67.13 62.12 13.34 6.49 97.73 89.91 42.60 55.57 17.50 17.66 83.82 79.02 18.58 35.24 38.43 38.71 77.33 3.04 10.05 75.50 7.71 68.66 3.81 59.11 73.10 82.38 20.04 20.42 6.24 36.32 31.00 86.22 86.47 97.05 40.62 24.32 8.81 38.85 28.96 37.33 54.03 59.64 86.26 27.26 73.93 72.61 83.69 18.07 29.54 94.06 0.95 81.29 50.09 52.43 39.02 8.40 62.49 66.87 13.04 84.73 15.80 49.55 74.96 12.26 76.63 44.37 56.29 34.66 5.05 1.49 78.09 41.74 33.29 32.22 94.38 19.30 32.89 2.64 15.86 68.97 19.38 61.90 37.83 53.56 33.03 15.33 71.62 -87.56 17.88 36.70 86.26 60.05 65.63 78.15 89.57 52.68 68.78 25.02 59.77 3.52 54.62 64.60 71.39 57.85 39.24 70.67 72.10 56.74 47.78 2.28 23.12 62.88 46.07 27.04 0.83 56.66 44.86 20.17 29.98 85.26 14.83 94.10 99.73 76.13 69.01 52.60 98.58 62.39 69.43 33.87 29.36 53.81 82.81 60.78 18.32 47.30 52.65 37.74 38.30 88.83 38.64 78.85 58.08 18.88 31.92 94.00 25.10 23.94 95.54 20.35 87.27 19.12 18.03 5.60 1.72 0.89 92.66 21.95 16.98 75.75 35.62 56.22 98.68 88.52 11.08 50.37 36.09 97.39 6.77 95.96 8.19 43.94 19.77 43.13 94.47 8.20 69.15 16.08 54.87 47.45 82.47 49.32 22.13 12.41 67.60 28.92 65.64 -52.28 48.71 71.38 35.79 36.09 54.30 55.23 53.25 10.23 66.09 92.08 73.68 46.58 43.08 78.76 97.14 51.96 4.46 67.55 54.46 81.29 58.60 11.37 12.71 75.26 83.52 92.77 52.13 37.04 9.59 19.07 93.27 71.23 42.23 5.79 47.29 74.30 80.10 55.85 47.17 85.36 6.77 9.02 74.17 5.27 51.48 3.72 43.58 75.37 51.64 72.14 26.61 28.25 88.60 19.01 54.25 47.50 74.56 30.77 13.90 54.93 96.69 53.91 95.34 30.40 98.51 5.86 13.24 57.67 23.96 7.02 36.64 95.91 48.67 13.04 87.55 87.83 44.48 46.07 12.82 33.71 61.72 92.56 46.83 86.15 1.57 81.10 89.09 31.57 64.25 66.90 12.30 81.28 26.65 53.19 92.70 76.76 26.90 85.97 44.80 -62.18 66.13 40.03 12.15 4.72 3.54 47.07 17.48 38.69 72.26 22.03 68.51 57.01 38.21 37.51 61.71 18.03 76.44 36.84 78.57 7.90 59.53 94.95 6.74 5.75 64.58 5.00 51.88 78.04 57.50 46.98 72.41 98.77 41.58 53.14 96.90 62.41 87.99 37.78 2.94 24.22 65.50 24.31 29.82 29.58 85.25 59.89 63.30 82.73 86.53 50.64 67.60 73.22 8.01 92.05 11.59 75.69 3.52 42.73 28.42 98.47 72.56 69.95 17.35 65.41 45.06 31.39 1.23 34.19 39.05 54.45 83.54 58.67 6.89 66.86 55.16 32.13 67.70 6.03 86.48 60.40 10.21 1.28 4.72 86.88 2.20 39.18 30.37 92.06 18.12 44.47 13.40 10.41 6.69 78.31 15.59 46.95 0.05 71.31 55.40 -63.46 9.62 33.30 42.47 72.05 53.33 84.22 18.65 15.03 5.70 81.83 34.28 20.09 65.66 40.01 80.46 67.98 8.81 43.05 86.81 82.24 80.01 8.87 54.28 39.52 26.66 78.87 4.43 89.23 48.07 16.22 6.93 58.12 79.17 47.55 97.97 6.30 3.66 1.73 1.76 96.86 46.97 19.17 93.07 60.87 90.45 59.45 0.26 19.08 64.09 69.38 18.24 48.04 99.46 48.77 42.85 91.00 42.06 18.00 62.16 3.99 56.86 41.89 85.54 26.08 70.25 8.69 73.63 48.45 78.87 63.96 29.38 76.69 47.75 29.51 80.33 72.30 27.21 78.18 81.45 36.32 93.33 7.72 10.67 60.48 49.20 80.82 50.68 69.76 38.63 28.86 19.09 67.03 95.61 81.45 29.14 97.79 67.76 24.96 83.67 -33.40 51.35 89.04 99.53 96.63 22.40 55.77 6.09 8.03 90.08 27.51 35.68 11.57 81.24 6.24 67.55 13.52 18.28 27.79 70.87 67.29 61.31 40.38 31.74 93.52 21.09 5.51 52.85 58.90 31.00 92.80 16.13 21.96 58.80 55.71 72.21 34.50 53.37 96.67 33.35 30.86 64.60 94.17 41.99 35.48 45.74 97.89 41.02 84.13 16.57 7.04 62.48 89.09 87.10 94.94 35.52 59.33 18.84 8.23 51.54 85.79 6.71 16.44 29.91 60.96 2.34 25.82 90.82 60.00 53.59 79.51 48.09 50.49 8.22 62.15 25.73 53.14 97.08 5.78 58.88 16.32 59.36 11.43 91.94 15.29 26.69 14.11 38.97 57.15 24.83 99.88 64.90 19.74 47.75 46.45 2.02 62.73 6.39 76.74 40.29 -18.23 4.00 65.16 61.36 99.18 85.94 9.05 49.25 28.75 3.47 42.65 14.84 64.59 77.82 1.45 52.04 40.48 97.56 1.16 85.18 53.64 50.25 34.59 55.05 27.56 33.47 2.09 52.79 51.23 47.95 87.10 37.72 77.08 30.64 52.74 18.13 78.10 67.46 45.81 42.51 30.18 91.86 13.28 2.32 7.86 18.19 9.25 9.28 3.48 25.62 35.94 56.78 1.29 35.55 65.06 33.42 62.96 1.68 72.37 55.47 11.21 68.30 65.41 72.50 30.55 66.68 43.91 78.58 51.14 41.09 44.74 13.90 23.87 78.56 38.73 36.24 32.51 56.68 84.34 96.96 60.46 91.47 92.91 14.05 26.25 38.22 21.39 83.12 48.77 2.51 30.92 16.54 64.09 90.70 9.82 3.25 13.00 36.03 84.35 22.52 -54.23 13.19 12.26 28.74 45.86 41.81 83.64 49.91 92.35 78.30 42.86 4.85 73.47 52.57 58.11 48.66 41.07 4.91 21.21 10.39 5.51 96.89 46.61 24.24 91.66 73.01 31.38 24.12 53.61 28.53 21.26 6.76 34.37 5.78 56.81 57.91 94.68 45.44 84.31 62.76 33.97 51.31 23.83 41.02 86.90 18.60 63.62 7.90 30.14 57.72 21.54 1.74 99.21 53.33 21.16 95.73 25.82 79.50 4.13 68.05 30.76 68.97 23.80 51.16 16.87 70.70 32.86 27.59 54.58 73.15 42.97 88.02 34.82 83.44 56.32 14.31 11.21 3.85 67.62 32.47 97.65 52.39 12.73 59.74 42.95 2.90 81.39 54.76 34.50 66.49 90.81 6.85 59.24 67.95 58.35 95.09 80.02 86.67 84.16 25.32 -25.65 86.02 65.23 50.35 55.23 39.18 25.97 54.83 75.56 70.17 67.76 27.56 5.61 65.66 54.67 49.61 62.88 44.57 87.92 44.78 95.29 1.48 30.15 80.81 94.79 5.71 1.03 37.98 35.62 59.34 3.45 92.78 93.94 73.39 93.84 61.92 1.89 46.58 35.54 69.12 7.01 61.41 48.80 3.60 62.40 50.12 32.80 17.33 96.69 85.63 53.12 19.17 13.40 51.49 5.63 5.23 40.70 70.03 71.10 78.04 46.02 68.81 80.75 25.09 96.09 54.76 45.90 45.80 92.83 70.05 91.39 27.83 63.76 4.37 19.92 0.13 5.46 46.21 7.12 15.36 51.25 11.86 15.42 11.31 26.95 10.76 86.73 0.66 50.38 37.83 79.12 27.79 61.10 62.55 13.02 22.87 99.00 8.19 56.18 56.33 -97.90 46.23 26.39 79.16 58.48 72.05 66.03 62.22 54.51 70.13 74.17 73.41 95.27 49.28 36.38 34.61 9.41 67.83 4.84 44.52 19.57 53.57 67.52 9.71 94.61 47.90 80.38 74.26 57.43 81.30 61.93 58.20 82.57 31.50 44.97 95.00 71.66 68.53 80.67 46.86 39.53 27.98 73.42 33.15 78.41 43.27 16.60 42.32 71.16 73.88 83.19 17.60 77.09 5.26 25.97 77.29 40.19 98.19 92.77 61.19 5.84 35.80 4.00 52.74 67.62 53.66 84.47 99.48 38.61 98.36 2.25 57.69 58.52 80.96 67.47 85.69 61.85 26.12 28.34 61.13 42.21 88.91 73.61 9.46 37.72 66.03 56.96 81.41 86.82 39.14 48.94 6.69 93.30 55.64 11.51 14.17 56.21 4.14 39.83 3.78 -33.27 67.92 50.79 46.11 43.40 14.46 89.34 69.49 38.17 16.01 49.86 51.74 94.66 48.78 2.23 99.75 46.73 35.87 79.75 36.74 49.30 51.85 22.73 4.22 52.43 43.72 60.14 73.01 70.61 85.81 49.24 54.74 10.89 22.97 38.55 95.93 26.46 48.51 23.13 30.48 61.51 83.96 24.95 43.33 41.47 23.46 53.44 32.38 57.42 44.22 75.52 8.09 22.86 43.62 99.43 35.23 0.85 53.47 82.10 38.02 36.25 99.15 31.07 71.55 16.65 79.10 93.76 29.11 23.98 48.05 22.89 32.95 91.83 36.86 20.26 86.34 64.78 14.75 31.86 31.06 40.12 41.10 4.21 29.44 35.48 1.36 84.41 13.39 74.03 74.78 1.09 76.63 24.29 67.96 64.84 69.03 23.81 18.68 3.92 67.18 -60.50 95.32 41.86 18.11 65.94 43.89 3.98 31.66 45.34 94.51 82.88 32.23 10.82 59.38 58.43 24.00 87.48 51.85 55.07 57.57 68.94 5.16 26.31 96.98 59.13 50.67 56.94 48.16 40.70 7.45 77.04 25.42 52.79 92.84 5.52 4.46 37.25 61.96 6.32 69.53 31.60 6.37 91.36 62.53 49.24 30.02 38.85 39.33 44.75 63.50 23.05 27.38 73.97 56.99 32.45 81.22 56.32 13.95 77.90 69.69 53.84 75.03 2.29 19.56 7.54 68.95 83.03 30.19 81.49 20.54 53.61 78.25 28.81 96.91 16.11 80.83 26.10 13.25 65.37 64.11 98.07 55.00 32.37 91.14 38.20 12.87 6.39 64.23 24.13 91.89 98.50 22.54 19.34 26.18 46.92 86.29 57.33 86.94 87.65 98.67 -96.97 94.40 82.67 45.64 33.83 22.67 88.37 89.32 76.37 95.15 47.17 83.75 22.25 41.30 86.14 61.61 96.68 71.16 90.15 34.26 78.67 87.25 74.04 52.50 89.67 94.64 40.03 70.15 22.35 50.54 86.15 0.94 6.42 9.33 18.26 45.04 4.49 46.58 79.55 71.54 26.64 58.89 88.29 14.33 69.35 34.16 83.39 35.92 68.22 11.06 88.80 81.68 76.61 45.72 37.28 93.60 43.22 59.30 80.05 36.42 21.21 26.12 39.42 61.40 49.51 34.26 82.08 50.83 96.01 5.61 70.26 79.93 90.55 10.20 56.19 49.30 15.92 94.16 90.83 71.69 3.62 34.14 1.33 26.73 25.12 53.76 63.87 60.31 13.49 51.08 95.43 60.14 61.66 79.02 75.49 64.22 68.08 70.89 88.56 50.35 -71.74 25.77 72.54 73.74 19.91 10.21 15.05 72.96 80.68 86.37 42.48 85.42 24.72 42.85 99.07 41.10 64.00 50.71 56.13 82.51 57.97 82.36 97.31 85.39 35.61 47.44 76.03 73.51 83.23 32.85 20.31 16.54 66.38 75.55 87.06 5.74 80.87 47.56 69.97 61.25 10.94 10.48 45.48 68.39 53.16 69.96 90.17 53.94 95.64 49.49 8.75 45.16 93.38 60.90 59.07 31.05 93.76 84.13 13.56 85.32 9.62 91.62 6.09 33.27 13.29 93.79 25.83 88.78 8.30 28.91 51.71 51.50 39.36 57.67 72.95 60.21 57.08 48.93 31.19 19.04 2.22 49.61 87.48 40.87 17.12 96.51 72.65 5.34 22.36 61.00 73.61 23.24 39.93 87.26 37.01 75.73 28.78 39.53 75.08 11.42 -72.70 78.34 34.13 54.14 0.98 55.51 14.15 3.94 33.30 54.02 71.80 3.17 38.45 25.76 19.45 83.47 53.14 78.38 54.74 59.52 50.69 49.66 32.27 34.66 20.04 2.59 46.26 14.47 21.41 31.40 51.41 39.68 26.14 61.91 20.32 88.42 75.65 33.82 50.33 25.19 43.67 94.14 5.19 79.31 26.97 75.00 48.65 34.28 94.89 6.59 80.57 64.18 57.57 13.08 1.63 35.66 49.53 0.51 95.86 11.95 0.24 89.73 96.63 13.01 58.67 37.34 45.67 74.42 51.69 11.31 71.87 82.27 40.16 71.09 99.76 9.61 49.61 79.81 12.47 87.27 99.82 4.76 55.11 78.65 76.19 94.26 99.20 94.56 16.32 55.13 84.94 73.60 80.25 58.95 91.68 7.18 26.48 96.41 16.27 17.65 -72.81 52.79 77.08 74.78 10.33 90.95 88.99 63.81 79.87 96.50 69.73 48.22 57.04 41.88 33.57 13.74 93.79 18.79 65.41 20.14 42.53 54.37 35.00 59.66 2.22 21.82 90.06 16.88 33.26 65.52 54.47 34.16 45.91 49.81 15.45 15.00 18.31 51.82 21.48 77.19 61.25 31.16 81.96 21.05 63.53 6.38 77.81 81.01 67.86 12.90 41.22 33.74 96.37 4.52 95.12 3.08 53.54 48.86 28.32 66.60 65.51 56.94 37.87 60.40 46.41 22.45 86.44 72.42 91.27 53.97 55.15 13.26 36.02 9.78 92.73 25.33 2.19 61.90 1.74 32.54 21.54 49.98 87.71 68.45 72.77 25.44 21.08 65.83 95.26 17.13 79.70 44.33 49.93 42.72 65.50 91.58 12.96 15.80 40.83 58.86 -68.65 54.44 61.10 12.06 40.72 82.85 98.32 84.82 61.35 95.96 30.30 32.93 61.02 97.77 76.79 69.72 77.39 95.44 26.30 2.92 51.00 94.72 1.94 1.84 55.86 6.73 29.17 90.88 80.11 64.02 76.94 2.72 34.22 13.97 65.55 56.52 7.39 37.85 22.47 44.27 45.61 33.18 61.98 52.49 69.66 66.06 89.38 80.60 44.95 87.84 66.18 0.10 82.07 47.27 25.80 4.55 52.09 96.11 67.18 53.99 91.13 31.68 51.69 24.74 8.43 87.09 5.70 87.60 15.52 73.31 13.08 32.14 70.29 57.08 99.98 95.58 81.61 10.03 62.06 70.24 83.92 44.16 39.32 25.82 57.89 51.38 14.93 53.80 66.06 38.40 17.71 38.98 50.04 44.47 20.98 80.85 75.80 40.45 69.87 39.86 -89.12 40.32 32.98 56.39 84.65 95.35 47.38 34.96 63.60 13.25 44.22 60.95 31.36 67.17 29.99 77.60 54.09 21.03 66.01 59.44 22.19 1.34 83.33 77.54 32.11 31.56 80.42 13.65 47.61 90.12 59.27 44.33 82.32 88.25 11.88 95.71 8.46 92.38 54.95 26.87 7.00 66.53 0.59 20.33 53.43 68.93 0.80 53.28 49.49 9.10 20.75 52.09 87.31 3.03 31.89 3.36 74.41 75.66 77.33 84.61 10.94 33.40 27.97 18.22 25.70 82.48 31.56 85.83 86.33 21.41 3.68 67.87 58.30 97.49 59.96 32.57 6.03 15.69 69.13 62.94 97.78 31.40 62.95 83.24 23.77 67.48 22.38 10.26 93.23 50.54 19.11 54.82 92.15 55.10 91.56 19.76 29.18 13.98 17.00 1.68 -18.74 28.10 55.40 58.42 58.42 37.27 17.68 80.67 6.34 15.80 94.76 22.05 0.20 62.06 27.74 93.01 1.61 41.14 48.80 47.10 39.81 14.19 42.07 98.54 58.38 20.30 84.12 40.66 12.92 88.18 16.31 52.66 66.29 41.66 33.44 86.06 62.07 55.65 40.58 7.46 66.74 80.31 40.84 53.11 68.84 21.79 49.58 50.99 21.70 3.26 71.36 58.16 76.22 85.27 93.17 47.39 26.53 47.73 33.13 21.52 26.41 24.59 20.00 38.74 1.32 25.50 25.79 13.07 83.55 97.73 64.86 88.18 46.20 52.96 80.16 98.01 5.76 57.16 92.67 12.61 78.63 11.86 61.15 91.24 34.30 22.92 76.09 68.53 65.50 12.78 12.96 74.64 32.98 70.15 58.51 66.40 76.75 40.98 15.65 90.06 -71.46 93.52 2.32 77.36 74.06 63.79 16.58 21.53 17.48 7.46 5.53 52.16 26.18 74.00 24.49 28.57 59.70 48.92 47.81 50.65 65.45 26.42 29.77 84.94 85.05 46.59 93.71 23.90 3.68 48.01 93.95 7.44 51.45 29.48 48.88 14.99 78.87 39.61 71.49 27.53 72.64 96.80 58.80 76.24 63.85 93.26 29.36 18.62 64.78 21.20 41.13 84.64 45.23 52.63 2.73 25.45 3.63 53.18 79.79 11.92 17.98 2.80 37.91 48.78 56.25 60.67 0.42 58.57 36.32 70.19 43.49 52.41 47.24 95.51 32.59 45.69 48.27 95.40 72.95 68.54 23.17 60.47 56.71 0.83 83.27 7.99 80.35 72.15 41.04 68.98 79.87 96.92 15.96 10.04 38.26 87.04 29.24 69.40 51.74 35.43 -82.51 52.68 70.47 64.18 42.47 8.14 40.30 69.16 75.68 41.58 95.20 64.53 86.58 75.06 49.60 36.71 67.48 48.34 42.42 39.29 43.59 23.16 77.63 94.91 19.25 67.34 69.07 81.14 95.66 67.65 70.33 35.49 53.91 12.95 1.41 89.22 89.11 84.61 34.04 44.15 34.14 84.70 83.21 94.01 46.09 0.33 98.00 50.46 40.04 17.29 10.06 46.29 26.12 88.60 60.27 4.79 3.26 31.78 42.04 50.89 29.84 15.98 17.16 2.93 38.08 12.85 96.08 5.59 34.08 36.67 55.86 5.95 34.10 9.64 38.13 29.78 43.51 21.41 36.27 58.86 69.87 85.23 77.39 93.75 14.87 36.64 12.35 2.38 77.32 76.82 99.62 78.27 51.37 75.86 67.05 38.57 5.27 17.11 19.00 43.17 -18.57 50.93 37.82 93.02 19.09 71.05 19.46 37.98 36.82 64.80 1.26 93.67 19.95 16.58 37.68 29.85 48.00 99.58 30.01 34.29 30.41 57.95 13.51 77.99 41.62 92.83 84.07 41.55 73.77 71.37 35.69 76.32 32.31 49.34 42.28 76.13 45.27 58.64 22.76 78.33 63.72 92.46 24.75 29.51 44.15 21.61 88.39 14.86 80.78 15.64 78.31 33.60 11.10 92.31 58.19 8.22 46.69 75.37 15.92 39.61 81.95 54.68 52.41 33.09 76.03 62.96 53.66 56.59 8.64 36.22 40.48 88.15 63.14 0.74 73.95 73.02 59.66 68.48 29.90 34.74 32.76 61.69 29.61 50.94 13.31 47.25 80.57 53.56 17.16 91.74 42.26 78.39 98.87 83.08 17.54 54.92 25.61 58.69 82.19 67.37 -37.14 26.43 86.18 2.23 30.25 10.04 69.33 16.61 98.07 57.60 51.16 53.43 30.37 61.81 22.86 93.29 5.61 11.87 61.98 67.38 41.56 64.54 45.33 38.91 71.50 61.55 17.61 10.87 39.30 67.31 1.34 77.17 43.91 50.89 67.71 80.49 95.51 54.12 49.36 79.46 70.06 99.88 88.93 31.10 68.37 84.00 91.72 10.98 86.24 50.37 99.60 73.07 51.53 87.61 0.54 69.68 60.87 67.01 6.94 99.77 79.32 13.88 89.29 86.63 37.90 18.92 9.14 2.29 14.30 11.48 88.63 39.99 57.53 61.09 7.21 41.32 46.83 88.06 61.80 69.71 95.08 89.57 88.27 87.27 79.12 24.62 35.13 59.82 53.97 6.37 33.47 98.62 29.11 56.45 7.93 74.01 16.50 74.49 92.15 21.45 -77.58 41.81 18.72 51.41 96.63 73.68 36.12 83.00 73.92 21.58 40.14 74.90 97.65 82.71 86.17 2.65 60.26 58.08 88.68 57.67 0.46 34.95 72.06 31.87 56.23 14.04 65.57 37.57 60.91 97.73 15.41 67.87 63.18 84.08 65.26 32.84 84.27 39.34 15.27 89.77 16.90 44.50 56.82 36.70 95.74 3.44 43.16 78.40 45.59 7.21 78.02 3.60 83.66 19.38 32.71 54.04 74.12 14.54 24.24 38.56 65.71 79.52 46.50 84.71 26.52 69.67 57.39 40.56 8.74 38.06 12.62 85.02 91.37 40.42 12.50 16.61 73.11 80.03 99.01 15.48 58.97 80.19 39.26 96.97 5.78 34.16 12.93 55.16 19.10 3.85 25.47 3.74 78.02 84.80 87.14 36.14 60.96 96.41 49.25 52.07 -42.88 88.00 55.32 86.20 47.34 71.79 0.51 99.02 92.37 66.98 25.46 11.18 67.66 58.94 14.17 2.55 23.28 68.76 43.75 83.52 53.51 37.09 59.76 25.05 93.14 26.78 7.20 18.31 78.79 40.96 72.82 65.30 58.86 2.85 54.54 3.72 38.75 28.03 14.95 75.84 29.11 0.79 31.48 92.20 64.03 21.75 53.42 46.82 10.73 47.63 7.91 3.24 30.06 67.39 87.49 38.88 54.96 49.02 88.25 81.95 59.10 3.59 9.39 68.08 79.64 81.44 30.73 44.39 72.90 99.47 74.72 80.20 56.05 12.00 88.19 19.42 68.43 34.30 22.81 5.81 88.16 18.55 17.74 53.70 2.40 46.70 51.13 66.23 30.95 84.84 49.25 79.96 64.84 0.19 25.70 22.11 76.21 97.78 66.61 12.20 -26.31 37.96 65.75 19.78 75.84 16.53 4.04 78.31 10.21 4.94 2.54 28.09 22.50 89.45 84.14 56.81 7.43 89.88 97.02 94.56 74.14 15.73 8.47 22.57 78.43 42.79 7.29 13.89 23.24 51.07 30.20 15.10 53.64 71.69 35.46 50.59 85.89 17.20 32.00 24.50 93.65 99.92 71.35 68.82 30.26 45.90 62.56 26.56 56.16 51.98 99.88 7.34 48.06 83.80 15.56 96.67 93.58 45.32 64.33 27.38 96.70 59.79 13.17 64.76 27.61 67.00 73.89 99.90 88.75 7.35 84.62 66.24 96.89 79.22 19.21 23.18 87.03 15.18 68.45 65.24 87.58 24.82 46.36 86.84 8.10 27.84 37.39 77.80 38.78 45.08 23.08 15.82 42.32 23.95 83.10 27.86 19.57 99.56 6.99 90.91 -62.75 31.08 15.30 55.49 73.62 54.39 69.20 47.09 22.53 24.60 43.94 4.48 23.02 97.96 63.76 55.38 29.81 60.18 5.35 9.48 30.81 31.91 43.79 86.15 22.25 32.66 66.51 5.65 43.14 37.30 38.97 72.75 68.79 18.14 95.46 54.76 74.15 44.71 84.24 73.02 99.72 33.40 42.36 62.08 9.43 62.39 57.81 85.22 71.68 79.11 87.61 23.23 65.51 31.83 77.81 23.86 92.36 46.88 82.31 33.02 38.39 76.09 81.46 68.04 93.83 52.51 34.98 70.22 54.66 77.07 27.13 50.49 68.88 62.38 16.83 69.46 26.84 78.99 35.36 44.78 18.98 72.47 91.11 1.20 61.97 90.07 94.89 96.48 42.81 96.73 21.56 78.96 10.08 21.82 97.94 96.63 52.52 27.50 45.87 3.98 -24.66 21.01 67.93 54.92 13.99 25.19 96.42 32.83 8.91 20.07 93.54 24.29 23.40 64.14 72.29 32.43 80.92 12.87 53.78 82.11 70.90 38.82 79.61 17.71 80.45 64.37 10.85 91.35 93.61 14.98 25.63 19.14 22.08 70.95 77.28 97.60 3.17 86.19 0.85 83.92 79.69 70.38 1.30 22.95 3.87 57.34 94.81 58.50 86.32 95.90 57.19 44.05 80.70 81.79 28.89 99.78 88.95 51.17 71.20 6.69 10.64 56.40 87.90 87.47 61.08 69.85 86.13 63.71 71.17 27.19 10.95 10.84 22.92 4.86 58.08 29.30 27.75 51.39 21.30 7.69 51.42 87.23 20.62 30.56 14.80 88.92 0.14 16.64 62.17 31.17 58.69 94.58 79.15 24.90 77.86 67.72 19.37 17.67 10.95 91.81 -35.45 1.68 93.80 54.32 66.22 16.69 72.83 46.85 89.38 54.34 22.33 56.76 9.72 75.68 99.11 69.47 42.17 31.91 31.52 55.65 35.96 47.23 86.42 63.27 11.05 19.16 50.07 62.90 2.57 55.92 12.21 41.77 97.54 27.85 46.22 99.63 33.27 74.40 52.49 82.23 29.75 38.26 17.80 39.16 3.02 57.55 11.90 34.04 83.95 29.53 77.63 13.57 50.01 80.83 20.12 18.62 17.37 97.82 23.27 41.44 60.38 19.48 56.40 59.83 20.57 4.60 3.29 16.21 64.73 1.76 10.36 31.28 68.59 2.36 52.12 97.44 95.09 62.19 12.32 99.27 70.12 44.01 70.95 22.71 93.82 86.80 50.44 40.92 39.72 16.89 92.11 76.71 78.70 69.58 98.49 37.29 41.89 89.59 66.10 52.99 -58.49 46.16 19.71 48.02 81.72 31.40 65.01 39.53 90.11 99.66 11.95 99.96 33.72 47.29 76.18 89.38 59.91 73.70 58.89 85.83 16.73 46.98 22.55 60.07 67.99 90.46 66.71 27.50 54.20 86.47 50.41 89.56 37.80 45.43 94.04 78.29 51.98 10.63 47.41 65.09 29.85 4.04 0.45 68.62 58.53 40.00 52.58 96.21 16.58 42.75 64.38 85.40 50.56 94.20 48.45 81.26 82.84 9.51 47.06 70.68 63.56 69.99 5.63 28.88 19.78 39.02 26.49 71.10 0.27 52.16 59.85 17.48 49.79 93.66 64.36 82.86 35.28 63.83 24.17 55.57 74.62 42.55 39.73 82.84 8.39 64.49 27.79 58.70 9.82 32.43 33.50 58.65 83.76 75.68 20.11 36.45 17.42 51.23 47.51 3.37 -4.04 83.23 95.47 80.22 75.41 98.21 34.82 77.40 10.48 38.95 89.66 41.52 82.76 53.38 94.45 44.91 70.12 92.16 3.04 58.45 38.47 70.04 69.89 1.72 30.34 32.23 24.19 79.59 73.25 56.64 85.68 3.84 77.87 40.80 90.87 29.64 84.80 75.70 29.24 62.49 51.52 27.78 61.83 19.55 17.19 12.72 54.92 73.03 1.88 85.24 76.03 67.16 62.31 40.03 97.57 37.41 70.70 32.71 85.67 14.05 64.72 87.62 42.49 66.87 70.70 67.63 8.79 69.07 12.67 73.67 75.21 42.98 74.65 57.09 10.49 35.79 3.48 78.06 93.80 28.15 38.19 14.74 49.62 95.27 90.02 64.86 73.46 15.84 71.22 59.10 63.40 63.51 83.37 51.88 27.37 80.15 70.96 32.24 16.98 29.27 -50.55 2.10 63.90 46.88 22.29 92.86 18.71 36.38 93.02 56.59 60.89 17.52 95.32 23.34 14.49 38.67 4.23 76.07 19.17 69.68 94.66 99.99 62.85 4.68 88.16 22.48 77.33 98.01 23.29 73.55 87.65 75.08 18.60 1.09 65.73 26.11 64.73 46.11 26.31 76.51 4.94 82.15 44.07 75.72 99.25 76.38 53.53 60.98 94.89 88.59 65.00 67.92 50.42 90.47 40.72 94.61 99.78 85.34 38.74 34.41 84.78 12.89 51.96 95.17 73.29 43.68 19.90 32.55 98.55 55.34 3.68 4.35 7.98 55.03 24.16 45.88 7.49 5.36 2.33 21.55 24.22 82.68 59.75 65.00 22.44 54.80 97.11 54.95 47.66 18.41 92.09 67.06 95.80 62.32 26.50 99.04 86.26 23.74 91.46 4.47 -9.28 43.18 33.33 3.48 93.33 25.33 10.46 24.43 86.15 16.76 50.36 27.32 34.52 59.48 91.02 60.40 42.21 59.01 8.36 37.32 52.12 35.02 64.23 10.62 6.32 2.10 70.61 53.28 27.63 41.17 52.47 19.67 61.46 28.59 30.55 86.19 17.23 20.02 48.25 97.17 2.57 13.00 60.56 23.74 81.99 14.94 39.43 49.35 3.17 8.23 65.40 74.84 75.43 68.86 34.04 60.84 3.98 18.67 36.70 2.17 49.62 73.29 68.30 23.41 32.23 77.53 76.22 97.64 44.22 10.42 14.37 54.38 31.99 11.67 23.49 56.25 80.12 50.70 11.95 82.68 5.02 86.89 87.73 21.64 21.67 79.41 70.27 90.13 60.87 24.03 77.42 24.17 83.54 31.54 35.25 42.35 88.00 16.23 69.54 95.72 -44.89 93.20 21.66 85.87 25.59 84.27 67.57 36.61 57.10 74.85 26.35 46.10 45.69 1.68 27.43 17.14 37.58 58.43 84.25 49.90 32.72 98.99 93.33 6.32 97.58 34.97 51.30 62.41 63.03 76.38 23.21 13.86 54.15 35.82 67.05 88.97 14.37 5.92 63.19 30.32 87.79 27.19 91.06 10.71 84.84 86.54 98.31 74.77 86.43 39.77 7.79 54.27 35.30 42.59 63.40 84.24 78.81 32.24 99.30 33.08 43.34 61.83 92.01 95.09 27.28 23.64 66.33 44.77 62.43 41.83 61.97 88.58 66.07 68.38 88.96 57.53 28.56 0.44 37.78 86.27 17.68 35.77 41.60 90.39 77.41 93.93 73.09 95.83 70.52 60.93 11.34 94.44 42.49 8.75 68.09 51.86 66.76 11.84 82.27 41.58 -67.95 70.90 85.11 56.41 56.36 73.58 75.11 24.15 24.12 41.10 32.61 24.65 97.22 58.90 93.55 38.22 7.46 44.45 30.11 11.19 85.73 7.99 16.01 38.97 94.66 51.67 95.41 61.82 54.67 82.24 76.28 59.09 15.63 3.35 46.94 25.63 94.07 76.60 98.35 93.18 35.11 30.14 36.85 97.28 48.29 8.90 14.91 11.37 94.84 87.90 51.98 19.11 56.50 99.51 32.08 25.80 3.53 31.15 69.70 16.34 61.38 28.55 62.59 92.77 34.76 47.14 69.39 33.82 19.35 52.82 80.28 24.30 65.62 24.48 58.52 2.71 59.36 97.83 4.06 70.91 58.25 68.84 95.44 24.12 76.92 29.62 95.96 94.83 37.38 27.64 76.24 6.02 58.88 6.47 77.50 11.67 29.66 16.29 31.93 20.93 -62.78 74.08 38.06 40.47 66.12 12.53 16.61 11.54 32.79 43.04 93.63 57.10 45.09 30.63 98.79 34.75 28.03 58.32 8.01 5.50 75.15 79.25 61.68 34.61 93.05 20.69 81.01 79.87 70.13 43.34 15.79 60.08 8.90 98.32 25.28 11.65 72.22 81.93 74.91 58.52 69.81 19.80 49.47 17.86 47.15 81.63 65.44 17.30 13.19 87.51 21.89 65.79 91.16 25.14 60.55 82.04 13.27 64.16 60.28 11.48 92.67 6.70 92.93 84.47 45.16 67.07 46.47 68.59 24.83 46.70 59.18 28.73 22.83 11.72 58.62 70.11 26.35 24.84 23.65 31.46 62.97 39.24 33.82 32.61 59.43 62.66 91.36 23.64 36.94 83.09 60.24 50.13 6.81 92.61 85.09 28.90 13.72 24.45 58.69 73.40 -45.24 58.21 97.84 55.54 84.87 83.26 89.46 30.29 6.33 97.53 52.30 49.49 48.31 96.64 93.26 44.20 98.56 72.68 5.60 85.06 41.49 6.15 19.41 15.53 82.16 20.71 20.67 38.19 65.72 63.50 72.59 81.27 9.40 1.01 14.73 85.37 21.97 74.64 6.58 3.55 19.71 92.32 22.63 24.59 69.41 87.12 5.83 37.38 76.41 22.03 59.90 15.04 14.76 36.21 91.48 8.80 55.00 31.87 23.76 60.90 6.47 48.78 96.70 85.74 17.55 7.66 49.27 81.14 70.62 72.36 16.73 42.50 68.86 97.30 45.15 91.43 65.31 72.03 13.05 21.14 37.85 47.74 81.42 82.72 98.31 55.05 58.14 48.78 90.62 20.19 43.18 5.24 29.50 42.62 22.94 27.33 69.91 42.58 29.88 6.63 -1.16 75.26 30.42 21.80 97.50 94.41 74.97 99.55 2.85 61.22 50.26 34.17 93.55 33.14 9.43 1.24 61.99 76.56 40.18 72.07 97.45 83.72 55.46 43.21 49.83 41.94 37.70 79.27 5.16 18.59 99.38 65.20 81.44 30.34 64.41 15.29 0.15 56.27 19.87 51.19 74.57 16.40 73.74 70.40 83.67 53.33 79.83 62.92 67.18 5.54 66.38 31.98 66.65 41.33 67.90 58.54 78.35 69.74 5.10 89.25 97.47 43.31 6.91 13.43 75.58 98.52 21.98 98.80 47.18 73.61 50.15 62.07 99.21 22.04 11.62 73.68 60.95 81.36 91.54 6.30 81.11 1.32 61.60 78.92 43.32 80.52 48.63 58.67 75.98 8.42 76.77 6.09 17.47 84.72 96.44 20.32 79.96 90.62 73.81 39.21 -80.01 97.48 18.11 13.97 18.55 51.46 27.19 43.58 21.37 15.44 0.03 37.56 49.76 1.61 49.85 45.97 64.30 74.15 65.54 64.78 39.49 1.46 18.19 2.68 31.76 68.87 78.11 83.53 43.65 79.82 50.84 42.44 19.87 58.36 40.65 88.47 5.34 35.90 45.81 95.66 64.23 70.01 22.90 30.45 37.49 6.06 22.40 34.91 0.11 4.80 4.32 98.26 52.19 84.51 18.33 67.52 97.12 38.11 28.55 1.09 3.56 66.73 94.54 8.89 29.95 28.08 73.69 94.18 66.28 75.94 35.86 46.37 17.01 30.31 70.83 77.38 23.68 8.71 51.42 14.07 52.96 51.81 52.26 94.54 59.14 64.39 59.06 44.06 2.47 10.46 58.02 92.53 41.58 38.65 81.26 75.35 70.56 9.43 93.43 30.46 -84.42 34.63 59.91 68.84 95.24 33.39 48.39 65.38 16.78 36.75 51.74 85.80 21.55 42.77 34.48 0.57 80.24 97.03 62.23 49.75 52.52 34.16 59.10 39.18 87.44 41.65 97.86 47.39 99.98 98.59 54.52 80.89 36.98 94.61 78.92 72.85 1.77 42.23 95.52 31.06 99.04 50.72 13.80 49.26 26.89 80.55 64.43 33.83 46.34 75.02 82.80 69.53 43.92 11.53 14.73 2.20 54.13 44.15 84.37 94.39 25.04 75.71 18.29 78.11 75.88 86.18 35.68 29.90 14.91 63.49 2.02 47.56 14.57 37.84 62.26 73.61 20.56 48.92 57.45 14.95 71.69 86.15 46.53 90.31 96.80 48.96 35.94 3.33 39.21 93.53 45.81 77.23 86.60 76.30 14.59 71.49 90.00 2.28 60.86 7.44 -41.17 3.58 15.43 98.77 28.79 65.32 99.39 80.48 27.26 82.95 22.30 6.66 39.06 48.97 40.35 95.87 40.91 67.00 13.58 39.30 72.61 16.54 44.14 42.50 93.87 97.51 69.06 90.05 93.20 21.79 56.88 21.28 24.31 30.33 37.54 16.87 36.86 70.22 72.97 90.33 16.10 60.48 37.01 82.27 40.50 45.00 77.74 42.26 64.68 82.16 69.48 39.24 90.80 16.12 91.62 78.91 72.02 83.43 19.95 19.60 78.51 10.33 15.75 3.57 63.91 42.95 62.06 40.52 11.63 68.67 92.26 80.04 1.73 87.57 13.52 57.74 43.16 51.94 65.84 66.99 43.30 24.55 90.37 15.53 84.20 60.26 64.82 73.66 93.83 50.03 98.67 63.24 98.49 21.09 97.40 47.63 56.16 23.20 56.73 98.39 -69.80 65.18 60.87 71.05 97.96 99.12 26.40 8.77 65.98 97.04 11.25 93.70 48.34 21.25 24.98 11.93 27.19 65.01 67.81 13.62 72.05 67.17 78.96 9.07 0.98 49.12 6.88 36.73 8.16 83.64 41.22 19.66 56.09 51.16 45.19 36.48 17.61 13.29 46.33 78.46 19.62 49.67 38.75 17.44 29.26 10.34 43.55 79.23 68.55 72.79 47.59 11.44 11.46 35.18 25.96 0.69 21.95 96.39 96.70 57.88 63.43 83.70 0.29 67.73 69.66 91.18 16.04 50.41 99.81 79.23 60.47 16.00 94.18 20.15 26.05 75.30 88.39 12.73 43.84 85.86 93.75 58.13 33.01 6.68 36.60 31.69 5.42 70.61 30.18 72.12 41.79 61.19 30.08 13.00 14.88 31.73 63.30 38.11 82.72 28.27 -85.61 12.60 67.56 62.82 16.55 42.79 79.38 73.22 61.86 90.36 67.18 77.54 11.94 59.30 24.81 65.59 58.76 8.79 85.90 85.23 73.32 67.74 72.18 64.24 76.02 25.74 92.70 94.38 85.61 92.97 78.59 95.13 83.07 34.68 96.29 67.78 22.84 67.88 69.03 53.32 92.14 27.59 70.85 46.42 49.82 52.03 35.87 84.83 28.11 63.63 85.24 53.24 87.02 98.21 29.87 49.31 64.91 27.40 39.92 39.64 43.44 84.39 3.21 45.20 23.64 39.61 94.40 17.48 1.62 52.28 4.41 33.85 37.39 42.60 21.24 54.68 22.33 88.00 45.15 94.55 38.11 58.47 96.22 99.41 53.93 81.18 21.75 24.86 57.34 20.88 36.59 46.34 28.12 31.66 77.25 22.85 47.12 57.61 1.28 88.52 -6.02 22.26 10.22 9.83 18.49 60.21 88.13 12.22 52.80 0.42 14.82 99.42 62.45 43.35 51.48 87.17 11.46 19.42 63.35 47.41 66.40 99.56 94.53 59.08 25.53 31.02 94.05 90.20 53.49 65.98 70.49 44.18 42.55 61.20 61.68 80.31 68.51 39.69 36.65 79.35 10.92 56.92 31.23 19.64 92.90 48.18 51.18 9.43 74.34 4.28 86.78 98.22 17.11 99.93 64.56 54.78 60.37 19.99 66.35 27.30 34.54 73.38 41.43 29.42 47.24 87.15 26.41 51.06 6.06 30.52 76.53 89.72 23.48 67.40 57.83 33.59 6.29 12.35 46.56 69.73 22.67 84.35 25.03 52.18 6.07 60.14 3.44 28.28 43.17 65.19 23.47 30.22 32.72 84.01 44.99 99.94 2.13 15.07 97.76 46.27 -81.64 80.73 39.12 94.44 73.54 81.88 70.06 70.29 34.16 48.05 10.41 81.10 65.19 46.97 32.92 88.16 24.83 6.82 79.97 16.13 51.51 11.37 75.07 71.50 44.38 69.92 84.58 89.38 43.00 91.92 56.18 8.41 7.59 82.67 1.60 41.32 60.69 64.26 36.33 29.65 11.93 49.75 85.65 39.79 18.45 83.94 90.34 84.33 91.15 16.80 85.50 42.47 90.43 61.66 64.51 80.93 12.37 69.14 25.78 0.49 79.39 98.31 6.27 50.09 37.71 14.13 84.04 31.21 54.71 71.47 30.43 86.74 15.23 2.74 41.63 10.40 79.37 43.53 20.37 25.11 92.03 91.53 97.45 62.99 72.47 12.24 73.41 15.44 17.59 91.27 63.54 62.49 40.76 12.95 73.27 18.18 97.97 23.27 73.28 49.58 -65.99 54.03 93.94 48.59 58.16 89.44 9.21 37.88 89.01 70.15 49.27 91.39 60.96 86.22 61.23 12.41 91.40 14.68 82.93 71.40 8.51 83.14 54.52 32.43 0.38 82.48 75.51 94.74 32.33 52.85 94.83 29.32 11.40 11.98 32.71 0.15 80.31 96.07 66.91 24.89 55.62 89.86 36.70 75.31 79.21 91.50 45.01 6.41 6.48 36.24 94.49 87.75 83.85 9.50 56.99 20.47 94.88 2.58 65.91 9.59 89.76 64.80 73.97 13.74 50.78 94.27 74.70 9.29 15.87 38.90 57.39 62.35 26.64 25.99 37.09 58.51 79.49 68.86 38.58 57.06 81.06 18.21 7.17 45.79 45.66 77.19 21.85 93.89 59.42 2.34 23.30 30.20 50.27 76.70 72.02 25.21 40.90 29.67 84.03 87.88 -99.17 0.07 96.25 84.94 31.22 9.79 3.44 81.84 21.75 23.50 54.79 98.68 26.94 8.36 54.41 7.76 76.29 39.82 46.71 3.38 13.79 51.04 38.59 33.99 19.90 86.65 79.28 1.21 41.49 91.02 83.80 90.18 24.18 16.93 14.05 2.07 33.12 81.94 65.62 71.95 12.18 77.68 37.60 95.47 16.99 75.51 77.56 66.79 14.84 65.41 69.52 34.75 68.01 40.37 13.61 40.87 40.44 5.34 52.58 56.60 37.84 1.44 85.48 4.50 55.92 78.27 98.01 17.27 26.75 8.43 32.83 1.02 54.34 65.98 96.04 17.97 64.12 0.70 77.10 8.28 94.59 56.39 7.81 61.40 15.64 87.86 29.52 72.40 69.01 66.11 11.65 11.60 63.89 68.99 50.63 27.27 34.65 63.59 20.16 96.73 -80.03 39.45 65.29 43.84 1.52 79.91 26.40 85.08 94.01 88.26 37.41 29.64 11.37 65.80 79.11 34.46 16.11 21.70 40.27 11.86 49.63 74.21 21.79 82.97 48.05 26.43 24.05 69.22 39.18 70.11 58.92 53.12 9.24 73.95 55.75 65.58 16.78 62.95 67.67 4.62 5.91 74.08 0.69 29.83 88.65 70.66 80.70 56.36 37.16 41.36 2.74 79.46 63.78 67.54 53.91 12.21 64.80 45.35 23.20 42.37 54.19 28.61 24.77 38.07 73.40 49.89 17.38 41.08 3.89 43.79 71.97 17.62 12.74 86.91 84.28 65.93 4.70 25.54 25.41 70.95 45.53 54.05 68.60 38.32 80.34 32.98 49.35 73.31 61.73 94.58 25.64 98.08 55.13 19.21 6.12 55.31 63.09 36.06 39.34 81.42 -83.39 70.74 94.84 99.53 57.09 83.85 69.76 72.12 39.60 59.62 41.59 7.92 40.80 28.81 3.59 9.47 57.88 33.60 57.78 72.35 41.30 42.03 38.59 64.62 17.92 65.19 45.51 41.47 71.51 44.69 39.92 72.04 7.51 12.90 67.18 90.15 3.72 23.68 63.03 68.56 70.24 2.38 32.41 56.63 53.22 98.47 65.97 70.51 27.20 19.09 33.98 40.21 6.17 53.44 7.64 52.22 89.50 38.03 44.30 87.71 28.48 85.15 30.31 96.87 17.07 44.00 30.12 69.06 50.92 82.72 47.69 8.26 43.64 46.45 94.21 95.05 21.65 77.66 81.39 35.62 20.25 87.01 53.47 61.82 34.64 18.22 96.51 1.76 88.75 31.98 18.09 97.07 85.17 68.21 61.91 62.98 23.57 3.38 88.31 0.97 -23.08 76.87 8.60 29.39 36.61 64.49 83.31 21.14 98.16 35.87 13.38 54.07 54.64 45.51 3.68 39.03 67.96 16.72 11.04 1.91 9.02 66.18 80.79 63.38 38.43 45.88 45.48 96.13 18.28 54.70 8.77 22.53 84.68 17.38 4.95 9.19 11.07 70.54 55.36 2.11 70.97 92.11 72.77 85.42 91.77 78.16 13.49 78.97 24.69 22.97 98.15 56.29 11.48 59.27 66.84 98.31 60.91 25.53 68.32 88.21 19.83 62.39 14.13 61.76 7.09 42.09 78.62 3.85 73.96 58.01 44.03 9.72 22.54 18.45 69.63 39.09 52.92 95.15 34.43 80.95 75.45 66.16 20.22 63.34 64.03 37.29 62.35 75.28 53.55 30.72 16.67 16.47 19.63 1.21 10.44 61.97 19.73 53.50 53.59 19.13 -67.67 6.33 46.59 91.98 76.73 46.20 69.67 19.46 54.60 10.14 55.28 43.64 36.89 51.79 22.86 18.08 43.28 26.90 13.82 32.36 96.28 76.13 89.69 30.66 38.84 85.24 48.18 74.94 90.22 65.52 94.30 48.23 36.93 10.86 83.23 83.39 29.15 66.82 2.28 10.37 50.77 67.19 95.74 90.15 44.34 29.10 73.16 58.84 52.68 13.65 39.20 71.30 26.99 51.62 68.78 63.51 55.36 83.92 96.00 86.92 86.49 65.16 51.67 62.31 58.04 98.90 55.21 84.27 12.36 60.83 14.73 93.52 6.06 66.89 37.72 8.77 6.57 32.62 71.95 69.08 5.29 6.04 52.75 52.67 53.95 59.65 89.96 93.44 18.42 36.71 48.80 50.65 56.43 6.35 90.50 13.48 93.54 88.36 55.22 46.83 -27.91 47.13 66.58 79.02 32.57 74.06 38.73 99.39 24.21 34.07 24.56 12.95 37.15 2.85 64.57 94.40 36.41 84.43 55.95 51.42 36.50 7.80 32.18 68.32 68.97 59.60 99.21 87.95 22.28 3.94 38.69 58.92 61.75 43.78 46.22 81.87 10.53 6.85 65.72 16.35 81.39 83.53 70.05 82.77 98.09 12.73 98.56 34.67 34.83 48.56 28.91 33.62 71.89 47.08 79.60 55.27 33.28 82.12 3.88 95.21 82.31 39.02 47.63 28.79 86.80 15.15 2.61 97.07 16.51 6.56 65.52 52.32 1.48 83.19 13.82 51.88 30.81 69.26 88.04 80.61 31.83 3.59 3.72 35.38 44.15 92.80 15.11 34.71 26.70 21.94 19.73 74.53 17.15 54.83 65.75 26.34 8.45 9.37 52.58 71.83 -61.49 52.32 15.33 42.69 83.11 92.49 31.88 37.83 21.24 34.07 13.65 37.28 12.61 37.41 58.10 60.54 59.26 70.62 97.83 65.93 98.46 82.58 56.32 28.28 24.01 44.97 60.89 7.00 47.04 80.02 5.89 20.64 39.89 23.64 38.82 8.01 55.37 67.89 77.26 13.26 18.55 7.23 24.09 47.60 3.06 21.21 55.05 79.33 91.55 22.33 29.52 68.28 86.00 54.44 19.24 87.19 86.07 60.45 47.54 54.30 95.14 20.52 16.26 67.27 85.29 54.24 9.56 28.03 89.35 67.79 3.71 91.28 51.61 54.47 99.44 77.80 70.15 91.58 6.54 9.25 54.13 17.65 45.99 8.91 66.80 28.25 41.65 65.64 14.33 28.48 17.60 71.73 30.83 18.04 74.07 44.18 74.58 56.75 24.45 18.95 -70.77 16.31 80.81 76.58 42.17 26.16 35.76 90.16 32.17 51.53 0.90 68.84 12.77 20.32 74.16 10.72 66.66 76.79 0.45 23.63 92.25 78.06 43.23 29.52 79.49 62.83 39.05 76.55 84.63 85.95 34.27 49.28 41.28 28.09 29.78 57.58 66.09 33.95 46.12 51.70 19.56 55.19 11.55 80.33 97.01 23.29 4.67 25.48 89.15 60.42 23.92 57.48 60.66 64.18 72.11 25.28 12.63 68.49 17.26 87.16 16.88 95.22 80.15 2.74 38.47 6.91 2.06 88.92 16.94 24.52 97.65 19.55 21.00 65.00 36.94 53.26 29.59 76.59 46.67 59.75 58.32 86.16 77.88 92.98 47.32 90.07 78.61 47.89 34.03 37.45 15.37 98.72 98.46 47.47 95.46 85.28 96.55 15.92 80.68 5.26 -99.38 10.54 66.81 66.65 48.26 30.13 86.10 25.49 16.22 11.36 16.11 99.12 18.27 96.68 95.44 91.80 75.56 98.53 58.59 68.95 94.09 61.89 41.26 79.71 89.70 73.03 65.98 42.89 30.76 23.88 22.98 11.34 86.20 37.62 23.95 5.48 53.83 31.39 92.67 98.23 93.89 27.58 47.32 68.15 95.39 51.88 86.55 78.59 50.44 41.87 9.79 33.25 76.58 59.76 36.20 41.03 10.52 92.94 0.60 46.22 63.43 61.83 15.19 83.87 18.93 97.35 30.25 70.02 13.90 89.07 41.95 34.47 80.10 53.98 57.32 14.22 46.42 1.63 41.62 26.63 93.89 20.53 49.04 9.30 72.38 82.42 66.00 69.45 79.59 23.42 94.56 91.73 88.45 49.82 11.62 57.86 0.59 80.45 97.89 9.81 -96.69 71.81 38.59 26.05 31.55 38.76 81.89 18.50 73.95 73.72 36.24 7.72 27.74 24.21 25.95 29.52 57.04 70.85 88.73 3.46 23.38 82.58 49.62 53.74 77.50 12.38 23.63 42.22 90.90 54.06 51.16 3.38 57.70 44.14 77.40 8.38 94.14 66.78 16.14 11.84 21.23 45.71 84.14 51.99 20.31 57.92 42.71 14.01 91.43 16.24 82.95 74.53 91.62 93.97 59.19 26.64 46.21 7.42 50.93 54.94 95.65 95.29 91.98 55.86 36.82 42.34 61.53 53.65 84.87 97.14 73.93 70.20 88.16 87.42 12.42 37.13 84.82 6.63 22.86 6.92 97.69 98.84 22.45 15.10 13.05 9.53 88.70 7.53 12.36 11.44 64.95 36.71 88.75 4.85 62.75 56.82 60.29 86.64 74.33 25.79 -52.00 35.65 21.06 1.71 93.25 49.05 80.92 92.40 23.57 11.16 77.67 26.31 51.06 98.46 17.41 37.24 10.52 94.17 76.22 58.37 24.51 41.06 30.76 64.24 66.96 7.77 68.52 22.48 24.53 86.47 69.91 91.38 83.14 24.86 76.29 41.57 83.61 15.95 70.69 38.50 86.56 38.45 36.98 28.44 81.75 19.99 50.90 22.69 0.83 47.38 29.16 1.12 2.38 1.83 44.55 55.27 57.39 87.91 97.38 15.68 48.59 9.69 3.76 79.59 81.35 71.46 71.94 78.10 58.48 50.02 91.74 73.35 42.78 91.08 54.41 85.65 50.82 11.83 14.55 86.95 90.26 25.75 0.33 75.28 2.02 54.43 11.01 62.56 58.37 9.94 89.33 70.29 71.65 74.74 32.21 50.56 78.05 11.85 42.65 34.23 -5.14 36.26 21.03 58.78 66.43 94.38 49.16 95.51 70.19 40.39 32.52 7.91 91.98 70.16 85.77 11.20 17.52 5.02 74.67 22.81 75.26 3.04 12.97 5.85 45.98 87.17 48.38 97.83 5.80 65.61 56.39 35.32 44.80 56.43 5.14 41.38 4.29 71.29 35.03 86.03 81.60 87.33 92.07 83.41 90.59 79.14 1.49 67.44 42.33 19.00 38.86 29.02 56.40 7.31 63.88 87.09 64.96 10.29 71.56 2.71 13.74 82.66 19.39 20.69 54.39 94.71 87.72 50.60 20.65 23.59 71.87 65.29 30.03 12.66 95.23 99.19 76.70 84.11 24.42 22.58 73.85 62.85 93.19 56.76 35.20 25.26 90.93 72.67 39.19 5.65 7.05 8.01 65.93 47.06 90.21 55.47 72.24 10.94 85.61 14.07 -7.57 51.23 54.35 47.17 77.83 84.54 31.48 70.94 1.86 36.68 52.51 95.22 7.96 71.44 24.38 82.08 50.14 41.17 69.93 71.18 70.79 33.25 47.07 35.33 11.68 46.65 34.37 61.88 66.28 84.14 77.57 63.07 21.19 17.77 88.86 87.21 97.31 97.02 56.06 13.89 79.49 54.86 16.86 14.30 17.34 88.97 7.86 31.04 36.84 72.87 65.69 88.69 49.75 78.87 52.31 92.18 94.13 84.30 51.12 31.58 93.54 71.85 51.18 66.61 13.39 96.73 0.39 79.54 69.28 13.86 14.64 79.85 69.91 27.71 83.57 48.30 4.81 30.95 64.74 73.54 7.57 48.84 93.35 57.90 7.16 34.94 25.65 6.86 13.32 68.85 49.23 94.31 19.60 17.40 39.04 63.18 14.71 99.04 54.60 58.55 -2.98 81.33 58.82 66.32 66.73 1.15 87.15 1.50 46.59 91.35 44.45 48.21 34.90 54.35 92.09 16.45 17.77 20.22 25.30 45.16 87.56 80.35 38.97 18.77 67.35 21.47 88.12 68.81 48.96 66.47 55.85 38.11 92.80 70.24 35.96 50.47 54.93 78.89 85.45 5.77 65.56 32.84 39.27 73.27 66.15 60.18 42.58 60.30 39.34 12.91 88.11 98.40 45.70 67.56 68.93 6.67 48.85 26.95 54.37 20.19 35.32 52.70 87.28 45.95 75.01 22.86 59.47 34.67 73.30 32.08 56.50 44.46 7.93 47.01 44.51 68.64 5.73 82.62 35.21 34.37 55.51 14.01 0.36 72.03 95.70 53.13 81.63 67.09 73.94 98.71 30.69 21.37 5.46 96.37 51.35 58.60 90.15 16.33 18.90 5.19 -45.96 45.14 81.81 19.18 63.31 56.02 97.70 90.39 79.11 58.26 47.96 5.13 73.96 52.75 73.95 96.78 48.94 86.50 5.08 46.22 93.52 92.46 99.52 63.97 52.36 35.84 40.27 44.56 59.00 58.44 71.32 22.16 37.31 61.13 46.19 11.53 73.81 33.87 17.64 64.66 55.78 81.63 63.80 28.00 1.46 44.56 80.15 39.32 48.69 26.26 4.55 87.74 94.62 65.66 88.65 83.90 96.66 84.61 3.17 3.86 94.50 86.61 35.79 74.28 60.75 28.37 64.42 17.83 16.48 63.86 12.74 17.04 23.49 48.34 71.11 81.48 70.63 74.42 27.52 49.60 61.51 72.85 7.70 6.79 91.89 22.83 6.06 21.43 71.43 22.35 96.30 36.04 2.66 22.89 1.73 66.03 23.59 64.20 44.16 89.36 -24.68 39.38 92.50 30.91 29.51 2.02 25.18 10.89 8.48 96.47 88.72 1.11 60.23 4.55 23.58 23.08 31.76 7.27 73.89 59.10 67.21 97.21 64.00 62.89 65.48 9.99 4.39 43.30 24.35 7.06 65.54 77.23 59.81 66.24 56.21 89.71 7.56 71.50 92.69 88.94 77.42 78.59 15.14 96.55 19.19 59.02 52.91 59.56 71.80 13.85 64.19 4.82 76.65 78.68 89.23 34.95 74.50 23.77 87.01 95.86 29.61 54.51 39.38 42.77 30.96 43.49 87.03 53.64 13.30 95.69 2.37 60.57 63.52 53.57 65.74 81.51 99.47 94.94 90.17 23.07 26.38 84.64 99.81 27.83 57.92 99.94 4.14 0.92 2.77 98.63 63.47 7.58 8.11 31.83 17.67 83.26 56.14 1.47 64.40 15.76 -82.88 18.19 86.03 14.91 63.80 66.70 31.36 65.22 66.52 70.58 83.44 82.86 6.91 11.85 51.75 7.03 8.03 37.53 0.38 72.41 8.92 83.69 1.14 26.17 22.43 91.62 87.64 90.41 17.42 33.59 64.67 46.78 3.81 37.44 62.95 52.39 26.27 6.32 30.54 98.08 53.28 32.05 77.20 57.83 34.90 10.82 47.03 84.20 48.66 45.13 53.05 11.72 37.80 90.99 93.10 12.96 53.90 64.68 73.90 6.86 96.43 0.09 92.82 56.04 89.02 88.96 51.19 53.72 69.87 25.68 29.94 87.01 50.36 66.21 34.81 85.22 23.49 77.69 83.62 36.34 56.77 99.65 62.73 41.15 73.62 31.72 66.28 20.77 52.23 76.41 6.68 92.16 19.55 43.72 5.47 22.91 50.12 48.64 76.30 2.33 -23.42 50.29 70.24 3.40 58.73 46.95 50.70 35.48 57.05 66.57 71.42 82.69 54.96 49.94 28.55 69.65 62.63 17.13 16.03 99.10 32.44 6.93 99.58 0.47 69.90 35.35 45.86 4.07 87.18 94.02 57.70 29.14 44.62 83.64 31.29 17.65 26.62 32.87 15.27 89.33 0.82 8.58 18.02 65.30 60.17 0.26 60.72 38.93 36.95 34.33 82.87 41.97 62.11 54.98 5.31 94.46 74.22 77.17 97.69 83.59 85.72 25.82 72.31 33.86 52.85 3.42 66.98 66.45 84.56 16.28 79.56 41.80 60.69 87.67 53.80 8.57 71.47 46.35 66.97 98.72 44.53 8.43 56.20 52.10 31.00 17.05 70.54 35.55 87.57 34.15 26.03 91.25 78.43 28.31 84.50 78.70 10.63 22.53 3.98 62.59 -60.65 52.93 61.50 56.04 38.75 44.93 93.77 34.71 45.54 48.09 9.38 34.44 58.46 8.75 12.74 15.85 84.83 45.46 7.73 69.92 48.20 73.29 63.32 74.94 96.68 73.02 58.29 4.43 9.50 69.29 30.29 95.07 39.03 92.32 77.60 12.97 9.04 9.52 75.19 31.39 24.37 84.90 77.04 90.50 7.56 20.04 71.15 30.44 85.81 20.57 85.57 56.89 71.67 72.23 43.63 51.55 64.60 20.39 9.14 1.43 81.22 92.62 86.70 13.50 65.44 79.06 52.68 62.90 44.56 99.75 5.74 0.27 22.95 24.51 14.25 9.55 86.47 62.17 94.79 20.59 2.90 34.15 80.01 3.03 25.83 82.50 41.21 10.28 51.78 78.05 91.29 78.57 26.58 87.92 40.27 85.95 54.02 62.21 73.41 51.78 -6.13 63.02 7.24 84.59 28.19 31.30 49.93 33.44 86.96 40.73 93.45 16.22 64.71 90.41 76.11 78.35 83.50 26.15 23.48 90.38 59.01 68.09 62.36 14.26 56.11 8.35 60.63 86.15 99.33 36.33 70.43 29.63 36.13 78.33 34.88 13.40 80.48 82.19 72.09 91.57 90.65 34.66 5.29 78.75 14.77 53.51 24.31 47.08 81.50 90.72 10.05 69.21 87.06 42.76 35.09 86.71 70.44 58.82 80.81 24.12 33.69 53.48 51.59 54.55 90.11 7.00 2.39 8.71 4.98 64.90 81.40 77.31 80.32 74.73 37.53 41.96 86.77 0.29 96.79 20.77 46.36 20.37 82.97 65.19 54.73 87.51 29.30 40.84 58.40 48.27 64.63 77.42 71.20 14.90 19.90 2.35 39.98 82.42 82.47 10.14 -71.95 77.15 25.94 8.24 61.05 59.19 38.51 49.54 16.31 36.12 81.79 50.14 82.92 45.83 92.86 43.74 20.93 79.42 36.46 58.11 44.22 43.81 29.33 56.47 85.33 30.06 12.19 84.00 31.19 61.76 69.37 62.62 31.90 8.14 28.05 38.40 80.55 50.02 7.54 33.04 46.24 0.96 17.35 47.49 53.14 97.81 84.61 86.82 67.27 53.21 17.92 12.99 18.36 86.36 77.48 37.70 22.41 32.42 39.64 42.00 8.94 63.08 80.51 66.92 54.03 66.14 28.57 20.25 87.03 52.15 0.29 6.66 80.89 8.94 37.24 51.34 91.66 13.77 67.42 35.01 46.71 77.59 33.06 3.81 42.84 51.77 51.21 27.32 80.21 59.06 35.88 0.63 89.08 92.28 14.92 22.41 14.97 36.79 49.69 62.52 -72.37 31.49 65.40 58.65 78.00 9.51 63.17 52.13 96.53 52.26 47.29 89.98 31.24 1.40 27.11 45.42 67.02 67.60 49.98 44.43 50.93 41.29 88.88 37.75 22.79 90.74 38.15 77.27 93.94 77.46 33.77 65.14 6.88 40.15 34.88 72.35 53.62 41.14 60.30 59.56 24.03 58.99 94.59 92.63 20.16 17.84 2.64 77.08 86.41 24.47 89.19 1.23 32.51 49.27 54.84 99.18 75.40 47.70 52.63 54.05 92.67 88.24 71.17 33.92 61.28 46.95 76.58 12.29 27.78 37.12 33.81 60.03 29.36 61.92 34.88 13.40 65.49 87.79 76.57 81.86 81.28 76.81 80.39 49.96 38.37 86.00 82.77 63.61 76.72 89.52 23.61 81.86 60.37 40.46 20.58 5.90 92.02 11.04 49.65 41.20 -9.91 48.67 53.56 5.67 9.67 16.81 41.78 72.35 15.98 1.52 72.38 26.13 3.76 90.15 24.14 13.06 49.46 30.76 38.50 86.07 81.32 95.48 75.47 0.92 47.23 37.23 13.33 21.72 2.47 70.18 29.19 93.91 68.08 10.02 39.41 9.83 75.75 86.99 24.32 9.24 50.78 11.90 92.79 70.55 11.50 21.85 42.71 11.27 22.71 55.19 98.90 28.82 79.39 98.51 77.72 53.54 53.56 24.73 15.82 77.12 14.84 50.26 49.13 50.51 65.28 22.11 49.14 97.00 9.63 74.70 95.33 39.37 7.29 67.72 99.67 15.79 8.04 53.89 62.93 79.45 10.85 33.81 51.22 30.57 33.80 47.95 17.30 96.94 9.89 67.32 85.98 48.44 13.58 94.33 23.12 14.35 30.12 60.33 80.56 63.11 -17.56 35.15 51.48 50.19 79.62 60.85 38.80 69.15 66.26 22.65 60.43 14.77 87.77 88.90 1.17 58.68 84.70 86.42 87.94 67.08 30.68 77.34 64.89 83.96 21.32 13.27 50.88 68.38 3.00 46.48 1.67 44.79 15.36 57.62 28.18 68.07 92.75 51.72 40.59 49.57 38.53 19.95 30.77 48.88 4.63 13.81 48.20 60.85 32.62 31.29 16.34 78.59 26.86 41.29 13.91 56.46 12.91 67.70 16.05 71.85 72.00 6.46 15.33 71.14 18.89 71.03 57.79 33.54 21.31 56.51 71.69 76.06 78.29 70.52 49.60 49.50 34.92 9.67 9.32 2.69 87.07 31.84 91.12 20.53 97.55 45.48 10.58 69.65 29.87 0.90 3.03 67.76 43.78 96.12 98.21 85.53 52.35 51.58 36.38 90.85 -10.04 22.99 1.16 48.25 18.58 6.56 1.40 37.93 25.63 42.91 38.76 42.47 98.01 39.47 23.72 82.10 27.07 4.95 6.29 40.65 6.71 74.46 22.28 14.32 68.66 36.08 76.92 2.19 87.07 10.36 1.11 38.33 45.61 93.15 60.13 59.36 44.30 6.71 58.30 92.35 39.45 66.61 80.97 20.84 53.69 11.11 42.39 63.31 57.22 36.35 62.26 47.33 23.29 82.26 74.70 94.24 11.20 55.60 9.73 30.77 66.82 52.80 2.68 7.65 84.52 9.17 65.32 5.50 53.82 68.95 22.51 87.19 14.29 27.07 34.35 37.50 44.45 29.99 50.77 1.25 9.57 53.63 67.08 0.11 49.76 56.67 81.73 32.69 42.61 2.14 75.90 74.28 5.24 86.68 95.62 69.25 39.20 72.95 82.10 11.90 -0.95 49.40 44.44 15.61 49.50 61.09 97.22 69.96 87.14 5.37 70.64 94.45 0.20 56.26 36.82 83.52 38.17 45.88 45.64 3.17 61.40 14.26 1.69 77.16 42.26 45.81 95.59 9.10 82.14 40.74 20.79 11.38 63.58 29.82 24.28 20.30 31.98 76.63 14.83 31.10 82.40 76.15 51.38 43.75 43.37 92.36 82.56 35.96 19.13 44.31 31.64 64.07 86.48 67.24 20.15 17.31 13.34 37.81 77.52 43.43 80.32 41.55 55.16 94.41 92.72 94.75 36.68 60.91 33.44 67.66 14.38 97.93 25.02 97.47 9.99 17.22 79.57 88.87 27.70 11.23 19.64 26.06 73.06 21.15 96.82 60.48 74.42 27.58 0.90 96.47 92.98 67.40 61.47 93.97 66.28 58.46 35.47 41.23 20.67 56.96 -97.40 62.98 37.01 80.30 1.92 41.16 3.86 9.83 70.19 45.99 55.57 8.60 13.99 27.33 58.36 50.63 3.14 46.32 71.79 2.32 79.05 53.30 10.18 33.78 37.99 62.58 64.90 66.64 10.33 60.74 82.63 24.17 97.21 64.69 64.63 56.28 48.70 73.24 85.85 21.10 85.10 76.27 1.03 84.59 56.61 81.93 25.34 11.35 80.52 91.41 21.68 45.70 73.87 95.39 47.17 76.11 1.26 10.85 24.43 68.16 96.07 83.60 75.98 48.98 16.11 41.69 64.26 36.15 67.03 43.08 0.92 43.65 99.84 27.79 61.51 22.31 84.74 8.14 28.16 86.79 1.32 3.34 84.06 2.39 50.58 41.41 80.32 66.27 39.68 56.44 11.95 92.82 14.40 46.42 2.69 87.03 71.11 48.15 17.96 0.00 -39.10 0.90 0.07 43.94 32.76 12.36 58.78 21.32 59.78 61.16 3.61 77.05 21.12 32.32 67.18 70.40 26.62 48.82 68.85 48.91 89.64 31.40 8.97 12.85 14.44 70.26 97.88 89.50 47.98 0.76 38.66 9.01 92.45 54.97 76.73 41.48 73.36 34.63 4.89 78.87 28.44 99.31 98.36 89.79 70.75 32.58 86.72 50.98 31.67 36.41 57.43 39.75 28.39 90.79 31.28 76.97 85.97 95.64 59.44 95.04 94.96 58.24 1.55 33.74 36.35 67.03 43.13 7.97 47.80 85.58 41.24 94.80 58.59 97.94 25.57 91.46 98.01 54.77 63.76 51.80 34.18 81.12 31.31 88.66 0.57 9.42 56.12 29.86 8.49 76.22 78.61 88.97 79.08 19.13 48.16 17.40 2.36 62.75 21.93 18.89 -13.79 74.51 73.71 90.38 47.22 79.76 29.05 31.49 91.72 1.37 68.23 74.81 15.55 17.82 47.03 99.20 27.99 20.28 55.20 61.97 73.20 63.14 82.02 97.28 70.51 95.41 51.60 0.88 39.46 25.89 56.68 87.54 42.30 95.27 77.43 48.65 15.96 5.79 35.76 36.86 28.24 96.71 61.67 98.15 21.05 5.60 56.40 88.76 79.56 17.55 39.21 25.25 77.06 56.90 71.23 64.63 3.80 21.48 92.66 23.61 67.50 86.62 58.64 37.36 72.54 27.94 61.58 92.53 26.11 72.32 10.13 27.08 45.06 37.28 32.54 88.09 87.15 25.11 22.08 14.26 67.77 43.83 73.58 56.09 83.48 67.91 52.69 98.99 78.23 1.96 32.47 13.83 93.03 28.23 82.34 45.53 35.59 7.98 33.64 21.68 -67.17 91.57 85.00 64.16 36.19 82.67 3.75 26.02 78.10 72.05 33.46 38.08 10.72 77.70 80.16 36.61 42.92 74.96 99.42 47.87 27.76 33.18 56.23 96.08 31.64 33.86 14.77 15.03 77.87 79.06 93.11 23.53 38.77 91.17 3.25 72.00 55.28 71.79 51.71 41.26 0.24 96.13 84.41 66.78 53.71 67.94 98.27 2.51 26.28 99.03 59.48 5.47 32.73 90.35 92.40 37.77 92.21 78.98 75.01 39.77 52.11 36.74 22.92 41.79 71.59 20.26 15.72 52.23 11.09 42.03 31.79 58.35 15.65 1.33 76.13 26.84 27.86 21.71 93.85 18.27 4.19 78.22 2.42 94.28 75.71 2.06 68.17 91.94 19.41 93.52 57.43 3.47 56.79 27.84 3.84 8.75 48.74 60.81 4.93 21.48 -5.90 77.88 59.44 78.29 63.15 99.79 95.91 91.77 14.50 15.85 63.04 81.73 91.58 52.19 76.66 95.09 35.71 2.13 49.64 52.85 87.16 55.18 98.03 97.30 60.07 35.02 97.74 12.98 96.01 57.30 36.74 61.86 38.90 22.77 25.55 15.77 31.71 14.72 0.73 85.61 51.86 45.90 56.54 6.00 39.73 91.98 80.80 72.15 53.95 95.99 3.54 59.20 15.59 80.05 46.53 38.57 3.73 74.62 36.29 52.56 92.76 25.03 64.18 87.04 2.67 98.40 8.29 54.85 19.27 3.35 86.91 29.83 63.69 92.22 69.58 70.18 89.00 3.13 12.92 39.08 22.34 30.29 57.55 96.08 39.64 22.10 50.22 71.34 83.74 24.69 67.94 38.73 83.24 47.94 53.36 20.76 34.27 41.80 47.77 41.69 -24.74 34.80 31.80 54.33 42.33 25.49 53.85 18.22 45.21 98.69 73.53 40.55 62.38 49.55 89.18 17.34 36.61 45.94 24.87 82.97 82.76 3.05 51.86 2.45 80.33 16.58 8.54 89.14 83.82 31.68 81.45 19.82 64.57 17.44 84.19 8.32 73.62 51.71 75.48 46.66 4.76 84.73 89.26 2.99 94.16 35.76 23.88 25.07 25.29 64.14 5.48 92.78 50.83 61.96 96.43 75.41 12.36 15.88 99.78 32.53 63.07 87.93 24.40 50.42 46.35 92.06 5.61 69.35 18.68 38.20 13.11 15.28 91.59 13.64 8.19 38.01 0.79 51.18 55.12 59.92 81.97 85.32 42.62 31.21 41.65 75.46 2.37 52.68 27.61 22.22 38.83 4.13 8.84 21.57 33.66 48.80 80.08 69.48 87.96 15.50 -85.12 54.54 90.37 95.82 22.36 55.09 17.90 48.01 59.65 34.46 84.78 6.15 73.50 6.37 32.27 96.84 85.43 73.83 46.18 13.93 78.33 67.94 80.36 83.17 88.98 14.57 7.84 68.74 25.70 33.34 17.99 24.13 31.38 61.96 73.40 49.13 40.14 47.74 66.62 46.60 97.35 94.83 40.91 41.72 19.68 64.91 76.81 4.10 33.21 89.50 94.90 9.21 3.72 30.51 17.03 94.19 66.95 85.82 83.42 94.40 5.89 33.32 81.92 70.58 96.26 29.80 95.15 35.06 74.63 4.74 75.94 42.38 12.16 40.64 92.87 26.99 31.94 35.77 35.34 50.16 36.83 69.20 49.01 88.57 31.01 20.48 43.51 0.37 87.60 22.43 21.62 88.59 8.37 29.44 36.62 35.49 98.73 85.19 1.79 31.25 -92.26 15.29 39.77 98.88 79.51 41.90 36.66 29.67 75.79 59.02 8.41 5.89 46.92 57.28 67.08 80.97 60.65 63.81 44.74 81.51 73.98 99.43 38.98 55.42 55.98 91.47 61.84 39.90 59.09 39.52 32.56 76.19 85.69 72.35 40.37 87.39 90.62 82.32 13.07 66.16 45.35 31.07 53.98 50.62 83.63 6.64 70.26 46.53 11.40 40.88 76.56 64.21 69.04 48.53 40.41 75.07 66.36 81.55 13.05 86.24 82.37 24.89 75.70 37.05 23.34 59.52 75.80 8.22 70.21 50.99 68.26 27.17 17.05 65.08 60.86 70.20 79.13 93.67 24.52 85.60 20.87 73.19 1.36 71.46 53.52 54.50 4.67 37.98 75.25 48.74 19.12 28.23 49.78 37.47 32.12 27.49 19.71 72.90 62.39 19.53 -13.14 7.77 85.30 47.64 24.93 14.66 88.30 95.46 9.12 28.16 9.38 10.78 30.20 27.47 62.62 72.98 85.79 57.81 50.14 64.21 29.43 57.30 67.92 81.60 34.05 40.21 89.74 57.98 93.07 33.98 19.00 82.84 64.24 55.34 61.50 3.24 16.66 12.05 7.37 44.43 98.74 13.07 71.16 71.94 3.00 87.63 29.71 51.97 50.31 99.55 15.59 32.01 61.90 90.46 48.54 5.20 12.04 98.21 0.05 49.83 88.53 94.87 81.77 62.15 39.04 42.63 94.75 56.53 45.62 85.10 28.35 74.71 98.40 60.13 32.40 39.85 34.13 83.46 74.78 92.00 19.46 99.23 19.05 11.50 64.95 25.36 23.08 97.18 29.10 77.63 49.52 40.00 91.10 18.84 84.34 42.28 23.06 99.93 94.36 44.61 -46.62 20.17 73.04 46.71 52.72 8.62 79.77 66.17 78.87 38.63 45.00 41.23 8.34 55.87 61.31 29.66 45.58 63.18 32.99 49.21 10.89 78.79 47.19 23.49 94.32 70.74 40.84 52.74 82.93 96.85 49.86 66.85 66.92 4.82 56.07 55.50 36.78 48.18 7.28 21.28 43.02 40.65 25.31 97.71 79.66 56.01 54.70 36.05 12.53 39.53 26.01 31.12 76.41 91.01 40.63 43.78 52.93 99.09 20.84 66.45 25.34 0.62 88.32 3.73 65.76 63.08 71.71 0.82 96.29 78.47 44.48 41.23 3.51 0.22 29.50 85.51 70.32 33.36 6.57 97.22 62.56 2.48 49.87 17.79 15.80 29.36 88.20 13.68 34.43 81.34 68.70 97.61 28.17 7.78 74.11 33.70 37.76 54.93 30.66 54.49 -80.95 55.32 24.46 66.19 83.34 22.76 17.57 59.96 76.79 98.88 54.85 48.87 96.97 39.43 22.92 19.74 29.45 88.26 13.21 72.36 65.73 27.86 10.35 17.73 79.69 58.07 7.75 26.61 84.64 87.33 20.64 56.97 88.75 65.83 38.61 44.68 63.16 41.76 25.28 76.24 42.25 85.85 72.99 95.92 35.41 7.23 89.30 6.41 62.45 29.45 74.66 37.42 52.66 6.29 31.05 57.06 54.48 34.41 57.74 59.21 77.00 57.09 84.88 4.91 84.07 94.85 87.53 42.77 72.40 61.95 15.39 51.81 85.53 88.81 47.88 60.99 66.88 53.62 90.28 86.80 22.49 49.18 38.51 82.06 86.30 74.82 33.74 25.99 22.36 25.67 13.49 33.32 65.84 30.44 85.02 66.22 15.98 44.38 54.08 9.01 -54.31 14.29 42.29 41.94 15.34 56.50 45.43 32.78 54.00 89.77 14.84 77.06 76.90 32.81 38.69 87.25 94.09 42.69 53.53 58.36 94.06 24.09 75.87 31.64 28.80 20.18 7.61 55.89 17.66 40.71 42.24 85.24 42.96 23.61 90.38 51.94 64.15 21.39 58.75 77.68 92.72 38.71 43.58 9.64 94.13 2.52 48.52 61.24 28.19 15.43 30.61 2.73 61.24 69.48 98.26 99.61 49.86 57.86 5.53 93.18 64.70 60.11 39.78 39.10 13.49 27.18 77.97 67.23 86.78 29.07 13.56 51.55 81.83 78.54 95.56 49.48 77.34 0.84 94.80 39.50 52.62 61.13 3.33 11.71 64.56 78.04 43.55 79.63 97.64 81.16 11.60 22.85 93.25 30.60 81.00 70.31 28.08 16.66 91.89 93.39 -80.69 92.19 11.67 31.85 3.04 87.96 83.92 43.79 4.71 63.85 33.58 74.31 43.96 89.88 4.29 86.29 70.17 13.77 31.32 52.56 72.42 80.43 30.53 10.14 55.95 0.42 26.14 92.78 77.80 33.14 14.39 37.74 87.32 15.70 41.11 33.07 8.46 16.08 75.13 88.25 4.07 67.96 76.15 38.51 76.18 5.03 25.46 33.76 96.10 46.48 79.39 29.82 65.81 22.80 10.45 30.62 98.84 77.15 5.64 15.54 16.20 59.94 73.40 70.19 48.13 71.01 98.65 44.06 53.94 24.32 20.92 6.86 12.11 61.90 77.85 32.50 12.03 65.50 70.56 1.70 20.64 42.17 60.49 79.05 70.46 60.11 55.46 11.13 2.84 77.32 63.55 17.82 58.81 15.36 16.95 52.88 21.43 86.54 61.71 22.21 -95.50 22.69 48.15 4.91 29.23 62.77 1.50 77.65 50.25 98.71 80.18 89.91 16.44 23.16 1.06 31.04 96.52 38.39 79.88 45.97 60.95 90.53 28.23 46.00 33.02 63.07 86.78 10.27 44.21 17.41 22.45 4.66 5.90 85.68 62.61 49.92 80.85 86.41 52.66 99.13 98.39 28.72 0.90 6.54 25.22 93.39 52.26 18.55 16.75 63.84 91.42 58.60 78.62 36.82 21.31 79.23 31.54 35.80 96.11 63.37 12.46 42.59 91.06 61.40 37.25 26.13 67.94 32.28 51.15 72.69 13.45 45.69 84.61 12.81 74.74 64.82 5.71 98.39 68.04 46.06 44.76 14.33 42.63 53.77 81.15 88.12 92.36 71.27 44.42 87.83 8.30 45.56 76.10 73.03 25.26 14.33 0.95 4.70 52.06 94.09 -61.81 99.92 78.62 6.60 72.32 37.06 10.14 82.27 6.15 4.51 24.42 75.88 4.46 25.52 54.57 12.17 64.53 59.45 38.27 60.02 54.36 13.70 37.38 58.05 12.82 0.60 15.98 55.30 44.98 93.53 61.44 50.84 24.65 52.66 43.78 51.95 2.93 20.13 28.12 69.55 27.33 43.30 55.94 42.32 97.36 45.93 63.52 3.91 36.85 63.72 66.65 33.34 74.67 13.02 82.60 46.27 58.92 56.82 15.38 32.05 60.64 81.57 8.23 7.99 92.62 41.93 35.50 42.54 47.47 30.72 42.14 42.81 47.10 77.37 16.55 24.49 13.43 76.16 30.76 9.45 63.96 95.76 64.37 50.44 78.86 71.06 58.55 99.33 50.82 1.86 55.67 86.35 59.80 11.05 50.76 23.30 32.10 30.25 43.96 21.29 -49.80 70.15 66.89 62.30 60.91 79.95 44.56 17.27 32.34 12.88 37.17 50.36 1.01 96.09 51.37 94.46 23.10 86.58 23.34 1.78 95.48 81.95 49.53 72.19 24.05 20.83 74.24 5.86 8.86 5.53 84.82 24.79 91.50 60.54 99.28 91.88 17.51 43.27 54.72 99.76 33.27 80.73 78.72 64.77 33.96 29.95 16.90 48.33 2.22 4.10 52.90 87.61 37.81 80.20 86.71 69.47 57.45 22.90 18.26 43.86 90.22 97.59 48.32 53.33 2.57 21.68 23.08 17.48 97.61 4.87 31.58 39.68 30.08 39.71 67.52 38.55 81.10 5.94 38.27 37.21 18.14 74.37 3.19 92.74 95.06 36.20 38.07 32.43 60.69 72.67 42.09 14.68 24.20 55.75 81.93 84.08 42.56 21.30 30.68 31.63 -51.19 84.45 96.89 51.12 22.87 87.28 59.43 44.94 19.35 4.42 49.11 59.56 11.29 3.03 51.63 21.37 58.91 14.48 42.93 31.55 84.51 52.85 6.25 27.56 84.64 60.47 70.09 1.44 41.69 34.13 98.09 58.86 33.50 20.81 51.92 80.81 11.70 41.01 97.04 6.59 41.58 32.32 44.06 13.48 46.26 79.89 82.53 61.53 88.38 44.16 27.88 73.55 5.17 90.53 27.30 81.21 7.32 82.28 56.43 84.59 75.90 79.16 60.42 16.25 53.71 11.08 98.07 36.77 72.01 59.58 1.37 56.00 32.99 59.50 69.24 4.05 42.18 10.04 70.97 79.71 56.97 66.28 32.54 29.99 54.86 29.12 19.31 72.64 2.87 44.82 8.85 35.08 58.71 65.95 48.36 34.01 47.20 82.18 89.38 45.05 -30.72 6.03 77.59 95.46 9.50 13.46 22.44 73.11 15.43 30.15 62.43 16.15 20.86 41.26 46.67 93.80 12.81 54.31 81.99 37.68 90.86 31.11 86.40 49.90 88.77 39.53 68.64 2.48 87.53 43.22 72.11 17.25 38.43 0.35 63.69 52.35 7.12 29.98 7.58 74.34 14.55 89.86 84.48 23.38 48.62 40.27 0.37 38.69 94.02 22.28 31.32 72.58 47.93 71.25 30.52 74.03 12.67 78.03 89.41 11.63 57.11 46.08 63.23 0.27 69.54 88.81 4.07 69.71 71.62 65.65 86.72 81.46 19.35 8.59 83.79 34.74 7.46 69.23 52.10 98.36 64.56 83.27 79.09 16.14 36.76 52.63 61.72 19.79 90.54 94.84 53.65 74.93 80.79 11.04 81.90 95.39 73.52 9.41 93.80 0.47 -2.31 58.96 7.37 49.90 7.98 52.72 84.88 99.07 46.57 81.30 16.87 3.86 45.99 18.46 25.73 83.67 32.64 53.40 49.94 6.80 5.05 31.79 25.16 10.88 74.03 63.52 58.98 16.44 29.89 82.95 69.15 24.87 28.01 50.04 87.99 9.36 6.02 8.95 35.44 16.06 97.96 11.60 27.27 93.01 13.69 26.94 5.22 90.15 46.64 23.91 47.92 36.01 35.95 89.49 81.52 22.64 59.93 41.66 70.46 75.83 78.15 59.66 29.96 50.26 37.64 22.17 3.76 65.45 61.20 74.64 84.89 20.50 83.61 22.65 75.71 65.36 22.43 81.39 75.96 57.61 36.31 57.39 3.78 50.36 15.54 34.57 44.83 50.14 14.81 78.79 13.75 41.75 4.66 2.26 15.99 93.74 16.57 4.28 87.19 73.85 -2.68 92.70 49.89 96.53 11.05 30.33 52.67 20.14 63.91 65.06 47.51 39.33 87.13 73.83 17.38 63.32 42.50 20.69 33.43 84.17 75.76 84.40 41.98 89.01 19.51 45.65 26.26 99.09 87.15 34.03 74.27 54.00 80.46 76.73 32.73 63.48 26.64 87.91 86.32 25.04 67.23 68.79 1.89 7.28 48.58 80.96 65.99 63.34 83.06 37.42 18.64 11.86 84.62 11.45 21.07 93.98 10.11 27.23 34.15 12.81 32.05 5.08 18.93 63.05 24.46 43.25 51.24 26.32 63.32 38.37 87.33 56.33 94.80 2.64 60.30 58.30 90.89 43.67 77.92 79.38 75.20 46.68 23.09 99.50 38.77 98.26 11.20 55.05 9.37 88.36 16.99 95.22 95.77 37.57 53.08 14.70 25.63 96.07 25.09 45.22 -29.92 50.04 82.61 15.82 94.44 45.08 82.95 60.50 95.74 83.19 68.72 4.40 99.31 9.38 31.22 15.24 71.28 43.02 68.80 43.85 70.39 71.74 36.86 38.88 79.93 25.25 67.20 70.35 84.17 11.01 29.63 84.94 32.32 8.40 56.03 21.66 74.44 37.78 83.51 1.38 58.93 63.55 7.75 63.37 26.35 79.43 30.13 81.09 16.49 49.47 0.59 64.99 35.88 83.48 5.91 57.68 79.99 20.40 11.59 19.51 98.24 53.47 79.30 5.68 64.24 83.41 79.37 40.00 17.10 68.05 45.92 26.42 78.30 63.37 63.69 0.04 79.46 94.38 82.28 99.37 10.86 0.98 10.88 99.12 55.72 42.21 6.57 7.73 72.67 68.64 41.18 27.81 42.69 44.32 7.17 42.96 3.71 95.00 37.40 53.11 -56.30 26.89 54.84 97.90 19.98 63.29 88.91 55.31 14.87 66.35 25.91 41.54 75.99 16.50 7.66 11.42 2.61 73.00 83.00 39.63 72.30 38.98 79.90 37.29 58.53 63.91 74.39 75.76 48.53 86.63 4.77 60.81 93.00 70.40 87.90 23.46 51.19 39.43 88.69 28.64 10.66 50.12 95.44 67.72 86.11 83.08 87.91 92.73 24.55 41.56 87.83 88.13 16.11 10.42 25.84 66.33 29.27 38.73 30.97 40.08 4.32 86.12 93.22 74.47 33.65 10.78 20.92 25.35 26.83 4.29 55.86 18.36 59.14 32.52 39.74 28.98 94.91 0.06 19.76 74.65 99.07 68.92 43.59 76.68 97.36 48.70 12.05 99.06 15.04 7.87 32.03 34.08 72.34 97.50 72.71 63.28 35.04 62.60 57.04 96.10 -30.89 38.86 47.04 23.27 49.55 16.56 28.52 49.76 26.87 35.81 96.69 5.04 72.45 50.30 78.41 90.34 68.13 76.20 58.17 26.46 41.72 72.84 43.07 48.89 18.49 71.15 22.90 66.21 19.52 44.95 47.32 11.15 38.11 37.43 88.49 13.03 96.08 43.17 94.44 59.20 48.97 29.96 97.84 85.13 0.16 94.02 21.06 12.78 49.89 94.76 92.38 91.74 57.34 1.67 36.25 2.05 79.63 10.09 57.00 73.35 19.95 94.82 19.18 5.76 59.17 73.25 95.98 49.64 1.23 44.72 72.86 61.46 9.43 56.84 5.28 44.74 49.22 30.21 56.51 35.23 99.81 49.60 58.47 53.29 27.10 73.84 99.29 93.82 66.61 86.20 31.76 0.10 57.05 24.63 84.04 45.11 11.46 35.27 4.42 24.57 -39.38 74.97 82.46 54.32 85.10 41.33 68.97 80.48 40.15 43.23 38.00 87.12 29.98 57.29 89.91 23.88 15.78 57.34 75.12 93.73 47.76 3.31 90.56 63.74 93.23 90.87 95.19 60.40 34.56 60.58 24.00 90.92 86.47 91.58 28.54 11.51 31.02 84.86 86.78 51.25 11.08 73.01 6.29 92.88 75.33 5.29 60.40 94.09 59.44 99.25 27.90 26.62 51.73 42.96 40.48 66.86 36.68 98.88 95.60 21.59 40.50 88.74 3.41 12.47 86.86 19.55 44.22 37.56 52.92 14.60 11.68 98.47 28.38 26.72 48.38 58.63 7.05 67.06 47.00 67.03 72.53 74.34 98.73 31.04 45.94 31.27 55.34 83.65 93.31 46.24 22.50 18.32 50.43 65.70 14.91 52.89 82.67 21.07 55.02 78.41 -78.22 94.12 63.93 87.96 7.87 90.97 83.83 49.64 46.29 2.30 36.89 64.69 5.15 47.20 56.97 1.11 61.26 37.18 59.50 48.55 34.25 24.31 4.90 91.24 10.30 72.98 50.38 44.75 96.75 59.59 96.08 16.12 12.16 37.34 75.37 67.60 26.47 59.71 20.58 98.24 70.95 96.19 64.12 21.94 22.92 63.93 32.17 9.59 38.42 92.38 41.10 45.82 38.78 99.87 9.70 94.52 5.14 49.64 13.23 62.90 98.96 83.13 41.02 41.25 54.51 51.62 7.55 5.57 76.56 19.34 22.64 30.91 38.36 53.24 24.82 4.28 17.61 76.96 94.75 7.77 63.28 7.69 43.28 47.60 30.66 16.39 35.51 27.30 59.22 85.32 12.77 98.70 5.99 16.95 84.68 87.20 57.30 70.99 84.77 39.51 -89.70 96.98 16.01 31.00 84.29 34.41 12.84 24.06 0.98 83.43 16.99 95.67 34.03 86.25 55.82 17.78 78.28 52.07 50.87 90.61 63.82 39.47 22.16 53.66 32.96 66.81 38.59 66.96 21.22 25.82 47.21 10.21 51.20 28.26 54.69 9.00 11.18 35.57 49.01 50.43 85.51 13.68 8.38 74.12 4.28 76.70 11.43 52.41 24.87 91.08 28.29 30.03 58.01 30.09 51.15 50.74 12.28 17.21 56.18 91.70 39.02 48.01 36.06 21.05 50.09 54.54 59.74 20.10 82.65 94.97 97.94 74.63 3.13 72.96 33.63 2.62 85.09 67.26 85.03 60.88 55.31 91.68 86.16 11.44 67.89 97.59 40.89 98.56 8.97 20.09 48.15 20.64 91.77 89.14 69.06 95.48 33.05 23.36 18.99 86.75 -96.53 78.21 76.98 31.79 27.21 37.72 27.14 60.84 35.83 68.52 16.63 39.79 8.92 85.10 90.55 9.81 63.84 38.25 61.41 81.63 79.91 27.35 72.37 87.90 36.59 29.92 53.66 27.99 18.76 11.52 79.05 13.38 52.83 51.61 4.72 89.93 16.69 46.27 85.43 62.73 36.00 91.58 96.64 48.15 83.61 68.44 90.60 20.52 41.35 23.82 99.47 17.81 8.46 5.83 12.11 47.09 35.03 67.05 99.15 95.57 24.24 92.44 39.00 71.20 20.07 33.48 78.67 73.53 73.99 38.59 1.11 77.15 11.24 53.91 47.81 27.44 64.88 55.70 18.96 89.07 75.00 64.17 76.29 4.24 96.21 21.08 63.88 44.68 51.68 24.16 35.56 10.04 72.03 63.68 36.72 60.44 94.51 31.69 31.98 53.62 -70.56 77.04 98.60 44.65 5.26 97.81 51.02 50.91 95.45 9.63 41.68 43.94 45.21 80.03 62.86 7.86 17.63 84.42 92.23 65.26 16.19 58.68 4.97 78.85 64.14 23.73 92.79 43.57 57.25 9.96 99.65 45.60 16.51 98.43 25.58 34.84 90.00 1.55 6.09 5.82 44.83 29.31 84.01 8.85 63.86 39.19 0.39 81.13 75.63 41.61 57.67 30.54 72.38 7.48 28.62 12.43 63.58 58.43 59.29 6.78 58.18 87.08 73.32 59.81 85.12 41.07 59.14 95.65 11.35 38.19 43.25 91.65 8.84 12.51 70.21 37.06 39.30 29.79 26.86 25.71 37.62 83.20 10.65 65.65 96.00 88.35 15.64 20.02 10.57 94.08 18.53 7.61 13.33 6.48 87.95 22.13 0.06 66.38 39.70 91.30 -44.22 4.53 64.12 97.27 77.06 28.75 86.81 98.98 11.69 70.42 24.61 25.46 99.11 56.17 74.99 0.40 41.65 7.40 27.74 49.61 26.47 25.69 27.91 99.52 25.10 32.17 31.15 89.57 60.22 51.12 7.99 44.83 81.76 80.21 95.13 98.60 51.70 41.99 40.16 82.96 83.70 31.97 5.90 70.24 89.35 66.08 21.30 77.99 31.53 87.24 26.32 10.74 75.34 98.48 61.36 57.86 34.96 44.81 36.02 37.23 96.66 53.33 75.05 13.36 43.85 42.99 54.75 86.64 5.24 28.02 4.68 5.35 92.10 24.82 54.46 64.36 87.80 88.45 74.44 10.35 63.96 10.68 11.60 33.65 0.35 31.62 94.05 1.32 84.85 32.58 55.83 83.83 25.27 86.96 20.14 23.68 88.09 80.23 42.44 87.15 -48.25 14.45 20.65 46.35 46.46 37.75 10.14 3.26 23.55 50.09 49.04 31.98 17.73 73.02 76.16 90.05 92.97 60.21 58.67 67.24 55.08 40.55 23.15 67.28 12.06 36.25 24.97 71.35 84.86 60.24 83.32 8.44 99.89 83.31 78.59 47.37 94.71 33.39 7.72 66.55 41.21 90.91 6.28 8.88 48.03 41.81 89.11 87.40 80.89 45.55 74.15 14.19 27.57 54.77 4.48 51.37 47.00 58.42 65.27 87.73 87.72 48.26 87.60 69.60 54.37 83.95 21.83 97.84 70.10 42.09 51.74 84.38 38.98 26.55 99.13 98.55 10.97 5.78 91.39 83.29 95.75 28.84 11.40 2.53 75.30 92.60 18.56 58.86 77.74 20.78 87.87 76.51 85.58 55.94 80.22 73.22 28.95 39.04 74.81 98.78 -16.71 46.34 44.70 36.81 2.66 15.57 66.68 83.88 99.40 81.98 57.97 85.38 7.20 65.96 81.58 78.78 3.08 84.93 49.28 8.23 48.58 14.71 88.61 9.90 85.98 70.47 41.36 87.12 64.53 22.40 14.51 9.97 59.70 56.94 50.06 92.69 6.74 40.50 61.79 74.83 3.72 33.26 51.51 5.20 62.72 35.83 94.30 36.41 28.91 82.84 56.27 86.78 61.97 40.20 30.69 39.25 2.91 9.37 50.57 24.97 72.02 91.91 29.72 46.15 9.36 75.67 18.27 46.53 52.80 45.13 20.85 62.84 26.29 99.82 97.90 62.01 28.07 79.60 58.92 66.14 98.07 22.31 85.63 70.59 70.05 17.40 99.93 76.65 76.20 31.30 88.48 89.83 63.35 80.98 15.16 54.34 59.27 81.01 38.86 33.52 -20.34 4.28 72.11 71.36 40.98 21.42 72.19 67.73 45.05 94.44 80.66 10.05 42.29 40.13 45.87 94.92 63.80 54.20 98.39 9.89 33.14 62.66 49.68 73.70 74.80 79.29 84.04 40.56 6.53 50.35 45.70 81.84 42.21 53.78 7.26 71.13 5.57 62.88 41.05 71.67 71.05 8.58 85.13 65.20 4.39 62.35 67.48 26.68 30.64 99.01 12.58 95.56 10.84 38.63 56.79 69.94 31.31 54.44 19.58 27.36 47.45 93.20 98.93 60.52 31.66 99.05 50.81 33.90 60.69 95.14 75.42 92.20 73.08 2.44 32.66 12.44 95.49 25.98 71.07 34.39 55.86 54.68 36.15 53.10 34.77 33.10 93.46 24.02 12.69 23.46 95.16 47.99 22.73 8.19 99.97 30.73 90.89 42.21 83.28 6.04 -89.72 66.36 80.34 6.19 61.71 83.47 17.88 84.30 38.71 72.74 49.16 53.08 81.34 63.16 5.15 88.02 62.67 47.69 88.82 11.56 84.57 0.47 37.56 15.42 49.23 65.03 92.08 31.44 55.58 99.61 56.94 18.77 10.64 5.03 70.77 70.43 17.78 59.59 3.69 95.89 17.25 73.11 2.33 24.80 33.92 37.94 51.97 19.69 82.98 92.00 98.87 70.10 9.99 89.92 63.14 75.47 85.83 16.77 28.89 61.58 24.81 27.88 66.19 15.89 61.64 65.46 39.49 7.70 74.05 83.12 13.44 54.49 41.08 28.24 96.18 40.07 75.03 86.79 37.80 30.15 52.96 98.12 42.27 54.04 99.45 0.29 52.06 1.83 38.80 32.24 43.94 70.04 6.20 26.30 58.35 21.10 72.50 66.84 50.84 43.32 -22.61 73.72 60.80 34.66 45.29 95.04 26.51 87.40 48.86 41.43 40.85 89.11 20.56 75.97 94.91 51.93 79.14 86.64 97.46 27.44 79.19 19.67 91.74 0.83 31.53 12.67 47.58 60.31 11.78 82.40 4.20 64.32 43.80 88.74 69.70 50.36 66.29 81.08 2.31 51.42 14.15 77.44 88.22 53.03 27.04 20.24 21.90 1.73 89.15 46.29 52.90 96.19 39.60 20.60 15.55 71.34 63.50 39.75 42.35 12.83 34.02 4.75 44.24 5.11 87.27 10.67 24.77 28.07 79.39 36.98 52.85 7.53 72.97 33.77 3.98 82.90 66.29 86.01 31.28 0.64 63.98 23.03 58.17 32.83 96.74 37.76 68.68 87.57 11.48 8.91 9.14 34.96 17.70 9.25 39.19 91.26 99.83 55.10 4.93 22.52 -36.29 77.47 66.60 15.30 69.78 40.53 21.78 79.82 50.62 44.64 95.07 1.80 36.16 87.97 39.91 65.35 94.99 52.50 84.23 92.93 83.11 99.01 86.32 23.19 61.44 8.36 59.26 82.64 83.82 49.08 30.92 63.28 37.88 14.94 9.60 69.59 65.91 64.10 96.50 43.96 23.83 10.82 40.10 71.10 0.54 18.41 24.22 67.93 91.66 48.27 29.82 56.16 29.46 29.00 29.62 14.87 14.19 34.27 20.15 42.17 22.25 89.10 85.87 27.62 35.26 42.82 57.62 77.71 13.24 92.42 74.61 7.99 65.26 96.55 11.07 90.67 40.43 3.69 15.77 90.91 82.58 9.70 71.14 79.36 80.08 81.84 3.95 48.51 61.10 61.07 78.68 75.39 77.57 62.59 8.93 71.09 55.83 46.39 82.16 50.00 -94.55 99.60 39.29 72.29 11.61 79.49 93.18 99.47 2.16 30.39 25.88 82.33 9.42 64.75 32.84 25.28 54.62 97.11 18.79 92.92 48.25 82.92 33.46 53.83 50.66 6.52 14.86 75.89 34.49 41.60 40.16 78.98 55.18 49.55 85.04 73.49 89.72 50.41 37.30 97.87 76.11 79.65 32.50 51.62 72.64 67.67 81.20 75.05 75.91 87.96 3.25 46.03 34.05 1.07 9.97 64.42 12.18 43.03 8.47 85.63 83.27 19.99 75.09 31.38 42.18 82.97 93.02 55.91 88.74 2.84 34.04 19.42 66.64 77.97 74.38 87.17 33.20 60.19 96.64 85.90 8.24 64.98 45.68 12.39 59.13 15.59 41.50 37.99 7.60 84.50 77.83 45.14 88.90 30.04 86.99 38.81 68.57 26.89 55.04 7.99 -59.97 82.89 10.65 91.80 39.14 6.28 72.07 41.01 26.71 87.74 18.92 53.32 79.88 96.67 78.44 86.73 55.82 33.69 78.38 20.21 77.77 26.37 85.75 89.73 83.20 67.04 95.85 27.09 27.61 78.38 50.88 20.74 75.47 67.51 53.90 43.37 22.91 93.50 17.01 85.67 85.32 95.84 22.36 51.88 4.61 55.41 2.58 12.28 0.32 87.68 54.93 68.68 13.17 61.80 4.13 12.01 83.30 97.87 4.21 46.09 12.92 82.63 53.44 74.30 23.11 58.22 71.96 82.66 75.70 63.80 91.69 23.37 40.76 94.02 89.40 22.41 67.88 33.89 69.50 32.16 66.58 37.65 61.89 68.16 78.44 49.52 65.32 48.32 63.12 1.30 12.94 28.87 32.75 23.17 87.26 11.16 26.12 58.82 6.16 19.80 -97.15 27.50 95.06 67.10 80.53 20.74 15.78 35.51 67.74 89.47 93.58 87.94 98.13 2.52 75.81 1.59 15.25 73.14 82.70 44.58 35.27 73.82 80.17 92.87 80.01 64.08 40.42 46.66 74.82 21.01 17.84 53.06 0.37 91.32 57.80 54.21 95.90 8.45 90.07 81.16 18.15 18.54 35.23 16.00 64.49 63.19 71.78 18.21 55.61 80.69 12.95 93.32 49.32 83.73 37.34 95.82 59.98 0.10 30.36 69.33 15.63 68.18 20.97 66.82 58.89 10.38 43.00 77.62 32.22 78.27 27.59 51.13 0.43 79.35 52.34 71.28 15.06 35.16 50.95 14.99 60.96 73.24 69.94 16.03 18.85 30.94 87.14 21.96 40.83 92.00 88.67 41.40 95.50 59.86 62.03 20.65 45.09 86.86 63.41 97.58 -4.21 78.84 35.94 12.54 26.82 5.55 24.22 6.21 70.49 58.32 44.76 72.58 46.72 24.86 14.91 78.41 65.06 25.49 90.30 73.03 90.30 2.17 79.71 36.99 32.59 53.98 85.66 98.65 32.85 85.63 65.47 80.90 62.80 78.02 8.65 28.57 48.13 55.07 98.02 66.16 71.64 31.03 89.89 1.37 14.22 7.68 53.21 73.33 48.59 33.50 60.17 89.78 95.41 96.51 99.02 87.00 27.88 61.45 45.92 34.46 47.85 88.29 26.72 69.97 76.95 77.18 31.12 30.69 49.84 92.91 38.98 90.43 77.53 13.65 36.53 9.88 99.44 9.52 76.19 92.69 30.23 20.92 88.77 58.06 82.16 40.58 25.59 7.32 74.53 35.05 12.86 53.80 62.79 4.57 75.02 9.74 7.22 93.66 4.46 13.09 -34.17 68.70 28.73 12.03 22.18 59.68 96.04 32.99 45.39 67.86 76.28 3.98 84.36 93.63 97.19 54.60 99.09 43.31 36.21 80.18 40.01 76.00 19.22 64.08 66.73 57.90 44.34 30.82 27.67 4.12 94.95 34.28 1.68 74.98 54.33 86.72 80.61 72.89 68.76 31.08 63.46 14.81 51.86 44.68 66.03 42.27 2.86 23.21 93.46 40.57 7.52 73.52 26.14 25.33 53.90 15.34 73.00 58.75 30.15 30.26 36.63 29.07 91.62 30.97 95.06 6.15 58.77 57.28 96.03 12.39 25.45 23.76 36.38 36.51 18.12 65.72 49.81 12.32 27.69 18.80 15.66 61.14 4.31 53.77 6.00 47.32 77.03 97.51 2.05 57.46 47.66 19.83 45.28 53.36 62.67 56.32 86.36 7.43 48.76 17.90 -95.26 66.99 21.37 12.16 35.48 6.80 52.44 12.96 27.53 59.79 20.95 60.28 66.10 39.56 54.57 91.41 72.57 70.46 89.92 31.71 66.89 76.30 56.40 16.92 78.74 6.55 71.55 83.07 48.80 66.45 90.74 78.66 2.57 21.15 88.23 23.90 35.31 2.99 60.38 41.58 19.37 41.43 0.37 23.51 17.74 93.90 73.05 14.96 9.22 48.64 30.07 36.89 2.21 14.30 85.09 22.11 37.63 56.77 11.13 50.22 52.89 51.55 3.45 31.15 9.80 49.46 89.59 36.94 48.14 38.45 66.69 47.90 67.59 62.52 14.66 88.80 19.21 51.35 29.14 96.95 89.64 24.72 83.83 66.34 86.27 23.13 77.27 34.41 31.59 99.00 27.51 11.80 23.62 34.50 87.41 14.97 78.96 75.07 80.74 93.29 -1.03 17.62 56.79 58.21 75.48 33.87 64.53 27.47 41.34 96.27 71.89 92.14 57.23 86.03 88.81 86.20 80.58 13.68 68.79 77.37 39.76 46.28 51.64 63.44 18.20 89.71 55.63 98.59 85.84 1.83 73.57 53.38 32.12 39.79 22.72 4.53 23.61 42.28 53.10 33.05 34.63 40.91 11.67 42.86 25.69 36.56 74.39 34.52 15.83 85.23 19.93 92.33 48.87 52.73 81.52 93.03 47.16 88.61 80.29 91.97 7.08 5.99 52.82 45.19 52.36 72.25 60.62 41.48 39.19 59.40 21.90 21.88 33.08 26.26 78.94 7.37 85.96 12.16 49.96 88.88 83.26 47.35 96.97 58.77 20.29 60.70 26.23 16.72 47.92 37.51 10.89 94.55 86.22 85.32 83.09 59.65 50.79 34.53 89.96 71.24 -36.75 20.56 92.60 34.44 58.06 70.44 90.04 92.21 56.76 42.85 28.17 47.17 77.38 3.63 40.35 91.70 53.24 8.83 48.29 48.40 88.53 64.01 69.10 90.58 9.10 68.76 17.15 91.48 15.22 85.98 61.41 11.67 19.07 38.85 45.67 12.03 13.25 56.80 17.56 77.00 47.20 72.64 32.07 26.78 19.64 56.33 25.58 1.24 69.83 69.12 13.50 97.25 19.49 37.81 96.90 91.81 61.05 2.57 69.04 53.49 50.03 51.53 47.86 55.59 14.04 26.21 51.23 39.20 22.01 37.11 52.80 66.60 84.98 46.81 11.64 20.52 0.96 60.18 67.09 32.48 40.29 9.75 26.01 25.45 4.89 58.68 55.94 59.53 85.84 80.72 6.30 91.21 39.09 74.75 30.92 17.48 12.32 22.14 22.80 18.19 -32.77 60.62 87.36 73.83 80.84 62.94 31.48 79.88 36.56 20.63 52.68 40.02 81.23 20.75 61.47 74.52 51.50 27.88 55.69 64.42 54.32 80.57 75.99 47.26 64.75 80.37 21.94 95.57 77.29 37.46 23.66 81.91 25.35 3.86 60.29 48.21 73.54 73.80 59.06 17.64 28.20 57.81 89.86 40.83 11.79 20.60 47.19 40.95 19.34 75.51 83.19 92.25 9.37 54.47 33.05 40.76 46.04 80.69 82.67 0.51 27.39 3.31 21.36 70.28 90.37 14.10 62.15 94.25 10.51 48.26 59.78 25.99 29.91 46.28 61.48 81.50 63.92 92.23 36.15 43.90 26.98 54.50 96.05 76.79 52.93 48.77 85.49 35.48 31.03 26.83 81.69 37.10 66.63 87.06 43.60 57.66 42.85 94.60 19.55 8.84 -92.60 9.30 55.35 10.40 27.54 17.92 50.62 85.94 90.50 63.10 37.55 77.64 31.85 74.43 87.47 78.40 91.45 2.57 70.25 27.03 11.00 75.56 64.79 41.83 63.95 17.13 95.38 47.95 27.16 59.70 26.49 23.44 42.53 10.41 6.92 85.95 74.83 66.08 14.80 7.04 9.17 70.98 18.78 74.45 55.87 61.44 33.18 45.57 33.83 15.99 98.70 33.99 85.93 34.99 89.43 63.01 59.29 8.84 38.97 21.34 88.75 63.57 8.61 30.14 5.37 99.42 3.51 55.04 59.70 20.44 91.45 57.03 21.47 0.15 93.02 62.32 43.34 34.44 72.93 91.73 66.99 76.24 81.07 50.41 43.21 70.10 4.10 54.25 47.26 2.76 87.16 99.26 57.57 35.89 62.76 82.77 64.32 76.29 95.06 12.20 -44.23 67.41 25.19 53.91 69.85 68.33 8.96 72.25 1.36 83.35 81.00 10.06 12.78 45.87 16.31 24.20 5.30 53.05 73.76 3.92 62.42 15.13 73.67 75.03 95.08 67.03 17.33 6.67 52.09 78.56 46.63 79.61 94.47 82.59 79.56 53.04 38.02 26.78 40.22 7.47 25.11 94.63 9.53 0.46 51.27 15.13 30.86 38.03 66.61 16.95 89.11 94.16 96.88 46.44 34.70 3.22 59.15 14.67 77.85 16.11 10.38 82.96 98.49 5.01 9.85 46.33 98.33 90.75 97.24 13.78 8.85 70.19 9.75 44.32 91.02 85.29 69.34 72.95 57.54 36.76 92.27 48.88 62.96 51.40 5.84 72.54 86.17 65.60 37.48 95.38 64.07 79.63 71.18 6.60 15.74 25.92 46.93 83.02 52.49 90.13 -0.19 27.62 8.88 77.04 49.40 28.14 97.89 52.34 35.93 5.40 90.91 41.98 69.30 0.52 43.79 12.08 57.18 26.59 67.56 98.81 69.98 20.30 14.03 54.22 29.86 49.73 83.08 90.26 29.96 46.34 67.02 62.13 11.47 74.78 76.45 11.20 47.28 7.88 21.52 28.86 70.58 8.89 83.52 30.88 41.48 76.55 52.69 44.42 80.35 99.20 70.57 4.78 79.60 18.37 3.51 62.29 84.92 62.57 46.56 34.53 35.57 60.32 29.83 55.90 28.31 93.29 97.53 12.29 74.11 77.51 40.12 88.37 43.55 12.98 12.65 69.92 77.20 89.20 74.08 50.86 38.44 68.95 40.66 44.00 69.94 21.69 23.00 22.33 71.20 0.42 63.27 95.29 54.81 20.15 28.55 84.73 62.38 46.76 91.26 46.40 -94.77 17.93 55.12 83.74 21.50 41.93 4.12 96.59 94.37 9.49 21.34 5.76 97.64 46.71 30.33 87.63 26.90 27.08 81.43 74.70 31.43 64.42 22.17 28.26 14.88 86.64 85.33 36.92 13.02 11.51 40.93 70.53 49.55 39.98 36.55 41.13 33.25 59.35 34.84 53.02 25.45 88.19 60.43 54.20 43.19 32.93 67.33 64.81 81.04 50.80 89.51 92.62 85.77 11.05 51.64 25.27 0.19 5.71 6.62 15.14 91.48 78.07 37.25 87.36 89.53 17.70 47.05 51.81 81.74 78.36 57.88 32.71 99.43 86.21 48.43 1.88 42.29 90.70 34.73 58.66 92.25 30.61 65.76 91.33 71.50 2.22 79.00 16.27 85.34 14.54 73.35 86.74 1.85 27.91 13.62 86.42 60.33 56.26 75.80 30.21 -96.22 62.15 77.05 53.86 76.71 8.43 43.64 61.49 72.63 52.65 53.94 55.00 78.28 86.08 46.19 34.09 69.40 47.01 53.84 45.83 64.32 14.02 84.08 17.80 99.88 48.82 43.23 94.32 33.21 50.75 92.17 59.65 87.30 74.30 13.19 43.45 82.92 9.44 96.27 15.85 65.74 97.25 63.69 95.90 87.29 3.43 20.84 75.84 74.25 91.85 78.22 0.50 55.73 71.25 97.81 43.14 96.41 30.18 94.47 0.58 46.40 37.06 70.06 39.66 92.06 19.62 43.12 85.07 28.21 13.77 7.07 49.79 21.34 68.97 33.55 98.88 65.93 62.26 66.86 8.04 92.48 59.43 81.81 30.57 25.75 63.80 82.65 71.40 24.34 50.10 58.05 7.86 20.97 89.23 86.38 83.81 16.75 79.76 80.66 75.61 -14.31 0.62 62.12 76.17 97.48 63.36 24.33 65.14 29.52 75.94 80.84 74.79 72.89 13.83 20.04 25.53 93.80 75.83 73.97 60.49 32.14 35.76 93.25 82.81 16.92 60.23 2.32 36.54 68.26 56.65 77.67 98.97 34.37 65.22 23.54 95.65 16.84 15.00 76.16 26.71 8.01 63.47 84.72 48.79 35.99 33.58 42.15 75.17 0.16 49.84 53.15 70.99 21.19 35.13 11.49 85.52 28.70 79.27 42.60 61.34 47.73 53.01 10.87 79.02 47.62 60.07 64.80 24.12 3.71 66.62 29.54 8.18 98.49 76.58 53.87 18.59 19.26 7.00 48.74 86.44 9.57 60.90 67.64 79.56 4.33 31.80 63.85 39.06 30.56 12.66 49.98 23.73 44.53 85.89 17.61 44.35 95.83 58.81 30.48 86.51 -19.67 45.85 61.24 5.63 89.02 63.55 0.60 0.29 18.71 75.30 15.00 65.00 47.68 40.08 12.98 79.22 83.83 3.45 45.39 27.45 77.66 20.81 47.70 3.88 22.68 81.89 28.04 44.48 2.72 47.48 50.46 45.35 4.49 84.68 40.07 2.49 12.17 19.83 64.82 67.76 25.99 68.05 65.36 82.54 44.97 58.38 74.84 72.12 98.69 48.45 58.12 91.08 27.15 25.22 97.50 64.93 9.33 46.34 62.44 3.87 22.24 91.94 52.66 4.96 71.06 76.83 50.66 69.33 56.15 25.65 52.27 75.99 59.56 62.35 19.89 55.21 98.49 64.31 68.83 27.97 72.85 44.44 95.22 87.14 91.10 9.98 85.26 82.39 85.41 68.08 87.25 2.33 98.34 24.30 76.37 83.63 7.40 25.25 54.24 21.88 -46.52 49.24 94.69 77.10 34.48 37.07 85.17 41.43 37.43 77.11 8.78 49.13 38.71 16.13 7.71 87.69 11.21 54.62 47.80 17.30 24.53 99.65 7.91 7.97 55.85 95.13 41.65 87.71 90.14 14.40 19.87 87.88 74.72 15.60 67.33 29.90 27.04 95.65 79.16 87.24 54.43 68.42 64.97 59.50 79.48 58.14 80.61 78.49 1.62 19.46 75.59 49.48 32.42 86.40 7.84 71.27 13.28 35.36 78.89 97.45 40.08 38.82 27.66 4.15 5.19 12.43 87.00 61.43 44.45 63.92 65.33 91.26 48.28 97.68 16.43 66.77 96.32 23.79 2.82 50.33 91.33 46.86 2.20 5.90 57.76 0.45 80.79 13.63 62.29 69.77 40.75 36.57 48.57 43.55 9.87 99.32 60.88 97.40 4.11 19.67 -8.53 96.86 38.69 92.24 40.22 73.67 95.20 48.20 22.49 39.78 56.00 72.25 30.93 65.11 88.91 80.73 66.78 96.52 73.30 58.47 24.85 71.74 28.28 3.53 14.87 68.27 1.00 24.34 56.65 32.44 6.82 62.30 20.65 55.33 70.18 14.46 30.70 84.36 77.79 23.04 46.03 75.60 69.29 30.26 56.01 52.35 53.51 54.23 53.34 70.18 19.94 87.38 53.37 1.88 3.81 5.58 62.24 20.22 61.33 9.92 40.28 20.51 78.33 95.87 38.29 54.20 36.32 22.04 22.78 31.35 4.79 9.91 41.29 34.92 15.12 38.32 80.55 90.45 50.67 66.01 78.89 55.76 9.78 10.24 62.44 0.16 56.02 3.28 43.73 88.17 78.65 47.56 75.44 74.74 38.64 41.08 50.97 22.77 15.79 51.86 -89.53 4.88 13.64 56.76 80.65 34.29 84.23 22.23 99.32 90.74 12.23 13.65 52.42 10.87 13.42 43.27 9.13 16.39 51.12 20.73 12.37 38.97 19.59 21.33 51.95 0.64 77.67 13.45 13.26 14.66 67.87 81.95 3.97 67.41 74.79 36.52 36.96 81.69 60.14 15.46 42.48 25.23 71.29 98.95 67.49 82.78 55.97 32.83 31.61 68.95 51.44 95.05 85.83 7.31 89.69 79.37 4.82 0.24 63.83 40.68 45.70 44.78 70.15 66.62 42.32 54.07 85.69 50.19 69.87 79.43 38.23 18.63 87.74 23.19 30.32 9.94 73.99 62.50 68.88 82.88 49.01 87.17 63.69 54.21 62.21 47.49 84.40 54.92 31.21 13.25 45.32 79.64 55.58 55.45 11.93 85.41 33.61 8.43 38.73 94.13 -50.87 90.03 62.69 8.70 85.13 84.74 18.16 58.10 17.44 44.25 65.51 35.51 45.97 61.71 69.36 39.36 11.96 64.00 45.52 40.50 5.60 3.67 17.50 61.06 96.01 28.34 9.36 28.86 98.10 6.42 47.14 74.01 46.92 96.63 47.71 15.50 99.23 93.66 85.89 87.51 64.44 76.06 11.37 25.27 5.71 18.33 22.07 85.08 55.28 81.13 58.65 7.20 8.09 27.62 36.76 80.84 42.87 82.19 58.74 73.96 84.48 21.37 96.36 22.42 69.60 49.71 42.00 82.26 41.35 4.07 5.91 87.06 75.81 2.70 82.93 54.71 28.63 3.92 29.49 41.78 33.72 37.04 85.99 89.74 65.66 18.76 54.96 37.80 7.32 89.22 82.29 67.28 17.82 50.10 15.65 31.16 54.55 70.20 82.80 31.69 -49.77 47.44 12.26 6.42 58.71 29.49 9.75 12.94 68.01 32.21 74.33 79.69 86.01 6.92 95.60 23.25 81.54 91.29 22.80 6.49 22.26 69.35 14.30 88.68 82.40 90.03 16.92 35.04 24.74 53.72 76.65 92.47 38.43 95.03 86.99 93.68 43.73 4.53 45.49 58.74 38.05 40.72 83.77 33.99 86.28 68.73 97.06 67.33 76.04 76.43 65.94 74.41 40.06 26.25 20.30 20.28 49.53 86.11 43.51 86.47 8.05 28.60 99.67 90.73 34.75 41.49 84.19 27.81 33.72 17.69 95.57 54.55 28.52 36.87 65.07 19.51 18.43 22.44 95.93 39.56 93.99 32.20 70.49 40.23 30.78 39.55 32.61 6.19 18.65 38.93 54.59 69.34 66.73 91.84 30.18 30.35 77.70 9.58 22.13 47.98 -10.18 38.84 99.21 63.36 99.41 16.58 50.30 55.95 19.41 37.58 11.18 85.94 70.90 31.39 79.31 3.31 78.41 2.39 90.59 35.11 86.81 10.07 18.63 1.06 10.11 97.26 20.54 54.14 52.39 23.11 15.77 41.74 30.50 35.41 48.38 22.84 72.47 50.40 99.48 85.16 20.42 76.95 94.59 40.21 87.50 34.45 67.96 71.03 36.10 28.18 39.42 51.28 61.95 20.65 22.31 34.84 89.44 5.50 23.80 76.73 55.60 9.15 34.40 84.58 84.10 89.20 13.49 42.28 98.63 78.07 17.51 78.67 60.20 27.85 31.00 10.36 74.84 54.25 28.43 37.47 97.10 91.83 13.89 79.48 59.63 85.65 88.11 37.19 44.38 73.36 33.99 15.19 62.55 55.33 42.11 25.30 13.17 93.12 20.46 67.91 -7.84 86.10 35.50 36.75 52.40 34.05 15.96 11.03 27.21 4.20 85.02 85.14 91.42 52.74 35.59 30.21 80.09 28.76 59.80 30.74 41.63 69.99 35.29 38.78 50.70 61.01 72.12 78.01 47.45 96.34 68.70 94.48 49.67 82.14 73.11 37.46 9.04 64.39 83.94 75.35 19.95 99.00 97.59 0.72 79.10 0.38 54.01 88.35 84.25 60.69 54.36 85.87 63.04 61.40 92.39 93.09 70.29 46.29 7.19 49.69 61.74 31.46 32.23 84.55 63.75 56.71 71.55 12.38 40.38 52.13 83.71 86.32 77.48 52.70 49.04 33.94 20.72 65.93 62.11 16.53 48.64 72.76 84.03 22.84 26.88 34.67 35.87 80.13 85.68 56.88 27.57 82.74 16.81 9.73 26.52 96.60 16.64 42.05 83.90 11.35 -65.60 85.47 77.61 5.05 58.83 42.75 67.51 47.66 6.04 41.77 96.78 34.53 48.60 24.94 31.61 85.27 35.13 34.29 5.72 55.94 90.62 80.24 2.67 37.57 87.09 86.66 27.14 2.99 98.91 34.40 15.53 32.40 93.36 2.89 57.57 25.03 86.45 23.45 12.59 74.36 70.96 29.87 50.75 62.18 97.51 92.86 78.90 80.24 97.12 3.13 89.22 79.28 3.15 83.09 8.36 71.22 66.43 15.87 90.83 60.96 74.47 92.32 76.25 24.17 47.95 59.75 38.75 70.73 53.27 18.50 23.41 53.60 62.70 52.57 88.76 86.38 84.92 98.23 34.23 85.15 34.29 82.38 5.83 69.20 55.09 49.44 76.54 70.30 33.50 97.96 89.85 2.86 8.53 4.57 61.18 51.77 8.67 36.94 77.36 43.86 -61.68 60.38 10.92 89.26 91.27 23.36 72.22 41.79 59.75 41.93 35.69 71.49 82.03 87.04 48.36 19.42 50.44 59.72 53.82 96.41 16.78 24.16 6.80 69.70 87.36 81.97 72.25 37.69 61.50 82.03 30.67 54.51 7.96 34.90 28.68 94.74 31.01 60.10 42.64 65.42 24.61 73.63 11.59 30.23 30.62 17.93 21.62 88.65 96.05 22.99 76.86 61.69 60.27 87.76 68.87 69.46 28.40 67.88 96.66 33.25 89.01 5.88 2.12 78.07 10.37 96.09 53.19 86.79 2.84 16.58 22.77 51.16 96.54 39.06 94.28 98.41 12.49 10.04 55.46 45.32 0.23 87.70 20.90 69.62 64.11 25.82 47.47 91.99 66.84 96.70 37.60 93.04 84.70 88.75 25.42 58.68 45.72 52.70 20.51 61.06 -68.21 75.80 98.07 67.97 58.48 50.64 42.64 15.07 47.45 23.29 99.39 7.65 83.99 84.97 2.98 64.57 55.92 59.32 34.69 98.69 42.11 85.31 84.25 16.01 5.02 24.91 46.14 85.88 27.62 31.65 98.70 95.38 22.79 33.79 30.34 97.18 34.53 96.42 79.38 37.58 62.54 85.31 80.45 94.22 53.89 78.65 81.98 15.00 58.28 5.98 20.38 37.63 8.85 22.89 93.28 6.58 78.61 37.83 90.39 24.64 86.54 59.17 17.02 70.25 59.72 98.41 93.73 93.34 28.12 23.17 77.61 1.57 30.45 10.87 19.33 46.30 47.96 53.36 28.36 97.08 49.81 75.35 47.06 8.93 31.75 76.67 7.11 67.08 37.42 61.66 60.88 53.77 28.26 33.97 86.28 91.52 31.09 50.92 20.02 3.04 -57.08 15.17 82.29 66.96 40.71 30.17 83.45 76.02 4.07 74.68 33.19 45.01 76.34 16.22 44.06 67.64 79.40 2.09 96.62 73.50 70.69 93.04 5.65 78.25 2.17 76.42 51.54 44.90 70.46 56.05 38.40 78.03 34.49 87.71 87.20 8.74 75.11 87.87 25.14 64.56 63.13 92.81 70.35 75.54 72.21 41.88 57.05 16.73 54.21 78.38 23.73 11.80 82.99 50.21 32.97 51.91 17.86 90.22 60.14 82.67 49.94 15.40 42.82 23.61 2.19 31.87 99.38 99.95 41.28 44.20 9.46 24.63 73.74 66.20 94.28 95.07 59.19 1.58 77.74 32.35 31.09 46.15 99.05 9.71 87.17 81.48 13.39 60.33 55.50 44.88 24.92 59.06 37.20 47.93 98.18 82.88 37.49 29.29 75.26 61.18 -38.53 85.84 76.28 71.27 87.20 56.67 36.79 96.19 64.60 2.79 68.27 20.57 55.81 0.04 68.32 73.99 76.21 73.82 36.37 91.05 99.57 78.60 9.09 45.08 17.20 16.55 24.91 90.63 36.68 29.63 94.09 46.51 31.30 90.43 11.63 64.49 23.79 70.17 16.37 87.86 2.67 54.76 32.29 47.03 82.56 21.59 93.89 17.53 52.12 18.36 54.34 53.60 59.19 41.91 80.48 36.58 33.45 51.17 44.71 0.53 61.84 51.57 97.48 51.76 38.07 53.91 87.81 93.53 51.93 72.63 47.53 42.52 8.17 9.97 74.31 58.20 63.93 51.79 36.38 60.07 1.14 49.98 96.13 9.28 76.17 28.80 88.10 69.81 96.01 62.68 39.46 9.91 80.14 20.26 85.94 27.81 60.13 54.22 93.95 3.43 -19.00 53.19 14.16 93.70 57.32 79.60 97.96 75.92 83.71 89.01 57.26 24.77 99.19 56.44 83.69 68.44 89.86 54.15 58.15 67.15 55.01 30.78 46.24 43.01 61.43 23.77 35.30 3.47 63.60 81.68 36.43 68.06 71.79 88.03 76.84 67.47 76.59 51.79 33.48 70.83 82.31 1.08 33.92 46.75 85.49 38.13 30.51 53.01 38.77 8.19 9.90 68.33 11.43 2.67 94.83 76.21 44.98 41.94 37.34 53.42 54.22 68.54 96.95 14.48 75.61 57.82 69.45 77.42 34.10 12.07 78.65 86.96 85.45 23.86 33.13 88.40 16.76 32.37 15.94 62.48 1.40 24.11 18.41 82.93 64.10 90.38 54.33 69.18 44.19 33.87 71.61 91.40 41.46 59.54 30.24 79.94 65.76 87.87 33.04 85.49 -29.06 38.80 79.19 45.59 48.05 29.14 41.43 29.73 94.34 26.72 10.78 90.03 81.16 43.35 43.55 13.26 60.19 69.19 25.98 97.58 98.26 78.60 54.78 39.98 0.21 23.52 71.94 16.06 92.98 15.78 51.66 80.79 96.85 17.12 78.24 7.18 22.87 1.69 13.98 13.97 33.73 56.77 73.68 76.73 43.15 55.66 9.63 80.43 72.94 45.22 40.25 35.00 48.63 6.04 62.23 4.28 49.83 44.02 89.03 30.69 39.99 27.93 45.04 75.60 4.47 8.78 68.34 94.31 10.18 26.77 63.13 26.82 41.09 44.20 56.83 15.11 36.76 63.29 61.98 91.91 36.37 77.64 38.08 98.26 62.17 45.68 75.75 46.65 22.45 81.45 0.81 85.11 64.81 1.22 32.90 12.65 70.26 72.39 16.10 37.43 -2.70 29.81 46.62 55.86 93.19 68.47 2.85 2.16 83.43 93.32 30.20 95.89 62.22 88.21 61.59 65.09 12.93 52.30 72.78 69.28 12.46 37.91 95.28 76.15 16.47 66.54 52.51 54.49 95.14 97.23 15.51 96.13 50.01 13.95 47.15 37.10 21.57 93.26 88.49 39.73 33.79 92.75 57.32 83.98 28.16 76.56 21.30 8.45 13.16 0.23 43.94 32.70 75.80 92.08 71.51 20.55 47.08 95.93 20.98 19.34 90.03 16.65 36.58 47.94 2.56 9.48 7.21 36.87 36.25 13.14 89.20 56.44 86.50 45.57 74.96 36.07 5.41 68.04 3.00 34.21 32.15 6.93 1.90 52.88 97.17 41.60 79.64 49.53 86.87 4.93 8.62 31.41 18.87 28.72 9.16 44.76 71.21 90.42 68.19 79.72 -72.01 88.21 4.01 71.48 31.66 47.21 46.56 34.89 42.37 58.41 49.87 22.06 56.12 49.56 5.36 24.30 60.18 31.69 73.27 2.70 4.50 96.79 87.37 69.08 70.50 76.83 74.38 61.74 92.35 54.12 9.65 80.50 63.51 63.25 90.48 19.00 59.76 68.35 84.64 10.17 58.52 74.49 4.52 89.33 84.22 75.70 42.63 66.12 47.13 23.50 59.44 25.39 51.62 47.51 92.29 13.14 8.44 8.94 65.28 65.14 91.22 80.77 16.95 12.49 48.11 38.87 19.32 29.22 94.86 67.25 71.22 94.35 1.34 55.21 26.18 43.54 85.22 7.51 61.07 48.00 59.63 21.20 55.14 79.68 1.50 20.00 99.93 96.83 63.06 68.32 8.24 18.36 94.44 30.94 5.40 92.54 29.73 12.75 12.94 63.37 -63.35 89.35 47.52 54.07 72.88 65.55 66.09 13.44 37.86 32.20 60.68 14.11 44.42 27.06 76.77 64.75 13.87 28.37 91.88 70.86 69.27 97.21 72.41 55.76 20.18 66.19 71.58 65.53 30.55 2.23 47.69 55.03 66.04 8.99 28.01 12.58 47.10 23.12 20.51 97.72 38.21 26.87 94.09 64.47 12.58 41.24 70.79 90.63 9.40 26.82 15.66 26.38 43.60 24.14 65.32 18.06 51.28 6.93 90.62 29.52 36.40 42.18 99.71 53.40 56.32 71.33 58.10 49.99 14.13 26.73 80.89 84.05 76.60 6.87 98.86 80.78 14.94 35.61 15.46 37.97 69.47 95.04 27.63 18.86 2.21 41.35 1.36 2.43 15.49 99.10 74.28 25.73 64.16 73.01 92.86 90.86 61.73 76.54 51.82 35.87 -87.04 39.14 54.83 43.81 63.87 85.76 27.73 80.60 17.94 65.90 83.98 32.96 51.80 26.27 14.11 23.25 78.81 30.54 0.89 59.21 12.46 91.67 20.20 12.83 9.82 30.28 42.31 88.54 74.20 28.19 94.34 74.63 27.95 62.50 61.04 68.60 25.02 95.03 46.27 88.02 35.19 32.08 87.60 26.79 78.26 43.97 30.76 94.49 69.41 68.54 30.45 24.86 26.77 17.33 99.70 22.38 85.15 22.30 70.54 59.47 45.15 86.78 55.23 84.96 4.48 87.66 86.31 8.26 35.85 53.24 86.52 42.75 79.65 96.55 78.49 17.55 68.06 33.25 11.67 91.01 60.35 3.79 76.71 4.56 24.50 3.85 18.91 65.25 49.61 40.04 92.88 20.89 79.69 24.06 55.27 44.66 5.08 86.41 75.65 52.87 -20.91 41.98 61.99 45.55 62.94 36.39 97.62 83.64 92.52 93.19 10.18 98.17 35.87 53.29 43.77 73.39 54.00 37.97 67.76 68.05 80.21 28.98 19.23 82.07 16.92 12.52 67.42 39.60 8.42 76.90 85.28 39.18 13.75 60.69 29.42 7.32 7.11 35.96 46.75 59.90 37.10 69.11 68.89 91.77 38.42 36.68 99.44 18.29 15.73 90.71 66.13 89.10 54.57 44.95 31.85 24.22 41.68 64.26 58.56 28.86 42.63 26.50 88.10 86.89 38.98 48.17 86.28 38.75 55.52 11.73 93.16 31.41 27.49 77.34 54.53 27.66 7.67 1.93 85.05 43.24 97.10 22.56 26.44 72.46 18.15 24.80 26.93 72.65 87.56 74.65 57.63 25.42 77.32 47.97 66.35 4.58 51.64 77.22 47.92 70.07 -78.57 68.18 89.69 78.39 93.19 73.08 44.81 95.24 22.73 0.28 88.31 39.79 52.22 1.47 87.80 55.73 0.74 28.38 23.46 73.02 52.02 82.24 1.33 37.42 2.34 70.09 54.30 81.08 70.60 65.51 30.51 91.61 20.78 1.80 90.08 43.02 44.77 50.59 83.15 12.54 28.83 54.46 66.19 53.60 31.99 88.63 6.69 66.81 49.99 42.86 4.97 87.56 77.94 29.80 74.21 38.46 87.01 69.20 90.99 37.31 79.32 36.42 50.92 38.93 18.16 87.09 46.52 21.32 42.91 1.10 13.16 21.58 92.78 14.76 48.09 17.23 74.69 90.94 86.97 89.10 53.11 66.23 40.28 56.01 45.57 65.05 96.92 0.78 1.37 31.52 35.94 7.47 48.96 28.28 13.92 33.50 73.46 69.74 84.95 69.42 -12.63 80.53 97.30 3.05 70.50 23.70 65.62 67.22 45.99 10.04 18.92 77.08 98.38 34.52 76.57 1.92 34.10 13.60 13.44 5.45 32.59 40.18 31.38 56.88 66.94 63.12 29.66 70.20 58.48 47.11 75.33 4.42 18.34 25.52 40.23 42.27 53.30 72.29 49.47 60.66 37.88 20.45 79.32 43.06 71.69 31.62 98.82 94.71 77.60 15.02 94.37 11.05 75.27 31.17 8.86 8.83 1.40 51.66 18.65 29.18 60.30 80.94 11.41 91.70 45.89 10.24 20.97 32.15 30.71 76.38 11.11 93.29 54.66 72.00 67.75 99.76 4.51 23.82 81.04 60.31 6.24 54.17 57.30 99.92 45.30 49.70 14.79 77.90 7.27 61.89 69.02 86.95 90.47 23.49 13.52 13.95 15.58 43.57 67.32 15.58 -60.38 97.60 83.46 75.93 56.01 5.94 80.24 73.69 7.63 54.77 18.67 85.79 29.28 52.33 51.04 91.51 81.99 66.55 55.35 84.50 19.05 74.38 34.94 34.30 56.62 86.44 24.44 26.56 69.84 69.36 52.37 16.72 67.90 42.90 25.08 55.70 81.20 71.99 37.84 34.90 91.30 6.38 11.92 23.56 26.42 94.51 15.26 23.90 40.66 55.88 94.57 50.94 13.34 34.18 55.09 25.54 23.32 10.28 30.27 50.49 49.49 99.09 62.27 21.72 75.03 62.13 30.59 6.96 41.72 88.02 27.38 33.58 16.41 75.02 53.81 61.42 28.43 85.51 67.16 37.51 75.18 1.21 4.86 47.32 91.78 84.70 80.78 38.08 12.27 19.55 55.64 90.11 4.99 49.25 91.14 42.13 18.37 3.23 64.31 12.87 -58.47 6.35 94.02 77.15 9.96 50.13 98.01 81.68 39.72 21.11 83.55 40.97 16.85 19.74 98.14 28.60 85.29 93.37 6.82 19.74 83.21 19.61 58.28 45.93 92.88 69.61 8.88 19.73 50.88 78.33 20.54 33.06 19.95 80.78 37.92 94.25 59.70 91.83 70.46 20.60 86.21 91.18 26.16 55.57 52.80 84.27 0.01 19.44 56.80 83.56 12.40 96.29 32.07 62.23 42.06 24.55 53.75 34.06 96.17 38.26 89.80 87.93 95.01 97.39 50.92 72.05 75.11 4.14 58.08 57.65 90.92 12.44 45.89 51.65 12.41 32.94 95.03 0.20 36.31 26.37 96.92 0.31 12.62 4.41 29.41 56.39 64.52 79.00 54.70 94.94 76.08 64.21 1.67 98.81 9.09 77.98 32.88 68.43 86.17 71.60 -64.86 73.28 37.79 27.17 12.72 91.58 80.61 33.16 10.24 80.57 54.40 95.52 99.96 42.82 50.31 19.93 46.67 10.86 26.21 61.79 32.70 6.57 11.30 99.68 75.88 10.82 15.27 2.78 63.00 50.16 17.48 17.91 41.66 49.24 54.50 84.76 17.91 75.26 63.75 8.50 42.64 30.90 1.66 42.91 7.37 11.62 75.82 37.91 7.75 27.10 26.09 63.53 37.63 60.43 3.75 4.18 51.58 37.63 55.70 47.89 54.61 96.01 19.82 45.41 99.48 82.07 11.90 13.35 51.09 0.83 5.42 87.02 69.15 15.19 70.31 76.96 99.75 5.25 44.23 66.05 23.72 99.07 25.85 62.79 79.80 43.15 51.32 63.77 15.21 64.83 79.21 41.19 16.09 87.28 20.71 1.55 95.17 3.02 32.23 98.00 -11.96 62.72 92.33 51.89 8.72 23.01 4.67 63.48 48.02 65.88 49.49 87.92 87.67 68.95 97.88 25.33 78.93 94.16 10.77 37.27 48.38 66.64 43.75 7.86 85.10 52.17 27.75 92.64 58.17 35.58 86.12 50.40 85.15 34.35 25.36 56.08 32.87 25.44 91.89 30.48 14.55 67.04 28.57 91.40 18.89 32.35 4.04 75.48 77.83 69.50 36.67 37.23 58.39 40.83 57.69 98.31 69.66 39.88 90.00 21.08 95.99 65.10 18.46 30.60 57.11 12.07 80.65 9.83 4.80 69.29 4.52 21.87 14.02 1.84 54.94 50.75 6.54 49.85 78.18 5.71 64.25 40.56 3.31 32.17 84.48 86.90 21.72 0.56 91.50 68.67 96.62 94.37 95.28 56.06 42.26 88.48 21.18 63.71 28.84 82.40 -85.89 31.30 0.17 88.56 49.46 44.44 58.61 17.27 30.72 80.49 64.08 75.02 15.01 95.33 27.64 96.94 79.07 66.48 60.58 69.54 38.48 23.69 46.17 41.09 58.50 47.33 20.38 58.39 19.72 13.80 1.93 97.49 64.36 10.66 95.98 74.79 26.14 49.15 28.50 22.03 94.10 26.99 66.51 52.78 7.37 99.78 21.88 91.47 30.98 11.63 88.29 56.73 53.43 43.78 10.82 59.78 51.71 41.53 98.44 27.50 99.12 65.83 29.84 50.73 28.55 47.29 96.95 89.05 83.33 84.74 92.70 96.39 39.18 8.29 10.71 86.92 11.39 82.94 24.62 1.16 12.03 41.46 18.31 71.11 51.49 95.32 71.51 90.40 60.64 82.73 24.47 77.84 15.97 50.81 86.79 15.51 4.05 27.10 34.91 6.86 -88.02 62.04 41.92 91.74 93.62 18.01 11.42 87.54 41.66 93.46 90.78 62.97 63.87 77.57 35.88 13.08 6.21 77.71 68.89 75.45 98.11 8.94 55.75 74.72 13.37 52.00 86.51 58.73 60.59 10.43 2.26 36.36 38.18 49.77 89.02 25.45 98.05 65.11 12.21 17.84 24.77 3.96 74.33 16.95 4.90 65.06 1.99 40.88 90.12 8.12 69.07 25.45 28.13 36.81 24.72 77.44 76.29 47.62 20.49 84.41 9.75 76.06 66.99 3.33 56.71 39.41 53.05 87.14 83.83 28.94 38.80 21.17 94.67 38.72 85.18 69.65 77.85 58.41 3.08 64.09 37.92 68.00 67.69 7.40 94.19 29.38 1.68 51.54 96.45 77.25 16.70 99.48 49.48 18.24 23.96 29.70 7.42 77.96 79.82 49.75 -69.79 74.37 88.45 78.13 12.99 18.63 59.54 6.19 20.81 64.10 57.59 30.96 84.23 83.71 57.50 79.74 72.80 1.57 80.75 99.17 88.54 97.96 54.51 23.94 6.30 39.90 20.98 1.46 2.63 65.60 99.88 72.14 9.66 91.99 23.44 68.85 23.68 62.75 63.26 99.46 46.76 59.70 31.38 44.53 20.91 16.98 11.07 54.00 32.50 58.91 7.53 98.94 62.25 28.61 49.89 9.46 74.30 43.18 57.83 83.56 28.80 56.13 66.21 26.12 46.64 18.49 96.64 44.40 47.64 77.55 17.13 57.42 93.22 21.41 33.44 25.51 17.21 77.93 84.63 77.47 69.53 72.11 58.34 72.43 75.31 3.98 8.93 35.22 91.46 42.26 40.71 62.27 11.29 49.64 89.53 57.53 80.73 9.17 25.56 8.61 -55.77 33.72 52.12 44.81 82.69 65.27 42.56 15.96 63.03 0.40 69.38 84.16 19.86 99.72 51.59 97.98 53.33 85.01 48.15 32.81 21.19 60.64 95.67 54.48 20.81 29.89 33.73 97.85 81.04 17.85 65.60 44.46 84.40 41.58 78.76 64.47 89.31 73.29 15.52 15.15 14.77 68.44 84.47 1.17 77.13 73.11 4.90 62.33 90.73 38.15 38.83 41.12 15.22 46.43 97.24 39.58 79.48 46.68 66.75 60.94 76.91 77.42 78.57 22.49 39.20 0.83 7.70 80.76 79.66 84.36 64.71 39.89 58.81 95.59 29.39 87.13 80.35 25.60 45.99 35.74 12.35 56.61 57.97 91.23 36.60 40.71 68.71 70.43 70.43 40.71 56.48 53.21 17.22 6.64 4.05 70.22 16.09 54.26 54.75 38.15 -41.18 31.48 23.62 42.60 92.17 20.95 86.72 45.29 23.37 84.81 62.17 97.43 29.84 88.88 57.55 23.66 11.23 38.89 16.03 34.37 67.50 55.84 36.65 80.27 34.76 62.06 70.86 21.42 94.68 90.35 39.75 31.05 62.35 40.38 40.82 31.17 44.31 80.14 74.31 82.16 87.76 91.37 60.72 7.04 12.14 59.00 99.80 2.79 23.40 5.56 33.98 46.81 6.40 24.55 27.95 25.65 30.37 7.25 97.14 88.36 83.88 90.32 35.12 76.96 39.06 25.82 78.47 61.77 62.14 48.68 73.41 78.26 19.10 2.41 7.81 83.81 76.58 54.73 30.23 36.76 9.39 10.93 68.89 57.47 49.15 43.42 60.08 84.21 65.34 53.45 21.49 92.53 13.43 4.54 32.68 39.60 33.94 76.41 27.06 64.13 -77.89 20.42 60.94 67.46 26.90 96.98 65.02 42.54 85.66 80.20 60.49 14.20 55.41 9.43 16.29 99.46 26.01 30.52 58.10 75.75 52.70 40.22 68.27 65.78 54.83 75.14 92.46 66.57 7.60 48.28 11.08 79.13 8.06 45.45 92.79 91.63 9.78 19.49 38.35 83.10 0.68 6.58 37.38 95.22 99.34 62.71 39.21 39.39 73.96 5.22 21.62 61.65 74.43 2.29 73.54 11.23 10.73 10.28 66.89 74.22 22.30 86.54 53.32 56.12 92.50 95.54 38.08 85.18 38.50 7.38 21.72 72.29 68.25 5.43 7.23 93.78 68.33 9.06 22.56 1.67 15.09 67.57 52.90 20.74 50.55 43.31 93.79 71.74 65.60 75.29 53.28 84.21 73.02 81.67 38.11 27.65 21.23 29.00 57.36 49.84 -71.16 51.23 45.30 30.73 72.28 91.02 88.95 37.89 10.88 93.47 30.82 87.23 33.53 7.14 98.85 36.20 47.21 88.00 82.94 58.08 84.00 77.51 44.21 34.01 34.21 69.04 75.03 60.06 10.68 55.16 30.71 46.39 96.45 80.69 23.54 74.47 40.23 17.84 89.31 15.36 10.17 48.11 58.09 93.52 76.30 41.98 80.93 60.06 22.57 45.40 81.66 6.22 68.02 61.17 91.35 1.20 76.66 64.36 47.77 71.77 41.73 27.61 56.76 61.57 10.84 75.53 26.98 96.78 85.35 62.75 31.22 69.60 88.73 36.97 94.05 50.88 92.74 74.56 14.24 94.44 86.84 3.10 91.65 43.64 68.67 35.36 15.74 10.37 80.11 35.53 96.12 14.71 12.02 24.22 23.68 88.04 92.59 76.66 44.20 45.09 -10.38 15.48 56.90 88.54 52.68 51.87 57.98 49.71 72.86 25.21 39.68 53.94 73.94 6.69 70.00 75.18 75.69 53.64 0.08 56.30 71.30 24.79 78.53 40.24 95.05 77.24 85.57 15.75 62.55 65.99 35.22 94.01 20.47 45.80 34.29 95.19 7.51 43.77 92.71 68.40 2.13 5.72 26.76 19.73 59.26 54.17 8.19 21.28 17.59 38.08 89.99 93.53 81.49 20.32 43.18 17.67 23.29 85.71 42.27 77.82 2.27 4.12 14.58 95.22 24.00 10.54 36.27 45.86 33.70 20.52 40.56 90.43 82.49 77.23 81.47 9.33 81.18 24.16 62.65 76.21 11.51 60.93 54.98 27.51 72.74 39.93 23.00 76.08 70.33 30.07 71.57 72.05 3.23 28.50 62.33 14.53 79.02 54.42 9.50 78.80 -63.61 84.33 4.39 54.92 82.37 75.03 38.25 58.24 92.71 74.11 71.32 97.33 63.24 15.54 92.35 67.72 82.72 92.58 66.12 11.41 58.73 64.62 67.79 44.50 48.11 93.90 68.00 32.80 97.66 33.24 65.74 23.87 86.65 18.66 31.31 66.06 21.42 69.52 88.47 98.95 97.74 26.55 65.75 20.97 31.17 91.37 29.78 74.25 4.79 59.21 40.39 6.63 91.54 89.66 35.45 17.96 38.48 68.99 33.00 14.38 35.90 88.40 72.19 98.86 30.77 17.09 77.75 14.03 95.91 85.27 58.68 67.30 90.49 98.62 41.16 99.42 26.30 20.16 8.59 34.35 48.74 9.94 82.08 39.67 28.35 58.21 16.61 42.83 86.72 38.86 3.66 85.06 44.13 26.97 37.65 76.21 50.18 46.75 1.19 3.92 -23.54 99.00 86.73 8.81 43.77 87.64 73.74 15.79 15.93 10.72 99.20 2.11 76.58 24.30 76.54 91.01 82.11 33.86 92.28 67.65 63.73 41.40 97.07 52.76 56.78 47.79 66.61 32.43 58.98 77.81 54.75 19.16 24.07 53.61 2.22 46.84 28.96 29.75 37.87 46.93 16.26 89.01 76.40 86.96 71.97 98.58 23.37 64.11 51.18 50.53 80.00 5.78 83.99 50.10 15.23 96.32 50.96 51.46 78.82 87.18 39.53 28.76 22.13 70.57 46.98 49.29 0.36 49.57 82.23 35.54 42.82 96.49 83.50 64.47 70.17 58.64 34.86 56.75 95.79 9.54 74.27 88.87 25.98 77.37 25.33 41.10 9.65 90.02 61.89 55.62 80.75 94.73 40.60 19.92 65.07 32.77 23.34 38.11 66.01 59.75 -84.67 7.97 71.01 91.05 7.78 93.91 60.44 93.80 74.63 98.50 29.41 10.07 23.43 77.97 45.67 33.97 72.01 16.23 97.15 74.45 66.25 82.32 67.46 47.35 34.98 1.98 85.21 35.44 84.39 76.77 31.57 87.43 85.96 44.59 23.71 8.26 82.22 26.15 3.71 47.12 51.02 46.49 63.87 39.20 56.57 38.18 58.21 40.23 71.02 12.96 6.59 1.08 88.90 19.41 33.92 19.80 86.02 90.06 31.56 64.79 43.65 76.06 60.68 12.96 80.08 50.24 17.47 98.23 72.23 77.04 24.57 14.47 30.54 71.30 95.16 23.99 2.02 99.39 90.27 96.78 67.56 85.84 84.06 7.32 6.57 57.16 25.12 48.91 13.72 44.55 64.04 54.13 78.59 96.14 58.12 21.86 1.50 9.59 78.01 46.11 -15.24 39.90 76.20 0.22 36.72 15.86 11.72 67.51 85.91 60.17 58.89 60.70 74.22 82.62 46.50 40.23 41.02 7.93 70.16 80.67 17.33 90.11 52.06 74.48 45.38 45.09 49.20 89.92 3.62 7.24 45.95 22.07 32.46 90.33 62.76 10.56 25.54 77.42 70.40 51.09 5.89 56.03 18.54 32.12 42.58 46.38 7.09 62.80 44.44 18.95 95.37 85.70 91.12 5.39 63.97 75.33 51.63 2.51 31.28 29.96 53.28 30.66 43.77 57.37 51.31 41.57 88.92 12.58 43.46 7.40 51.67 63.46 69.26 12.69 86.23 36.09 70.65 44.84 34.83 34.62 23.13 9.26 80.84 54.87 27.19 86.58 82.25 90.80 37.45 90.16 80.50 29.32 61.37 8.58 82.39 76.50 29.42 38.53 40.60 22.68 -13.84 22.22 54.13 68.79 64.54 40.56 32.28 85.90 56.08 44.70 31.26 61.45 94.94 41.34 92.59 53.27 50.87 20.25 85.62 35.42 68.23 73.44 79.11 81.89 51.31 9.39 9.35 11.32 28.42 55.78 98.45 12.67 88.81 98.91 13.45 8.39 42.73 42.18 96.48 57.81 9.40 30.22 3.48 67.85 37.08 12.98 71.11 48.51 66.71 49.93 70.81 19.46 98.66 42.10 47.44 93.55 76.27 27.45 37.72 91.88 77.58 92.50 76.37 62.74 13.54 12.34 78.64 85.60 1.55 88.39 77.93 95.64 49.44 27.16 19.03 5.88 87.70 27.50 66.58 42.06 9.14 39.90 57.05 13.36 85.73 89.56 65.57 27.23 18.43 37.96 27.62 17.32 97.25 33.36 36.43 24.34 98.50 14.91 51.77 95.92 -89.87 99.65 71.26 18.86 52.69 69.07 53.07 32.90 39.13 86.76 29.56 52.25 20.60 17.31 5.34 59.60 68.67 59.79 43.49 9.85 91.27 83.54 88.19 41.18 83.62 33.38 23.01 71.91 47.40 73.16 1.52 52.06 38.58 22.40 34.05 55.36 26.83 63.13 95.60 61.06 36.51 90.34 12.04 66.11 71.58 87.68 22.74 40.73 14.02 88.50 68.20 20.88 81.52 28.80 79.38 3.85 57.76 15.27 72.72 14.14 21.92 47.53 24.34 56.75 15.98 80.44 99.48 34.51 76.27 21.21 48.22 54.57 50.40 27.73 17.87 29.15 42.35 20.59 23.81 43.65 68.33 15.31 32.60 62.44 48.72 20.97 28.34 12.65 70.17 50.16 83.01 47.27 52.49 47.42 55.36 44.85 58.06 16.58 2.91 21.30 -46.30 93.73 50.53 63.16 60.97 52.49 20.72 92.92 50.83 88.04 26.00 60.04 21.52 51.78 78.39 68.05 69.54 34.19 64.50 81.08 64.53 14.38 14.44 31.82 53.79 54.55 40.73 64.70 89.87 70.31 73.94 22.98 52.11 69.92 49.60 7.82 31.24 93.28 21.58 75.10 72.61 68.44 13.93 78.56 12.34 83.45 12.30 43.09 31.95 33.42 44.02 31.13 42.36 37.87 82.71 68.84 86.81 50.96 9.68 63.53 37.16 78.10 41.05 59.89 61.12 83.96 80.37 28.36 50.82 15.32 55.14 67.11 79.01 80.10 82.98 56.08 98.02 2.94 64.96 25.98 95.14 15.97 71.43 68.60 58.97 37.94 13.02 69.86 72.05 5.04 98.82 39.21 27.31 51.31 33.70 50.64 25.67 68.04 39.42 65.53 -39.00 6.39 95.25 47.97 37.28 63.87 76.18 14.91 28.51 47.63 73.82 66.20 39.21 9.31 84.58 37.30 29.20 55.50 19.11 28.17 14.68 84.73 68.96 18.76 67.36 54.33 20.52 65.06 21.99 73.11 51.78 56.34 83.96 44.60 92.35 92.56 69.22 48.90 93.28 73.98 66.24 86.91 57.17 16.48 92.33 77.39 4.34 59.26 92.96 24.46 50.19 6.24 85.31 71.22 39.09 47.23 94.95 58.07 42.78 5.40 80.11 92.88 58.59 0.06 70.42 73.64 33.56 85.60 73.02 72.98 9.38 78.10 79.22 13.20 92.78 14.52 88.82 11.10 7.72 23.05 77.95 57.83 55.20 11.60 92.92 31.94 29.67 32.06 48.22 30.41 97.76 12.45 82.17 11.47 8.93 48.16 90.51 42.10 6.46 10.59 -4.70 9.91 16.11 70.48 48.67 71.50 5.41 60.37 4.49 41.80 30.29 47.68 66.06 7.61 92.83 98.80 1.71 20.24 98.40 12.69 90.29 6.83 30.67 54.10 63.29 59.89 68.03 9.61 96.51 65.51 69.93 69.03 9.35 11.86 55.74 93.78 72.03 43.48 59.60 4.54 24.17 27.50 74.82 23.88 18.00 51.82 21.22 10.89 37.25 38.91 42.44 78.46 2.24 31.98 16.74 98.34 55.59 86.18 59.09 93.95 80.04 26.49 8.77 46.16 21.45 77.15 40.13 58.29 60.65 89.37 78.70 95.30 11.82 83.03 77.26 18.33 96.66 37.01 15.22 77.76 22.41 6.76 7.47 45.05 40.84 31.96 80.27 36.34 77.57 25.87 99.52 76.16 43.96 80.34 83.24 44.18 60.19 32.19 89.52 34.73 -42.11 81.07 15.08 57.48 16.84 12.49 25.10 28.46 53.05 81.17 98.70 42.21 48.44 22.89 33.77 13.55 51.08 31.61 10.20 44.99 2.43 74.65 23.40 42.85 75.23 92.38 22.99 70.24 57.25 75.33 45.17 32.14 99.49 65.53 4.64 90.09 41.80 53.27 98.01 83.06 20.93 59.70 14.47 58.67 3.06 89.07 23.40 10.00 73.27 96.53 48.16 91.32 23.77 63.08 61.09 88.06 52.79 7.96 30.73 59.79 2.51 94.60 46.41 5.92 61.73 13.06 41.86 19.02 89.50 96.08 67.79 91.72 65.05 17.92 89.24 60.36 4.30 51.77 15.05 72.57 94.48 68.63 43.17 58.88 65.66 10.14 8.86 25.89 0.21 78.75 40.12 49.71 64.38 86.13 10.67 70.57 23.39 30.25 70.55 37.24 -58.15 1.31 73.27 45.16 15.98 40.82 47.33 10.34 96.21 64.12 11.48 44.02 22.81 38.14 70.06 47.59 13.78 10.30 75.24 15.51 91.56 83.95 33.90 34.85 10.00 80.06 97.18 78.76 82.64 20.27 39.17 55.90 36.44 14.18 13.18 9.22 35.87 93.20 60.72 75.20 58.71 39.60 52.24 60.48 62.14 98.50 41.17 52.50 14.74 36.83 89.21 12.95 42.95 98.77 21.89 63.09 8.50 50.66 67.87 73.31 38.08 86.42 44.76 99.57 7.25 75.10 31.77 95.29 77.93 97.90 46.78 11.38 67.65 91.09 26.09 9.12 8.95 28.09 46.22 19.42 25.67 88.75 77.01 50.11 46.78 50.41 25.86 41.00 72.05 27.76 90.25 0.64 4.84 18.89 51.19 71.16 43.63 96.86 3.24 37.93 -99.54 11.24 8.51 20.94 72.62 37.93 72.30 66.24 31.27 80.73 77.76 97.49 6.45 16.04 87.48 44.50 29.08 34.62 37.20 20.56 53.26 65.38 99.84 56.63 25.73 3.22 20.18 76.58 84.76 3.06 79.87 11.29 26.77 19.65 72.65 37.15 95.61 67.88 8.16 51.23 37.29 67.61 13.05 46.85 83.07 92.54 26.36 16.90 8.79 95.09 66.85 88.82 28.02 37.10 89.84 38.02 70.28 18.10 3.16 29.05 33.14 67.20 40.93 94.32 21.95 25.56 8.50 73.80 92.69 27.05 76.23 73.03 7.18 64.70 37.73 61.37 97.13 38.06 50.67 97.99 21.11 1.09 34.24 48.88 91.72 29.54 74.06 92.55 36.99 37.08 10.46 88.90 85.60 18.35 19.37 65.72 7.75 37.44 64.15 15.43 -30.90 28.31 17.36 8.99 86.04 36.67 39.64 20.27 81.70 74.78 64.12 68.62 6.18 55.51 11.48 95.29 62.03 33.87 37.99 16.90 5.88 38.15 1.75 5.02 2.40 59.59 34.63 44.12 75.66 77.42 29.86 18.32 91.66 37.08 46.39 61.38 39.75 90.33 16.21 30.40 47.39 28.71 85.83 30.82 91.34 84.46 74.07 11.20 47.60 20.21 9.31 96.71 7.42 8.08 97.71 27.92 74.76 72.96 33.74 49.19 99.19 53.54 46.70 92.73 31.77 97.66 3.70 19.50 52.73 72.33 49.42 62.86 28.68 69.16 74.22 27.99 45.17 40.71 58.43 41.53 77.95 18.33 7.06 15.58 90.22 59.65 54.55 63.03 93.06 13.71 59.21 31.93 15.37 4.26 11.71 86.25 88.77 24.85 14.87 48.97 -13.20 79.99 95.25 40.51 35.85 23.71 28.04 31.98 12.43 4.35 60.23 59.45 93.92 19.97 38.45 9.66 86.54 57.82 55.51 81.77 40.34 8.33 32.03 11.68 23.99 62.40 24.75 35.67 6.71 43.65 63.88 82.02 38.34 26.15 54.64 29.69 31.47 25.03 69.49 28.91 72.22 60.22 88.63 68.81 26.98 63.47 5.61 41.07 87.98 46.13 34.65 28.89 39.03 99.64 85.35 53.85 23.27 34.96 69.45 65.23 64.45 76.41 48.44 47.46 23.20 70.22 45.35 75.82 20.66 48.03 30.34 62.59 35.83 28.91 85.90 19.97 47.58 16.29 42.69 35.28 69.25 91.21 23.01 65.38 89.06 85.40 26.96 31.05 84.94 81.92 58.44 43.84 56.61 84.06 85.82 44.19 15.15 29.35 80.18 15.44 -92.18 58.49 52.72 74.87 22.43 78.86 8.01 39.33 57.05 45.04 37.73 63.83 15.06 69.90 47.17 99.35 11.77 41.46 27.35 44.74 71.08 16.27 43.72 44.28 9.41 71.75 10.40 24.27 87.63 45.61 91.19 32.65 32.79 43.27 17.54 75.22 68.46 35.32 67.61 90.30 91.12 69.45 72.68 69.35 56.87 67.27 14.74 53.60 77.40 10.92 29.44 49.95 18.29 44.80 26.14 72.71 31.34 77.35 84.41 73.87 75.95 34.91 2.19 76.65 98.73 75.71 63.56 14.72 12.90 8.53 6.87 77.27 22.81 86.70 97.43 53.31 23.64 32.23 70.47 49.68 31.70 40.13 52.26 18.89 81.39 20.96 24.71 18.46 71.54 42.23 39.21 69.71 98.38 29.57 72.03 55.13 94.97 17.21 11.93 54.03 -3.65 3.29 93.92 58.10 5.93 14.79 74.53 19.81 78.38 19.61 75.66 67.09 42.03 26.54 10.42 55.10 99.67 69.81 7.00 17.20 64.28 19.56 88.60 48.05 88.64 91.68 26.62 15.92 48.73 41.32 1.10 1.35 45.17 68.52 43.95 13.70 42.53 87.63 32.20 70.28 49.45 56.22 41.81 94.46 58.82 62.42 10.34 35.58 0.39 15.04 34.81 30.64 14.08 42.54 52.21 47.77 18.66 17.07 10.44 17.45 45.16 29.93 6.78 96.59 21.95 58.77 1.97 9.48 85.38 47.37 4.13 25.35 53.61 16.80 8.12 56.10 16.10 20.13 8.44 69.63 47.46 33.96 68.16 73.66 75.27 10.45 60.25 50.09 83.01 87.18 25.88 26.71 38.27 31.74 30.21 10.32 88.86 21.64 52.18 15.91 -32.23 91.79 44.33 56.27 20.63 69.60 6.24 87.93 57.03 94.92 90.10 69.29 13.97 9.53 91.80 81.44 99.62 86.88 87.51 30.39 97.28 94.52 81.91 0.36 44.67 91.65 21.62 15.33 35.29 39.47 46.47 28.69 14.28 45.14 49.60 7.21 88.70 66.20 97.96 53.96 50.73 24.57 91.36 35.25 16.91 64.46 46.90 73.11 6.06 32.19 22.87 51.73 42.84 27.13 38.89 6.87 71.86 33.43 32.37 44.72 13.39 29.31 69.03 13.08 23.52 41.10 60.98 4.95 14.84 34.41 16.64 9.52 67.58 12.61 33.74 68.94 57.21 1.85 41.60 42.12 7.72 37.31 36.26 34.52 86.26 72.38 59.59 65.72 2.85 47.67 82.74 41.07 39.52 40.72 74.47 15.43 37.50 58.43 27.88 99.52 -63.31 76.18 93.07 22.18 14.16 83.91 73.11 60.66 10.57 49.64 5.81 95.13 90.96 89.44 91.06 65.44 1.65 74.24 55.54 32.45 62.23 98.85 68.26 22.59 42.49 23.70 95.83 11.09 50.37 51.07 25.54 37.56 57.54 52.96 61.41 0.76 7.19 43.77 79.92 63.21 72.94 90.46 7.93 26.46 17.95 20.41 75.77 68.57 3.88 89.32 31.92 95.56 25.30 24.35 63.66 11.00 37.20 49.88 71.43 58.15 21.64 19.20 70.60 67.51 87.67 7.28 5.69 90.96 48.91 46.03 29.09 21.52 40.58 78.06 91.91 99.21 96.09 93.38 55.26 12.12 28.74 65.86 73.88 7.30 27.82 47.57 14.76 3.71 39.95 2.53 90.78 73.87 62.47 66.26 21.06 34.51 61.28 70.79 83.66 73.66 -80.21 5.36 67.30 23.99 41.44 61.15 42.06 20.59 27.84 75.76 27.73 82.30 69.63 44.71 21.40 10.53 29.65 32.35 91.37 71.89 62.19 20.90 72.90 79.40 57.59 5.06 62.29 20.59 89.95 73.29 19.03 50.85 16.72 23.39 65.35 83.47 2.63 61.71 61.47 95.62 98.31 18.55 15.09 14.25 63.93 5.26 81.13 96.75 0.73 97.81 42.21 58.33 21.01 52.82 65.39 9.57 60.19 56.08 97.94 19.03 8.08 40.74 38.80 81.89 24.65 29.37 29.01 33.81 91.56 61.70 97.26 62.89 31.59 39.42 98.38 8.44 34.50 61.02 26.08 56.80 50.30 82.75 84.14 1.34 12.77 65.14 22.99 77.45 43.73 23.98 13.78 15.38 26.65 18.43 36.07 40.02 27.68 46.62 75.01 10.94 -79.00 80.91 59.96 87.97 41.45 7.83 50.92 92.15 85.84 98.58 20.68 42.99 10.04 41.21 69.59 23.21 11.67 21.63 67.43 84.03 56.22 52.60 30.40 87.92 53.07 47.19 9.76 33.31 19.60 71.34 82.89 82.57 23.73 61.44 15.84 48.42 93.42 85.70 5.75 33.51 69.67 12.66 18.44 94.44 43.61 35.05 18.33 5.60 49.96 20.20 72.75 3.24 20.72 39.11 14.93 53.28 81.34 30.42 58.06 68.85 33.29 42.30 34.31 65.51 85.18 84.69 23.59 14.11 42.99 52.41 56.25 88.47 29.09 15.08 24.96 91.25 66.22 52.37 49.56 30.87 66.73 93.11 88.98 45.64 68.21 84.35 64.99 95.99 83.77 80.66 98.52 65.41 3.97 17.00 95.16 79.23 75.22 97.40 22.51 30.62 -65.75 52.89 82.19 32.60 2.70 69.65 0.45 85.91 58.27 27.03 13.51 3.83 63.81 91.06 11.98 53.00 38.75 76.85 30.28 63.98 65.05 30.21 64.94 29.27 68.88 26.13 96.26 72.53 58.31 55.25 60.33 8.84 61.40 40.66 33.36 82.51 82.54 96.11 34.54 55.48 70.17 36.27 60.57 46.15 38.04 0.39 50.21 10.98 57.30 28.61 80.59 92.92 53.07 42.88 55.58 47.20 40.63 85.15 63.52 9.90 21.81 18.71 27.04 41.25 16.33 98.74 64.40 8.67 12.69 67.10 0.67 84.19 52.46 2.23 49.59 40.67 81.35 55.38 75.12 54.24 51.75 45.38 11.75 58.47 86.45 41.98 12.73 71.60 54.95 34.25 86.55 64.78 85.70 63.13 84.15 56.04 82.63 45.55 36.60 94.24 -50.15 59.02 13.55 25.83 51.15 82.09 28.77 24.98 87.90 96.08 87.32 36.12 72.92 72.46 96.88 64.14 79.20 77.61 69.85 63.30 53.36 58.91 72.61 30.73 65.47 21.67 83.45 20.55 30.70 48.94 58.12 57.92 70.44 32.71 67.03 24.11 17.19 26.95 92.43 77.78 65.10 17.12 91.26 75.69 88.11 29.77 12.99 81.46 64.78 89.17 52.44 25.30 44.25 50.65 77.37 17.87 49.70 63.99 84.89 76.11 12.00 88.52 77.14 87.11 29.46 39.72 96.47 75.57 36.62 50.93 24.44 28.24 81.92 26.39 49.60 43.85 94.50 78.89 70.42 60.46 76.65 40.74 73.04 63.89 20.09 22.61 55.71 9.99 6.49 75.24 38.75 64.42 35.72 76.50 54.10 99.60 14.04 25.54 15.03 76.36 -60.30 52.83 46.94 63.77 11.74 72.42 99.79 55.66 18.70 68.85 25.82 85.38 92.03 12.10 14.43 72.45 94.06 87.35 89.54 72.74 60.05 66.77 90.06 89.25 3.63 25.93 11.68 32.65 41.48 36.96 27.45 66.05 29.87 12.77 89.33 68.57 14.58 1.49 84.79 14.01 44.40 76.37 4.47 13.35 43.34 20.93 73.78 4.84 11.83 78.41 29.72 16.85 99.86 6.44 84.97 43.43 16.99 1.85 51.42 95.31 33.10 98.80 98.79 40.67 84.58 61.71 41.07 48.07 6.21 54.19 43.27 79.64 53.45 5.88 56.69 29.20 10.63 61.83 65.79 3.85 24.24 95.83 26.81 59.75 43.21 54.34 21.13 49.46 15.25 61.10 32.59 59.00 53.39 84.55 64.00 36.47 88.24 58.79 89.73 37.09 -4.85 17.24 4.61 35.04 54.41 46.84 96.20 68.46 61.83 68.06 0.28 53.84 4.45 42.19 44.72 25.11 83.44 67.22 48.28 45.24 27.63 60.87 35.37 85.22 20.07 80.52 53.28 12.87 71.98 8.62 45.04 47.72 58.14 50.27 27.91 44.47 84.05 13.93 49.82 19.82 84.40 11.64 57.36 7.57 46.41 3.29 31.86 3.63 50.86 72.11 87.72 10.56 72.57 5.44 13.55 6.95 12.63 61.38 44.40 91.17 97.26 11.22 64.49 0.33 71.80 36.87 52.14 91.26 96.17 27.12 12.01 52.97 21.72 15.91 73.41 27.87 31.78 15.33 45.53 94.11 90.47 7.51 14.87 36.19 95.89 94.24 51.18 31.01 47.33 32.01 41.57 87.71 85.91 67.14 12.35 7.07 38.53 69.12 51.34 50.31 -43.50 25.11 84.29 26.53 12.58 92.16 28.24 71.85 87.55 85.36 0.80 64.16 56.84 15.63 4.35 39.06 96.36 38.73 99.44 50.30 38.59 47.24 86.38 97.92 15.06 56.19 95.23 97.87 82.47 95.76 60.70 76.46 37.93 5.94 88.84 89.29 55.04 60.30 73.32 64.61 98.86 20.32 93.26 97.30 1.46 84.75 67.87 87.39 53.63 61.98 88.50 67.66 23.13 35.15 1.22 53.08 34.37 59.36 45.71 26.86 67.39 33.46 7.92 31.70 47.67 51.48 80.52 71.58 20.48 67.71 67.93 81.56 95.85 96.46 84.63 72.45 42.17 56.96 81.02 93.67 54.41 83.96 48.03 0.66 91.30 48.06 87.12 88.94 39.01 51.30 9.41 45.03 64.31 75.83 66.15 66.99 94.42 44.35 75.90 81.15 -75.42 59.71 52.77 74.50 29.32 31.82 78.26 75.60 42.62 61.76 63.64 34.36 58.44 31.65 62.47 35.43 15.09 38.73 92.83 75.68 14.48 30.77 19.26 8.36 33.57 98.75 94.95 13.20 75.33 69.17 19.14 75.67 49.87 11.88 37.62 66.43 93.02 99.65 66.81 73.98 40.66 99.25 41.88 12.93 47.94 67.02 8.35 58.19 36.14 75.04 80.18 36.46 63.53 59.92 85.94 50.50 63.07 89.00 59.51 63.00 61.78 5.93 48.90 73.60 99.82 87.15 37.75 98.98 98.17 83.55 14.63 97.52 89.91 43.30 93.89 99.99 61.53 10.30 62.31 39.49 19.95 26.27 38.42 25.76 12.18 71.70 21.00 32.49 54.32 97.41 70.08 39.79 58.91 26.01 97.70 92.55 37.87 50.54 20.24 52.49 -6.00 86.66 35.70 77.37 92.18 50.86 42.68 56.71 65.93 56.34 36.51 24.72 53.67 44.57 74.89 43.84 78.44 12.40 86.12 41.19 86.36 23.59 19.28 18.07 1.81 74.17 48.71 10.43 98.88 84.18 33.41 5.82 4.02 37.39 49.42 79.01 27.88 11.41 60.60 94.62 79.79 20.83 24.75 42.74 41.84 75.57 89.86 56.02 56.46 54.47 61.33 33.61 95.18 61.61 45.26 21.82 97.57 32.26 0.19 37.64 15.42 90.10 63.95 67.76 88.58 36.85 97.17 70.94 91.39 34.03 89.02 5.59 24.50 34.71 86.01 94.07 93.75 0.75 78.42 48.24 85.83 78.46 82.00 97.80 86.46 16.45 46.81 26.34 96.94 49.48 39.13 7.83 0.13 14.82 25.91 90.29 54.04 29.18 31.32 27.25 -82.67 84.78 24.84 93.53 73.77 0.23 3.77 76.94 76.39 80.58 34.64 10.39 38.76 76.70 12.16 48.40 50.59 58.86 80.22 59.42 37.84 16.40 10.28 35.60 69.34 93.43 54.15 61.43 77.94 45.20 11.20 10.72 32.14 21.75 16.25 87.07 35.51 20.78 6.09 64.29 42.66 53.42 57.13 60.24 16.85 48.87 38.26 8.86 72.89 82.92 74.63 3.77 98.52 58.64 13.05 17.99 61.15 84.71 47.06 83.94 40.93 83.48 82.30 35.60 22.04 3.60 10.12 75.08 75.59 1.46 51.89 91.67 24.58 55.89 44.02 19.74 8.47 70.10 90.36 61.72 63.43 7.13 12.52 56.48 55.52 1.97 32.69 78.38 96.25 45.23 25.77 85.85 2.31 82.85 29.59 70.06 84.34 41.26 24.83 5.18 -66.40 15.60 14.52 11.98 51.90 34.50 56.69 41.01 16.27 27.87 44.17 20.94 23.43 21.80 77.14 5.40 28.46 72.49 57.93 36.80 17.75 54.95 94.23 58.54 89.84 14.24 3.38 80.61 41.17 38.78 32.53 98.26 92.27 30.62 41.84 63.16 72.04 92.20 28.74 65.81 15.69 8.05 92.97 25.94 30.59 7.80 59.54 46.63 10.31 93.12 33.10 36.51 44.54 51.72 68.57 77.38 87.68 68.27 99.01 16.30 76.13 98.01 36.32 71.57 36.46 95.02 79.57 75.20 20.24 30.97 38.08 15.77 98.88 72.11 34.09 63.71 87.56 71.56 28.47 22.37 74.39 42.92 1.62 46.19 17.32 23.97 4.78 89.38 19.99 20.28 94.02 99.36 88.68 28.15 79.41 0.69 89.64 74.00 47.37 62.44 -80.94 42.75 33.83 32.74 55.54 83.73 78.87 63.01 64.57 71.33 25.37 60.56 34.19 30.38 12.24 51.95 67.01 37.47 31.09 74.12 60.07 7.01 38.69 9.13 72.91 61.92 59.00 6.92 35.48 85.85 41.43 83.94 79.54 85.55 4.16 81.79 91.41 85.23 25.22 68.36 0.85 5.79 99.65 76.83 76.77 32.43 48.82 29.03 17.12 31.27 39.56 44.96 37.54 54.55 17.82 28.56 34.39 80.19 98.93 32.18 55.57 1.51 60.24 63.76 76.31 44.10 46.08 0.23 36.76 3.18 20.23 18.29 69.91 56.08 38.60 36.23 63.64 75.76 23.54 14.78 1.06 47.08 20.10 99.25 31.05 98.83 61.17 74.65 37.58 8.38 39.54 15.81 43.92 34.08 70.49 62.93 8.76 60.15 61.88 5.82 -66.33 6.05 63.02 6.10 20.88 99.50 29.81 9.12 4.05 23.66 23.59 79.86 34.18 33.15 18.45 94.60 2.68 90.38 81.38 41.07 0.83 61.34 50.13 25.28 0.36 68.01 83.20 54.31 36.34 40.99 77.49 64.71 29.34 45.92 81.29 35.65 29.62 7.40 46.49 98.55 86.03 28.04 27.06 44.71 53.15 63.73 0.04 67.22 48.45 11.18 33.41 11.46 72.69 48.17 36.66 69.59 29.08 48.36 56.70 99.06 91.51 28.11 94.62 71.97 92.90 93.41 26.81 51.90 33.10 18.57 86.91 12.41 26.41 53.40 4.84 42.86 81.16 84.12 98.47 97.95 81.24 33.45 55.24 37.81 99.77 3.95 44.34 67.19 91.18 15.80 20.18 97.57 29.68 94.62 24.94 65.98 2.94 14.69 4.25 2.45 -48.62 67.51 72.40 41.30 94.80 42.91 3.82 15.47 59.99 27.94 97.78 16.75 53.66 44.46 51.77 29.51 12.09 43.30 30.23 60.96 5.87 37.83 0.73 73.70 90.82 97.09 67.34 73.66 84.57 15.83 71.34 53.21 19.75 78.61 24.96 51.44 19.52 56.49 89.78 33.91 46.11 35.32 57.26 97.16 77.09 75.72 67.67 8.69 82.08 56.03 35.22 1.31 72.20 50.47 8.04 72.28 25.22 33.81 37.36 37.53 29.00 39.57 51.68 67.92 42.11 70.74 38.50 8.29 79.94 11.74 48.04 47.93 86.41 9.95 52.12 97.91 31.18 71.73 7.40 46.78 70.96 92.21 42.74 53.37 46.77 44.83 82.74 73.97 75.04 78.83 16.94 75.89 27.10 52.30 49.65 71.22 77.75 51.21 89.20 16.13 -74.64 40.67 37.76 73.51 28.84 53.35 59.44 75.67 53.94 16.55 88.67 49.39 6.95 43.17 67.44 25.93 12.69 88.29 77.05 34.97 58.10 70.70 93.37 99.30 18.20 79.90 67.04 34.04 14.41 55.55 94.70 90.16 8.22 11.23 20.42 66.98 4.71 81.84 80.27 26.22 2.57 80.71 31.01 2.91 38.48 79.10 55.95 4.34 0.94 8.86 66.18 53.42 40.76 58.48 36.49 42.63 95.33 57.80 8.41 18.05 49.30 2.29 58.76 98.12 75.50 33.39 94.74 48.00 87.70 7.22 21.13 39.73 39.22 73.44 33.91 73.57 27.81 21.37 91.42 4.50 18.08 30.76 47.72 21.57 71.92 2.28 50.44 66.00 8.63 37.52 24.85 39.35 47.71 8.07 53.96 84.65 14.64 29.73 39.70 41.92 -72.10 1.64 42.92 82.13 48.65 35.40 33.35 64.61 33.15 46.26 3.61 2.80 43.02 72.00 45.07 45.15 9.36 12.25 35.54 59.60 42.98 76.47 6.01 49.50 44.37 84.19 9.21 13.31 68.35 5.94 87.11 8.50 65.05 23.93 21.93 49.19 31.18 34.18 32.38 46.69 23.58 30.01 97.47 45.65 4.65 17.59 21.39 17.81 39.70 92.91 10.40 86.90 34.84 6.69 95.47 77.36 92.96 52.11 82.81 48.26 97.77 83.04 75.42 88.25 58.84 2.00 54.88 84.98 77.07 0.64 81.18 70.17 10.46 18.93 80.28 65.96 19.48 12.91 80.56 75.60 5.04 52.74 99.63 59.65 12.48 70.50 76.99 57.86 34.45 88.49 8.78 12.12 27.53 49.55 99.89 33.21 78.41 27.73 61.78 35.05 -55.28 14.04 9.31 24.24 82.93 52.41 82.09 34.46 11.56 18.84 41.17 27.51 92.88 19.08 81.71 62.92 19.17 29.08 9.54 24.66 42.64 21.87 50.83 59.35 44.69 97.44 64.93 57.98 46.97 66.35 52.56 42.88 65.82 60.98 13.30 14.11 78.72 14.16 25.79 83.90 43.40 90.84 36.99 38.73 23.33 55.06 48.83 31.37 85.41 14.78 0.80 75.57 39.86 88.07 61.69 75.57 77.80 29.40 85.36 81.72 2.45 34.86 69.95 2.16 97.64 89.73 36.56 15.17 31.90 58.79 12.01 30.65 94.67 46.29 50.00 21.22 11.94 94.78 93.32 97.76 34.45 43.05 60.43 4.57 44.69 76.67 96.37 11.70 1.67 1.49 30.94 96.80 62.31 35.52 76.47 6.79 89.62 34.63 16.43 12.37 -0.75 31.94 12.41 22.95 13.73 17.59 83.61 66.79 66.47 40.73 46.50 98.30 40.76 39.18 82.15 96.54 91.59 33.09 93.03 22.20 75.51 55.99 82.88 85.84 36.92 61.08 17.81 56.15 79.60 14.24 6.19 18.96 70.65 90.74 97.53 85.03 74.50 12.70 19.64 16.78 16.12 23.50 62.20 36.63 93.54 91.75 53.15 26.49 95.09 74.91 67.09 67.41 88.43 13.58 32.01 48.17 40.90 35.06 75.88 42.05 62.53 88.21 21.65 30.66 31.66 74.23 16.97 19.31 91.64 27.65 46.85 33.70 23.80 89.42 2.05 50.08 43.05 95.66 46.74 0.40 46.81 58.35 21.31 89.85 22.93 7.68 31.71 83.77 32.20 49.95 80.40 41.85 78.19 17.76 54.28 95.05 44.45 93.97 94.35 92.36 -70.75 30.61 10.99 35.11 25.17 70.98 66.82 38.66 85.50 8.73 13.87 5.08 49.51 62.13 77.30 75.04 18.30 29.48 92.04 24.14 33.02 33.45 20.77 39.83 57.85 3.85 73.86 90.19 3.09 53.58 13.08 80.11 10.62 83.67 24.36 64.22 77.43 71.01 54.79 51.45 99.20 6.85 84.20 53.33 94.19 5.83 31.70 19.76 99.16 10.95 65.41 38.29 5.47 87.92 82.26 83.31 62.35 65.92 18.99 86.76 66.78 17.84 27.05 48.73 42.43 66.30 72.04 2.27 20.48 70.45 18.17 68.72 75.75 35.32 59.96 0.89 78.61 21.97 29.62 57.30 81.99 84.39 79.53 42.60 1.02 92.90 35.06 10.95 9.79 0.14 37.14 67.41 60.69 80.55 43.84 93.97 69.17 76.14 29.54 14.97 -87.25 68.58 60.58 71.84 39.96 81.47 80.56 30.52 81.04 26.06 47.62 73.06 33.74 42.07 36.68 92.53 91.26 14.44 37.66 60.31 70.96 99.93 84.92 58.59 62.85 98.65 78.84 15.84 24.93 38.42 96.68 39.37 56.58 95.45 91.47 40.08 26.00 66.59 97.63 61.21 97.87 53.77 28.09 96.96 59.56 19.27 94.13 11.17 80.83 89.05 76.33 97.43 90.53 74.52 1.53 6.37 36.05 38.21 71.15 6.99 5.57 32.36 54.46 73.60 62.28 71.60 54.16 16.85 67.26 93.41 28.34 35.09 34.39 69.88 94.21 2.39 33.62 9.86 82.58 35.88 41.79 45.79 21.04 14.66 50.04 67.23 7.35 32.23 72.10 24.58 71.54 19.39 91.12 58.52 32.21 32.98 66.73 65.12 74.92 11.15 -48.83 42.15 52.54 27.08 64.34 46.24 17.85 51.08 7.52 22.02 45.84 59.24 72.30 32.51 35.46 44.84 57.49 50.52 71.10 12.69 45.63 58.25 98.91 75.77 65.49 29.85 61.57 97.48 46.80 86.09 74.28 0.96 6.84 95.76 66.63 90.89 45.57 11.41 82.27 73.76 76.99 47.29 8.43 36.11 85.07 90.55 85.44 5.14 51.47 27.93 56.63 56.94 71.30 2.15 99.68 41.25 90.73 49.44 48.79 37.33 12.42 39.91 73.38 59.37 72.78 78.33 66.13 72.67 85.55 74.61 31.11 20.43 8.09 57.91 62.64 72.61 42.58 42.83 24.09 36.12 29.79 11.63 86.60 4.39 93.81 87.87 98.35 71.75 30.78 11.00 43.77 83.97 27.45 93.10 11.49 50.72 25.00 3.15 87.90 9.24 -8.80 97.58 75.21 99.95 7.05 29.31 63.75 62.89 57.66 14.90 62.33 21.37 38.62 54.75 97.34 6.32 84.82 41.64 1.48 76.20 21.01 82.03 91.90 62.75 94.29 49.46 58.73 58.44 13.71 4.13 40.33 91.35 49.30 23.48 43.41 88.75 81.56 81.94 60.54 48.44 2.66 64.64 78.59 47.93 76.70 86.37 59.81 36.28 57.33 71.77 41.24 76.21 71.57 49.21 87.31 57.97 87.72 91.61 74.32 88.65 42.26 19.53 3.35 36.49 70.12 87.15 73.40 74.43 49.80 98.56 74.28 0.96 56.57 21.83 17.21 72.96 66.95 8.59 43.37 28.90 56.47 46.31 25.33 59.24 86.64 18.11 44.42 79.94 21.24 7.60 13.27 86.52 11.17 12.53 80.79 58.59 54.83 64.79 18.27 9.60 -1.44 89.43 57.17 83.38 96.01 9.67 11.42 79.93 11.46 63.37 37.09 81.18 26.79 84.28 64.90 35.44 5.65 93.66 45.71 37.26 69.56 37.18 62.06 62.09 4.58 79.70 97.84 53.19 31.11 99.20 30.68 76.35 82.73 32.08 99.50 94.27 25.78 57.70 23.69 4.45 99.04 28.14 34.74 41.76 16.40 61.55 38.56 12.98 56.71 47.23 85.94 98.46 69.45 18.47 15.53 24.67 98.10 18.81 53.98 9.00 40.47 95.08 41.46 98.50 61.88 77.22 81.01 29.09 19.55 90.80 33.96 14.64 41.98 15.16 94.03 3.48 95.03 80.68 94.29 80.03 53.87 95.88 33.45 4.57 28.98 34.51 99.18 48.58 91.65 31.13 55.11 62.10 58.23 26.22 87.77 84.08 74.97 9.82 48.68 73.26 -54.96 47.64 55.64 75.24 10.04 72.77 52.02 37.50 47.96 43.20 23.14 27.21 55.98 90.98 93.28 77.05 5.57 39.45 14.10 70.75 39.38 80.84 59.78 34.34 13.53 47.54 73.56 7.52 3.98 80.90 30.07 13.41 37.49 88.59 10.06 98.67 33.77 66.24 86.52 10.89 35.99 6.82 74.67 78.72 11.23 42.62 26.51 3.93 57.64 48.32 17.12 10.45 6.57 73.25 3.80 84.20 89.35 65.24 59.00 8.98 23.94 9.84 94.25 87.33 97.09 82.00 4.26 35.77 51.47 19.15 58.71 1.92 66.86 10.71 75.11 11.15 54.48 32.08 94.63 25.25 65.01 80.15 69.37 44.52 67.80 16.35 96.02 73.29 94.74 23.00 5.66 80.14 31.81 48.87 41.71 64.83 26.29 86.40 23.26 72.09 -69.50 7.95 90.53 24.98 9.82 0.50 41.38 93.76 13.34 35.79 86.22 85.40 82.99 3.02 97.05 33.96 96.73 55.68 13.31 70.89 68.70 4.21 73.13 3.18 32.31 37.59 10.30 29.40 88.67 20.72 38.28 91.54 18.82 63.08 74.74 71.18 58.82 68.40 77.09 61.51 76.27 88.61 19.78 69.44 31.78 14.35 16.50 78.34 74.24 76.00 29.37 44.40 13.91 39.64 86.09 98.11 5.42 90.50 58.26 72.98 60.67 56.50 4.60 47.02 9.08 7.37 15.57 34.50 33.77 68.67 72.34 17.30 87.15 12.90 53.35 86.94 47.70 49.86 26.07 38.55 81.50 34.38 75.27 18.81 29.46 48.96 66.08 69.58 82.55 64.42 78.08 36.67 20.96 73.22 21.53 64.02 7.77 39.17 41.47 73.76 -82.37 70.39 28.83 95.37 39.83 11.30 71.83 81.52 73.19 24.88 75.82 84.41 18.95 88.28 91.07 40.41 22.44 51.27 1.94 80.89 79.50 57.27 91.30 50.57 83.60 63.65 96.26 55.24 40.06 43.96 8.03 9.95 11.93 59.08 65.98 86.84 81.96 40.96 26.11 49.49 76.32 8.16 65.28 79.13 95.89 37.77 18.07 18.89 7.60 39.10 23.07 92.23 39.01 12.25 8.86 50.32 32.84 68.70 90.38 73.63 73.30 25.57 55.36 9.33 27.70 13.00 98.55 94.86 58.30 41.16 25.42 55.94 53.47 59.53 3.18 10.07 25.13 51.12 43.25 5.68 64.32 90.73 56.35 39.21 87.76 78.40 26.81 53.53 62.82 51.48 28.22 40.94 18.04 8.96 96.23 96.06 81.38 13.89 70.62 98.40 -34.78 6.04 52.86 76.99 72.14 51.45 79.16 94.84 92.67 37.54 88.38 87.47 29.55 24.35 35.15 20.88 47.42 48.38 1.22 70.00 7.21 36.80 64.55 67.31 30.30 46.48 97.52 29.71 22.69 77.75 76.42 78.63 83.97 76.32 20.96 30.35 20.26 41.59 79.82 60.07 6.16 96.29 99.60 7.89 4.16 43.73 1.51 33.47 34.84 93.39 35.69 23.04 12.84 30.28 8.93 11.72 22.61 2.18 32.23 29.67 78.01 34.20 93.24 13.17 65.82 80.57 62.70 47.34 95.95 40.08 3.16 22.63 51.84 55.70 17.65 53.32 6.62 10.48 88.41 10.29 8.79 30.61 36.94 26.72 84.13 17.68 88.00 65.13 36.66 89.62 86.48 84.88 56.95 70.98 10.45 18.47 75.53 0.71 60.11 45.70 -80.68 90.64 11.07 33.85 77.57 37.67 76.92 80.67 86.16 28.35 46.19 62.46 0.88 25.31 21.68 91.22 48.46 53.72 57.48 49.58 15.23 3.56 89.03 92.62 43.56 29.46 92.73 36.88 34.72 14.18 8.98 88.31 72.43 88.42 16.99 70.40 73.72 77.69 22.45 25.11 31.23 16.13 51.88 10.50 92.73 33.99 80.88 84.75 54.62 40.66 96.52 13.65 32.23 68.13 16.00 47.48 11.68 17.70 7.81 77.24 51.94 17.06 89.22 25.24 43.09 32.75 73.25 12.75 5.02 66.08 86.99 46.56 1.57 33.07 1.79 68.36 34.05 84.21 8.90 36.06 18.94 77.47 68.07 87.24 77.15 27.07 49.31 29.78 12.73 73.35 84.74 93.18 53.28 31.90 66.71 68.59 55.52 35.11 46.29 52.50 -14.39 65.59 11.68 65.36 39.63 72.50 32.61 70.72 97.45 38.95 15.57 93.97 52.06 85.46 20.36 3.73 71.09 45.72 57.79 59.08 85.62 73.48 26.93 80.28 65.44 13.49 96.07 10.64 20.22 88.13 43.98 25.24 34.05 28.68 40.95 76.47 25.38 11.90 7.56 59.84 9.97 98.05 0.72 19.35 38.34 86.83 97.17 96.18 7.91 62.15 58.20 52.45 13.74 30.34 81.78 37.11 48.07 12.28 68.74 16.95 44.58 80.44 99.91 29.97 0.56 52.31 60.83 4.00 68.21 10.35 54.53 1.51 95.59 46.00 94.30 57.83 53.10 77.87 81.30 53.30 34.34 19.58 17.36 39.61 33.16 35.58 0.04 62.92 19.88 16.94 72.92 37.57 69.11 98.18 88.86 7.70 27.69 76.05 50.87 94.79 -41.29 45.13 85.54 21.22 40.09 1.86 54.42 69.11 33.95 60.58 45.35 37.19 87.78 32.35 6.06 98.17 12.95 34.35 89.35 18.72 66.08 14.22 60.38 91.31 17.76 11.50 86.59 8.87 0.20 85.10 86.28 28.35 56.42 87.33 83.10 1.18 91.50 0.89 44.08 80.75 81.22 47.22 4.05 91.74 63.60 62.76 69.08 31.21 57.85 21.02 55.85 34.35 26.70 87.32 29.88 65.79 20.39 82.21 71.70 58.84 72.73 26.62 78.29 18.69 58.02 53.29 38.35 69.15 70.72 87.77 38.61 22.42 49.53 92.18 40.31 14.36 93.78 10.31 84.17 55.99 97.74 93.86 5.77 68.77 11.65 46.10 23.56 48.67 87.60 34.52 3.43 59.92 41.88 43.23 46.59 75.08 0.66 41.06 74.22 3.15 -5.65 59.52 89.08 9.97 27.66 23.35 22.37 2.17 48.48 78.64 54.20 21.28 25.27 29.18 25.12 68.29 0.83 65.30 78.31 21.07 24.40 41.82 96.62 51.03 90.48 87.51 83.87 54.12 77.49 18.29 6.15 70.52 77.60 89.00 43.45 7.68 47.58 86.57 68.48 69.53 50.92 22.97 10.68 98.85 75.75 82.08 65.52 76.53 67.68 68.96 91.70 95.79 18.61 25.30 26.69 23.15 51.38 88.67 61.46 98.04 97.50 74.51 7.78 34.21 32.21 86.62 0.25 80.82 72.54 54.86 95.58 62.87 19.72 62.36 9.19 25.14 27.64 51.95 91.67 99.34 49.88 55.72 61.33 47.69 87.59 46.70 28.60 20.18 7.60 55.01 36.85 3.46 76.51 77.48 86.11 59.88 6.15 99.79 37.46 62.34 -8.41 8.46 51.07 52.42 8.68 23.75 89.11 49.05 1.66 24.44 18.12 34.61 5.30 56.82 89.26 60.13 99.71 35.93 53.44 4.58 4.55 95.73 50.90 32.04 35.63 92.48 96.94 9.17 52.56 84.17 71.33 87.56 61.94 65.95 54.91 53.52 48.88 99.90 91.76 27.50 74.80 36.53 42.81 65.71 41.97 23.71 60.51 41.33 26.73 49.78 0.04 81.91 35.23 26.55 55.09 78.54 17.92 85.38 32.47 36.70 29.53 40.02 66.95 35.45 63.49 7.78 39.57 22.79 75.74 74.33 11.68 23.73 32.99 79.49 23.37 65.16 24.91 50.21 97.38 70.54 33.99 97.32 24.45 52.22 71.72 5.35 79.41 40.80 24.96 88.48 60.26 5.61 74.75 97.49 25.98 3.83 30.68 38.07 65.57 17.45 -62.85 6.44 36.46 69.30 46.70 7.70 83.00 58.24 8.02 56.30 69.58 23.44 49.16 49.43 79.31 33.27 72.11 84.46 41.64 0.79 52.71 3.28 78.65 44.04 10.04 89.59 81.52 32.45 52.98 35.44 76.77 59.46 29.58 87.94 81.85 38.05 1.30 84.18 27.78 3.60 75.90 22.88 19.11 35.59 98.23 79.65 48.95 32.97 36.05 67.31 24.55 30.42 78.49 42.29 27.68 32.68 90.80 62.37 63.55 91.16 3.00 21.69 37.60 43.89 23.69 30.89 84.37 35.42 63.66 99.36 89.72 89.47 13.82 69.19 84.77 89.67 7.08 17.63 65.18 27.35 67.12 63.96 6.59 22.41 36.96 47.68 36.78 37.69 16.88 35.81 54.62 78.90 66.96 46.21 44.14 80.20 58.55 95.51 38.62 7.36 -93.18 62.08 94.97 52.73 58.14 41.17 9.60 96.46 40.90 16.15 92.10 80.28 81.53 68.50 56.09 8.38 44.51 37.85 34.84 23.69 72.33 62.41 37.13 29.23 84.26 6.76 1.62 48.44 21.58 55.04 90.31 44.61 12.02 41.30 31.55 32.44 61.27 30.47 8.69 48.57 85.22 16.28 92.43 92.57 23.52 39.22 60.27 53.89 74.84 50.66 52.84 50.85 98.67 23.31 66.39 64.69 21.74 32.43 7.95 31.49 87.30 68.46 16.86 49.03 99.91 6.48 10.19 86.20 72.08 29.97 92.71 81.51 56.68 21.31 92.57 57.07 41.83 64.57 8.28 2.92 23.46 30.67 24.45 45.80 41.38 89.21 94.26 91.76 40.56 27.02 50.84 85.87 37.07 32.88 94.67 43.50 5.09 5.57 0.12 66.18 -31.14 42.75 92.12 76.04 38.74 53.70 25.23 17.70 78.87 93.29 25.07 8.22 7.80 56.21 86.25 49.58 50.01 5.69 29.02 92.27 37.76 84.83 92.86 35.23 95.38 79.55 30.11 1.06 31.10 81.95 30.08 12.31 34.85 87.90 26.53 20.48 23.15 14.29 62.13 77.04 77.99 9.58 85.53 48.42 71.12 12.71 30.52 59.49 20.62 91.62 49.17 78.24 91.78 37.26 14.18 2.06 46.59 52.91 85.19 50.75 75.73 97.44 62.94 53.49 21.25 34.66 82.55 85.19 42.43 71.82 63.66 37.01 43.56 10.78 25.79 23.33 92.14 69.20 20.20 60.21 68.79 66.58 23.01 66.57 26.02 56.92 17.80 1.24 61.70 7.25 95.80 57.49 37.05 62.98 49.02 30.17 80.39 61.64 44.69 96.51 -80.77 82.06 22.00 15.95 43.76 8.55 4.69 92.66 81.12 17.26 29.55 24.68 4.54 96.78 63.58 28.48 81.70 7.45 8.74 52.33 35.39 22.44 39.26 93.57 32.03 83.96 81.94 91.06 78.98 74.48 53.40 58.79 25.95 36.65 8.12 19.61 68.51 67.34 83.11 10.14 76.48 85.27 92.23 45.02 81.39 13.32 9.25 10.14 57.21 81.15 57.84 70.30 27.56 22.79 16.24 70.60 98.20 78.96 57.76 43.76 42.42 63.02 33.46 86.56 97.19 42.16 6.98 55.41 80.16 2.54 99.31 3.40 4.20 12.32 17.61 15.53 84.83 31.23 9.74 78.54 31.92 66.62 41.96 10.70 66.49 6.78 15.28 63.14 19.03 24.36 72.41 36.80 23.78 38.89 36.32 78.51 86.24 82.94 31.11 79.38 -43.90 57.13 75.53 20.55 58.14 30.65 11.07 68.19 73.71 91.71 9.36 67.02 10.27 59.60 49.19 40.14 84.21 58.38 57.84 97.66 67.64 66.54 40.99 44.75 25.57 16.37 42.84 62.52 75.92 76.55 81.70 80.57 40.44 64.83 95.21 32.41 27.58 65.90 27.93 11.48 68.02 80.79 30.46 68.72 51.02 14.18 87.91 65.27 1.81 12.20 20.85 48.91 55.07 23.23 60.49 55.60 53.07 15.76 33.29 97.66 54.04 7.52 8.87 58.05 15.96 45.29 41.64 48.05 77.03 26.70 70.61 28.31 57.80 5.63 75.79 78.87 74.27 74.72 99.85 14.71 41.93 12.64 0.78 90.78 66.25 6.90 1.23 46.65 18.09 45.07 84.63 83.73 86.82 85.73 4.88 29.21 93.42 89.58 18.65 66.42 -56.81 49.57 84.98 44.75 28.70 37.21 32.44 8.12 15.84 2.47 76.05 88.48 0.58 16.85 68.53 33.45 38.09 85.55 0.45 25.89 67.87 5.44 86.90 86.59 83.81 57.29 8.60 51.20 6.36 51.90 74.57 68.15 26.10 94.49 71.79 83.28 38.90 69.60 88.91 16.22 32.49 79.28 60.77 21.97 33.96 97.01 9.43 8.40 40.89 37.81 58.69 30.55 76.20 15.62 88.71 40.55 32.54 99.12 87.41 58.41 95.81 14.53 90.23 1.51 56.17 59.12 9.07 96.66 3.60 49.06 8.38 4.71 90.90 4.81 35.67 62.13 93.59 20.58 88.96 62.60 96.73 9.65 6.93 29.99 74.17 6.69 63.09 93.14 86.69 39.29 7.71 22.66 75.17 15.42 58.44 8.21 3.43 73.11 58.09 95.57 -26.25 59.30 15.12 12.88 81.96 75.99 16.27 55.46 93.60 40.26 0.73 98.46 47.63 68.60 14.81 62.76 18.66 29.97 82.82 12.71 37.24 18.02 30.39 88.14 42.64 56.97 90.63 44.76 46.25 45.45 8.29 46.51 47.10 25.72 57.27 30.73 28.94 75.71 10.05 8.08 83.61 43.92 71.05 10.27 97.68 26.34 79.74 99.76 48.64 95.75 17.70 78.43 35.81 74.62 49.15 41.76 19.53 66.97 2.30 54.18 48.95 17.25 10.57 15.42 4.86 71.65 49.97 8.23 17.26 96.03 37.16 50.81 28.91 97.03 32.96 62.61 80.24 16.53 93.06 51.20 52.27 95.21 36.25 15.07 44.46 21.05 61.79 45.40 49.03 44.32 33.24 97.28 37.70 68.28 98.69 69.58 44.15 63.68 60.18 54.55 -73.68 9.74 67.19 54.19 38.44 37.25 42.39 58.94 19.89 48.35 14.07 26.11 36.08 15.95 2.69 41.91 15.84 12.45 86.29 41.10 85.71 77.80 91.95 81.70 53.57 95.80 24.52 7.97 79.62 9.30 18.55 42.44 29.18 23.16 3.17 96.61 60.54 10.44 19.81 38.89 47.99 95.87 26.90 66.55 83.93 26.88 43.15 2.56 78.23 35.49 66.83 14.56 76.48 81.03 49.11 57.00 72.74 86.48 86.27 47.58 81.36 36.66 47.45 92.11 10.41 88.06 62.10 7.95 66.27 94.66 92.32 21.07 11.37 13.31 23.27 12.43 20.16 40.54 14.72 28.45 37.42 52.52 51.49 75.01 80.18 75.10 57.66 75.03 41.18 62.13 56.29 97.64 92.53 97.02 85.80 16.89 74.14 60.45 12.78 10.81 -76.01 11.42 83.47 90.26 12.48 5.01 75.09 93.18 77.44 54.00 77.40 65.55 93.00 69.36 0.76 17.29 40.57 98.91 38.48 23.19 56.78 76.30 62.73 93.13 50.36 73.38 2.06 88.59 52.59 18.62 15.11 5.15 94.28 86.53 5.40 90.88 44.82 31.90 1.62 2.01 69.84 79.43 84.91 9.55 7.58 93.46 93.49 41.04 84.53 23.35 65.54 38.80 40.51 51.93 67.11 40.66 14.91 31.44 37.94 51.86 68.15 28.91 95.49 22.15 89.29 64.91 86.64 84.07 18.56 89.07 25.93 15.76 89.34 49.90 49.86 67.66 66.73 55.12 73.36 26.43 70.44 60.67 85.51 0.99 19.62 37.78 61.07 56.18 46.71 89.30 64.29 97.79 46.99 27.78 54.27 56.08 33.28 80.23 58.51 96.25 -16.69 92.14 34.60 90.59 52.62 66.97 87.62 77.95 72.95 82.52 9.53 45.00 58.80 23.20 79.91 69.76 61.94 84.96 91.71 28.90 23.50 42.75 53.77 8.51 28.44 83.95 70.80 49.76 92.46 73.24 95.64 27.76 43.22 30.97 68.93 19.79 28.74 44.72 72.34 36.61 37.20 96.44 54.99 66.12 71.18 31.10 4.70 5.38 2.05 27.62 74.63 11.13 25.35 17.54 40.25 72.11 82.12 59.10 98.77 24.04 85.59 55.45 54.61 6.64 32.19 11.71 75.97 12.60 95.30 2.73 42.54 3.38 86.55 98.34 57.56 86.25 33.30 85.08 67.79 53.27 97.97 96.39 91.77 87.74 63.14 62.04 38.31 43.07 46.90 65.24 21.71 2.04 96.75 86.04 80.44 96.81 85.23 57.90 79.97 78.17 -72.66 50.07 12.90 41.43 90.74 53.61 69.36 69.49 7.27 42.82 80.03 83.27 14.00 9.18 64.25 4.78 5.95 61.00 19.78 74.17 81.52 11.88 92.62 76.57 53.65 64.04 59.10 89.05 85.43 9.68 98.73 92.14 8.15 48.06 25.41 50.28 75.21 82.21 81.66 42.13 24.94 41.38 45.47 98.71 35.46 74.27 64.14 49.82 95.80 17.71 83.45 19.29 11.17 14.85 57.58 13.11 20.81 19.52 19.31 42.87 13.78 91.83 22.32 48.96 32.10 50.88 65.98 18.63 73.05 20.46 50.33 40.48 71.89 37.60 23.23 55.59 63.20 86.16 56.07 98.21 39.91 51.34 11.06 61.17 8.29 23.77 48.65 80.29 80.79 4.14 90.60 5.39 15.55 83.75 68.03 98.06 25.25 29.79 31.99 98.34 -99.39 32.25 18.37 74.22 46.71 55.88 30.67 32.40 90.48 60.31 3.07 28.75 48.23 29.48 17.94 16.80 39.74 39.94 98.91 32.08 97.72 96.35 16.63 7.85 71.24 21.69 2.78 56.04 9.25 41.94 4.34 33.96 81.69 85.89 80.77 48.06 50.90 19.29 45.64 0.27 25.04 15.17 73.10 34.88 26.87 11.83 10.40 41.71 11.65 84.83 82.97 55.95 24.30 9.67 0.60 95.34 2.11 40.50 54.58 86.03 98.29 29.14 98.30 11.91 76.41 59.13 3.43 25.49 29.51 68.83 26.40 39.46 61.68 38.17 34.38 45.32 97.02 39.17 79.10 39.76 52.93 41.93 94.35 38.38 11.50 39.09 7.22 96.02 56.51 44.18 85.76 53.60 3.97 24.05 47.79 95.32 55.47 21.28 91.36 91.28 -37.47 74.50 17.67 12.90 5.68 30.04 4.93 41.97 81.50 61.95 62.15 92.38 14.50 80.09 36.42 95.10 69.14 60.55 37.67 79.05 99.02 46.58 12.51 45.00 23.94 93.79 40.42 99.14 42.72 11.39 32.46 36.42 38.72 41.59 50.28 96.85 18.88 66.64 69.96 88.15 1.00 4.74 72.42 52.30 52.11 27.89 43.73 69.56 23.59 23.65 8.19 52.00 79.47 33.11 8.07 8.88 54.27 81.57 5.97 39.05 48.60 41.05 7.81 97.59 63.01 57.85 90.85 25.78 95.97 81.05 30.24 48.67 53.64 89.66 36.09 76.52 3.52 14.45 13.07 1.49 96.14 59.70 43.16 86.06 29.82 48.75 42.58 63.82 94.46 35.97 66.83 13.47 26.80 60.80 91.54 85.16 39.60 44.56 90.69 39.69 -95.38 85.46 8.86 79.71 58.96 1.30 15.86 80.33 7.82 26.75 60.76 92.13 69.96 83.68 62.20 67.93 52.32 22.44 98.66 95.11 64.65 96.62 29.45 88.56 32.31 62.83 23.09 89.63 20.19 43.92 7.47 50.02 56.69 52.69 8.79 64.02 49.45 29.50 75.17 45.94 84.69 56.60 58.02 87.26 90.33 5.39 48.12 95.70 48.10 86.27 17.83 52.35 60.69 39.67 93.98 83.81 88.94 26.09 84.83 10.79 95.14 49.65 20.43 75.94 53.67 41.71 6.23 64.83 13.85 67.46 24.33 47.65 55.37 42.63 98.37 77.85 33.00 47.18 95.46 78.14 53.13 95.97 59.24 42.12 29.37 61.58 21.04 15.21 28.71 71.02 38.48 40.49 31.66 10.04 49.29 69.71 39.95 84.00 24.39 56.60 -10.68 24.98 75.80 21.30 48.92 60.34 96.07 97.89 54.38 68.76 19.15 36.72 48.15 94.61 91.90 19.32 32.67 34.26 73.54 37.52 79.02 30.77 43.69 44.04 99.82 34.82 5.31 74.82 16.65 30.99 78.32 89.74 82.60 16.46 61.43 94.14 85.06 63.10 98.79 19.92 67.22 52.38 60.96 23.26 66.57 61.62 51.54 61.27 88.10 11.70 43.85 74.53 19.53 98.38 87.08 14.15 19.80 80.63 58.24 10.35 14.89 73.46 22.49 55.26 9.69 23.50 77.69 49.60 17.12 25.07 66.85 25.68 74.23 85.91 94.83 92.37 66.46 78.60 12.44 27.87 37.80 82.55 71.03 32.62 28.37 77.45 0.22 40.55 47.32 3.67 92.92 36.83 5.98 59.24 97.26 0.79 28.92 77.12 20.84 8.93 -14.12 2.12 11.50 65.21 97.73 98.56 80.78 62.66 95.84 52.80 23.06 44.53 4.28 74.63 81.48 71.14 45.37 69.10 66.27 45.30 5.63 69.10 11.42 31.09 19.44 35.52 91.25 28.17 31.60 3.93 94.21 27.89 14.11 41.45 75.78 79.33 86.03 79.41 9.40 36.35 86.49 62.23 42.58 92.46 71.02 98.08 54.95 55.87 93.62 62.82 95.17 3.35 65.24 17.97 40.83 29.84 9.66 36.17 49.77 45.37 85.03 81.62 68.81 14.92 3.30 11.29 81.13 95.94 64.02 61.01 70.11 83.87 90.97 85.75 4.36 53.58 95.29 99.71 75.96 59.89 37.04 96.40 10.56 16.52 10.96 40.72 28.91 27.98 67.07 14.82 60.17 56.96 51.85 81.81 76.02 41.55 66.42 71.32 77.94 86.91 -25.96 74.97 81.74 32.43 59.90 9.39 36.28 35.29 66.01 75.71 51.11 60.55 70.62 45.38 62.95 87.44 71.14 40.45 56.28 39.61 15.53 76.20 82.36 87.08 44.16 62.31 41.85 70.41 69.87 23.84 41.94 89.23 54.11 35.34 61.37 64.78 14.67 11.13 18.09 19.51 45.79 64.82 59.71 28.20 54.20 70.47 25.69 54.90 81.14 27.41 86.32 22.81 7.36 87.64 66.83 31.76 78.87 76.20 99.33 27.39 95.59 14.09 48.08 6.35 27.05 18.11 86.48 93.44 91.64 96.68 86.80 79.93 56.87 46.47 81.03 12.70 57.11 76.78 56.76 45.49 30.38 30.56 78.85 18.40 47.45 7.20 69.09 81.60 66.85 89.43 18.08 37.37 77.15 80.69 52.44 88.08 80.34 48.82 97.70 48.56 -38.86 18.11 93.38 83.96 18.90 84.11 81.92 51.86 20.42 5.90 74.35 34.75 36.47 0.73 6.50 55.30 51.90 1.80 63.58 89.51 94.55 44.20 25.83 45.36 91.09 89.55 19.00 22.28 41.74 74.26 64.70 43.64 73.05 21.53 33.26 43.87 57.34 4.08 3.99 10.75 10.44 46.69 18.68 61.96 0.08 30.79 55.73 2.31 85.55 29.58 62.20 73.92 69.53 17.13 8.95 82.39 86.38 0.21 19.81 97.13 42.83 69.08 76.23 43.45 92.03 62.10 80.42 96.52 9.53 12.07 6.63 43.99 81.89 84.48 6.44 7.58 64.80 58.22 36.83 49.78 40.85 15.12 41.56 58.97 5.59 65.10 83.60 74.82 50.83 74.56 48.28 27.01 41.16 87.25 31.70 0.84 99.48 10.26 46.80 83.07 -92.82 10.21 79.52 15.79 90.46 28.69 32.89 25.26 99.96 19.92 59.71 96.70 69.79 97.17 54.48 28.20 63.41 91.44 66.76 45.49 30.69 82.88 55.65 79.56 91.79 0.14 83.52 90.26 30.73 36.03 97.03 27.25 92.65 29.49 16.85 44.27 97.71 45.88 66.35 4.22 32.92 73.35 76.27 4.83 42.97 76.29 87.58 60.50 52.25 37.48 74.06 80.58 5.05 15.28 90.56 33.97 66.79 94.85 89.53 90.49 11.40 27.48 42.80 72.20 98.78 39.00 32.27 52.14 23.90 71.04 4.60 16.25 36.79 14.11 90.47 55.89 26.56 46.73 83.53 7.26 2.96 47.94 57.66 11.12 79.54 85.51 72.74 59.09 74.58 24.23 21.64 52.39 24.89 81.52 42.79 1.17 58.99 81.00 66.97 33.58 -84.15 95.90 85.49 59.91 85.54 45.50 15.37 59.38 83.83 88.42 94.46 70.11 38.69 29.53 16.51 82.86 58.13 69.05 73.69 36.06 28.44 65.25 23.23 81.95 55.16 37.70 98.19 76.36 65.95 21.41 22.50 63.24 17.27 98.25 31.93 67.49 95.56 20.81 3.91 55.64 41.06 50.78 58.33 42.77 90.14 68.77 83.59 91.05 47.03 60.63 58.48 65.77 41.56 7.38 85.07 28.41 79.77 14.57 27.34 56.99 24.44 5.03 41.90 47.85 62.71 53.61 94.43 93.26 0.12 58.54 45.63 44.83 31.42 18.91 86.51 14.98 53.76 16.85 92.33 68.70 93.21 76.28 3.99 38.28 77.53 87.75 55.64 68.78 75.95 3.90 41.23 86.58 89.25 87.39 86.45 12.89 80.94 60.62 23.25 36.67 -84.25 88.00 37.67 32.53 39.79 43.83 9.69 71.97 44.03 42.96 93.15 45.34 97.46 2.43 10.20 66.77 89.23 46.61 92.31 29.64 62.66 96.23 38.44 0.23 9.25 16.93 19.23 59.63 42.64 91.41 34.70 78.66 65.56 28.89 18.74 48.97 91.09 90.73 57.40 19.31 78.64 94.36 52.87 81.20 84.05 89.86 83.42 28.96 72.68 17.76 97.30 83.52 79.16 30.86 48.10 23.84 79.95 34.48 30.34 34.32 8.87 33.95 98.46 53.36 98.79 90.21 40.65 97.28 79.66 74.10 16.45 44.50 85.43 16.55 32.09 33.15 15.28 84.23 56.99 61.21 46.37 32.03 73.98 93.09 14.27 74.26 87.60 78.18 30.98 88.64 86.83 94.63 85.60 31.60 62.82 15.27 76.95 72.54 6.38 75.31 -77.99 34.13 14.47 61.92 8.94 50.12 82.67 43.07 85.40 29.99 27.37 71.33 25.52 25.90 26.13 27.54 38.22 89.73 9.18 46.45 82.56 25.11 68.49 47.91 88.59 64.06 55.13 76.00 79.55 50.69 56.58 55.20 87.53 91.59 93.25 3.53 63.68 96.72 22.07 79.46 29.27 11.56 21.10 92.31 51.71 98.71 11.98 71.40 47.17 24.72 6.26 65.10 60.14 16.26 61.93 24.49 83.42 68.82 59.90 26.73 85.66 3.23 63.42 58.41 35.05 58.47 28.43 46.12 12.65 9.53 51.53 53.02 10.75 77.12 53.30 93.64 19.56 56.27 74.73 57.60 89.03 79.38 3.20 88.16 64.62 60.78 1.60 80.08 20.87 89.79 22.81 12.99 61.47 59.10 16.60 28.82 90.27 90.59 14.65 69.63 -61.04 39.22 88.17 30.87 3.31 6.36 10.93 84.14 82.71 20.95 23.41 22.46 78.06 23.83 60.86 5.76 37.23 65.84 95.43 83.23 36.68 79.96 40.93 17.33 25.23 95.25 60.64 50.20 22.46 29.62 56.69 24.39 31.53 51.45 35.29 46.85 4.81 35.89 93.95 42.36 32.05 73.00 54.44 53.57 18.03 23.61 50.57 40.69 90.65 30.88 22.01 73.90 18.27 24.83 67.31 92.36 46.13 2.86 53.50 82.76 5.89 57.60 94.61 27.33 52.36 20.54 36.47 95.31 30.94 55.48 54.31 25.40 93.11 0.90 6.25 39.85 7.32 52.78 47.38 96.89 55.46 87.83 36.57 36.37 76.76 55.86 54.93 51.35 0.24 92.67 91.28 30.42 47.67 68.81 70.78 34.92 84.79 54.09 36.93 86.11 -0.60 66.64 10.44 55.24 57.47 23.96 90.03 60.20 89.39 10.64 92.63 48.31 61.19 6.06 42.72 41.43 5.35 62.02 72.73 27.10 96.85 33.22 44.50 79.68 36.35 35.59 9.84 0.32 18.17 6.89 70.06 22.76 25.12 89.62 7.84 27.90 31.22 91.67 47.47 42.98 71.04 13.42 26.72 16.64 51.42 29.44 25.14 13.40 23.29 64.49 32.19 2.43 81.17 86.98 21.20 79.09 91.56 34.68 65.31 26.10 61.66 91.44 91.71 43.75 4.72 80.62 89.30 40.64 25.20 3.60 54.61 98.79 89.98 2.04 32.56 48.59 45.57 71.06 24.98 22.02 93.29 68.54 22.35 16.45 20.45 15.96 57.11 67.02 38.06 41.61 92.34 40.29 20.33 5.78 92.96 89.18 92.54 31.10 76.25 89.01 -14.82 75.54 62.48 16.06 9.64 97.35 88.75 68.20 24.22 58.87 0.19 43.01 90.73 74.07 52.82 82.08 1.75 71.38 88.87 40.84 86.51 17.46 64.35 64.13 23.52 57.83 50.31 63.83 91.00 63.81 47.67 80.18 14.35 60.74 56.63 54.00 40.83 46.93 30.22 32.43 81.93 76.33 77.43 63.48 70.90 95.78 96.95 21.92 5.08 38.86 98.36 90.57 86.63 12.83 49.34 62.03 4.18 12.28 37.08 89.23 26.34 51.98 67.28 25.18 33.37 30.99 14.86 16.76 32.88 65.62 37.46 26.99 33.52 57.77 46.58 38.02 22.59 96.42 71.56 26.88 56.12 35.21 16.39 49.78 47.93 52.77 12.42 39.79 15.00 17.10 6.38 87.12 26.83 95.27 10.38 83.55 38.43 52.07 73.14 42.14 -12.82 47.36 12.45 29.46 6.41 84.55 59.26 12.06 91.85 80.45 15.48 70.88 95.60 57.29 52.57 93.10 86.03 0.79 2.56 21.66 11.70 40.20 7.70 73.34 74.28 15.42 34.46 8.75 66.67 73.36 29.21 93.96 34.73 3.61 57.70 22.99 17.82 17.08 23.80 41.62 29.83 37.14 74.20 35.10 41.24 41.79 29.90 19.96 86.50 34.98 3.56 71.90 7.94 41.07 11.22 62.24 29.79 65.88 57.74 21.62 23.84 98.20 98.37 18.39 41.32 71.90 17.75 51.62 85.73 30.75 30.39 24.62 69.74 81.29 96.72 77.11 29.79 26.38 35.89 52.08 97.73 80.99 84.34 76.38 41.48 77.88 86.57 18.94 25.90 46.49 95.26 26.90 83.20 71.55 19.01 71.63 51.89 99.87 28.71 84.35 -6.00 72.70 58.55 95.50 75.80 92.81 30.44 16.37 13.22 59.14 13.13 52.93 17.33 57.43 72.70 62.94 64.88 57.42 8.72 46.70 81.16 7.99 89.28 98.25 87.23 5.55 13.06 24.68 28.23 58.28 28.28 12.91 48.49 42.04 0.48 38.63 57.85 54.64 57.31 9.50 55.52 18.76 25.13 49.98 6.26 10.98 43.52 25.30 13.01 67.72 35.73 5.72 64.49 75.90 19.39 95.44 63.96 84.14 62.65 84.91 63.38 77.42 52.47 71.32 35.83 87.40 33.13 40.55 37.07 99.19 97.40 81.51 32.61 49.86 99.70 26.67 75.87 77.75 76.18 94.70 67.93 7.00 6.11 60.30 2.23 42.28 60.93 40.89 67.70 24.77 25.98 72.89 23.01 75.17 34.89 53.50 54.24 13.18 1.66 83.27 -40.10 11.40 5.18 15.31 74.77 30.75 15.63 76.23 51.56 45.05 23.06 65.75 92.76 63.71 6.04 51.58 15.02 55.84 73.09 58.18 31.16 73.37 80.44 13.88 10.52 46.47 74.45 15.74 42.13 70.17 93.65 93.25 56.12 10.37 77.13 60.12 82.72 75.07 28.88 63.82 63.36 41.77 55.58 57.69 82.34 84.58 73.58 58.19 53.03 90.78 27.14 55.34 2.38 5.79 8.86 94.50 63.88 14.81 43.39 53.59 28.97 4.83 38.49 90.34 43.73 23.29 93.05 16.24 86.96 64.17 49.14 33.18 1.75 20.78 65.25 50.76 9.18 91.14 39.10 18.42 29.44 41.75 10.34 68.46 95.21 40.73 14.54 36.93 74.04 30.16 20.16 97.16 78.11 89.76 7.20 94.98 28.66 74.32 97.26 10.07 -66.87 66.79 24.65 82.15 90.16 35.65 65.04 75.93 29.63 30.27 17.17 88.55 77.10 13.28 70.41 93.86 37.67 38.14 97.58 45.19 11.87 30.00 84.32 34.93 71.59 47.97 8.48 7.30 85.38 18.39 66.76 65.50 10.95 94.20 61.36 29.37 83.53 6.06 77.82 3.70 13.81 24.04 79.62 33.15 4.32 14.22 81.91 29.66 35.67 74.31 95.11 10.28 51.43 80.80 45.36 75.76 89.79 63.32 89.09 57.46 32.20 72.46 42.00 63.71 17.22 46.68 58.89 42.96 17.77 90.47 43.31 91.31 21.68 75.06 79.36 72.49 27.22 35.26 54.14 56.55 77.36 74.20 32.86 32.52 30.85 82.21 75.95 98.90 23.04 19.08 64.62 22.94 96.21 24.06 12.10 11.07 70.00 68.00 41.41 52.63 -3.29 4.30 57.18 81.64 1.95 45.95 94.26 68.48 50.83 49.68 79.53 8.67 75.37 68.57 77.34 76.31 56.15 15.92 18.51 33.33 67.00 56.74 46.34 25.60 35.67 92.34 67.28 23.41 22.06 63.73 20.63 40.01 67.42 74.60 31.32 61.27 0.86 85.68 83.23 58.21 36.74 80.09 88.74 26.62 23.27 82.76 71.96 62.63 12.90 41.19 80.55 9.67 27.67 74.34 63.84 74.39 17.11 67.22 9.94 24.86 63.20 19.50 50.54 34.88 5.98 96.63 86.04 59.64 53.39 49.29 62.26 39.14 33.45 86.01 82.21 65.68 87.22 48.78 71.27 1.08 87.48 32.90 26.71 69.40 87.98 63.02 70.85 62.08 70.52 93.57 60.37 24.01 25.98 26.03 59.73 30.26 31.99 48.83 61.08 85.97 -80.93 82.22 69.65 81.03 78.92 64.01 58.42 25.28 21.42 74.24 75.70 23.91 4.68 54.38 63.01 88.15 33.89 67.76 24.13 62.61 3.40 20.68 42.88 90.52 57.07 61.72 31.99 89.50 14.30 47.58 80.42 15.64 1.32 54.98 86.95 59.48 84.13 41.05 71.96 57.38 80.94 25.09 71.77 24.84 77.49 3.68 16.82 5.50 98.84 24.08 8.80 98.75 44.73 94.15 13.30 30.78 24.88 89.14 67.23 15.30 91.46 91.16 94.42 9.48 57.06 5.96 35.26 36.28 16.97 13.03 44.79 24.08 65.42 18.90 26.09 23.00 34.57 58.02 65.55 37.01 29.88 56.94 26.87 93.88 11.69 78.09 89.98 30.61 43.06 83.76 14.80 94.00 39.23 55.89 6.41 23.26 1.25 73.22 55.56 75.71 -21.58 91.34 15.77 68.63 43.31 20.06 78.39 23.44 14.03 64.93 7.96 67.68 51.91 3.26 12.37 34.50 97.41 7.87 3.26 57.42 54.39 68.79 13.85 72.60 31.20 64.11 47.52 70.40 31.16 44.95 17.60 8.22 51.42 54.91 90.67 20.87 92.04 97.06 85.84 39.29 41.36 16.61 20.04 67.32 55.11 20.22 25.54 76.27 75.04 88.77 23.92 90.47 36.50 39.13 50.07 54.39 67.13 16.67 6.91 65.38 89.04 2.65 15.73 31.39 7.57 36.21 41.73 57.33 22.26 40.91 65.37 64.27 15.61 28.00 38.20 78.89 74.81 42.27 66.75 80.86 33.85 79.29 36.48 85.44 20.35 76.31 81.20 95.55 59.68 76.95 78.15 70.64 36.49 0.62 84.28 47.94 45.15 49.11 1.40 9.05 -63.00 84.83 52.52 31.15 6.10 97.72 73.08 40.41 47.22 44.74 16.81 16.87 79.43 90.10 11.38 2.20 81.10 28.55 63.32 3.04 72.66 65.79 15.71 13.64 47.60 13.89 47.39 18.75 23.88 74.93 45.22 71.63 74.34 10.72 71.61 71.59 11.16 86.10 45.06 88.71 42.77 73.48 36.89 13.60 4.43 36.52 0.48 67.37 68.00 7.83 12.40 91.95 43.91 51.33 98.37 48.71 25.02 50.04 88.24 4.51 21.51 66.01 93.52 41.61 3.42 95.63 13.16 98.12 96.23 94.30 12.38 41.10 94.87 9.38 47.46 22.12 19.47 81.48 81.51 9.20 27.11 74.28 51.69 58.53 75.88 32.88 81.33 36.00 47.60 56.48 87.65 95.10 38.38 39.36 44.05 79.34 25.88 36.38 67.45 24.18 -29.87 27.84 46.93 82.08 52.32 53.90 70.38 51.19 46.08 3.30 97.01 17.19 28.52 9.27 28.47 43.32 34.55 58.66 69.55 98.33 14.25 11.17 74.18 74.89 7.15 53.35 44.39 51.53 3.56 28.83 2.64 46.88 20.08 83.65 85.58 44.91 54.20 63.05 93.46 75.57 75.41 20.96 87.24 53.10 36.63 36.51 15.77 42.17 67.07 53.54 58.63 99.88 18.50 65.80 94.59 53.97 22.90 36.97 81.35 81.51 81.76 42.08 56.99 31.99 94.82 26.23 97.80 96.02 56.92 63.86 64.99 42.72 44.51 96.06 53.71 37.07 75.16 10.84 40.25 35.02 10.22 28.80 47.20 32.38 32.06 41.79 61.40 12.90 55.13 20.18 68.95 25.49 24.93 12.36 78.75 23.03 20.26 42.28 10.50 26.90 -49.04 20.78 66.85 42.73 22.22 10.71 47.80 11.38 91.90 3.60 10.15 39.02 51.41 62.12 73.72 51.84 88.92 23.90 9.35 57.96 72.74 72.32 7.20 64.85 58.53 51.67 18.54 50.88 40.69 87.39 41.26 60.54 69.42 92.39 74.59 74.04 68.43 42.22 10.97 11.16 56.72 52.80 38.42 9.23 43.19 64.87 87.06 12.85 28.54 79.48 14.51 58.30 79.74 62.91 26.50 20.22 0.13 18.69 72.73 5.79 49.33 99.32 11.27 33.87 50.27 39.34 72.48 64.52 27.61 93.71 55.42 97.02 7.71 88.19 86.17 16.00 37.00 62.94 28.47 0.24 51.37 3.83 62.90 83.18 90.26 20.10 54.14 81.18 93.43 95.70 65.50 56.19 3.78 44.65 93.03 11.26 1.57 43.58 84.38 89.76 -22.57 41.92 46.06 96.28 54.44 0.07 62.21 24.20 77.09 6.39 30.01 20.13 1.17 26.47 78.54 65.12 67.07 60.08 30.28 81.82 59.96 89.26 77.41 98.91 72.41 24.56 54.75 38.45 7.56 93.81 20.50 38.54 53.67 84.66 70.03 57.54 11.09 96.84 43.02 27.14 62.25 51.14 10.41 59.78 16.15 40.88 85.38 34.73 91.81 6.60 91.81 82.45 86.77 30.86 47.82 28.44 32.39 13.08 60.80 44.83 48.28 12.00 79.22 68.90 98.28 75.44 62.07 71.28 88.01 3.72 88.36 51.92 73.93 31.19 13.38 49.45 46.72 25.06 70.20 56.82 14.43 92.14 30.98 17.80 67.33 43.19 22.34 38.15 20.01 65.25 46.45 74.39 56.13 47.02 2.37 33.93 90.72 28.05 46.42 99.53 -2.96 25.52 24.09 91.01 62.75 82.19 18.77 93.21 51.40 68.19 88.88 78.50 71.41 43.49 86.87 26.00 73.92 21.30 74.85 76.79 6.99 60.97 0.20 51.60 44.44 70.15 27.05 30.77 78.45 58.77 77.87 42.18 16.99 36.22 27.85 94.96 83.75 55.42 65.62 82.57 20.86 25.72 42.02 82.57 47.64 30.44 8.96 97.79 33.53 99.46 86.64 8.80 92.29 21.15 20.13 12.73 51.91 93.70 92.31 2.14 57.19 38.99 42.44 18.70 13.45 40.13 23.58 81.13 9.61 63.74 92.61 53.83 6.23 84.56 38.08 28.68 73.88 57.79 32.97 34.24 27.52 62.43 9.22 76.78 32.32 83.25 67.18 59.82 37.97 94.87 38.26 29.69 82.93 68.09 29.11 27.56 93.16 20.14 71.94 14.15 -59.72 0.68 86.45 76.90 75.43 61.49 11.89 34.37 64.39 34.48 93.92 1.35 80.13 97.08 82.86 57.72 4.17 54.81 90.94 49.04 76.89 42.38 65.72 11.43 57.61 83.56 72.56 93.53 88.65 81.46 33.86 80.24 64.30 54.07 99.32 69.58 77.00 22.80 56.31 1.76 74.98 76.68 38.57 72.59 74.52 64.18 71.21 12.93 14.91 15.79 0.29 67.16 52.36 42.86 63.34 26.41 14.56 49.99 67.99 55.46 84.44 40.76 13.92 0.64 66.42 46.57 78.08 26.53 46.29 23.05 37.64 89.61 62.40 51.78 6.65 53.07 45.68 77.19 28.12 2.94 83.80 85.65 88.30 76.98 43.99 39.47 91.26 60.88 3.31 45.28 37.95 29.76 41.31 42.55 2.99 1.50 95.64 66.79 71.35 38.01 -37.16 69.47 41.06 1.98 41.60 63.46 26.69 18.26 41.48 24.54 41.95 40.53 41.79 15.59 83.57 24.28 68.02 45.18 46.74 17.33 15.14 75.84 25.24 82.68 25.65 47.27 99.28 97.17 93.00 1.62 24.87 48.46 60.85 41.95 54.12 10.76 32.10 98.27 94.78 10.02 46.74 24.74 59.98 2.82 30.63 34.57 52.12 53.44 26.26 49.58 13.99 97.91 26.23 30.99 9.94 88.95 97.47 58.02 17.68 54.43 13.67 20.16 48.09 10.56 65.55 44.08 57.25 51.63 63.13 52.89 53.48 48.54 36.94 34.00 22.03 31.26 32.87 38.88 53.86 95.50 87.79 99.91 92.34 42.54 46.42 20.31 92.72 99.89 88.43 31.98 62.86 35.35 90.70 56.51 38.01 62.08 77.12 21.13 87.34 35.52 -42.22 61.83 93.08 56.91 44.29 5.45 41.24 42.20 99.65 86.01 94.16 34.86 95.73 40.23 90.19 70.42 9.78 27.93 6.13 5.40 74.26 55.76 53.92 24.07 25.37 7.92 28.14 23.67 49.96 28.76 8.64 63.64 49.87 27.73 13.63 61.82 47.44 12.14 6.23 58.83 3.01 99.43 98.41 36.26 3.50 59.19 29.93 69.63 83.03 5.19 15.23 63.11 10.82 55.67 88.94 99.34 5.84 31.46 51.91 84.44 3.56 50.94 55.38 92.39 9.59 40.96 24.11 59.34 65.28 36.72 70.30 11.60 8.16 9.91 57.15 68.47 70.41 42.36 85.13 22.62 32.96 88.77 40.26 28.98 43.33 61.06 44.30 90.14 70.22 22.48 28.73 91.91 60.50 48.46 91.47 16.05 99.40 57.90 24.78 89.51 -38.56 23.55 97.53 90.92 98.84 82.48 5.79 49.98 76.29 27.80 51.92 15.07 8.42 22.42 32.58 56.49 40.96 97.17 24.30 99.55 74.47 85.10 49.33 12.62 24.03 94.90 47.28 37.19 81.01 80.18 26.55 62.77 54.85 13.03 71.42 37.34 78.84 45.77 42.80 46.28 84.40 86.72 79.21 41.13 37.63 51.14 75.37 80.01 10.15 48.27 38.93 95.09 77.23 16.88 14.34 17.00 49.67 94.40 57.10 31.56 30.26 52.10 76.30 33.35 2.69 5.86 58.44 30.58 9.32 78.88 43.81 65.12 3.91 17.69 66.31 31.67 48.17 8.03 22.78 97.65 87.63 88.50 79.76 47.17 85.37 21.68 29.83 9.41 33.55 36.69 62.05 51.03 64.86 85.25 97.47 93.28 27.24 98.41 20.85 73.88 -14.11 20.06 87.44 40.29 89.47 16.16 43.38 16.65 76.63 20.89 93.03 39.22 97.45 7.85 29.78 74.54 7.71 28.78 94.67 93.91 72.86 74.84 29.37 2.32 59.28 76.06 92.18 86.42 24.97 18.98 34.67 34.10 61.55 78.46 54.66 27.01 10.03 22.88 81.88 61.27 16.81 65.24 3.51 82.07 24.19 21.68 43.04 48.40 92.10 9.36 44.76 78.39 65.36 80.80 19.72 15.17 16.82 31.57 81.42 35.46 44.64 24.87 2.73 56.28 34.15 87.10 27.53 55.16 18.15 59.22 12.28 77.66 28.00 98.40 53.44 12.59 34.08 58.03 35.70 96.80 57.92 37.21 3.67 55.34 61.03 87.25 15.86 2.22 98.97 38.41 83.86 9.56 93.91 96.52 99.05 94.71 62.90 42.96 22.63 82.16 -81.65 55.57 31.57 7.36 34.88 34.48 11.12 1.84 84.43 58.94 37.17 14.67 97.84 11.01 59.39 38.55 5.12 12.22 19.96 1.02 0.17 34.75 10.85 96.58 79.37 7.99 24.37 29.15 7.81 93.77 63.97 47.86 69.08 57.06 13.98 45.25 91.80 38.10 93.22 67.22 2.64 49.37 34.39 51.09 70.82 24.60 33.86 31.31 46.99 99.62 40.97 76.25 63.55 45.64 72.87 47.46 10.40 88.87 17.66 55.83 51.00 42.96 5.16 10.45 39.90 87.42 40.84 95.52 40.22 29.54 42.17 28.62 65.18 99.33 97.51 50.09 20.60 43.03 49.99 11.50 35.27 34.09 46.12 70.25 98.01 25.48 11.82 94.80 77.79 14.85 77.36 21.06 68.50 93.19 86.09 3.77 23.11 89.92 47.48 20.32 -58.98 29.02 44.58 57.04 72.46 80.70 51.14 21.86 13.65 1.44 86.84 28.89 44.43 69.76 19.92 64.99 85.87 33.11 75.32 99.37 96.43 55.01 61.21 15.32 30.39 56.61 14.43 49.67 74.03 5.06 54.29 28.29 66.20 62.70 86.49 29.66 19.74 82.85 83.81 31.56 26.55 69.75 30.52 99.57 64.80 34.25 79.58 19.57 83.31 40.38 63.33 72.43 57.36 40.30 2.02 60.44 19.12 28.18 87.45 44.79 16.53 47.98 74.61 4.10 72.44 42.71 5.73 69.34 13.95 40.51 77.20 11.95 8.99 78.88 73.57 52.77 10.39 58.15 18.86 75.00 88.26 28.93 60.65 78.91 72.65 33.83 11.92 41.18 95.95 65.31 84.07 61.54 0.28 25.01 94.91 31.81 12.47 78.99 45.74 50.97 -58.09 53.47 51.15 13.02 74.00 20.24 90.72 45.40 12.75 11.17 7.65 46.05 83.25 87.40 6.21 84.57 68.87 56.95 29.13 7.03 67.87 43.48 21.75 62.85 68.52 7.67 66.66 29.76 46.15 93.83 53.60 3.95 2.69 37.47 18.91 65.30 30.10 98.06 55.18 52.33 40.39 44.11 39.54 95.30 52.56 84.06 89.69 63.47 37.16 44.24 71.93 85.05 0.08 80.75 51.60 1.60 97.28 30.35 13.57 70.73 33.08 43.32 52.78 79.32 16.57 94.24 83.95 71.07 46.24 80.18 99.64 1.15 4.61 59.22 80.63 56.82 58.82 93.35 62.60 1.04 18.27 0.85 7.14 52.89 21.02 33.64 66.72 76.23 38.36 51.05 17.60 96.37 98.41 34.21 88.46 27.88 35.22 6.81 92.98 16.37 -50.94 13.54 96.95 57.73 70.57 62.78 19.74 70.53 35.11 77.89 84.29 18.64 69.37 0.98 58.49 81.16 70.08 36.43 82.43 27.07 32.07 43.90 58.74 76.43 43.32 73.27 83.56 65.05 82.31 5.11 62.26 20.06 81.00 30.91 95.64 95.33 41.76 65.21 34.06 62.35 97.95 26.48 1.29 26.70 57.63 78.25 39.90 3.14 77.31 67.42 45.17 35.88 0.41 10.07 10.83 30.30 62.33 92.59 4.45 20.93 78.60 11.78 45.24 63.78 8.52 53.02 58.07 30.78 26.66 32.94 59.51 82.54 71.01 29.85 96.79 34.89 90.47 61.64 98.19 85.01 16.79 81.91 99.16 25.37 80.23 79.12 20.20 54.70 49.49 42.01 61.46 43.32 73.71 60.69 0.50 96.56 66.85 24.55 85.36 87.53 -26.18 94.65 35.48 36.95 92.11 64.87 82.74 46.53 58.23 26.97 15.19 28.32 15.16 23.36 59.67 87.75 18.40 72.97 65.91 46.95 34.29 50.59 72.09 76.19 82.94 89.16 12.15 2.75 95.46 57.55 11.50 11.36 49.21 80.71 2.75 8.94 0.82 58.28 38.35 15.90 67.80 27.56 80.84 0.82 32.39 0.81 11.32 89.33 10.44 55.73 67.07 35.41 13.79 65.21 91.10 56.23 58.99 91.95 23.33 36.08 28.10 45.15 0.82 10.91 44.07 42.68 22.51 36.62 36.11 70.60 78.52 18.36 97.78 30.94 3.71 90.08 32.30 12.39 88.56 22.88 62.79 19.61 9.78 27.78 18.90 60.45 58.08 59.55 55.92 59.73 89.23 44.37 55.72 5.54 91.71 12.59 26.91 11.25 58.65 61.33 -48.21 43.11 21.68 68.29 30.42 41.70 38.26 66.80 13.26 16.64 58.94 48.04 47.28 52.27 17.75 55.52 16.34 20.62 93.15 30.54 84.09 1.42 20.13 99.83 0.11 91.27 95.62 59.73 98.50 76.60 46.53 23.49 75.40 66.33 48.89 22.60 15.65 27.41 94.23 7.64 81.36 56.84 5.15 83.48 14.96 72.89 33.99 95.60 3.92 18.00 72.07 64.82 89.19 13.43 83.28 52.19 50.89 20.92 60.95 14.72 55.42 10.17 32.28 89.47 81.85 0.17 93.45 55.35 61.92 99.82 42.31 63.21 61.45 87.57 74.43 35.99 18.63 46.18 25.38 60.66 98.74 37.23 89.80 10.71 94.88 97.33 74.22 72.73 0.13 79.73 66.49 83.43 44.03 74.95 72.91 87.42 71.05 80.80 70.78 59.79 -63.02 14.95 96.80 77.83 42.21 21.35 63.52 92.71 63.92 52.66 93.94 86.84 73.47 79.31 72.78 39.61 77.32 9.30 81.76 60.90 21.89 82.12 71.87 5.39 68.14 0.28 53.83 88.68 56.40 76.34 35.52 53.68 39.38 59.29 32.35 20.53 94.54 12.14 49.94 37.71 36.19 59.67 86.70 16.69 44.79 71.60 19.76 51.76 64.66 44.30 80.52 3.81 34.58 86.79 26.95 50.31 6.34 86.09 41.77 93.94 83.19 88.95 48.06 13.07 42.67 56.56 41.87 53.82 11.64 46.34 43.62 9.17 3.80 48.54 2.14 4.56 1.22 29.26 11.84 81.64 78.35 85.03 51.32 75.60 91.89 39.50 19.39 50.63 86.43 19.10 47.79 71.95 85.56 34.12 90.31 75.47 67.13 9.52 21.94 43.89 -11.93 64.20 92.60 82.16 91.09 32.48 78.53 92.33 28.47 16.38 85.20 93.01 38.59 5.43 71.94 6.23 54.96 76.32 84.59 60.33 29.14 67.42 60.55 54.67 4.55 21.04 7.44 50.25 25.15 70.08 72.34 43.16 41.58 50.62 46.09 69.75 76.27 97.96 85.81 61.68 78.10 69.59 27.48 62.41 1.59 79.57 28.61 63.34 1.19 87.77 93.47 54.61 12.33 54.97 84.18 36.65 46.70 15.08 51.97 67.79 33.43 37.11 88.39 25.59 52.34 98.66 39.51 40.12 1.04 36.95 7.05 55.51 73.88 97.57 73.57 3.77 77.47 60.33 28.31 93.54 82.54 15.44 70.27 35.76 95.41 6.61 71.11 46.18 3.65 2.80 32.03 37.12 0.70 44.06 70.43 79.61 4.32 58.48 42.19 20.91 -93.84 25.46 11.18 65.98 87.08 10.86 62.64 39.94 98.53 39.26 34.81 45.73 79.59 16.43 95.76 53.00 68.40 66.02 64.01 96.38 38.68 55.12 45.15 37.01 56.24 3.29 18.18 14.90 95.94 91.98 55.32 64.85 0.16 53.19 85.21 28.31 10.84 68.83 6.41 78.27 4.61 96.42 84.34 96.41 75.65 19.46 48.48 55.90 51.51 50.84 87.63 59.02 65.65 1.22 75.98 77.02 28.90 36.40 72.02 5.77 57.46 84.38 14.74 43.79 69.42 2.53 40.68 76.05 10.85 74.48 69.66 93.36 83.87 81.59 77.51 99.11 89.41 12.29 84.73 79.92 17.45 66.64 90.84 51.54 47.93 5.81 34.06 74.66 80.30 11.10 86.41 28.92 56.50 74.73 36.01 73.07 25.41 22.61 77.96 43.24 -67.03 76.71 3.73 85.28 1.11 18.46 95.57 91.42 99.52 75.47 28.88 90.27 10.15 41.41 68.19 33.57 9.46 77.39 45.17 54.71 57.03 22.25 36.51 97.29 38.28 93.50 64.53 28.16 4.96 17.42 2.55 97.55 58.56 31.49 98.40 36.51 27.13 22.98 33.57 7.32 25.63 82.70 29.53 0.21 92.49 87.64 62.66 26.74 80.48 41.10 18.47 10.27 19.61 3.93 3.83 66.26 40.71 76.78 28.96 25.33 30.45 20.34 83.69 83.95 94.32 13.71 29.94 98.02 97.70 95.62 7.02 83.70 98.36 5.43 55.60 9.30 26.02 77.44 57.07 11.29 15.69 35.95 69.17 78.85 83.67 36.97 52.88 97.17 5.29 4.97 55.15 26.06 4.71 84.08 99.77 16.85 44.58 60.11 12.49 47.74 -39.14 9.43 9.33 57.33 65.58 44.38 22.94 87.86 88.83 3.78 2.14 28.42 63.56 57.73 32.83 92.34 17.62 8.23 60.68 69.67 52.33 43.21 79.38 87.07 73.78 81.12 74.41 72.79 8.33 46.09 62.48 40.47 31.73 43.20 80.90 3.58 90.99 54.86 84.29 45.99 72.49 94.03 91.88 42.71 38.71 46.26 97.33 73.00 49.62 50.04 88.10 16.08 38.95 69.09 90.28 95.33 67.66 28.64 89.37 96.54 1.55 62.61 15.67 58.96 87.36 8.11 12.42 76.12 34.44 25.70 37.48 10.55 57.06 96.03 58.40 18.26 49.96 14.26 78.48 94.94 52.30 40.04 13.69 45.95 37.71 48.67 4.65 92.87 70.09 3.35 88.56 80.13 82.92 5.91 82.62 47.56 64.48 80.72 37.57 61.88 -23.29 87.82 84.83 60.07 35.16 72.04 76.22 6.45 40.49 51.15 75.90 39.95 34.45 74.25 45.60 14.89 25.14 23.40 54.68 99.11 20.25 57.86 20.26 6.57 75.31 98.17 56.71 25.35 68.61 7.10 44.79 6.89 13.12 77.10 58.99 64.61 74.04 87.22 35.26 97.24 57.29 3.57 70.17 38.45 59.06 21.08 80.45 80.43 38.56 69.86 0.83 82.14 27.41 85.57 58.49 84.61 27.23 61.50 94.57 43.28 79.01 18.95 50.64 62.92 51.42 24.69 74.28 66.93 64.31 32.03 10.71 2.08 18.36 30.19 6.85 94.98 62.93 69.82 13.70 98.12 99.03 8.78 95.21 55.80 91.73 40.52 52.20 5.12 2.97 5.04 0.51 86.18 5.84 42.62 8.86 9.56 14.35 77.06 54.82 93.55 -58.07 59.99 7.42 42.42 92.80 83.70 54.06 5.65 81.41 82.93 31.58 62.59 25.32 40.41 62.02 36.21 72.96 96.94 12.46 78.27 6.00 24.65 45.41 44.23 30.46 73.05 37.86 76.18 3.36 95.09 9.02 18.27 16.60 37.03 7.28 11.49 34.69 34.33 35.34 35.71 20.09 6.74 49.32 30.38 70.30 93.22 76.59 56.37 45.63 71.10 85.93 60.09 60.16 55.60 26.92 44.01 66.05 24.80 93.39 69.94 20.27 27.10 51.51 26.70 6.65 84.81 46.02 38.12 76.47 58.18 3.25 83.47 42.45 20.01 13.92 4.31 21.07 28.16 40.14 12.02 79.03 30.77 6.72 49.75 85.89 15.33 42.50 36.71 58.02 38.87 2.54 27.77 57.08 81.90 82.21 70.39 54.54 27.01 38.23 22.82 -17.25 9.99 1.29 49.67 75.00 7.65 19.63 93.24 17.81 60.94 14.80 73.66 71.14 55.94 45.05 11.12 39.13 73.04 16.56 30.59 80.44 27.72 38.38 10.35 39.86 31.50 78.33 50.08 76.31 42.11 87.80 78.33 68.30 2.95 76.45 10.57 4.55 57.29 69.35 57.95 9.81 20.01 24.70 3.01 47.17 44.93 12.91 0.81 66.83 20.65 85.96 75.50 99.91 51.83 2.54 37.33 75.06 17.20 7.75 70.60 56.49 4.14 42.18 42.26 98.03 46.76 60.46 67.53 24.56 28.27 20.44 14.73 73.38 49.67 40.93 79.15 14.50 61.47 26.63 20.73 29.75 32.65 34.23 1.30 30.18 97.21 79.45 66.50 34.03 17.55 16.04 27.45 56.46 55.18 47.55 56.43 6.91 58.31 51.41 90.60 -57.89 14.41 51.59 35.76 68.04 19.64 68.88 28.03 52.29 33.65 95.99 73.09 10.90 62.60 25.11 39.68 70.52 1.99 4.98 63.74 15.99 92.69 91.56 2.05 83.80 33.94 96.18 84.10 29.87 25.18 54.12 91.69 79.84 91.56 38.50 19.11 56.53 27.99 51.64 12.00 9.24 0.31 92.70 49.65 61.67 72.79 7.72 55.36 76.87 45.27 35.78 76.35 82.13 3.79 28.01 86.56 52.89 4.66 36.99 14.99 70.43 50.31 94.26 5.34 7.75 80.40 38.25 74.37 84.31 99.31 65.12 63.85 77.98 69.07 94.44 16.41 94.19 60.25 88.10 9.87 13.73 28.29 58.85 94.34 3.79 3.28 73.70 5.04 48.06 51.50 80.88 76.37 12.89 31.38 81.80 1.23 68.57 52.07 5.33 71.92 -66.26 13.72 70.39 18.16 3.82 49.49 33.97 33.37 57.03 52.76 31.48 18.98 75.48 61.23 61.02 88.45 23.49 56.09 14.65 19.31 28.83 3.15 11.86 19.31 57.68 54.14 12.41 28.05 85.95 39.63 61.85 31.07 47.90 49.07 58.65 40.05 22.35 65.32 20.32 70.94 29.33 65.71 55.85 7.59 78.23 92.49 87.61 43.01 95.37 51.13 84.54 53.71 37.37 95.50 57.53 95.15 35.45 7.81 29.07 3.47 50.47 4.12 35.16 56.43 24.65 93.20 46.46 80.92 55.80 19.57 83.59 92.46 4.45 41.42 59.49 20.55 95.07 22.76 61.43 16.97 64.47 72.22 5.21 68.91 93.44 8.15 82.45 53.47 46.82 87.19 21.20 80.88 44.92 75.81 87.91 66.50 13.88 68.92 91.75 57.10 -92.16 3.62 54.85 69.01 9.70 45.36 31.98 27.23 25.32 9.01 82.14 55.13 6.95 58.19 7.71 18.47 51.36 43.58 95.90 85.79 32.85 59.14 23.02 60.84 6.05 60.95 20.75 19.26 79.80 90.30 9.19 32.52 67.42 19.62 33.99 99.06 0.64 65.79 68.62 16.59 88.73 20.63 55.47 63.69 80.50 48.26 31.85 28.13 17.58 68.65 78.13 21.16 17.93 24.48 29.22 24.99 35.00 79.52 38.68 45.03 43.42 46.19 30.09 49.05 47.48 81.75 56.98 65.42 57.06 35.23 74.38 1.90 89.66 76.15 37.30 87.18 69.17 20.40 38.30 61.48 32.63 44.58 85.28 97.69 61.75 28.79 92.21 54.44 51.95 92.21 87.87 70.10 80.26 23.92 20.02 75.24 62.36 56.12 18.90 8.57 -49.42 19.06 29.92 96.12 13.80 94.32 76.04 60.55 87.28 25.30 77.34 35.32 72.17 27.49 35.67 93.18 38.90 20.10 77.37 83.42 39.69 18.71 46.39 11.42 0.32 23.74 47.34 0.38 66.17 52.98 80.07 87.06 88.88 0.87 48.69 42.49 69.58 81.89 28.86 95.78 7.30 59.60 56.08 88.53 50.56 39.44 68.66 45.78 30.45 11.96 48.51 74.19 1.78 54.78 68.22 71.64 92.21 18.39 96.69 45.85 44.16 20.90 93.36 63.58 17.77 81.06 88.98 17.95 82.62 86.70 10.78 94.02 20.29 92.70 66.24 60.11 7.23 11.68 29.63 41.85 76.20 87.69 21.60 96.68 74.56 37.82 68.32 42.93 33.51 93.50 20.68 3.48 61.02 47.42 52.34 17.26 99.32 67.78 39.78 87.60 -31.25 5.60 68.53 93.05 98.35 5.60 40.29 82.85 43.50 98.51 0.35 23.03 77.68 25.34 12.20 55.42 21.98 74.50 2.63 16.18 26.11 28.30 7.74 98.28 47.66 61.53 99.81 71.44 78.68 32.31 35.54 20.56 63.65 12.02 19.30 70.49 60.19 86.07 55.18 77.23 3.89 97.52 26.89 53.87 98.96 22.50 37.56 53.49 5.77 7.61 34.13 49.78 11.60 50.51 65.65 93.44 24.93 0.50 74.82 28.36 10.76 99.21 10.93 17.94 20.15 85.96 82.28 84.12 43.28 32.45 82.39 71.42 31.04 60.04 43.17 10.35 47.39 66.95 54.79 16.21 68.75 69.54 6.83 11.94 8.58 61.81 98.66 12.47 37.42 27.90 14.74 34.69 31.27 88.89 80.69 66.87 40.02 97.89 6.27 56.91 -96.61 82.67 78.01 86.45 14.72 71.78 88.05 12.61 28.24 7.28 14.61 52.30 58.29 17.35 24.20 38.94 10.41 8.00 17.72 33.95 38.77 83.58 37.11 44.94 73.30 52.26 14.82 65.41 96.92 88.86 41.43 0.98 20.49 78.83 17.67 66.75 80.25 67.76 15.04 70.68 90.46 48.27 99.38 73.75 58.77 91.11 14.90 9.76 67.45 72.95 78.95 44.65 68.44 97.12 57.40 36.16 79.46 5.51 34.66 31.18 52.43 63.69 41.67 57.82 16.13 58.79 81.17 5.04 22.28 68.74 85.96 85.31 79.14 42.25 94.75 76.26 90.76 23.57 84.93 93.16 90.45 12.28 66.56 7.81 67.90 49.77 71.41 59.32 8.10 7.94 24.87 75.94 87.78 78.93 65.79 3.10 21.87 60.60 92.19 47.87 -89.65 67.90 4.52 34.99 93.84 9.51 58.84 28.92 15.49 57.24 45.19 16.44 50.31 6.20 57.02 88.34 57.25 6.01 28.02 12.10 86.94 49.38 49.46 88.16 49.79 62.72 36.95 12.97 9.27 57.22 70.61 97.18 85.25 28.93 99.41 42.38 1.94 10.93 50.61 1.81 12.63 61.32 67.62 19.99 38.99 75.40 4.16 54.15 22.93 76.14 13.78 28.57 73.94 29.51 46.85 22.09 19.30 62.08 15.78 66.82 88.06 66.19 16.66 48.87 94.85 15.75 21.44 17.12 54.05 25.91 21.27 62.81 30.88 53.95 36.44 44.46 30.04 21.51 66.10 28.64 42.61 18.14 59.21 57.32 0.69 82.24 55.52 66.86 24.02 47.76 12.67 14.73 86.21 5.73 98.03 60.81 12.59 62.16 92.12 55.04 -61.22 54.63 74.58 3.03 63.52 53.88 24.33 31.75 48.52 91.82 61.74 7.48 95.47 5.45 90.46 31.09 73.18 28.48 65.97 44.43 68.79 94.12 8.25 50.80 53.19 14.87 26.87 55.29 42.55 62.17 46.80 65.03 29.63 14.13 42.93 74.71 86.26 33.11 67.99 27.85 50.57 82.91 55.93 63.16 23.94 95.29 46.17 73.39 71.27 6.84 34.65 23.11 69.56 83.20 59.50 81.82 53.76 72.18 43.89 54.24 48.81 21.23 73.14 82.52 37.35 23.60 44.78 2.37 25.42 8.66 58.02 12.25 61.07 2.60 26.14 8.89 68.32 0.36 35.87 25.31 49.47 33.98 39.91 27.08 88.94 81.30 26.53 94.24 61.74 92.17 25.11 57.13 40.66 31.20 7.25 78.87 49.93 80.45 60.92 65.73 -50.21 82.65 44.97 79.11 9.21 28.61 40.74 67.04 25.86 99.04 35.37 90.93 94.87 55.85 9.39 66.98 40.69 96.95 84.88 89.77 96.91 76.29 88.18 83.12 23.02 77.21 92.90 24.61 44.18 52.29 31.55 61.40 29.98 2.67 27.34 84.81 0.55 24.31 52.13 49.74 12.17 92.12 41.69 62.60 32.37 26.34 20.38 7.07 62.68 99.37 52.12 39.96 72.54 97.70 73.35 84.66 1.91 52.01 35.97 5.40 93.41 49.72 71.81 56.86 24.13 52.67 78.13 17.29 44.96 17.32 45.82 52.51 67.30 36.93 1.13 25.57 23.64 35.25 34.76 90.64 78.43 30.80 33.11 43.88 36.67 71.57 5.70 84.81 2.50 5.49 74.09 27.60 74.35 87.98 21.21 34.59 72.22 15.68 95.08 1.97 -69.18 53.36 90.13 53.44 52.53 68.05 94.75 7.78 9.73 67.81 66.36 82.28 42.30 93.37 17.87 51.04 97.65 81.21 1.10 19.96 1.11 49.53 92.88 50.59 55.41 25.64 4.52 2.20 96.67 38.67 45.41 48.46 66.70 48.73 89.66 45.88 60.14 91.04 75.52 64.97 51.02 61.48 70.29 37.26 47.00 76.62 36.15 96.71 26.73 32.33 23.82 65.96 13.56 7.18 2.13 8.69 86.54 2.25 48.12 26.79 61.70 29.71 52.79 67.81 68.06 36.21 10.71 70.15 41.10 35.69 79.71 33.03 82.79 49.26 79.11 86.34 29.92 62.36 23.77 64.87 97.00 76.76 40.29 37.78 32.25 86.41 11.88 15.94 11.63 97.68 21.63 60.16 98.24 19.36 77.17 76.05 91.43 56.48 65.77 1.48 -17.66 7.83 14.76 19.42 82.06 64.34 76.79 33.11 62.96 56.73 74.95 42.95 42.21 21.93 58.80 1.51 94.67 40.60 6.15 5.78 40.77 66.71 52.70 44.08 33.56 7.95 30.86 59.69 51.49 95.64 1.69 99.07 79.00 83.62 15.23 65.84 0.24 71.37 13.28 35.83 4.70 77.66 52.87 97.72 20.56 29.56 91.32 69.66 58.41 87.30 76.70 53.52 12.01 83.89 2.23 84.10 97.62 73.20 33.12 76.58 29.36 47.43 95.87 36.99 85.12 59.11 24.89 1.76 15.87 43.47 87.09 6.57 68.82 41.93 1.66 84.69 48.45 10.40 70.50 58.24 27.94 84.41 46.69 63.48 30.86 2.79 11.18 33.39 16.80 31.91 48.33 56.10 48.88 23.64 36.61 17.84 57.13 32.17 50.25 85.97 -69.41 7.47 58.32 65.11 46.41 59.00 55.09 16.02 87.55 14.68 88.22 9.15 16.86 1.90 62.57 54.83 75.78 46.67 12.87 51.54 22.66 89.87 81.64 86.52 5.32 95.81 40.34 72.69 77.82 44.74 3.26 64.09 46.80 95.52 33.13 21.08 43.13 50.84 18.98 96.38 49.61 40.38 6.85 22.58 85.46 92.69 91.68 98.61 91.33 16.54 14.30 34.97 66.27 85.66 12.94 30.12 87.36 63.01 21.39 39.63 66.00 86.54 50.06 8.73 87.09 46.06 34.00 67.50 37.00 97.78 17.69 93.67 35.47 33.14 62.85 23.46 3.28 90.60 28.22 34.44 53.85 65.56 18.85 26.65 94.46 40.88 18.52 47.52 0.48 81.45 0.30 62.41 37.71 82.36 66.61 14.81 72.04 27.62 6.67 69.53 -67.21 78.63 18.96 19.46 84.06 80.38 99.06 43.47 83.74 41.07 42.92 68.19 47.05 93.97 31.08 38.30 8.24 66.63 2.43 14.13 44.59 77.57 24.56 68.10 78.37 5.70 76.97 78.73 32.68 43.11 72.96 12.75 33.78 83.06 98.36 27.99 70.89 44.73 88.41 66.21 14.74 5.20 0.83 35.95 48.02 18.78 5.21 23.16 26.24 47.40 56.79 40.39 5.14 2.67 45.51 0.81 38.38 96.20 39.94 87.94 87.93 59.64 66.70 73.58 49.33 90.85 31.67 97.78 0.53 45.39 58.24 13.90 85.21 55.37 66.66 69.86 90.61 36.22 73.56 87.87 3.56 38.73 3.72 58.90 49.44 50.04 59.12 88.34 89.22 46.12 79.12 40.08 65.57 52.67 41.57 0.19 25.13 95.37 46.40 78.20 -33.98 32.40 86.48 42.80 72.93 77.48 62.87 39.71 34.20 49.36 16.27 94.92 41.96 74.60 72.30 17.79 45.20 86.09 15.24 24.11 44.09 78.44 72.57 43.26 9.44 92.49 93.90 65.21 61.77 39.05 23.96 72.94 65.26 53.14 71.18 20.17 54.36 19.00 16.93 91.74 42.59 32.12 68.42 46.89 52.61 44.14 4.65 59.28 81.77 82.51 40.05 48.38 35.97 15.92 27.66 41.43 84.07 77.71 68.26 14.66 28.61 86.28 58.38 3.82 25.50 32.07 43.58 14.12 86.23 31.21 98.72 68.40 92.79 96.39 18.22 63.10 51.33 38.75 87.08 42.31 99.11 43.90 72.66 7.39 95.24 66.56 18.72 32.33 12.90 50.14 95.64 8.15 56.25 29.58 84.77 44.11 9.72 72.36 38.02 41.11 -56.82 12.39 27.97 79.28 21.70 90.78 87.60 37.79 70.44 42.22 51.58 44.82 56.25 39.64 2.96 89.32 87.60 95.32 7.06 53.57 48.44 28.87 86.34 51.10 42.29 82.23 25.73 13.90 35.94 90.32 22.34 19.91 48.38 66.93 55.26 66.98 5.62 18.48 90.47 70.84 29.70 2.08 59.02 18.76 72.60 13.73 31.45 60.76 40.50 62.71 65.51 32.94 18.65 43.00 63.71 50.25 85.28 28.82 7.42 98.54 43.53 65.51 42.49 78.10 74.22 1.28 64.70 98.36 20.09 90.81 82.65 62.00 87.80 52.41 70.72 40.99 12.84 69.57 69.55 68.61 28.19 58.55 28.92 90.23 63.96 17.13 91.10 76.83 87.42 16.36 36.87 81.79 55.72 43.58 28.98 13.40 51.90 27.08 98.85 72.31 -85.01 4.89 20.72 34.22 40.15 43.14 65.35 71.24 53.07 93.13 37.75 10.89 18.71 37.38 36.89 89.73 69.89 45.72 6.40 85.10 6.25 88.83 47.72 55.21 85.83 73.79 65.77 64.26 97.11 18.31 74.84 20.73 50.27 55.99 87.61 15.94 5.92 10.20 93.80 68.65 84.85 42.46 66.98 41.12 6.00 68.42 16.50 99.33 74.96 70.05 73.27 83.35 19.26 74.68 27.12 95.34 4.88 58.83 95.84 89.44 52.34 44.12 48.18 24.81 6.08 69.29 26.28 18.45 95.49 22.24 30.07 61.46 57.22 85.25 35.91 92.02 8.72 85.05 17.22 64.17 2.59 29.34 43.79 14.09 93.93 50.85 24.62 97.24 15.28 91.12 19.36 74.81 38.94 48.27 86.32 73.62 96.11 79.63 33.50 83.34 -28.84 45.71 68.46 56.77 75.52 9.64 3.25 17.86 49.83 75.35 19.66 29.44 95.76 36.72 85.50 80.92 67.03 17.73 90.43 22.12 0.25 22.85 43.85 66.15 27.14 92.17 69.38 1.35 72.76 59.17 83.56 96.52 17.06 80.07 74.70 29.52 15.23 48.42 12.98 71.87 76.92 40.79 97.97 7.89 71.03 20.89 28.79 14.01 19.82 74.91 18.08 41.31 46.99 73.50 12.35 89.58 5.23 37.27 56.85 75.55 27.04 73.10 29.83 28.38 66.07 1.17 11.46 58.86 34.72 87.91 62.47 71.97 26.10 1.32 26.12 37.26 4.25 75.24 93.71 69.80 59.01 73.36 34.67 45.42 18.11 71.63 54.55 79.25 49.71 35.78 18.17 19.54 50.23 79.54 11.78 47.23 64.88 72.67 26.00 72.86 -52.95 1.20 76.35 82.27 62.83 80.24 39.87 17.30 54.24 1.21 26.73 90.35 31.40 2.33 42.27 36.51 96.73 94.52 50.37 33.48 8.65 23.68 70.72 85.93 25.86 38.76 14.59 97.58 81.33 29.08 84.40 75.22 86.00 59.17 42.47 14.22 22.03 87.68 93.29 16.90 68.33 64.06 55.14 88.12 62.87 27.57 5.40 79.47 7.46 1.43 64.48 79.43 68.69 19.15 62.33 13.70 1.25 4.48 36.01 83.68 97.07 58.93 56.18 51.52 82.01 25.61 26.31 70.53 70.19 96.98 80.52 58.82 40.20 72.09 60.46 38.23 42.46 69.32 89.70 77.76 52.46 37.26 3.79 15.12 17.02 43.79 39.49 98.53 77.50 21.02 97.24 16.73 97.40 37.83 12.26 21.12 64.70 43.52 57.66 10.40 -69.19 5.79 29.24 13.75 85.91 74.52 19.90 24.85 67.15 30.35 4.48 32.41 79.18 43.37 83.01 62.81 33.84 33.93 23.62 31.05 74.73 34.25 90.63 56.91 97.12 36.77 33.47 67.95 57.08 58.11 96.64 82.74 13.42 94.73 11.63 10.47 54.89 26.21 90.58 90.70 20.00 97.99 10.23 55.62 15.36 6.01 64.42 2.61 67.56 68.11 71.26 57.76 20.00 58.89 21.68 51.98 53.34 65.89 25.82 59.35 26.75 82.85 40.97 78.22 95.13 72.27 84.87 85.46 82.83 30.50 52.20 14.49 10.08 53.56 7.91 47.18 81.91 25.93 21.08 33.89 96.69 76.89 90.94 72.51 32.90 46.08 86.18 78.51 75.85 91.00 68.55 19.85 4.24 2.01 96.71 82.80 31.90 14.13 7.80 7.30 -14.27 65.25 77.26 61.84 93.76 44.53 58.33 48.18 74.57 48.39 73.02 45.11 4.83 69.37 8.70 49.70 94.50 99.05 83.17 95.02 17.78 55.54 35.26 93.03 15.36 62.95 43.30 61.15 22.81 26.52 73.32 2.91 52.94 25.24 99.94 31.62 29.53 1.95 32.31 15.57 28.53 75.81 59.87 40.37 15.63 91.93 52.49 82.50 97.71 55.88 64.53 98.71 24.50 44.68 12.70 13.64 53.86 66.36 1.67 47.77 34.50 24.62 19.82 66.55 37.08 75.49 61.70 68.78 91.64 18.36 36.88 15.07 66.12 20.36 95.79 8.14 37.97 63.26 98.06 96.84 29.57 66.51 6.36 96.04 39.23 64.05 73.25 15.30 86.77 11.92 34.38 67.16 67.08 67.28 23.39 28.03 53.79 89.10 37.38 52.21 -92.66 84.48 88.60 33.16 46.46 84.31 56.10 92.09 42.27 16.60 33.97 16.63 36.82 11.70 93.75 66.78 10.59 59.05 40.33 13.87 68.49 87.39 1.87 68.62 11.53 7.89 28.34 14.95 31.24 60.37 18.39 45.90 52.16 84.91 45.00 63.12 53.72 62.14 30.74 48.74 66.26 2.52 76.08 34.42 15.38 12.30 57.04 38.91 93.34 92.55 90.24 51.58 14.75 56.21 76.11 9.38 67.35 78.20 12.85 19.27 43.11 63.72 19.09 7.76 3.49 35.04 14.59 90.01 38.36 73.96 52.87 71.05 56.26 89.45 71.41 75.62 8.57 22.22 1.49 67.25 57.49 60.05 99.78 27.10 48.08 19.16 39.03 23.36 3.72 74.85 89.98 75.12 0.68 37.12 44.46 23.75 97.02 19.91 90.29 0.27 -52.03 98.27 89.07 95.45 3.61 89.44 91.66 36.39 69.58 77.96 85.14 68.78 96.36 43.71 50.84 56.00 98.66 94.73 5.56 79.73 79.63 63.35 63.15 59.86 92.48 43.01 93.23 89.68 43.23 27.37 30.82 51.47 70.08 54.87 49.94 1.82 3.00 16.62 33.45 32.36 27.42 49.98 66.69 10.34 32.79 70.63 86.96 21.19 74.58 43.54 40.55 51.68 78.54 53.78 15.15 85.22 95.04 6.54 29.54 47.25 79.46 32.26 2.15 46.58 42.17 81.90 12.66 19.27 19.58 75.95 42.67 66.54 59.13 1.93 8.47 37.90 37.23 47.61 91.73 78.55 10.92 96.71 5.72 79.49 53.45 32.12 15.90 25.64 73.72 2.68 19.81 54.34 71.50 52.61 43.47 52.35 70.25 64.63 20.26 66.38 -10.74 87.71 76.09 19.28 95.55 77.74 78.82 61.99 89.45 76.01 54.49 35.13 94.00 27.70 11.30 96.64 6.80 60.18 65.96 20.80 61.66 39.88 52.51 35.92 5.64 61.87 48.41 5.51 45.54 25.72 16.42 55.04 73.00 84.77 50.47 3.34 87.84 62.36 97.16 64.81 8.97 66.22 90.97 90.14 55.67 40.38 86.15 20.22 91.03 65.07 82.60 30.85 21.75 20.90 35.75 29.21 59.92 91.62 96.15 22.19 44.52 19.24 36.02 18.37 79.59 63.66 47.91 48.69 65.40 4.37 37.23 97.06 55.52 0.08 31.96 94.72 1.37 13.53 49.08 90.01 56.22 57.12 37.93 5.38 85.67 91.41 91.67 92.49 56.74 66.58 39.50 23.68 93.03 10.01 86.82 61.73 64.03 99.96 21.45 93.64 -81.54 33.18 1.91 44.42 82.97 11.28 54.64 4.25 86.68 46.15 17.72 42.64 46.45 41.18 2.91 76.30 82.77 77.76 78.17 16.26 87.95 87.99 94.94 69.30 92.63 43.65 99.19 83.07 55.28 42.68 18.54 63.98 56.07 36.34 63.35 63.25 0.86 14.63 87.99 56.96 14.95 2.74 6.42 77.43 3.44 68.41 30.50 32.23 35.84 66.13 46.77 6.46 26.71 36.82 86.29 30.27 8.73 33.80 51.55 55.83 11.30 6.28 92.06 77.92 92.12 92.13 68.63 51.85 21.25 42.32 53.22 29.69 32.35 69.68 42.69 14.71 10.31 59.15 2.18 45.45 76.75 9.85 33.43 89.09 7.40 64.18 66.97 0.37 33.88 51.81 62.47 87.82 89.48 3.99 26.11 3.48 41.86 21.91 96.34 17.28 -9.09 62.08 0.36 45.95 45.93 78.15 12.87 83.00 90.19 8.50 78.57 56.80 63.88 8.30 16.72 40.62 58.81 12.88 18.93 54.11 57.18 66.11 60.89 63.14 47.71 51.92 64.56 27.19 67.73 16.52 23.43 22.40 22.70 47.72 50.82 60.01 44.89 39.94 84.71 94.78 21.60 96.74 78.80 21.17 87.31 93.04 20.89 41.41 91.71 21.73 57.99 83.41 37.82 69.87 0.00 54.88 15.67 26.17 6.20 25.91 19.61 28.50 59.19 78.56 46.70 70.67 54.48 31.60 92.35 65.24 33.96 3.94 45.59 13.60 50.80 29.76 84.35 45.72 81.95 76.51 23.08 78.83 15.94 52.27 6.33 66.95 62.47 70.22 50.97 34.10 9.31 41.47 40.51 46.75 20.85 50.12 32.29 94.76 66.13 93.32 -37.27 0.03 39.87 24.91 73.57 32.30 48.49 2.23 48.82 12.45 66.43 89.59 34.26 12.44 37.18 36.89 22.95 97.93 72.52 30.35 74.29 85.07 43.33 90.37 65.19 26.73 56.64 62.09 44.60 82.10 4.23 3.59 86.91 99.08 85.34 53.57 12.97 2.95 74.45 60.76 78.94 58.82 15.34 72.17 71.37 89.06 91.99 24.58 26.78 57.64 37.43 87.19 88.21 15.71 58.51 96.27 53.47 87.73 38.78 40.22 72.13 79.69 48.21 43.37 16.22 66.21 8.65 52.73 36.34 46.39 77.78 50.12 37.92 19.72 15.17 58.21 82.67 9.30 16.03 3.36 34.55 49.92 66.29 82.75 74.63 84.64 33.13 51.50 49.03 16.12 0.15 63.55 54.81 49.74 94.84 59.27 95.36 67.78 43.80 48.18 -53.54 83.46 72.96 21.46 36.54 0.33 38.00 40.86 21.18 16.39 68.90 3.29 22.11 59.55 67.81 71.09 81.28 85.34 48.75 10.32 93.37 75.81 27.48 32.05 25.65 95.47 3.51 12.36 54.65 89.18 57.17 72.78 70.01 1.84 8.56 79.57 21.00 50.60 15.46 30.40 55.66 8.32 85.40 88.57 0.91 7.30 45.07 11.20 74.17 83.60 84.32 55.20 83.61 39.92 63.48 46.18 29.05 54.32 83.77 42.43 3.76 7.01 2.90 19.23 82.92 81.96 38.40 30.81 96.59 23.53 4.18 36.56 96.56 13.16 70.45 61.67 10.68 71.72 86.43 65.70 78.01 65.12 27.73 39.49 70.82 94.94 41.95 20.11 15.54 56.20 61.89 50.67 26.36 10.67 69.77 56.11 32.80 53.57 0.25 44.76 -34.49 85.14 32.66 8.82 80.31 73.50 75.29 9.83 4.20 15.06 3.95 40.38 30.70 94.36 2.40 68.38 63.98 44.54 82.96 63.69 93.59 4.16 26.23 52.01 21.31 72.07 57.96 17.26 35.57 64.45 99.14 2.73 25.99 99.29 89.22 64.60 99.93 83.48 74.52 30.95 31.39 9.50 18.11 79.92 59.17 39.51 22.08 4.81 31.55 42.71 27.41 20.46 8.06 13.01 53.94 77.09 21.06 99.00 66.56 50.71 32.34 25.17 67.60 46.42 99.38 15.65 63.67 45.07 88.67 60.28 88.35 55.25 49.90 43.38 78.68 15.19 57.16 5.71 87.00 76.36 89.32 41.64 25.16 48.79 95.31 85.88 95.28 42.33 22.61 25.40 28.55 96.91 52.43 3.62 93.35 73.39 63.92 30.73 37.69 57.51 -19.64 57.38 27.31 41.55 43.89 34.03 95.42 35.08 36.48 62.47 28.43 15.75 7.13 22.97 2.09 42.28 5.68 59.64 25.33 95.72 42.20 34.06 20.47 96.43 95.17 0.66 89.87 38.29 81.80 7.32 29.50 79.44 19.26 36.66 22.56 28.75 64.38 0.83 18.76 19.79 26.48 63.96 11.45 9.54 52.67 65.83 59.37 49.43 82.61 20.32 28.16 62.98 16.21 87.64 56.22 75.45 30.41 46.48 22.31 89.38 4.80 0.18 67.58 70.17 20.55 6.66 59.16 63.41 43.57 58.45 33.22 36.50 26.09 15.14 18.83 73.28 32.60 29.99 30.77 9.24 20.85 83.67 63.92 80.94 79.20 13.99 1.49 14.20 38.38 32.66 34.65 14.92 82.57 67.57 20.52 78.51 55.32 45.77 54.98 45.57 -49.41 46.96 74.39 74.95 97.41 6.28 50.36 32.26 51.53 76.63 94.89 91.29 82.51 64.08 89.91 29.27 63.70 86.78 14.40 17.03 89.25 15.29 5.25 19.31 33.33 97.54 50.27 4.37 84.75 70.02 14.49 23.61 2.11 92.97 89.28 70.07 25.53 25.40 19.96 64.96 92.90 59.90 24.25 31.34 85.22 18.72 27.20 9.53 79.00 63.02 14.57 4.53 90.51 73.73 54.62 20.27 71.83 94.69 33.41 1.37 10.97 74.85 1.27 3.01 34.39 52.96 28.16 99.97 78.82 30.11 39.02 9.92 60.66 41.92 53.63 47.75 61.51 23.47 83.93 16.69 9.99 45.73 33.72 50.75 10.61 8.76 9.35 33.88 41.96 48.18 90.47 61.80 58.16 80.52 32.47 64.13 54.02 90.61 90.61 25.03 -36.82 73.84 23.05 90.18 31.39 17.28 3.81 59.42 8.52 36.88 87.78 81.88 80.98 76.33 43.93 94.87 29.86 27.70 34.71 95.61 17.62 91.85 64.32 47.05 78.10 64.34 23.51 91.72 46.05 78.97 78.26 53.65 4.51 68.45 28.89 19.97 6.52 76.14 74.37 86.94 61.17 97.83 78.54 26.26 26.68 5.44 83.49 8.32 43.98 50.58 13.57 3.62 12.05 65.11 17.45 1.01 6.80 56.53 87.62 66.21 76.54 62.66 40.02 72.34 10.96 74.94 10.17 26.43 46.69 60.00 7.74 20.62 37.72 58.67 14.33 62.80 79.25 56.31 11.68 40.04 86.53 77.43 44.59 97.38 70.26 43.35 35.19 11.66 91.26 29.22 49.61 33.51 5.44 20.25 69.97 91.06 81.02 28.10 11.86 82.00 -18.47 6.07 3.00 16.64 59.35 38.19 76.72 53.17 53.89 16.98 40.22 49.73 43.43 93.60 44.73 99.41 0.00 53.38 19.76 44.29 97.47 44.86 43.43 24.21 29.83 30.32 17.39 93.11 79.10 81.50 10.15 57.97 37.64 88.95 59.51 8.31 83.70 41.59 7.09 60.93 10.22 68.94 64.63 99.69 81.57 51.32 40.18 2.76 47.69 1.24 65.41 37.29 66.53 43.01 39.10 4.82 37.00 23.56 9.56 68.32 39.80 29.46 15.03 9.86 15.25 1.63 17.78 24.63 53.92 40.79 53.35 58.81 75.03 45.39 87.69 29.26 5.41 11.03 23.39 71.58 6.69 69.42 16.82 84.13 97.50 11.88 77.23 50.87 82.53 37.77 70.79 65.63 38.21 91.58 41.32 92.36 14.01 72.47 44.27 74.18 -36.26 77.85 85.25 4.96 53.97 50.44 97.15 52.83 73.81 54.61 16.54 41.79 52.93 72.26 97.83 41.21 85.75 26.13 46.05 75.86 92.13 28.77 13.51 59.98 51.39 10.40 87.39 2.19 50.08 29.18 76.23 96.78 80.82 65.60 20.08 28.55 19.43 92.65 97.93 31.20 19.06 64.76 24.03 4.94 84.84 93.97 27.31 4.98 93.29 30.51 41.40 73.84 40.40 0.10 70.47 17.84 66.91 53.09 88.34 16.30 53.75 65.17 67.22 39.00 76.33 22.77 61.94 44.41 0.65 7.70 41.62 72.32 19.96 30.43 52.49 55.63 36.80 17.33 40.05 46.16 91.87 13.37 67.81 11.03 20.73 80.46 26.35 35.02 90.40 5.21 8.29 95.92 76.79 21.04 95.32 55.97 63.42 23.83 76.27 84.09 -79.92 41.28 14.25 12.02 77.83 24.52 43.75 62.67 50.41 92.09 74.79 83.11 53.22 83.50 77.35 19.54 42.89 65.84 48.19 5.72 44.19 81.08 93.89 10.21 1.92 39.11 16.89 58.04 13.48 95.23 24.06 88.65 90.23 58.70 23.73 10.54 45.58 98.21 1.21 3.40 6.45 64.36 31.15 5.64 85.85 76.60 89.17 65.16 28.79 23.60 60.70 98.19 65.23 68.41 38.04 21.64 58.30 4.66 22.03 35.98 86.78 4.90 43.39 10.44 92.18 38.47 67.62 56.34 44.98 62.70 4.05 48.90 69.12 11.29 55.23 46.07 79.17 57.51 8.30 75.32 42.11 30.98 87.79 37.61 16.46 59.49 10.67 49.86 56.51 57.88 39.27 10.12 6.09 51.97 65.52 33.26 6.90 80.02 60.59 12.26 -68.61 56.33 78.49 65.92 28.37 11.77 49.50 87.88 17.19 17.27 67.46 89.14 7.22 7.66 1.47 51.04 93.12 17.27 25.37 11.92 63.24 71.11 9.10 73.76 16.12 31.49 90.70 71.37 78.56 14.44 76.13 54.70 74.41 72.21 15.90 30.51 25.74 38.99 48.39 38.02 76.42 54.20 85.18 45.90 10.92 94.66 97.60 62.12 2.91 91.25 2.02 21.94 6.41 39.17 67.54 79.78 77.60 83.74 8.86 83.85 49.48 44.71 6.16 44.27 75.98 84.90 58.21 78.95 32.70 89.10 5.12 85.94 56.39 20.91 18.71 35.08 20.74 6.95 24.90 1.63 93.78 49.87 68.77 41.12 68.34 19.33 88.56 21.33 48.44 79.04 3.15 12.74 51.98 27.29 2.80 19.64 38.97 13.15 35.59 43.57 -78.37 22.24 10.90 99.53 70.76 71.82 44.26 31.61 88.49 65.38 29.31 42.36 88.59 38.43 4.57 8.81 78.91 30.71 79.91 49.27 3.50 32.73 21.40 61.61 6.04 11.09 98.02 8.15 27.97 65.31 69.72 88.61 52.57 64.29 89.83 74.05 82.77 94.14 21.11 21.37 36.86 18.09 16.67 95.57 3.55 29.68 17.92 39.06 16.59 10.65 56.63 12.84 58.47 61.29 23.53 74.25 62.02 62.27 56.80 8.88 71.25 34.95 79.85 69.19 46.81 9.89 31.40 34.86 43.32 19.49 25.53 99.53 82.77 94.53 90.80 78.53 36.28 32.51 94.23 31.85 84.62 99.70 87.75 60.61 43.38 80.34 80.22 25.58 89.72 6.88 52.04 30.89 21.13 79.81 63.99 92.03 2.25 64.96 7.53 38.33 -61.37 66.13 89.49 3.06 79.03 9.57 1.84 8.52 60.64 70.75 65.16 14.27 55.61 77.27 25.62 87.30 64.47 13.45 9.80 61.66 72.38 16.11 89.72 51.92 46.33 72.38 10.14 59.89 8.03 11.35 31.98 77.67 77.04 90.12 32.32 64.24 57.19 39.24 11.72 0.19 54.27 49.64 87.78 81.91 53.14 47.17 18.59 92.55 44.12 81.17 61.14 38.00 3.53 40.19 67.19 68.65 97.54 99.99 27.30 89.99 91.93 4.74 17.02 56.45 68.92 14.68 51.11 33.50 63.39 12.71 75.69 25.96 47.53 66.17 27.48 35.47 68.98 78.83 91.12 61.32 67.68 0.31 90.62 58.13 78.99 22.19 90.47 26.31 59.14 97.62 5.63 92.04 33.40 49.89 11.09 66.89 39.20 54.99 66.56 23.69 -22.93 7.37 95.81 17.60 56.56 92.91 85.31 99.50 82.34 75.93 45.39 65.23 81.58 87.45 92.14 82.42 5.38 71.23 16.36 42.19 51.45 23.33 42.92 77.34 63.39 87.44 73.96 8.43 49.58 83.67 50.43 69.74 66.06 42.14 85.71 6.21 31.39 13.74 10.03 96.96 95.55 42.48 95.11 81.25 67.15 22.23 97.11 17.96 95.14 41.52 35.51 93.44 17.94 80.43 99.43 61.16 94.35 65.69 28.86 3.73 75.01 45.73 78.22 7.28 26.87 22.56 30.31 48.47 33.23 8.11 74.65 39.97 19.20 62.59 41.23 55.48 33.84 16.34 26.76 75.03 28.70 67.12 83.83 61.32 37.36 61.40 74.03 76.44 81.65 76.18 46.43 81.34 33.09 1.52 50.66 71.32 95.64 17.23 88.47 29.43 -17.94 2.76 36.81 71.15 38.10 23.86 35.04 5.15 23.39 26.83 16.76 83.46 45.53 35.71 69.06 35.23 64.58 80.46 31.39 24.83 47.35 71.74 38.28 6.53 8.56 92.07 67.44 70.78 11.98 8.31 69.52 59.16 34.35 20.19 63.49 58.85 87.52 4.01 79.10 7.78 3.78 92.17 7.87 84.37 80.70 93.47 27.11 3.25 17.23 67.85 22.78 64.69 31.07 80.41 16.74 86.85 12.01 93.53 44.47 22.49 20.87 73.46 38.42 76.00 86.32 46.37 11.49 16.80 34.32 5.29 64.48 84.60 16.70 14.48 47.42 12.35 79.46 3.36 26.06 87.51 62.00 19.93 40.70 13.74 29.46 2.62 88.60 29.48 72.44 54.67 6.52 73.54 55.03 92.55 0.33 9.67 67.66 35.97 19.95 79.17 -10.93 89.80 5.40 22.26 10.23 49.10 0.55 71.00 78.99 37.72 47.75 65.22 57.69 8.25 54.33 80.16 63.15 72.83 26.33 34.37 17.15 76.69 98.66 9.22 20.71 56.03 81.78 85.98 19.88 89.04 75.73 86.51 72.52 57.40 46.16 33.37 80.66 77.92 2.74 71.25 46.93 90.75 96.51 92.72 36.73 28.63 84.35 43.36 44.28 96.22 99.58 96.86 26.05 10.56 65.70 96.25 82.94 53.60 44.79 93.07 34.85 58.72 60.35 17.68 47.48 67.40 46.64 68.12 44.03 95.85 5.19 57.95 94.89 45.86 54.65 29.17 58.27 15.82 23.26 37.01 15.26 68.00 17.03 71.83 67.93 25.84 36.24 96.89 8.80 80.43 35.11 65.84 30.16 80.35 63.60 73.87 12.99 41.84 91.59 39.75 -97.90 54.71 34.01 87.83 99.24 92.99 55.94 54.46 34.20 11.64 85.37 49.71 97.97 67.61 32.12 23.68 58.46 93.40 94.18 38.41 56.15 96.34 78.61 23.22 62.91 87.54 20.00 60.31 17.53 49.61 67.34 12.11 79.85 38.26 71.85 16.83 25.65 11.83 43.86 6.83 20.41 71.40 9.81 69.16 13.13 91.46 23.30 72.61 44.75 64.18 61.70 98.58 41.80 63.01 29.57 41.93 27.97 40.29 84.98 89.28 6.06 73.36 51.20 24.34 92.20 90.18 67.74 32.95 55.74 43.32 3.18 40.10 25.35 80.45 91.44 50.36 53.29 28.72 28.14 61.05 72.02 32.83 32.96 89.83 12.60 55.73 53.06 6.42 68.96 95.29 33.98 13.25 38.78 76.90 13.26 2.37 84.50 28.23 0.35 19.99 -87.18 25.55 78.70 21.49 10.56 99.30 63.52 14.73 70.93 60.48 58.24 48.09 45.40 21.08 20.50 51.91 92.02 40.18 30.22 54.77 84.01 21.99 67.67 22.84 53.43 45.35 14.26 36.18 91.61 8.77 33.85 43.31 51.11 60.83 22.49 35.07 15.85 3.61 67.60 0.77 91.02 15.43 98.45 20.51 60.05 32.41 10.37 78.83 31.17 18.53 43.52 66.78 64.15 61.80 81.12 23.24 31.13 97.52 20.73 66.23 73.16 99.90 81.28 30.80 27.65 40.98 42.00 51.49 53.66 84.90 89.35 2.10 59.47 76.55 93.96 35.75 27.43 12.00 66.33 25.47 46.53 91.10 67.61 14.36 85.68 3.64 50.73 73.49 46.33 88.26 70.40 6.99 33.56 42.53 63.48 74.09 25.03 3.05 79.15 28.45 -43.31 71.31 22.95 64.13 3.69 78.21 10.12 25.66 60.10 26.93 67.23 9.41 99.93 32.02 31.39 15.63 99.38 1.12 76.37 82.73 41.67 93.52 64.68 73.42 43.31 55.53 43.85 99.39 27.93 40.57 53.71 22.89 16.31 71.87 60.58 68.55 68.71 33.84 81.16 34.90 97.47 65.08 57.49 7.16 62.42 31.01 42.00 37.18 12.58 51.50 83.90 84.29 17.10 53.39 1.25 24.19 96.00 95.05 78.40 39.83 96.84 3.68 37.23 86.95 32.64 43.37 35.67 19.45 46.32 95.75 63.37 20.97 21.61 81.06 94.78 86.89 28.72 35.51 16.41 59.09 53.56 15.49 28.73 77.02 86.31 93.45 56.81 59.94 79.53 13.81 36.78 48.97 26.87 96.58 30.62 69.84 59.25 55.72 11.66 45.50 -93.69 63.85 79.88 50.16 65.61 82.69 62.83 99.40 30.39 75.32 76.70 90.74 12.44 68.43 10.56 46.30 20.29 15.99 31.43 89.74 62.46 97.02 87.29 82.35 1.69 9.88 21.92 29.85 92.14 92.27 71.53 84.22 17.67 38.84 43.30 54.50 36.32 51.20 15.24 95.64 26.97 26.52 79.55 72.36 24.74 94.61 26.57 92.48 14.16 82.50 23.58 20.13 74.87 38.48 34.85 55.17 28.00 90.10 48.51 1.94 20.49 47.30 54.78 52.96 73.20 46.15 43.56 3.46 20.06 13.15 29.76 49.47 24.73 70.35 11.27 79.83 80.34 61.26 59.20 11.96 47.47 33.79 84.05 47.51 82.92 49.95 79.70 27.77 96.64 61.74 76.21 99.07 42.24 89.90 70.38 5.82 44.62 92.37 66.93 43.99 -49.07 68.05 36.29 35.37 19.85 22.06 67.79 48.50 9.81 96.48 69.06 21.50 87.25 61.98 87.22 80.62 95.25 46.42 91.62 28.59 56.53 41.37 46.98 78.10 70.66 26.70 29.32 3.01 23.93 60.76 80.80 39.58 52.26 49.20 19.06 14.49 30.06 65.69 63.97 80.54 23.94 91.36 91.15 43.70 26.68 28.05 74.35 93.19 24.50 1.92 20.85 47.81 67.63 85.90 15.97 66.91 81.86 64.62 32.24 69.91 21.46 11.52 77.01 0.81 28.32 86.83 81.20 70.80 74.35 81.14 54.99 73.96 78.86 40.24 45.76 27.20 27.63 55.96 94.54 25.47 11.70 59.86 73.27 74.44 18.90 96.37 61.04 82.72 49.07 20.42 4.60 73.72 66.95 96.78 40.67 82.00 53.27 12.85 98.76 80.53 -38.13 86.51 33.03 39.35 93.01 56.66 25.24 44.05 38.53 63.73 4.67 53.97 16.00 55.52 58.24 60.63 8.56 79.80 80.21 30.10 87.07 59.34 20.86 23.47 72.89 68.36 6.24 25.06 24.89 0.99 21.12 4.27 61.82 87.35 27.22 8.14 18.27 83.24 96.88 44.42 28.89 75.91 12.96 39.98 47.51 39.13 50.38 54.68 49.85 22.35 17.34 82.23 94.83 9.97 32.35 88.68 57.00 96.74 29.07 45.28 74.29 10.88 73.77 93.12 40.57 22.42 42.91 80.27 2.94 83.92 22.53 99.66 61.57 32.21 3.62 97.13 59.88 61.88 45.97 29.31 57.49 98.45 81.77 32.72 94.25 64.77 65.58 3.36 28.12 28.76 66.74 82.34 10.70 93.22 28.46 19.45 17.84 90.52 12.92 59.14 -69.54 20.49 23.78 63.43 55.48 13.42 20.29 77.02 15.38 35.00 55.03 85.25 32.23 81.15 98.49 77.41 5.93 90.39 95.93 98.77 27.76 67.93 7.97 45.02 74.15 48.56 99.21 0.87 81.30 42.50 44.91 46.72 49.00 44.71 56.95 71.13 22.05 76.03 28.19 14.92 94.39 39.53 42.81 24.03 55.16 82.52 96.06 15.06 35.14 11.65 85.30 3.23 6.70 96.20 53.91 84.68 3.25 75.09 37.93 11.47 10.98 62.17 16.42 55.81 82.53 4.77 2.50 66.63 38.34 48.97 68.67 16.85 27.15 10.20 95.90 25.91 78.42 4.52 54.53 27.04 51.17 13.02 34.04 57.58 19.18 74.01 85.79 1.53 62.16 75.81 98.90 98.14 8.89 56.50 96.60 2.11 56.23 32.18 79.48 67.44 -68.95 15.53 32.02 99.85 9.93 74.51 81.85 15.89 34.60 92.85 75.82 77.15 61.56 7.85 73.65 31.98 36.55 61.18 78.17 4.20 9.09 63.73 72.62 93.64 70.53 67.12 15.90 62.69 20.74 11.40 52.79 22.86 77.84 5.24 49.68 93.28 70.21 47.71 71.94 28.14 43.66 45.46 6.18 37.90 63.14 16.70 25.99 14.84 26.31 63.55 44.21 79.35 96.40 52.21 89.48 5.06 28.59 27.46 10.90 44.21 18.05 15.29 13.67 56.45 93.00 92.19 4.86 45.91 81.86 97.64 41.22 58.06 64.99 51.63 99.42 78.97 58.86 26.37 23.40 87.43 62.30 47.98 40.38 64.89 47.04 28.93 68.01 33.45 97.58 22.43 50.57 44.77 21.88 85.56 18.64 9.40 63.23 2.22 54.21 29.67 -32.50 27.90 77.68 31.27 16.74 98.24 28.66 21.74 20.83 65.48 64.88 40.62 97.73 39.50 5.41 29.02 14.71 76.46 61.77 17.65 89.21 16.98 7.53 19.59 31.99 94.25 46.09 24.60 41.72 66.11 69.00 44.72 81.17 29.25 70.22 9.91 74.36 91.66 25.81 81.19 42.40 93.25 30.06 56.25 9.27 48.82 55.33 30.94 77.33 92.25 73.74 62.51 57.02 89.92 61.17 60.20 62.20 12.36 80.90 49.08 24.48 70.82 57.85 9.33 6.22 40.18 67.02 26.04 79.00 60.07 5.19 25.76 44.77 95.73 25.00 66.90 58.16 97.06 98.68 99.86 31.91 67.20 5.95 85.26 65.98 70.49 28.80 80.69 41.11 4.35 3.98 91.61 59.21 14.25 32.84 36.92 17.89 21.59 5.82 80.15 -62.95 42.20 62.64 84.36 74.02 84.75 90.27 43.43 4.32 94.78 57.24 73.10 55.42 77.84 77.77 18.67 84.65 68.83 17.26 60.24 67.57 55.54 50.17 30.14 66.07 18.44 47.73 25.27 7.10 46.26 17.54 17.69 55.80 65.16 97.00 67.46 61.79 33.40 80.30 20.64 6.90 68.33 8.62 70.37 11.88 32.43 76.46 9.47 0.65 77.95 46.90 72.72 40.21 86.34 22.76 29.47 83.98 73.99 21.90 36.66 58.68 19.79 57.79 62.54 13.57 83.62 45.28 27.60 57.39 45.24 59.97 14.72 15.03 42.25 43.86 83.67 38.30 65.77 9.27 26.19 44.18 31.89 62.65 27.98 0.37 40.72 72.55 91.57 84.58 38.25 13.50 4.89 23.63 10.82 7.81 72.46 75.67 47.97 61.97 78.42 -58.07 99.51 26.49 47.77 73.75 65.55 70.05 48.57 98.21 6.03 97.53 92.41 38.82 82.88 46.89 53.05 80.56 13.97 16.17 72.34 50.17 14.49 83.64 59.66 52.23 61.25 46.45 26.24 20.01 8.69 60.66 9.90 54.01 34.54 16.43 31.38 84.32 18.52 31.63 13.41 80.85 8.00 68.68 67.71 64.71 74.51 80.81 96.00 30.12 12.55 49.75 46.04 16.05 60.22 36.33 60.52 18.09 52.63 88.68 85.02 7.03 0.82 62.40 68.41 2.30 35.04 84.57 45.79 74.25 82.41 94.96 31.85 0.60 10.84 57.74 74.41 25.56 56.27 35.03 0.09 28.77 40.67 17.44 47.66 65.88 40.45 89.62 57.50 97.89 98.74 93.00 85.04 15.09 47.20 7.32 50.05 55.26 80.51 63.52 19.27 -89.61 17.73 49.32 92.41 23.76 4.71 8.03 10.15 4.47 11.75 38.31 55.51 27.69 54.67 0.97 68.09 31.46 42.09 28.91 9.01 59.46 99.40 37.43 45.96 74.31 60.52 36.64 56.12 79.80 49.38 60.43 83.54 11.45 33.04 5.16 34.52 79.81 85.69 64.34 8.33 93.43 36.87 18.28 54.44 53.88 72.25 14.34 89.83 86.54 34.54 61.29 53.74 73.23 43.69 73.02 10.88 19.79 41.56 62.22 39.69 17.42 59.83 19.72 87.73 91.47 87.02 51.44 80.37 92.23 34.94 30.01 64.18 11.53 73.87 4.63 23.59 9.61 59.28 16.75 91.48 1.00 34.48 26.35 50.69 45.84 15.87 22.32 18.86 58.93 91.85 29.06 25.03 23.05 13.26 80.48 18.09 95.66 1.21 8.37 5.59 -22.66 20.21 71.26 97.41 62.16 58.08 81.66 4.30 0.24 62.12 33.64 69.48 67.33 28.73 94.42 13.51 66.12 74.85 92.81 8.85 80.59 57.88 25.69 99.40 2.61 99.26 77.44 66.98 48.07 11.71 8.83 79.18 78.57 32.36 1.72 96.23 46.04 75.69 80.06 48.12 23.31 73.66 29.55 3.84 49.87 34.44 40.74 79.21 59.34 48.03 61.46 43.12 50.98 37.54 88.16 9.35 97.82 43.42 29.74 57.20 34.12 95.94 78.79 19.55 18.16 12.52 76.97 7.59 79.20 91.20 50.92 73.29 96.69 29.89 58.71 63.05 6.21 30.90 55.82 86.76 42.44 41.78 49.72 59.37 45.59 88.41 12.42 53.47 39.35 37.62 42.38 90.69 63.03 12.00 22.05 30.26 26.55 37.56 45.12 52.22 -59.51 55.67 75.35 66.85 60.21 67.24 94.90 26.52 4.01 2.92 15.02 77.23 32.09 68.86 29.67 13.45 63.70 17.97 67.28 38.13 48.47 84.01 33.00 20.49 12.77 35.76 90.87 23.43 58.41 78.01 78.32 18.69 76.87 77.60 90.71 13.59 4.43 97.75 79.05 20.51 36.12 0.68 84.40 62.49 18.70 7.43 10.18 82.65 87.68 91.98 76.89 28.86 70.36 75.34 36.76 99.33 38.37 61.10 24.11 82.52 18.10 80.63 46.66 74.00 79.70 31.49 79.81 10.13 27.66 94.13 78.77 88.50 54.11 62.43 38.80 95.42 14.35 37.52 39.50 83.17 7.38 69.86 47.63 31.88 71.79 55.32 13.95 5.78 14.36 59.69 34.90 32.45 37.48 99.86 42.89 52.42 42.22 43.07 82.15 60.06 -46.26 2.15 37.63 64.27 10.61 18.42 61.51 87.82 15.04 52.71 70.03 94.01 99.81 46.22 50.95 42.56 68.43 62.44 20.49 7.34 63.17 80.58 23.33 43.86 74.83 85.44 99.08 14.32 59.57 50.76 22.48 63.15 55.35 45.54 60.57 66.16 20.97 15.93 17.59 27.44 24.38 9.36 68.60 5.42 68.97 69.80 95.49 41.31 57.60 47.73 60.94 79.89 25.72 76.40 12.38 28.84 25.94 94.20 53.56 17.63 72.10 79.08 82.74 82.29 8.10 9.94 76.76 17.79 54.99 52.47 14.22 86.09 61.60 1.13 49.10 18.43 56.72 12.85 58.53 53.25 1.89 91.17 35.02 18.06 21.39 46.08 26.72 56.53 26.05 88.81 30.59 9.41 10.39 52.65 8.07 57.77 66.38 17.27 80.72 60.72 -97.40 87.13 98.26 90.52 18.98 24.91 73.91 0.30 2.68 17.35 65.88 85.67 37.27 35.55 47.63 77.73 41.86 63.74 22.03 7.30 63.03 49.46 45.66 24.85 69.72 47.63 51.88 24.23 82.91 68.19 84.00 84.98 58.46 65.98 75.44 22.78 66.90 7.15 23.03 22.12 59.21 45.54 44.59 6.95 71.23 88.77 48.35 42.16 83.03 19.26 30.49 16.65 25.65 94.51 65.65 61.13 70.27 29.28 59.68 27.50 33.37 41.68 75.32 17.96 10.51 58.94 34.54 20.68 32.22 70.35 62.01 25.93 53.79 29.86 3.76 75.94 16.74 79.19 92.00 81.78 35.29 44.72 3.20 92.48 71.46 88.53 20.39 23.69 69.04 80.51 43.07 17.88 38.20 8.32 58.22 52.23 35.28 0.59 0.76 59.89 -33.24 10.42 43.01 72.20 40.87 56.72 7.54 31.55 73.13 51.67 98.32 52.60 78.29 66.93 82.31 27.77 43.88 20.27 0.80 40.43 67.75 24.92 18.89 80.55 39.67 64.87 15.39 90.16 14.94 34.89 81.16 40.30 65.61 55.47 27.79 17.76 58.17 86.48 22.74 7.65 84.51 23.43 19.36 49.57 58.78 56.72 75.15 91.04 13.22 27.86 53.49 67.42 69.20 56.58 38.98 89.95 10.16 39.41 71.39 2.89 72.30 47.47 10.85 41.30 95.83 68.40 58.59 88.14 92.08 54.00 57.65 14.25 83.14 61.91 23.47 2.79 27.98 28.34 4.50 67.85 62.46 61.37 74.41 25.51 84.66 48.13 79.07 28.22 49.11 25.32 4.95 71.69 53.99 16.49 11.25 72.96 85.91 28.40 20.47 37.39 -96.40 72.70 60.58 46.53 16.57 47.83 60.65 35.67 30.16 13.64 15.09 21.47 51.33 21.03 98.15 46.52 93.39 55.66 26.68 13.15 59.45 68.68 73.34 71.96 74.19 41.74 77.24 41.12 68.27 69.56 22.29 7.96 38.26 4.94 2.59 86.72 30.87 13.35 26.99 7.71 93.64 98.97 73.95 71.73 69.12 53.62 7.90 64.81 44.15 58.37 14.27 65.33 74.40 64.71 86.15 3.68 29.88 15.80 34.67 27.16 65.94 12.35 37.88 27.60 63.65 48.80 91.44 53.18 47.74 7.32 72.37 29.80 54.78 9.37 38.09 43.22 26.07 49.45 89.58 22.37 52.76 14.24 1.70 77.37 1.28 61.71 3.76 61.43 83.01 46.28 74.39 83.13 44.89 12.31 65.82 80.59 38.29 23.43 65.46 10.96 -31.93 33.77 73.20 85.87 100.00 70.06 78.01 43.80 89.71 57.73 74.01 89.16 31.32 70.74 54.90 76.47 14.97 78.67 78.37 84.12 14.76 23.27 76.94 53.13 27.64 14.82 86.09 56.77 26.20 62.28 62.29 40.19 54.89 88.78 5.13 66.91 80.71 79.51 98.15 45.56 62.82 74.80 14.35 61.20 53.69 52.70 96.58 67.12 70.57 50.08 16.18 12.82 97.93 52.05 49.42 81.41 99.98 66.47 56.28 3.55 31.73 21.29 85.16 79.94 92.90 12.20 1.26 10.06 73.92 2.71 69.22 42.24 41.10 32.44 48.27 15.92 4.08 20.35 76.19 98.12 51.04 98.28 48.62 99.64 79.95 36.80 29.75 97.52 86.03 80.98 37.19 41.86 47.96 81.83 97.03 94.76 8.41 15.46 92.27 2.87 -33.22 29.53 2.50 98.82 27.61 66.26 87.40 30.16 7.55 56.59 26.62 16.02 32.41 88.30 95.11 51.80 61.97 34.94 17.27 85.43 50.04 94.26 28.23 67.75 88.11 34.89 89.38 21.64 43.48 73.59 97.44 97.86 56.61 71.74 54.92 69.20 83.72 58.42 62.33 69.27 10.78 8.21 52.50 72.72 21.21 20.86 31.07 12.57 80.57 21.16 91.31 95.78 97.44 64.38 92.58 40.51 58.91 24.35 76.91 62.22 81.51 91.16 82.73 14.49 21.62 93.43 38.37 7.41 29.82 78.62 17.30 19.24 70.72 63.90 22.54 38.62 31.09 27.76 40.25 68.14 23.61 77.54 45.01 24.80 54.44 1.42 33.38 49.91 18.15 15.23 56.32 64.15 0.69 49.32 33.41 47.34 40.08 98.42 98.87 86.38 -88.34 99.02 68.47 44.04 96.43 35.10 60.91 41.81 53.77 45.76 34.31 4.86 20.39 78.57 50.68 67.86 45.43 17.02 3.49 85.86 39.85 72.47 19.42 6.68 43.24 35.38 81.06 69.67 24.05 28.53 7.85 4.56 70.65 12.19 81.14 84.59 69.61 95.12 66.81 39.55 36.82 67.62 86.96 38.26 97.38 59.74 29.97 36.48 56.69 67.97 63.45 78.47 6.64 44.74 73.27 62.32 70.07 50.44 50.62 20.82 37.41 39.52 18.80 62.74 48.70 36.42 38.84 86.91 20.10 35.67 45.87 39.52 89.78 21.88 90.86 66.79 35.32 19.37 45.31 13.39 12.23 28.83 40.31 41.47 94.66 11.53 90.06 39.20 68.16 29.65 53.25 32.49 60.69 51.48 95.21 58.60 14.86 72.40 51.22 47.20 -84.53 13.82 35.45 95.82 34.14 5.60 47.55 91.52 44.14 71.45 35.14 58.74 74.07 81.06 16.57 31.74 90.46 77.27 36.58 52.95 71.63 19.47 23.26 34.18 14.98 54.95 59.29 86.69 65.68 3.22 68.16 31.36 19.61 68.41 31.80 33.43 97.14 53.91 59.07 1.38 60.17 89.55 26.61 6.94 2.47 75.29 88.32 61.36 2.03 46.76 73.33 8.61 77.78 46.42 58.75 93.87 80.21 89.67 93.41 15.68 52.17 20.06 68.89 45.16 47.34 84.44 13.95 94.91 66.37 59.58 92.66 89.07 27.00 32.70 21.58 3.86 65.26 69.92 59.54 32.85 4.94 79.98 84.77 15.56 87.72 55.44 85.64 0.76 95.47 40.54 72.45 54.01 83.11 32.08 73.07 13.30 44.43 72.97 8.21 56.58 -46.52 59.43 14.15 91.16 32.96 64.89 74.93 1.02 42.10 87.75 68.13 60.46 48.09 42.17 85.97 99.77 34.44 7.52 66.31 17.62 67.38 32.19 43.30 42.31 69.49 99.78 12.66 96.04 32.62 60.17 43.53 76.42 14.89 44.39 81.68 34.13 4.60 86.93 17.64 34.83 21.09 36.44 0.08 96.52 76.33 44.42 84.54 88.85 24.70 1.81 96.10 89.49 56.27 94.08 47.22 52.28 66.77 80.78 16.70 81.01 74.65 40.78 64.93 35.56 8.72 24.88 79.49 15.69 40.86 1.44 51.40 81.81 25.37 92.97 60.47 46.90 20.41 91.61 43.82 49.69 8.79 37.26 70.84 6.25 81.68 0.91 22.76 89.65 90.27 96.87 91.88 81.08 57.91 56.09 77.05 69.61 43.90 69.46 49.56 57.17 -39.14 9.66 73.16 60.02 23.84 96.70 70.14 79.90 17.90 61.45 9.73 54.73 52.81 61.07 70.80 9.60 66.14 8.21 74.00 81.99 76.97 17.32 31.25 57.66 36.24 38.20 19.58 64.65 35.70 54.03 40.91 81.80 41.37 39.97 11.32 84.27 10.36 89.19 20.23 24.15 48.89 94.58 42.00 87.06 51.51 72.06 12.63 9.07 5.60 58.87 66.10 11.61 79.81 48.11 53.57 88.63 20.11 69.00 95.63 43.51 14.90 70.81 70.50 67.00 80.40 39.52 50.87 74.20 85.63 6.20 67.49 9.19 17.94 97.46 3.91 54.57 84.90 67.92 42.03 70.45 75.21 41.29 66.28 78.53 85.75 42.35 40.99 96.41 31.36 87.30 77.18 89.94 40.78 28.98 16.75 73.45 20.15 68.23 26.26 94.31 -26.63 89.38 3.61 66.90 46.58 31.08 33.35 10.03 83.28 91.36 78.92 41.42 59.92 58.54 93.50 18.79 11.72 57.01 79.59 68.77 66.30 86.79 41.94 56.38 85.42 21.97 30.87 25.02 29.10 86.06 24.19 89.27 42.52 32.01 70.22 4.61 29.40 13.12 42.92 4.81 45.58 41.04 52.63 69.90 50.56 60.51 63.30 59.13 42.26 30.20 4.98 25.64 37.73 5.89 95.04 94.07 36.40 82.71 93.17 24.15 0.61 17.92 52.51 51.66 24.56 89.22 6.78 50.54 70.89 69.44 10.15 8.14 65.16 13.30 22.26 8.73 1.28 58.10 27.39 49.71 34.15 64.61 26.01 77.76 20.14 63.19 59.78 7.22 6.12 79.13 14.77 91.34 42.18 52.51 2.05 40.62 41.64 71.90 45.68 84.11 -14.14 28.79 9.23 6.81 69.20 46.03 89.09 3.34 23.39 85.79 34.43 34.27 12.26 57.40 52.43 91.88 53.42 38.11 70.55 22.84 31.22 6.55 54.95 3.16 4.88 84.13 38.98 72.96 13.16 44.13 5.72 56.53 1.88 24.45 6.24 29.23 13.77 94.79 71.83 38.85 87.00 38.42 59.34 26.78 85.56 64.74 11.20 0.62 21.97 56.92 23.78 77.35 51.11 3.45 39.14 56.92 45.31 73.86 60.61 49.67 5.49 96.35 22.80 43.61 1.31 48.32 12.74 91.00 91.01 39.78 84.75 97.85 96.67 86.84 29.43 47.47 76.18 65.93 41.67 22.00 54.33 86.69 17.67 69.42 34.97 22.75 1.77 63.36 23.56 50.65 87.83 12.01 9.90 11.26 22.32 37.21 81.90 83.12 55.28 0.37 -71.96 50.16 11.28 46.93 22.98 57.79 41.49 50.90 62.29 90.88 67.22 58.99 56.66 58.15 89.99 46.41 29.40 38.82 80.00 73.27 2.38 34.99 2.92 24.51 68.54 69.29 32.43 14.98 16.52 16.05 64.12 33.49 86.90 24.62 3.62 75.95 63.51 72.85 25.17 42.57 13.50 57.97 30.62 10.81 89.11 99.61 84.01 66.87 64.07 2.12 58.57 14.37 10.52 34.89 10.43 48.40 83.08 31.21 99.88 29.55 79.62 20.54 6.65 24.08 75.84 80.72 31.94 31.73 9.81 60.28 64.07 95.16 31.19 22.48 73.97 78.53 32.36 38.19 74.25 21.30 68.24 69.74 86.28 94.99 69.48 12.65 25.86 56.87 49.07 53.01 10.53 46.36 77.08 45.23 70.36 70.86 52.92 58.48 96.97 90.37 -91.36 73.93 9.62 81.70 69.76 57.38 32.44 74.67 54.42 37.84 2.74 5.10 31.46 57.37 66.09 26.90 33.98 51.92 38.87 20.10 7.60 68.50 50.45 83.66 29.50 37.12 26.82 16.81 14.13 11.10 43.90 25.72 30.94 16.66 98.50 14.41 7.03 34.90 74.76 65.39 37.69 66.12 56.65 49.93 98.97 93.95 94.51 5.50 18.16 51.41 65.82 49.99 73.47 19.67 28.14 18.40 53.04 51.89 30.83 32.95 17.03 76.05 83.60 99.98 23.60 86.28 31.74 90.66 30.91 31.62 44.83 76.12 86.37 79.87 16.77 69.48 75.00 52.94 91.56 24.42 68.33 11.13 40.36 8.69 87.99 47.20 69.88 14.80 94.14 8.69 16.65 70.48 0.35 67.23 6.73 79.04 48.64 7.16 2.92 66.78 -59.16 4.67 98.35 76.18 33.81 0.29 61.54 10.30 6.30 93.59 46.62 93.58 49.23 12.98 46.24 72.68 79.28 37.55 19.82 39.48 2.63 86.25 28.33 60.46 90.19 8.56 24.22 48.71 24.97 94.59 34.12 71.77 28.54 88.43 37.76 52.72 95.77 9.00 82.57 14.96 2.62 89.40 58.14 95.28 41.14 86.56 45.30 48.76 28.78 84.85 35.06 71.60 13.55 9.12 20.36 91.20 56.07 67.72 81.58 92.80 97.28 22.98 69.47 92.80 75.73 36.96 7.31 41.83 86.39 78.72 44.39 93.27 40.81 86.71 27.25 45.86 55.97 88.36 50.51 54.73 29.99 24.33 7.70 44.92 19.15 18.83 0.73 9.20 79.93 83.22 62.28 7.02 39.43 5.02 69.22 61.85 20.58 98.05 54.28 30.96 -26.58 67.65 73.67 48.36 23.28 57.06 43.24 55.12 83.17 33.37 9.17 29.89 84.59 4.54 54.81 49.55 81.73 20.52 90.66 55.19 90.07 20.57 63.64 41.68 58.98 84.53 32.60 58.01 89.08 54.25 97.73 8.21 85.09 88.06 79.56 79.83 61.46 17.14 75.87 47.76 39.87 89.36 86.45 82.74 82.94 61.55 90.73 37.88 78.22 14.06 13.60 7.37 1.78 14.35 35.21 43.33 29.09 96.71 80.42 73.32 68.92 73.00 20.70 62.85 49.53 71.16 9.56 68.33 45.72 8.15 8.52 2.51 60.24 48.20 95.91 1.78 53.22 88.63 37.77 38.22 88.64 37.14 45.97 40.68 66.98 49.69 0.74 62.61 76.64 92.07 86.14 77.19 10.97 93.96 72.58 37.70 67.92 40.35 47.09 9.66 -1.50 23.13 5.82 77.36 36.33 82.62 40.17 95.89 74.07 18.83 79.85 81.06 82.14 3.16 48.56 55.58 68.32 82.30 65.65 72.28 16.46 44.92 61.87 20.16 14.04 26.99 20.01 75.75 82.97 4.55 37.95 16.22 85.57 37.27 61.42 66.38 27.61 28.35 28.44 3.27 16.47 13.61 15.86 4.65 10.87 61.75 15.08 55.77 52.16 65.22 97.72 92.02 9.86 7.11 14.00 4.57 56.79 90.34 61.25 34.40 64.02 82.08 10.47 18.84 47.27 94.61 62.57 46.43 84.22 40.34 0.11 57.23 26.97 15.50 64.02 70.23 50.45 32.19 5.03 63.35 91.09 16.29 3.12 25.38 41.51 40.52 52.03 90.80 65.77 55.62 75.64 21.40 66.67 37.84 38.35 94.26 17.67 23.55 27.37 16.04 -22.46 74.20 53.68 2.53 20.87 17.02 85.64 59.42 31.85 72.12 82.08 85.79 64.63 24.10 64.16 79.31 23.87 17.71 0.06 65.15 46.17 80.94 19.44 45.97 68.92 4.96 45.05 29.66 84.95 35.27 9.72 60.01 97.42 15.81 37.00 91.49 81.03 60.18 85.10 92.10 26.31 90.86 95.05 80.92 41.58 41.94 62.83 39.84 91.50 10.57 84.38 38.19 66.77 1.36 84.30 58.32 10.03 43.50 5.99 24.53 21.27 92.61 88.13 88.88 46.16 20.69 93.62 61.83 10.32 31.16 76.26 44.68 52.74 44.36 37.41 78.02 82.80 76.72 27.24 94.49 93.20 61.43 70.52 70.38 36.47 74.01 28.01 81.60 38.57 4.10 32.42 29.83 83.49 6.26 6.75 91.86 29.85 54.69 69.72 8.86 -18.30 35.42 83.09 16.50 2.95 83.21 20.68 98.08 68.87 33.78 50.55 16.92 47.36 45.88 12.55 98.54 32.04 27.21 32.56 44.25 81.36 74.61 12.10 88.08 75.12 85.22 63.18 70.47 92.09 22.31 55.31 14.63 12.32 52.31 9.22 89.45 88.12 29.29 93.85 40.75 64.73 18.32 97.35 51.70 4.07 71.66 15.05 79.04 12.21 59.32 13.79 56.28 77.59 12.76 37.57 70.09 59.42 39.42 96.62 10.33 98.91 73.03 84.76 30.73 24.70 21.24 1.54 64.72 35.39 53.94 69.00 23.20 71.60 42.20 58.51 96.15 56.47 68.13 85.23 8.60 68.26 79.42 53.79 44.44 59.43 82.79 25.33 46.59 14.15 7.12 33.78 14.25 43.83 90.35 85.57 52.87 12.63 87.53 88.25 90.45 -43.70 64.68 53.62 81.35 98.31 40.21 26.89 9.56 91.90 83.15 20.19 62.75 24.00 84.23 0.87 25.37 61.31 70.02 15.68 40.03 33.05 21.04 97.68 86.54 61.28 55.53 5.35 69.67 45.97 95.21 42.43 73.87 19.67 81.54 29.47 64.80 95.02 1.74 12.48 0.10 7.03 60.39 57.78 34.00 52.67 59.60 89.37 23.40 95.32 21.17 75.75 35.64 2.84 68.25 31.21 39.32 6.95 26.04 26.19 73.74 36.28 72.37 34.68 40.93 48.56 80.21 96.96 20.53 71.47 98.83 79.64 84.97 90.59 91.65 34.76 40.63 98.22 32.69 89.97 2.85 66.07 80.36 73.32 69.62 36.33 99.25 2.25 67.81 1.09 2.28 91.81 13.58 28.77 80.52 38.08 40.98 61.30 49.16 94.28 4.80 -10.29 38.88 72.40 87.43 77.07 89.66 85.10 72.85 57.15 67.54 14.49 20.59 39.95 50.00 24.34 94.51 39.14 32.56 65.24 63.92 90.24 82.68 27.51 54.15 30.51 68.50 40.58 65.87 40.63 11.09 19.50 20.77 54.89 97.53 56.22 28.36 83.90 93.02 75.10 5.75 88.89 23.60 55.47 87.99 70.97 47.27 12.30 61.87 46.50 24.58 60.78 93.41 22.39 59.18 39.34 79.68 98.25 34.48 81.59 62.66 1.81 83.52 12.84 7.91 24.09 6.66 30.78 12.50 97.76 77.63 43.00 47.47 75.33 91.34 80.64 36.94 1.40 59.38 42.70 79.82 24.57 80.27 60.22 6.29 14.93 75.34 71.96 74.61 37.10 6.55 27.74 67.71 52.96 74.98 89.34 33.33 4.29 58.76 88.84 89.17 -10.78 40.50 1.67 54.66 19.20 79.75 42.16 37.15 43.79 37.05 76.08 28.28 30.18 65.63 47.74 8.12 10.85 73.08 92.26 35.54 12.43 10.54 92.98 7.65 58.90 76.41 5.42 34.31 22.86 11.85 68.84 66.62 78.24 15.32 8.11 21.81 31.38 77.20 31.49 67.84 69.33 79.25 63.32 74.44 90.11 35.40 48.87 43.84 20.93 2.43 85.51 81.03 80.78 89.59 79.99 74.01 53.09 80.76 44.79 19.27 98.30 15.24 69.77 1.52 87.15 67.85 45.78 64.37 58.84 66.90 62.32 68.28 17.60 40.31 21.71 15.80 66.02 92.17 81.65 48.47 8.39 3.81 95.35 22.78 82.32 53.19 13.38 88.13 8.18 9.78 79.77 27.43 75.79 23.43 6.95 40.84 19.90 80.80 56.07 2.17 -94.67 28.33 8.11 79.95 84.16 57.38 50.52 81.13 32.62 49.21 21.74 84.28 40.92 31.20 98.76 12.52 9.70 25.07 19.37 65.45 80.35 20.43 28.93 87.93 88.17 79.56 36.39 48.23 17.76 81.48 82.75 82.61 80.82 71.11 66.61 48.67 95.60 61.81 57.36 49.54 96.11 39.76 46.92 5.65 15.35 13.54 65.27 95.25 58.65 15.57 19.76 74.40 96.69 34.17 27.44 67.83 51.64 23.47 54.80 74.61 31.76 40.73 4.00 78.34 30.65 18.66 99.45 96.26 64.40 83.68 95.48 53.50 53.56 21.94 42.38 93.10 50.71 34.87 50.14 20.61 40.87 18.71 49.06 35.43 34.07 36.35 11.11 89.92 81.91 49.68 66.65 46.53 36.59 37.31 60.04 74.52 72.94 86.92 41.58 10.31 -12.91 38.51 69.26 6.69 25.49 65.24 66.30 63.98 46.48 67.75 2.88 1.91 41.30 12.49 68.17 27.24 54.59 65.73 64.59 78.51 48.75 26.64 57.09 15.78 28.37 89.12 21.10 87.67 13.57 60.33 67.84 71.49 27.94 38.96 29.49 89.60 17.49 82.60 67.30 47.26 21.60 67.90 99.77 89.61 30.65 32.19 23.71 50.11 84.55 98.07 63.46 1.52 84.32 59.92 69.22 40.29 51.36 97.71 84.01 80.49 30.67 96.05 22.34 31.81 0.40 25.46 43.93 38.21 86.69 64.61 29.47 56.28 21.68 38.35 4.98 56.74 61.09 86.33 48.26 65.28 55.71 38.52 15.98 43.27 38.21 62.74 7.05 97.74 25.61 50.49 74.61 63.18 93.90 47.08 21.89 27.10 26.28 58.19 56.73 69.77 -63.02 53.13 35.12 50.25 48.42 86.19 85.03 70.12 51.38 95.44 58.69 62.99 22.38 72.21 14.40 99.74 60.52 74.26 81.59 72.64 64.80 35.47 27.14 16.97 13.58 0.61 90.84 0.49 11.49 93.93 80.90 46.05 77.16 98.45 53.06 10.14 11.14 28.62 59.03 22.38 37.14 31.66 47.02 88.78 18.84 59.17 17.87 58.72 53.08 23.97 63.53 36.12 39.33 50.33 9.88 18.68 79.06 24.08 82.28 61.99 15.04 72.89 35.70 92.61 30.52 76.76 63.70 71.91 16.41 59.38 56.60 78.51 10.54 53.79 35.07 98.43 97.00 26.59 19.18 21.95 66.88 97.89 52.29 67.60 4.42 93.04 94.37 65.00 80.60 59.29 3.20 56.66 81.54 81.12 68.13 10.19 70.70 41.68 48.07 3.91 -63.28 11.03 44.50 71.70 87.65 87.27 12.33 46.54 22.82 18.59 58.19 39.17 91.31 10.99 79.48 75.10 56.75 26.87 54.41 6.86 97.10 40.46 52.65 70.59 41.44 83.37 78.73 74.38 81.05 94.79 0.79 74.56 52.75 17.97 60.18 13.87 28.78 82.68 11.50 55.12 31.98 66.69 69.50 74.66 3.31 53.45 91.73 60.06 39.20 97.49 9.41 98.34 74.28 31.28 14.04 27.16 62.15 91.55 45.05 61.00 60.32 56.41 35.05 23.15 70.59 66.62 83.60 24.39 98.14 97.75 48.64 57.70 53.02 39.34 25.07 84.01 16.52 25.67 57.86 2.82 22.87 55.03 81.21 28.32 62.40 46.84 30.66 4.62 57.73 85.31 50.25 40.64 32.52 87.37 41.54 56.70 68.53 10.68 60.82 22.34 -73.77 5.87 70.71 40.99 6.02 63.53 22.07 7.62 28.46 55.53 94.93 38.18 59.98 68.94 6.39 93.13 48.28 14.45 58.10 99.11 89.95 46.36 83.32 20.28 8.16 57.62 4.66 82.50 1.28 58.96 26.64 36.66 50.83 50.25 6.75 55.43 1.24 55.60 89.98 7.92 72.46 54.05 49.14 87.71 76.98 92.52 54.09 91.65 81.37 8.03 60.90 27.72 45.94 27.70 99.98 90.63 82.98 8.89 76.28 30.13 82.04 79.30 29.48 60.98 80.88 97.66 40.96 11.30 39.63 23.94 3.64 71.59 42.97 16.43 92.77 66.23 64.08 92.70 81.36 78.15 95.70 77.22 1.94 99.18 9.54 60.66 9.55 29.84 18.25 39.74 25.83 43.54 8.91 39.62 52.72 94.76 41.35 3.41 55.71 7.20 -6.36 79.87 76.71 20.54 37.30 39.69 92.17 62.54 65.76 41.40 14.87 62.12 71.51 3.48 0.76 86.12 73.54 18.62 26.61 84.38 10.46 29.47 13.82 88.14 98.30 69.72 92.41 54.98 83.61 79.02 98.37 26.82 85.96 52.91 65.31 63.42 9.03 77.03 29.04 93.33 52.25 41.17 48.34 58.36 98.92 0.99 68.16 67.37 55.49 53.51 76.99 74.42 78.60 30.45 24.36 98.52 80.18 53.30 86.23 60.82 14.35 40.08 24.72 79.66 27.85 76.40 55.05 0.55 16.55 71.29 0.66 10.86 7.83 52.89 2.09 58.92 99.87 46.12 9.87 56.53 73.00 42.69 96.42 54.80 28.80 27.06 38.38 40.47 54.59 64.30 10.44 58.48 68.40 86.70 99.52 84.03 96.48 19.98 7.69 81.09 -54.29 0.15 25.19 47.03 76.64 58.52 27.02 41.12 44.13 83.94 97.95 91.05 20.52 13.98 30.31 87.20 99.70 46.50 51.48 67.90 98.83 60.77 71.25 84.24 22.39 35.53 18.85 41.24 28.24 59.79 24.05 96.71 32.40 53.97 55.76 50.03 6.12 85.91 91.26 56.68 64.15 74.70 94.87 14.71 88.64 42.15 55.13 26.84 91.34 33.71 38.66 21.52 18.40 75.46 27.43 30.36 6.25 72.83 76.98 88.71 23.04 68.34 23.91 3.11 49.04 10.16 58.41 56.77 64.64 13.92 85.27 22.25 61.09 20.98 63.66 8.88 82.28 63.80 68.73 27.32 47.52 95.47 95.23 73.72 71.52 56.00 96.64 25.46 84.10 85.42 35.47 80.68 11.18 90.69 75.91 84.54 6.31 23.12 91.57 27.69 -57.95 49.45 76.77 65.38 82.39 89.63 32.70 91.37 16.92 90.82 28.05 45.35 0.06 34.17 11.08 9.90 49.09 70.36 47.61 65.02 75.60 13.00 16.07 44.72 17.50 83.84 42.41 18.64 61.15 34.73 54.13 13.37 47.94 27.31 59.17 45.99 10.54 69.98 29.70 13.70 34.90 42.42 52.15 53.70 47.33 93.36 70.04 87.74 8.48 44.94 77.09 87.14 97.57 76.40 72.65 51.57 45.37 67.37 57.12 75.37 80.39 67.60 77.51 15.20 98.60 25.13 35.83 92.68 35.94 87.55 84.94 57.73 80.58 8.67 65.48 4.40 32.72 17.17 64.41 84.29 40.47 91.74 41.54 73.45 71.24 43.36 19.99 63.22 54.10 88.29 1.89 23.38 36.80 67.09 11.51 48.16 47.11 98.53 66.13 11.18 -18.39 72.50 6.31 27.03 32.76 15.04 47.78 96.29 93.34 64.87 12.44 2.36 75.64 37.14 50.45 81.45 55.70 19.81 70.59 17.82 25.45 89.49 27.85 38.45 16.54 60.13 42.80 97.87 60.19 39.05 25.16 55.04 13.21 88.28 3.36 19.30 30.62 82.64 0.66 36.65 28.10 47.41 60.52 54.11 1.87 34.47 56.11 46.64 49.16 56.49 43.21 5.41 15.78 35.16 44.09 3.87 5.18 65.90 59.74 24.63 45.15 97.16 64.18 16.03 79.36 68.04 28.80 55.13 82.82 79.25 71.10 7.97 54.93 49.74 53.47 24.77 89.47 64.44 82.15 37.80 19.68 92.11 94.49 70.06 78.12 1.84 25.94 64.47 36.17 81.11 30.89 2.45 85.59 4.96 17.78 3.11 50.21 74.91 21.28 49.55 -15.63 54.43 37.40 68.97 58.86 8.61 57.97 84.26 58.34 31.28 26.44 16.03 16.29 46.97 98.78 69.40 93.80 26.03 70.88 95.31 14.76 50.02 7.76 22.04 94.37 99.25 24.32 86.85 88.09 43.34 91.01 6.15 24.64 41.21 74.85 95.95 64.59 72.27 72.13 3.56 93.83 20.22 51.27 96.05 84.60 89.74 58.41 55.00 63.29 82.22 66.98 51.26 65.39 73.04 50.42 84.91 28.54 74.54 52.98 45.52 82.64 53.86 91.87 64.75 47.62 48.52 57.14 51.28 4.86 97.56 45.47 81.14 83.24 26.13 58.32 75.30 55.51 21.80 26.24 47.52 64.26 98.66 81.24 55.20 11.12 51.83 94.37 29.00 76.03 9.85 13.03 31.65 44.87 83.04 13.88 55.09 29.64 75.36 69.99 53.35 -0.42 47.64 5.97 89.49 23.17 81.08 38.89 11.74 30.58 21.10 26.89 58.04 66.82 30.07 65.91 27.73 7.40 91.68 38.35 63.75 99.43 21.00 15.67 63.46 9.91 90.96 40.26 68.68 17.26 95.59 28.39 41.41 98.82 74.48 71.12 14.85 22.05 25.01 4.65 17.09 93.72 48.71 17.79 13.96 67.58 66.36 50.48 99.99 56.29 22.39 77.84 54.73 2.46 65.21 78.86 59.71 70.88 77.65 42.89 61.59 71.63 66.38 74.01 69.69 64.26 40.15 61.78 90.78 29.94 59.11 99.65 89.41 21.01 73.31 54.93 70.35 18.51 13.67 33.40 16.42 17.94 60.37 81.59 9.13 37.11 32.99 3.38 55.29 74.67 3.02 41.02 28.36 38.53 91.93 10.65 24.38 62.90 69.72 26.51 41.13 -87.53 3.53 78.14 91.95 62.13 33.96 3.07 79.63 37.47 20.04 35.55 30.30 88.00 59.62 14.35 67.38 53.66 65.05 33.87 26.93 39.99 66.67 92.93 33.06 65.51 54.80 47.86 40.42 37.27 45.93 24.95 26.55 34.79 80.37 87.23 27.51 77.91 5.37 49.18 17.49 44.90 39.41 18.55 59.07 35.06 36.96 19.96 98.11 15.97 7.43 85.42 85.90 66.82 14.85 27.98 85.43 92.02 33.00 46.75 40.96 58.53 4.59 58.93 36.96 17.79 52.81 14.47 22.35 75.26 31.29 73.16 31.00 69.04 15.34 22.74 70.72 64.97 96.43 62.84 15.20 10.92 4.61 23.31 14.70 32.84 35.95 78.05 56.37 27.83 16.81 6.71 89.31 42.50 84.86 96.68 65.24 9.22 11.76 97.74 28.41 -14.16 69.94 8.37 71.04 26.16 14.10 44.23 29.44 58.86 97.86 42.99 48.04 3.17 58.69 27.66 52.38 98.04 51.66 71.74 23.10 9.75 48.42 38.11 14.78 84.46 94.05 24.00 53.18 81.19 61.83 18.68 42.73 33.01 69.13 69.54 34.34 77.00 79.52 74.68 87.57 32.61 68.96 4.38 34.49 8.22 30.91 95.45 75.55 44.89 67.04 84.28 28.74 48.72 84.85 11.49 13.62 92.30 93.66 24.33 91.99 46.19 72.35 74.07 17.05 67.73 36.90 13.05 90.81 76.60 90.07 55.88 64.35 5.18 98.97 13.02 78.89 44.48 6.66 21.92 83.89 49.72 10.26 30.98 67.66 58.73 52.94 24.51 92.10 31.88 28.88 32.44 19.16 94.43 72.97 71.21 42.24 49.46 6.88 81.09 22.85 -40.80 27.63 77.28 62.06 16.69 6.56 77.01 62.48 69.61 32.68 91.71 19.02 53.24 9.48 34.63 85.17 3.03 75.52 94.44 89.27 30.30 24.35 18.94 91.40 6.19 70.89 93.75 80.18 66.16 9.58 16.20 19.99 91.38 6.39 85.81 75.66 48.24 83.10 8.37 95.30 5.87 54.34 5.44 18.44 16.08 13.98 95.38 51.75 75.67 92.52 38.04 99.86 23.94 72.12 49.00 69.10 56.82 76.72 77.69 21.17 67.33 75.96 92.34 97.82 52.17 70.01 46.27 29.33 60.75 72.52 8.41 57.24 75.93 49.19 36.11 18.86 87.09 50.22 3.73 11.05 18.66 96.40 21.26 23.83 59.61 41.94 55.44 2.85 71.25 60.55 1.33 53.76 64.87 16.10 40.59 95.13 16.57 27.26 77.10 43.13 -43.79 81.93 69.01 99.61 80.40 50.92 60.86 5.58 58.91 88.59 27.07 30.43 97.35 73.67 44.02 17.98 8.76 48.67 45.78 39.12 85.65 24.29 45.02 46.30 16.11 52.35 21.01 36.53 67.94 60.01 6.95 46.21 70.86 74.72 49.88 0.13 13.06 49.14 73.03 6.74 67.57 17.05 90.66 44.58 65.92 83.91 49.55 9.44 53.89 85.34 21.00 63.93 27.83 26.70 6.12 40.63 84.14 46.69 74.59 67.24 86.40 56.75 52.26 84.02 57.64 44.72 72.16 31.69 57.20 49.44 58.22 37.11 95.16 86.08 56.24 74.91 96.48 87.54 25.06 18.73 28.53 99.12 8.59 81.95 26.67 46.95 17.83 82.11 30.14 13.78 41.57 62.36 1.58 69.17 23.28 43.79 67.86 86.73 92.42 23.47 -22.82 61.68 83.74 30.93 30.13 68.84 49.71 26.35 42.11 28.24 32.46 93.70 46.15 40.33 73.00 33.48 21.15 31.79 59.51 53.11 14.47 19.61 28.31 99.86 15.87 64.91 78.53 17.71 57.61 58.49 12.43 55.16 30.26 3.71 37.08 17.42 78.34 79.97 60.22 92.92 84.58 53.45 38.69 38.96 98.41 60.92 55.34 71.44 13.12 83.21 83.06 0.66 92.22 15.02 56.07 57.85 57.54 73.90 95.60 43.40 76.62 99.74 73.60 28.47 90.85 73.72 86.56 86.59 36.30 42.70 68.65 46.35 52.46 23.60 84.35 91.78 23.22 97.87 28.44 27.23 81.86 52.84 19.26 90.51 29.59 27.73 88.59 25.53 13.68 38.51 68.41 9.14 46.39 52.36 18.09 20.20 77.87 1.22 48.18 36.54 -25.54 19.67 27.82 67.60 77.93 88.61 21.17 36.98 86.37 0.68 54.92 81.47 4.47 36.26 81.54 55.28 56.33 81.64 62.13 87.12 35.74 62.18 61.12 47.58 63.21 62.09 89.72 65.80 68.17 59.07 75.80 92.85 47.06 36.24 58.84 90.42 75.60 56.01 18.07 47.30 97.18 14.43 18.20 52.34 36.49 4.57 24.78 31.29 52.11 30.19 30.72 1.34 51.99 63.83 50.65 67.36 79.63 90.88 77.38 25.71 8.93 77.69 12.11 35.01 11.16 29.11 52.47 86.98 63.48 87.09 54.80 54.31 33.59 73.32 97.58 39.18 61.63 39.47 61.84 49.25 49.87 65.90 36.88 61.24 61.16 19.37 1.83 80.44 63.08 45.68 10.24 35.39 2.53 13.84 27.95 40.07 17.88 41.64 93.20 7.82 -70.06 10.05 65.95 46.70 38.41 6.25 38.23 93.63 58.04 41.24 2.22 40.47 29.05 16.59 28.78 20.37 89.34 15.55 33.12 26.66 61.81 60.87 95.92 63.76 41.47 90.45 66.91 37.13 21.08 37.87 88.67 58.72 46.21 99.32 78.22 30.15 28.06 10.98 97.17 48.09 35.53 35.79 48.19 40.18 16.54 71.57 36.34 61.10 62.22 92.79 32.87 8.87 58.39 2.35 66.50 18.56 40.79 77.30 61.94 21.19 15.81 50.06 62.57 63.77 7.84 38.00 4.63 14.26 99.21 44.17 49.20 60.78 43.40 73.17 20.62 12.34 24.47 16.30 66.52 62.46 52.29 37.85 41.01 90.34 61.16 11.43 56.24 94.36 25.36 70.57 52.11 99.94 72.34 96.82 1.85 58.11 8.12 79.25 14.89 63.32 -57.68 78.10 46.17 24.09 45.50 16.59 54.09 91.97 52.66 76.69 19.97 64.18 18.65 64.86 54.58 23.46 67.94 24.70 4.50 57.62 5.41 18.84 76.11 31.04 27.92 67.27 74.98 35.43 30.81 72.31 97.52 1.55 87.76 62.48 77.93 92.28 99.91 56.94 18.39 42.20 94.10 21.72 35.48 17.33 50.79 66.05 68.48 86.21 41.49 32.11 9.26 10.31 71.21 27.29 94.81 70.30 55.01 77.52 10.43 20.38 97.34 73.82 39.60 8.81 58.81 57.02 43.46 73.16 57.67 49.42 17.01 10.49 62.26 84.97 23.59 21.18 23.46 53.23 93.67 32.62 12.83 88.80 90.79 79.50 96.96 70.04 20.04 5.27 81.00 70.30 71.82 54.81 16.15 16.67 85.97 30.95 91.81 24.17 68.12 17.37 -92.71 23.44 91.10 93.73 94.80 22.75 13.57 1.90 97.26 74.15 26.19 21.03 31.73 84.16 99.96 83.17 92.29 57.80 93.88 34.18 56.40 65.26 22.69 89.28 86.96 74.15 44.24 18.07 78.31 38.10 97.27 19.54 74.20 94.28 93.24 16.09 38.19 10.19 98.84 39.62 68.21 41.54 2.57 21.61 66.29 25.47 54.42 59.24 77.17 9.77 98.10 9.47 29.52 55.45 98.17 17.82 51.69 56.82 3.14 11.25 31.43 62.21 24.28 87.78 44.40 27.36 4.16 91.80 83.37 21.59 63.12 23.86 11.31 42.04 97.01 55.99 5.02 80.73 71.83 60.90 24.98 5.12 81.61 62.50 75.55 83.68 67.20 20.33 28.12 82.15 67.28 7.12 73.69 20.96 95.00 45.96 62.43 64.26 73.31 54.23 -3.14 8.23 22.07 87.20 59.59 5.31 71.01 94.87 27.77 72.06 97.40 4.28 5.64 9.90 55.88 76.56 6.03 17.69 2.27 92.60 61.78 93.83 18.41 42.39 14.53 46.69 51.37 17.27 32.00 29.70 27.81 40.33 2.83 75.07 31.79 27.23 95.86 95.09 88.22 75.25 50.59 98.11 41.80 27.88 92.98 86.42 77.14 3.48 66.41 83.51 13.68 38.21 40.75 47.70 54.88 30.98 51.06 20.14 20.94 58.44 14.59 77.18 42.03 33.42 9.58 58.73 59.79 30.33 96.12 95.01 34.08 60.74 75.56 89.73 84.68 73.04 64.58 47.97 36.36 88.00 36.26 62.76 12.29 5.76 43.33 83.47 63.44 63.18 44.57 51.65 6.41 94.54 0.59 88.48 63.75 76.84 16.86 7.95 95.54 40.86 -36.71 3.76 39.62 66.65 29.00 56.72 16.63 61.39 47.99 42.86 12.33 18.91 12.41 15.46 85.04 21.75 19.24 23.03 35.41 78.06 15.69 52.24 46.88 31.55 63.40 70.44 42.56 93.95 20.35 96.42 74.16 66.12 81.50 52.78 39.92 39.74 56.15 95.54 1.60 64.41 34.16 34.27 23.58 22.30 93.06 6.48 58.14 33.42 72.33 36.61 59.98 33.31 88.60 76.62 92.07 46.21 75.93 37.15 57.90 56.64 30.15 10.00 13.82 93.34 23.81 69.49 34.32 52.49 89.32 31.06 66.30 2.23 81.54 95.37 92.56 3.22 56.04 63.77 12.95 43.76 35.16 13.18 8.28 49.82 3.31 8.71 90.42 8.23 5.80 0.56 91.04 26.91 51.05 80.35 80.46 0.46 52.29 17.79 5.34 33.93 -0.54 48.43 63.04 23.23 86.89 80.72 11.33 93.16 57.48 77.47 25.44 10.46 90.01 62.66 80.60 16.05 83.50 54.35 64.16 30.78 16.11 17.51 37.84 27.06 15.07 26.26 68.89 69.71 44.87 94.31 88.21 33.57 94.98 16.43 75.72 70.15 60.40 44.20 25.35 45.59 48.22 32.11 50.91 89.29 67.29 13.17 39.36 48.37 8.15 88.74 63.97 12.66 48.61 5.32 42.85 72.92 10.90 68.67 47.36 73.84 55.81 55.72 15.85 63.02 51.31 30.10 52.55 9.91 81.78 26.90 97.96 30.72 61.17 61.97 14.20 11.28 32.32 7.91 63.52 24.94 14.50 57.36 99.97 49.04 98.97 49.61 27.09 52.04 98.84 68.05 76.42 96.29 17.02 15.86 90.63 31.64 65.55 92.66 37.53 95.81 -18.86 29.75 38.85 92.02 18.85 29.76 25.79 37.20 48.31 88.20 88.04 55.74 96.93 68.73 38.96 5.23 41.74 59.47 82.56 38.55 76.60 98.86 44.85 98.23 47.23 64.13 35.85 31.68 54.17 89.97 85.43 38.04 48.47 88.09 13.20 52.36 79.45 33.39 25.39 77.35 7.15 39.11 25.98 56.89 19.05 20.04 47.20 49.11 68.92 26.61 21.91 84.45 6.05 17.78 7.78 74.25 76.03 20.34 66.91 48.47 47.96 4.60 81.37 8.73 36.39 53.30 4.32 73.12 88.67 15.58 16.93 92.57 53.93 8.43 88.15 59.97 87.35 75.41 88.31 65.63 9.85 60.28 61.25 53.02 3.27 5.01 17.59 37.77 36.69 44.14 80.82 92.99 88.28 50.55 83.38 19.53 70.02 50.28 77.33 5.75 -89.04 95.30 2.65 86.46 10.63 40.08 84.67 45.92 20.74 20.54 24.79 10.13 24.82 99.62 75.62 69.96 16.59 68.23 14.70 17.26 37.09 23.83 40.27 73.20 28.57 21.34 85.87 91.94 25.88 19.35 31.08 23.26 73.46 43.61 27.24 82.96 40.34 82.10 55.76 98.39 23.98 61.80 9.47 61.42 73.53 69.83 81.49 24.70 86.04 98.17 21.69 99.87 18.26 94.11 31.92 47.84 8.08 75.90 62.34 15.78 19.55 67.18 71.07 30.68 2.10 48.53 93.25 12.56 54.57 81.30 8.59 2.89 56.21 89.71 97.65 88.92 16.55 1.83 76.88 14.51 41.29 99.91 5.06 9.40 44.49 47.02 62.46 63.44 65.82 36.34 69.92 13.51 37.31 70.84 92.15 1.50 97.12 8.76 57.00 21.48 -67.50 3.04 63.17 32.83 81.98 63.63 46.50 14.65 38.29 69.93 52.58 81.71 55.46 49.55 20.74 32.44 20.93 84.14 71.35 90.10 15.37 20.77 62.04 23.07 99.87 29.77 77.14 25.27 87.50 96.31 26.62 28.07 16.18 53.09 16.61 57.66 8.12 20.00 90.01 91.19 36.90 4.34 43.98 67.76 50.82 49.20 10.97 17.74 27.57 69.00 27.77 3.07 54.80 45.77 1.46 69.64 73.48 85.99 38.08 52.78 33.61 98.83 69.09 37.24 68.74 45.06 17.01 38.77 1.32 57.91 78.64 58.36 63.72 58.78 63.01 11.95 66.06 58.19 83.56 67.81 50.18 25.16 82.09 53.00 64.66 73.27 7.80 31.94 70.97 13.34 67.95 61.98 9.82 28.10 39.31 88.25 27.66 17.16 10.72 5.12 -17.83 18.89 1.80 50.82 10.73 40.74 50.53 41.59 39.32 40.85 89.42 5.20 64.37 9.29 48.00 35.87 22.42 6.85 62.91 30.34 27.27 35.96 55.82 4.68 99.38 15.54 14.56 26.39 77.73 5.98 48.11 38.58 84.95 61.86 19.71 37.13 52.92 46.34 57.98 26.30 93.11 88.31 47.10 59.42 49.36 94.53 58.81 2.86 93.69 86.78 92.52 99.90 24.93 56.14 6.69 10.42 71.15 60.47 28.98 7.92 56.30 54.96 88.31 22.89 0.72 32.60 32.16 32.48 39.70 71.20 93.96 19.17 72.69 99.94 98.64 7.37 12.34 30.06 8.78 39.12 85.28 66.30 6.71 68.60 55.22 18.27 34.83 11.99 72.79 21.49 80.97 25.59 45.45 54.15 18.81 85.47 9.11 34.08 94.22 73.33 -14.97 37.80 24.12 48.47 6.51 79.27 45.13 55.64 9.67 2.10 42.63 88.04 29.49 45.94 22.90 33.88 68.14 27.04 27.38 7.59 62.59 63.88 59.71 48.31 39.36 39.63 24.15 52.05 74.83 80.80 89.66 14.41 51.71 87.09 47.47 99.84 17.29 55.77 54.41 30.82 88.07 38.86 7.08 75.89 50.61 43.62 58.69 92.81 59.50 92.44 83.22 69.20 50.96 8.75 52.35 79.28 50.16 5.49 61.57 43.53 64.34 45.15 27.45 97.78 32.50 52.97 43.23 58.08 20.81 26.10 44.93 35.83 23.17 74.31 95.73 12.61 11.99 36.21 50.02 40.27 34.79 85.34 56.08 64.11 71.93 62.76 61.23 12.92 89.37 55.39 71.91 73.79 12.26 41.69 94.38 26.59 56.33 38.76 67.81 93.80 -64.87 12.41 77.67 19.83 18.91 29.38 15.63 4.01 72.94 28.97 26.93 43.26 16.54 99.93 45.96 85.32 95.08 62.65 52.58 1.99 52.97 92.06 60.53 68.72 82.68 69.47 59.83 84.87 44.76 25.04 24.16 93.60 89.19 60.57 67.22 46.86 87.98 5.47 52.82 5.07 7.83 88.63 98.19 34.40 63.08 9.97 67.45 42.38 69.34 66.14 22.28 16.83 39.84 17.25 6.77 34.70 95.42 16.03 36.83 46.05 2.73 61.15 67.07 91.05 0.64 80.90 62.94 6.97 89.71 38.03 66.70 5.70 74.15 2.68 39.95 48.21 97.86 52.58 57.09 56.94 61.98 29.47 65.10 20.57 1.11 78.47 66.72 13.94 5.17 67.19 79.08 76.00 44.51 72.70 9.79 82.10 70.68 25.72 16.38 42.17 -35.53 57.63 47.68 31.38 9.34 81.19 13.71 73.81 97.81 21.05 43.92 23.11 64.84 13.11 71.63 71.27 83.69 92.52 45.48 11.21 25.18 3.52 63.46 38.92 61.89 5.41 64.39 64.06 12.85 13.94 48.03 52.14 38.69 41.70 82.61 91.89 63.63 71.75 85.52 1.72 35.12 17.68 99.16 70.81 21.21 7.82 83.64 33.89 59.79 99.80 38.99 75.07 60.18 44.05 7.19 38.57 98.26 91.91 33.89 5.23 38.15 71.67 99.41 99.28 73.43 89.64 48.29 36.40 5.40 10.11 69.22 32.22 26.55 86.68 89.42 50.73 14.90 1.28 96.32 5.87 76.12 75.78 40.78 56.53 59.28 36.76 17.53 94.82 20.83 39.86 25.14 24.55 56.15 82.91 9.41 97.83 88.09 25.71 54.81 52.74 -77.99 90.24 16.46 32.72 80.51 40.23 8.04 80.31 12.04 30.08 37.23 22.71 2.29 64.13 38.82 18.32 4.12 7.39 58.99 90.19 53.54 42.50 32.63 84.20 80.20 48.24 95.91 60.44 5.55 23.83 62.88 19.71 57.61 79.13 45.00 46.81 53.69 49.16 22.82 79.36 54.70 70.15 80.26 92.28 55.09 70.51 63.64 21.89 4.43 65.59 75.21 3.49 85.97 33.20 81.51 92.33 38.89 91.69 2.94 47.26 11.62 68.55 4.58 2.79 16.69 60.52 3.85 57.03 17.34 55.26 88.16 54.50 87.61 77.98 24.18 23.30 82.02 57.75 70.78 59.18 58.33 57.16 74.82 23.41 15.40 55.61 52.65 29.25 65.45 68.07 36.04 82.03 3.15 84.05 52.12 39.85 57.48 45.85 34.22 39.00 -29.01 8.17 81.08 62.89 96.80 82.43 71.01 16.01 33.00 62.52 25.86 56.64 49.85 54.58 29.25 83.86 95.04 92.64 45.89 25.21 7.28 51.81 50.17 65.78 87.69 8.28 25.84 0.84 60.71 16.41 91.59 15.42 14.88 65.37 23.80 21.70 18.55 61.97 44.86 41.33 84.53 16.59 21.10 98.66 32.96 93.35 77.32 16.14 95.70 96.18 60.10 83.04 5.97 56.33 45.17 56.29 8.63 26.40 33.10 39.70 30.94 16.74 97.67 35.63 70.46 29.83 7.20 56.21 66.44 74.80 31.81 8.46 55.15 82.89 69.20 5.13 15.82 11.79 50.62 54.41 92.02 3.32 66.97 63.22 80.69 65.32 52.04 86.16 52.25 57.55 44.64 55.89 21.77 94.28 75.12 6.06 46.38 48.67 36.54 27.32 -61.74 77.94 80.51 29.47 2.46 79.45 11.09 38.01 95.38 36.40 95.20 43.75 38.06 99.54 3.27 99.17 59.89 61.66 29.01 31.69 80.08 14.56 92.43 47.68 36.71 88.19 52.64 21.15 14.87 85.61 18.65 81.38 45.94 64.27 38.98 19.90 2.97 41.55 25.63 29.03 4.91 53.06 36.79 1.02 96.02 13.16 59.04 45.06 42.82 68.27 32.82 96.15 67.22 88.16 21.38 92.38 87.22 22.94 62.72 85.96 27.39 91.76 44.71 98.26 23.64 65.86 0.28 94.11 56.56 69.11 58.90 67.04 99.80 92.50 19.85 22.33 7.20 96.46 47.49 61.79 45.41 40.81 99.31 75.06 95.53 33.72 35.70 7.01 3.04 99.54 38.57 53.39 26.96 25.52 21.20 98.78 55.09 66.84 16.56 34.56 -54.63 18.78 50.25 67.79 73.47 18.18 26.67 6.87 10.35 53.54 52.86 2.49 68.57 59.74 76.94 17.21 27.04 20.24 43.90 4.47 76.77 5.36 84.40 68.31 7.74 40.14 26.04 95.79 36.45 65.84 85.43 97.10 96.49 47.33 77.37 17.25 91.21 92.67 37.99 75.32 19.01 28.23 93.14 74.49 34.46 0.19 94.58 63.17 42.20 96.49 3.24 70.95 50.79 32.42 63.37 95.06 88.50 94.36 75.41 6.18 21.57 35.87 3.53 91.60 15.45 89.78 96.46 15.31 24.66 69.30 18.23 57.46 76.64 78.52 18.42 28.11 43.33 80.01 58.19 98.44 61.59 85.49 84.99 23.24 87.34 86.09 52.05 40.65 89.07 76.82 53.75 98.06 24.59 42.61 14.40 94.75 92.00 6.04 44.92 14.79 -80.43 95.27 20.90 27.91 60.60 23.89 73.47 12.89 70.13 16.51 6.75 28.12 99.05 78.69 3.55 5.95 51.22 2.23 98.09 86.93 38.15 73.60 34.46 61.06 33.17 13.61 45.78 43.76 10.64 97.13 97.36 7.79 30.62 54.06 4.89 7.55 33.32 20.92 19.05 33.22 36.88 66.27 87.74 61.46 1.16 81.43 15.36 10.21 67.68 99.85 23.22 31.68 16.26 19.86 1.01 20.87 19.04 21.16 59.24 76.00 30.60 19.01 39.00 10.27 14.44 51.34 29.28 41.07 81.34 98.37 82.93 99.09 17.39 49.48 22.25 48.56 91.59 23.72 16.25 93.33 21.25 34.88 57.99 10.70 69.21 27.59 30.75 30.29 53.29 85.79 26.90 93.20 19.92 73.91 8.07 90.16 68.51 72.95 69.81 98.20 -86.77 11.72 67.74 89.57 49.80 87.54 53.69 55.09 61.32 99.09 0.33 95.33 12.23 57.07 70.39 68.84 98.49 4.77 85.51 74.48 98.25 69.43 36.38 44.71 15.86 9.80 27.11 32.24 97.95 24.03 50.59 29.27 58.40 77.86 97.45 27.63 92.26 18.96 8.65 66.07 65.89 79.19 88.31 15.79 13.53 35.67 28.39 54.00 61.70 25.89 84.89 92.22 91.04 72.81 32.55 73.46 55.84 94.46 13.13 91.07 43.90 29.95 58.04 70.89 95.88 87.88 87.04 29.36 67.14 41.59 39.00 65.35 54.91 26.32 38.13 40.09 25.71 96.13 37.43 28.72 56.89 83.68 94.85 17.29 52.84 18.72 34.73 50.12 4.80 43.50 90.80 46.83 92.78 7.18 13.95 59.36 91.06 8.16 66.95 42.76 -27.92 42.28 21.98 64.10 15.67 93.00 25.47 18.27 76.28 32.26 92.20 35.12 42.23 98.90 57.26 99.93 88.94 52.66 63.45 63.70 49.31 4.85 4.90 33.62 75.53 69.54 7.65 19.71 63.32 63.11 32.11 41.62 4.90 28.70 87.38 96.75 88.69 56.17 31.70 43.97 70.13 68.77 50.29 19.99 0.21 14.61 53.58 19.93 70.47 49.48 97.69 79.18 35.10 97.78 87.97 82.81 79.75 36.58 7.72 91.02 12.91 93.31 23.89 76.18 10.27 75.40 84.11 2.72 58.70 65.91 90.72 79.02 71.07 83.50 1.98 58.18 96.35 19.10 97.17 37.08 26.33 59.72 71.47 47.00 67.69 62.76 99.16 13.11 91.24 62.02 95.25 75.17 7.97 67.54 88.65 63.09 45.37 69.77 70.61 63.55 -54.22 12.46 84.98 68.10 53.31 24.82 92.66 73.98 48.83 29.26 26.01 79.95 52.42 19.69 92.83 12.41 17.51 35.21 28.53 84.08 90.89 17.18 6.24 16.05 26.94 10.17 75.07 88.97 37.90 21.10 4.36 60.83 44.84 17.62 95.31 25.14 54.59 83.10 31.41 48.63 49.35 9.85 78.18 61.30 92.09 18.26 13.09 55.79 52.24 63.37 43.47 93.05 42.59 37.07 49.17 53.32 22.30 28.06 54.08 57.21 82.21 83.82 63.23 90.85 19.52 84.96 4.48 4.17 58.96 94.96 45.71 83.59 96.35 56.82 52.01 44.06 93.65 24.08 93.31 51.56 0.27 33.68 18.44 88.54 54.79 75.69 89.45 69.80 49.62 37.54 79.20 48.53 34.57 76.58 34.69 0.76 32.04 14.37 52.55 35.26 -49.98 2.91 88.52 86.67 93.67 56.79 55.21 54.76 73.76 24.32 88.31 95.27 43.27 12.04 44.75 26.61 82.42 0.85 58.16 57.48 69.96 1.65 32.65 34.08 35.38 11.87 53.36 60.99 15.01 86.69 51.24 3.48 68.44 2.20 39.47 82.06 49.98 3.78 15.04 13.49 69.75 30.78 26.76 39.18 4.69 58.49 88.14 57.19 24.64 20.80 51.86 45.39 16.94 82.18 5.91 91.34 98.94 67.18 88.82 79.21 69.53 5.21 45.57 8.51 71.90 90.35 31.49 34.59 53.62 49.29 64.84 83.93 91.02 25.67 48.84 1.02 7.73 70.25 28.68 10.30 45.19 37.14 11.56 13.50 33.57 59.02 11.56 38.17 50.96 14.06 73.46 55.53 12.13 99.07 12.77 77.62 46.37 27.94 23.08 50.29 -52.35 49.16 68.79 23.50 34.37 28.77 1.11 9.44 65.55 28.67 11.58 80.96 29.20 41.75 48.05 16.20 31.54 51.82 34.16 16.44 53.17 53.41 17.43 9.41 96.24 88.15 37.55 27.65 63.67 87.63 31.65 44.34 42.34 74.64 16.51 69.40 42.54 13.66 59.62 73.44 27.34 22.16 95.00 55.32 65.17 26.21 98.83 30.83 74.04 25.16 92.49 41.96 15.44 67.81 97.19 11.73 53.87 98.84 11.25 95.44 30.28 44.88 48.41 22.20 49.68 72.52 75.31 20.82 26.24 3.75 59.81 14.33 96.02 25.39 65.74 61.48 98.74 96.06 88.42 93.49 17.62 36.52 15.99 90.32 53.13 76.28 88.57 27.06 96.92 29.65 60.94 56.45 51.37 43.08 20.35 97.85 85.07 99.23 72.57 36.01 -12.82 30.41 97.85 64.42 38.21 5.74 6.35 77.43 5.67 50.01 27.32 50.41 21.74 31.93 96.31 51.14 3.84 93.97 71.12 66.65 36.03 35.59 43.75 2.71 53.53 64.38 5.00 72.49 32.98 50.89 62.87 29.39 79.02 96.29 69.48 98.55 54.89 43.78 56.46 30.63 73.48 9.57 11.16 33.22 12.78 82.87 79.15 34.82 91.34 85.72 28.43 35.73 77.50 48.70 82.40 78.70 31.87 56.41 2.52 73.71 69.23 9.73 99.24 22.64 16.89 1.30 75.49 15.42 35.66 78.06 96.11 88.88 68.87 1.25 12.00 83.87 54.77 39.08 23.99 15.77 62.77 54.08 12.20 56.62 92.15 62.59 59.11 24.35 51.88 71.30 60.37 29.17 42.63 72.87 76.13 5.71 51.98 84.24 35.15 19.00 -34.75 81.45 42.71 80.68 12.12 80.96 3.46 28.75 41.59 80.76 43.18 5.37 10.16 77.55 20.32 4.39 68.00 2.67 34.75 80.27 41.19 91.62 50.41 58.59 55.51 28.23 63.80 77.63 40.97 94.82 67.34 94.17 47.80 20.69 4.61 80.44 4.07 58.95 72.30 72.06 32.98 88.42 1.89 99.07 26.51 69.08 41.02 76.46 38.59 17.67 81.14 72.76 54.81 7.78 76.33 34.50 65.75 16.13 87.50 41.29 3.20 76.75 62.13 54.97 92.54 28.54 27.51 87.00 12.56 58.03 88.39 24.13 90.68 58.75 28.80 13.11 45.07 63.56 8.12 72.54 28.38 93.87 76.00 31.96 14.39 11.77 61.03 92.62 33.04 97.52 73.41 33.22 68.86 98.34 15.62 14.72 39.96 7.94 49.31 15.39 -16.22 86.01 74.13 64.98 11.72 21.69 23.26 63.44 82.04 33.32 4.99 80.24 41.71 17.74 38.13 60.95 22.92 93.25 69.93 54.75 45.40 60.00 25.74 85.36 43.76 84.65 68.86 99.59 66.66 14.92 70.55 22.02 76.53 44.03 77.43 7.59 80.05 33.63 62.38 50.28 20.05 75.76 47.52 92.15 59.33 67.49 57.46 19.54 16.28 90.49 68.13 58.16 36.03 47.78 21.07 25.74 7.87 51.89 48.15 8.42 65.86 74.26 18.53 89.02 44.30 3.76 51.22 78.03 97.30 61.57 40.88 44.19 88.66 99.24 87.98 74.94 61.04 54.43 45.47 11.08 15.62 22.76 47.23 41.63 24.97 97.29 59.29 24.48 69.67 83.83 15.80 38.98 72.68 51.61 5.53 28.25 29.36 88.93 41.79 70.26 -7.92 12.41 52.87 69.99 28.04 3.60 24.05 42.61 79.38 69.43 96.01 86.12 69.97 10.16 84.20 32.53 11.64 99.25 43.64 64.57 59.19 89.59 71.73 50.56 41.68 69.01 36.72 21.21 6.37 92.30 36.86 0.56 70.44 19.58 70.13 23.81 47.57 50.75 95.87 98.37 23.14 17.80 2.35 91.43 85.18 7.58 64.44 30.93 61.73 13.30 90.82 95.65 86.85 91.62 10.21 37.33 28.89 4.72 16.76 53.94 8.88 9.34 80.70 63.33 70.02 8.55 45.63 14.62 21.06 26.72 53.00 60.80 17.91 33.61 23.03 35.47 12.06 23.70 73.50 84.80 80.21 93.16 38.92 45.19 83.58 93.46 15.23 25.30 98.55 77.42 56.03 34.58 50.80 89.48 22.39 27.72 31.58 75.26 29.73 39.70 -50.23 75.71 23.58 55.19 25.03 29.56 4.10 42.99 70.70 20.19 47.04 40.26 91.11 29.82 44.13 72.58 70.40 93.91 70.96 31.19 61.03 15.78 70.19 43.53 2.86 98.98 92.47 21.20 39.16 57.51 61.97 51.35 72.08 28.51 62.21 57.22 60.05 75.85 49.81 18.08 93.07 7.21 89.06 95.61 86.32 67.47 95.90 67.49 23.19 57.82 67.69 82.65 44.73 77.95 99.54 25.99 9.37 91.87 61.82 97.42 84.77 17.08 68.14 37.10 74.63 92.00 55.07 56.18 80.62 30.52 51.50 94.90 11.07 80.14 51.37 35.38 68.10 81.93 21.81 24.08 97.11 66.88 88.54 53.63 50.19 99.69 57.58 9.36 75.52 39.07 45.33 3.56 77.17 60.31 80.12 45.88 59.05 40.19 67.91 64.15 -57.97 1.17 91.97 50.20 42.76 48.22 24.58 60.91 18.71 6.02 64.99 96.94 19.63 77.05 72.67 97.51 11.60 81.42 14.57 19.61 20.70 34.76 66.40 17.63 13.80 97.73 72.51 24.50 86.69 19.72 13.25 29.66 98.02 48.52 79.05 52.34 44.60 90.16 83.43 59.16 15.81 65.26 96.22 84.39 75.16 60.89 65.81 34.53 8.17 36.66 49.06 48.95 7.51 50.52 23.88 32.00 53.93 6.97 85.40 92.03 73.10 66.53 14.73 38.12 50.77 95.88 49.20 59.45 41.99 24.52 85.99 15.02 36.66 24.29 18.36 65.01 21.76 62.89 77.92 28.90 50.02 7.35 93.18 36.90 21.07 13.15 78.19 66.68 35.07 32.47 13.23 23.78 35.49 64.99 79.55 91.86 30.50 28.25 30.29 95.16 -8.92 71.32 6.80 22.27 2.04 74.34 15.93 20.58 11.61 43.57 61.63 24.25 33.33 76.37 8.37 8.24 65.35 25.58 60.33 22.60 71.95 53.07 12.87 42.67 44.51 67.60 14.04 87.20 63.90 75.78 67.58 90.57 22.08 84.97 51.99 43.37 36.48 11.12 81.13 81.30 57.32 79.29 38.24 93.12 15.05 28.49 14.86 36.90 62.70 81.30 77.84 17.60 72.07 54.89 71.44 4.65 74.02 6.35 58.84 97.52 91.23 69.96 4.35 53.78 5.47 17.10 65.63 40.81 46.23 37.27 7.19 36.83 59.35 95.80 53.23 84.47 28.58 23.34 9.63 33.50 52.76 39.18 98.30 20.76 72.41 33.37 71.78 8.90 69.75 5.93 49.03 93.21 72.81 27.91 37.30 55.55 70.32 84.53 73.74 85.73 -17.76 8.61 0.23 64.25 48.41 40.38 43.56 77.87 85.95 50.10 10.24 79.35 70.45 23.08 99.19 75.85 57.20 65.81 84.33 63.66 88.07 5.76 7.73 18.58 30.16 36.06 36.97 52.59 55.14 72.44 85.97 6.44 31.35 62.86 52.27 95.54 60.94 62.05 22.38 91.98 1.16 93.66 78.72 88.62 6.26 41.44 68.83 17.01 30.80 58.20 85.86 73.46 76.47 14.39 53.34 79.77 93.69 83.69 99.02 84.00 43.85 54.95 97.17 34.19 79.43 8.64 23.24 57.39 86.39 22.84 52.81 90.61 58.22 21.74 35.73 56.23 68.43 78.49 63.81 9.55 92.57 82.88 4.95 64.66 64.82 2.23 15.26 68.64 49.25 44.41 83.29 24.26 28.72 29.79 46.44 48.90 58.87 73.36 13.64 25.58 -63.86 86.18 41.94 84.31 38.78 57.36 62.50 92.68 38.47 37.93 44.58 11.19 9.16 7.33 73.22 76.53 44.72 15.35 48.01 19.09 65.15 91.50 64.62 72.62 17.21 6.69 23.13 25.14 19.63 73.65 1.23 70.55 14.21 57.37 92.42 31.62 2.02 48.02 22.11 30.65 44.11 60.91 20.21 29.31 90.73 78.25 53.42 22.47 59.53 1.28 58.10 10.86 54.92 42.12 16.77 53.34 34.26 26.25 31.81 45.69 12.35 38.37 98.10 80.17 40.16 62.82 86.89 56.72 92.01 33.36 32.58 22.52 40.82 35.41 70.91 60.93 15.83 30.38 4.91 98.80 10.17 81.29 78.01 81.49 90.79 87.46 67.51 95.72 91.21 71.28 81.96 90.36 86.14 95.86 77.63 88.83 3.69 15.94 68.63 13.20 -90.32 41.59 85.09 83.32 28.85 13.30 62.26 91.76 75.04 74.13 86.97 19.51 28.30 68.28 8.92 83.18 10.86 62.47 76.85 15.84 33.95 19.81 94.63 5.95 52.09 72.28 94.72 34.90 57.53 36.89 16.74 50.96 85.78 86.66 16.56 70.61 71.41 90.58 78.14 1.41 28.57 45.63 85.02 83.64 64.58 55.48 13.57 0.90 82.71 37.25 93.82 18.81 10.45 40.78 14.03 54.58 85.75 89.78 22.05 17.19 86.57 49.05 41.93 96.80 86.59 31.63 76.76 21.37 83.48 19.98 6.98 10.72 33.83 17.62 63.64 79.10 11.36 69.91 16.00 9.03 48.55 51.42 72.85 10.14 95.27 82.47 99.81 33.92 65.18 90.49 5.35 3.24 37.73 61.42 48.68 18.92 30.47 55.84 25.05 16.70 -4.85 69.72 77.61 20.87 3.66 93.48 8.59 93.30 67.01 70.03 43.14 98.19 19.52 47.69 87.10 32.73 71.25 41.10 95.33 61.82 8.87 29.88 8.85 96.89 25.39 19.38 14.01 32.01 35.21 46.13 24.31 34.02 63.87 48.93 10.05 80.37 6.44 97.11 57.10 54.33 5.71 0.59 97.35 36.79 67.73 16.73 8.16 51.23 18.51 93.38 55.41 30.07 95.87 2.01 14.89 99.03 18.98 41.92 27.22 98.42 60.85 11.73 91.50 41.92 99.46 64.19 12.54 50.36 53.95 56.85 26.33 94.74 94.84 23.25 91.46 81.94 34.47 56.09 65.31 43.10 39.88 23.31 59.90 57.60 96.26 33.02 31.03 43.15 44.01 47.04 80.81 61.27 4.11 96.89 83.47 45.89 64.47 9.45 8.63 51.85 -73.46 99.05 17.24 59.99 89.03 55.70 31.72 15.73 69.26 74.29 4.31 73.73 87.04 17.88 97.94 25.27 0.29 24.23 97.31 52.08 29.75 54.83 48.36 29.32 12.18 65.89 4.92 79.76 47.22 33.38 32.35 6.83 93.49 88.30 63.44 88.92 37.98 4.09 70.90 29.98 89.15 40.71 14.86 2.46 23.80 35.93 71.16 27.58 12.61 38.84 44.18 53.77 86.96 63.82 12.01 88.96 2.52 60.13 83.63 13.96 62.69 43.02 59.08 96.37 65.09 67.58 80.92 26.16 97.24 62.10 82.32 56.98 17.38 57.68 91.55 42.05 97.30 38.16 8.37 11.96 51.64 96.90 91.86 83.21 36.65 16.38 74.17 92.16 49.61 91.53 93.74 32.20 55.35 98.49 35.87 62.32 17.24 3.08 74.58 89.85 -67.73 77.16 19.95 11.62 3.34 63.52 66.73 92.18 32.41 7.68 30.86 80.95 75.58 44.48 19.70 8.44 44.96 7.07 97.49 89.83 30.74 35.83 61.63 50.94 62.68 45.35 3.02 45.93 66.26 9.03 21.86 53.12 62.87 59.68 9.97 3.83 89.03 61.99 11.95 59.24 56.80 29.39 38.08 84.06 26.13 32.42 74.35 17.43 79.26 78.24 9.63 1.58 35.13 83.32 32.20 68.85 53.57 82.91 15.95 30.69 86.53 54.05 24.07 44.56 38.45 74.82 3.83 86.17 10.95 77.92 95.94 5.31 46.11 81.09 36.49 86.52 47.71 33.92 19.35 68.08 11.84 53.59 32.28 39.36 28.10 41.60 9.25 98.90 19.45 81.22 95.07 90.37 77.23 72.22 69.74 27.99 75.18 64.22 14.06 75.70 -61.11 32.94 65.91 14.21 48.69 1.04 83.05 55.11 78.14 33.23 26.74 92.11 14.32 6.24 39.40 92.83 26.69 93.11 55.81 49.66 9.78 78.63 91.22 38.90 89.37 81.03 98.86 26.03 37.19 91.98 96.06 92.91 72.65 64.21 29.08 26.49 0.41 47.31 43.28 18.11 90.09 51.49 80.07 95.38 5.19 41.01 19.30 47.46 1.42 96.89 48.82 70.75 76.43 80.55 76.92 9.63 62.65 86.80 25.85 49.60 84.99 93.62 54.51 52.10 96.81 51.38 45.73 27.14 32.66 91.47 40.47 85.11 69.88 3.16 18.24 85.38 30.76 30.10 39.15 0.22 39.90 44.13 3.06 28.61 71.84 3.84 56.07 19.32 24.23 91.76 58.98 10.52 73.70 37.16 72.93 65.01 63.71 19.68 12.13 64.66 -12.20 95.48 47.52 94.53 32.13 26.53 71.43 99.11 8.37 79.09 70.06 85.46 61.38 68.59 82.66 76.69 79.06 5.38 7.25 1.52 95.62 94.18 99.38 50.34 42.56 5.46 46.15 82.53 66.60 59.62 73.36 36.52 18.14 67.00 83.12 85.07 82.93 49.11 35.84 40.34 19.68 11.88 37.65 97.49 51.04 18.72 82.88 85.26 41.94 88.00 73.87 2.65 16.83 66.95 37.79 93.08 47.43 78.90 98.55 4.50 61.95 4.48 54.90 74.34 86.75 35.51 16.82 20.89 29.00 18.83 37.24 0.79 54.16 2.65 24.07 41.13 54.28 90.00 47.74 10.62 61.47 16.26 21.98 35.02 75.48 89.83 65.90 60.01 63.65 68.75 36.98 15.28 24.07 66.71 85.95 68.96 70.80 42.92 61.22 48.30 -10.28 49.57 20.20 75.03 17.50 17.95 14.88 32.30 16.47 74.72 97.67 57.59 83.84 28.21 85.49 50.90 19.11 2.35 86.42 43.56 0.56 11.39 43.83 0.21 9.63 31.61 52.95 3.86 77.02 49.11 35.13 98.11 92.29 52.58 81.07 49.37 77.79 69.38 48.55 51.78 68.85 66.96 7.05 79.37 8.97 26.26 52.10 82.30 5.12 52.59 87.03 80.52 75.77 38.95 10.24 61.57 79.23 1.71 35.26 2.23 2.15 32.35 30.33 49.41 39.54 54.41 53.55 22.00 19.93 71.28 58.21 22.97 57.18 28.19 5.27 52.80 62.29 21.13 32.75 45.03 94.38 59.69 41.15 61.81 81.58 94.43 58.93 95.97 59.26 33.62 44.54 78.58 86.43 96.94 14.11 40.64 14.96 41.82 84.49 86.85 -1.21 68.03 80.88 76.97 15.94 77.41 15.83 19.57 77.13 96.69 30.65 15.17 26.79 60.99 11.52 20.70 48.99 29.96 21.83 52.77 15.58 43.76 34.67 44.70 95.91 78.11 16.02 1.38 32.17 30.72 27.41 59.79 31.97 3.40 17.43 60.60 7.47 49.97 68.61 81.77 82.89 5.17 59.01 11.09 5.57 34.64 71.90 43.40 52.20 57.14 43.30 93.75 70.74 83.92 2.56 49.97 89.03 78.13 11.86 36.22 28.39 46.31 15.84 18.74 12.91 90.47 26.73 84.89 17.13 84.56 45.27 7.12 55.16 14.33 18.51 73.35 59.96 68.94 91.70 26.01 83.45 12.91 58.32 48.55 24.60 65.76 70.72 31.33 35.99 12.49 86.05 53.32 97.33 4.10 31.27 57.06 31.24 91.61 19.26 77.96 -96.25 27.73 58.50 4.61 99.07 44.79 40.13 23.98 11.31 55.92 54.34 81.04 26.72 90.60 73.13 11.58 72.05 78.64 95.08 65.48 16.04 95.98 35.25 50.25 38.79 32.84 3.73 39.69 28.87 51.79 96.84 33.94 11.68 47.61 69.29 53.18 41.10 27.30 57.83 57.52 4.96 13.62 80.51 64.51 77.07 53.83 68.55 30.59 68.63 69.61 83.65 20.32 70.51 11.89 9.94 52.27 19.14 33.31 93.90 86.60 6.82 67.41 95.88 49.33 44.59 68.75 67.48 97.62 22.61 90.98 29.79 58.74 11.03 4.90 43.13 57.04 90.83 16.77 73.00 52.73 52.88 70.13 36.29 6.81 7.63 49.23 49.89 22.61 31.13 81.07 25.90 27.69 82.51 42.03 0.03 83.24 29.51 68.19 46.40 76.45 -92.75 29.13 32.39 22.74 7.34 77.25 84.50 99.23 9.30 61.44 27.37 64.52 19.21 62.91 35.73 79.40 6.09 29.20 72.24 31.60 39.29 67.36 10.25 89.98 17.28 17.46 40.49 51.31 22.73 49.47 63.08 54.89 35.40 89.10 98.17 66.57 53.57 66.81 64.54 3.37 41.51 28.09 91.63 91.90 93.86 48.07 68.88 35.59 31.01 93.62 39.26 50.72 80.62 64.28 82.28 32.78 3.81 17.13 80.28 24.60 93.80 59.16 65.42 1.89 34.13 75.69 13.86 18.32 90.96 95.56 66.48 92.88 74.86 57.41 66.55 34.20 51.68 91.78 37.08 89.49 81.59 22.32 41.47 88.40 11.09 41.31 93.62 71.52 36.88 39.97 54.52 48.19 40.92 30.57 95.87 64.63 2.32 58.89 25.44 86.06 -98.23 66.14 90.11 31.85 55.98 82.37 39.09 64.26 68.57 69.31 16.24 59.91 72.39 26.70 10.73 80.23 1.71 7.72 97.19 47.62 15.83 94.12 46.57 54.38 90.56 74.34 63.19 35.61 20.99 41.31 25.24 56.83 26.68 48.56 65.95 95.41 64.04 21.17 1.16 27.76 45.69 88.30 64.99 97.97 25.58 58.78 86.44 75.44 73.20 25.92 29.28 98.45 71.49 54.24 78.95 7.24 43.95 27.02 3.76 65.36 38.06 98.41 42.75 22.82 85.15 53.31 59.32 6.03 40.35 71.32 76.01 87.62 71.26 7.33 76.21 4.73 60.08 26.92 38.68 35.46 93.25 29.63 86.56 7.81 49.63 64.07 5.89 15.20 65.91 20.48 85.45 97.80 67.99 92.83 64.10 22.34 21.13 38.35 90.59 53.46 -8.93 14.96 33.84 6.45 52.25 52.63 25.77 76.08 88.83 20.89 60.39 4.11 66.40 78.98 14.39 30.98 96.14 38.40 74.91 32.62 40.41 69.77 97.68 8.19 8.76 91.87 90.95 44.01 3.75 50.13 96.71 24.88 23.38 29.76 93.56 41.30 1.53 42.40 68.64 87.94 21.80 73.66 76.84 24.63 83.83 91.74 92.33 13.30 10.01 87.64 98.00 71.27 76.29 34.93 4.95 95.69 9.09 54.51 58.28 59.46 13.49 71.52 89.13 69.41 78.87 19.53 65.08 29.99 19.33 30.92 79.42 77.19 26.90 39.31 19.89 58.57 27.17 89.53 20.03 48.12 78.08 91.56 85.73 71.67 72.88 61.99 56.48 0.65 54.85 10.53 11.50 83.64 4.51 26.93 34.79 55.40 43.68 84.32 7.33 37.31 -83.31 73.64 62.34 71.15 51.84 40.58 82.16 94.07 42.96 3.45 30.08 22.56 88.73 21.28 6.65 52.95 63.49 7.37 17.78 40.45 76.37 52.64 16.50 52.61 30.67 13.99 67.20 47.96 95.54 77.19 13.94 84.20 45.91 92.39 2.16 61.20 88.63 27.79 1.84 18.66 93.43 5.32 11.41 48.10 28.65 70.70 69.66 79.47 40.08 22.71 47.20 16.60 78.51 15.44 88.33 82.08 11.62 22.43 54.83 1.86 69.54 28.78 6.78 64.95 97.85 58.83 86.91 56.15 87.71 62.90 1.49 98.66 23.75 27.05 30.84 4.16 43.21 15.58 42.40 91.09 44.64 33.30 59.10 92.57 2.55 12.94 70.39 96.71 97.56 65.44 21.20 95.36 61.25 75.52 75.89 13.73 83.68 47.86 16.87 59.04 -61.83 55.91 82.06 5.02 38.40 5.29 38.02 37.76 37.27 22.59 5.50 45.00 81.37 12.82 14.82 38.89 5.28 24.59 4.07 15.65 4.91 7.94 36.50 85.45 3.22 56.71 29.00 87.56 58.45 75.53 26.21 2.56 64.85 38.42 31.96 35.45 14.64 9.05 15.96 13.51 90.58 63.48 50.95 30.08 59.70 70.83 42.84 22.15 39.09 29.35 28.23 78.84 89.29 77.84 46.45 0.80 26.20 35.89 9.99 41.35 79.43 42.03 40.54 75.40 96.62 59.71 56.55 52.45 41.11 51.52 63.19 93.97 23.34 24.72 6.87 72.33 11.69 5.04 55.85 20.16 40.38 85.65 69.24 32.58 21.84 50.21 54.70 53.54 97.99 41.59 51.68 25.50 51.24 98.67 56.07 41.92 4.92 51.37 92.76 53.96 -31.47 45.83 81.84 24.59 34.90 40.20 69.61 78.43 26.44 99.14 73.90 38.30 74.19 1.26 27.70 23.73 54.63 52.84 0.92 65.83 11.22 84.65 47.26 57.79 18.98 2.51 49.97 50.77 72.16 83.52 62.97 65.70 18.68 24.33 49.81 14.37 92.64 85.37 69.88 14.64 87.53 56.71 30.92 55.13 26.75 77.43 50.64 99.46 39.23 72.22 48.79 91.51 39.76 3.31 42.34 33.68 6.86 92.49 38.01 2.86 25.14 29.98 54.89 50.22 8.05 41.13 45.81 84.87 73.61 63.37 99.92 55.97 80.74 5.52 59.99 51.14 87.98 48.68 48.07 99.43 68.58 63.67 96.73 83.30 85.18 31.67 17.94 99.93 49.55 41.20 34.93 92.24 57.57 40.19 70.00 68.90 2.11 78.56 65.64 27.60 -49.20 16.60 48.35 74.84 91.87 55.93 22.49 6.90 23.50 73.89 2.38 87.75 38.98 47.98 55.18 60.86 15.83 7.67 5.05 37.31 8.56 33.78 91.26 31.10 40.56 92.37 57.16 42.35 10.70 16.66 82.75 63.79 44.62 83.59 94.67 74.25 41.52 51.91 27.04 86.91 4.89 47.17 97.88 31.23 45.58 43.85 67.79 93.31 96.66 90.93 40.68 37.52 80.74 0.14 86.08 33.56 6.64 8.60 61.49 15.05 79.78 86.28 32.58 90.85 31.60 39.59 63.28 64.15 45.99 8.11 68.59 83.84 50.60 54.19 62.51 4.76 91.19 30.33 69.45 41.47 37.23 16.92 92.06 10.63 40.39 50.04 1.68 84.45 24.06 5.03 75.82 63.94 14.50 77.76 20.78 22.23 25.90 11.78 9.88 49.75 -11.52 29.46 29.39 84.73 19.06 52.77 84.42 72.58 66.14 78.16 10.66 56.18 17.83 75.09 69.55 30.44 19.45 27.76 34.37 93.11 37.61 37.98 75.88 58.57 5.14 8.13 39.18 16.23 3.86 55.58 52.03 53.52 32.37 18.76 20.31 36.63 17.55 64.01 47.56 4.55 5.19 25.81 10.65 83.14 11.89 73.72 53.52 4.95 12.32 81.35 2.38 64.13 93.78 29.06 81.22 38.93 86.81 64.51 73.72 18.48 85.05 72.12 46.78 80.16 83.70 39.84 4.38 64.67 40.37 82.86 60.17 97.16 24.03 29.83 31.90 63.61 34.04 23.20 13.17 56.78 80.81 35.65 89.21 49.88 21.05 6.53 90.01 24.86 55.60 3.13 10.25 54.96 81.13 63.34 92.28 23.80 38.66 12.69 33.96 41.55 -54.86 84.58 66.16 75.40 39.95 77.37 10.70 88.41 97.84 69.24 94.81 8.44 37.10 57.45 30.75 42.69 87.28 2.27 61.02 49.63 67.39 58.91 4.93 74.45 1.99 16.41 92.65 20.46 48.45 8.43 22.94 66.31 49.10 83.27 99.29 64.96 63.61 95.61 65.76 81.98 32.11 13.20 28.86 99.90 62.53 22.29 54.94 4.14 8.36 77.57 70.50 23.85 7.67 29.68 92.85 29.14 85.36 20.92 81.16 40.17 38.29 53.00 71.95 38.74 22.66 34.92 22.12 67.16 54.58 44.60 86.82 54.70 29.23 89.43 49.35 33.32 6.02 40.56 4.01 59.38 19.85 80.65 81.26 50.03 46.34 77.80 25.48 59.85 38.22 15.36 19.60 14.83 37.82 97.65 25.77 46.93 68.12 64.87 71.90 57.47 -55.35 5.29 72.84 87.76 76.92 8.02 78.88 68.25 59.19 23.26 34.99 71.00 21.23 89.32 56.45 20.28 37.77 57.46 67.23 99.01 86.29 31.17 40.94 32.10 74.11 12.67 73.50 89.36 72.98 21.90 76.48 28.86 37.40 62.57 92.95 7.85 5.77 25.33 81.80 25.15 69.38 77.62 9.90 45.52 75.05 62.39 30.60 96.90 68.50 8.26 46.74 1.66 2.92 77.06 8.64 6.19 41.79 13.75 55.73 40.33 58.25 13.47 37.95 26.47 26.44 39.96 85.09 46.13 79.37 94.83 20.06 44.54 22.37 87.91 72.35 66.31 8.71 82.53 90.72 37.32 66.40 25.81 22.59 95.21 84.85 81.45 57.59 12.87 92.19 5.96 24.60 17.84 41.98 37.81 34.14 32.00 73.66 9.26 22.49 16.64 -5.86 48.05 56.80 41.92 11.00 92.20 23.72 63.89 94.20 28.49 19.16 35.02 94.10 22.95 85.62 86.26 41.24 37.11 83.38 65.14 37.31 61.10 50.96 44.90 73.16 62.21 39.47 48.13 74.87 64.53 79.21 55.11 35.20 69.37 59.25 25.64 68.18 81.42 14.51 4.97 74.34 77.79 92.81 77.04 31.24 4.52 95.64 0.33 29.91 5.56 58.24 13.52 76.70 5.21 5.32 92.91 16.82 16.79 4.19 96.97 24.06 13.16 59.68 38.87 19.53 88.25 56.53 69.14 3.34 63.15 14.97 61.37 19.16 78.43 82.63 61.74 38.72 2.86 0.38 22.45 87.61 65.14 21.04 71.67 40.84 90.10 61.64 62.88 56.76 83.77 68.96 43.81 77.81 86.81 71.24 4.06 15.82 60.06 58.80 84.23 -15.75 16.45 40.33 78.46 17.21 72.63 2.47 17.04 97.50 54.15 79.49 86.36 37.55 4.40 93.38 85.81 1.08 56.23 88.69 25.49 0.85 94.79 29.20 58.44 79.39 63.19 9.27 2.14 69.94 90.03 80.51 22.20 87.94 92.75 0.19 64.54 41.75 38.48 96.07 41.18 32.00 35.45 9.97 78.82 74.76 26.74 85.84 8.65 45.50 46.80 4.00 2.76 83.00 34.35 28.87 63.21 47.19 17.09 75.69 36.66 10.96 60.41 7.44 93.80 69.42 80.55 22.55 29.69 49.09 83.07 48.79 33.61 42.44 79.17 11.33 64.28 40.76 23.20 16.30 34.64 33.19 28.03 44.69 90.70 24.71 26.59 49.35 25.11 97.02 0.77 83.56 85.84 59.49 32.06 84.11 65.10 95.43 57.70 51.34 91.87 -68.23 57.75 18.73 15.98 48.94 67.14 29.02 31.46 26.11 39.24 72.89 22.09 88.28 86.46 80.59 71.02 85.26 46.48 58.69 43.58 10.15 57.60 71.20 35.44 6.03 50.22 95.50 72.94 8.49 57.22 20.50 16.30 62.99 51.19 31.39 73.69 6.05 86.96 99.90 0.32 51.27 95.24 20.51 37.16 37.25 15.44 51.86 45.85 63.40 78.77 30.36 6.58 79.17 39.90 18.48 68.39 18.93 34.24 39.43 30.58 78.53 28.40 26.14 59.44 15.61 97.09 55.07 37.30 61.49 71.52 62.76 3.43 26.70 36.51 83.81 0.54 83.89 6.34 46.03 73.60 91.98 98.73 14.15 75.41 69.44 75.10 16.05 80.51 47.24 45.38 84.59 26.81 16.10 83.86 32.84 17.55 9.20 30.46 95.03 77.97 -32.99 19.47 79.25 71.37 21.04 57.33 44.11 17.68 94.55 15.98 21.13 57.83 52.88 47.87 40.95 10.12 66.04 69.52 83.91 61.00 59.90 11.27 7.20 23.67 86.54 45.18 99.36 6.22 61.41 87.37 31.72 76.09 40.76 11.93 28.60 50.86 28.50 40.01 8.13 18.55 33.58 24.15 67.02 19.85 22.34 96.06 32.84 70.81 27.22 78.64 92.33 3.46 18.34 14.35 31.49 29.88 23.48 14.83 69.21 76.87 66.60 46.22 52.82 63.95 63.49 10.81 38.61 18.74 98.99 63.07 28.14 61.64 53.18 55.41 81.82 98.62 16.73 72.74 40.19 54.45 90.37 12.79 22.68 64.70 25.65 22.03 68.01 75.41 68.15 32.62 69.23 20.12 73.76 53.20 21.75 92.90 8.67 95.78 62.69 48.80 -43.30 84.90 59.82 70.38 19.63 44.47 87.23 77.95 76.52 21.51 75.93 89.43 7.52 2.21 77.94 34.25 44.93 13.22 57.22 20.67 54.39 16.12 13.18 74.12 77.38 59.23 96.35 23.14 5.35 86.60 66.00 33.07 50.54 57.87 13.06 66.17 83.18 83.76 14.80 3.72 5.85 27.74 20.39 57.57 86.83 98.73 74.63 29.48 34.34 20.78 23.12 60.96 37.42 31.94 10.56 96.64 87.37 52.79 73.65 95.36 83.44 68.59 60.89 37.94 65.32 62.33 44.50 71.80 56.97 17.53 19.13 79.33 26.58 2.04 73.56 35.16 76.59 17.29 38.75 94.39 93.51 19.72 52.91 79.58 81.41 91.87 28.94 40.99 31.90 77.13 18.92 12.32 53.51 93.14 98.11 43.61 89.55 21.89 74.77 48.80 -52.18 89.14 36.27 10.62 11.87 12.45 76.65 52.67 34.47 72.47 47.31 82.80 66.07 2.96 86.04 29.65 2.72 10.11 40.99 54.41 96.03 39.27 13.33 10.30 19.30 59.22 53.55 80.09 13.12 59.96 13.83 21.51 89.69 29.04 5.79 74.24 99.93 66.38 60.07 83.87 84.38 59.69 37.65 59.21 8.34 38.11 20.88 70.14 68.12 20.69 62.72 73.58 39.94 79.91 72.13 0.45 70.03 81.30 17.76 88.04 35.08 66.93 16.22 40.61 75.65 12.60 12.03 90.33 73.04 49.70 53.03 37.39 68.90 89.65 21.10 37.94 0.66 54.58 8.91 54.49 5.16 87.93 22.87 84.28 84.24 0.77 29.76 62.05 77.76 59.17 61.81 88.58 18.73 1.19 54.84 28.98 18.81 8.86 51.38 20.89 -87.81 45.43 94.70 5.57 38.92 53.63 41.45 82.17 90.45 58.41 29.00 69.73 25.66 68.92 93.08 35.11 20.84 44.97 51.53 10.42 47.10 54.35 39.30 94.24 56.36 63.41 43.10 62.24 92.92 91.05 13.80 3.27 96.23 7.95 11.17 34.13 7.25 28.19 70.93 17.08 45.14 9.50 6.97 5.84 6.48 48.34 56.87 29.79 56.42 35.05 98.64 0.55 3.84 61.76 57.09 74.27 38.28 22.64 63.87 36.63 32.44 64.84 2.15 62.90 58.52 9.82 29.75 42.38 35.48 60.07 62.19 28.53 32.49 71.53 30.68 25.10 23.30 96.22 97.25 14.53 4.42 9.37 38.21 94.10 26.25 63.11 87.24 71.85 9.98 41.61 12.07 86.74 30.31 53.37 94.05 60.79 12.34 87.13 70.28 55.87 -41.08 96.29 59.67 43.95 74.45 60.45 16.86 99.40 69.31 7.52 1.00 22.26 85.57 14.68 7.86 10.82 76.02 54.61 82.06 83.54 8.22 80.43 33.44 16.43 32.79 32.04 74.12 49.73 27.43 7.42 6.51 30.27 23.95 92.63 2.08 18.47 45.00 38.27 55.54 38.81 71.32 73.56 71.77 51.05 85.05 35.52 71.12 29.11 59.68 82.35 97.36 18.22 14.70 70.87 65.71 45.46 69.56 63.49 78.69 77.26 59.03 95.05 85.45 28.99 43.04 41.67 82.65 27.90 19.52 1.32 0.73 94.92 55.14 70.98 69.12 34.72 96.93 27.67 46.87 45.62 58.93 1.65 94.26 67.96 14.85 84.81 7.45 7.97 61.08 32.92 10.03 96.27 82.39 1.18 6.29 87.92 84.40 64.12 19.32 89.97 -5.44 61.63 15.40 76.77 11.37 61.99 19.87 52.87 18.13 41.94 58.50 96.71 9.69 36.67 83.26 90.52 41.61 96.15 45.35 79.84 61.17 65.31 35.27 80.10 82.39 75.76 61.41 73.79 23.07 36.81 3.02 97.34 23.86 50.81 62.49 23.44 23.09 88.26 54.38 2.71 54.13 66.46 79.23 51.79 57.75 29.21 60.21 81.49 45.25 65.90 99.08 82.74 33.93 22.14 92.00 65.80 90.60 43.71 72.62 34.22 26.21 47.48 17.11 79.66 17.48 15.25 92.58 35.93 41.23 49.96 38.18 12.49 93.33 62.13 76.70 88.86 82.60 26.27 42.19 39.10 38.79 91.42 43.28 32.55 80.36 66.45 16.71 68.38 13.40 53.27 58.94 49.54 17.71 93.90 23.78 52.95 4.12 88.58 87.22 59.42 -61.10 85.20 55.13 25.40 4.28 82.22 75.46 4.76 29.01 32.49 21.20 53.84 95.76 25.66 97.93 15.36 17.40 40.62 84.60 9.30 20.45 58.25 23.14 86.36 21.60 43.91 96.73 52.41 94.23 45.86 17.00 20.74 90.42 42.46 0.32 1.56 11.45 75.80 5.69 32.51 39.91 55.54 17.36 34.79 83.28 23.85 73.33 89.91 99.79 78.30 2.04 11.40 10.15 8.04 62.65 6.70 84.50 23.77 84.51 1.36 90.95 51.25 47.35 35.12 31.66 56.05 41.10 96.68 33.68 25.39 11.66 39.75 49.33 37.67 69.28 9.86 40.30 55.26 93.52 39.16 89.04 53.15 62.04 89.96 87.87 56.60 23.05 79.78 53.57 87.68 34.16 78.36 28.04 1.31 72.84 96.98 86.16 86.64 78.93 9.85 -33.13 96.45 35.46 8.16 35.00 41.11 98.11 76.26 29.14 40.98 85.59 31.29 42.58 83.61 93.18 92.64 30.59 40.25 79.68 16.99 67.24 63.19 61.42 50.04 79.00 38.67 60.39 70.95 77.27 87.19 70.86 13.48 36.02 8.95 31.24 39.50 13.10 40.95 95.20 67.90 17.26 86.31 4.48 59.31 28.73 1.09 79.29 62.70 33.28 29.58 25.98 41.20 77.81 44.42 74.82 27.13 21.64 25.46 97.66 2.75 96.98 91.14 69.33 86.60 16.70 76.25 6.07 59.09 94.78 97.96 97.48 48.78 81.08 33.80 34.30 36.09 70.91 96.99 53.13 43.07 38.80 70.53 16.38 62.90 6.03 4.49 25.10 72.40 20.89 64.60 12.78 0.30 24.19 21.71 99.79 55.08 50.91 72.68 12.01 12.94 -43.41 0.93 16.15 73.18 8.05 5.05 35.02 85.87 40.65 32.37 36.03 38.79 67.36 99.35 46.56 53.26 57.63 1.80 46.08 88.22 2.37 74.53 84.01 69.53 73.88 5.24 72.75 12.53 61.52 52.72 23.91 30.56 73.97 38.46 47.07 7.49 82.86 85.25 26.03 0.79 51.03 9.44 8.31 17.95 66.16 11.69 34.00 77.26 50.43 32.77 38.06 61.43 73.38 85.67 68.52 35.93 0.40 58.87 44.36 40.10 67.83 45.13 79.44 42.37 35.23 95.36 47.78 85.20 43.01 60.02 22.94 14.36 85.87 18.42 61.83 82.89 93.38 38.39 81.05 73.85 77.58 55.38 59.16 51.28 65.21 55.71 76.78 50.99 69.25 3.85 73.78 77.29 93.31 17.53 42.13 37.30 42.67 86.84 91.72 2.04 -25.65 59.08 73.27 57.88 7.65 58.55 16.57 69.27 37.27 4.24 36.75 48.10 42.08 71.57 95.41 12.51 98.61 63.22 45.43 27.43 32.06 12.96 17.86 86.74 39.18 2.64 88.15 4.35 53.78 62.65 51.19 82.76 63.60 17.34 63.68 91.68 88.74 76.01 81.59 53.19 82.22 16.53 95.41 63.21 78.09 29.80 87.63 8.24 21.08 12.41 81.76 90.12 48.09 95.07 56.50 3.76 2.66 23.67 24.15 75.60 33.06 13.52 32.14 46.77 57.09 98.70 12.90 34.58 77.53 37.45 78.76 14.45 47.15 14.11 2.56 17.49 35.11 93.91 92.90 19.78 63.59 87.16 77.19 63.19 99.19 8.19 34.31 39.60 9.57 18.89 43.72 19.19 84.37 35.16 40.43 46.29 28.32 15.89 71.77 2.97 -50.93 72.52 19.59 24.55 28.66 67.12 85.69 10.57 10.35 0.81 64.09 49.06 58.32 52.16 22.46 92.59 91.24 65.45 40.39 37.73 65.78 11.97 99.46 29.59 61.40 80.90 47.75 55.19 43.59 50.93 72.48 76.61 66.41 2.04 98.70 17.77 46.29 10.78 25.30 77.16 82.52 94.85 44.36 53.94 17.78 39.19 66.98 41.91 45.58 74.54 97.26 68.82 57.65 57.82 76.05 93.52 65.16 12.35 46.23 88.65 54.14 23.24 58.64 84.73 51.74 5.48 95.75 62.57 11.38 3.82 17.22 91.73 6.03 33.28 42.53 76.24 44.62 59.27 25.41 2.97 20.42 48.70 93.68 74.60 59.19 20.33 47.12 26.34 92.29 92.48 5.07 13.42 58.88 58.69 35.55 71.55 61.56 68.78 99.55 7.45 -22.33 95.46 14.72 42.60 77.60 33.77 86.47 75.20 46.62 37.98 33.21 34.53 1.40 77.21 68.62 37.72 21.00 73.68 4.58 0.81 48.74 53.14 27.83 63.79 65.47 51.52 65.37 53.20 8.15 52.43 65.24 89.66 4.75 99.57 78.55 66.28 94.78 17.27 95.48 72.57 83.94 99.46 0.39 43.66 78.45 60.29 27.15 12.48 35.77 27.16 63.44 33.09 51.72 99.26 60.18 67.49 99.12 73.33 70.38 8.09 66.82 6.98 38.10 25.20 59.25 64.44 11.79 7.74 64.64 6.72 10.38 59.54 94.84 83.81 20.26 81.39 56.66 63.01 17.47 20.06 35.00 71.37 73.75 24.55 27.96 94.28 10.97 81.34 12.33 84.27 32.60 10.31 78.09 31.97 81.87 42.13 62.89 90.31 26.24 81.55 -8.43 55.72 34.76 70.34 92.84 45.09 91.93 70.92 78.87 97.21 75.43 45.22 67.79 87.79 91.73 71.29 72.36 51.24 69.29 90.09 1.19 85.78 0.70 90.86 93.78 36.24 43.53 8.88 49.57 85.43 29.49 99.33 88.39 4.31 94.77 94.68 20.49 44.50 1.20 5.91 97.04 11.56 55.62 75.92 42.86 98.79 68.51 84.10 9.09 37.85 5.60 97.84 70.00 6.22 17.47 40.32 50.00 73.02 90.25 74.32 19.63 50.33 40.15 59.37 50.54 14.49 60.44 42.28 91.40 48.79 39.10 24.70 70.44 23.61 23.85 38.60 62.76 3.83 79.79 66.08 9.97 65.21 8.57 59.59 47.11 47.40 50.95 29.34 70.38 34.14 99.70 29.60 34.27 77.21 42.45 65.43 27.32 6.28 68.70 40.58 -47.47 69.98 10.36 70.08 10.90 76.04 36.31 25.23 64.50 89.34 60.78 2.01 83.24 30.95 11.51 95.21 47.51 74.92 99.00 79.21 84.48 35.38 24.21 67.37 40.45 7.18 41.91 45.19 21.14 21.27 6.18 58.02 22.06 63.20 28.76 51.18 73.39 75.13 10.93 89.60 63.96 24.76 18.32 27.10 87.11 7.87 89.69 50.47 88.78 16.09 70.60 27.09 93.74 97.06 37.79 59.26 17.40 60.68 96.78 90.82 93.90 7.56 49.75 23.75 92.17 95.18 53.34 33.81 87.75 7.39 27.20 48.03 39.56 63.07 51.15 45.37 98.70 81.59 15.68 83.97 84.41 30.09 79.50 47.08 70.73 19.17 6.59 9.77 77.30 74.17 25.26 10.21 8.32 10.68 74.51 93.94 79.41 75.53 32.90 34.12 -48.79 87.79 20.90 54.10 45.40 78.81 91.49 27.31 49.91 1.54 63.96 50.30 87.35 40.64 12.84 62.73 65.49 91.98 37.03 3.16 34.80 38.76 29.22 34.82 33.39 10.76 31.58 47.23 93.78 62.34 92.63 19.88 78.59 83.42 16.86 48.73 16.57 49.11 35.78 8.04 58.30 48.30 59.44 93.85 47.43 28.66 32.09 33.24 31.61 42.06 6.78 93.12 50.97 64.92 2.13 63.38 74.95 41.71 16.46 84.01 61.92 67.30 44.14 48.36 41.15 57.85 77.69 38.11 57.14 98.20 94.85 90.95 50.47 22.65 62.04 28.49 71.55 11.54 42.67 15.14 85.18 53.02 69.85 73.65 16.58 89.03 49.74 16.37 23.61 69.71 1.93 87.46 75.92 79.01 2.91 63.25 98.37 35.13 74.71 63.30 -28.98 61.16 27.41 72.40 74.24 52.76 3.06 99.93 43.09 42.39 8.33 48.79 86.85 69.26 71.69 98.84 15.32 25.56 46.47 6.71 87.56 52.66 36.99 58.47 66.37 32.31 98.81 11.24 47.15 59.00 42.34 61.88 46.85 35.19 30.56 15.29 64.07 30.19 95.60 0.54 30.24 27.19 2.77 54.52 87.55 38.13 40.99 82.87 75.14 61.29 84.86 37.15 25.38 72.61 83.44 93.00 54.20 1.32 16.18 57.06 25.56 87.29 1.14 70.10 53.56 32.84 16.06 12.26 3.82 28.54 33.84 2.85 52.66 55.54 31.80 72.13 22.68 93.09 39.01 96.05 96.93 33.21 32.70 47.09 32.64 61.55 59.02 45.13 82.19 86.49 4.70 45.02 93.25 96.24 39.40 69.22 69.21 90.39 85.86 37.48 -18.86 89.21 84.53 16.45 73.31 76.20 80.36 31.43 64.68 59.82 77.12 85.13 57.88 31.42 32.91 86.13 57.20 93.43 72.51 27.36 81.06 57.11 20.15 1.55 56.30 41.93 97.78 64.50 67.76 12.80 41.22 92.14 95.54 56.54 82.45 95.06 51.99 89.32 35.37 36.20 23.04 51.00 82.30 86.58 52.99 43.16 14.46 86.42 5.69 3.99 9.68 34.10 2.81 38.82 14.45 30.89 79.33 88.77 46.29 25.19 75.20 46.57 88.14 99.46 11.00 86.01 58.97 97.29 1.29 26.88 39.44 64.56 11.97 99.03 63.87 55.61 26.83 64.49 2.01 94.10 75.55 51.00 72.08 35.96 62.81 40.31 72.64 95.84 87.73 71.68 8.30 51.19 25.32 34.82 98.59 27.40 55.43 56.94 9.45 42.82 -93.65 48.42 87.41 68.32 67.18 63.71 70.77 52.18 41.26 22.82 2.33 7.11 50.49 98.27 60.92 59.85 13.65 87.41 45.48 71.82 29.53 82.23 70.07 57.08 30.31 64.34 71.43 40.93 81.87 66.58 37.85 12.55 26.03 93.83 73.05 98.01 97.43 1.28 45.86 12.74 22.91 81.95 35.36 31.30 62.31 42.25 77.88 86.49 37.90 38.32 53.32 56.87 85.11 45.79 13.93 85.53 80.13 56.62 28.04 28.93 85.12 97.67 26.26 0.35 62.49 2.04 12.42 47.73 80.04 77.20 47.94 51.77 47.08 94.89 70.62 55.24 21.50 27.55 6.39 68.39 89.22 45.43 49.84 39.49 86.88 14.17 46.66 43.69 11.63 64.13 14.29 57.84 38.67 50.16 28.86 23.23 76.88 3.61 39.72 96.54 -16.25 64.19 81.90 48.18 63.39 80.71 51.07 22.85 62.55 45.44 60.41 84.30 98.02 89.79 72.59 91.60 69.38 31.98 0.73 99.28 89.65 96.62 24.37 58.48 26.13 63.42 92.93 41.42 91.29 49.26 62.83 16.28 25.07 35.08 91.92 8.46 41.60 67.00 79.27 98.94 5.61 46.08 98.54 57.14 28.91 94.29 83.63 97.90 90.26 18.49 14.49 4.44 26.10 86.72 70.82 20.60 36.01 37.96 32.23 47.21 79.48 6.28 82.32 33.25 75.88 14.93 47.67 63.31 70.73 90.43 30.10 80.55 35.76 78.10 57.85 13.53 61.02 72.89 82.27 15.05 73.78 54.44 31.13 40.02 72.06 51.43 75.67 54.44 77.39 1.44 1.17 4.82 97.85 37.43 34.77 23.75 67.15 77.99 62.64 77.90 -10.27 5.51 83.87 28.18 20.63 98.47 80.89 10.71 46.77 74.91 3.91 34.64 98.90 1.25 25.66 37.74 86.06 44.66 77.15 42.98 22.43 67.81 89.24 66.89 0.38 89.51 22.72 40.35 41.19 86.88 90.60 9.98 93.65 37.33 89.73 90.76 44.57 24.53 33.71 94.98 62.45 57.08 86.51 6.06 54.40 61.39 52.07 1.69 72.00 75.98 82.18 19.60 12.62 70.45 78.28 34.61 77.33 76.19 85.10 45.01 51.10 92.32 81.66 19.64 66.27 73.15 4.55 89.39 32.23 25.60 66.29 91.39 30.42 65.45 85.85 24.12 45.32 8.92 34.88 87.20 32.90 40.82 78.28 65.10 92.99 92.34 46.65 42.22 66.53 96.12 42.85 39.88 38.90 59.83 87.10 42.66 31.24 51.87 68.41 66.59 -96.74 11.93 10.26 51.96 10.25 76.45 26.20 26.27 42.06 70.91 75.62 78.48 26.56 48.54 64.85 54.06 47.31 27.50 95.62 67.20 6.76 1.59 75.20 45.06 75.91 74.18 71.41 71.43 64.39 4.02 66.25 65.87 85.09 98.62 7.22 71.33 47.74 24.00 32.28 18.69 23.32 86.95 79.24 9.50 23.22 17.34 28.27 2.01 16.66 33.35 53.20 43.99 71.09 82.52 9.05 64.52 51.57 77.70 35.77 49.97 13.72 12.70 35.33 68.85 66.65 34.96 70.97 3.83 53.07 85.70 12.81 96.27 53.23 59.40 66.60 41.72 97.43 48.71 21.39 32.80 67.06 28.87 24.13 7.87 82.55 28.68 31.67 76.85 56.34 67.43 6.44 32.92 35.18 69.35 9.74 80.93 0.93 82.65 75.30 36.02 -69.55 45.43 85.70 67.47 70.33 83.17 52.43 35.54 31.20 8.94 97.64 82.16 41.23 11.98 45.18 96.40 21.35 80.70 42.44 48.15 95.46 63.24 34.74 12.54 94.46 48.64 61.09 19.50 34.19 78.62 57.00 96.57 0.53 82.20 46.59 60.60 68.91 45.41 13.38 18.74 40.57 49.79 46.37 20.07 23.93 94.18 42.40 95.08 39.77 74.80 75.85 51.28 48.47 26.18 89.80 3.43 9.69 61.13 73.57 28.38 11.85 18.29 81.00 1.54 17.00 52.06 77.64 22.59 87.14 17.10 32.07 88.91 55.10 96.60 78.67 25.37 86.27 46.96 79.43 79.67 7.35 12.96 25.31 71.03 22.85 24.98 56.81 64.35 76.82 17.11 73.24 74.67 72.33 45.80 75.42 77.46 50.80 73.17 35.28 47.33 -79.85 81.61 28.46 8.53 83.23 82.17 22.24 5.33 93.26 92.53 68.03 66.50 82.74 19.49 19.37 76.89 48.37 87.03 85.79 23.62 65.44 89.60 0.78 61.04 52.91 10.02 78.77 75.09 86.34 56.02 72.20 30.97 78.48 30.67 25.97 78.12 5.35 90.28 69.36 21.43 50.41 33.78 26.93 62.70 53.99 48.73 37.13 36.60 24.15 63.21 43.91 79.58 12.39 12.59 52.49 30.55 90.80 79.68 84.50 43.05 39.30 67.55 64.79 44.07 42.85 73.95 1.58 13.83 9.32 58.49 4.32 87.04 21.13 22.86 55.85 95.49 69.10 95.60 73.45 4.79 69.77 40.69 61.91 17.53 67.04 40.37 81.26 81.06 63.55 79.14 62.64 88.20 38.29 83.39 83.89 63.50 70.33 93.94 85.37 37.58 -87.04 52.53 91.21 83.14 32.56 32.85 85.03 74.16 34.09 27.10 31.18 71.16 14.42 33.49 51.25 25.04 40.56 89.90 37.50 89.31 51.86 77.94 73.37 33.19 46.34 32.04 23.02 94.07 6.77 24.45 17.90 83.98 79.44 57.01 14.11 97.18 72.48 79.68 31.67 89.22 28.34 14.50 11.29 25.34 77.86 21.21 41.57 40.50 63.66 87.73 44.75 2.85 14.07 4.71 32.46 32.49 11.08 44.28 3.60 49.70 50.74 15.69 57.82 41.95 47.06 88.77 51.61 91.16 90.08 6.59 1.67 35.34 25.45 37.64 32.37 7.05 85.60 90.52 16.82 61.22 19.83 74.75 54.71 48.15 22.20 68.10 83.81 36.46 88.20 79.57 81.00 29.21 9.13 89.01 67.87 56.38 72.59 47.20 42.16 93.39 -52.89 76.95 46.71 83.29 23.90 33.87 80.57 44.72 14.35 32.42 80.26 20.23 97.87 78.71 24.37 29.50 99.78 14.86 15.44 25.91 2.43 32.52 81.43 58.34 90.52 59.36 97.55 72.84 94.59 19.73 0.20 24.45 88.43 95.60 50.03 34.95 43.63 32.39 59.86 4.97 94.94 27.92 57.67 97.37 13.20 87.53 77.59 25.98 30.76 49.18 35.34 12.95 38.10 93.50 87.09 88.57 52.42 60.80 36.15 72.60 97.31 92.99 36.37 12.51 59.90 92.72 36.82 61.67 8.69 66.97 36.83 78.28 5.70 51.66 61.55 92.96 9.67 11.69 54.27 88.11 71.92 18.54 40.69 98.35 69.97 59.24 98.24 58.69 83.60 22.85 65.44 35.90 32.81 93.73 86.62 38.72 14.50 90.08 14.59 73.25 -51.86 72.34 24.73 62.94 89.00 84.72 32.38 6.66 59.11 78.61 40.58 90.07 13.81 39.70 90.88 8.48 95.53 66.82 56.13 90.45 92.20 59.74 88.99 85.89 37.32 13.18 19.46 99.52 97.15 56.36 49.62 55.40 40.70 70.68 74.65 81.73 99.46 96.38 7.01 81.03 42.91 32.62 66.88 79.37 34.49 36.20 45.74 62.56 94.38 57.84 39.46 91.57 49.49 17.22 76.69 64.52 1.39 65.93 28.26 14.65 79.25 40.16 2.80 67.15 71.29 35.65 67.57 36.89 26.36 31.93 74.80 52.67 4.33 30.39 22.90 15.29 9.46 50.11 42.26 28.27 88.97 18.03 58.09 53.45 26.19 26.14 42.82 76.12 53.05 18.96 19.25 53.41 48.56 58.15 59.33 32.69 93.65 60.98 3.02 9.87 -53.68 16.88 65.54 65.82 4.08 70.77 99.42 59.79 85.65 83.57 70.96 59.45 54.90 57.33 37.93 82.02 9.24 32.19 89.66 20.31 98.41 36.55 14.42 3.96 29.97 8.68 53.10 38.97 44.76 93.80 44.41 40.01 93.87 15.84 93.56 3.57 67.71 64.48 0.01 40.81 74.68 78.10 53.45 76.06 64.33 65.01 69.64 28.57 45.15 34.51 34.86 65.85 2.38 88.76 9.98 53.51 4.01 41.14 24.42 48.89 46.79 59.06 94.18 71.61 74.89 13.64 45.53 13.75 48.76 22.06 41.72 39.44 85.75 85.79 65.42 92.03 46.33 45.97 8.01 5.94 99.22 66.53 64.95 65.55 82.37 72.71 87.83 32.56 81.64 36.62 57.38 85.54 92.81 8.42 4.06 47.06 59.97 9.86 58.75 70.59 -9.48 51.55 81.05 60.15 3.39 97.01 11.61 37.05 22.31 36.48 57.81 94.55 49.58 77.21 92.68 79.28 6.87 99.00 30.04 11.89 4.13 21.90 29.90 56.25 49.60 47.08 57.18 88.65 56.55 69.15 22.00 90.23 0.29 87.46 59.05 64.02 89.03 34.11 54.59 46.35 12.34 73.52 86.90 7.81 98.43 92.24 31.69 0.70 9.46 71.67 52.77 29.07 32.15 88.46 96.68 33.21 32.33 35.14 83.22 1.75 61.57 38.26 21.31 86.87 8.99 3.88 49.48 6.12 23.91 6.98 31.81 57.38 67.66 97.66 15.30 77.70 21.76 61.67 80.49 31.61 69.40 36.06 50.07 63.38 87.25 84.51 25.12 7.79 15.80 21.16 85.16 49.01 4.17 62.06 77.75 55.69 36.08 79.93 57.80 32.50 -59.14 9.22 58.30 81.61 6.68 20.57 23.99 13.08 99.94 95.00 39.93 62.94 93.09 95.67 42.66 48.50 89.58 13.21 78.35 8.89 20.12 72.05 66.99 39.86 78.89 23.19 59.59 71.22 88.00 84.87 79.74 12.04 40.41 71.40 19.34 8.78 65.51 79.56 14.40 71.83 0.27 49.27 0.16 82.36 0.71 71.00 89.95 77.03 23.70 6.32 33.43 34.33 28.91 87.97 7.88 12.96 19.92 30.93 57.43 78.16 88.55 80.49 52.11 80.21 46.63 89.70 31.21 14.30 41.18 27.06 48.64 99.41 66.77 24.82 82.03 79.54 27.57 33.12 55.32 75.99 62.17 65.04 13.27 2.74 0.91 38.54 63.98 25.24 12.48 75.04 25.07 22.64 88.87 65.91 36.53 8.44 38.31 6.82 25.66 6.85 -66.04 1.77 41.45 11.85 67.24 80.63 76.84 69.82 22.87 39.67 12.80 68.51 61.92 99.02 73.48 63.33 23.79 57.10 60.32 46.98 68.85 86.64 53.19 91.96 55.01 55.29 59.39 6.06 86.68 0.02 55.53 84.64 10.13 34.95 75.62 15.41 9.64 8.28 31.90 51.24 53.48 57.60 59.91 9.58 41.24 17.96 2.27 40.88 78.81 38.93 26.88 64.80 19.01 67.00 14.55 2.41 88.74 60.98 92.33 51.49 57.95 48.04 66.23 91.25 92.16 31.55 90.86 61.36 39.73 99.82 60.63 70.98 68.74 67.53 18.20 86.34 10.32 50.42 70.20 61.84 1.48 25.54 88.28 23.95 50.92 77.21 29.42 37.35 61.02 82.25 5.76 67.64 8.26 26.75 37.74 53.71 27.69 54.27 22.90 28.00 -58.11 2.58 87.34 94.25 80.37 97.82 98.01 31.98 7.47 13.05 17.81 11.15 62.19 94.41 47.18 6.14 30.97 13.62 50.30 60.02 97.52 26.60 4.93 83.13 68.26 16.05 44.69 14.49 36.34 6.30 29.59 23.24 65.86 65.92 47.94 30.82 96.17 65.71 0.85 58.41 93.23 27.00 21.37 19.63 32.92 6.80 45.28 74.07 66.09 36.30 1.94 28.68 10.86 81.97 92.95 51.74 83.50 10.37 41.81 15.29 78.16 38.79 21.38 85.50 13.65 23.75 8.92 27.33 84.77 93.87 35.41 87.28 15.08 67.32 54.98 37.56 50.38 25.28 85.42 8.39 3.92 37.91 70.47 64.86 92.51 31.32 94.17 66.04 42.19 15.14 59.69 64.59 74.52 14.39 19.61 14.74 31.37 48.59 2.16 14.93 -40.93 31.72 18.50 49.99 13.47 33.77 6.62 32.10 88.84 94.25 49.39 6.52 20.93 30.78 17.88 19.69 62.86 42.28 35.79 74.68 70.88 57.62 36.77 42.21 95.82 11.68 77.68 69.16 85.19 66.10 79.00 16.62 66.28 52.25 96.55 66.24 50.03 40.56 84.36 70.66 1.16 97.88 17.04 95.61 76.83 5.36 65.73 47.27 69.68 77.20 14.85 83.82 62.18 1.63 22.81 98.08 78.18 18.87 58.74 41.90 97.08 11.28 76.56 54.23 73.90 49.97 27.46 97.48 47.03 5.85 44.46 66.57 22.65 64.18 23.46 95.30 3.11 52.04 39.14 96.74 21.07 92.30 32.60 68.63 82.21 74.41 75.76 24.36 74.02 98.72 90.90 81.20 53.17 96.56 0.40 4.46 22.34 59.91 64.91 54.73 -71.32 41.17 64.78 61.32 94.16 48.10 96.19 10.96 24.50 63.30 18.73 7.12 2.67 84.26 77.44 36.13 17.66 61.67 1.17 43.48 88.61 0.87 96.40 30.66 62.10 39.09 67.36 81.40 94.64 61.19 56.55 30.00 5.00 15.80 73.85 95.39 28.64 4.27 34.21 5.74 44.39 61.55 98.75 27.49 28.93 37.31 4.25 50.96 12.87 69.49 21.88 15.97 64.34 53.54 57.82 80.26 66.66 33.06 93.25 59.73 15.15 52.59 91.00 37.62 85.53 28.81 29.83 98.76 2.65 8.11 56.43 4.30 24.64 10.83 45.80 58.91 60.34 74.13 12.26 72.64 50.50 47.07 81.94 86.87 34.16 91.69 25.14 6.88 31.59 79.78 74.38 83.95 24.83 66.60 7.05 49.79 10.33 89.23 80.57 81.65 -14.49 68.82 73.37 43.31 23.14 91.45 51.14 71.87 44.04 48.70 55.51 27.65 84.89 77.14 66.99 52.83 68.96 19.36 25.51 36.09 5.37 26.44 85.63 83.71 61.40 18.05 17.55 74.13 58.55 9.94 88.93 55.27 9.69 30.09 21.24 98.62 63.60 94.37 96.47 26.56 32.28 5.18 60.38 33.59 42.85 95.21 28.78 47.64 95.60 70.23 72.35 87.24 64.57 33.17 70.31 74.70 79.83 2.17 6.04 66.99 3.17 61.22 12.98 69.13 80.32 98.78 56.70 44.11 85.17 92.07 30.90 51.66 95.30 28.52 84.77 93.34 56.54 20.93 81.07 51.78 41.78 70.94 42.87 29.99 96.77 41.53 80.54 81.11 70.00 33.41 54.33 85.84 14.33 41.97 91.26 62.90 52.17 55.38 54.74 38.96 -11.99 37.34 1.46 51.19 69.76 7.51 94.61 71.54 27.18 6.21 46.40 12.66 67.89 52.71 40.08 89.62 71.44 1.47 36.41 27.56 76.16 36.62 73.98 21.37 19.61 47.95 32.68 23.25 69.98 53.70 9.32 33.00 34.85 57.67 19.52 87.74 87.21 36.48 99.15 89.08 79.28 92.35 44.41 54.50 94.86 81.04 87.44 51.55 75.94 48.82 74.47 6.15 0.13 57.75 38.09 88.86 37.49 66.43 37.30 36.13 71.31 35.83 36.89 43.15 20.81 94.36 73.33 70.08 0.43 58.50 61.22 17.95 13.70 21.81 37.17 72.43 58.88 71.98 12.21 99.24 33.14 73.87 39.80 7.52 5.07 86.17 82.31 71.87 64.35 21.45 12.07 1.41 91.15 2.44 38.11 20.83 31.12 70.16 70.29 36.75 -54.62 13.04 88.15 25.64 18.10 27.41 45.28 46.01 59.09 37.72 57.28 33.54 77.16 28.92 94.99 94.05 1.06 29.89 55.99 21.86 4.54 36.26 52.26 11.87 0.73 86.64 54.64 23.86 42.76 59.76 57.55 18.36 54.40 12.68 7.97 67.40 99.55 64.48 46.33 65.16 43.94 38.94 40.93 96.09 96.64 0.45 6.09 22.48 76.65 22.15 20.37 34.18 75.11 56.07 60.72 0.02 56.09 36.18 41.90 30.97 80.33 41.82 22.36 10.98 99.78 38.62 83.83 24.04 67.90 38.25 55.96 38.02 38.39 52.62 69.90 80.91 90.97 87.57 82.62 69.42 38.74 89.99 96.16 46.54 31.37 69.63 48.78 53.43 73.87 2.30 66.18 23.74 28.04 76.42 35.41 49.61 5.66 90.33 39.62 49.17 -23.16 22.90 93.24 7.02 20.21 40.81 21.64 33.47 84.77 50.49 45.35 46.13 1.42 87.03 74.30 10.91 74.34 35.06 93.68 11.55 65.16 66.94 12.75 78.27 39.44 34.11 84.81 50.90 39.45 94.65 26.71 87.27 42.90 94.19 19.30 45.01 87.04 64.82 79.04 17.38 20.37 20.89 48.53 65.61 2.59 78.65 87.04 77.99 53.23 52.31 53.50 85.08 7.57 88.92 94.75 22.14 80.33 53.26 76.75 79.60 94.04 34.93 45.34 66.99 30.78 66.43 58.72 6.66 15.11 30.11 6.75 2.54 93.34 40.59 24.32 6.09 18.85 60.74 23.20 7.71 24.73 2.27 35.69 79.14 65.72 72.62 1.23 88.43 13.07 52.45 60.87 24.73 80.22 37.50 35.35 86.99 31.28 39.65 56.47 59.13 -43.67 51.75 43.31 15.78 40.15 15.98 91.61 68.14 54.19 10.50 23.29 53.44 35.52 7.30 53.56 42.82 61.53 8.85 69.10 66.49 89.28 12.69 15.05 40.66 20.83 41.39 91.91 43.67 73.43 50.07 94.40 60.75 66.22 85.89 35.64 72.95 50.28 10.92 1.19 91.95 92.66 76.71 32.07 46.65 17.55 27.74 94.06 86.98 35.05 47.49 56.05 4.87 18.50 85.43 20.35 38.62 43.35 54.77 49.88 39.29 56.14 34.24 26.86 19.83 58.80 13.14 75.35 23.50 66.68 4.33 42.72 26.74 99.65 68.84 54.74 6.43 17.62 81.88 71.05 3.32 56.24 49.05 69.67 43.92 91.44 57.12 13.45 9.80 1.47 0.74 89.94 8.94 94.13 9.51 12.34 65.78 67.88 51.92 14.40 17.85 -1.83 87.99 74.33 25.94 82.83 32.69 50.36 43.54 46.51 1.61 45.60 44.21 68.51 78.60 60.18 97.10 72.42 58.49 71.34 53.86 32.72 0.74 50.59 92.54 14.12 20.49 95.53 55.15 33.15 34.32 6.87 4.13 54.41 18.93 58.32 48.10 55.79 28.92 99.96 4.10 34.73 57.54 57.67 33.04 72.38 97.51 10.37 59.05 24.33 40.61 1.61 97.12 36.68 19.50 38.54 27.00 42.70 94.31 83.37 15.35 83.62 41.15 73.44 63.02 29.35 70.11 15.64 87.49 2.53 75.74 56.82 41.76 16.91 97.48 93.04 27.99 29.04 15.80 0.37 35.03 87.43 90.78 85.65 18.31 24.25 53.40 10.30 91.95 74.09 35.85 32.02 55.62 30.63 98.21 98.14 91.93 17.07 38.23 71.68 70.71 -85.06 86.69 49.83 63.97 45.60 82.60 46.89 95.26 17.38 65.81 11.55 33.60 96.42 69.81 39.49 35.93 64.31 44.05 9.73 21.69 1.65 37.82 85.72 85.97 94.87 54.68 58.76 77.45 10.79 55.77 13.83 15.08 16.74 85.79 32.43 48.52 88.85 78.21 67.85 89.13 52.56 97.35 40.55 64.39 74.16 12.80 67.07 36.66 70.97 57.02 18.07 11.67 19.78 92.19 17.50 16.09 14.13 76.75 95.85 93.38 52.71 78.92 97.96 64.49 92.86 72.97 80.82 89.30 33.91 42.92 21.93 65.15 20.15 85.99 82.61 49.18 95.77 71.81 19.32 53.41 97.90 30.48 75.21 12.30 71.69 72.53 65.99 89.81 10.36 60.44 12.63 91.97 43.94 76.13 65.53 95.26 6.84 74.30 92.46 9.23 -99.90 26.37 45.99 54.51 99.56 91.76 34.46 48.60 16.29 8.19 17.88 80.93 83.35 82.66 88.45 40.65 56.82 76.91 66.22 90.37 57.53 69.15 75.02 59.35 54.37 20.27 63.40 79.92 12.80 80.84 50.38 73.09 17.61 54.45 56.01 50.89 88.48 41.24 39.58 14.40 59.28 24.29 14.17 85.79 16.77 29.48 57.78 38.17 78.28 91.44 90.80 61.19 59.39 91.02 76.67 68.72 39.16 78.95 19.03 9.36 45.94 10.56 55.71 3.04 32.33 24.90 15.97 60.24 17.13 80.89 36.20 68.33 93.44 51.72 68.65 78.98 88.67 88.73 80.33 43.65 3.92 29.67 17.00 82.00 5.33 9.60 43.28 34.79 98.98 98.87 99.05 51.11 50.27 14.68 54.21 70.13 34.13 51.60 99.84 72.29 -28.51 46.99 56.68 74.20 0.78 66.87 75.62 69.34 88.06 79.21 75.72 37.88 68.84 74.44 45.54 74.26 96.93 89.95 39.80 30.24 28.94 8.23 88.23 34.80 0.46 43.83 44.10 55.85 94.76 52.78 93.47 87.97 73.28 83.89 24.14 94.99 18.21 57.16 98.25 51.06 44.23 43.57 55.23 85.80 93.04 85.66 90.54 34.31 84.57 2.20 75.71 22.65 52.80 85.68 79.60 29.44 22.46 35.53 30.35 20.68 83.60 38.90 80.14 25.94 41.22 2.55 14.15 98.73 67.46 77.80 73.37 75.20 74.24 54.86 19.69 12.30 35.90 10.21 1.80 63.55 38.68 56.41 51.28 33.02 39.18 31.93 67.38 65.94 89.75 38.47 28.46 17.73 21.28 32.52 57.69 48.57 80.29 89.56 4.73 46.90 -58.84 51.88 78.70 92.05 67.07 15.84 93.18 94.54 99.54 58.47 26.86 32.36 84.03 74.48 62.31 0.73 24.79 71.37 50.96 41.32 27.32 37.29 27.16 82.70 35.13 98.05 42.67 97.57 41.73 15.50 96.82 13.93 24.87 29.21 67.57 38.15 57.12 47.31 50.66 35.59 89.93 42.06 93.85 46.64 46.18 97.36 17.60 72.38 80.03 42.81 54.51 31.16 73.64 61.90 90.54 59.69 14.63 29.63 65.57 55.03 36.17 65.63 5.19 3.58 25.09 31.26 82.82 70.33 95.05 63.16 83.78 83.49 90.45 25.66 84.22 11.50 80.79 3.77 61.61 23.55 4.16 24.74 3.12 70.96 83.08 72.16 35.98 38.57 72.26 21.10 7.09 64.35 15.15 4.21 42.14 38.12 7.56 80.02 0.83 71.72 -2.84 14.74 29.79 19.50 45.97 86.68 87.69 29.92 9.22 18.33 47.82 79.03 90.41 96.86 46.25 53.43 46.79 69.31 72.56 93.43 94.30 94.62 18.70 64.42 91.52 8.15 95.56 27.58 12.91 73.42 87.11 32.55 73.68 97.74 18.43 31.06 46.47 50.05 63.82 89.64 63.05 87.19 76.94 90.65 12.82 50.87 41.89 99.28 19.79 13.23 99.04 13.90 6.16 41.77 87.60 91.14 76.49 84.54 68.06 27.21 50.92 4.47 42.20 47.77 17.97 7.17 49.50 98.07 58.81 87.44 89.69 39.09 30.61 90.01 91.85 48.65 63.48 2.11 83.34 79.25 25.07 31.65 44.41 15.81 29.67 38.35 43.81 29.48 1.14 46.81 4.41 19.87 88.20 64.31 14.29 33.20 73.85 27.50 40.66 99.26 -16.33 61.49 42.90 55.83 33.57 92.02 79.84 29.98 14.66 27.58 95.57 48.72 34.87 11.11 11.09 3.71 7.51 45.53 16.39 67.33 26.12 88.96 28.17 38.37 84.78 66.75 86.94 49.78 67.88 59.57 46.49 75.53 29.47 27.20 70.92 54.52 78.12 73.24 49.15 73.18 39.93 70.13 90.13 62.57 62.87 49.88 8.26 23.81 50.53 39.58 93.62 7.47 63.60 44.97 84.67 60.49 20.30 42.44 53.92 8.19 84.54 17.21 4.69 34.44 46.16 24.77 41.33 16.63 54.59 66.28 94.34 14.46 2.09 51.30 47.12 57.44 68.03 25.74 9.44 2.11 19.87 41.43 36.27 0.13 37.27 95.17 48.36 73.63 87.43 81.99 51.55 25.13 77.15 73.18 17.11 88.97 76.41 75.15 67.31 64.27 -88.61 23.46 1.06 89.29 7.68 26.37 40.09 65.00 42.80 75.19 92.39 43.93 84.76 57.79 72.67 0.75 27.87 55.44 51.13 31.01 48.13 7.50 28.08 14.29 86.11 97.93 42.52 11.87 33.25 57.58 5.87 80.58 18.25 84.17 78.99 0.98 50.98 53.90 90.14 5.42 45.76 62.25 30.94 51.87 20.64 54.31 4.98 24.76 44.48 92.63 10.78 48.35 0.48 20.00 25.99 88.46 46.12 96.22 50.64 71.99 4.73 98.40 92.85 89.09 51.42 86.98 56.76 12.60 32.64 95.43 46.05 78.21 22.71 78.77 70.88 8.04 17.04 14.80 89.23 61.65 76.25 65.68 77.53 94.39 11.68 22.37 38.55 69.25 32.14 32.36 89.12 62.18 91.74 21.94 79.90 89.23 90.85 58.53 3.58 95.19 -45.14 22.80 19.51 23.41 7.64 49.63 52.53 54.95 5.52 13.14 62.18 44.25 79.10 38.36 45.36 95.93 3.06 62.56 95.36 84.66 98.64 69.93 75.28 67.28 45.36 57.21 81.69 2.12 74.21 36.71 54.98 26.59 56.76 46.91 59.92 4.33 14.93 55.39 58.67 34.22 96.88 91.78 62.24 61.05 0.77 75.71 8.55 93.61 36.51 0.95 49.33 64.17 91.67 15.19 46.94 32.68 63.34 84.25 26.46 13.18 51.50 82.63 14.21 46.88 35.50 57.84 63.40 44.34 58.32 66.85 73.61 17.10 12.34 25.61 66.60 94.02 50.56 2.43 91.39 46.25 46.49 80.61 3.04 25.90 61.43 48.60 89.25 13.86 70.57 87.06 27.43 13.71 39.84 16.58 91.95 77.48 55.20 46.67 97.25 56.40 -79.10 91.01 69.22 5.68 52.17 29.04 18.45 92.88 58.51 32.26 49.24 83.31 64.83 61.70 65.80 39.23 13.32 22.28 24.41 51.29 96.70 94.53 80.93 87.74 8.38 5.92 43.32 47.56 14.13 72.67 22.11 4.35 81.03 74.99 70.11 24.81 80.11 12.94 67.55 57.90 47.96 47.78 55.69 18.98 13.80 28.28 55.77 79.33 46.95 58.72 7.01 34.97 18.01 66.17 38.55 56.51 65.59 37.39 54.24 31.08 17.59 17.30 92.80 37.03 94.27 73.82 46.37 7.41 21.79 43.37 61.21 19.13 57.26 39.20 62.75 19.18 33.56 91.15 55.25 65.43 49.62 40.86 32.53 97.30 51.77 11.12 64.11 51.88 52.17 88.37 33.35 8.24 83.91 90.82 27.03 25.00 66.55 38.28 20.96 2.52 -71.22 40.03 2.44 25.73 49.25 47.99 82.18 41.44 0.28 77.35 60.61 44.88 15.54 52.63 70.01 57.90 21.63 96.31 17.53 71.06 76.23 26.21 77.14 91.19 92.73 84.38 9.89 10.15 22.13 33.50 21.68 0.13 65.88 75.42 39.24 93.82 21.19 73.00 75.11 91.61 49.83 75.63 75.35 35.51 3.03 31.92 16.94 71.28 87.64 68.30 1.32 19.37 4.58 3.19 78.07 84.58 13.77 99.27 51.33 12.94 37.26 15.82 22.31 11.21 76.39 68.77 67.19 95.23 7.57 92.45 83.85 44.71 90.31 91.53 88.75 27.73 87.96 15.35 50.16 48.61 92.37 76.18 95.08 23.61 10.61 78.11 59.63 6.87 21.70 38.50 18.64 83.85 51.14 56.51 86.22 51.61 17.84 67.74 73.84 41.26 -41.17 22.01 24.32 46.74 51.03 66.20 21.47 92.81 50.97 63.09 7.07 46.91 78.80 82.46 7.43 16.72 82.94 14.31 2.41 8.98 55.51 96.56 17.58 73.70 25.26 14.72 80.69 18.62 11.89 38.84 55.62 4.92 71.43 75.13 26.45 38.81 45.03 23.58 39.71 48.00 52.24 70.68 77.62 48.38 92.32 83.82 35.71 17.49 1.78 24.26 7.11 15.19 0.85 89.98 66.21 45.24 47.55 18.43 44.96 51.40 33.66 40.25 28.80 72.14 54.82 39.31 52.74 22.98 95.51 34.54 5.16 38.05 68.49 44.79 43.79 39.61 85.34 27.42 21.40 6.99 50.04 20.21 41.04 68.15 84.65 66.27 25.89 60.25 42.55 63.38 42.12 70.20 87.48 12.00 77.21 97.46 69.19 90.21 94.92 12.25 -36.34 41.60 62.59 44.78 26.04 71.15 4.21 75.52 62.16 63.38 7.29 1.47 80.49 87.63 89.85 73.18 48.62 32.12 16.43 76.52 68.83 66.83 76.41 26.54 37.68 64.94 57.74 96.62 34.51 70.31 31.57 73.11 49.84 41.60 55.83 70.06 17.72 48.30 17.56 87.80 34.19 12.35 89.82 13.41 46.63 20.90 90.18 4.83 98.24 34.50 90.98 5.79 19.41 37.79 97.93 26.15 77.21 96.41 87.54 31.86 15.20 94.19 99.61 74.02 93.06 16.02 99.05 25.32 45.37 76.76 66.59 95.46 58.51 2.14 30.92 67.17 23.51 57.32 17.53 0.04 55.25 38.16 45.84 87.76 34.52 32.68 84.70 96.40 19.73 99.38 34.40 80.35 83.58 84.68 89.39 10.36 92.29 6.92 37.47 76.63 -6.86 25.23 8.09 10.75 14.83 10.29 15.80 11.40 73.55 6.68 47.42 27.44 18.47 11.43 9.72 73.19 13.46 21.24 0.33 29.18 15.30 11.48 31.26 30.85 0.90 83.68 64.88 38.02 29.18 67.00 54.95 48.54 58.31 37.67 35.66 22.73 38.18 24.61 37.56 1.37 7.41 94.84 16.82 17.53 72.05 55.75 92.94 54.73 1.86 28.67 40.02 20.07 70.85 61.24 84.97 92.83 11.45 14.64 25.35 45.93 81.37 97.63 47.32 12.12 44.39 14.47 37.77 66.53 81.83 31.59 14.35 96.28 91.64 89.68 62.15 17.52 60.03 37.89 47.14 36.40 9.24 21.66 2.31 59.79 87.49 78.95 85.82 8.79 42.33 92.26 37.75 68.34 19.80 55.77 84.85 29.85 75.32 49.32 38.15 16.80 -22.76 42.38 71.35 92.96 16.28 80.31 69.95 9.31 12.75 37.07 91.19 79.24 26.06 99.91 53.17 16.49 64.38 49.15 68.05 46.42 71.30 20.80 26.16 22.44 2.51 0.97 30.86 17.06 70.79 74.86 75.78 53.64 9.48 73.65 1.23 51.35 85.49 58.64 57.74 10.35 31.46 69.18 94.85 93.12 40.44 88.62 32.11 99.35 21.54 76.26 52.42 62.09 37.03 44.28 92.31 28.80 12.69 38.96 14.73 89.04 89.49 76.15 67.73 7.51 66.34 1.67 55.12 10.98 35.79 85.33 83.36 93.93 61.26 35.47 59.12 70.51 52.16 66.49 39.85 40.00 32.41 40.06 5.79 66.45 74.95 58.35 75.26 44.79 71.19 25.37 78.18 5.36 95.22 96.23 37.52 22.01 33.67 38.90 65.22 15.99 -71.93 98.27 12.82 82.15 14.97 36.04 75.28 24.15 89.91 60.82 59.45 1.11 59.42 93.35 2.03 80.47 77.07 10.55 52.75 11.78 13.04 43.60 8.35 95.59 97.05 93.05 24.74 79.78 92.84 27.70 89.26 33.53 37.16 75.09 35.64 35.25 75.24 69.16 2.95 79.87 86.55 99.83 60.20 40.06 34.65 44.62 1.25 15.16 81.54 93.78 29.71 23.99 16.48 0.60 52.24 77.26 21.92 66.78 40.81 74.69 2.08 69.31 36.48 51.31 63.75 49.69 6.78 55.01 75.54 6.54 2.02 29.76 88.05 60.93 82.05 22.82 35.25 91.99 99.40 36.79 58.13 66.53 20.87 32.84 21.55 35.21 92.00 64.42 91.95 3.50 70.35 55.62 19.87 25.21 49.53 45.20 13.94 70.08 17.09 62.30 -73.58 11.22 28.63 99.51 88.29 85.22 38.35 5.60 86.00 80.81 88.14 15.55 52.42 29.05 84.57 47.25 58.35 20.91 80.50 25.70 4.88 28.88 72.14 0.41 20.17 98.53 64.34 85.63 56.77 12.60 68.16 32.12 24.34 74.90 72.35 51.65 17.48 99.84 93.60 6.74 79.71 97.95 11.29 44.49 53.03 61.57 77.49 4.16 26.48 39.14 79.60 20.26 96.37 85.40 17.93 11.71 42.19 46.28 32.96 16.14 31.51 58.90 97.49 22.71 65.36 76.01 42.38 1.91 36.24 44.03 39.26 87.26 77.70 78.34 57.64 74.61 56.22 30.96 20.73 61.50 37.70 29.94 60.69 12.82 12.71 75.75 88.90 76.21 56.35 46.78 69.20 92.96 62.41 38.23 84.43 69.33 41.27 53.83 92.65 84.22 -31.82 0.09 73.13 45.16 81.41 4.88 33.29 28.24 53.54 47.68 25.11 90.53 36.98 12.07 57.82 93.35 87.22 7.32 78.00 76.39 93.64 22.12 45.84 19.03 36.67 53.80 69.42 72.66 96.56 12.05 27.91 80.24 92.80 93.61 66.65 77.15 63.59 9.31 60.14 66.04 11.97 25.96 57.36 85.78 96.87 17.21 43.43 6.15 73.21 1.99 10.20 24.94 0.13 54.63 7.98 7.63 15.59 67.12 65.90 71.27 20.76 60.95 63.70 11.40 20.11 91.05 63.70 63.47 69.29 12.95 22.76 76.77 49.54 90.98 68.24 38.80 29.52 89.53 38.19 72.14 55.32 89.51 87.34 62.48 28.71 66.83 93.66 94.77 86.52 53.14 26.52 69.92 81.95 79.27 72.66 19.08 4.09 84.44 78.41 43.44 -71.70 83.97 12.37 72.83 93.83 92.16 97.73 13.11 26.67 97.58 50.08 22.04 79.57 52.90 69.03 77.64 63.74 14.54 92.87 55.85 10.32 16.25 97.28 30.20 48.99 72.38 65.98 10.55 60.57 75.63 17.18 59.79 23.87 96.68 50.41 78.19 4.04 29.60 63.65 24.55 44.49 68.47 70.95 84.86 41.17 64.43 89.08 60.31 3.88 26.26 39.64 83.89 42.45 15.98 39.29 25.65 15.63 99.91 96.25 90.13 59.50 32.75 43.20 91.17 29.19 11.63 27.76 61.78 53.09 70.36 92.90 86.20 38.79 35.12 35.62 22.97 46.02 18.15 7.81 76.39 11.64 87.14 68.95 25.65 76.58 13.38 96.58 97.42 33.77 8.40 80.03 43.95 78.37 53.31 89.05 16.61 50.53 58.81 66.49 99.97 -24.48 83.62 89.71 97.96 72.30 99.00 22.51 32.73 81.87 36.43 73.73 55.32 82.03 4.79 12.74 23.02 66.49 80.96 4.23 51.48 9.94 88.56 18.14 60.76 20.83 95.49 58.29 35.79 38.65 82.37 30.81 68.12 27.96 2.86 90.83 89.69 64.91 78.25 62.64 21.54 11.94 22.99 2.89 15.80 88.12 63.64 29.01 77.79 85.36 62.35 15.85 40.94 15.93 83.54 1.47 66.72 42.68 59.47 85.01 48.05 31.45 92.56 15.54 26.82 1.73 82.12 6.07 7.72 36.59 7.18 27.89 2.29 98.65 28.42 94.92 53.26 44.80 42.51 63.60 57.13 90.69 8.31 49.76 2.36 92.73 85.37 68.78 71.53 1.77 73.77 15.86 39.30 28.20 6.94 11.57 52.00 75.87 61.72 19.43 38.45 -27.61 14.86 9.03 88.29 57.85 64.65 82.91 51.95 0.90 82.47 41.31 13.39 68.67 82.92 94.05 66.79 66.81 48.85 38.14 42.92 98.13 77.81 17.23 85.85 47.07 55.47 99.58 49.43 66.07 48.90 49.68 19.11 93.13 51.17 55.57 24.93 50.79 49.09 62.90 75.24 34.59 87.85 19.06 10.89 67.71 1.13 93.61 29.35 3.60 41.67 88.77 18.92 47.34 62.38 61.47 28.02 29.47 44.07 60.13 62.52 99.93 33.61 73.45 19.30 74.12 12.43 57.66 39.78 97.10 79.33 76.85 22.05 2.85 17.09 86.93 15.49 95.82 73.09 32.39 20.63 47.41 29.38 39.20 60.87 57.76 44.04 68.19 6.39 10.26 72.34 30.34 56.09 81.82 73.11 41.05 86.31 30.20 1.82 34.23 91.54 -10.64 59.46 94.69 84.76 9.72 90.56 36.12 71.41 50.16 85.10 6.82 83.62 78.89 72.18 40.64 78.85 90.82 79.82 24.78 16.26 0.15 6.90 84.67 79.92 58.67 40.07 82.70 87.35 27.16 39.32 62.28 43.66 24.18 30.66 46.80 2.00 89.18 33.75 50.09 86.34 24.87 9.74 10.87 70.16 79.09 75.69 27.28 63.66 94.39 8.51 98.07 53.60 83.23 44.20 50.26 23.68 36.49 9.45 80.58 93.31 21.58 95.60 11.16 29.92 18.27 88.95 33.92 95.77 4.79 53.50 0.81 86.39 24.52 96.63 31.52 47.21 78.70 33.01 25.36 9.10 50.12 46.81 98.47 50.38 43.54 2.90 83.30 14.39 13.52 96.46 98.18 39.95 33.00 52.34 66.35 12.43 87.79 11.51 19.79 29.32 -80.13 58.71 5.94 90.61 72.41 57.09 46.18 82.34 38.35 42.81 27.23 75.20 14.29 36.90 78.28 31.64 87.44 29.41 81.45 67.04 95.21 47.87 6.43 41.73 12.13 13.18 4.55 5.67 72.70 64.32 59.25 35.84 39.89 10.44 91.24 61.86 43.11 91.78 20.79 19.67 39.53 60.10 36.46 95.40 92.87 47.43 5.46 95.65 86.77 62.74 89.67 28.40 25.31 42.61 26.46 6.15 75.91 54.86 7.98 4.63 55.27 37.09 31.50 42.42 36.01 31.81 72.46 49.19 43.45 17.95 51.75 74.07 49.54 27.33 19.06 13.81 47.92 44.92 62.89 38.02 5.60 34.84 57.38 58.86 63.99 2.86 4.99 91.67 78.89 43.63 39.51 3.78 63.76 85.54 15.56 30.49 89.76 33.30 71.88 81.35 -70.14 38.40 83.79 80.63 47.59 65.53 58.57 59.39 44.97 14.16 59.91 11.62 89.57 37.71 75.94 98.06 21.23 56.15 77.33 88.14 48.50 38.90 4.66 7.88 68.21 59.42 56.88 45.67 80.70 44.75 51.04 73.06 51.18 2.07 73.35 92.62 11.06 89.88 9.66 41.34 5.14 65.32 91.11 26.99 64.94 99.84 93.00 41.51 5.99 61.72 33.19 23.22 29.02 76.79 60.44 87.07 74.81 82.81 78.96 86.22 62.92 73.37 12.15 72.99 43.25 98.51 95.05 13.23 57.03 91.96 69.71 52.61 57.32 89.59 50.49 5.27 63.23 70.73 67.07 28.66 10.89 83.05 27.22 97.51 27.33 29.34 3.52 16.14 84.00 86.12 69.42 61.37 57.44 71.83 95.52 54.63 29.06 11.18 9.55 11.59 -51.24 70.18 98.44 32.09 43.23 92.51 17.08 58.21 63.25 33.72 34.45 38.09 16.84 26.51 57.15 58.93 95.62 54.16 1.01 82.94 96.94 80.46 93.61 1.80 13.48 82.87 56.49 97.91 40.38 26.26 9.67 64.88 53.20 39.64 78.53 58.02 49.39 10.23 86.13 53.51 50.62 10.64 59.97 84.23 95.86 17.65 32.17 26.97 31.25 76.68 95.33 40.84 3.15 90.34 25.32 63.17 64.45 23.81 11.58 87.10 84.10 37.02 14.78 72.96 39.44 25.26 91.26 96.10 66.16 35.16 43.78 98.81 95.63 90.64 43.23 23.83 47.41 58.86 17.43 33.10 64.74 34.74 40.51 31.28 86.55 97.71 68.51 58.91 27.80 16.43 16.44 56.55 20.85 14.77 38.96 40.89 33.91 88.95 12.64 92.61 -6.74 47.26 89.53 46.62 67.86 61.14 21.85 31.94 34.89 33.72 24.04 0.61 21.37 47.51 18.70 74.98 46.83 47.85 32.74 55.24 40.44 73.96 15.89 48.99 37.31 66.15 16.42 59.67 75.96 9.79 18.27 48.13 36.42 76.38 14.25 31.95 70.22 35.81 0.45 68.08 8.45 65.15 97.76 68.51 46.34 85.24 98.14 19.00 26.49 31.26 80.85 37.68 48.30 77.44 62.74 90.95 9.96 19.27 84.30 96.03 53.15 34.65 16.38 51.42 44.34 90.54 20.44 16.14 95.14 44.00 26.64 34.02 55.03 67.15 67.07 62.55 36.10 16.51 64.19 63.39 4.26 48.47 52.85 19.95 85.39 17.95 84.04 4.31 42.48 84.55 52.45 55.80 41.13 90.68 46.75 33.98 6.17 3.85 51.80 33.57 -9.81 86.15 63.54 51.45 62.63 34.39 26.32 13.67 76.55 19.81 36.01 37.03 78.24 96.74 14.20 29.57 86.23 98.45 39.62 45.77 67.62 51.31 77.04 42.84 31.28 13.53 83.95 86.33 86.52 45.05 37.19 5.59 7.82 45.10 34.92 86.24 81.39 2.13 39.69 59.31 45.76 69.43 0.24 0.28 86.04 49.31 51.70 54.97 53.40 16.73 98.13 99.66 80.88 41.32 87.00 91.88 33.30 40.55 89.60 11.39 28.98 6.60 7.05 33.65 20.30 22.57 63.24 74.94 72.93 91.01 37.35 95.02 7.39 19.84 68.93 51.00 42.13 62.65 79.26 86.58 42.83 45.99 28.90 22.00 31.26 49.44 88.31 29.90 34.13 81.48 84.10 46.31 48.18 58.13 39.65 22.47 74.65 84.48 57.84 34.76 -39.76 15.74 54.40 91.85 62.94 76.81 20.88 57.80 20.70 37.04 33.05 56.93 32.83 50.29 37.06 72.29 93.21 45.15 58.52 73.02 61.74 13.51 94.10 79.18 10.85 21.26 25.29 84.96 83.73 13.11 62.56 80.81 11.15 37.97 40.26 8.33 10.40 96.21 31.31 69.30 79.31 33.33 72.14 75.98 59.78 27.77 11.52 8.12 1.26 66.48 87.17 26.30 20.94 44.58 42.92 68.65 20.53 80.79 71.45 70.69 84.57 19.03 47.02 9.67 20.55 85.92 76.53 74.44 21.74 95.93 8.18 25.13 89.08 93.43 88.79 77.22 22.09 92.26 66.58 36.09 40.61 80.52 93.67 69.32 25.12 33.06 92.16 20.80 94.46 35.12 23.90 18.59 10.79 77.13 4.48 33.29 5.14 43.12 14.85 8.17 -16.47 24.54 60.31 23.90 87.44 40.11 41.68 94.93 69.89 18.75 28.36 16.43 43.79 56.43 39.06 98.08 92.65 74.28 54.88 32.57 15.43 4.99 47.33 0.91 19.39 52.73 63.98 46.43 58.78 43.53 51.93 5.56 85.72 66.10 9.15 60.44 22.38 77.28 41.53 44.95 65.96 5.19 30.13 1.36 70.61 72.05 99.82 5.60 25.98 94.91 90.56 46.07 45.40 74.41 86.47 58.57 31.22 53.27 37.01 77.37 10.79 56.66 14.32 59.51 54.52 79.89 47.24 55.43 28.22 7.13 79.53 53.64 35.36 66.89 30.80 53.74 64.00 86.46 50.62 53.44 73.80 82.79 30.76 50.47 59.47 99.31 81.03 16.99 35.33 40.32 10.71 8.52 85.64 70.47 77.62 94.18 92.07 84.93 55.10 19.27 -77.68 69.45 86.55 62.29 68.85 41.57 57.02 42.82 95.83 32.88 77.14 84.65 86.39 33.16 40.51 17.48 43.92 17.74 84.51 67.55 79.50 14.31 65.47 0.67 74.06 29.90 77.16 80.04 14.89 97.52 21.03 83.93 8.70 6.01 94.17 76.88 44.86 72.48 55.21 78.97 21.82 50.61 61.64 71.74 69.69 24.59 84.37 48.08 29.40 68.25 85.90 24.32 58.53 22.17 37.78 72.19 92.01 92.36 51.01 35.81 18.01 33.75 58.26 97.46 98.69 8.68 35.14 62.49 39.31 1.10 70.69 59.53 69.46 63.96 17.94 52.48 38.96 87.38 67.29 28.79 15.21 19.73 47.15 16.15 38.87 29.09 57.24 51.71 44.29 56.82 43.69 18.36 56.97 32.37 22.36 7.28 72.16 27.41 92.45 25.33 -52.94 20.94 30.57 16.02 28.25 40.71 52.22 80.67 7.11 70.78 65.90 81.05 37.79 81.23 64.25 45.70 60.93 69.70 19.29 35.63 31.54 27.50 17.49 20.20 83.40 82.42 0.49 46.84 50.87 91.60 4.51 19.18 92.13 0.26 17.11 23.31 20.48 86.75 24.27 0.06 3.54 88.16 1.86 0.05 26.60 90.21 74.94 87.76 38.52 84.93 99.69 74.43 68.43 8.31 27.50 14.01 56.98 45.51 3.51 79.07 63.33 31.00 6.60 83.67 76.40 18.38 24.56 2.91 29.27 67.94 98.21 60.58 78.15 46.74 82.46 77.21 51.08 65.02 57.27 28.37 37.82 89.33 76.23 37.18 34.53 64.13 32.64 93.08 5.16 29.55 72.72 58.80 13.28 55.77 12.24 60.11 3.86 51.51 29.96 40.70 -55.12 64.59 6.89 33.64 78.69 53.36 28.97 19.22 48.85 36.97 39.39 78.80 68.02 42.50 50.90 36.64 0.21 34.10 52.47 18.24 48.25 65.24 98.38 8.75 23.67 30.25 75.93 12.67 68.86 25.68 70.47 55.36 82.40 52.41 9.55 33.65 21.71 18.21 47.63 50.31 31.47 0.08 73.66 23.43 95.19 83.59 89.65 31.02 37.58 89.46 29.61 80.32 69.96 64.72 41.97 68.75 32.99 7.39 96.52 76.59 56.92 63.07 36.20 62.08 88.97 24.03 64.12 31.20 9.99 57.05 26.07 64.36 13.30 48.95 51.21 16.24 34.19 13.55 58.70 95.74 19.91 5.09 83.90 51.12 91.76 79.24 64.44 46.81 8.10 81.47 99.28 12.35 99.98 59.41 65.72 68.11 49.53 60.08 80.80 4.60 -20.73 47.35 48.63 94.86 41.01 14.79 48.20 48.35 52.82 45.13 17.72 15.24 57.93 43.11 6.48 72.51 14.75 52.87 24.05 65.33 88.91 85.55 30.89 3.51 31.71 20.92 84.02 83.87 49.62 50.73 37.00 74.44 69.97 12.76 28.49 29.42 5.60 90.99 48.95 89.32 23.07 96.80 70.61 59.58 84.45 38.83 27.38 32.16 14.40 66.62 28.58 34.57 87.49 49.89 23.67 36.73 75.03 71.82 12.43 39.22 78.60 18.50 56.92 1.79 68.61 40.61 69.79 65.78 78.32 39.41 19.22 13.08 34.33 98.21 17.83 62.42 78.35 81.56 91.06 86.57 65.62 57.81 38.07 3.71 56.92 78.37 26.10 43.56 6.01 52.57 75.88 59.34 77.16 91.13 37.94 82.67 98.57 67.38 61.85 80.42 -79.69 2.63 69.14 70.99 55.40 18.27 15.56 38.56 4.32 88.27 14.44 76.31 10.04 51.53 26.37 60.32 91.27 89.86 25.54 90.54 11.13 4.10 94.03 34.86 16.24 22.69 14.94 17.49 83.20 69.24 59.86 68.98 7.62 28.67 24.34 76.80 68.04 49.81 0.38 15.35 71.29 54.43 36.81 91.21 81.44 79.91 41.99 56.78 75.76 94.98 75.60 9.70 62.92 20.89 2.69 56.69 9.15 47.96 37.94 64.11 98.02 35.58 32.30 27.97 29.58 53.36 3.55 88.96 20.97 55.84 79.19 14.26 95.52 40.28 94.96 40.90 5.62 14.61 34.32 76.87 6.91 2.78 22.28 84.73 41.48 93.01 94.42 39.96 66.85 19.22 29.14 56.12 96.84 46.78 90.19 18.65 7.12 17.17 42.52 14.19 -84.34 93.09 31.94 80.63 34.18 39.55 79.13 82.21 37.97 89.64 45.18 15.26 37.70 44.84 24.01 86.78 11.10 71.58 88.77 80.17 36.68 4.70 19.63 48.24 20.20 89.17 29.57 44.40 51.21 55.28 38.10 51.75 95.67 21.32 51.42 54.28 17.42 19.48 98.79 90.93 29.35 17.60 57.02 57.41 27.24 6.10 30.96 16.83 55.07 52.04 35.08 9.09 89.30 58.58 75.91 10.16 26.49 11.75 37.61 92.87 73.12 56.89 69.00 96.32 48.75 2.59 12.67 85.93 39.20 35.65 97.14 45.03 2.59 37.15 98.37 55.71 67.28 13.95 27.64 31.09 20.41 65.85 34.96 13.60 91.08 4.88 32.25 76.83 80.45 26.56 93.83 64.34 6.79 94.63 39.39 41.92 14.04 39.70 28.24 19.91 -25.08 12.46 81.63 96.04 22.44 21.41 34.59 69.57 94.54 74.03 55.82 42.06 69.51 8.09 99.44 35.51 16.15 21.65 51.36 45.93 7.60 44.88 48.45 13.88 44.66 83.12 80.82 27.20 64.18 19.93 72.21 87.58 79.17 5.48 55.23 12.11 34.49 43.95 1.91 54.25 30.76 2.31 52.98 36.30 4.45 41.40 42.68 65.55 14.66 36.53 50.85 1.69 13.27 93.40 43.88 75.07 70.25 20.35 74.14 91.91 25.84 46.37 13.76 40.01 70.31 73.94 22.34 87.04 93.38 18.80 31.22 35.31 91.58 42.77 54.38 61.30 33.14 32.47 33.33 61.32 65.70 54.29 96.36 75.47 77.97 30.42 3.16 2.95 63.83 60.99 34.50 39.84 82.49 41.37 67.92 11.32 55.38 23.49 5.70 30.58 -91.16 7.63 68.10 87.99 14.19 42.61 33.93 18.91 95.73 59.59 59.94 16.39 77.01 64.60 96.68 80.49 2.28 25.19 54.59 60.75 72.54 23.46 76.10 87.68 71.80 41.11 87.49 66.35 27.92 92.51 66.82 70.43 12.52 51.80 4.99 97.25 38.52 56.47 53.24 13.84 60.47 11.98 72.77 27.61 16.36 65.01 93.07 14.88 83.63 97.07 45.63 74.27 34.96 45.73 47.57 47.21 19.76 43.13 13.45 13.18 47.32 31.58 58.46 73.96 13.09 0.28 39.20 4.99 49.93 89.07 27.26 75.55 89.94 39.90 69.48 6.77 23.19 46.08 91.91 14.65 63.83 39.44 60.27 36.61 63.63 44.34 51.08 41.40 94.95 39.78 14.19 14.33 23.01 70.99 57.78 15.04 24.84 92.16 16.26 56.12 -96.22 81.66 40.05 39.38 93.82 8.27 43.00 8.84 72.56 55.74 74.25 84.59 42.71 99.32 70.76 21.03 60.97 96.98 98.64 38.57 17.62 89.48 15.43 9.68 31.80 30.58 76.36 24.73 40.69 17.05 31.74 3.58 33.66 5.89 63.99 76.01 52.71 43.42 57.75 55.71 56.97 83.25 87.35 27.24 29.84 67.53 23.26 94.84 19.40 56.58 78.81 98.66 35.50 28.71 38.78 0.93 19.51 83.85 35.21 58.55 21.65 80.31 58.25 19.28 82.86 18.92 65.14 49.46 35.15 23.35 43.22 95.28 55.09 31.59 50.11 15.68 42.95 86.39 77.56 25.68 35.25 26.58 80.10 36.98 15.05 63.66 26.85 36.34 58.31 60.83 56.75 64.40 43.17 84.77 86.06 49.10 92.00 71.22 27.99 88.56 -99.86 56.54 9.57 13.35 93.24 43.80 56.08 13.60 13.33 28.68 28.90 12.68 74.21 26.84 10.54 55.93 8.35 98.76 58.35 61.24 43.23 29.56 72.60 20.08 86.61 78.58 2.84 64.44 79.94 58.14 24.32 22.57 20.73 21.34 93.03 28.57 46.69 97.67 40.84 35.02 50.95 1.76 30.85 12.91 15.87 87.40 82.31 82.91 2.70 96.03 66.47 44.70 21.30 73.78 70.54 6.18 51.26 86.43 22.21 84.25 25.59 37.49 29.16 25.39 26.87 2.60 40.10 84.91 3.99 20.00 65.97 71.16 90.71 75.24 8.48 92.43 40.68 86.37 27.19 73.56 32.70 86.20 12.40 98.15 14.67 94.35 96.94 94.90 11.67 48.59 82.74 30.98 95.03 71.44 75.15 2.86 72.58 98.21 44.45 11.23 -95.62 93.29 36.83 84.99 2.33 51.82 97.67 94.20 33.58 76.06 48.36 95.82 32.43 56.84 84.46 83.35 28.64 98.58 29.08 74.70 85.94 68.00 75.81 94.53 41.28 63.38 74.07 73.15 20.14 58.78 89.08 98.08 63.41 20.54 86.46 39.29 83.74 46.10 43.42 7.12 7.04 56.03 1.08 99.02 37.07 34.95 92.78 4.70 12.38 29.25 79.05 75.54 21.35 39.98 80.06 38.17 69.42 50.13 78.58 21.37 92.15 10.89 81.31 24.97 94.63 28.00 31.03 99.67 30.58 18.61 32.76 12.63 29.21 56.82 71.70 20.59 46.54 3.82 88.69 75.46 73.80 11.97 28.44 5.48 64.37 47.34 94.50 60.63 88.84 42.29 75.25 54.93 97.02 5.94 98.44 38.27 100.00 27.26 83.48 16.38 -3.64 65.11 68.62 61.26 98.59 67.25 22.95 30.33 12.13 45.70 55.20 9.44 53.25 81.58 25.51 93.14 36.59 92.41 87.05 51.07 1.58 58.59 43.98 18.94 8.86 52.17 79.31 36.49 48.02 78.10 88.92 84.74 80.70 28.33 26.04 74.92 47.29 27.92 58.18 39.72 86.22 98.36 46.68 54.27 68.24 38.61 4.38 68.30 25.56 44.25 90.78 0.25 3.37 80.18 95.69 71.45 9.24 43.03 94.77 91.79 75.08 97.55 10.87 17.57 80.46 10.21 23.70 81.75 88.09 71.35 80.37 2.08 70.01 4.20 25.55 56.87 49.13 5.52 78.60 32.19 50.59 47.35 43.99 17.36 85.36 27.58 82.45 61.06 11.61 24.60 35.33 33.98 51.13 68.18 47.90 74.83 26.17 18.20 26.82 85.32 -57.40 88.01 61.14 62.65 78.91 9.36 24.83 88.49 85.57 40.46 75.76 33.41 86.62 85.94 37.03 13.94 83.65 58.46 99.19 19.96 21.62 96.25 38.08 1.02 8.74 5.01 63.50 28.05 87.21 38.12 21.93 52.70 54.10 84.92 69.95 44.99 75.92 10.98 1.03 23.65 31.11 30.06 31.31 56.27 35.03 24.69 52.88 15.57 36.82 4.31 46.68 58.17 18.69 17.85 4.96 96.72 0.62 56.25 69.54 90.74 90.76 74.31 69.04 21.47 46.25 34.47 83.53 48.72 43.41 58.39 53.33 20.22 56.94 83.63 19.23 81.30 14.47 4.47 94.54 69.03 52.05 79.47 34.28 39.30 66.88 10.34 66.84 29.72 54.23 47.22 32.11 61.91 85.84 49.30 90.17 57.72 29.34 92.65 6.77 31.16 -50.52 70.95 16.18 60.55 98.05 4.51 67.70 25.52 36.09 92.59 95.64 43.09 22.04 34.50 56.21 16.24 11.17 18.07 51.20 6.83 89.73 5.67 59.08 90.41 19.04 64.72 24.11 32.93 8.30 4.99 85.67 6.56 81.17 9.12 75.20 86.78 20.68 15.83 29.65 41.24 54.40 89.44 47.52 14.70 54.58 11.66 38.10 36.29 39.37 58.23 12.14 93.49 82.74 22.69 80.51 73.13 45.57 42.57 55.38 94.76 23.64 28.42 51.87 91.98 10.21 18.30 20.96 49.03 78.80 89.38 19.34 83.95 81.08 25.08 36.97 18.50 49.29 23.97 68.66 8.47 51.47 88.09 72.77 53.33 66.46 86.63 11.15 32.35 31.14 98.21 69.40 65.74 85.78 8.96 19.68 66.61 71.56 35.77 86.58 44.63 -67.13 38.76 40.67 37.49 87.20 3.04 73.33 55.83 77.97 68.27 7.02 97.69 67.66 17.43 3.51 74.62 57.66 16.30 46.40 31.64 0.22 44.27 16.16 42.77 92.08 79.54 21.21 25.37 85.75 83.50 24.40 78.61 65.52 72.42 83.91 87.30 87.75 53.90 43.31 72.45 95.65 89.27 64.89 5.23 28.73 61.55 85.50 32.86 96.41 46.62 38.34 98.52 65.03 33.57 72.04 69.90 15.28 62.87 65.44 33.18 24.06 84.11 50.66 87.31 7.68 51.76 42.25 52.71 61.73 54.50 87.89 59.34 26.34 18.28 47.15 98.42 11.73 38.23 63.92 88.65 95.07 77.94 2.27 28.85 77.94 49.15 79.15 68.90 85.21 18.86 6.55 0.20 37.52 50.45 63.37 25.48 96.99 95.60 45.15 18.09 -36.63 47.87 27.62 27.84 37.88 79.09 56.39 39.79 92.67 30.30 12.83 63.15 90.70 66.79 15.07 50.04 60.66 23.15 82.46 11.15 89.25 58.78 34.39 11.19 68.43 95.64 62.16 3.75 68.88 72.41 96.10 49.40 1.16 18.11 7.93 35.14 87.88 79.83 81.33 75.77 49.47 55.69 8.42 83.39 90.28 44.21 66.29 82.27 53.49 41.03 30.71 11.03 68.76 20.16 83.88 33.52 74.22 87.60 6.74 51.49 36.66 31.54 65.22 84.32 78.48 43.04 50.83 39.71 72.72 92.53 15.38 79.13 9.83 97.91 71.30 7.27 14.27 26.16 68.06 8.64 54.24 9.59 89.61 44.53 96.20 60.03 67.88 19.47 78.95 94.57 76.47 67.75 84.73 30.78 82.73 10.11 19.49 49.10 3.24 77.57 -3.52 46.43 95.40 51.84 46.97 54.89 65.26 27.39 86.62 72.80 14.67 6.86 69.98 56.93 92.57 99.96 85.06 89.85 49.77 73.90 57.34 3.53 27.08 25.45 56.97 45.30 96.49 22.65 13.65 50.48 17.55 87.14 17.33 79.46 13.39 82.25 53.96 23.15 27.80 95.28 24.61 16.84 51.83 80.64 2.77 63.24 54.33 56.68 32.08 38.80 57.11 51.80 70.93 72.82 58.76 22.39 83.35 15.35 7.42 98.16 45.32 27.78 78.99 65.76 6.89 91.81 2.04 41.22 38.63 51.05 77.08 99.77 80.61 22.77 93.09 10.52 66.79 40.26 56.33 72.69 52.54 51.20 33.08 94.01 74.69 5.31 67.31 34.88 20.10 86.52 98.52 52.50 25.48 7.35 49.65 59.26 57.03 18.76 41.27 88.18 -70.63 90.42 38.54 19.06 21.33 33.31 67.39 19.07 69.13 46.30 80.55 22.92 20.35 58.94 4.25 61.52 56.55 94.07 60.27 90.18 0.61 34.31 63.68 66.11 92.53 65.67 15.22 70.72 23.43 88.05 21.39 95.54 48.20 99.48 18.93 79.24 62.66 53.72 89.11 49.29 87.74 44.86 96.39 70.84 90.52 77.90 81.70 1.60 44.75 68.94 64.92 6.36 16.81 28.86 98.76 54.84 37.08 86.84 76.07 79.78 13.25 38.45 43.79 22.33 36.51 4.67 86.29 6.55 2.51 81.04 84.24 61.20 89.04 59.22 40.31 27.72 62.23 22.28 2.92 8.51 34.86 29.86 63.96 57.49 88.81 92.19 1.90 4.66 65.60 98.22 18.88 60.38 32.63 59.07 89.90 14.96 70.49 80.66 45.53 79.77 -91.80 7.14 89.84 8.80 51.32 48.88 18.64 40.44 68.98 18.34 59.55 54.92 19.50 78.39 60.18 16.24 71.26 47.86 19.58 61.00 59.19 83.45 18.14 78.85 80.49 18.33 92.80 25.28 36.79 93.10 31.93 15.85 19.11 77.57 60.56 32.50 32.10 27.74 49.60 71.35 72.61 19.62 82.00 78.66 25.72 16.84 5.13 0.80 75.73 5.40 54.63 55.28 64.71 63.91 37.81 67.16 12.77 86.56 32.80 24.41 12.40 3.21 9.70 0.96 69.27 49.31 10.24 40.42 12.02 88.44 17.03 12.77 77.60 80.98 99.87 75.08 20.63 41.09 20.18 53.13 20.00 27.91 78.28 97.21 59.16 53.30 53.41 81.07 28.01 48.95 24.83 45.78 90.07 33.69 68.34 98.08 40.96 78.04 59.26 13.02 -86.73 81.85 2.25 81.74 98.27 47.00 40.43 7.04 6.67 57.57 76.82 29.83 87.88 94.99 60.37 23.84 95.49 2.18 24.25 46.13 85.59 70.17 34.88 94.96 78.23 32.52 46.62 22.11 3.83 44.56 89.80 50.18 34.39 15.67 25.27 67.90 82.38 89.17 14.28 54.66 66.46 82.92 10.19 3.37 6.53 29.65 78.09 66.96 92.52 24.38 79.52 26.03 90.99 49.71 63.72 78.15 53.51 37.38 47.46 95.18 57.93 24.48 18.21 55.22 10.59 30.64 78.58 79.75 29.07 73.03 5.77 48.17 30.44 58.26 18.77 28.81 41.54 1.20 30.59 46.84 52.46 63.09 93.82 60.94 90.76 19.24 86.24 86.80 82.76 52.95 55.47 76.29 82.61 14.47 82.28 43.90 32.44 92.61 41.98 93.30 -21.53 90.66 37.98 6.52 67.22 12.56 55.74 82.90 78.26 95.93 30.74 45.99 53.53 61.16 11.49 11.89 0.27 63.82 63.41 73.51 21.43 42.53 92.49 22.70 96.73 61.00 40.25 43.93 16.38 67.13 61.86 7.18 31.08 77.46 4.26 13.69 22.63 24.21 72.08 46.09 78.37 10.83 11.76 61.99 17.07 87.23 61.91 6.83 8.69 44.99 25.25 35.37 6.67 11.44 98.35 24.65 28.81 17.80 86.94 58.38 14.93 67.53 89.13 66.94 71.61 8.49 84.52 71.67 87.46 86.41 16.27 36.32 44.76 77.55 18.72 56.71 5.03 62.27 27.73 2.63 2.25 27.27 26.70 75.59 51.88 28.96 80.76 51.90 68.50 50.17 8.03 85.36 19.49 1.22 84.98 32.31 82.01 59.18 23.14 89.84 -59.61 63.28 29.67 27.28 79.01 80.41 18.41 84.17 52.69 49.39 48.30 97.09 28.17 49.21 69.97 17.52 13.05 63.38 97.91 6.00 83.51 68.62 41.38 45.95 54.51 78.71 59.11 79.49 66.68 90.91 80.72 16.13 60.94 31.25 13.31 61.70 8.40 54.45 63.43 63.13 70.26 75.09 7.06 64.70 70.85 41.14 54.56 53.64 52.44 37.93 20.11 35.53 87.60 9.80 46.28 46.94 59.65 22.15 10.80 40.60 0.74 50.33 56.56 0.18 66.19 98.96 1.95 85.29 71.17 72.82 93.78 93.13 74.59 72.39 65.61 85.70 52.02 4.99 71.15 38.06 90.90 24.05 73.22 52.54 96.50 37.86 15.66 80.94 91.06 4.85 64.64 75.18 78.98 44.97 7.55 36.87 85.02 72.54 21.25 70.92 -42.95 80.18 43.12 30.50 70.34 4.58 77.29 13.47 76.47 20.16 71.17 11.76 40.21 56.92 83.09 28.62 53.17 33.06 53.89 18.49 60.27 55.80 87.23 17.32 94.32 93.72 89.22 21.66 44.39 35.93 84.16 12.48 91.17 67.50 92.53 42.92 57.79 62.63 84.20 48.20 59.97 69.60 67.42 35.83 75.89 78.96 68.67 33.87 80.63 55.95 78.12 13.15 57.26 5.43 35.07 32.35 22.94 62.99 83.32 40.04 30.83 76.40 90.46 94.73 75.67 60.69 70.18 65.96 85.06 93.86 95.82 49.36 97.31 31.45 39.97 18.57 59.83 17.86 70.63 75.37 90.00 56.17 51.01 29.82 34.81 3.25 67.70 15.79 52.83 33.69 4.72 69.78 57.55 21.41 64.77 24.13 39.30 67.57 69.97 65.54 -46.07 7.70 11.63 37.65 19.52 21.61 84.34 30.33 59.86 27.45 53.36 89.20 34.83 96.56 70.94 59.71 60.65 82.10 64.06 20.91 1.13 6.24 40.25 20.97 60.72 60.71 90.92 68.99 19.87 61.50 40.81 91.92 88.38 63.03 53.79 86.69 72.14 71.85 33.62 53.07 93.22 67.88 46.33 75.36 79.92 79.33 2.57 95.39 83.31 96.64 5.77 29.52 73.28 65.90 67.73 5.73 5.25 50.59 82.86 99.50 14.75 69.88 72.67 79.06 41.74 14.93 84.80 16.69 35.32 10.47 41.29 36.21 12.69 56.80 31.11 91.43 34.38 73.68 78.79 85.47 92.56 46.13 46.92 28.23 49.48 1.87 43.43 45.52 37.84 63.58 59.37 45.58 19.64 94.72 73.92 23.97 71.71 86.62 93.47 75.21 -43.97 11.78 76.37 49.73 34.18 78.01 83.38 36.69 57.36 49.11 49.22 30.49 14.87 7.66 32.88 20.97 35.46 13.79 0.31 88.97 12.30 21.12 68.58 90.66 98.81 1.69 53.43 61.08 95.37 65.59 53.33 23.73 67.65 45.12 53.62 17.16 81.17 27.53 40.14 66.46 62.28 29.63 45.63 77.11 51.62 58.44 1.71 27.62 79.26 42.26 90.58 15.87 77.17 52.75 18.45 27.08 86.08 63.01 25.11 34.84 32.27 85.78 79.00 54.48 10.62 86.16 77.53 33.10 89.48 51.49 96.69 58.80 80.49 13.41 14.19 21.19 73.49 24.85 26.80 48.18 38.75 89.98 45.28 68.86 44.71 85.40 73.82 49.69 68.63 41.47 42.14 22.76 17.96 31.48 12.53 31.44 89.26 49.57 51.43 86.54 -13.08 85.44 3.28 76.53 3.70 36.12 33.60 6.03 29.49 92.35 48.57 33.17 46.32 53.14 78.36 21.54 63.45 37.01 66.62 56.70 40.80 24.88 68.39 79.37 33.26 15.58 27.51 62.84 66.30 77.46 27.16 11.00 39.12 18.76 89.93 83.81 59.44 29.52 46.59 23.18 16.51 67.27 82.27 24.92 9.44 22.17 16.51 86.76 39.96 6.49 5.83 35.77 22.46 35.35 16.97 37.87 68.29 26.38 84.17 16.13 28.65 49.34 73.55 13.84 13.76 59.73 78.71 40.12 72.12 3.72 87.79 62.41 3.20 61.24 26.36 7.91 91.02 98.27 46.54 68.09 49.01 51.78 14.77 89.11 67.39 13.10 1.13 34.55 94.06 65.69 49.82 62.65 34.24 56.46 67.44 68.89 62.54 7.41 24.07 40.35 -38.92 74.38 81.77 70.80 9.50 91.11 0.47 17.78 50.40 40.57 73.10 18.84 11.79 29.51 99.41 58.69 80.62 84.13 61.24 77.44 53.10 88.04 32.30 55.31 81.43 15.54 30.06 40.50 69.06 42.49 65.71 19.18 98.61 28.24 78.22 65.67 75.71 66.69 77.98 89.77 30.37 15.92 31.08 85.30 29.31 9.01 6.06 0.71 1.28 53.84 18.51 13.38 47.05 86.92 31.23 45.92 70.52 5.78 67.20 69.45 29.78 73.14 23.87 88.02 68.47 12.54 27.19 29.96 15.96 57.56 26.68 7.53 14.33 24.90 7.45 56.49 46.97 54.30 96.79 99.75 25.73 29.78 54.07 22.28 83.85 53.72 60.74 83.86 4.48 15.20 53.37 61.76 56.31 27.69 4.42 42.18 59.47 32.22 21.07 54.84 -90.33 49.39 40.95 47.92 24.26 54.31 61.27 61.30 84.12 54.87 84.56 91.89 80.71 41.24 37.28 98.74 62.67 42.69 51.26 2.61 84.17 40.04 42.46 73.12 49.20 22.75 74.76 60.90 58.61 60.34 43.45 31.55 3.02 9.13 84.69 93.48 17.18 82.01 60.27 69.60 74.35 61.15 79.25 80.21 7.33 36.13 28.67 10.48 32.10 43.60 11.88 50.14 49.24 78.69 66.53 51.34 49.84 14.58 0.04 8.01 87.00 37.56 42.30 46.45 60.64 66.29 48.73 44.40 68.71 10.85 94.42 30.74 55.50 54.77 54.03 85.11 23.35 97.84 55.68 24.83 59.21 30.18 13.55 16.20 18.39 38.36 8.15 68.18 35.28 36.35 43.29 66.84 58.21 64.82 3.74 25.93 12.94 33.40 32.36 9.44 -63.91 49.55 68.35 40.05 17.21 73.07 59.60 89.64 64.34 71.88 23.31 30.70 62.39 76.54 32.78 62.99 92.03 72.03 87.70 12.62 66.56 17.76 1.27 38.06 63.70 21.76 22.54 27.43 95.58 11.68 56.19 37.21 43.05 44.05 51.84 57.60 70.74 85.31 15.23 98.78 25.04 9.41 34.41 20.97 32.99 8.35 62.83 39.98 71.79 94.11 31.93 19.79 46.92 56.20 93.45 80.38 72.01 26.11 99.99 87.75 5.11 18.31 21.54 30.30 83.24 90.25 78.28 2.32 84.68 78.65 35.58 80.19 2.77 94.56 60.01 56.32 5.79 14.09 25.47 62.82 16.20 82.73 43.09 59.29 39.68 30.12 8.39 56.24 53.80 15.57 84.19 55.92 89.62 31.76 1.57 7.30 40.79 1.79 39.84 38.34 -4.20 76.67 65.12 64.71 71.31 80.36 83.36 90.57 59.52 71.06 49.35 40.04 31.49 64.85 8.92 55.60 64.16 3.75 91.31 35.95 80.34 36.41 52.82 29.79 33.34 84.15 71.19 62.50 80.08 82.23 19.47 62.75 8.87 37.14 64.47 72.34 57.07 79.17 88.83 76.68 12.70 45.07 93.39 66.75 80.96 8.47 21.52 68.66 6.75 87.08 65.32 13.66 96.35 17.18 76.92 86.72 58.23 40.11 60.74 41.34 46.92 12.37 98.01 21.76 84.75 49.25 80.51 82.93 17.14 73.32 29.66 58.95 44.22 21.37 57.74 72.38 15.83 20.18 55.05 93.67 30.22 79.75 19.66 77.38 91.30 36.57 16.44 53.12 4.75 77.27 22.96 57.87 84.95 87.60 3.75 2.64 13.41 99.27 77.75 42.96 -81.86 35.44 24.58 82.38 6.21 10.78 23.85 18.63 33.10 5.42 9.58 62.92 4.88 15.97 54.49 72.96 18.45 90.79 17.92 66.75 34.66 72.86 96.59 0.63 74.69 96.67 49.30 54.95 66.24 56.74 62.30 27.24 99.11 2.72 68.94 58.59 39.78 65.12 6.68 93.65 26.58 86.91 42.21 93.15 94.55 0.52 19.97 36.85 36.12 96.39 27.89 9.40 99.11 39.07 70.37 92.81 55.66 98.51 85.09 47.20 96.45 49.84 80.45 45.65 78.78 82.42 41.45 10.33 48.19 68.34 84.83 22.43 33.85 78.79 7.33 55.66 84.81 22.10 53.04 55.60 19.32 58.96 48.59 63.98 98.73 13.30 60.34 63.89 93.60 25.51 83.40 98.63 30.61 12.30 67.22 57.66 89.06 77.29 78.46 63.19 -19.04 53.35 84.37 0.92 24.64 75.40 50.74 58.38 72.69 24.01 9.32 55.69 61.45 46.70 44.23 77.91 15.98 79.89 71.53 29.20 93.97 53.71 34.22 58.66 70.79 5.03 39.67 42.53 66.45 28.44 56.66 18.93 67.35 22.62 6.06 99.03 78.51 58.76 63.46 29.00 4.54 73.87 87.44 67.91 90.21 54.81 90.99 64.88 46.47 39.16 30.95 64.67 93.39 99.98 51.82 45.26 29.76 40.28 40.76 4.22 99.85 68.57 73.13 94.34 38.39 67.61 8.63 93.55 1.54 93.42 96.63 18.30 5.22 0.91 98.07 73.78 69.03 95.90 64.62 12.48 57.58 32.18 52.01 97.32 24.87 90.64 65.22 76.70 13.27 33.29 21.35 66.42 59.06 44.37 64.33 99.46 32.96 60.47 43.21 36.81 -84.18 78.11 33.99 68.73 15.45 3.04 51.87 82.91 89.70 85.42 42.05 75.71 8.68 38.42 39.52 13.37 85.67 32.62 88.99 67.83 91.31 49.09 66.86 45.17 77.90 35.59 10.27 98.54 9.62 59.54 45.84 24.46 3.13 89.60 29.40 16.72 38.68 65.95 4.00 23.38 23.25 48.04 2.08 98.92 12.65 78.11 8.53 39.36 1.42 9.06 57.48 45.16 43.07 5.64 64.04 20.60 27.85 57.93 76.48 24.84 41.58 93.14 57.36 3.49 49.64 97.58 62.45 3.46 84.03 42.73 62.56 61.02 46.63 9.50 18.84 4.55 43.19 0.15 55.18 95.05 83.47 66.36 6.68 12.81 14.10 68.87 92.60 28.39 6.81 67.03 0.57 80.74 97.93 77.37 28.47 18.56 76.25 19.42 92.55 72.85 -34.84 16.27 99.87 10.64 56.27 92.18 88.43 2.47 47.10 88.62 99.41 92.05 47.19 25.32 54.88 65.65 77.50 94.94 59.91 80.85 39.61 12.13 36.28 11.18 92.17 56.42 38.32 55.43 41.82 64.68 21.52 49.85 73.97 29.73 79.87 68.49 99.53 47.81 63.65 32.92 87.64 23.70 70.79 58.63 83.45 52.22 56.51 83.25 34.16 81.71 47.98 60.56 65.02 72.24 35.71 95.95 7.56 63.39 63.19 22.60 28.33 62.83 4.91 75.42 50.51 25.52 9.05 84.70 2.31 74.36 69.31 46.94 15.37 98.99 31.48 4.24 48.05 14.45 39.42 41.51 13.82 55.80 90.19 87.41 36.45 1.74 62.95 94.15 96.65 5.78 6.63 78.52 62.09 37.34 26.09 69.65 41.23 39.77 26.66 71.09 -47.41 16.21 82.39 52.08 57.91 0.88 44.60 7.56 50.13 98.34 2.60 70.59 80.78 31.66 99.30 62.83 68.68 81.32 10.06 28.19 10.51 83.65 40.12 80.83 79.59 4.17 52.72 46.22 38.09 41.74 89.14 23.94 99.93 4.01 69.42 24.30 21.93 20.39 69.25 52.59 63.69 78.01 27.31 91.00 33.53 34.48 66.40 9.69 2.25 50.34 64.86 99.81 14.37 74.87 25.52 14.61 46.49 66.41 18.04 6.26 64.00 70.33 44.15 45.02 30.46 9.62 68.61 68.32 17.18 39.72 31.44 66.51 5.22 90.17 30.74 39.72 1.91 22.90 26.02 31.97 41.42 15.31 51.27 29.14 91.81 2.97 49.64 61.65 72.68 68.72 77.68 64.21 86.20 6.81 23.97 56.36 10.77 60.59 26.32 37.55 -28.73 56.59 79.72 34.64 19.69 29.73 30.29 83.73 1.15 22.57 55.46 99.91 22.64 45.98 72.90 74.80 95.37 84.22 23.22 83.25 48.07 72.36 32.24 34.49 70.54 62.91 27.32 67.06 37.97 3.02 23.20 39.76 47.86 86.57 32.88 80.17 11.13 33.61 63.38 37.86 12.62 74.44 48.97 59.70 49.55 24.03 32.39 73.92 30.53 30.45 89.89 48.76 65.32 1.71 11.36 12.40 17.68 82.15 5.39 96.79 14.17 58.04 43.16 41.10 30.07 87.28 89.55 67.29 23.40 93.50 62.91 46.21 35.39 0.53 61.63 99.00 38.02 69.26 41.36 70.29 5.45 16.33 84.40 39.95 96.78 54.07 69.61 7.12 57.24 73.97 17.00 58.14 54.19 94.55 12.19 30.00 63.22 20.76 12.04 69.89 -16.44 6.74 72.68 84.97 54.51 66.27 66.62 75.51 70.19 90.21 28.34 68.85 84.74 25.61 9.28 55.52 44.60 7.90 26.02 93.12 42.48 12.00 46.77 89.44 12.93 64.40 83.88 48.61 99.71 46.81 32.87 89.86 6.96 59.64 21.97 62.77 34.93 11.85 33.40 60.48 93.52 63.18 19.29 20.81 75.42 18.54 29.99 97.11 72.61 82.10 74.37 72.08 5.03 34.43 67.74 84.03 40.24 80.59 80.77 18.91 76.03 68.07 31.44 99.53 56.21 80.78 77.32 7.66 19.63 72.47 98.43 44.58 53.16 7.05 47.85 5.34 44.66 35.08 48.47 84.76 30.07 15.57 46.27 80.77 70.51 35.80 3.43 29.22 95.33 44.82 68.15 29.10 95.03 58.73 40.25 51.58 44.89 70.79 53.66 28.34 -23.71 70.39 44.81 81.92 75.24 78.46 84.41 48.17 13.45 87.01 37.93 65.72 27.97 22.55 97.13 56.41 20.80 39.36 73.81 37.29 97.31 45.42 19.61 15.04 40.24 24.45 24.10 45.27 47.46 66.14 7.56 24.48 36.68 50.04 79.30 37.93 36.96 91.13 35.32 98.20 97.52 80.79 44.44 69.02 1.51 11.90 93.43 29.20 59.47 26.90 17.52 3.27 48.57 65.85 4.92 81.42 78.55 9.23 99.63 65.64 2.06 58.64 88.30 55.26 72.52 91.26 66.13 62.53 68.08 94.66 57.31 60.75 19.30 87.05 55.00 89.91 76.74 42.33 92.05 46.53 56.38 96.17 60.58 51.08 32.25 54.87 44.75 3.10 17.60 50.95 69.77 75.59 49.57 43.50 82.19 43.41 73.48 15.47 28.67 71.03 -61.31 57.96 42.53 63.17 11.70 31.54 59.42 87.17 17.67 37.10 62.86 86.96 22.58 85.74 90.19 52.61 51.54 34.04 23.48 19.21 11.81 27.15 5.44 20.10 34.70 28.71 74.42 84.87 28.28 81.06 48.12 51.43 66.21 15.54 17.14 94.73 98.55 57.49 94.40 75.67 41.28 55.58 78.83 58.82 90.53 13.97 9.29 46.82 48.28 86.89 11.80 62.08 43.09 27.12 58.24 53.02 64.61 10.38 48.41 88.34 89.38 35.77 41.78 67.67 65.84 6.94 65.87 43.87 75.86 70.24 48.83 24.28 21.11 34.98 11.74 91.74 7.53 34.70 54.53 13.03 46.61 63.55 72.21 10.12 98.61 13.82 93.70 61.88 30.17 15.41 8.97 6.38 42.38 89.77 23.93 18.26 88.75 81.62 88.48 39.58 -99.06 70.65 4.63 27.58 30.12 18.38 85.85 45.01 24.54 93.68 57.45 64.28 64.67 1.60 37.37 33.97 7.45 70.28 83.99 19.06 91.04 43.85 35.95 42.03 21.11 77.46 75.75 13.35 71.36 78.65 89.84 87.79 92.00 67.20 87.03 85.80 4.82 69.56 91.37 49.39 27.19 2.48 63.97 1.67 50.75 3.21 53.41 97.71 4.20 9.14 4.21 86.05 72.28 96.39 90.64 65.39 80.75 95.00 38.09 27.36 52.41 3.40 58.69 69.02 49.59 58.42 96.98 46.24 74.89 48.03 24.23 41.61 82.88 80.35 95.10 57.30 92.57 2.56 46.23 0.70 39.11 67.73 37.16 71.64 62.45 85.76 0.62 68.65 40.51 59.18 33.74 76.89 57.19 55.98 73.91 66.97 81.74 92.55 39.25 86.39 -79.50 9.55 0.62 12.35 4.20 29.83 57.50 53.62 91.23 17.05 6.37 38.79 93.91 2.15 0.66 42.66 23.14 4.36 19.32 45.66 5.77 13.19 34.29 79.47 83.12 68.80 98.11 46.75 28.04 12.18 20.98 54.34 89.61 95.96 11.61 58.75 41.29 77.22 68.11 87.44 15.86 79.19 6.03 55.54 47.89 3.07 12.65 4.28 56.11 74.71 4.18 71.89 32.95 68.86 97.69 61.71 6.02 94.89 16.72 38.48 3.86 24.57 83.17 47.05 34.56 87.70 72.21 33.68 97.96 85.39 42.25 43.55 35.59 48.39 55.02 96.07 72.73 60.58 65.29 34.45 57.27 43.30 34.83 52.08 84.08 3.89 44.71 34.17 62.04 14.09 71.37 31.80 28.11 5.00 74.67 73.16 93.52 24.78 98.18 67.42 -22.35 98.31 78.31 11.30 17.29 10.39 48.05 8.96 36.34 14.50 11.45 51.23 66.36 32.30 14.65 20.07 62.96 20.42 3.00 68.46 94.36 25.27 59.48 12.13 26.64 90.62 85.21 35.66 34.39 16.83 34.07 62.09 45.24 25.47 15.11 26.40 69.48 21.84 13.07 62.37 30.38 44.79 55.92 9.46 56.96 40.44 69.93 20.24 71.92 20.73 52.19 59.07 48.97 36.83 21.71 30.14 2.51 58.09 51.27 18.36 63.47 17.46 31.45 21.36 96.74 93.16 75.12 94.05 34.25 0.98 3.14 18.73 15.91 47.29 23.91 81.28 5.26 57.42 36.25 41.14 7.97 65.93 9.86 65.62 1.99 88.26 28.43 19.84 82.62 38.14 20.72 1.50 47.48 22.20 78.05 56.52 45.95 42.49 48.08 71.85 -97.52 68.26 24.59 14.16 83.52 45.64 80.15 90.45 31.97 35.89 37.50 87.87 53.09 11.38 28.51 71.76 58.49 69.10 63.82 48.88 19.70 48.73 27.77 89.00 24.87 97.16 93.72 48.79 21.28 49.11 74.45 92.90 61.74 4.36 32.64 76.51 64.99 16.86 85.09 21.27 57.74 88.91 50.81 18.84 80.39 52.55 0.23 45.57 51.98 89.46 20.85 36.10 77.95 51.65 51.93 54.87 35.01 28.00 21.85 40.86 70.23 15.30 19.11 51.75 98.38 95.78 71.33 71.68 8.62 18.30 94.21 55.48 57.84 91.90 13.86 14.77 19.03 88.42 50.63 36.45 46.06 36.80 19.67 96.51 7.41 17.05 25.39 98.05 82.41 14.42 80.36 60.56 39.89 39.01 74.75 34.69 82.64 70.92 53.80 72.32 -34.93 5.62 49.18 80.94 13.62 68.93 36.51 48.04 63.29 8.44 60.07 49.06 9.73 87.06 84.73 34.31 25.22 4.38 26.13 87.66 63.29 8.73 34.16 44.60 8.35 52.14 90.87 82.30 16.12 65.85 85.28 75.49 69.26 14.95 27.19 26.07 88.14 57.58 71.74 34.93 32.36 66.47 10.97 65.04 43.58 67.95 61.78 36.06 85.48 33.02 28.61 97.21 33.21 79.55 85.09 17.92 36.12 54.25 23.80 79.60 22.64 87.56 82.01 71.26 82.37 89.33 61.22 79.50 4.59 21.06 68.43 89.54 49.11 80.14 52.91 15.56 97.99 54.98 15.52 55.41 91.65 74.30 61.66 94.49 13.36 73.60 89.15 77.70 99.18 24.78 78.45 65.18 43.83 25.97 75.65 63.75 14.52 58.14 20.80 44.69 -25.10 3.14 37.39 53.79 33.75 46.89 71.16 1.96 48.88 69.83 50.33 74.10 99.76 75.55 31.05 93.36 11.73 52.45 47.60 46.60 40.42 28.59 4.46 90.01 32.36 76.80 1.71 78.19 55.16 94.85 3.15 86.79 91.31 77.12 24.56 79.68 87.06 85.02 43.15 7.24 84.46 67.65 82.00 32.61 80.55 36.28 16.50 39.15 41.44 6.04 18.52 49.12 73.23 18.82 66.95 55.11 31.17 76.65 5.19 18.19 68.08 5.72 57.17 36.80 40.56 21.39 54.90 79.00 66.78 84.07 60.53 77.06 65.54 48.00 67.52 81.70 18.90 59.18 53.13 94.82 95.99 28.37 47.34 30.86 25.69 44.30 42.20 84.73 98.87 35.71 64.07 63.94 74.16 43.90 47.63 25.59 75.01 13.44 43.30 25.43 -38.85 79.79 36.07 93.15 94.73 91.73 15.39 84.43 13.81 10.87 8.39 84.88 51.87 53.19 38.56 72.75 7.01 2.29 64.02 58.90 22.72 32.32 47.01 98.78 8.92 41.79 61.97 57.75 92.72 34.92 36.33 94.59 61.02 91.64 90.92 54.01 91.86 42.50 66.49 86.93 73.11 4.31 14.21 44.65 82.36 40.55 88.07 23.40 21.75 48.00 47.48 78.67 60.52 80.43 7.91 36.60 30.93 57.14 97.16 92.47 58.68 59.46 90.96 11.17 63.60 80.93 84.31 71.17 43.56 86.08 66.85 36.92 3.16 88.37 22.81 83.88 35.60 82.60 27.34 64.62 37.09 42.55 48.95 52.05 4.79 93.92 17.75 62.53 10.30 12.26 8.48 82.84 13.13 84.02 95.96 90.15 10.44 55.57 80.72 30.23 -39.45 64.85 72.07 35.38 96.54 71.13 11.44 31.33 89.42 33.47 63.60 94.41 80.97 59.77 67.99 27.42 86.23 20.98 23.56 23.88 58.18 56.08 92.16 38.69 15.11 64.88 11.41 64.96 4.02 61.84 62.81 80.62 48.22 93.34 75.73 17.96 20.52 2.53 24.29 40.49 53.26 18.42 53.50 89.45 78.38 45.23 79.72 41.90 26.94 51.19 69.33 2.67 31.58 96.76 72.03 25.37 65.60 78.99 55.41 99.64 50.99 4.61 0.16 40.31 71.14 29.37 29.04 33.04 26.90 8.15 3.54 44.00 94.29 36.77 99.85 70.08 61.98 34.70 24.37 93.06 7.08 89.46 48.16 98.88 16.15 13.36 76.85 82.40 64.17 64.36 36.65 91.87 0.31 93.54 29.32 92.92 37.75 76.04 33.96 57.22 -0.96 20.05 46.68 58.26 44.86 7.94 15.03 57.11 75.55 59.00 48.71 94.93 11.13 3.45 57.99 43.95 30.68 65.92 46.56 82.40 0.44 69.31 79.17 45.59 95.99 22.99 92.38 63.49 52.77 94.52 86.08 53.16 68.52 1.03 21.82 86.03 48.17 30.11 92.38 99.56 78.79 86.84 36.97 13.43 99.86 81.03 59.96 36.72 89.96 31.65 66.82 74.47 47.57 8.63 65.43 33.40 97.14 12.34 14.55 58.68 41.96 40.05 71.02 95.94 47.50 57.25 70.59 67.30 8.71 23.55 44.43 14.27 26.80 75.66 50.23 42.87 4.17 12.61 50.29 54.31 35.99 27.37 70.20 41.09 8.25 38.50 79.46 25.44 86.40 38.48 21.43 84.24 49.71 9.23 20.41 49.90 25.72 50.41 5.19 51.82 -57.22 16.46 22.46 33.39 8.95 6.97 11.20 30.52 56.80 92.21 39.97 14.14 56.89 2.78 11.38 40.98 29.81 69.80 86.43 58.16 41.31 91.12 80.58 12.36 98.37 33.18 96.00 34.31 83.67 87.69 66.01 1.47 15.63 66.56 22.98 33.32 63.24 66.23 67.00 73.99 33.94 81.83 77.07 27.17 52.60 24.36 79.05 3.97 97.25 26.67 36.10 37.62 11.06 88.86 92.21 92.40 71.45 54.81 91.21 52.23 75.04 85.96 64.04 41.73 66.68 15.98 91.02 75.80 64.82 38.59 72.35 41.47 10.32 3.62 95.21 95.54 78.99 62.92 65.78 75.68 1.26 20.82 98.68 83.56 86.67 89.92 73.51 61.28 6.80 75.48 54.38 67.00 62.88 79.60 9.11 53.57 27.10 94.16 25.87 28.96 -60.70 90.14 9.57 6.36 87.15 69.73 7.17 9.35 86.62 77.20 50.84 51.38 77.39 27.56 1.45 20.34 33.83 27.23 86.60 57.53 24.63 14.74 60.84 97.16 4.52 68.20 45.34 79.97 5.80 0.75 19.43 14.56 16.41 38.65 66.53 92.56 99.63 44.45 62.40 95.06 34.40 28.96 54.89 77.01 47.52 64.78 52.16 68.87 63.79 77.07 23.20 36.65 19.07 62.17 97.74 76.67 52.05 79.88 41.39 2.46 76.33 27.26 13.04 90.60 34.62 63.16 94.94 64.74 5.08 18.51 97.65 88.86 71.00 34.19 23.58 98.22 99.75 39.84 8.32 89.87 73.15 2.75 47.67 41.55 64.35 29.00 0.01 31.13 44.47 48.17 92.29 25.35 20.21 19.20 74.64 33.58 69.04 98.60 75.05 51.33 -7.47 40.53 20.58 16.01 64.63 30.68 17.81 38.94 14.95 15.29 51.52 67.42 48.11 94.43 39.92 82.59 40.05 93.63 99.92 39.56 49.77 90.84 5.57 23.30 93.85 39.45 98.77 94.19 92.32 22.33 41.03 66.80 10.19 80.91 75.22 32.02 60.76 17.11 50.70 64.80 16.14 10.14 93.55 78.64 36.05 1.80 12.53 52.79 95.90 73.65 17.29 60.39 36.45 85.30 64.15 58.90 10.74 49.42 95.38 58.73 64.74 71.43 72.19 65.45 62.61 68.17 99.07 33.60 77.67 83.19 51.50 82.21 47.78 13.13 9.42 82.56 41.77 50.39 68.29 73.73 4.51 39.15 7.73 39.10 92.52 1.70 28.77 29.33 66.73 3.22 53.52 27.48 62.17 85.75 92.32 85.77 78.86 96.89 22.82 17.04 -85.61 50.58 28.54 73.01 62.92 70.95 41.38 40.22 56.47 38.57 27.41 72.44 53.78 7.21 83.01 29.17 85.09 1.54 44.42 18.83 17.80 46.65 36.35 13.89 94.94 70.79 48.03 95.47 42.30 5.87 45.91 80.05 64.32 11.57 81.88 32.36 53.29 69.56 42.83 36.66 1.65 16.88 11.69 82.10 26.35 6.96 76.26 14.63 47.64 23.74 48.57 91.31 3.80 34.11 15.53 33.52 32.31 43.11 57.77 18.49 79.86 25.42 61.65 44.91 84.19 28.63 41.78 80.74 80.02 53.16 57.75 95.08 1.97 96.03 15.17 95.03 75.90 28.01 2.01 48.36 26.59 46.98 41.17 49.60 53.60 64.26 57.88 90.28 7.57 59.55 64.84 18.20 35.48 95.95 48.74 97.89 73.37 37.69 5.57 72.79 -21.91 87.01 50.48 37.55 48.03 1.49 97.19 77.09 77.29 56.71 79.40 3.87 64.26 7.00 9.38 22.61 28.07 9.99 94.27 78.57 36.35 10.50 67.74 81.37 10.18 39.71 67.27 8.12 62.26 58.47 46.84 50.05 79.99 86.25 80.44 31.59 34.09 95.75 61.01 37.72 18.58 85.77 46.42 80.42 76.75 53.61 78.12 3.45 23.73 53.93 64.60 99.01 19.27 42.30 68.47 67.75 47.84 85.16 96.35 18.79 4.56 50.07 93.40 93.13 94.53 72.79 51.16 49.39 74.71 96.40 55.70 76.50 2.91 94.69 62.29 32.18 0.89 30.47 8.76 79.48 57.04 72.03 71.98 21.82 18.31 70.28 89.06 77.21 94.22 77.01 46.59 10.74 31.88 15.69 56.29 89.62 81.03 22.19 44.80 62.14 -13.02 53.82 17.57 0.87 39.84 63.76 39.35 77.95 5.91 9.80 37.17 77.14 64.95 28.91 18.98 89.33 29.08 1.04 61.91 54.73 74.33 35.63 47.05 74.07 54.66 94.93 72.07 78.51 93.46 64.87 44.63 67.06 43.64 18.68 95.97 43.89 51.56 76.97 71.37 43.67 22.85 44.71 90.61 20.03 77.17 44.32 29.49 52.33 14.53 13.33 57.97 94.00 19.94 88.10 10.73 42.23 97.95 70.21 97.56 50.28 70.40 94.39 25.55 17.06 54.70 91.95 55.73 35.97 79.08 41.08 42.90 25.20 61.11 15.71 45.22 83.05 11.68 6.38 81.59 24.54 92.69 21.34 90.39 82.64 77.54 45.79 48.54 56.49 69.95 55.10 43.39 55.61 45.57 19.58 71.62 63.25 26.78 41.47 28.19 84.00 -19.34 86.04 21.65 24.79 63.31 25.42 57.72 10.12 45.86 60.46 91.50 69.29 34.42 16.82 16.77 49.57 77.21 53.27 14.69 81.42 80.73 18.78 54.82 83.65 87.23 11.12 35.28 12.04 52.79 67.16 62.90 97.46 94.12 8.13 14.72 86.79 6.59 56.78 65.72 31.51 48.21 80.29 3.99 46.84 6.21 63.75 77.62 71.38 91.88 56.86 60.09 36.56 52.68 70.35 65.75 52.66 41.18 58.77 29.28 24.02 36.55 2.03 52.53 59.95 93.43 16.64 11.18 1.87 42.80 13.07 55.26 66.98 88.77 92.54 97.73 50.02 60.73 93.22 40.57 80.51 38.95 51.13 87.64 65.44 20.49 98.90 66.63 22.00 46.85 94.85 78.01 96.61 82.85 3.56 55.11 26.51 81.79 96.48 47.59 65.64 -58.29 74.14 1.60 24.12 72.52 7.36 39.36 15.30 59.18 8.36 27.83 31.22 88.00 51.33 65.02 48.33 55.50 32.72 51.19 88.50 77.65 42.58 47.79 17.34 73.98 44.85 91.84 13.28 78.03 41.92 36.89 92.05 9.50 49.03 29.63 70.17 30.90 18.14 63.89 96.01 32.66 87.63 39.26 71.98 32.55 30.27 56.07 64.94 44.67 0.77 9.52 90.72 33.23 14.24 19.97 13.34 70.46 55.80 60.73 12.21 68.41 91.48 21.35 28.82 37.70 42.45 46.52 7.52 90.05 67.09 64.20 67.05 76.70 74.86 94.37 76.96 10.67 10.13 16.19 9.70 88.19 64.98 65.05 97.23 59.72 83.35 81.84 29.51 46.33 14.30 12.71 1.06 88.34 55.99 47.86 48.02 54.75 62.37 53.61 82.00 -62.58 96.84 58.51 77.50 71.18 6.30 0.84 78.44 24.65 79.72 24.22 24.34 86.06 88.20 6.39 29.24 25.85 87.72 67.80 42.87 28.88 33.42 32.67 84.61 16.78 47.63 45.20 19.32 24.62 51.79 23.89 16.19 8.12 53.03 40.05 88.16 35.05 61.78 37.62 24.03 50.26 35.72 40.50 66.27 1.31 11.19 43.84 38.14 3.59 79.21 56.01 85.45 79.17 80.68 54.85 71.35 80.72 36.17 90.48 99.70 63.08 48.27 77.80 36.14 73.27 77.58 19.87 30.69 41.87 86.01 96.15 21.05 71.01 27.11 80.92 74.26 65.87 8.34 80.30 91.43 7.34 35.56 37.84 31.05 93.14 35.12 37.97 61.39 66.87 90.66 65.70 82.91 36.77 2.03 69.64 19.45 28.95 86.16 50.50 43.43 -70.55 27.07 0.47 78.66 65.85 43.12 96.88 79.04 98.71 57.55 0.25 54.53 15.69 18.45 1.61 46.75 41.87 65.85 82.02 67.39 4.51 91.81 91.74 93.92 30.05 76.00 63.39 6.80 10.64 6.10 72.09 85.08 19.78 31.50 58.43 77.46 13.58 33.20 33.87 67.87 50.40 76.43 53.34 95.55 58.93 89.96 63.01 63.18 10.33 3.68 43.24 86.56 10.10 60.95 36.20 33.49 25.27 55.44 17.31 35.80 66.98 83.39 4.54 13.73 77.45 32.05 73.97 29.02 79.70 79.82 15.05 71.73 0.27 63.50 24.06 53.38 93.57 67.53 81.51 28.61 52.30 68.08 77.43 61.08 86.96 44.10 30.50 57.16 55.46 64.09 26.17 47.50 60.22 57.71 67.61 19.53 49.41 10.64 39.56 15.78 -95.11 66.62 51.17 56.90 72.00 29.27 95.49 30.45 55.56 26.48 44.15 63.56 69.69 31.69 20.42 64.63 41.89 0.91 71.10 29.56 98.46 20.99 59.90 76.52 82.85 69.63 64.20 88.82 43.69 56.63 19.53 59.11 66.50 57.34 73.27 93.17 47.83 69.49 94.85 83.71 15.45 88.34 37.20 30.12 88.03 22.34 27.57 35.58 40.11 5.67 36.45 63.78 65.30 43.20 32.56 63.27 69.86 34.88 98.04 50.59 1.27 92.86 14.38 98.45 3.97 97.09 11.20 66.88 40.39 53.40 97.71 17.22 31.83 9.56 66.85 46.02 40.80 15.05 72.90 33.47 16.48 83.57 19.28 14.20 6.55 97.32 20.26 66.92 54.56 82.53 44.83 94.54 71.00 97.74 39.25 35.80 51.78 18.29 85.43 23.77 -14.07 8.58 63.49 33.18 27.20 19.08 43.80 61.93 43.30 81.03 50.80 55.28 9.25 94.16 41.19 68.57 61.58 75.39 68.01 0.11 75.46 87.27 12.76 86.06 66.87 11.01 2.42 6.85 31.82 27.22 76.03 85.79 66.22 58.04 39.36 81.21 94.03 48.84 62.18 78.42 12.05 12.34 89.92 34.04 78.84 68.31 63.84 15.02 98.22 8.39 92.31 43.49 30.04 99.00 7.27 99.53 16.85 23.18 59.99 87.72 76.58 88.15 40.51 54.75 24.25 22.39 5.39 3.93 7.03 8.13 81.86 89.08 44.08 22.05 65.20 40.61 34.01 21.58 54.74 80.82 38.14 26.67 61.33 18.62 24.59 47.03 0.98 44.50 93.63 8.06 28.46 90.72 47.86 51.06 26.99 9.49 28.13 91.76 81.31 11.40 -72.31 8.36 57.19 0.65 69.32 11.15 47.49 3.89 2.90 31.27 56.94 69.46 10.97 71.17 96.56 75.42 12.14 61.52 20.75 41.72 59.45 88.99 21.16 23.50 4.37 57.03 85.84 56.14 39.24 11.14 56.14 24.92 20.83 83.17 71.09 6.41 17.92 88.28 95.71 23.57 89.05 3.91 68.23 87.01 60.24 49.93 7.95 68.41 57.21 17.91 72.16 46.33 42.41 2.90 87.41 82.47 6.12 94.90 37.83 42.91 48.77 18.83 52.33 15.27 26.43 17.77 50.67 88.50 20.31 79.96 6.44 63.48 24.62 28.14 20.38 47.31 29.97 95.88 37.20 75.53 87.19 83.19 93.31 51.35 69.96 86.80 46.34 96.64 85.03 82.29 0.57 78.70 44.55 75.96 54.84 93.61 7.16 48.81 98.87 48.69 -53.82 69.58 86.89 27.53 83.12 69.38 10.41 70.62 88.22 87.85 33.80 10.23 37.80 29.46 67.10 13.90 98.96 43.20 28.50 27.88 54.69 44.90 28.03 89.96 37.98 24.60 35.07 55.62 38.07 50.23 66.80 4.72 71.42 56.45 17.54 27.53 92.26 53.44 91.11 84.82 29.03 46.52 42.27 8.34 37.97 45.19 44.27 7.18 29.23 84.26 76.37 5.84 17.86 71.82 85.17 9.83 65.83 50.49 26.75 95.16 25.98 10.86 93.05 18.02 31.59 0.17 46.95 33.37 43.15 95.55 17.06 19.43 99.80 23.91 37.15 89.52 98.57 7.08 89.88 84.01 79.56 73.95 26.93 73.58 39.11 10.07 67.41 83.29 82.65 38.19 96.67 63.61 13.21 69.84 15.17 30.73 15.38 86.21 39.26 68.78 -72.26 39.39 39.83 3.02 77.33 3.35 51.71 95.22 12.01 82.52 86.54 30.39 50.10 51.21 55.66 82.16 10.83 67.69 86.68 84.13 36.60 49.61 23.34 50.07 4.98 91.78 11.34 16.12 64.18 1.96 35.29 22.30 26.11 1.39 83.43 57.28 80.93 48.87 38.38 45.19 66.64 28.16 23.18 29.15 99.50 96.94 71.14 96.19 45.95 90.22 85.38 10.21 55.22 69.91 54.50 85.41 34.97 63.77 78.30 60.03 3.65 4.72 55.49 12.02 34.77 8.93 46.17 54.60 39.64 56.37 21.32 64.75 74.31 68.37 24.28 97.42 68.11 94.55 91.48 58.90 55.36 23.72 53.36 11.62 93.77 25.48 22.34 30.81 47.87 88.64 26.98 9.73 12.17 44.83 38.37 19.31 0.54 65.07 51.66 49.25 -3.67 96.84 24.09 74.26 20.30 12.06 61.24 69.87 72.47 64.82 6.07 3.20 60.99 51.32 41.98 23.00 23.62 44.98 79.45 45.18 31.48 80.58 93.21 16.49 44.39 90.70 77.20 89.85 42.55 91.35 59.45 48.21 66.52 61.79 61.12 60.00 94.81 35.54 91.45 67.53 5.02 28.33 12.71 20.18 67.89 70.46 21.04 40.92 11.81 58.82 47.36 69.82 41.38 10.14 51.78 76.52 76.11 54.26 24.70 88.98 65.45 5.04 34.28 48.11 6.72 74.55 45.92 37.91 74.46 44.32 58.80 84.18 37.41 99.34 64.15 83.08 9.64 1.57 82.69 63.79 43.03 59.84 82.42 66.24 48.87 34.07 74.55 32.54 28.38 22.13 96.56 87.81 74.79 21.63 49.95 91.53 55.95 90.34 1.51 34.40 -62.03 23.47 32.58 10.84 44.34 76.60 39.82 43.71 52.46 71.22 84.14 12.26 79.78 41.87 46.06 73.39 4.52 28.79 96.64 67.86 81.65 61.61 9.89 84.96 64.25 18.36 16.02 97.85 35.67 79.72 32.50 43.13 32.58 1.71 6.81 91.82 39.94 45.41 65.19 83.64 3.77 55.24 96.37 45.44 36.82 24.34 68.79 24.78 56.45 44.34 86.24 75.57 47.95 67.61 64.69 9.78 73.71 74.91 74.80 5.95 99.10 78.30 89.43 17.47 17.53 61.92 16.73 45.83 21.61 9.71 2.32 68.36 74.08 60.21 65.19 84.04 11.07 83.22 19.06 20.27 34.48 17.86 30.44 6.72 88.54 28.19 52.36 66.19 11.15 50.91 69.55 27.06 18.18 77.46 96.40 63.17 74.20 69.95 33.83 45.46 -62.96 32.83 50.33 79.31 38.74 48.30 62.72 38.06 86.43 74.58 64.25 86.55 27.59 70.73 14.41 14.86 15.23 7.59 49.37 82.76 67.97 1.10 15.28 69.61 41.61 22.80 13.64 31.72 30.73 85.09 89.94 83.16 57.06 88.32 11.84 27.83 80.94 22.34 70.50 89.60 64.33 83.43 22.18 83.89 53.36 52.60 3.79 6.31 7.47 59.29 51.96 60.53 14.67 91.67 14.80 43.65 2.20 12.91 30.69 8.31 29.10 77.11 80.02 85.80 7.29 49.76 68.03 41.78 92.16 44.46 29.03 45.61 24.66 81.99 26.96 99.25 87.50 80.91 16.25 28.71 0.67 41.91 75.53 58.79 54.19 65.69 79.93 11.25 44.26 5.81 48.64 56.42 44.09 88.10 41.37 57.41 5.61 57.16 98.17 33.05 -82.94 77.05 77.70 93.34 6.45 93.99 34.87 44.55 42.68 53.37 50.62 84.59 9.92 2.71 13.55 19.26 69.18 38.71 65.59 4.05 6.85 20.16 38.84 83.43 14.67 14.60 29.94 17.37 71.41 47.24 62.55 3.49 48.29 10.10 40.76 87.43 96.06 57.85 16.43 22.85 53.32 24.34 43.09 66.35 60.94 14.59 26.36 67.87 19.39 94.15 34.58 49.75 72.65 95.75 7.38 38.29 98.39 3.55 74.33 11.69 43.95 13.97 82.68 99.01 22.79 45.64 81.37 74.97 21.44 51.85 48.42 64.97 85.35 93.35 51.96 39.93 97.78 3.53 80.98 44.05 81.77 94.89 95.66 58.28 62.39 48.54 25.86 23.56 1.30 23.63 44.43 92.90 87.87 2.50 16.40 68.80 17.56 0.63 22.74 80.39 -41.63 32.04 46.01 74.20 72.70 4.55 77.60 55.71 72.99 86.03 25.69 82.72 99.23 15.01 14.76 55.85 9.58 92.03 67.20 58.10 58.49 57.75 64.62 31.04 94.81 37.84 5.67 63.79 72.62 61.78 81.65 71.07 88.57 16.90 55.40 27.90 85.03 52.56 8.98 57.57 74.22 14.32 39.08 3.92 34.59 24.03 47.55 90.71 80.96 59.27 35.27 37.09 75.06 96.27 27.98 91.19 50.75 60.35 6.45 87.70 51.21 34.00 72.68 94.05 45.19 62.39 35.76 12.52 78.89 6.61 6.23 60.79 87.29 15.20 42.76 35.00 68.48 16.63 50.26 88.70 74.23 89.95 82.95 83.47 90.30 6.85 49.14 41.16 68.40 65.47 69.96 35.03 22.74 88.67 11.39 5.67 61.36 39.48 95.44 87.86 -0.61 8.42 28.46 40.70 8.87 52.94 29.53 25.31 45.02 99.45 26.36 46.20 79.13 90.83 46.59 72.22 81.13 33.26 36.38 99.53 72.73 99.60 59.59 32.37 45.23 84.37 51.66 32.90 4.60 28.74 40.38 56.60 95.13 80.09 89.61 94.92 45.07 39.88 9.59 59.01 1.69 72.47 30.21 87.30 30.70 39.39 24.17 59.45 11.86 33.60 3.49 82.41 49.33 96.67 64.11 66.69 65.38 25.10 70.62 91.67 71.62 2.13 25.34 55.25 14.00 23.49 17.87 31.33 68.04 23.64 29.46 23.52 76.91 89.38 59.75 58.96 2.87 53.67 48.24 13.94 33.32 14.72 95.75 35.28 68.11 59.97 85.17 33.56 40.70 83.54 85.05 5.87 10.95 19.16 20.82 77.72 23.57 46.81 29.02 96.36 -51.12 50.63 75.04 80.51 37.11 60.51 42.67 74.59 60.63 65.87 17.82 89.15 66.30 97.03 79.15 8.18 26.21 66.09 97.57 26.80 54.66 37.96 21.80 60.44 81.84 63.36 69.44 44.86 63.78 71.60 27.72 68.27 80.80 38.54 18.82 24.80 48.77 44.38 86.79 4.14 57.26 21.95 92.06 84.57 77.31 24.16 58.56 97.94 14.91 24.65 64.74 79.62 89.96 78.37 39.78 4.33 86.49 84.47 71.72 46.22 6.34 34.36 79.26 45.99 37.94 39.70 55.19 31.22 58.10 88.47 90.25 7.06 93.82 20.40 97.77 32.12 83.34 87.78 13.93 90.05 87.93 97.02 60.95 32.89 10.28 36.76 91.16 57.99 23.02 47.78 63.36 11.77 8.00 87.72 98.12 27.10 94.91 67.69 45.68 85.63 -48.37 33.55 34.73 5.17 75.70 22.68 77.81 30.99 29.05 53.25 5.37 31.76 49.04 55.41 95.05 79.85 2.32 89.23 99.80 47.73 0.48 2.87 39.20 50.35 20.61 32.11 88.69 90.92 59.67 13.18 56.08 23.66 61.79 32.44 98.81 8.08 50.48 10.04 75.71 69.40 25.91 65.64 85.92 6.12 56.84 31.17 2.18 55.52 39.33 9.49 37.56 44.80 83.79 38.18 79.28 64.28 38.68 62.42 88.85 6.78 72.01 70.59 8.52 15.84 53.44 63.68 75.60 92.68 67.32 41.02 21.54 63.83 81.36 67.07 11.56 30.10 6.22 19.61 86.14 3.91 80.86 43.73 79.68 23.53 3.17 78.63 34.19 83.62 28.54 24.15 51.61 19.88 18.64 61.95 88.78 69.62 21.19 15.59 34.10 56.09 -61.23 84.07 85.90 42.65 59.47 29.96 4.64 42.54 49.16 30.56 17.16 58.32 26.27 99.94 71.51 2.86 83.77 35.71 99.46 41.20 3.29 40.20 55.99 80.92 29.85 18.99 12.69 40.76 42.37 54.10 23.97 46.54 56.81 71.33 46.11 73.47 86.91 71.05 86.36 64.24 85.21 64.87 27.77 37.95 83.31 71.95 81.13 3.46 13.28 81.18 20.72 82.00 33.10 39.97 85.66 51.67 25.77 15.57 57.42 30.95 71.75 8.38 58.25 67.70 58.88 50.99 76.18 15.17 85.53 75.95 81.96 46.20 92.17 98.22 72.46 16.77 25.24 58.76 66.08 49.20 49.55 83.54 11.71 51.65 43.11 14.84 48.05 27.38 59.60 26.86 34.52 8.67 40.82 6.38 4.96 21.74 46.97 14.57 41.09 12.98 -6.38 71.60 53.43 69.72 44.29 84.34 59.86 66.90 33.88 46.77 41.52 11.27 79.83 66.82 65.64 79.13 12.64 47.30 59.85 91.22 59.82 91.70 75.64 87.53 24.62 49.94 99.34 86.32 6.22 95.59 56.34 88.46 29.54 19.89 51.57 47.15 27.99 5.23 35.71 73.22 61.24 64.41 53.07 51.49 38.61 29.11 45.17 72.90 96.41 38.18 44.32 93.57 41.60 72.87 57.90 51.23 73.63 13.69 56.64 43.82 29.44 21.95 73.67 79.80 83.88 19.99 97.66 48.79 38.88 90.95 17.33 51.34 79.15 66.23 94.16 52.10 30.31 12.35 18.09 8.47 61.21 58.04 21.51 81.11 0.70 1.20 30.26 65.87 68.90 11.14 55.91 96.02 1.67 73.00 86.41 96.96 73.52 41.54 35.41 76.59 -35.04 19.10 41.88 92.24 44.16 28.50 7.23 36.75 96.82 7.18 20.40 20.97 12.70 76.46 75.68 82.47 95.46 80.91 33.43 48.41 36.40 80.10 1.50 84.04 10.38 2.77 34.64 79.62 21.22 52.14 67.83 76.84 63.44 91.39 91.07 88.51 77.61 58.41 67.42 89.98 80.97 24.82 14.00 44.80 37.59 42.09 67.12 46.26 39.20 32.68 5.16 0.16 66.57 64.24 0.91 60.22 63.56 96.12 79.52 14.03 94.43 55.32 32.73 81.96 88.42 68.08 48.10 69.42 93.15 20.53 93.28 5.37 59.47 91.59 82.33 27.63 91.51 88.20 32.41 14.33 52.78 31.17 1.45 67.75 42.29 54.76 85.08 68.14 57.22 64.38 7.44 23.99 73.44 97.36 26.85 18.05 2.61 24.66 45.72 9.79 -34.23 52.79 83.85 39.18 80.44 80.53 71.30 16.95 11.93 56.52 39.81 86.44 43.05 60.25 18.08 92.06 68.09 52.15 27.92 17.93 37.87 41.67 10.66 25.04 39.36 3.65 65.30 93.12 30.69 24.57 63.07 59.98 61.43 54.83 54.88 81.08 20.48 35.83 58.15 24.01 98.72 84.44 66.31 22.88 68.33 19.75 14.69 55.17 96.76 66.20 89.73 16.23 38.82 25.15 84.34 22.75 40.52 5.06 61.50 28.48 74.49 64.33 16.10 9.62 29.88 32.51 41.06 37.63 28.62 28.17 89.85 1.32 19.82 60.35 8.06 39.34 29.72 50.11 93.82 9.68 91.76 8.42 39.01 6.45 21.80 23.73 16.87 97.66 60.77 58.67 53.83 2.15 12.32 89.84 52.40 15.31 28.76 83.06 76.41 93.87 -21.86 14.25 73.40 2.91 45.44 47.89 27.07 3.09 96.28 55.49 34.21 10.12 82.60 53.31 87.17 46.97 93.30 98.12 81.03 70.19 17.22 3.41 10.70 25.16 3.74 53.58 65.97 46.54 88.01 1.02 69.30 19.83 53.97 63.08 5.77 10.33 33.14 49.08 38.25 91.88 23.61 96.40 89.42 12.57 44.01 23.32 42.89 80.69 33.95 90.66 83.91 61.11 65.65 5.88 70.01 90.89 38.10 17.08 75.06 63.52 30.35 79.20 37.78 64.93 33.48 79.15 83.39 7.85 24.59 96.37 49.05 35.59 5.95 78.52 33.86 29.33 61.03 99.04 34.28 74.63 58.96 76.92 62.65 10.21 81.21 74.40 1.84 26.43 90.27 71.64 3.19 79.70 71.74 65.87 80.42 74.73 8.04 62.76 93.29 11.85 -20.56 24.78 88.74 99.40 6.96 24.37 63.57 45.89 77.05 47.16 56.64 96.21 23.84 60.30 94.59 47.27 45.77 4.74 94.73 25.53 58.09 47.26 87.04 21.37 68.95 25.07 80.49 70.21 56.77 43.49 43.77 17.29 12.13 98.68 71.63 24.66 76.16 25.97 58.67 15.66 35.45 93.26 86.62 5.24 1.61 81.37 30.05 78.52 37.18 72.25 41.11 75.20 12.77 5.02 74.22 89.56 61.40 72.49 63.86 12.83 57.19 21.31 10.19 96.36 20.89 15.88 91.84 95.24 85.52 37.53 89.46 97.10 15.72 24.01 73.26 27.42 87.36 25.86 23.03 95.12 54.87 96.13 39.47 75.56 31.98 89.11 69.45 9.32 63.72 52.37 50.44 8.39 97.30 30.98 78.49 75.48 20.78 39.42 4.71 94.66 -14.01 88.25 11.20 1.13 89.40 74.16 96.31 63.66 76.38 26.22 95.80 79.34 49.64 27.99 7.96 98.88 3.96 43.10 99.47 4.98 11.91 18.87 74.83 58.58 47.64 3.76 56.52 45.10 53.23 75.52 77.18 17.28 70.47 63.66 38.59 62.54 15.49 48.90 33.59 51.50 4.98 45.57 97.71 20.77 19.79 2.00 16.22 29.63 26.06 47.50 5.87 46.19 19.90 86.11 16.95 96.39 72.44 36.39 96.32 30.28 6.10 80.28 1.01 59.38 33.08 21.79 40.11 13.49 0.43 96.11 51.98 69.76 9.33 85.54 9.09 86.22 50.91 96.22 25.13 55.32 51.43 84.39 70.51 11.64 69.79 41.70 25.90 10.08 17.40 33.34 2.69 73.84 29.70 67.98 45.81 60.30 11.47 85.94 30.97 93.15 -67.24 39.50 19.48 94.76 50.33 57.74 61.30 49.60 19.08 1.69 98.46 16.72 84.62 62.21 50.05 89.67 3.10 75.93 61.66 10.42 2.91 33.71 65.14 40.57 39.88 18.45 62.36 42.53 68.61 1.38 53.58 79.11 45.37 51.91 18.85 78.01 48.55 16.59 25.30 45.76 83.79 19.15 9.86 35.92 93.14 77.57 22.15 91.68 43.72 3.97 7.02 16.25 4.56 78.82 62.28 93.56 76.01 56.37 76.09 77.13 48.37 12.69 59.35 33.38 70.77 84.74 71.53 51.93 19.79 88.07 23.58 79.95 47.37 44.74 92.37 63.06 37.32 48.73 95.56 32.38 37.45 25.11 85.02 73.99 30.15 24.68 45.97 39.33 51.07 87.60 35.89 55.31 12.70 71.62 94.60 88.70 34.00 86.77 66.49 89.80 -67.75 76.57 31.96 29.90 50.85 7.32 16.46 22.44 31.12 70.32 77.29 54.39 82.79 79.88 67.58 74.87 12.96 53.39 66.54 23.99 56.89 79.05 76.34 38.18 48.54 10.24 33.45 58.70 31.09 39.94 85.43 66.88 34.91 87.01 47.79 66.85 86.35 11.18 25.35 57.90 84.45 67.07 6.85 28.28 32.00 70.34 97.70 30.75 6.62 5.69 56.22 78.02 42.94 76.24 27.10 66.92 88.49 77.40 57.60 90.48 12.12 69.48 82.42 56.71 23.41 98.86 38.20 74.13 98.70 19.78 84.06 51.17 67.38 24.00 80.60 78.50 46.82 7.47 15.31 15.85 20.84 92.06 90.08 62.32 46.47 18.72 79.12 93.18 23.77 19.89 94.94 66.41 44.17 4.93 18.49 15.27 12.26 10.53 28.18 0.48 -45.73 46.15 57.75 87.68 78.64 60.75 77.58 0.09 85.02 93.67 46.31 51.96 83.50 51.91 95.37 21.49 92.13 93.15 38.01 86.14 24.10 9.17 27.24 25.07 1.12 61.87 89.59 47.67 82.01 93.63 89.36 88.57 81.10 91.79 26.82 71.75 2.34 43.40 60.68 9.58 41.02 56.24 37.73 2.48 69.35 69.45 50.33 63.39 63.59 37.08 95.96 41.57 94.73 32.78 10.54 2.68 4.93 62.64 63.95 89.35 91.58 57.07 62.00 2.42 58.55 44.26 36.82 19.84 56.87 84.68 45.37 10.61 36.95 30.68 4.21 28.56 57.17 15.63 77.33 50.84 91.80 27.93 51.99 10.10 50.72 74.63 0.22 45.61 61.09 24.35 38.26 51.17 49.52 74.39 48.87 11.05 93.03 75.17 6.42 28.38 -6.24 6.91 85.60 18.96 71.01 29.94 27.69 45.72 87.41 27.56 38.78 56.34 92.22 84.02 10.43 70.39 46.75 42.41 64.24 14.16 58.69 64.75 65.06 57.12 93.77 3.02 95.72 53.17 55.18 33.34 98.93 54.73 88.61 1.05 71.96 58.09 49.10 31.30 74.28 24.52 60.23 40.10 39.46 71.51 60.95 65.29 78.11 70.77 41.89 69.78 88.79 49.60 83.71 69.81 48.30 46.35 75.15 73.57 75.61 5.90 43.38 82.69 21.60 85.84 68.56 38.47 92.13 16.86 34.93 32.90 62.11 75.89 87.71 33.02 69.49 46.89 60.09 30.45 20.77 81.19 33.63 37.79 20.26 35.92 35.68 10.15 86.84 91.28 46.43 58.30 97.85 9.25 52.96 58.77 12.18 87.87 50.41 92.01 21.53 84.96 -98.19 20.07 4.45 70.89 13.70 21.90 83.07 75.18 32.19 46.04 0.02 33.45 7.97 66.11 20.24 13.76 28.32 72.45 24.83 46.98 43.93 98.05 22.42 48.66 73.55 61.86 70.03 85.70 40.42 77.05 99.06 93.72 75.74 47.86 26.76 40.65 51.10 51.01 65.79 93.51 26.32 25.82 73.33 20.66 10.32 95.14 59.10 49.38 20.54 36.50 73.73 27.66 52.05 84.00 30.55 16.51 88.02 54.74 0.94 59.15 90.95 64.86 95.60 73.94 13.52 17.80 76.51 94.23 34.25 69.51 75.63 9.24 71.56 2.30 59.45 46.33 20.98 3.92 64.22 69.51 42.83 1.55 22.26 11.89 15.50 88.99 33.66 3.67 84.89 17.65 44.96 47.21 33.37 4.19 89.11 36.40 34.65 47.08 55.19 44.39 -99.52 4.93 79.74 30.63 78.80 23.57 42.12 7.60 54.30 68.25 5.02 37.67 55.82 3.92 10.57 46.25 57.67 42.91 8.81 3.41 42.48 17.70 9.24 86.27 22.90 4.72 48.16 70.68 37.28 26.84 32.13 26.86 0.98 82.01 7.34 42.67 48.77 68.40 68.76 74.49 10.34 81.86 48.49 75.26 7.57 95.52 65.45 88.20 19.60 84.74 10.83 66.74 0.96 32.28 93.65 92.67 12.56 5.08 48.73 43.68 49.66 23.91 26.65 64.38 65.44 72.19 89.75 86.21 29.24 41.86 43.29 45.75 96.23 11.09 94.52 25.54 61.55 83.69 80.82 30.98 56.72 50.74 45.85 75.94 54.86 2.51 7.09 59.81 29.91 37.53 84.58 55.59 59.08 25.64 84.51 95.54 83.04 77.13 4.29 97.01 -18.18 72.95 96.88 68.30 55.89 72.77 14.23 62.34 86.01 51.69 56.55 19.41 64.51 27.98 62.20 79.20 83.49 66.52 57.00 34.78 90.60 36.89 14.28 39.39 47.10 84.75 70.39 2.46 37.75 30.52 75.17 38.98 58.99 47.32 68.35 53.40 50.86 48.14 83.98 78.85 85.86 16.57 14.53 49.66 33.46 42.19 88.72 90.82 97.36 37.13 68.87 37.75 75.68 53.80 19.96 69.54 87.04 77.52 84.69 53.67 74.44 97.75 5.29 31.96 85.11 69.62 60.28 54.51 43.92 48.70 85.55 70.67 10.89 47.35 91.69 79.40 61.19 19.61 52.02 0.17 82.53 27.30 39.73 39.27 96.54 30.16 85.13 17.19 80.94 91.60 58.72 70.39 27.66 78.30 34.40 58.49 18.36 56.35 17.48 88.84 -10.95 58.39 23.39 78.10 88.56 71.83 57.00 34.63 88.72 48.99 53.42 85.73 76.13 13.43 83.73 76.61 86.66 82.58 27.87 70.90 44.93 68.97 2.05 77.63 89.40 98.41 93.77 93.71 50.83 12.38 12.09 80.41 38.99 52.98 0.58 34.74 95.18 68.36 52.04 49.11 64.28 9.98 53.39 28.09 20.14 72.00 64.06 61.59 30.40 95.37 72.50 68.62 32.81 91.92 20.28 68.34 16.07 57.91 42.69 18.33 68.04 41.60 99.95 18.75 31.49 19.44 64.96 41.54 84.19 32.87 23.80 30.11 88.79 59.41 90.10 13.90 55.02 90.65 3.69 60.59 36.52 91.93 53.18 77.12 36.43 63.42 21.80 42.73 25.86 14.71 59.74 19.62 11.05 11.61 81.26 68.22 56.65 12.52 11.29 87.19 -55.78 36.31 66.79 71.67 35.19 90.60 73.20 92.07 96.89 13.40 16.42 83.24 56.47 18.71 34.26 52.87 63.56 24.74 76.57 10.38 6.26 36.55 48.22 69.36 33.17 78.40 47.24 12.79 96.74 13.27 25.45 50.35 92.91 50.78 88.77 38.29 1.95 24.48 20.09 18.79 49.29 46.53 4.51 10.64 84.83 50.11 15.84 9.69 0.61 12.62 43.44 8.02 64.48 68.02 74.09 81.05 46.39 91.98 63.72 57.14 44.05 64.82 86.66 24.44 36.87 47.29 15.34 97.40 49.75 16.17 81.09 91.57 45.21 1.49 28.05 14.68 68.08 43.42 63.20 99.55 37.98 31.84 44.81 12.18 93.85 81.73 37.35 8.07 78.76 72.51 51.68 39.65 89.49 87.89 78.98 78.34 25.82 35.37 16.80 55.36 -14.01 52.75 99.09 64.71 48.51 80.96 73.32 53.05 72.88 23.44 46.38 45.18 15.73 87.27 69.51 59.83 10.50 25.80 5.02 62.52 56.94 10.06 39.48 68.97 50.25 53.05 59.04 56.40 37.77 95.05 59.85 70.20 36.61 16.66 41.61 68.46 16.37 32.06 91.23 59.02 43.62 16.43 69.40 36.96 22.14 98.41 5.52 82.37 95.46 69.14 1.21 17.79 76.40 59.16 47.96 47.97 53.89 69.87 60.87 67.23 74.94 79.09 94.89 13.58 47.63 90.10 67.24 51.25 39.23 73.12 24.38 74.37 95.20 17.08 47.74 43.15 11.43 73.64 28.27 72.61 43.63 53.65 12.52 69.64 18.40 6.45 20.55 91.63 43.67 92.44 54.22 26.30 34.84 1.62 60.77 40.69 76.76 69.52 71.77 42.41 -60.43 91.62 43.28 19.93 15.43 53.55 15.53 68.34 95.46 94.37 0.53 87.15 43.79 83.44 94.56 17.10 71.29 50.86 64.33 72.14 44.03 59.32 24.38 83.84 65.51 25.81 23.65 91.35 7.74 64.07 51.78 63.99 85.11 83.78 99.36 88.76 30.19 4.59 56.64 33.59 77.55 19.98 42.76 62.60 83.73 1.70 2.96 27.43 25.70 44.83 10.72 49.54 35.88 19.75 69.31 15.96 70.17 15.80 22.12 83.99 10.85 71.98 95.69 17.89 55.63 41.02 88.67 45.18 71.95 25.96 74.68 28.90 7.24 28.84 44.22 21.94 16.07 19.48 76.10 24.70 91.19 93.84 3.21 31.59 83.87 49.69 21.18 10.41 1.89 65.72 11.83 11.97 46.94 25.02 47.84 83.15 92.74 5.12 65.72 56.84 -1.36 75.50 85.44 3.26 67.97 36.14 20.23 86.61 10.32 43.67 67.45 18.87 93.21 82.28 54.16 83.58 19.96 49.32 12.96 89.78 83.22 82.67 21.39 83.80 53.42 24.95 25.01 44.09 86.92 40.53 11.36 79.90 36.20 47.34 29.16 42.68 0.13 25.76 18.47 34.58 38.69 37.32 98.98 34.20 5.57 19.46 74.12 46.81 53.73 44.94 80.28 9.60 5.81 39.62 22.11 75.33 32.26 58.12 45.17 48.78 78.75 75.34 28.40 26.51 44.08 50.36 28.78 34.27 6.06 63.21 84.87 47.20 5.84 72.06 54.54 78.56 40.25 99.54 52.90 19.78 78.06 29.18 0.27 33.25 19.59 97.73 50.38 27.03 31.12 61.68 55.21 29.09 11.19 4.08 17.87 65.53 60.57 50.00 80.86 18.79 -15.11 28.80 49.80 91.91 13.22 78.98 39.20 32.38 69.89 60.58 44.36 2.84 50.68 44.12 58.22 80.96 66.17 98.61 73.97 51.52 55.56 57.64 94.54 21.53 64.31 18.16 84.54 77.85 46.97 20.39 94.79 40.51 98.47 72.15 62.98 23.27 2.37 19.22 27.51 32.70 52.30 31.49 35.33 30.23 93.38 81.86 13.54 90.19 39.63 82.44 13.89 6.61 34.21 26.85 64.34 68.36 5.23 82.82 31.25 28.27 6.41 76.34 2.14 41.82 23.56 54.46 26.42 50.64 51.41 43.52 15.02 81.66 54.25 76.29 48.53 22.11 57.67 61.06 47.11 86.62 24.10 61.37 92.60 55.10 71.92 53.06 33.03 87.59 67.75 83.34 91.16 2.50 3.44 42.47 6.68 15.59 87.70 35.20 6.94 74.26 -29.71 53.47 36.67 66.66 29.19 50.06 40.89 61.53 39.19 83.16 49.80 75.82 7.11 61.96 12.55 90.73 98.87 24.04 5.28 40.66 23.37 18.51 64.92 11.78 37.80 76.74 21.54 1.03 93.22 41.58 13.38 20.72 20.13 65.76 38.04 66.75 27.75 18.08 34.68 67.42 92.02 19.76 82.88 53.79 19.65 63.59 70.54 58.98 49.61 47.09 10.47 18.51 47.35 38.63 4.21 71.69 72.20 42.33 84.59 52.95 81.67 46.93 29.73 43.15 92.45 96.66 66.61 60.31 49.02 65.60 97.05 62.07 31.86 21.19 2.99 1.46 69.18 50.94 36.50 53.65 72.99 63.42 78.52 17.17 22.90 16.57 2.75 37.61 52.97 36.69 29.37 58.33 31.81 2.47 62.46 79.73 30.32 68.00 58.63 77.98 -58.39 66.88 9.66 54.86 91.66 12.10 36.16 97.67 96.72 45.00 48.34 7.19 90.04 0.52 39.77 16.80 17.49 82.13 95.45 30.77 37.36 41.04 31.57 96.99 84.46 12.05 4.39 58.37 90.04 59.32 37.52 10.09 68.16 34.84 5.12 31.55 64.69 56.86 95.28 27.49 50.89 53.69 76.54 23.54 41.46 68.13 71.71 84.65 23.73 0.03 11.02 20.45 46.32 7.56 41.16 77.04 67.33 14.88 34.42 82.29 28.47 48.34 85.10 27.46 9.14 41.34 96.23 33.31 50.14 11.12 75.58 11.23 0.12 64.48 76.93 60.97 59.98 56.80 31.19 72.26 52.89 52.15 78.57 30.71 64.78 66.19 63.38 53.42 93.43 89.50 40.15 96.55 85.69 19.49 66.76 19.65 72.03 13.32 17.63 52.46 -7.25 54.90 8.89 84.86 99.37 35.02 83.67 5.05 93.20 58.75 87.16 59.02 92.52 74.35 47.21 90.17 21.30 60.01 73.77 33.46 80.11 20.56 24.00 80.87 68.45 32.31 58.23 60.19 1.40 39.21 43.41 79.30 7.76 43.24 32.53 37.40 48.33 59.86 69.43 72.77 49.04 85.77 5.96 61.26 59.32 7.38 49.52 58.70 61.30 78.56 21.17 46.12 66.45 84.65 89.10 78.34 14.63 42.20 13.31 42.24 15.81 26.17 11.18 79.76 81.32 5.71 60.73 51.15 0.41 84.55 81.70 10.12 36.30 78.82 13.64 44.70 49.07 3.94 58.65 43.14 25.76 42.24 30.97 89.50 4.96 32.97 83.38 0.74 94.98 26.12 68.74 89.43 65.34 94.45 97.64 10.70 70.60 59.59 6.31 62.79 -28.59 86.06 13.45 45.82 87.34 15.91 3.67 9.54 65.93 26.74 70.29 69.49 4.29 93.06 10.05 33.39 64.00 8.71 4.43 66.74 83.38 79.54 50.67 89.50 50.08 33.86 29.60 40.50 2.50 86.59 98.93 6.19 67.29 11.75 52.86 6.15 36.68 65.61 69.32 40.95 35.46 56.86 76.92 16.25 71.91 5.03 15.13 67.70 24.05 22.31 30.36 88.57 48.01 47.70 15.17 68.48 42.20 18.83 17.83 58.84 43.87 21.01 87.20 94.52 30.48 24.18 15.62 64.31 70.91 27.82 75.87 71.43 76.33 74.73 53.63 28.99 49.60 92.88 76.67 90.20 49.36 76.75 80.97 18.80 55.84 55.57 74.33 27.33 8.98 13.66 60.17 95.93 11.13 43.69 73.58 56.16 99.79 64.31 16.48 58.52 -70.82 35.42 92.93 20.66 82.90 12.33 14.27 79.78 81.58 43.76 66.88 80.87 44.42 21.97 29.28 4.24 42.61 14.06 64.71 82.36 30.17 36.08 23.66 9.86 33.09 43.51 52.70 94.24 37.36 55.85 19.13 62.47 91.74 3.34 0.11 27.27 3.56 29.99 79.21 8.74 23.85 96.42 67.70 54.19 76.60 59.50 83.99 71.12 1.12 43.91 86.32 4.10 98.37 89.14 55.55 5.38 26.80 99.04 90.24 79.15 82.92 73.31 46.84 68.38 96.99 56.45 66.75 37.73 35.61 29.30 41.62 3.23 16.76 14.23 84.46 63.03 59.22 35.48 24.85 90.96 94.99 89.85 46.60 93.52 85.80 85.41 79.40 84.21 44.66 4.95 17.41 27.02 33.52 35.62 57.49 94.69 37.70 7.00 25.18 99.20 -71.24 18.64 15.77 43.83 95.28 77.90 13.05 38.49 28.75 61.24 49.95 44.83 92.71 55.83 99.44 48.19 87.02 63.31 12.21 56.26 44.51 85.09 69.30 83.22 58.25 85.72 17.82 92.69 12.29 16.75 96.15 92.94 15.33 84.04 83.92 51.84 3.70 41.38 26.13 56.63 53.23 8.73 19.13 67.73 4.43 93.43 0.52 64.56 45.44 30.58 97.57 14.67 60.61 96.41 71.85 6.78 28.40 10.49 86.93 33.38 68.62 39.79 0.79 90.46 92.25 6.11 89.42 36.12 27.54 52.09 72.76 84.07 59.18 95.17 7.33 4.20 44.14 87.31 41.87 35.06 56.66 20.75 5.34 40.93 36.01 30.13 36.06 70.70 72.93 59.29 19.38 55.09 68.31 62.95 90.49 75.61 32.85 97.30 19.43 56.90 -77.48 15.39 87.91 68.78 8.34 20.69 41.88 90.57 63.71 36.00 91.80 69.08 77.24 88.53 43.51 12.08 78.90 13.57 90.58 91.17 97.20 92.92 71.01 94.45 14.02 20.87 70.24 50.83 90.11 47.64 29.54 68.44 21.24 7.37 51.86 0.13 16.43 55.62 70.09 63.29 42.69 50.99 77.97 6.72 14.12 32.36 77.63 52.72 92.52 19.63 13.16 14.41 33.79 85.62 65.73 80.52 47.51 42.52 13.29 33.89 12.70 63.97 96.41 62.73 55.94 56.62 85.23 73.77 49.51 93.99 54.19 63.28 57.59 32.29 50.56 57.48 95.06 63.73 88.37 49.68 55.94 80.17 43.33 97.82 41.25 87.50 26.93 43.43 1.09 29.65 40.77 46.55 21.09 25.99 6.98 37.12 27.80 59.72 40.73 0.40 -85.40 24.70 16.22 29.97 10.31 58.04 22.33 29.01 32.64 26.96 55.31 85.75 64.30 23.36 60.08 54.65 32.75 91.96 83.35 3.15 61.64 50.02 42.42 0.33 37.36 67.24 91.09 36.88 43.10 78.77 28.81 85.07 84.27 33.64 92.02 76.05 72.96 20.68 51.80 43.78 1.45 88.03 49.21 68.42 27.22 40.03 89.97 38.24 31.99 35.48 15.90 56.08 67.35 44.85 52.59 97.05 51.27 61.50 91.37 76.99 44.15 64.41 65.46 76.54 33.20 43.24 32.33 9.34 47.11 55.69 24.29 47.27 55.82 14.21 2.29 85.00 57.46 41.94 96.11 39.17 13.26 0.96 48.74 81.95 91.08 96.95 88.89 46.76 9.51 23.16 35.99 35.51 21.99 25.50 2.89 58.68 19.74 8.93 87.03 80.31 -12.39 25.70 81.39 6.20 44.71 27.24 14.25 45.24 78.36 88.20 21.28 12.96 56.27 85.64 77.71 14.51 50.81 10.74 57.47 10.36 26.20 76.40 13.77 21.03 7.48 4.68 97.01 88.23 29.67 84.09 95.44 3.50 9.81 10.23 18.71 47.30 10.00 47.69 72.05 30.17 25.64 69.73 37.89 79.24 12.95 19.72 89.31 88.31 84.95 56.19 40.54 23.78 54.79 96.75 3.16 51.97 85.18 51.62 88.62 28.23 73.78 39.78 99.31 33.39 79.17 60.14 85.78 56.49 98.57 68.10 85.86 97.69 0.62 2.06 34.46 84.58 35.13 8.02 69.31 66.72 41.63 2.44 64.83 59.99 77.06 95.82 66.94 32.69 7.01 87.56 13.56 62.40 14.04 36.69 85.57 94.64 85.03 25.78 66.43 27.87 -25.17 54.59 0.58 40.56 80.54 87.32 65.05 50.44 80.10 63.31 16.08 28.96 57.29 73.79 23.82 75.92 82.04 59.05 13.06 90.35 8.66 73.59 29.77 4.28 43.07 74.64 73.20 34.63 4.11 63.04 43.63 70.28 48.54 31.86 5.80 33.04 26.89 88.92 31.44 95.68 33.43 94.77 46.20 55.39 3.78 62.65 41.74 97.34 97.74 30.32 83.99 61.83 44.37 56.92 39.83 51.65 24.34 90.20 15.62 73.31 17.38 9.44 17.85 61.78 94.05 79.10 16.85 18.25 49.91 66.17 89.76 72.41 79.77 33.58 5.08 99.47 60.66 76.55 64.74 71.30 1.53 76.47 24.87 33.35 17.01 66.46 39.31 87.52 58.83 40.95 14.06 23.22 12.80 8.65 58.20 15.45 75.14 98.16 22.38 25.93 -5.07 77.19 82.18 6.04 74.79 73.09 78.97 24.43 92.01 99.75 46.01 90.27 58.75 18.13 65.71 83.89 22.12 14.08 36.73 41.14 8.93 58.44 65.60 3.00 61.14 95.02 52.62 51.32 37.25 2.46 86.80 30.87 43.39 75.02 18.85 22.52 99.78 4.59 69.49 10.46 5.54 73.80 47.78 97.87 36.76 60.02 76.11 65.08 52.25 89.70 54.03 80.36 5.57 6.49 18.70 3.00 71.95 97.37 78.31 76.46 68.99 61.72 31.46 14.79 49.48 98.74 87.35 44.78 69.19 26.74 0.47 65.44 27.30 40.68 51.51 96.13 2.04 95.28 10.25 81.22 76.58 86.15 12.05 10.55 69.72 45.50 52.99 90.35 59.08 48.75 52.75 50.88 93.49 58.72 58.15 62.64 79.95 95.73 84.48 57.71 -73.87 19.13 61.45 11.65 0.56 26.35 43.82 52.30 62.43 77.43 37.05 43.97 21.46 12.46 27.56 67.96 26.62 22.32 81.01 87.39 15.57 93.82 21.24 21.45 73.48 21.30 95.42 61.68 8.20 20.95 38.73 7.07 35.70 9.23 19.13 87.79 46.42 24.93 58.95 90.09 71.16 82.39 16.70 24.52 61.50 61.93 98.63 45.96 2.44 19.86 96.52 96.09 21.32 33.21 21.91 24.60 6.53 23.62 99.74 52.72 62.36 88.73 67.29 17.54 81.56 14.90 96.82 71.38 93.39 18.86 25.20 24.21 64.46 19.19 69.44 16.83 22.04 61.28 94.37 83.18 5.91 1.95 28.14 85.89 78.11 67.40 68.34 70.98 66.63 96.22 89.39 57.93 91.53 88.51 87.51 5.81 91.40 46.55 75.44 44.66 -37.54 11.57 35.27 94.23 97.97 88.36 98.66 31.75 44.84 77.77 74.14 27.01 99.66 58.82 8.90 38.24 99.47 38.20 27.06 62.67 73.55 8.61 62.55 0.96 92.51 74.49 37.93 82.54 45.12 54.47 79.79 68.32 88.44 83.45 94.55 16.42 52.68 29.69 61.54 67.12 88.29 88.94 9.35 11.59 76.55 94.94 3.42 23.48 31.56 47.84 26.69 70.66 54.26 54.46 93.61 14.77 26.10 97.74 11.97 77.53 98.48 49.90 94.73 96.30 20.70 22.64 49.83 51.17 89.48 47.21 39.09 71.87 45.31 39.71 6.35 14.04 36.03 92.83 70.68 45.78 7.97 91.90 80.57 67.89 24.30 38.07 77.51 28.45 6.38 60.87 45.92 33.60 80.75 13.89 60.22 77.21 46.81 12.12 33.96 87.27 -76.73 55.55 99.70 2.03 74.02 12.92 45.09 88.66 28.78 10.53 37.25 53.73 70.59 46.07 97.61 29.87 85.23 76.42 76.50 64.90 61.82 53.16 91.07 63.46 29.77 51.32 56.03 13.40 21.98 83.82 13.63 87.83 39.54 65.59 37.95 51.69 38.09 20.23 66.47 4.18 47.74 29.72 75.20 3.79 61.87 78.55 60.93 79.26 47.72 82.64 76.13 36.58 36.66 57.57 29.94 29.51 82.72 13.52 58.40 19.75 89.26 60.90 57.09 86.40 93.88 17.40 90.68 64.06 92.04 33.66 94.10 60.39 59.77 90.64 35.59 35.57 7.83 80.39 37.39 17.10 54.78 86.49 81.32 3.04 9.69 51.80 60.85 41.51 17.98 95.35 30.68 15.18 73.13 74.21 59.33 40.55 19.14 63.88 88.06 16.64 -7.73 88.45 65.92 1.42 39.25 64.62 47.07 16.58 53.90 27.06 6.22 7.47 33.06 64.87 93.88 26.13 33.53 99.38 41.83 56.10 86.04 5.75 64.31 43.26 92.62 87.53 82.26 91.65 40.48 19.07 81.05 90.82 14.60 6.50 36.30 86.66 63.70 92.69 85.81 80.44 76.59 30.66 19.69 48.41 42.61 58.48 94.67 54.31 41.53 40.78 71.17 98.08 59.45 11.17 76.32 19.65 57.91 38.78 38.35 87.44 69.95 75.82 22.52 51.93 27.89 8.99 13.05 6.68 40.49 51.67 58.12 39.93 46.80 65.77 38.12 6.65 84.21 67.20 23.08 44.12 71.81 28.85 34.64 67.89 55.33 92.71 54.22 31.51 94.39 85.53 33.32 54.58 7.30 74.92 45.84 43.78 63.20 94.12 77.28 68.87 -10.59 6.29 31.68 39.11 15.84 39.14 13.46 39.36 77.93 10.25 70.34 19.89 99.06 53.29 29.09 45.77 74.68 64.85 68.03 23.33 76.05 90.25 18.80 34.06 43.66 43.87 83.91 53.10 84.91 67.92 12.41 10.09 82.69 63.32 0.92 43.94 1.64 57.56 50.07 17.55 29.79 75.95 89.69 97.57 96.98 20.99 26.78 43.81 88.31 84.81 88.07 83.46 94.07 45.87 39.04 59.01 54.66 9.56 45.35 33.48 83.53 38.77 75.26 38.78 17.41 43.74 22.79 78.30 63.12 37.37 96.62 84.01 46.65 63.74 30.33 69.19 67.22 78.67 99.32 63.76 41.56 3.08 74.85 79.31 9.36 95.46 4.59 1.89 35.71 90.64 47.10 93.05 20.52 25.26 49.00 20.60 14.57 41.60 51.75 16.13 -63.70 46.07 40.73 54.53 4.65 75.29 0.53 76.30 92.38 49.77 36.25 70.11 1.29 30.02 93.95 10.50 96.03 35.26 84.80 87.66 94.19 99.22 64.47 91.90 1.58 43.00 58.81 35.06 96.34 79.56 12.32 59.19 36.19 83.79 61.58 79.08 97.71 90.59 14.54 53.91 86.43 70.06 37.36 28.72 51.10 86.79 32.82 40.36 84.37 6.17 89.65 47.10 49.15 51.12 13.29 60.27 59.45 14.49 38.95 28.22 15.06 59.74 89.62 39.05 11.26 97.70 59.65 11.40 13.48 49.30 7.35 66.92 86.06 24.38 73.11 53.51 23.51 71.48 72.11 79.65 95.78 61.67 46.10 43.21 42.14 34.96 64.39 54.24 21.80 52.77 95.23 11.72 91.54 70.18 26.66 4.77 95.64 2.36 9.04 49.11 -20.10 86.68 70.61 80.52 79.39 68.54 70.05 88.48 33.15 15.53 92.17 61.67 51.00 74.56 20.56 82.50 39.33 28.22 81.83 14.19 0.15 82.80 39.50 52.08 32.48 79.41 60.88 46.70 29.90 90.31 99.46 54.01 5.98 33.25 50.43 34.57 73.93 77.73 42.19 91.54 59.46 25.55 20.51 8.25 90.92 30.35 20.15 0.44 25.02 35.80 9.12 1.12 65.31 86.39 4.20 42.28 79.40 45.24 12.42 85.51 90.48 72.00 6.75 58.60 94.95 2.79 52.11 9.27 94.45 55.50 88.87 81.02 32.73 2.87 58.54 35.44 14.56 59.71 12.94 40.97 56.91 7.97 23.72 0.33 43.03 40.76 94.12 54.91 94.52 17.49 17.15 31.46 14.68 39.23 73.99 7.62 39.22 10.67 93.80 83.49 -90.35 92.96 25.06 17.63 46.76 57.16 96.88 51.15 69.61 3.43 57.04 70.92 77.77 73.94 52.00 76.61 20.77 46.33 2.69 83.74 62.41 85.30 14.17 91.07 93.06 76.61 14.37 55.21 23.82 50.07 20.67 99.94 32.90 89.76 87.32 44.18 33.63 70.80 13.15 77.39 74.38 18.01 32.65 2.85 94.71 6.63 33.59 79.73 60.77 99.43 8.08 53.06 83.07 0.69 88.98 11.84 93.57 2.89 46.51 48.29 26.24 95.40 13.37 27.40 44.37 7.85 99.67 97.32 84.18 29.12 74.20 54.26 33.17 28.89 22.98 30.97 30.97 83.73 3.72 74.61 86.61 28.60 42.74 24.29 20.91 61.71 81.54 11.30 32.16 11.62 50.39 16.66 92.59 28.17 55.15 19.18 54.17 24.89 29.07 45.90 -15.29 21.97 37.02 44.87 80.95 49.89 49.98 29.68 56.87 71.54 50.14 14.61 44.98 72.30 56.71 66.93 86.23 32.09 48.49 14.74 34.90 63.92 98.02 53.37 23.57 85.69 41.11 14.42 47.73 66.85 51.48 46.37 32.77 46.78 59.29 77.89 91.24 84.01 31.29 99.32 47.13 57.33 41.65 21.54 4.97 8.90 21.49 0.20 58.09 18.99 65.24 74.92 37.74 51.27 12.41 96.63 7.41 31.90 42.99 71.75 92.92 17.14 29.55 11.25 53.28 55.67 69.49 66.14 45.38 16.58 50.86 48.28 72.65 23.00 99.77 62.27 43.79 66.04 25.91 68.27 13.79 79.83 95.68 65.86 66.88 60.65 25.33 37.58 55.45 89.10 71.24 96.75 78.60 35.79 41.31 55.89 42.15 73.43 59.44 63.94 -29.35 94.67 28.10 28.17 21.69 80.23 70.41 41.07 49.51 92.71 94.15 27.45 67.30 45.57 11.12 89.13 32.20 7.30 41.21 50.25 32.45 76.72 33.14 1.39 55.08 16.10 71.04 22.32 17.45 2.04 51.41 29.76 93.47 65.79 75.04 71.86 37.94 71.14 37.14 36.19 69.73 45.92 78.30 29.29 67.35 62.62 46.95 10.78 29.78 99.90 82.44 6.82 29.24 58.16 20.73 72.62 95.38 9.05 76.92 91.80 5.43 28.86 8.34 92.75 34.12 44.67 55.02 84.56 53.99 71.00 8.22 78.79 33.45 33.01 50.57 27.30 56.77 59.27 84.94 81.41 5.44 97.58 34.92 10.23 23.47 72.64 0.28 82.33 96.03 66.73 88.73 93.07 24.58 2.23 11.91 34.58 19.89 6.11 22.42 42.23 -6.42 52.61 90.09 12.56 63.26 75.53 7.59 94.06 69.70 49.58 46.42 67.35 19.98 42.72 80.42 55.47 65.48 10.53 64.81 67.17 85.79 45.66 49.32 51.73 90.48 50.73 42.80 73.15 72.34 22.55 12.15 13.14 9.80 3.52 83.53 98.33 95.87 8.62 9.13 60.37 38.81 74.72 83.33 26.00 5.72 78.80 68.47 4.30 34.11 80.60 30.59 9.84 14.27 94.89 41.53 58.01 85.73 54.29 72.01 82.72 52.37 54.62 12.83 16.77 36.69 2.36 14.75 73.56 31.72 91.16 99.86 73.79 52.59 53.18 96.45 95.81 16.59 61.45 99.85 93.12 50.23 45.67 96.65 54.95 49.57 88.06 11.48 5.00 86.53 0.55 36.99 75.55 1.79 5.86 96.05 48.25 62.92 34.83 44.43 26.20 -32.52 22.25 57.83 11.55 48.11 4.22 49.05 78.89 85.86 95.41 83.22 66.70 83.81 98.09 91.19 8.24 67.93 92.70 25.46 19.91 38.69 43.84 14.10 92.67 66.37 21.19 7.63 45.45 15.80 89.79 4.34 8.91 96.55 90.12 34.42 97.93 86.70 73.25 77.37 50.59 49.02 61.56 11.05 89.87 9.33 93.30 9.31 50.83 61.34 49.28 81.99 67.90 70.57 16.67 22.90 37.92 89.67 76.41 29.36 21.25 10.45 84.28 76.22 11.95 31.71 60.63 13.51 57.25 93.85 80.89 65.99 25.03 46.03 4.20 4.79 80.42 67.22 74.33 21.13 93.06 10.21 27.69 58.45 56.78 57.20 89.73 41.43 78.07 44.97 61.25 14.79 84.61 9.62 95.04 88.70 20.41 77.52 71.62 63.82 54.42 -57.19 99.66 72.36 5.90 98.88 98.41 5.73 30.84 92.74 13.99 65.39 31.37 76.52 64.32 14.81 60.49 34.73 12.04 97.19 72.84 15.36 92.61 51.09 77.00 63.41 30.46 7.86 12.67 58.35 96.00 40.07 98.01 69.30 86.39 41.00 79.59 77.26 74.98 76.06 8.54 12.56 72.90 37.05 12.23 99.54 0.78 52.00 99.02 69.68 45.77 26.53 35.20 77.21 9.01 44.86 85.08 80.91 96.34 41.73 92.50 77.08 9.46 29.49 18.41 27.77 75.88 67.09 25.56 2.53 23.33 97.45 74.76 57.20 19.41 86.15 65.34 38.53 61.58 9.26 64.06 41.67 60.01 63.39 5.93 17.43 24.06 80.27 75.64 6.84 27.87 75.16 13.88 54.53 81.82 96.00 74.03 62.25 77.62 13.52 78.91 -62.57 21.38 10.95 83.50 99.71 99.74 65.42 34.06 26.75 46.46 26.31 11.13 63.53 66.73 59.38 39.23 13.62 54.34 85.15 11.86 88.50 32.79 48.80 90.65 69.26 5.04 32.38 18.91 14.46 94.76 93.77 71.97 4.38 68.07 4.84 75.71 82.78 41.00 79.20 44.63 71.18 81.26 51.22 67.16 92.82 20.42 13.49 33.39 44.91 14.52 95.32 43.95 49.40 95.60 25.45 28.19 20.47 35.93 96.26 5.08 23.57 58.72 38.82 46.12 75.31 75.93 86.52 66.77 15.95 56.77 49.09 38.97 52.08 7.27 74.91 49.19 5.88 43.23 0.50 16.62 66.19 23.68 50.45 42.30 76.44 11.42 43.77 27.48 43.64 11.07 72.72 39.65 88.05 4.93 25.41 38.01 87.85 40.01 97.08 74.47 -72.91 3.86 62.43 32.78 92.63 99.35 64.54 84.62 38.69 80.97 79.61 35.73 41.47 58.74 49.95 1.07 49.47 68.62 27.81 14.72 65.63 5.92 52.59 60.30 3.56 50.60 93.39 56.90 1.74 74.86 62.35 60.47 14.07 62.59 45.89 86.01 68.31 37.01 60.98 51.00 43.77 65.67 65.87 12.82 30.68 40.75 58.74 66.20 68.06 14.83 12.30 69.93 50.73 11.51 9.80 62.91 82.29 94.36 4.45 19.23 10.32 63.53 71.64 76.56 92.02 77.20 34.50 69.89 96.41 4.16 71.25 65.44 44.25 60.32 18.41 44.33 14.61 77.35 92.39 0.93 2.50 86.80 48.34 79.71 1.51 86.46 99.86 47.33 46.36 89.32 83.24 87.56 75.56 72.87 15.88 16.05 25.52 46.68 53.86 61.82 -57.53 92.94 66.17 26.01 48.83 10.77 63.77 78.39 42.61 67.67 62.71 94.75 39.01 85.52 48.44 48.68 58.09 32.85 48.97 2.62 89.41 39.22 34.62 53.50 9.35 73.21 22.38 86.32 30.82 18.16 21.72 33.27 23.35 47.70 14.85 46.34 43.69 74.38 75.83 44.79 6.56 0.85 33.65 42.75 65.04 66.04 68.73 16.13 9.89 25.89 82.17 38.95 12.17 89.07 35.63 58.19 76.91 81.10 89.01 69.43 4.81 44.04 76.05 51.79 23.45 41.19 63.08 88.29 92.00 22.50 22.76 55.06 71.89 35.78 75.91 88.57 50.36 60.21 1.46 74.03 98.70 78.16 23.73 46.36 16.00 23.42 5.42 90.71 4.29 73.48 63.17 62.28 43.48 16.29 24.77 28.09 54.84 75.77 58.11 69.80 -46.27 88.42 29.35 86.25 13.16 12.91 45.59 57.06 60.71 34.15 38.41 61.43 16.53 22.72 11.11 77.37 60.77 28.53 5.95 19.81 54.72 76.95 21.87 39.41 71.40 39.85 16.29 18.34 75.88 60.33 92.34 98.72 63.86 47.25 78.28 7.45 0.55 65.69 6.40 24.44 33.18 58.72 54.83 50.10 27.07 95.37 40.00 16.24 77.73 64.86 22.97 51.46 19.07 37.23 45.29 50.87 43.04 1.08 65.76 40.97 84.67 85.94 56.56 27.40 12.43 39.26 70.14 57.19 71.93 78.65 55.03 94.31 26.11 3.17 68.75 95.14 88.24 85.13 91.24 74.63 6.51 97.67 48.95 52.75 29.50 52.90 26.04 72.39 53.21 3.07 57.33 16.15 36.48 47.12 72.78 65.87 31.63 99.72 76.50 17.89 -25.62 63.29 41.50 81.05 53.48 68.77 9.76 89.15 20.55 68.73 35.22 9.64 30.89 53.97 86.88 10.25 17.80 16.69 91.31 21.25 88.65 33.13 78.78 9.97 60.09 92.99 95.73 91.81 99.14 47.01 39.68 21.12 32.52 84.88 65.79 0.30 70.46 61.14 53.18 21.97 2.25 47.78 18.37 19.54 64.03 12.32 66.48 88.71 75.33 87.55 52.42 33.53 85.78 77.71 76.63 16.48 66.52 25.91 93.79 68.46 42.36 54.52 36.56 57.32 8.92 30.67 76.30 15.38 77.49 99.56 25.93 60.24 28.28 97.36 98.37 24.62 4.26 40.15 18.45 71.36 85.20 53.89 5.36 62.38 73.03 68.47 76.35 77.45 1.30 72.50 8.53 17.99 10.09 29.44 84.90 70.71 16.04 50.18 33.65 55.44 -65.88 82.97 84.81 77.11 98.59 18.42 0.53 69.07 37.47 41.52 9.29 35.42 38.09 3.99 84.99 99.90 1.99 19.21 76.74 27.92 28.58 90.85 31.64 38.71 59.01 77.58 95.49 83.91 80.11 91.77 21.85 63.77 99.86 22.00 74.49 63.26 67.40 4.09 58.19 10.02 17.93 68.33 10.23 20.15 24.21 76.97 87.07 28.71 48.15 7.08 33.33 6.70 14.23 68.36 60.37 60.35 36.60 20.33 86.47 89.30 9.02 19.13 61.15 1.01 56.19 3.84 76.71 65.77 47.32 48.72 63.44 24.52 17.46 62.33 75.41 67.10 37.15 48.87 19.17 58.19 26.12 23.87 57.78 62.93 96.56 21.69 16.75 35.36 84.54 53.11 76.97 98.00 24.57 63.91 86.06 42.89 94.62 93.08 64.90 43.90 -70.32 63.98 54.03 89.78 28.82 24.81 42.24 88.51 71.16 74.31 87.00 29.45 33.02 67.95 3.70 84.41 10.76 65.93 81.77 25.57 60.75 30.40 81.58 20.38 99.85 52.42 98.26 11.86 99.82 94.32 41.26 34.36 69.43 53.85 65.27 63.49 70.50 59.30 29.09 91.47 79.75 16.70 69.88 64.15 63.74 1.68 46.57 87.34 24.15 24.35 21.16 86.77 98.05 67.13 1.43 92.01 11.53 67.00 10.60 46.39 20.13 88.17 41.86 57.29 34.58 43.13 34.37 62.73 96.74 88.45 10.59 26.07 53.59 94.36 21.60 62.44 2.53 26.34 51.94 83.05 30.58 13.07 67.11 10.14 1.30 93.02 80.16 44.28 45.92 69.70 3.27 82.88 18.27 19.00 87.13 70.85 40.45 54.27 66.32 87.47 -86.97 64.86 94.68 56.31 45.94 31.60 69.95 3.64 46.06 58.92 58.40 13.60 78.96 95.67 66.95 95.04 60.14 0.76 62.69 11.10 85.99 26.17 55.00 16.27 23.55 19.78 30.15 14.41 19.28 97.04 69.15 21.79 87.94 38.86 12.36 75.98 4.76 53.25 47.96 12.17 43.36 41.34 86.33 32.48 27.66 17.49 86.55 30.13 59.90 10.61 92.97 42.14 86.46 73.90 91.35 60.56 31.00 43.81 17.88 94.40 63.78 54.52 31.29 41.24 77.29 18.39 48.92 49.82 87.44 77.46 8.55 70.15 9.01 56.74 80.32 80.49 62.53 44.13 87.64 91.12 8.27 48.68 18.42 63.44 65.68 93.94 82.26 10.23 33.93 35.42 86.99 82.94 52.02 50.63 51.85 93.36 22.70 9.57 13.16 83.21 -51.53 34.02 6.73 94.16 83.74 43.91 81.28 96.43 25.84 51.45 68.87 41.91 7.75 14.75 43.01 93.53 38.88 77.43 15.77 10.86 17.90 79.11 31.48 91.46 70.41 83.86 89.99 58.04 3.32 98.44 44.17 44.00 83.51 55.81 34.60 60.57 70.82 37.26 68.05 25.55 71.84 57.02 28.61 68.39 67.33 81.83 41.23 12.31 12.12 91.16 49.45 33.69 3.99 71.60 3.88 77.42 65.53 74.37 66.58 10.49 53.11 9.16 83.40 9.58 12.79 78.03 10.34 77.61 5.50 67.78 22.44 11.03 79.14 92.06 87.77 81.94 53.68 11.36 84.83 91.24 58.56 49.28 75.30 21.77 76.32 65.84 14.04 45.25 64.17 50.36 10.26 75.69 77.75 99.02 90.78 2.96 68.24 55.74 96.78 70.28 -47.87 48.57 90.79 48.42 29.17 51.93 35.67 66.83 70.41 61.46 83.44 58.44 86.64 6.20 47.58 74.43 19.51 24.53 24.10 88.82 63.68 56.49 37.38 87.64 64.06 49.48 75.53 16.73 30.73 33.84 65.76 95.78 4.62 92.56 3.50 35.66 53.89 68.64 28.24 21.76 39.02 49.78 49.81 6.70 1.32 14.48 35.44 5.45 1.13 61.36 75.93 40.11 8.06 79.17 40.78 18.55 85.89 85.00 75.26 45.41 54.62 62.58 64.89 32.75 54.85 2.76 92.10 29.85 31.86 80.45 90.69 89.75 37.43 41.04 15.32 0.56 15.62 80.71 21.25 41.77 17.88 44.08 76.68 34.09 59.52 11.54 1.72 39.72 87.69 84.86 82.23 17.56 70.31 56.31 68.68 55.21 14.86 8.98 2.50 78.40 -40.46 20.60 41.98 3.62 94.05 7.18 38.71 4.86 92.10 84.02 82.89 35.41 49.87 70.83 6.73 39.15 80.27 83.48 17.33 55.01 96.95 74.86 45.48 41.94 60.29 15.36 64.13 21.00 93.68 76.99 37.27 44.46 2.86 36.29 68.04 9.75 34.17 20.08 89.28 13.59 68.18 52.56 18.85 34.49 34.67 6.04 18.48 92.13 54.05 33.79 75.41 40.21 4.28 75.87 33.67 3.56 43.98 71.45 40.19 63.11 81.59 48.28 50.79 50.69 22.10 74.92 63.70 76.55 36.88 5.10 32.71 23.44 46.29 33.68 2.88 17.01 81.45 82.38 9.89 88.03 31.32 32.86 42.31 28.91 93.62 89.86 10.10 25.73 9.67 62.60 56.61 39.58 21.48 62.96 79.37 45.62 48.07 99.42 67.98 15.14 -53.45 53.30 16.85 69.17 45.81 81.34 8.60 12.88 81.27 84.65 15.27 45.47 8.85 64.15 97.45 42.18 14.40 37.58 54.76 16.82 34.09 23.63 31.72 91.81 52.15 31.27 87.15 96.11 90.33 74.81 59.96 64.94 57.50 76.37 24.51 52.39 15.96 5.10 34.14 80.96 99.84 20.06 12.03 47.09 45.87 79.91 14.07 29.92 90.92 81.53 46.46 12.41 30.30 25.49 93.62 70.68 51.28 43.58 89.52 11.84 83.81 48.42 87.32 25.09 61.54 83.13 7.20 63.43 41.13 1.64 99.73 99.40 66.29 89.86 51.97 40.38 14.93 49.07 97.72 26.82 69.78 68.47 97.86 31.09 94.07 87.14 58.98 51.86 33.20 39.48 16.83 31.04 22.40 90.99 84.74 28.79 45.96 19.52 20.16 62.49 -96.17 18.54 57.31 65.61 68.27 61.16 74.74 30.31 51.68 75.03 60.20 61.16 70.51 9.09 68.57 10.54 62.58 93.30 74.28 83.97 6.87 82.89 66.33 77.57 93.31 28.00 41.90 55.44 2.17 46.81 51.38 72.28 76.98 99.27 24.39 84.03 24.16 30.68 70.59 86.79 72.14 75.68 83.53 21.05 77.25 27.41 40.65 96.98 33.24 43.85 20.32 34.48 56.36 75.71 59.79 86.54 83.34 59.45 82.62 84.19 19.08 9.59 31.63 47.78 62.36 53.35 19.80 38.29 83.28 44.47 72.28 66.20 72.58 87.11 28.17 15.53 66.76 24.39 88.77 74.90 25.11 20.27 74.09 75.95 78.12 23.64 96.27 4.57 54.11 92.51 63.41 42.93 22.78 39.58 63.12 58.92 90.11 1.96 27.74 93.63 -6.22 24.22 41.75 71.96 15.33 66.68 53.86 74.59 13.25 2.42 11.66 56.31 76.16 86.51 81.17 45.33 90.05 34.10 9.71 63.58 39.71 6.44 70.08 79.44 27.98 8.69 4.63 47.39 9.09 1.18 9.07 34.83 53.07 87.96 49.55 3.95 38.13 67.23 86.09 34.42 34.77 70.26 78.30 78.03 10.41 44.61 73.27 50.59 80.07 88.71 6.61 51.84 98.46 28.78 0.14 31.24 25.94 23.98 53.83 6.77 74.12 36.87 47.73 94.03 53.08 91.36 59.32 2.89 88.79 73.17 0.76 35.83 97.05 4.16 3.43 19.46 70.09 5.11 23.63 82.43 75.87 98.28 53.64 89.59 36.89 85.53 59.13 23.76 18.24 26.47 81.20 87.36 82.70 90.30 65.15 66.12 2.08 21.59 22.06 69.04 -51.88 69.37 62.70 21.77 45.11 15.38 15.37 13.51 26.38 78.24 19.29 71.56 58.85 96.44 18.05 39.29 61.89 48.47 52.68 55.58 18.70 74.24 62.89 46.78 74.58 56.37 41.07 3.81 45.54 76.84 97.15 48.31 42.96 81.96 35.94 47.00 54.62 74.19 83.88 37.04 87.44 74.30 9.85 18.96 48.81 72.43 32.20 27.89 22.22 52.59 32.12 10.88 52.09 75.39 81.18 49.83 13.67 21.12 25.53 48.81 64.49 21.56 25.91 27.83 30.67 49.57 2.20 91.46 60.27 71.83 77.26 65.56 27.37 42.81 34.36 82.76 96.42 7.77 82.02 33.87 66.73 9.12 31.49 67.15 18.82 52.79 79.91 74.69 12.72 85.36 91.26 79.01 46.94 56.74 34.46 8.44 18.75 85.99 98.19 84.68 -20.77 94.26 18.59 10.17 54.85 42.77 29.80 58.31 91.52 9.95 95.15 89.47 80.58 23.69 50.59 3.13 24.68 27.98 74.14 87.88 97.46 18.55 23.52 82.91 40.26 9.54 10.07 18.60 1.46 7.89 24.04 67.37 88.39 19.95 22.89 17.17 22.58 52.28 21.17 7.39 49.87 95.77 37.42 29.60 21.26 21.39 58.53 86.44 95.28 58.89 96.08 60.64 56.32 85.84 58.07 64.48 13.56 4.06 8.92 3.78 89.82 91.35 9.64 49.20 15.13 93.81 36.80 51.65 91.69 71.21 33.36 12.33 15.12 27.54 89.60 28.21 71.36 31.06 8.18 16.03 71.56 79.26 73.25 37.29 61.99 97.98 26.79 15.75 1.36 6.51 46.51 77.60 97.02 39.31 82.60 71.10 81.94 13.54 63.64 70.00 -84.16 92.95 45.48 41.67 42.58 43.72 94.35 94.17 28.16 33.47 17.80 76.86 38.55 32.91 56.53 13.97 2.95 29.81 48.84 33.80 52.78 1.96 88.71 33.66 26.80 85.60 63.31 66.19 30.28 69.97 65.83 17.85 3.27 66.72 4.55 31.97 94.54 9.90 9.74 53.70 69.19 15.08 18.88 28.89 94.08 70.18 39.91 1.63 33.56 13.75 63.90 46.01 19.61 1.65 85.04 27.52 65.53 38.71 62.13 96.40 19.19 89.21 25.98 59.67 18.93 63.40 93.16 82.38 5.65 62.27 87.31 17.09 72.63 8.80 23.51 35.75 8.08 48.59 55.51 52.85 76.25 98.74 31.69 15.82 52.37 9.67 65.92 0.27 48.17 22.88 70.05 99.92 17.68 99.74 82.08 14.60 78.30 29.15 22.26 49.67 -96.59 47.96 65.97 87.32 58.76 52.84 17.41 56.54 47.01 87.65 62.33 41.19 43.94 86.22 33.96 44.40 13.05 17.40 92.96 50.73 26.69 15.88 15.76 10.77 32.00 83.83 38.73 73.39 23.81 2.17 80.76 76.88 76.14 6.85 98.70 74.52 22.08 15.10 49.61 10.25 94.24 26.14 79.14 26.49 41.42 88.60 42.12 7.55 10.43 55.06 3.55 94.55 27.71 82.85 46.55 80.32 99.03 33.65 64.72 77.57 88.66 97.11 79.10 85.92 13.54 17.39 94.96 90.15 52.49 61.67 92.43 67.58 11.85 47.30 85.61 53.41 14.80 63.04 24.47 63.63 74.75 17.98 35.29 64.64 51.52 35.03 3.91 2.52 12.86 12.78 83.28 24.55 91.20 65.07 4.42 85.47 87.88 89.37 27.26 38.50 -30.77 81.29 26.12 81.14 57.64 23.10 63.12 10.79 1.71 36.87 31.96 20.46 19.43 24.79 46.11 70.48 56.08 31.91 61.71 12.36 82.50 43.76 97.69 60.27 38.36 42.72 63.83 88.45 8.75 41.03 8.28 96.85 43.43 45.95 76.46 32.07 75.82 12.92 58.65 41.86 64.73 77.90 6.23 24.26 17.21 15.48 27.37 0.81 6.69 2.45 61.16 48.34 3.15 0.58 24.28 69.08 35.35 77.90 39.27 15.12 31.11 81.15 91.16 43.62 44.26 44.30 68.58 82.30 19.46 66.93 80.93 84.92 80.05 38.72 83.07 54.15 12.68 57.06 9.71 94.17 7.45 92.99 87.94 63.40 35.06 63.71 44.42 25.36 40.40 80.75 53.55 24.96 74.33 87.28 53.86 12.58 30.23 32.76 22.03 9.60 -95.19 21.69 95.61 43.15 1.13 84.08 91.83 33.08 11.02 86.17 33.93 28.33 0.30 23.88 78.72 72.56 82.84 28.25 71.62 10.59 22.79 12.57 96.19 75.21 63.96 64.59 52.75 15.13 29.83 48.97 1.09 59.12 4.28 91.80 94.72 63.84 54.46 7.75 49.47 45.91 72.44 18.56 65.88 71.03 77.09 26.22 30.37 18.23 68.83 78.61 89.25 94.01 81.49 73.77 79.69 50.41 23.46 82.95 27.92 62.58 68.17 80.82 38.70 99.22 10.30 47.08 7.19 99.44 68.47 18.17 55.28 68.43 20.09 57.33 4.25 39.92 34.10 69.49 67.63 20.72 26.82 68.50 16.42 47.15 88.16 51.93 89.80 88.91 32.74 14.42 3.93 82.79 99.15 86.57 30.07 47.63 14.71 31.54 29.52 86.29 -9.71 64.31 2.99 29.08 29.07 32.20 94.91 16.83 42.77 48.43 85.19 8.20 26.35 21.72 58.74 38.35 46.30 60.98 95.60 60.45 0.70 48.88 23.29 10.22 52.91 61.64 13.91 0.40 42.36 32.95 5.38 56.55 82.46 11.36 10.80 15.73 0.45 50.28 21.33 27.71 7.08 96.85 29.38 19.74 77.65 65.23 90.40 99.44 9.01 2.47 8.35 0.65 32.38 77.15 97.68 81.22 26.12 42.83 58.99 24.56 61.69 88.03 65.62 85.31 58.35 59.75 11.18 83.26 40.63 6.55 4.77 1.29 20.87 44.25 53.11 86.80 43.40 66.33 69.55 11.19 75.46 61.62 3.59 95.59 47.72 15.36 5.13 10.85 67.45 51.07 12.20 17.80 25.03 26.30 31.25 42.05 19.23 85.40 32.85 35.93 -43.94 94.45 33.31 11.22 97.72 49.16 24.35 57.87 35.58 8.00 40.36 62.11 62.87 19.83 8.36 3.33 56.55 31.19 17.78 37.67 94.92 99.79 57.25 14.62 15.10 53.47 78.31 85.02 31.11 49.31 69.83 46.53 8.29 80.29 88.60 72.41 11.10 65.07 88.72 67.50 28.12 51.87 57.97 69.15 61.53 9.52 41.31 91.23 85.53 26.45 18.97 18.72 60.46 37.53 72.88 19.67 83.42 35.95 41.05 42.68 58.40 7.10 26.33 18.26 53.70 57.13 99.79 0.42 86.40 50.58 61.44 93.91 97.81 84.54 18.03 50.04 1.88 7.66 76.64 24.27 84.81 74.48 36.42 9.45 19.39 29.11 15.25 6.27 87.43 92.83 52.22 85.87 13.84 22.59 45.85 68.53 54.41 47.05 38.66 90.94 -72.45 68.67 78.09 93.07 43.02 21.68 73.32 81.66 83.48 5.09 77.22 93.73 38.07 62.40 16.56 24.07 99.48 87.91 5.41 13.79 33.03 64.14 56.30 37.34 38.48 7.56 39.41 82.81 68.56 54.65 88.32 50.87 85.36 52.22 68.00 34.23 99.69 59.34 15.43 40.57 76.30 40.66 25.20 1.13 23.58 67.80 81.50 35.78 89.10 51.80 98.53 3.05 29.29 63.65 5.13 81.35 81.80 66.81 50.45 50.56 76.57 12.83 83.72 13.16 42.61 58.95 64.50 68.05 68.12 76.26 43.97 97.50 96.61 17.78 68.72 37.93 0.91 36.92 97.21 26.85 38.44 37.97 16.89 14.57 62.00 60.30 79.01 51.08 33.61 5.08 77.81 5.98 4.20 19.90 6.62 61.08 18.20 31.22 25.20 23.61 -87.92 71.47 88.70 36.56 75.52 53.47 66.63 79.14 8.83 35.57 95.59 74.16 20.88 75.34 49.79 49.21 50.74 30.56 56.52 27.43 43.78 10.86 2.22 40.55 78.65 56.76 88.87 77.87 69.06 74.66 97.65 11.31 94.04 32.04 9.11 32.76 68.41 86.83 67.92 56.35 69.56 23.26 12.13 99.20 36.29 79.43 48.08 90.78 25.37 5.45 40.27 27.93 42.41 34.35 67.84 77.03 84.94 66.32 29.52 1.33 74.21 20.90 95.03 26.44 83.74 2.92 23.20 91.84 0.68 66.67 19.58 30.97 8.26 87.09 60.88 21.44 64.26 80.89 83.49 43.00 88.18 32.66 11.10 36.16 15.35 63.38 56.01 22.74 90.08 21.66 59.68 84.79 47.08 16.37 72.15 75.16 16.14 93.47 86.90 22.00 -65.34 85.77 90.24 74.61 70.97 37.58 38.80 70.56 55.10 61.06 44.59 34.68 55.08 93.29 29.00 96.99 34.55 0.28 19.15 54.16 61.97 67.31 52.47 67.70 2.55 55.54 75.88 7.19 71.02 12.92 31.22 84.62 14.35 39.90 50.43 30.32 2.45 46.91 4.12 98.89 36.30 39.31 44.93 79.61 96.47 16.96 6.50 36.63 82.24 92.49 52.97 96.69 48.37 67.07 6.51 66.29 71.91 68.71 31.52 97.08 81.12 17.85 78.72 92.31 47.16 72.88 25.02 2.89 39.72 59.75 82.30 87.66 77.40 37.23 90.68 15.13 35.27 81.43 14.55 50.07 93.91 70.36 26.16 96.07 10.17 84.44 11.34 56.12 45.38 16.25 96.17 31.21 92.00 53.53 15.33 61.38 98.07 20.92 21.55 29.71 -99.91 54.95 94.29 72.96 75.34 76.07 72.97 44.68 11.26 16.58 16.75 0.08 82.19 43.99 54.84 55.93 97.40 12.68 4.85 75.25 93.80 2.35 14.51 66.07 27.41 94.13 25.28 78.12 12.11 75.92 36.18 71.23 35.35 50.36 70.03 94.43 96.60 71.68 99.22 3.52 62.49 87.41 13.89 4.02 0.72 54.38 86.20 90.43 48.97 91.30 3.92 17.07 56.17 13.77 93.79 61.07 44.50 58.86 71.76 28.58 26.53 86.71 3.30 92.76 98.66 38.10 77.66 64.24 53.38 43.61 47.18 7.19 49.89 42.85 5.06 20.02 90.99 56.07 81.98 53.13 26.73 38.81 24.60 28.02 38.61 8.29 64.87 58.55 25.88 84.61 29.17 64.50 12.09 89.24 37.36 66.34 64.97 22.73 80.52 61.01 -19.96 67.93 86.58 23.25 50.33 99.70 50.18 42.27 70.44 81.35 20.74 52.55 52.27 6.59 62.82 98.61 5.52 33.04 44.46 95.56 38.85 62.11 63.64 0.06 66.35 47.16 34.66 97.07 62.20 92.79 69.26 54.95 30.51 94.82 61.02 33.62 53.82 93.60 88.44 14.97 12.65 48.72 16.90 65.35 75.01 61.48 54.41 93.52 39.82 40.76 74.97 64.98 30.82 95.70 95.82 34.30 41.71 12.74 35.37 76.01 45.77 72.25 43.97 74.41 95.53 19.66 44.04 43.08 1.57 66.33 69.60 75.39 59.54 20.68 42.79 1.87 2.96 17.71 50.88 16.45 64.93 11.32 19.53 86.42 46.26 8.52 50.04 62.08 31.89 17.40 32.41 35.99 7.28 68.24 28.26 15.75 69.85 24.93 22.89 13.26 -85.21 2.46 55.77 40.93 5.24 60.05 31.63 12.83 69.76 0.18 47.98 1.87 51.26 36.64 88.93 66.00 36.02 86.05 94.78 8.03 53.29 89.62 30.48 60.50 60.56 55.61 51.51 44.14 80.60 93.99 48.95 26.62 55.83 26.79 21.07 10.22 52.65 86.55 90.41 24.54 5.37 0.49 21.01 11.48 94.11 35.02 56.88 20.70 56.46 79.61 37.97 8.25 12.16 67.33 9.65 68.27 91.31 45.01 79.93 28.16 54.31 22.08 57.24 18.90 97.76 37.26 22.50 19.75 25.07 85.86 17.03 74.81 58.71 48.52 43.43 26.48 96.13 98.73 79.55 12.31 91.15 5.36 56.43 45.33 0.42 77.18 73.82 71.75 24.35 81.86 75.84 40.00 71.64 48.11 62.29 51.68 80.14 43.75 0.41 87.29 -68.82 82.10 92.97 62.54 58.37 50.04 20.55 38.08 28.06 63.03 95.34 91.91 9.66 92.30 44.70 58.58 26.90 1.91 77.13 27.79 70.28 57.00 83.25 34.55 74.04 27.12 30.24 77.15 63.58 31.70 46.62 13.85 80.21 32.64 94.46 71.45 63.97 39.51 34.39 31.09 62.71 30.30 92.64 34.08 81.70 83.19 11.27 47.41 54.38 40.04 54.97 19.66 76.87 13.31 3.75 40.81 43.28 66.02 59.98 84.63 36.78 53.77 87.79 23.98 81.20 40.95 58.57 48.68 31.97 98.15 49.20 95.78 42.80 20.22 23.06 6.89 38.57 99.09 9.58 3.43 77.31 36.56 53.74 62.23 84.61 37.17 16.69 89.84 14.03 0.14 19.81 70.61 9.32 78.43 9.65 72.97 58.94 96.22 12.50 45.16 -48.66 88.40 99.94 39.16 88.21 40.04 24.81 7.17 58.17 67.84 99.45 28.04 88.29 39.49 87.93 47.80 63.49 14.87 91.22 79.59 79.44 30.56 42.79 39.33 55.93 23.39 15.52 26.85 42.72 38.87 5.92 89.04 74.11 71.60 83.85 9.76 51.76 95.98 31.82 63.60 4.59 12.96 49.70 90.04 81.92 13.63 77.82 55.64 66.92 33.95 62.93 24.35 67.31 66.68 46.10 38.02 98.70 92.50 65.29 96.41 3.42 14.24 87.65 15.98 68.84 21.52 62.77 87.13 21.91 5.74 1.28 50.89 21.89 65.20 9.58 79.59 40.34 30.61 50.83 51.43 65.98 74.30 17.55 78.76 7.67 10.56 50.20 19.58 96.13 54.37 49.77 98.98 21.60 43.13 73.62 55.67 54.98 18.65 54.34 81.07 -13.35 55.08 90.77 8.25 49.41 80.43 35.50 90.88 86.10 13.85 40.21 29.67 75.69 80.11 74.01 93.43 14.26 13.22 79.97 83.04 18.36 88.94 0.83 12.99 86.16 65.74 34.25 64.91 53.62 40.39 62.61 3.79 44.77 27.35 92.49 40.84 68.40 68.23 45.72 35.05 44.46 9.47 66.23 30.62 22.23 22.62 65.28 14.75 90.16 8.29 66.30 45.96 67.93 13.66 14.96 62.64 91.72 70.93 72.91 23.96 18.40 21.81 1.69 36.42 97.71 76.20 63.19 61.23 54.40 88.26 71.42 33.56 90.40 75.54 41.80 47.13 31.55 16.43 92.62 69.72 64.22 90.39 15.41 12.83 32.53 34.12 7.33 63.69 57.84 6.69 0.43 56.61 8.95 53.18 56.26 25.77 85.16 59.88 57.63 38.08 -35.09 6.14 86.85 62.40 22.69 28.67 18.30 16.83 64.28 45.67 8.04 27.71 69.21 22.04 15.41 70.64 57.96 31.61 73.03 6.26 10.82 23.75 80.29 94.72 87.64 92.15 25.06 47.39 19.45 4.86 48.69 83.67 23.63 66.82 83.69 10.68 77.65 19.11 83.26 76.89 74.59 23.34 37.62 57.90 64.43 24.69 41.38 91.39 60.91 74.67 37.75 38.70 31.92 70.29 86.96 90.55 11.86 9.15 48.04 1.54 59.88 17.88 85.58 58.84 18.53 46.44 8.25 94.68 41.69 58.22 33.45 77.95 11.14 78.33 2.10 46.49 78.47 64.71 73.41 68.01 76.38 42.06 93.65 59.97 29.64 75.34 18.26 3.49 85.55 97.85 19.50 3.15 25.46 31.64 70.53 98.65 86.71 53.35 42.24 39.70 -5.69 26.79 36.77 67.33 85.71 91.08 34.76 96.31 48.95 32.00 76.86 69.21 84.12 22.01 92.36 6.33 54.62 21.94 64.36 49.85 28.79 9.25 73.75 12.34 88.65 9.89 44.94 36.02 99.15 41.09 17.48 68.02 16.38 39.95 49.28 81.98 55.79 52.01 74.96 3.70 12.09 2.38 13.01 40.68 46.38 27.91 43.02 36.23 23.39 39.34 46.82 15.54 57.18 12.65 31.09 14.05 82.02 38.79 65.59 36.69 40.63 14.75 58.55 89.45 6.55 66.33 85.02 62.88 52.83 57.41 18.91 75.25 24.80 94.06 58.09 8.86 93.85 20.05 48.58 71.36 66.99 55.35 98.99 0.45 47.20 94.06 57.26 91.42 86.71 56.75 69.37 32.76 99.28 74.18 8.93 84.32 30.35 78.60 44.68 41.63 -67.53 96.71 32.04 24.43 30.05 82.47 86.05 99.96 24.54 35.90 97.13 58.32 33.90 99.95 58.70 21.11 73.45 52.42 35.66 61.88 78.85 17.94 67.04 92.21 11.68 54.53 99.80 78.66 76.08 48.09 37.07 92.00 88.82 23.65 93.69 36.91 89.52 62.94 12.05 77.71 54.07 18.55 83.34 21.52 42.58 80.84 55.65 87.86 57.32 8.39 62.10 41.48 49.25 29.75 42.61 97.50 78.02 28.46 68.43 84.34 50.17 28.04 4.15 68.14 99.70 85.55 72.09 94.47 4.66 9.47 49.26 8.93 6.30 14.50 19.44 16.43 32.34 86.61 75.59 43.49 18.11 87.35 73.33 34.05 85.67 48.48 73.62 29.72 27.24 80.92 64.91 0.52 58.99 44.29 84.29 22.35 47.14 81.38 70.51 15.00 -49.45 58.69 33.71 64.47 87.90 21.20 24.38 78.60 82.80 59.05 73.97 37.75 2.56 57.22 28.62 19.62 67.96 94.09 90.02 34.60 54.60 70.56 42.73 71.17 28.79 22.26 60.37 38.00 4.40 29.39 12.03 61.29 19.34 96.13 49.32 85.83 65.80 72.22 61.40 59.22 20.04 26.82 83.79 34.12 45.74 90.81 69.26 7.90 64.42 71.12 95.04 99.40 27.26 86.05 41.72 28.59 19.47 2.30 70.56 91.78 95.21 54.03 1.35 31.14 42.08 11.62 11.95 5.84 19.18 9.08 81.75 44.63 28.95 73.73 72.06 60.89 57.29 74.81 39.10 73.59 40.37 58.37 29.12 84.98 39.03 7.65 9.51 74.32 60.11 39.04 80.10 76.13 18.01 33.61 15.71 47.12 6.80 72.72 57.35 71.02 -18.63 97.12 68.50 39.85 55.72 63.05 8.94 68.04 7.91 55.36 3.81 15.62 10.72 90.72 86.41 0.71 6.50 3.92 11.45 84.44 27.07 66.37 12.75 15.92 40.83 51.50 79.65 58.60 10.59 8.59 9.20 72.88 63.63 7.83 98.98 39.19 13.24 33.21 62.53 67.83 83.39 3.02 61.28 50.72 74.76 23.09 45.47 71.58 61.42 34.68 48.22 22.84 68.22 36.90 64.25 13.02 74.32 93.17 56.17 77.48 41.14 45.96 10.55 36.37 9.35 76.85 97.82 64.33 52.98 22.95 9.31 46.91 80.36 55.62 16.27 5.17 25.01 17.79 28.16 28.82 22.16 54.95 72.62 86.88 48.34 69.89 75.52 65.56 26.31 70.97 27.65 21.62 43.03 81.88 74.13 63.21 19.97 27.21 47.57 1.65 -27.47 7.30 28.62 10.65 13.18 49.08 14.66 40.77 88.06 41.60 59.22 98.58 5.01 23.26 25.81 18.70 83.80 10.06 53.71 55.22 88.36 53.05 14.60 28.08 10.90 50.72 16.59 59.48 46.70 41.31 55.09 53.55 20.31 83.36 49.54 60.76 5.06 68.46 56.64 13.57 10.78 21.28 25.82 33.87 65.02 74.03 58.63 5.47 44.49 2.48 86.17 64.13 39.74 6.96 69.98 58.75 96.06 51.43 67.67 73.79 54.96 39.67 59.89 43.44 54.69 84.07 25.86 38.41 97.62 80.86 91.01 54.33 77.26 44.45 12.99 53.14 95.32 18.89 63.76 96.67 18.11 49.15 95.59 68.24 25.39 43.73 32.72 8.11 0.22 4.63 21.75 6.10 39.11 1.10 2.15 33.86 83.55 40.12 11.50 42.08 -76.48 64.89 44.05 64.44 0.69 26.68 85.09 15.47 92.28 65.62 17.86 58.91 31.34 53.79 73.54 82.37 94.02 0.84 60.72 70.86 80.56 44.30 49.87 13.64 50.28 95.43 31.67 32.67 69.47 28.48 72.09 90.45 28.44 25.17 94.00 96.52 21.23 11.27 25.83 55.32 38.38 42.49 41.33 77.59 39.07 14.53 27.26 3.88 55.71 83.13 54.19 45.62 23.79 46.15 56.00 60.07 0.65 60.91 84.90 77.06 56.12 44.32 29.70 3.72 63.07 31.32 99.66 40.34 73.22 42.93 80.66 72.66 94.90 72.47 67.01 66.84 48.43 13.52 57.71 5.72 99.85 93.54 36.93 44.43 8.46 79.66 15.92 65.97 5.28 75.96 18.72 25.88 48.15 39.77 87.17 59.39 6.96 13.91 84.23 81.19 -95.34 34.52 2.76 53.35 97.36 61.59 15.68 92.42 31.17 97.01 61.35 96.24 58.68 59.95 45.25 12.45 12.10 91.33 36.31 78.78 99.61 94.20 94.67 48.98 57.91 52.62 98.14 17.14 49.37 67.97 50.51 7.77 21.43 51.62 17.60 27.99 44.46 38.38 48.91 54.09 57.33 86.07 33.58 17.19 29.74 35.78 95.32 2.61 86.18 63.91 50.59 3.42 21.97 93.88 86.95 7.75 14.20 57.34 69.21 9.62 83.64 87.60 25.92 84.29 95.51 81.31 88.15 35.22 28.62 66.68 96.61 91.35 92.51 88.99 5.42 60.01 9.13 47.60 48.17 22.91 40.69 81.48 51.76 84.87 76.41 48.14 57.39 24.39 71.88 1.24 31.22 69.72 76.16 4.68 57.71 49.36 64.59 97.02 78.09 63.57 -66.16 44.58 32.34 23.65 2.29 45.82 53.76 38.17 45.99 92.55 23.94 35.89 23.71 33.54 46.35 45.57 1.90 16.06 41.00 0.67 38.67 66.08 79.60 81.63 4.19 41.50 95.35 25.69 49.61 21.69 80.90 50.63 77.60 19.02 56.02 39.80 95.47 62.19 71.23 89.41 75.34 93.94 41.92 52.22 66.71 1.40 29.60 73.66 56.86 78.74 91.93 38.31 43.72 70.35 1.50 71.64 74.26 70.22 95.47 94.11 68.37 7.15 40.61 39.19 41.36 66.77 96.38 75.03 59.73 92.12 59.02 24.20 25.94 74.88 56.65 44.26 12.85 12.68 3.00 18.09 27.60 30.53 10.51 28.44 34.21 53.40 78.24 60.25 86.43 14.12 2.75 3.32 26.76 43.85 90.87 18.50 80.12 87.02 20.51 50.13 -90.70 52.62 52.96 64.20 87.26 12.82 81.78 60.69 3.67 5.74 57.52 15.29 26.34 5.16 68.36 62.28 25.36 89.77 72.71 65.87 30.97 37.51 29.18 75.36 58.43 92.83 33.64 34.77 48.15 28.31 19.45 60.69 35.37 87.51 97.19 21.38 51.38 23.73 83.85 70.31 99.03 95.27 49.42 17.04 37.96 83.47 59.76 22.92 64.72 6.02 27.26 73.08 50.97 57.77 29.50 24.34 18.95 90.08 21.24 93.95 78.53 31.67 93.45 8.27 27.17 32.86 98.13 29.65 94.71 43.16 71.15 88.05 43.33 79.75 33.00 46.35 18.13 70.60 77.84 57.11 64.84 79.46 70.53 25.50 3.90 13.10 10.89 40.12 85.46 97.97 90.30 9.51 45.77 15.09 77.84 69.23 46.94 78.22 27.16 53.98 -8.48 66.28 28.71 72.76 21.41 61.72 16.71 38.77 48.45 42.62 94.31 88.61 53.96 95.33 4.09 28.93 98.56 61.23 73.73 62.73 10.11 72.87 55.87 78.51 36.69 57.51 87.44 42.74 8.46 18.50 72.07 63.23 55.12 79.50 17.33 64.09 79.58 16.19 93.85 59.66 83.82 96.64 55.65 24.62 91.36 60.56 55.01 64.72 79.94 28.23 73.44 25.11 91.39 48.40 23.64 82.10 84.80 58.93 4.04 96.95 82.95 65.58 14.10 55.69 0.17 19.67 84.55 95.34 21.96 69.49 33.05 19.63 49.62 18.00 27.29 35.37 1.73 2.14 54.28 12.85 11.76 83.73 93.68 61.92 47.91 97.25 1.81 26.60 67.07 80.66 88.84 78.11 39.09 44.77 0.45 36.98 25.50 32.23 54.05 66.25 -62.42 77.75 73.26 88.75 54.61 79.52 21.07 16.13 2.59 77.83 24.91 51.98 73.16 73.46 84.58 96.97 41.98 22.13 40.39 99.57 82.59 81.73 55.50 89.06 68.32 47.16 31.91 50.90 92.23 13.78 52.27 14.71 3.78 84.27 36.79 50.32 70.06 91.70 81.73 92.06 9.99 77.58 63.96 72.82 25.08 91.70 32.30 68.04 70.58 8.93 10.28 14.08 37.05 38.08 45.06 33.90 52.11 25.29 95.19 57.47 18.36 95.10 83.11 95.41 52.54 99.98 13.14 24.56 94.33 90.52 33.01 95.64 77.88 8.81 81.56 17.75 89.38 26.02 32.59 49.10 87.25 82.15 94.38 26.95 51.51 83.37 21.71 18.41 38.81 28.32 57.52 97.04 4.38 10.40 52.57 66.42 20.30 50.72 75.01 58.45 -41.69 59.28 55.58 97.65 12.62 12.16 74.78 25.43 21.31 62.43 5.61 3.56 84.65 89.47 68.02 87.48 90.28 2.31 21.75 41.88 32.27 55.75 51.73 53.96 61.29 35.11 84.02 82.75 68.85 95.68 90.35 19.66 9.25 52.06 31.15 45.39 77.35 54.01 22.28 98.39 42.08 5.36 73.99 54.24 22.29 65.68 76.04 2.24 63.25 92.21 28.36 45.32 7.46 11.15 39.47 17.17 61.76 27.04 41.30 4.12 66.71 26.93 83.68 2.34 56.13 63.24 91.88 72.41 64.15 46.36 14.00 47.28 62.74 50.80 33.89 69.40 73.08 22.56 91.93 84.46 99.07 39.73 41.00 65.11 12.23 55.66 88.26 32.20 75.40 12.71 53.63 59.43 96.54 12.96 55.70 44.38 25.96 92.62 52.10 98.62 -45.49 95.15 37.46 99.32 40.86 34.56 60.81 64.02 77.71 58.97 5.50 51.26 82.91 97.13 81.77 20.55 89.50 57.82 12.93 35.84 94.55 2.02 1.16 48.20 3.90 79.68 36.23 32.69 53.99 43.31 95.12 73.59 22.76 14.74 92.80 96.70 3.28 69.31 58.73 49.14 69.73 74.12 43.10 36.39 18.54 13.99 98.38 18.29 78.27 42.43 64.54 65.34 98.84 52.39 42.22 30.08 5.70 29.27 49.51 16.14 59.86 61.45 98.50 32.75 45.01 82.02 89.82 40.76 34.78 62.43 20.16 69.46 21.23 31.71 55.24 64.44 20.28 59.14 77.69 77.42 37.38 54.88 62.09 79.38 23.42 80.32 28.71 77.64 25.24 32.57 97.93 92.46 82.02 86.68 70.84 79.88 56.95 30.21 73.05 83.62 -86.64 83.88 12.03 30.85 57.70 37.25 92.03 80.25 73.34 62.63 12.88 60.06 36.22 24.87 21.49 18.66 36.17 38.76 79.72 89.55 68.20 16.71 80.66 31.71 17.43 39.22 52.28 58.46 93.42 55.72 39.78 70.19 98.77 26.40 28.64 51.55 97.16 30.10 69.91 48.67 32.07 39.80 79.48 29.39 39.40 33.76 0.25 8.08 4.01 41.51 67.44 12.52 28.46 18.66 7.37 26.93 39.53 15.59 4.72 53.96 57.78 1.46 55.71 38.14 56.69 82.44 36.86 23.60 94.19 22.47 29.59 99.34 51.06 94.08 21.83 31.21 22.99 39.65 19.24 59.50 54.67 27.14 18.84 48.70 21.71 98.89 13.59 29.28 28.78 2.35 49.48 63.49 24.67 41.63 94.07 64.50 75.53 27.52 7.63 83.85 -14.09 2.86 93.62 47.68 74.58 23.62 72.07 19.72 84.59 88.31 74.55 5.99 76.85 87.84 22.99 66.48 87.31 84.70 7.28 71.40 88.24 65.88 27.78 63.73 1.56 21.60 13.37 18.08 49.01 43.97 7.96 80.30 60.04 12.87 98.59 18.26 60.56 34.36 42.01 31.76 67.48 94.54 43.92 88.17 74.72 51.35 51.10 22.99 60.07 93.43 74.82 97.29 83.71 76.75 84.23 19.14 65.02 74.82 59.70 83.89 95.65 17.37 77.52 15.72 13.37 14.07 20.67 86.50 81.35 79.19 98.92 68.28 27.38 75.25 90.27 22.80 13.56 98.79 73.50 0.49 72.55 5.25 43.09 56.74 33.04 92.98 59.04 54.58 29.69 59.90 39.54 64.16 90.67 15.41 62.37 37.30 87.76 5.81 30.69 1.37 diff --git a/docs/examples/data/mfarray/internal_factor.txt b/docs/examples/data/mfarray/internal_factor.txt deleted file mode 100644 index 3adc0b60..00000000 --- a/docs/examples/data/mfarray/internal_factor.txt +++ /dev/null @@ -1,1001 +0,0 @@ -INTERNAL FACTOR 0.1 -53.94 76.90 38.07 53.06 83.25 57.51 71.04 89.85 61.93 23.10 43.04 29.26 17.91 31.41 10.72 75.06 5.30 96.48 18.44 46.90 32.28 73.73 17.46 11.98 62.24 46.65 58.91 3.23 30.98 38.58 13.28 8.28 56.84 38.06 52.22 57.48 34.83 51.02 37.76 1.19 50.75 37.63 21.63 11.77 10.06 57.34 61.13 98.05 12.84 53.44 26.52 0.03 14.36 33.39 2.07 67.75 75.21 71.75 73.56 94.35 78.96 44.01 60.07 67.13 97.21 99.12 48.52 75.45 11.33 20.40 4.28 62.56 44.68 81.17 82.96 62.54 8.28 61.89 22.30 37.04 4.16 84.78 69.71 99.28 81.19 85.46 80.79 54.15 89.64 87.55 42.52 77.82 11.54 55.33 96.18 34.44 96.11 95.05 11.81 57.86 -44.54 13.97 69.50 93.48 8.68 89.18 91.94 49.88 70.70 7.07 29.46 97.87 4.18 24.49 11.54 15.08 66.56 81.50 49.43 53.26 79.13 15.82 57.73 83.01 83.81 79.92 17.97 97.51 3.30 73.39 14.71 55.69 48.26 3.69 90.93 57.22 49.85 97.58 10.56 89.56 78.76 30.80 4.02 21.29 50.20 58.16 94.41 31.68 90.23 55.42 76.66 50.61 21.53 90.39 89.97 89.21 58.35 12.51 37.75 57.83 16.04 30.44 1.23 18.77 4.76 3.03 17.64 27.48 9.29 55.29 77.27 33.97 15.22 6.49 13.50 44.10 32.86 15.01 15.54 19.49 41.41 22.28 72.88 64.85 22.75 80.07 9.14 85.09 31.50 87.36 84.85 58.94 68.13 97.37 30.09 31.26 1.80 25.73 4.33 45.67 -96.86 84.38 44.88 8.11 16.21 73.06 65.60 40.00 94.00 41.17 2.60 22.86 82.94 83.93 10.31 99.93 99.04 50.49 53.98 44.44 69.60 65.24 0.71 28.83 1.10 6.00 7.36 80.36 36.00 31.77 89.00 14.63 56.01 88.84 63.16 46.12 23.89 26.45 44.06 89.81 15.04 19.84 23.80 48.70 90.94 56.12 47.88 67.86 78.98 8.48 74.72 23.21 79.96 82.91 36.99 89.14 45.11 62.77 2.85 44.05 68.88 9.30 86.85 51.96 25.33 57.75 60.67 3.72 13.15 83.67 66.97 8.53 59.30 49.54 85.07 69.53 48.70 13.89 30.62 78.50 39.22 60.54 54.99 26.75 39.83 41.71 74.57 92.51 50.46 85.26 2.51 87.13 20.08 19.76 20.58 42.61 27.26 89.39 60.63 49.02 -14.73 42.62 55.14 17.68 70.59 90.48 67.19 72.15 68.05 40.30 50.60 56.09 16.73 5.95 50.41 71.90 56.61 9.01 38.51 95.16 98.49 38.33 17.22 24.42 82.71 14.00 27.88 50.27 16.33 72.58 44.79 13.45 1.84 83.95 1.79 51.16 6.72 6.77 70.32 42.61 31.35 60.64 87.27 42.44 13.81 83.99 59.15 26.27 3.10 44.62 98.71 15.79 6.58 88.97 66.28 38.15 8.33 43.64 34.64 89.43 70.31 38.92 47.68 78.66 62.26 98.49 16.92 84.99 34.15 14.59 63.47 53.96 77.73 15.34 33.65 88.41 11.77 24.90 1.25 70.83 81.24 9.26 86.87 13.23 40.92 98.47 98.65 56.31 87.74 96.47 79.57 97.62 1.32 59.95 17.04 27.57 54.67 23.14 83.66 85.28 -4.52 32.46 81.36 84.62 99.54 63.00 41.55 33.83 30.07 88.20 80.49 57.49 51.13 96.02 4.58 17.30 46.61 48.54 75.19 37.26 45.60 5.81 11.44 88.26 4.97 14.77 73.22 2.91 55.86 94.83 35.95 60.14 32.60 33.45 22.33 37.90 31.19 50.73 80.75 7.42 69.19 82.99 49.41 29.13 50.86 48.85 58.16 56.06 19.79 32.19 84.83 98.93 82.45 56.85 56.12 29.85 25.26 11.47 69.77 99.45 57.16 99.22 48.42 2.28 30.70 94.66 60.67 62.31 32.94 4.24 98.76 26.35 94.53 44.52 12.44 31.13 5.70 74.71 27.47 82.09 38.07 45.18 41.60 39.42 18.85 54.93 31.76 78.88 35.79 50.00 59.03 48.73 50.56 29.00 71.38 20.67 63.25 89.81 10.96 9.30 -84.21 57.59 48.88 5.61 91.37 89.54 56.26 75.99 81.14 1.88 20.25 81.40 23.99 63.01 79.33 35.59 66.13 1.45 50.54 14.69 24.07 40.28 9.17 19.65 42.79 77.56 8.42 5.57 5.91 5.35 21.54 33.41 3.21 37.34 3.00 26.85 12.65 15.26 35.21 74.15 49.70 63.32 7.13 8.41 36.94 45.57 99.76 97.93 44.77 28.55 11.23 19.73 29.39 42.72 47.70 87.65 40.39 59.56 0.92 85.18 68.92 87.53 42.00 99.13 54.19 41.31 78.38 80.13 42.91 49.21 64.35 65.59 26.00 64.58 61.20 58.68 99.23 20.41 59.68 3.18 19.53 28.93 85.86 80.43 52.46 50.02 11.05 61.95 14.13 41.75 91.71 72.93 5.64 59.89 38.18 35.65 29.38 79.92 59.64 8.18 -58.43 1.15 94.49 8.43 58.91 78.88 67.73 89.24 35.44 76.20 60.27 24.85 50.79 68.44 94.74 65.60 37.30 47.52 57.32 38.95 74.93 39.40 31.08 82.47 41.84 94.38 47.26 8.30 68.08 29.56 77.95 61.81 13.61 69.08 11.05 88.32 55.51 78.11 55.26 95.41 77.97 79.51 28.86 19.58 95.43 89.28 23.33 36.49 34.94 74.78 24.97 68.34 1.89 45.09 80.14 15.86 89.00 88.76 56.35 39.44 55.95 78.65 28.89 29.34 85.78 60.17 89.40 72.14 40.73 39.12 5.92 45.03 76.70 94.88 0.14 58.19 67.75 36.53 95.56 95.44 92.98 71.06 4.23 64.76 73.28 9.36 26.16 30.66 31.33 20.78 62.22 75.26 48.91 5.01 60.91 93.75 83.41 13.19 1.77 90.16 -44.80 84.78 4.34 12.66 72.58 13.98 75.28 34.81 41.79 43.93 61.81 70.84 3.57 67.91 30.92 7.35 74.56 62.34 59.96 15.68 60.27 5.14 57.73 64.68 97.14 92.65 11.12 3.69 85.57 74.05 99.18 47.15 6.33 56.94 22.18 97.36 84.94 27.76 34.49 55.64 23.48 65.14 22.64 82.65 93.40 84.15 31.15 2.55 32.46 67.86 82.86 10.12 80.51 59.13 82.68 64.84 69.43 19.09 36.28 16.58 18.72 9.52 51.03 9.59 98.75 75.61 46.92 61.18 29.12 83.59 55.84 73.73 33.66 87.12 1.87 66.64 99.03 99.94 98.22 17.02 65.97 58.43 85.74 4.60 77.41 69.04 5.88 74.75 3.92 71.45 85.50 18.81 21.75 80.48 46.67 11.73 31.45 69.30 86.93 23.71 -15.77 14.76 47.40 39.56 18.92 10.54 76.64 21.53 4.56 78.62 47.96 7.49 59.46 46.76 59.10 7.61 90.77 18.23 22.63 51.23 70.23 5.29 61.61 17.00 93.15 48.24 73.40 64.95 37.77 13.70 54.48 35.91 59.79 62.17 4.24 39.56 73.02 42.06 93.07 38.82 79.86 11.62 11.46 55.29 19.15 97.53 63.96 15.50 90.78 72.47 72.15 33.74 23.06 89.60 37.98 75.93 17.04 52.72 94.02 90.87 57.99 20.17 95.66 35.86 97.88 36.38 23.40 27.26 6.67 52.25 99.49 35.45 91.84 54.94 32.20 31.09 2.96 72.47 52.34 6.27 14.48 73.20 50.67 87.72 18.37 13.53 72.37 24.45 52.84 67.51 26.08 39.40 11.68 85.00 74.46 20.44 33.72 90.31 84.68 96.59 -97.47 64.68 69.86 30.63 70.78 61.55 98.84 24.21 69.43 60.25 57.36 6.18 33.83 4.69 79.29 51.53 88.39 53.90 57.57 8.61 45.36 84.10 23.35 68.07 87.47 0.35 37.42 86.23 83.76 25.17 17.55 60.93 52.54 93.61 30.19 75.24 68.38 56.51 55.07 34.93 17.03 35.92 95.21 13.02 36.65 60.70 96.91 74.32 92.03 32.72 19.75 79.53 41.96 22.17 17.94 12.81 76.39 38.23 36.84 18.67 79.67 35.77 77.98 79.60 23.39 96.87 88.61 31.07 76.98 96.58 86.93 64.52 25.76 73.34 35.02 63.17 44.42 10.43 74.05 35.96 86.41 99.69 50.72 96.45 82.59 17.04 77.13 16.95 11.57 74.34 32.44 96.46 24.88 94.99 67.67 11.97 34.15 77.01 7.03 82.77 -68.74 58.56 79.94 98.69 79.54 21.93 9.87 84.74 72.21 58.58 64.35 68.12 95.03 26.98 61.93 69.48 8.50 23.77 9.14 57.68 6.26 19.17 58.81 63.01 57.23 52.87 6.45 25.10 76.11 38.41 39.02 92.48 66.55 62.91 41.45 36.99 69.35 44.18 64.11 30.83 60.50 73.28 93.41 74.61 26.93 55.70 47.61 5.90 49.69 30.24 22.44 94.59 51.50 43.52 37.85 55.69 70.55 36.73 86.61 11.57 67.89 78.61 93.70 21.68 6.42 12.20 27.28 16.44 98.20 83.30 5.29 97.18 33.19 80.93 69.03 40.23 75.96 85.25 46.16 45.89 72.76 35.04 28.09 29.39 23.03 44.50 25.16 4.07 38.21 75.11 7.07 97.61 42.35 1.43 69.78 89.41 37.19 82.01 82.63 59.75 -85.50 3.36 80.30 72.01 8.86 91.92 8.20 94.49 30.14 10.81 48.83 55.28 72.84 39.09 81.77 61.13 31.32 10.95 1.28 78.59 2.96 58.84 66.31 99.91 59.26 98.07 40.39 62.05 18.96 93.93 9.11 54.25 0.16 61.89 49.65 62.87 15.72 24.18 0.78 49.35 89.05 5.99 38.84 57.47 82.11 32.18 76.88 9.80 10.98 29.76 63.07 98.31 61.21 12.70 20.33 15.35 63.01 61.87 46.06 36.26 62.29 36.35 44.39 98.92 57.35 70.56 45.31 75.45 89.10 29.24 60.04 38.68 82.13 51.32 13.58 38.55 78.39 35.83 42.44 44.92 65.08 80.90 21.91 31.57 96.00 86.38 17.75 18.09 84.48 37.58 31.77 72.11 65.53 89.08 40.77 22.86 33.29 74.18 52.35 96.35 -14.53 97.71 99.23 89.70 66.92 72.94 55.84 21.69 33.41 13.70 63.62 16.77 30.47 42.08 77.12 32.96 46.12 37.63 89.83 50.61 92.61 39.57 10.33 87.91 15.16 60.83 33.86 55.55 58.71 79.78 32.53 59.33 90.11 69.90 47.32 59.25 2.66 14.47 66.31 35.33 11.66 70.24 59.50 55.93 82.74 94.85 27.98 23.41 30.26 3.27 89.42 84.58 97.12 68.43 35.08 52.75 0.85 47.88 19.20 60.18 24.21 37.70 8.50 82.44 47.12 17.63 82.72 82.27 67.29 86.26 37.28 81.10 6.01 6.55 54.27 63.24 19.78 42.44 85.12 3.00 35.25 64.92 86.79 81.20 98.95 85.97 76.63 52.68 60.77 39.09 83.05 14.66 91.48 73.60 31.64 18.94 26.01 22.67 34.17 95.43 -75.95 16.87 72.45 9.13 44.71 8.11 36.56 48.36 18.73 36.11 51.08 94.54 55.88 76.48 14.45 19.15 4.09 12.33 39.34 91.57 87.26 62.90 47.23 78.08 3.69 93.97 48.10 8.28 19.28 83.86 10.69 86.64 43.97 34.77 67.69 27.34 60.09 84.29 68.27 20.61 31.11 2.18 99.81 90.38 87.36 21.15 3.42 85.34 0.12 71.14 0.08 70.89 27.29 67.63 2.86 38.69 87.08 10.01 20.56 74.01 29.33 20.71 90.53 99.08 68.70 55.68 37.94 98.76 91.88 6.82 37.36 43.37 20.68 33.77 12.85 24.50 7.16 48.88 24.15 6.76 11.54 66.06 88.95 32.40 38.90 66.92 29.04 44.22 54.20 59.92 60.15 72.96 83.81 10.47 69.82 1.66 39.75 31.25 41.16 22.80 -86.30 86.39 53.18 73.82 6.31 24.97 33.99 73.29 27.68 68.65 32.25 11.57 68.65 18.20 9.64 10.48 48.05 34.76 15.38 45.92 39.43 3.46 60.59 52.98 77.30 95.31 68.97 56.70 35.42 56.76 79.85 62.80 73.96 53.73 73.43 10.50 56.25 54.33 36.01 61.35 11.35 11.72 9.26 66.60 70.85 85.81 46.19 43.33 98.60 11.13 2.72 56.87 35.51 32.38 5.65 49.00 13.68 15.59 85.36 72.55 80.51 55.02 43.41 99.69 82.57 1.88 92.38 93.42 61.70 13.11 61.90 16.49 11.64 10.56 64.04 32.42 77.57 35.28 70.31 75.65 52.02 59.47 3.77 17.38 11.87 74.48 31.58 24.52 21.75 79.26 57.63 92.06 42.06 93.33 23.12 34.30 31.32 32.75 98.80 19.77 -53.12 25.33 65.80 92.06 93.63 6.22 16.43 72.37 42.64 90.25 86.32 67.55 32.70 4.09 70.95 19.83 36.04 58.81 75.62 5.93 61.21 3.43 58.30 78.26 72.26 69.78 37.67 44.01 82.83 17.29 56.21 96.97 56.15 74.49 23.03 86.16 64.52 96.16 61.84 81.52 14.12 84.67 41.44 75.48 20.75 87.70 55.54 11.69 11.07 29.84 48.50 99.79 36.91 93.44 8.59 98.46 8.24 83.81 21.41 39.94 37.31 60.75 75.92 78.28 30.81 89.02 43.64 19.37 67.46 55.90 88.47 78.32 65.11 39.85 65.85 6.62 73.81 99.41 53.15 20.89 37.18 28.92 30.09 65.52 27.40 70.86 54.93 60.79 35.02 95.31 17.30 41.84 57.68 3.27 52.18 68.70 18.81 21.89 80.16 33.14 -90.57 91.65 26.47 38.02 71.01 53.04 57.64 14.05 59.58 53.93 38.72 24.47 23.84 33.26 56.00 44.78 16.15 97.14 24.97 42.61 51.85 19.47 19.23 47.23 87.56 9.54 73.16 75.24 40.54 11.18 69.16 24.22 18.26 90.03 59.66 8.91 62.86 27.16 53.73 89.77 51.74 2.08 98.73 75.10 56.38 64.28 10.71 75.56 71.01 8.94 77.95 1.42 36.41 63.01 68.47 87.10 97.93 85.63 64.75 42.75 45.27 94.31 43.68 96.92 94.12 30.02 14.21 70.79 3.62 17.66 91.00 28.17 21.53 11.16 38.77 91.90 7.26 29.42 10.08 45.76 18.06 9.28 72.12 56.38 93.21 84.55 61.54 95.82 84.34 83.49 59.38 25.37 35.04 56.80 17.85 91.40 15.04 27.32 60.75 45.88 -63.17 73.43 18.16 27.31 81.03 72.41 19.63 53.29 42.36 96.67 1.87 48.07 26.69 11.15 23.53 95.20 53.98 89.05 23.58 2.73 50.08 65.18 81.45 42.67 25.77 65.69 84.89 22.32 60.93 7.63 31.25 61.61 94.24 29.34 33.68 99.55 73.30 95.57 12.22 32.86 91.01 60.23 51.92 18.18 54.78 67.67 15.97 26.38 58.16 6.68 25.44 63.08 34.12 66.44 44.21 1.72 49.81 25.94 98.44 15.12 37.79 61.36 51.61 83.58 46.41 32.71 75.90 42.62 2.82 25.55 84.43 58.87 66.00 47.29 68.35 6.24 75.49 38.69 72.09 25.85 97.59 97.45 27.54 5.48 67.36 92.28 83.09 53.20 24.78 0.90 55.39 66.23 24.84 10.77 16.30 65.62 68.95 73.09 50.87 9.24 -12.29 31.62 17.65 8.64 79.96 90.78 89.25 49.56 35.84 31.30 58.37 28.70 64.93 33.74 84.65 45.58 63.54 13.44 45.43 49.70 38.09 92.15 92.11 5.25 39.43 82.06 47.94 86.96 39.71 21.31 26.68 54.72 15.38 78.88 79.71 24.18 72.35 26.27 76.31 65.58 13.03 58.48 84.46 40.37 18.85 39.94 46.03 8.91 32.32 30.91 26.41 1.62 2.62 45.68 88.26 30.82 30.61 44.76 28.29 58.43 12.24 54.75 48.48 90.33 92.25 77.09 34.47 19.26 56.94 55.56 76.76 55.29 11.23 28.69 98.07 66.95 53.03 94.80 99.88 72.46 53.57 60.35 24.90 8.23 71.89 43.05 72.38 43.32 28.54 59.40 84.95 69.78 2.35 33.85 91.76 97.18 19.64 77.74 18.19 58.16 -13.57 9.80 51.75 89.78 32.91 41.80 60.24 8.83 94.64 92.56 36.59 75.34 32.66 48.89 62.22 47.03 65.81 48.29 41.93 13.01 86.44 61.03 50.32 27.71 57.86 66.63 6.16 27.17 90.53 82.28 8.88 35.62 44.32 13.30 61.72 55.67 66.95 23.31 8.29 1.74 75.91 40.02 76.71 48.15 77.93 88.18 6.74 84.68 20.04 6.28 8.03 11.80 74.47 39.37 34.32 19.57 88.58 23.30 67.09 52.08 34.90 67.52 3.43 14.77 61.86 92.52 25.99 20.48 73.99 3.16 42.35 89.67 6.01 50.94 79.66 54.09 88.29 8.22 7.79 48.55 59.41 59.83 13.76 42.35 51.99 4.83 44.84 70.57 20.38 70.53 28.70 60.26 73.35 40.39 74.07 86.06 55.06 55.22 71.69 85.09 -37.62 98.30 88.29 14.38 27.19 82.67 35.57 94.86 91.71 88.13 8.22 31.55 47.65 73.73 23.67 18.29 86.26 52.61 84.54 7.84 90.70 59.31 38.83 63.98 25.75 11.87 94.65 42.66 25.00 25.63 13.99 60.87 31.66 82.95 74.03 35.11 29.85 19.56 80.11 22.89 89.17 59.64 7.45 26.50 75.20 64.15 12.91 35.08 45.32 11.50 10.66 36.12 38.66 32.19 93.83 61.06 93.64 70.40 74.98 15.51 17.55 29.96 53.92 42.76 55.24 58.53 81.72 47.63 85.76 77.77 63.09 10.46 75.92 7.65 76.43 50.76 38.46 3.43 77.42 83.71 82.28 86.30 39.62 94.09 85.47 23.97 73.72 28.54 94.96 0.97 55.62 39.39 66.60 20.34 95.91 52.55 67.33 64.25 1.89 75.65 -79.08 45.12 20.89 71.09 32.96 52.25 15.46 84.83 21.98 50.84 14.61 69.41 38.83 54.66 57.01 13.33 62.63 5.93 25.61 54.77 57.93 90.24 19.09 14.21 77.95 56.60 36.29 23.03 57.79 59.05 33.55 63.79 48.02 48.34 42.28 43.48 60.09 81.85 83.87 25.96 47.53 95.59 62.99 88.31 94.52 25.93 15.45 34.84 84.83 22.65 32.62 64.87 66.48 96.77 64.44 94.10 38.76 93.06 78.56 99.64 67.34 97.17 86.35 77.64 5.58 78.59 69.53 58.60 98.09 77.50 49.97 89.55 66.48 73.62 36.95 33.11 68.68 52.89 93.29 67.20 63.40 56.35 30.61 14.17 91.51 94.60 57.37 7.64 43.02 4.39 63.88 27.38 58.75 53.03 1.14 31.31 74.23 91.64 14.52 97.41 -0.67 25.43 19.71 60.53 94.89 55.17 61.02 48.51 8.51 49.08 82.22 12.93 5.42 92.50 79.94 6.94 78.08 13.74 93.07 40.39 74.28 44.27 27.07 55.48 2.52 79.96 54.51 84.67 42.19 97.20 65.62 85.41 78.21 27.65 30.37 72.58 16.89 86.94 74.53 3.69 71.61 39.64 68.99 3.74 57.07 89.16 75.27 5.39 6.82 10.66 31.42 52.28 84.33 77.30 95.75 51.70 4.97 99.75 16.54 42.35 96.94 54.81 7.51 88.17 16.16 95.44 49.94 17.51 21.92 87.17 21.51 7.55 78.47 51.67 25.15 94.83 88.86 7.77 13.25 82.38 21.85 1.19 98.14 2.47 31.55 36.99 28.08 82.67 78.35 90.06 71.98 70.85 59.89 98.43 92.36 24.55 65.23 97.87 4.64 91.26 -33.15 57.54 31.84 33.61 41.03 84.29 42.21 16.75 92.88 73.68 62.99 77.05 77.99 12.71 96.06 57.37 64.83 90.80 51.76 38.76 32.79 46.30 97.41 38.07 31.00 20.22 20.76 88.33 31.01 4.15 87.94 24.37 12.45 67.98 59.34 38.70 37.91 8.35 88.26 53.31 99.50 39.19 78.07 48.10 24.00 80.32 48.59 82.86 83.98 37.25 88.76 89.86 92.52 91.46 60.40 19.42 14.56 15.58 87.97 85.52 9.88 32.88 17.08 94.03 33.85 41.95 89.81 73.54 3.51 97.89 44.89 33.58 94.55 12.24 63.28 14.40 51.64 60.12 52.35 0.85 97.53 69.89 66.42 44.50 58.37 41.30 80.91 78.03 63.24 34.63 1.64 82.07 37.00 33.19 7.24 64.84 61.29 62.95 82.20 51.21 -87.43 27.59 3.95 40.22 81.02 76.25 78.87 51.22 16.76 32.39 32.44 1.82 77.12 27.09 46.51 43.54 60.82 37.92 93.05 89.20 64.27 76.52 71.30 62.63 1.37 23.40 78.75 42.48 99.20 55.76 87.03 78.99 9.85 55.99 80.51 20.83 78.86 9.84 88.92 19.99 3.90 24.49 78.52 14.97 44.22 61.20 45.17 11.90 81.21 32.94 25.27 73.17 39.68 4.93 45.06 84.64 78.27 42.99 77.75 89.29 86.23 72.40 19.46 60.78 12.60 77.33 94.59 10.67 57.39 83.17 86.86 40.78 16.80 41.79 43.98 50.62 46.36 66.26 88.13 38.55 50.67 6.78 85.46 61.37 64.50 69.17 97.93 20.82 91.65 19.12 4.29 7.09 56.77 18.41 17.19 81.91 48.41 98.97 30.56 82.07 -43.12 60.54 58.98 44.29 62.00 11.00 83.25 15.61 6.82 41.18 80.32 29.08 91.90 85.28 3.28 10.69 5.84 20.03 62.52 90.74 41.69 98.56 30.70 78.94 15.82 74.84 1.90 81.48 10.55 7.69 49.98 56.60 83.54 93.77 39.67 6.02 45.60 83.77 53.95 51.49 47.48 13.66 53.79 74.86 34.65 88.10 49.96 77.50 77.68 25.57 95.75 99.91 63.92 32.67 88.83 41.44 87.22 45.68 29.31 0.50 27.59 31.36 42.69 88.97 53.90 92.24 31.29 65.15 72.06 9.47 54.75 33.78 49.85 2.17 48.27 24.70 40.07 25.29 86.54 75.32 17.18 63.91 58.73 19.99 0.03 88.55 59.00 94.46 12.73 2.64 68.19 64.48 88.03 37.97 79.63 69.70 95.04 0.30 27.91 94.02 -85.10 20.50 64.56 56.12 49.57 52.39 30.43 41.46 32.92 23.04 47.42 51.06 60.32 48.37 46.21 99.24 65.90 42.33 10.85 92.18 14.50 86.01 75.78 98.51 51.50 46.62 24.94 3.44 51.20 32.88 58.12 59.70 77.02 19.51 71.27 30.12 87.77 59.87 35.08 9.50 46.89 15.79 16.10 66.02 82.12 27.19 69.21 53.21 93.91 72.81 57.04 1.36 6.72 37.07 14.16 24.88 18.90 84.85 1.77 24.59 9.82 20.32 81.45 7.24 57.90 75.90 59.76 12.85 81.01 18.20 37.98 69.84 64.29 90.91 30.32 91.24 7.80 96.96 66.44 25.71 19.84 98.92 37.43 90.37 37.03 37.71 7.83 74.44 34.10 28.62 49.28 42.17 96.37 54.11 17.69 41.75 21.46 11.21 7.76 57.11 -95.56 19.75 19.81 20.86 49.86 40.40 94.99 72.46 59.42 12.71 15.49 62.97 65.61 25.15 62.78 64.96 96.79 47.29 42.91 5.69 88.21 83.85 59.60 57.56 4.36 45.49 10.34 49.39 52.31 76.08 8.09 27.19 60.79 99.52 51.32 73.73 78.86 18.21 47.37 55.31 50.39 77.57 3.08 72.01 31.18 79.99 91.87 81.94 77.28 82.88 58.34 42.34 45.27 92.17 83.95 27.06 52.03 5.62 48.74 7.03 27.61 59.32 50.54 25.05 22.44 94.48 33.60 96.75 94.66 53.82 45.59 39.66 41.62 59.49 29.51 46.05 65.01 18.06 33.23 87.68 67.16 57.96 14.55 59.91 73.23 35.61 40.06 65.35 83.75 68.75 57.79 52.87 57.46 36.51 51.02 44.28 40.01 51.85 75.57 3.98 -7.74 25.58 72.41 64.51 6.08 51.27 38.28 1.41 92.57 62.32 32.64 26.58 37.63 14.16 80.39 30.39 79.97 97.99 39.83 85.74 82.30 72.68 12.58 69.89 24.30 25.85 25.72 2.91 16.71 86.79 22.36 47.37 80.70 36.35 59.25 74.84 78.67 46.12 19.66 24.58 6.43 53.14 17.62 83.98 43.71 90.33 90.10 67.79 30.81 51.26 32.83 68.40 26.97 77.72 35.46 88.75 55.60 2.12 77.09 23.75 15.57 40.11 68.82 27.11 82.39 2.32 8.61 72.37 47.73 4.58 94.32 65.56 73.80 93.16 60.23 22.05 86.28 72.42 69.90 25.87 35.01 31.84 76.89 15.64 42.21 20.37 8.29 72.11 18.14 4.81 17.09 13.34 6.13 38.51 60.29 90.52 45.03 70.49 69.13 76.09 -41.30 77.96 55.95 45.32 27.35 45.84 83.50 75.07 55.22 43.61 89.25 13.16 78.32 53.97 79.80 45.03 27.06 61.91 91.56 36.11 0.85 16.08 47.67 77.54 86.02 25.48 92.78 51.25 28.39 22.60 99.67 27.26 80.15 32.98 91.21 24.24 75.42 46.37 3.62 62.19 86.25 75.91 48.59 52.78 1.13 40.89 19.53 5.67 21.43 14.04 17.47 34.83 24.14 19.28 3.35 85.59 19.28 52.82 62.75 41.68 44.08 26.84 49.64 40.90 23.36 71.42 8.86 25.86 36.14 67.24 30.70 8.72 7.93 93.18 36.00 14.38 5.88 88.18 86.55 16.38 21.71 63.62 10.73 16.02 92.59 27.93 34.24 21.83 89.52 81.71 22.32 8.70 62.95 25.22 48.18 31.96 83.29 50.45 19.95 78.56 -26.59 3.14 98.91 2.29 55.29 94.96 81.00 52.48 44.71 68.04 95.82 93.12 50.33 10.68 45.42 8.85 85.87 58.50 43.86 33.09 87.73 84.58 76.30 66.70 95.83 9.16 30.89 20.00 60.12 16.52 77.11 41.99 88.51 48.47 63.62 80.46 20.44 7.46 23.55 95.64 15.75 24.59 28.61 52.19 47.39 6.00 10.61 68.34 14.32 59.91 98.98 7.06 46.15 89.98 15.73 51.84 41.58 6.85 50.55 7.24 49.24 8.34 40.52 52.15 81.49 12.68 87.50 67.77 1.89 32.32 80.08 8.34 28.96 6.20 19.07 43.29 42.90 97.82 96.60 77.26 10.83 93.38 22.20 74.01 41.51 43.44 86.53 26.92 70.43 45.11 51.08 54.53 54.13 22.07 30.52 53.07 33.49 25.00 15.08 5.86 -52.53 7.99 90.55 3.73 60.55 74.23 32.90 92.46 12.16 49.29 42.71 19.32 46.90 17.39 74.98 13.90 32.05 43.39 27.20 57.84 93.25 67.62 72.38 7.75 75.28 1.45 30.64 51.14 45.59 4.92 64.48 46.55 2.41 48.42 42.38 43.41 58.58 23.70 32.71 83.48 43.45 57.35 27.77 97.68 75.87 7.42 98.56 17.49 80.69 92.98 51.86 34.05 96.76 91.65 90.19 75.43 62.38 53.70 62.76 3.85 7.36 31.78 44.60 41.72 24.05 53.22 12.97 1.11 74.46 2.22 50.06 25.89 65.26 16.69 15.21 55.81 73.99 56.78 83.26 68.66 85.73 77.55 90.35 40.41 94.56 76.26 23.89 19.38 87.66 51.83 96.38 58.81 22.57 2.88 70.10 81.60 90.62 71.42 48.48 46.46 -22.56 3.06 13.48 69.39 38.34 34.18 5.76 0.03 91.20 90.90 80.86 40.75 96.26 86.59 28.28 8.39 67.46 46.23 94.77 5.54 93.47 17.28 61.92 36.19 97.62 86.94 27.42 68.85 16.13 15.58 37.90 15.73 44.73 89.26 45.01 48.26 91.29 4.75 22.49 91.30 65.42 70.95 79.86 34.83 38.09 30.59 98.71 56.68 96.01 43.82 96.25 43.41 67.84 7.77 92.39 88.70 73.82 70.85 36.72 97.95 34.96 51.93 20.12 66.65 37.90 71.35 58.89 55.32 59.46 59.62 31.38 20.01 28.92 42.43 73.27 80.80 3.19 69.00 97.11 95.24 88.65 25.38 47.54 64.81 1.26 42.95 46.05 76.50 19.71 20.16 40.53 79.78 33.79 13.66 27.49 45.46 47.30 6.52 30.96 45.01 -3.72 25.29 13.25 91.04 46.84 94.44 20.24 19.00 64.55 59.29 51.69 76.60 27.66 26.96 15.98 39.00 44.52 12.40 27.09 34.32 2.71 76.13 44.66 0.10 0.33 3.46 13.66 44.40 75.93 32.09 73.08 55.04 95.96 14.46 89.27 50.05 9.66 91.03 71.15 47.11 19.94 42.09 18.85 74.97 77.75 50.01 2.34 67.86 80.73 54.30 12.40 56.59 20.11 34.64 17.71 41.33 47.08 47.96 3.29 93.09 10.60 48.55 48.34 38.76 54.45 18.84 1.81 88.09 56.50 83.71 28.38 46.76 52.23 56.26 85.20 87.83 9.25 37.15 37.14 15.92 54.57 78.99 26.10 74.82 28.05 8.03 37.44 19.99 38.10 69.78 25.78 90.78 55.19 98.18 60.29 60.12 78.04 6.50 86.14 97.85 -12.59 0.99 51.25 85.52 4.70 34.02 22.02 6.92 73.92 76.61 46.05 33.63 55.75 95.09 55.47 44.75 42.22 22.28 47.13 26.83 6.82 46.14 38.04 13.03 83.20 46.04 38.48 3.19 18.28 46.77 75.61 32.40 92.37 38.73 4.01 61.68 60.16 93.11 64.77 79.47 65.59 11.23 56.16 19.53 57.69 2.94 91.29 7.10 61.36 55.92 46.48 72.99 72.73 52.84 14.24 21.99 66.65 98.62 86.17 5.37 38.39 10.97 33.32 55.74 60.77 69.42 24.31 98.48 73.50 70.19 44.14 99.59 96.85 49.35 94.89 76.91 7.58 4.48 99.39 65.88 36.31 6.03 33.56 38.46 91.54 50.42 17.07 2.61 54.66 22.88 15.21 96.87 23.97 93.42 94.42 76.12 44.30 90.87 33.35 48.44 -1.47 82.32 40.92 29.03 72.30 5.35 94.01 96.90 40.67 61.96 91.16 3.64 84.24 23.56 75.30 27.96 66.68 38.58 65.89 81.29 2.30 86.37 9.65 34.91 61.98 45.43 61.79 26.31 66.54 95.71 98.27 95.95 71.98 70.32 68.13 68.45 39.27 61.33 66.55 25.25 27.25 19.90 42.35 9.93 92.38 56.90 59.28 12.34 78.30 79.34 38.79 79.03 17.00 43.16 41.01 40.40 63.87 61.67 59.86 67.28 91.66 74.83 46.10 32.91 81.58 22.22 27.69 44.39 26.92 48.92 88.07 6.02 1.94 44.20 59.69 92.86 89.87 90.04 74.12 49.60 6.93 16.67 64.26 45.28 93.52 31.89 86.09 9.10 28.85 23.17 19.07 12.59 61.80 55.30 74.73 86.85 91.62 30.38 73.22 92.54 -57.81 46.45 38.25 51.94 5.53 69.60 69.05 49.63 29.09 7.56 97.50 99.34 91.65 49.81 95.77 57.99 87.72 73.52 63.76 62.65 90.91 1.56 73.69 98.47 23.67 55.17 31.19 41.55 56.21 9.22 63.09 56.66 13.97 80.36 88.73 52.45 45.93 38.51 2.29 89.11 35.96 51.09 98.33 62.97 71.48 82.42 19.96 66.33 5.44 62.10 33.56 65.12 11.21 2.39 53.64 17.81 95.90 5.97 75.38 23.11 19.10 15.95 75.40 88.77 31.16 93.19 19.58 31.53 57.52 72.34 92.72 36.18 19.88 87.08 92.92 74.53 7.05 29.04 39.06 46.98 38.77 17.30 35.91 37.38 75.41 69.04 90.91 50.90 89.05 47.29 39.78 32.60 71.87 41.88 10.73 1.12 89.23 27.72 82.47 76.01 -10.16 78.68 1.18 58.21 93.67 64.05 80.30 5.78 11.23 14.13 63.40 88.45 31.37 92.12 79.67 54.02 68.89 82.42 66.48 91.59 18.22 7.06 42.94 5.66 73.17 95.95 95.70 62.95 95.29 72.78 15.25 20.32 18.33 63.27 86.35 66.36 84.49 88.87 18.21 15.29 89.02 23.08 11.48 52.18 3.63 19.21 18.56 43.35 37.86 50.20 69.27 54.72 96.31 27.10 76.86 20.29 60.75 66.46 38.90 52.43 37.28 31.54 15.59 20.30 78.06 43.91 8.77 44.20 18.30 13.05 25.25 48.14 83.04 66.95 64.18 1.80 49.08 95.69 10.30 91.24 95.18 55.57 26.87 87.91 49.83 56.64 59.79 66.14 50.70 41.07 35.53 52.66 97.19 80.25 21.69 82.27 81.38 21.14 8.72 33.94 -92.46 82.33 6.88 74.94 26.86 2.36 47.66 41.25 38.46 68.28 66.43 45.56 65.66 30.45 42.52 51.59 93.47 43.54 96.87 69.71 59.68 76.05 3.32 37.81 44.07 81.93 80.06 9.51 22.89 44.79 44.48 11.22 13.51 31.66 4.44 73.16 34.63 17.56 16.08 1.12 35.83 92.05 43.23 53.49 21.08 25.14 85.52 96.88 7.94 87.32 19.68 23.85 51.65 26.34 47.50 49.84 9.52 81.21 62.63 28.58 85.54 72.22 88.12 45.42 39.96 97.85 24.89 39.91 19.01 64.79 73.01 71.19 58.95 23.71 78.48 42.66 94.26 8.47 0.55 99.63 62.43 1.37 20.69 91.21 92.30 58.26 86.21 57.75 38.06 59.56 99.15 58.89 54.83 62.35 74.74 20.92 98.97 63.96 28.48 32.59 -50.54 71.71 11.17 49.96 14.17 1.45 52.07 18.25 0.35 50.45 30.33 4.40 10.88 18.17 22.98 73.75 76.30 6.67 5.11 35.14 9.71 56.31 23.51 15.87 66.27 16.63 43.40 17.43 71.30 24.22 12.30 23.19 26.85 45.72 81.38 71.45 95.72 3.66 61.37 49.58 49.05 71.00 2.53 68.61 98.94 56.32 87.90 58.88 38.24 85.47 15.62 64.20 50.97 94.84 95.42 71.66 41.51 23.20 10.77 95.94 83.32 11.75 86.67 31.71 17.10 95.47 62.69 97.11 52.56 78.11 56.42 7.55 28.08 21.43 63.35 71.88 84.10 95.92 65.08 71.04 43.44 18.06 84.63 84.59 66.59 8.32 48.71 46.46 18.21 62.51 15.26 93.89 52.11 76.66 74.86 1.57 56.86 51.14 6.07 25.73 -36.39 37.86 97.63 82.47 88.81 22.82 73.29 83.51 56.63 64.46 52.03 5.03 45.90 97.96 57.25 89.85 5.16 83.56 85.18 36.96 72.93 76.04 0.00 79.47 73.00 84.08 69.79 67.81 24.20 58.22 30.66 33.49 35.48 68.01 22.93 65.74 68.87 8.78 27.09 12.32 82.11 36.05 95.30 17.15 46.27 41.06 22.70 7.17 85.49 75.45 94.56 60.19 62.52 89.18 26.53 38.22 80.34 52.86 77.45 99.12 44.56 26.61 56.22 78.49 61.27 32.15 58.12 2.11 20.69 76.19 98.60 4.89 77.00 31.00 82.38 67.22 49.76 50.40 95.12 17.37 23.47 45.13 91.44 86.20 10.56 84.21 80.48 69.84 39.27 96.36 55.69 59.94 1.73 0.57 63.23 31.20 46.40 16.11 96.59 70.13 -31.14 11.03 42.59 60.11 95.84 98.18 63.45 17.69 71.29 38.58 78.84 65.41 47.37 62.99 24.44 2.46 45.15 82.84 29.37 76.45 19.86 63.63 30.38 62.44 0.62 92.08 70.52 83.18 75.42 11.11 91.19 51.61 88.46 8.53 54.73 66.06 33.28 38.45 52.63 18.27 2.99 16.94 91.47 95.20 14.39 67.07 10.57 3.66 7.90 88.35 85.05 23.61 71.72 77.08 7.01 56.74 64.81 40.33 53.63 65.10 25.89 88.98 0.93 71.26 72.17 97.72 23.29 25.71 54.92 40.78 13.33 55.04 44.25 28.58 73.74 5.58 75.98 20.68 75.68 48.04 1.86 58.32 77.95 38.58 96.51 61.40 1.35 97.93 50.09 17.96 74.19 47.88 25.91 57.20 89.23 59.91 16.89 32.73 55.46 72.90 -90.85 84.78 88.58 53.84 86.23 19.31 41.34 5.18 14.71 60.47 99.91 95.08 97.71 96.67 1.86 65.01 97.02 31.79 68.88 80.86 33.62 32.49 4.06 1.67 59.28 21.64 74.78 54.79 73.12 1.95 81.75 41.38 75.77 55.63 64.53 6.95 71.58 90.76 66.89 44.42 78.03 84.23 36.38 41.02 49.15 88.36 57.10 70.20 98.96 9.94 34.16 89.16 50.44 16.31 11.69 29.21 90.77 1.35 95.94 1.69 69.43 94.06 65.44 9.41 18.41 93.01 91.44 61.89 84.78 38.25 66.00 43.67 18.39 1.73 24.95 77.15 68.31 40.67 75.29 3.13 88.88 73.03 9.19 45.22 67.77 43.26 14.32 22.81 85.23 0.94 7.38 74.56 90.60 35.81 33.62 81.84 42.17 68.10 33.56 46.17 -97.20 40.87 2.53 9.20 83.49 4.37 29.93 19.69 84.73 97.68 74.63 13.77 2.71 83.01 57.40 26.64 88.91 53.37 11.48 79.31 66.41 70.16 24.08 43.20 64.07 20.37 59.95 61.73 60.95 50.72 97.15 7.07 98.56 33.24 82.97 83.94 48.84 67.04 20.30 37.00 99.03 11.59 87.46 0.80 59.59 21.58 43.42 38.73 48.21 64.26 56.21 10.33 84.01 43.41 60.40 98.37 17.56 78.80 52.21 48.79 61.27 69.76 58.37 47.15 81.90 83.91 84.37 81.45 69.60 44.06 70.27 63.49 83.80 64.99 73.33 16.65 7.91 74.50 99.14 79.31 39.66 68.20 83.00 12.20 58.07 21.53 80.96 82.20 82.65 23.91 39.53 70.23 12.30 71.23 10.84 51.62 43.75 64.91 6.77 28.93 -79.68 74.87 91.87 16.59 20.24 19.83 14.11 80.09 9.45 70.62 91.23 31.36 38.19 57.06 6.69 17.32 7.82 91.92 12.46 19.22 47.33 67.65 65.24 73.60 29.73 88.68 58.51 17.42 1.15 85.71 9.57 27.93 39.09 58.87 75.46 85.75 67.60 53.44 9.28 22.40 35.49 78.11 27.63 54.96 3.39 63.22 52.32 44.20 68.76 64.92 53.16 81.00 65.04 46.11 98.90 22.85 32.12 34.67 34.90 2.13 35.94 86.81 53.64 67.50 80.54 70.05 30.96 26.36 46.11 2.32 4.15 14.27 10.90 60.60 99.65 53.79 83.99 82.74 94.03 20.75 2.47 25.04 92.94 35.29 16.04 18.40 8.30 92.37 55.05 77.82 0.91 87.52 43.27 52.00 35.86 27.00 39.10 57.35 72.66 39.39 -73.87 93.73 93.89 86.94 97.53 36.26 77.71 20.39 82.62 40.20 91.53 96.72 91.79 2.17 21.41 47.01 67.02 11.20 29.16 16.12 33.42 60.98 63.44 77.84 73.01 5.40 6.19 25.33 27.19 42.15 61.49 65.07 30.56 84.76 89.17 68.03 45.96 33.11 40.13 17.90 2.85 31.79 3.96 4.46 92.69 5.65 58.96 37.66 72.94 52.90 51.16 44.38 93.43 4.62 25.99 75.52 84.28 35.19 79.39 37.91 99.56 19.70 11.68 50.35 20.68 85.65 89.87 27.27 84.59 57.54 92.67 80.99 44.90 15.90 36.64 62.69 28.47 31.05 45.70 98.37 22.99 93.95 6.53 28.50 14.62 28.79 95.68 1.49 64.45 71.60 72.97 74.06 99.42 55.23 60.14 70.22 35.55 31.48 28.02 24.46 -23.86 79.06 90.18 16.32 84.13 40.16 41.56 1.31 92.71 67.22 73.88 1.36 64.98 53.35 40.93 44.33 4.34 73.23 8.16 1.08 14.83 82.84 18.53 62.66 55.72 91.59 9.53 79.27 79.19 61.47 60.77 79.08 88.03 4.56 65.78 76.46 20.98 94.90 95.64 5.80 71.98 31.46 22.75 57.22 22.75 14.29 11.57 67.12 0.01 19.91 53.27 80.63 17.81 28.00 48.95 67.24 3.00 99.98 40.32 94.84 4.75 31.52 72.08 4.71 2.95 66.91 69.32 72.07 52.50 47.83 58.56 65.78 5.08 41.57 92.08 20.16 70.29 5.02 97.28 75.97 29.15 37.42 69.75 4.04 23.12 82.48 0.39 40.95 14.42 36.32 14.49 10.69 39.73 24.15 77.58 21.60 18.42 24.12 39.54 81.95 -0.48 96.94 46.33 11.74 45.51 58.42 18.47 87.31 43.48 49.66 43.84 30.15 59.18 65.89 19.35 21.13 79.16 53.66 17.81 94.75 72.51 52.60 52.71 75.92 76.09 74.63 37.69 84.31 1.50 39.71 78.96 53.96 30.91 58.95 13.04 87.11 98.15 83.47 81.33 20.29 90.68 85.62 16.00 9.58 14.03 7.47 77.05 0.59 44.28 71.51 31.23 54.25 88.69 76.54 91.37 12.51 35.32 21.08 99.80 43.35 81.29 38.21 72.95 7.33 12.36 0.61 11.64 1.27 52.47 86.00 49.72 35.50 35.38 10.54 99.08 84.63 79.92 50.47 24.23 58.23 87.27 75.45 0.41 56.35 41.27 45.09 75.91 90.67 32.21 95.80 80.90 63.02 89.02 31.37 5.36 54.33 91.94 62.03 2.99 12.04 -22.86 38.07 58.51 41.41 94.20 42.34 64.98 74.96 72.46 19.62 57.70 0.40 76.30 93.60 36.52 33.85 85.74 4.67 22.64 78.64 71.73 14.61 87.47 23.66 62.78 8.36 76.76 49.10 19.35 21.69 16.32 10.59 0.61 27.49 40.34 49.66 74.05 3.29 34.75 91.16 34.29 18.02 37.46 37.39 1.04 34.59 63.63 43.17 54.32 96.47 21.60 8.01 63.40 52.10 81.45 43.16 67.30 21.73 80.25 43.20 47.69 40.11 51.43 23.10 95.50 1.01 66.43 49.60 30.98 32.93 24.98 8.68 23.64 93.57 61.93 73.92 7.64 50.85 58.57 74.52 2.21 93.22 8.53 79.69 56.34 38.64 52.40 74.74 67.90 65.25 38.22 6.41 92.96 57.49 52.95 36.92 68.20 50.67 81.06 4.08 -72.54 17.71 89.14 88.18 74.97 43.46 81.50 73.98 95.31 86.37 15.13 83.23 46.16 1.00 77.24 91.46 90.35 56.67 31.52 19.79 8.30 16.77 48.15 90.44 49.87 11.39 73.03 64.63 39.38 74.38 62.84 59.92 23.60 88.97 2.05 85.89 1.70 55.34 60.25 17.67 98.61 71.92 46.72 98.86 79.10 54.94 99.71 81.16 19.21 10.49 76.64 48.96 35.11 20.22 14.59 42.53 26.53 38.66 13.23 41.99 74.68 78.11 70.31 15.29 40.42 33.00 12.97 5.82 16.89 67.59 48.76 49.63 40.29 72.18 44.75 76.99 46.34 94.50 0.22 4.21 64.06 48.25 88.26 42.88 71.83 99.70 74.66 73.90 1.81 1.72 4.03 38.73 73.54 99.20 44.36 19.36 89.02 74.98 48.91 63.42 -38.55 90.58 76.99 62.18 79.64 44.02 13.67 1.02 14.63 18.44 46.54 27.47 96.08 76.87 99.07 94.66 45.10 63.39 95.31 83.78 21.85 6.99 3.40 30.12 70.22 67.79 30.44 93.24 97.17 20.59 45.11 80.21 59.60 64.16 76.40 79.06 37.01 21.18 38.95 42.82 23.26 59.00 20.25 73.54 36.09 94.62 92.92 65.79 8.29 97.32 25.63 98.55 95.04 20.75 8.61 9.36 23.81 47.57 19.39 93.70 45.03 13.63 62.56 27.63 56.77 93.70 10.87 18.15 36.43 5.98 96.42 57.27 81.72 59.25 14.01 15.26 78.60 80.53 26.30 68.74 57.51 87.39 18.25 55.91 22.83 13.92 45.89 30.26 15.23 54.43 9.38 3.50 85.66 2.63 9.88 57.61 78.65 8.44 52.82 64.30 -19.28 77.98 48.55 4.44 43.76 97.35 82.60 75.66 89.66 99.46 91.82 26.26 6.27 32.78 37.79 17.18 74.26 45.35 50.94 58.88 78.50 8.04 15.01 15.04 59.05 61.91 11.89 79.90 41.84 47.61 47.01 10.70 67.65 18.99 7.09 23.31 43.44 21.40 68.57 87.63 79.01 26.17 70.52 33.56 48.65 1.21 57.49 92.61 79.41 54.17 33.25 35.61 6.23 85.84 78.45 50.32 6.15 84.03 46.35 4.00 66.34 17.44 83.22 87.37 57.37 41.42 6.61 42.05 63.43 17.99 21.38 15.21 44.67 77.58 34.52 72.89 58.86 67.30 60.69 48.69 19.25 78.19 53.68 25.48 15.97 44.85 45.68 98.95 57.52 93.90 46.25 0.72 38.85 31.05 88.66 37.93 34.71 83.95 75.00 50.64 -37.27 96.72 21.16 7.55 8.49 24.95 14.06 98.66 64.63 0.70 85.03 39.49 55.68 8.12 86.61 49.29 76.63 60.14 3.15 24.13 3.75 64.85 21.50 5.20 96.73 52.18 49.46 37.47 61.05 73.33 66.33 84.69 34.52 84.68 30.92 94.58 21.35 16.32 84.90 26.50 59.58 18.46 52.96 19.14 72.24 84.89 71.06 35.75 17.20 38.83 18.45 0.30 63.95 49.81 79.42 35.32 20.35 4.39 10.54 91.22 18.47 71.29 74.23 20.62 26.79 64.28 44.22 55.69 46.42 46.18 50.17 59.11 12.62 39.44 78.96 60.99 77.91 0.10 33.41 29.44 23.39 62.11 82.78 61.62 55.13 91.51 98.09 23.46 67.74 29.22 12.48 49.09 42.99 42.62 34.73 41.47 91.45 56.24 1.28 65.95 -78.41 50.95 38.68 73.56 43.33 44.25 61.91 43.01 69.50 73.32 30.79 95.65 13.78 12.60 79.34 56.04 94.71 78.82 91.41 96.20 72.70 38.54 53.63 40.81 5.32 55.02 63.17 86.42 9.70 29.00 22.11 30.53 73.51 10.01 80.78 56.50 46.83 81.83 45.81 26.82 63.45 52.80 71.87 96.73 95.05 38.15 60.16 42.62 33.02 24.04 9.44 71.01 99.56 19.51 18.70 9.24 63.61 88.36 80.38 49.61 7.95 72.44 33.94 61.74 72.75 83.74 13.75 60.06 4.06 76.09 20.43 35.74 16.94 91.82 28.04 87.75 59.53 62.53 9.03 80.70 18.78 23.94 11.96 38.12 37.06 0.61 51.95 73.33 10.18 32.08 39.31 90.42 35.60 6.87 53.02 65.05 35.13 2.60 53.16 60.08 -71.14 15.36 95.37 60.38 9.40 91.30 73.89 15.45 86.91 17.84 33.91 88.78 28.36 57.52 3.32 52.44 9.45 11.02 47.14 48.48 85.97 26.54 20.75 17.99 0.57 66.70 78.71 89.66 14.52 44.85 16.00 22.50 35.65 50.43 5.16 16.91 13.67 5.44 75.38 78.53 53.71 58.04 48.93 25.86 28.91 69.17 88.82 37.38 13.72 91.44 2.65 28.18 52.66 89.53 18.72 4.60 96.20 22.84 65.90 38.46 35.35 71.93 86.64 41.79 72.80 24.11 34.49 63.62 84.18 97.99 93.46 61.02 83.44 72.08 41.32 96.26 73.42 29.63 40.57 78.41 3.91 55.50 39.75 21.49 70.06 9.04 38.29 31.76 2.99 16.01 90.17 23.21 24.89 52.66 0.22 50.59 28.60 32.98 89.52 68.04 -31.67 18.88 22.07 70.31 37.58 78.51 79.28 25.13 26.17 15.67 65.56 61.36 54.23 39.29 1.97 80.17 35.86 54.68 69.91 68.81 94.55 44.46 91.42 66.52 19.62 59.22 86.15 83.42 89.34 63.45 41.16 92.87 17.70 46.09 7.93 8.05 9.24 70.91 95.41 71.32 28.74 78.81 56.62 31.82 95.82 11.40 29.65 96.41 34.23 23.32 32.98 11.50 93.72 52.02 51.71 37.37 73.20 84.81 33.58 37.63 50.20 0.37 86.67 3.33 66.19 28.43 96.56 0.00 99.35 93.73 76.65 97.55 39.07 9.59 65.07 2.11 58.21 46.55 28.91 12.59 31.38 10.04 2.58 62.44 13.67 81.69 91.39 0.65 34.72 10.70 41.57 64.79 81.97 13.04 48.60 93.86 35.55 15.88 77.03 8.69 -98.51 95.76 2.75 41.99 3.95 6.53 92.46 90.95 3.09 29.74 10.68 70.97 8.05 69.01 93.99 2.46 63.46 22.64 66.21 3.31 42.56 48.28 53.71 58.99 13.50 7.15 9.21 66.76 13.49 97.76 43.39 65.20 71.85 92.09 11.34 74.39 48.75 53.73 1.11 37.53 68.42 2.85 97.69 46.46 32.62 13.36 52.40 20.79 34.79 71.33 87.20 68.59 44.52 15.34 65.19 19.59 43.60 67.28 92.04 42.29 13.93 90.74 90.09 93.73 23.50 8.13 27.12 39.66 45.80 5.40 54.39 54.95 67.36 9.24 86.65 78.86 30.78 72.89 86.67 66.75 87.55 10.30 3.09 94.51 70.78 7.91 11.89 43.37 39.31 56.16 13.36 73.87 88.89 76.66 18.70 14.35 48.19 15.01 74.43 2.97 -64.82 67.02 0.38 86.76 59.71 31.95 32.64 45.56 66.57 96.99 24.89 54.24 81.98 75.85 15.70 53.03 7.49 92.36 98.35 85.14 0.22 6.41 24.72 11.35 7.47 53.08 82.59 68.31 43.01 10.02 73.80 94.16 45.59 96.67 66.46 52.89 54.92 61.89 70.24 8.69 43.96 67.17 0.01 82.89 69.26 15.96 40.68 77.06 49.44 47.33 93.98 70.96 1.48 85.24 75.52 94.63 83.25 1.94 88.27 90.22 67.47 13.41 97.64 60.09 99.20 47.73 22.14 84.98 92.76 17.84 19.78 80.30 75.35 88.26 71.42 65.30 42.66 90.03 30.68 6.13 14.80 12.45 61.38 99.34 45.75 91.71 23.98 26.47 46.54 55.86 88.73 32.65 28.65 55.16 89.49 78.01 23.97 52.73 73.07 95.04 -5.64 28.53 42.44 92.78 16.44 95.34 43.02 13.83 83.72 19.44 59.92 34.22 30.67 32.70 99.34 30.86 97.71 44.49 86.26 5.38 85.09 29.62 21.74 36.10 35.01 0.76 72.58 99.24 3.83 94.17 54.17 12.31 84.03 36.74 54.89 35.52 10.07 81.66 34.43 61.74 35.58 60.35 88.17 90.88 74.28 13.31 28.45 86.92 61.07 52.00 69.94 99.33 59.17 36.08 90.69 62.61 94.96 61.26 19.47 58.41 4.83 67.16 90.21 44.67 9.81 79.51 38.87 19.58 72.89 41.46 74.38 59.59 5.66 37.92 89.30 31.63 99.64 7.98 72.83 80.35 58.40 3.21 92.58 40.36 52.28 56.12 77.17 53.30 80.07 30.68 86.47 68.59 76.44 6.10 55.98 70.73 61.54 55.98 49.19 75.41 -96.64 84.84 60.11 95.67 28.16 32.02 27.96 57.32 20.30 73.35 98.96 18.05 90.62 44.62 57.47 91.17 78.65 30.05 92.93 8.82 59.56 67.60 75.70 69.29 83.71 99.78 4.23 42.22 61.37 67.00 56.21 5.69 98.88 40.39 13.79 63.35 27.84 38.87 26.52 4.80 84.52 18.33 90.78 47.61 5.90 48.02 56.43 47.24 63.54 48.57 7.41 78.51 96.02 55.05 21.60 0.63 68.71 81.47 70.04 18.70 45.29 75.49 14.36 40.07 78.69 18.39 21.20 19.47 15.69 73.04 57.38 99.44 29.46 79.02 86.39 48.77 72.65 28.04 42.65 42.21 53.97 59.63 20.69 55.63 32.05 31.54 7.84 85.96 20.83 36.53 28.65 85.49 43.90 59.15 78.58 15.18 91.44 27.25 91.76 21.24 -59.70 88.48 99.11 81.68 92.90 93.32 44.05 98.62 71.85 46.22 59.79 14.35 24.91 25.98 78.28 64.03 30.92 60.60 24.22 37.80 21.60 18.33 18.52 94.14 6.36 84.52 83.22 36.56 98.67 87.45 92.57 46.21 51.68 44.91 35.65 33.89 65.65 78.23 50.88 47.43 58.83 2.25 32.28 60.42 32.72 13.85 30.26 0.22 78.96 69.60 81.66 8.40 25.21 17.47 64.56 29.35 97.23 87.59 1.77 5.80 12.97 68.37 12.39 40.83 75.93 93.01 79.31 79.82 60.54 57.91 56.82 6.93 53.36 69.00 73.75 9.09 1.80 10.21 73.39 33.12 19.85 34.46 18.12 11.68 26.50 14.16 12.83 94.63 86.76 82.37 69.54 73.66 14.76 92.45 57.33 86.23 46.50 53.45 48.73 91.90 -60.57 39.97 27.91 95.23 19.06 84.97 40.37 57.40 82.10 18.74 29.98 39.14 84.28 9.59 5.92 43.26 86.13 75.88 52.85 34.58 83.02 0.91 92.33 47.04 61.48 27.74 96.52 89.65 68.21 76.60 34.66 14.90 98.62 37.50 80.46 16.17 35.92 97.10 43.60 66.42 3.81 20.15 38.49 32.90 46.56 36.11 98.92 43.28 88.32 81.99 71.05 55.05 32.95 84.63 96.27 67.74 98.96 36.06 47.27 43.65 83.33 3.43 46.66 64.31 89.33 81.24 21.72 70.40 51.36 43.43 47.41 15.90 23.22 11.20 56.46 10.74 22.10 40.12 96.34 24.60 1.85 86.17 30.02 56.67 22.53 48.24 21.31 18.00 73.67 7.51 51.11 70.58 37.38 60.53 29.44 54.04 44.25 45.84 22.90 75.66 -1.14 94.28 19.95 97.64 10.35 28.75 60.16 33.16 76.20 73.38 69.27 68.96 43.66 73.97 73.36 23.71 29.09 22.48 74.03 99.94 42.24 60.41 78.48 57.74 81.74 62.94 56.08 21.80 35.32 46.89 72.60 14.46 55.18 90.06 48.89 21.23 95.62 4.39 58.29 20.43 90.92 86.17 2.00 35.74 56.02 31.55 19.90 21.09 71.51 79.65 66.98 62.73 22.76 53.62 3.72 33.39 87.08 33.45 16.62 42.44 97.09 38.42 56.30 87.18 40.82 3.40 89.02 79.25 11.74 18.85 56.79 76.48 56.99 6.75 21.42 40.82 99.24 97.05 66.99 57.61 87.31 56.11 65.34 69.85 12.39 33.19 83.15 51.81 65.08 49.02 91.33 97.66 48.32 17.30 65.01 15.74 70.72 71.42 1.96 4.82 -77.08 67.68 96.82 72.54 35.75 52.91 68.13 54.43 90.86 86.00 40.66 24.89 53.47 93.19 26.65 99.81 19.62 89.59 45.15 51.02 90.26 7.81 24.85 13.57 87.41 89.47 27.23 77.61 8.27 82.86 21.51 63.22 7.64 41.88 58.59 20.37 8.56 64.03 48.45 5.21 59.04 41.39 24.73 93.51 18.49 41.51 81.06 43.29 23.00 76.68 53.64 72.80 94.99 80.90 53.86 22.38 8.22 69.66 41.44 68.76 83.52 46.72 94.67 24.47 38.71 59.10 73.40 81.36 23.76 11.21 53.52 11.33 44.63 4.10 71.78 75.43 16.25 60.69 37.14 28.86 36.79 40.55 37.00 37.02 54.59 42.46 53.02 11.85 79.38 50.41 45.52 71.72 4.69 42.42 25.67 81.74 67.08 71.85 67.19 53.53 -28.59 40.15 30.87 3.83 10.52 76.33 24.62 52.30 6.43 99.51 25.14 4.97 50.55 77.81 24.75 53.55 31.38 28.83 99.43 63.94 99.41 14.73 60.06 23.48 93.46 50.87 68.82 46.86 38.68 84.09 80.68 0.99 20.11 80.91 99.61 56.30 67.22 49.02 62.95 90.58 5.00 47.55 48.75 73.14 78.87 3.74 1.57 91.77 27.34 94.99 76.13 2.78 93.92 42.69 52.51 5.48 97.24 15.91 13.40 51.31 76.72 96.09 14.14 34.96 91.92 67.72 97.66 49.16 63.75 97.64 18.50 36.53 49.75 29.02 84.71 94.80 8.28 94.28 38.54 44.70 51.36 19.20 13.85 94.03 51.22 99.49 33.85 79.01 12.73 58.53 62.15 59.90 96.28 60.55 19.47 70.07 98.39 91.72 8.45 61.25 -25.75 43.41 57.96 13.37 92.11 36.00 15.75 97.22 4.59 93.55 50.20 2.70 27.09 48.93 72.18 96.80 28.61 23.38 45.23 51.00 18.28 60.08 87.17 29.56 21.23 23.67 62.23 34.40 62.45 78.67 72.26 38.29 31.51 29.39 17.15 83.25 60.59 18.55 70.88 51.64 39.85 80.90 37.88 64.44 84.46 36.64 51.48 48.63 33.26 62.75 60.48 73.49 35.51 2.29 59.21 38.02 29.13 29.68 60.99 25.93 22.91 86.84 5.11 70.27 48.19 25.98 71.13 23.77 37.22 34.77 90.60 71.82 84.76 45.54 45.77 22.78 9.18 16.95 0.90 93.99 83.07 12.68 0.49 78.39 27.29 76.75 81.12 62.91 94.98 40.24 6.04 91.78 49.42 89.29 88.66 69.25 39.24 74.42 59.80 78.60 -37.98 90.31 75.50 64.17 31.61 25.04 52.04 67.97 40.86 45.96 31.43 48.58 84.76 70.19 12.15 23.51 51.97 81.80 67.51 2.84 26.05 24.69 12.34 83.08 51.48 34.74 52.09 44.68 31.18 49.56 33.40 82.92 81.11 1.40 90.88 96.75 91.02 58.49 36.73 42.86 72.86 53.34 74.68 21.65 26.66 35.93 98.11 23.66 8.69 61.24 71.70 54.93 16.31 98.55 13.15 51.47 0.71 62.78 9.99 83.81 73.16 95.04 2.11 64.27 18.49 95.33 39.62 68.08 36.14 17.49 98.00 41.41 44.33 29.39 19.23 60.07 11.74 63.66 11.72 21.48 58.57 67.90 64.97 70.43 11.89 48.46 59.00 33.81 92.52 48.50 32.13 25.49 24.34 53.47 78.55 47.27 25.08 63.23 97.33 37.24 -47.48 25.67 51.16 60.62 67.09 85.81 55.12 54.71 70.73 85.91 10.59 67.83 53.89 77.04 22.84 29.97 53.50 91.79 37.65 75.17 69.27 75.26 71.89 88.91 35.73 66.68 5.32 89.65 49.51 18.22 15.79 94.13 43.40 7.63 65.53 47.96 30.56 54.09 6.62 28.91 37.03 84.45 73.94 1.19 77.74 8.35 98.89 4.85 80.14 44.99 35.24 20.12 29.86 57.21 77.12 4.68 40.12 88.88 50.52 63.69 43.07 81.57 25.36 84.66 74.04 2.30 1.89 94.23 11.02 37.44 69.38 49.91 10.40 11.53 60.14 38.68 71.31 34.37 70.86 8.15 78.57 1.97 76.53 79.78 21.05 86.89 17.09 87.10 50.03 86.40 75.63 83.62 46.72 55.31 77.71 66.29 93.83 92.08 88.52 74.09 -62.70 62.87 24.42 71.45 76.40 2.50 50.62 17.98 98.09 51.65 0.00 34.25 36.40 68.47 32.21 61.11 86.21 74.89 54.25 85.92 81.37 72.84 72.99 38.08 75.75 57.15 49.82 10.27 18.22 77.94 37.30 65.54 15.43 19.83 18.54 35.60 69.77 28.20 21.01 65.06 73.44 64.40 37.34 41.14 49.65 36.47 24.90 88.15 11.16 34.33 67.34 42.14 86.19 15.35 57.34 26.16 31.06 33.82 85.18 36.07 77.14 8.92 31.64 66.92 41.90 37.58 98.47 93.02 42.83 46.40 64.60 76.15 31.23 72.15 89.40 47.26 6.28 7.13 38.53 64.19 62.33 22.08 35.95 30.01 6.18 89.95 94.78 25.02 46.35 81.77 46.25 13.77 9.30 13.24 5.73 20.44 62.12 6.77 51.62 83.03 -36.99 35.92 33.87 90.64 47.23 9.91 58.99 37.52 18.49 66.28 66.68 50.51 30.82 65.98 2.91 5.14 53.30 78.23 15.43 88.76 62.05 19.11 10.32 37.64 71.91 11.13 22.97 16.70 24.12 66.58 31.66 14.43 95.05 27.44 25.05 56.97 96.88 61.27 46.00 77.47 68.91 71.43 66.44 12.83 30.90 33.54 2.19 91.90 99.66 26.15 21.37 21.45 98.48 48.34 85.33 39.60 30.31 42.14 16.84 17.23 62.89 96.03 45.44 95.47 38.53 84.65 71.80 96.91 22.99 55.57 94.51 33.68 66.18 6.68 42.76 91.85 35.00 91.05 76.60 66.44 83.89 0.68 93.46 80.77 56.28 70.90 33.74 27.89 59.71 94.32 54.09 51.03 90.25 50.53 93.28 98.02 62.81 46.86 54.11 91.83 -27.72 24.73 9.86 49.36 2.90 86.86 80.26 84.69 48.22 72.25 69.25 33.46 41.13 13.14 37.31 3.58 12.15 19.51 4.03 91.40 79.90 98.39 77.70 42.55 57.41 5.29 98.39 26.67 12.59 35.72 60.58 80.67 85.46 20.45 68.18 94.06 24.19 98.40 98.56 23.17 6.38 42.32 4.02 5.05 11.09 50.60 73.65 71.36 73.78 58.23 45.17 47.33 32.41 33.93 9.64 94.25 26.13 51.80 73.09 63.07 61.87 73.45 18.40 33.00 19.32 79.69 57.74 6.70 3.12 21.11 72.20 11.55 40.74 22.85 26.34 15.25 23.59 22.43 28.08 2.40 78.34 21.86 50.67 23.01 44.14 29.76 96.73 74.46 44.50 14.91 79.80 4.42 36.33 95.40 61.87 89.71 39.47 33.33 95.74 3.78 -78.34 25.55 40.07 88.03 46.56 34.77 55.61 21.88 23.38 54.07 36.60 98.55 47.60 87.62 36.80 8.10 90.51 83.42 19.90 92.09 22.51 85.86 14.67 93.32 97.19 77.90 54.81 80.21 32.52 21.74 75.99 50.49 55.82 68.20 15.35 97.75 52.46 58.97 70.10 21.51 69.06 76.47 37.53 25.09 93.67 31.57 8.20 52.57 88.18 23.71 29.71 57.39 8.95 0.24 62.90 53.83 30.06 46.88 56.76 70.21 50.27 25.76 69.97 94.79 20.09 42.68 66.87 25.75 48.56 50.74 4.73 73.61 99.12 1.60 4.58 95.41 30.69 26.89 31.30 80.66 62.79 33.89 49.46 0.48 98.65 4.25 89.04 8.03 14.83 15.48 64.39 98.07 0.07 25.58 39.98 60.04 46.16 3.95 61.41 98.01 -42.75 56.41 6.83 46.78 90.33 86.97 47.06 4.68 6.57 80.23 93.44 16.50 32.90 97.18 37.28 78.13 82.25 81.34 53.76 46.04 80.95 12.16 97.48 46.04 24.65 78.66 83.19 49.92 67.19 16.45 11.67 5.59 62.53 31.40 61.85 45.34 95.15 81.61 16.76 67.20 16.69 64.27 21.14 20.53 75.76 41.53 18.54 35.95 34.09 1.68 13.54 38.02 62.66 94.72 5.84 38.81 68.05 21.23 7.77 0.11 25.97 42.20 84.38 98.43 63.65 71.56 88.58 74.66 80.86 92.36 81.00 33.72 7.63 39.52 10.02 20.30 78.00 35.28 45.06 37.97 36.46 24.32 95.47 92.24 0.31 34.56 11.57 11.51 98.52 39.82 59.85 95.40 14.70 23.29 52.53 25.84 96.05 0.66 4.39 77.92 -93.78 25.05 30.66 57.41 66.94 9.07 47.24 78.82 88.77 29.64 63.51 56.18 5.87 67.72 32.63 62.78 67.27 24.29 61.83 99.05 87.61 97.60 26.43 56.82 36.14 43.48 83.95 18.95 33.02 83.48 36.09 22.89 44.66 65.30 97.90 18.63 6.12 21.42 66.33 6.56 23.99 40.84 35.27 27.40 20.21 36.27 2.43 21.22 81.18 89.09 89.95 37.84 31.77 28.22 17.34 80.47 44.88 92.20 14.82 86.52 88.68 62.77 44.53 72.41 34.59 53.95 42.98 63.87 20.86 44.10 98.02 47.46 74.65 39.29 61.08 73.41 22.34 46.68 23.12 4.84 32.27 26.82 32.44 34.31 62.35 71.10 38.61 98.40 29.30 88.32 61.50 69.68 52.19 37.06 71.17 76.83 73.68 48.03 44.72 78.02 -16.18 16.72 96.62 35.40 28.23 68.03 22.51 64.72 86.96 55.14 79.35 68.48 17.92 11.67 20.36 8.50 52.76 19.67 80.76 43.71 46.31 56.45 53.15 45.39 1.70 50.63 53.08 94.01 52.17 44.56 45.44 10.72 27.77 54.93 50.61 77.24 63.54 89.75 26.00 9.54 36.23 47.56 63.17 27.15 66.87 85.93 74.35 10.93 96.43 75.30 9.22 14.89 11.59 32.57 52.66 32.45 33.74 63.19 52.29 95.87 2.06 44.24 23.28 85.00 3.32 12.64 35.58 25.14 6.25 59.71 73.50 54.24 60.08 88.07 80.80 65.40 75.38 28.69 54.31 48.66 44.82 18.55 60.81 53.91 20.01 94.64 61.84 19.50 0.83 81.23 2.73 25.16 90.30 86.29 68.31 27.02 28.43 89.64 50.59 15.67 -27.51 53.85 30.41 15.86 29.23 62.64 30.13 49.06 22.21 29.60 8.29 91.37 82.23 4.50 90.46 84.24 13.20 27.03 83.94 84.14 92.51 17.89 40.94 78.45 34.87 14.56 93.49 42.91 68.86 27.47 36.85 96.76 33.74 31.05 72.66 79.96 88.74 97.56 91.61 17.39 90.34 86.20 66.29 41.33 31.24 12.64 21.13 71.61 98.87 7.51 5.40 82.69 66.59 17.02 53.78 52.53 27.03 1.99 81.35 18.06 25.11 14.79 14.38 13.33 89.66 89.41 37.06 54.27 96.82 61.58 98.45 24.95 82.24 31.26 69.44 19.04 48.86 74.98 96.39 36.99 55.66 73.67 37.85 54.79 72.56 62.93 22.06 61.34 56.76 98.31 96.97 80.06 70.09 13.87 43.49 11.87 68.76 50.39 90.86 30.70 -55.02 95.87 90.25 85.95 27.83 4.66 18.46 48.46 73.46 92.51 8.24 23.10 47.61 8.28 23.21 41.04 56.93 81.61 23.80 46.90 70.37 36.24 64.87 63.68 81.22 25.13 5.22 4.40 32.15 40.78 44.71 14.08 19.15 4.64 80.95 5.38 24.12 8.54 62.07 39.42 16.88 41.84 59.97 66.06 0.60 7.58 69.44 42.33 51.08 2.12 36.53 16.97 49.32 88.97 96.95 63.25 96.25 17.23 2.86 46.11 27.19 78.77 39.85 55.89 45.31 55.99 60.61 76.23 14.01 43.77 17.26 1.94 64.43 24.87 37.17 84.26 72.35 98.11 18.00 60.17 4.22 60.85 51.33 69.90 11.39 43.59 26.82 77.57 39.97 2.74 64.50 61.39 39.56 62.32 98.40 59.08 66.31 77.72 45.39 27.35 -76.87 95.77 28.50 3.97 66.46 35.70 70.61 17.65 63.63 34.75 50.22 96.05 34.93 62.37 75.88 89.89 76.95 39.48 83.83 65.63 81.53 83.65 25.02 18.27 37.77 98.68 32.32 51.01 83.79 25.16 97.62 95.49 40.65 4.71 33.19 54.42 82.33 76.93 60.80 73.90 69.63 98.81 94.65 41.13 12.90 52.62 95.36 74.24 79.96 36.55 56.55 94.63 71.46 66.59 15.26 33.07 96.01 64.84 84.33 52.51 54.88 67.22 17.11 71.89 65.43 21.84 33.98 50.43 71.71 6.84 74.50 19.13 36.17 79.17 80.44 95.52 21.68 37.36 82.00 52.64 57.66 33.87 63.54 93.02 16.33 39.05 89.89 6.67 93.58 12.07 64.52 24.63 83.22 18.28 34.81 48.95 87.22 11.10 43.52 77.26 -68.01 45.12 53.49 34.03 94.98 79.31 31.49 63.98 69.01 81.16 55.67 72.57 3.98 3.39 67.47 18.20 14.20 97.41 32.34 24.28 56.05 78.79 65.38 9.57 91.58 89.22 13.28 49.32 31.56 57.89 75.62 37.43 33.44 5.16 96.78 0.04 9.64 64.05 6.72 39.24 79.27 66.28 3.63 64.16 88.68 91.30 61.20 6.74 23.16 9.85 29.59 13.05 83.55 18.19 97.76 7.72 22.24 94.22 25.49 74.53 60.55 66.28 33.90 21.04 49.80 33.56 9.68 71.20 8.83 30.75 34.15 12.85 44.65 26.80 45.34 70.79 86.92 18.43 44.12 74.85 56.67 49.31 29.87 18.11 10.46 39.45 92.75 3.74 29.57 44.76 63.23 79.86 29.31 44.41 34.46 67.39 78.14 73.01 22.61 57.53 -99.29 62.86 15.86 33.07 72.85 58.04 76.48 28.10 73.50 71.50 86.20 24.94 22.42 65.60 75.46 45.37 57.12 59.41 17.55 11.38 74.09 37.74 78.37 47.93 91.32 46.71 55.35 41.09 52.98 34.37 41.36 65.25 39.83 39.56 45.77 78.56 53.47 30.88 43.84 48.52 80.31 97.99 95.21 5.06 98.32 28.44 98.94 77.68 28.12 52.51 24.02 0.52 27.62 79.52 89.66 9.68 35.65 69.99 2.31 50.37 19.88 74.84 8.39 25.85 53.22 86.89 89.11 29.34 90.59 5.09 40.10 15.40 71.70 24.74 71.21 75.17 82.42 97.58 88.18 24.89 97.28 34.52 13.30 10.51 3.75 63.66 13.91 46.35 3.95 45.28 8.12 16.83 85.80 33.90 65.75 94.20 45.45 19.04 32.18 20.88 -76.42 10.01 41.92 7.71 73.69 10.34 31.32 67.59 74.70 21.32 78.65 64.65 45.36 63.17 12.56 49.29 36.40 84.63 11.34 60.76 37.61 98.90 16.44 42.75 6.66 29.15 8.56 92.76 76.66 93.01 39.95 96.68 59.62 98.39 56.28 19.73 67.01 0.17 18.56 82.79 85.35 8.94 77.88 26.14 70.61 56.51 42.13 44.21 11.95 74.99 23.28 83.65 28.97 77.16 5.67 29.34 15.82 42.54 80.19 85.97 41.81 86.47 79.51 91.96 50.01 62.60 84.50 49.64 73.30 72.44 73.71 54.99 66.93 16.12 38.48 30.47 56.15 85.90 74.78 44.06 53.11 55.34 40.18 95.98 32.78 57.28 72.38 25.63 24.46 89.32 19.19 4.53 36.21 67.76 79.57 95.80 35.32 54.09 14.35 29.81 -3.11 26.02 88.69 57.10 33.12 37.01 13.93 65.60 43.82 12.25 61.35 78.38 4.65 56.96 76.19 60.26 23.64 38.48 54.07 51.46 23.37 97.73 31.95 72.53 4.90 42.60 2.28 36.33 93.52 38.59 54.79 55.92 6.48 35.53 16.04 93.37 84.18 28.84 2.54 67.07 75.64 82.00 46.91 23.42 69.77 33.42 49.58 68.41 47.22 67.08 82.89 69.12 43.71 82.73 8.51 60.87 17.30 25.25 56.00 69.60 11.00 66.47 49.24 60.97 84.11 28.36 3.28 85.97 67.34 70.43 21.28 94.37 65.60 10.85 10.61 23.57 74.28 8.71 68.53 15.58 48.60 56.24 90.28 59.44 27.27 67.64 41.94 11.39 46.66 43.03 1.42 10.75 15.89 55.32 0.91 92.62 67.04 83.08 38.57 67.93 -18.07 69.07 74.52 53.17 74.88 27.75 27.78 14.71 68.49 73.89 98.78 56.76 43.85 26.87 0.36 92.40 10.55 26.15 96.31 19.60 60.23 37.57 46.79 93.62 56.06 49.77 77.24 34.33 13.97 88.99 26.81 87.57 54.06 62.10 94.40 63.26 54.45 1.98 14.14 31.08 5.10 23.10 62.02 51.63 74.88 39.72 75.94 60.05 95.54 38.92 73.47 41.49 1.89 70.05 64.06 28.46 41.88 98.85 66.16 4.23 76.90 59.68 84.30 45.28 80.20 86.34 56.53 1.14 39.08 58.27 35.16 54.05 19.15 42.95 40.78 70.79 35.08 80.83 41.04 69.01 9.26 4.95 73.21 8.78 53.67 10.39 37.76 15.96 72.45 52.29 18.94 46.94 25.33 22.31 62.24 50.21 47.33 14.54 20.01 13.56 -54.47 21.66 42.30 18.05 1.69 42.42 21.76 16.99 99.25 9.72 70.65 25.19 19.60 3.35 39.20 19.95 93.25 83.64 26.12 70.49 10.74 18.08 66.32 52.18 80.53 60.02 54.83 30.40 54.89 31.20 53.87 80.88 40.23 16.34 11.15 41.47 5.08 44.66 30.65 32.90 78.70 94.21 53.37 12.64 43.29 69.03 83.70 63.60 23.69 14.95 70.79 55.72 77.85 46.19 23.38 33.99 91.70 46.47 34.08 28.14 88.20 63.68 5.90 16.51 57.37 12.83 72.62 41.17 91.78 55.77 19.95 33.92 53.83 35.27 17.02 83.34 1.66 51.51 67.19 49.61 73.51 16.82 44.06 51.73 69.32 75.87 88.85 85.64 25.89 94.71 74.50 20.18 44.60 39.90 10.01 78.44 54.28 95.80 39.86 35.45 -35.94 62.12 94.63 5.93 62.71 61.81 49.31 17.32 59.03 0.97 77.29 83.21 64.25 9.82 32.05 43.47 78.56 96.72 60.05 16.27 70.77 75.64 11.99 98.14 52.20 80.08 55.48 72.75 44.58 18.09 52.18 68.42 62.71 62.66 9.69 50.50 4.22 32.77 90.42 81.33 39.43 78.41 39.90 1.36 55.52 91.27 72.55 80.58 55.51 25.73 96.14 86.30 6.28 65.79 48.77 1.95 10.86 68.42 58.08 50.77 38.60 16.10 9.35 60.69 19.41 85.20 64.29 11.47 73.04 42.40 59.71 72.46 24.54 87.62 86.05 33.96 76.45 67.60 19.58 15.54 34.14 11.87 41.12 17.17 45.75 27.55 18.57 78.85 90.89 30.60 90.83 60.81 57.59 77.18 72.08 60.65 18.06 22.88 15.79 11.71 -79.37 18.81 62.33 61.92 80.98 22.97 44.85 9.97 98.63 1.00 0.77 37.77 52.17 2.38 74.59 13.82 88.10 78.32 11.46 99.96 10.55 34.69 90.25 3.50 24.15 78.25 89.20 50.52 4.99 84.17 52.20 72.93 8.98 90.32 43.19 55.48 95.52 37.42 76.03 82.47 74.51 99.74 84.26 58.59 2.05 94.83 72.74 52.76 61.27 17.63 3.70 68.90 28.93 31.64 24.43 55.74 57.68 73.14 98.65 88.67 10.14 5.12 96.16 16.67 95.26 58.45 83.50 72.62 20.86 98.64 39.79 78.56 90.46 51.25 39.87 34.26 15.81 47.15 2.15 6.42 37.07 53.22 40.54 9.74 88.10 34.98 57.60 7.19 28.21 14.35 85.76 28.74 53.49 11.52 82.28 66.33 28.60 66.88 77.81 18.01 -56.75 44.75 81.31 20.09 4.00 46.04 63.63 64.54 17.34 55.63 31.80 41.71 80.02 50.48 37.03 63.20 3.48 13.77 22.61 94.31 57.51 87.13 29.13 48.28 36.57 22.58 87.06 5.66 30.08 40.10 29.53 73.70 58.38 86.62 56.98 20.80 57.53 85.38 92.29 6.62 46.32 43.91 40.12 61.93 30.21 30.58 59.70 3.71 26.92 52.59 41.03 18.01 5.66 4.97 17.53 96.41 10.63 66.61 27.65 54.91 15.25 32.39 99.59 42.79 75.30 97.82 0.96 40.67 37.09 64.58 35.19 26.98 86.40 31.53 28.06 68.20 74.24 38.50 91.04 74.64 93.50 91.15 8.18 31.75 26.10 0.60 33.22 52.92 51.31 8.17 40.81 52.39 62.46 74.02 1.43 29.65 48.13 95.75 18.50 5.64 -73.33 83.26 76.43 63.48 16.81 16.81 75.05 48.91 64.19 11.32 34.89 22.40 22.77 39.96 2.75 59.68 19.72 63.41 62.60 6.39 18.98 5.35 61.29 89.31 45.53 3.17 33.80 56.34 44.06 38.12 74.07 87.01 93.99 77.10 58.04 18.65 3.59 27.04 8.83 87.39 6.04 13.78 76.19 98.85 8.13 87.19 78.95 9.93 65.25 85.53 25.15 68.62 35.32 40.46 40.69 66.90 70.49 28.88 67.40 88.02 58.20 19.31 59.24 56.71 58.34 51.71 78.23 27.34 65.45 9.65 46.39 4.10 3.12 19.39 77.11 58.09 82.89 34.70 84.43 17.61 79.90 9.97 23.31 93.63 60.26 54.73 89.35 78.99 60.05 9.70 97.06 76.27 57.04 81.05 47.41 22.38 62.93 74.49 7.79 23.97 -56.17 25.44 75.79 20.50 59.04 35.93 4.03 26.50 34.73 81.67 51.65 50.77 38.87 33.83 54.77 74.22 5.25 15.88 77.33 7.83 34.55 72.39 17.36 36.24 98.94 2.98 13.63 31.68 30.92 22.50 45.45 14.06 6.81 44.87 34.49 57.62 72.82 33.17 39.47 20.97 66.72 81.59 40.22 45.07 70.18 70.31 92.08 4.51 65.19 18.58 46.60 11.02 66.70 19.01 44.51 62.94 92.61 22.43 72.45 17.06 25.41 35.20 26.15 60.64 89.68 15.69 26.73 73.76 54.27 54.35 20.92 69.42 46.10 61.24 41.95 48.92 83.20 15.53 60.33 43.78 85.07 73.37 34.57 37.56 97.48 60.34 80.90 41.87 31.98 28.94 14.06 15.56 97.17 82.74 49.16 10.85 8.16 19.92 13.38 51.78 -93.33 49.39 45.25 7.22 47.61 9.15 71.65 94.26 46.31 21.52 43.52 36.27 66.25 18.99 87.35 5.53 48.39 96.50 18.97 85.62 4.46 40.08 28.89 84.74 7.78 27.08 45.89 3.04 64.87 11.79 44.88 44.93 42.60 77.11 78.54 76.38 68.76 99.24 27.96 6.76 26.13 78.70 22.36 16.77 48.91 77.47 42.73 14.68 75.06 49.72 40.00 15.05 5.85 97.99 4.16 41.19 27.65 10.83 9.23 94.17 15.33 81.16 43.85 47.64 85.39 98.35 79.11 95.35 61.64 83.94 83.31 55.53 14.45 79.83 54.56 37.35 56.43 57.90 77.78 79.34 2.60 41.33 56.69 4.23 31.90 11.05 77.20 29.75 93.31 18.83 94.56 13.83 18.02 92.13 80.15 53.60 51.22 76.70 73.77 98.64 -58.12 17.19 2.61 97.84 29.36 89.07 51.43 77.80 5.73 40.20 3.03 0.87 29.45 48.72 84.50 43.67 45.25 57.24 75.33 39.21 60.35 55.14 34.55 66.27 77.87 5.31 50.79 39.57 62.39 96.38 18.64 4.43 69.55 63.09 90.27 48.19 65.36 83.97 34.75 99.54 47.64 46.29 18.07 71.84 96.82 18.09 49.82 55.95 80.58 9.90 69.92 0.60 32.30 36.56 62.19 13.40 75.97 82.06 85.96 65.09 87.55 91.75 95.82 54.73 86.94 65.83 58.62 82.51 24.81 88.89 7.26 93.64 83.79 23.34 43.72 93.73 75.23 97.08 88.98 92.07 17.38 43.83 46.29 55.28 57.00 7.93 33.91 10.77 30.99 84.57 19.69 75.74 8.12 97.23 36.73 67.13 22.88 15.57 31.44 63.11 -45.71 82.54 67.64 48.75 59.71 40.97 21.10 30.75 70.37 91.72 88.53 87.45 98.86 73.31 47.83 17.36 32.44 46.73 81.49 98.09 47.41 90.93 9.74 49.75 72.45 9.15 69.34 15.97 85.16 5.07 8.14 26.16 18.75 81.90 85.77 81.19 60.26 58.41 60.75 71.77 17.70 10.11 84.14 51.99 98.42 31.10 81.25 68.91 88.75 58.68 61.76 11.21 33.48 56.43 86.04 98.80 71.65 31.91 11.74 11.90 95.37 19.30 87.91 19.43 17.27 27.58 20.52 67.38 64.19 54.40 6.49 8.95 43.77 56.79 50.54 49.49 2.18 26.26 62.50 21.64 63.46 78.76 41.73 52.89 30.96 83.44 94.54 19.37 7.90 86.47 49.08 36.15 13.40 75.27 79.51 6.50 27.55 39.44 40.80 70.38 -81.23 70.75 89.17 15.26 46.87 30.89 58.02 30.39 25.19 84.98 37.00 21.68 9.65 46.55 22.76 1.80 31.96 23.25 69.04 55.98 8.00 68.92 42.50 32.88 75.94 32.67 61.70 9.29 20.56 68.61 73.15 62.76 79.62 72.65 12.89 29.61 84.51 63.16 70.77 96.86 35.75 17.91 72.51 60.52 18.15 34.68 81.52 91.57 38.09 73.85 40.02 31.11 12.78 15.31 64.50 73.33 47.04 86.12 63.60 63.72 4.59 15.01 97.55 74.25 95.38 77.86 10.15 28.85 55.61 94.98 26.03 22.77 86.34 73.73 39.54 68.28 53.64 38.84 2.86 81.73 88.80 88.82 7.25 36.27 91.90 37.43 83.40 59.73 59.08 74.07 65.69 71.35 64.03 23.18 8.52 99.87 30.35 51.17 5.53 67.21 -59.52 70.76 9.23 2.95 16.38 46.80 2.02 22.22 62.77 19.07 66.72 37.44 42.38 38.19 35.46 2.80 19.44 92.09 56.27 73.83 21.91 3.39 11.52 17.73 30.82 88.65 62.23 79.51 84.18 66.22 15.80 44.62 84.43 20.70 64.30 65.46 2.73 42.76 30.47 51.74 23.13 94.34 76.28 78.38 18.34 30.72 99.47 86.14 87.03 9.88 7.68 2.58 60.86 46.47 36.83 24.11 77.74 99.13 7.05 19.65 41.05 11.64 91.35 75.17 92.89 79.50 42.28 16.81 28.80 77.07 63.52 99.72 99.36 96.84 7.94 78.27 88.21 37.12 96.08 66.48 59.54 89.11 84.41 74.80 66.78 23.27 2.83 73.61 63.24 61.91 29.75 54.90 57.31 69.32 41.01 61.50 40.91 5.71 85.52 21.12 -90.12 76.47 80.19 16.65 79.74 24.73 57.60 11.40 18.81 56.68 68.39 72.64 38.95 61.16 41.02 37.41 73.53 51.13 0.00 55.47 22.63 16.47 36.34 77.65 0.96 31.01 40.13 63.59 37.12 31.51 87.84 62.07 80.12 73.92 94.95 2.60 73.54 90.01 0.67 96.55 58.18 80.96 92.55 85.70 62.71 54.88 28.39 67.12 68.67 48.27 12.20 1.32 81.02 54.55 42.93 85.01 20.67 1.56 79.13 10.21 32.05 11.90 17.85 68.14 49.06 44.66 84.60 81.46 67.35 44.62 68.53 97.67 81.75 34.66 43.18 90.12 39.13 23.91 36.26 56.24 80.33 40.82 58.28 95.36 51.13 34.68 34.91 19.48 72.61 81.32 7.80 21.16 9.16 77.53 36.88 18.60 22.16 36.79 8.96 93.28 -58.73 57.02 20.82 4.04 13.09 4.16 70.62 54.33 82.83 71.97 31.71 20.68 61.31 80.45 55.26 8.50 98.37 91.05 83.32 82.03 87.07 93.25 46.13 38.76 47.85 91.79 15.98 21.51 79.68 1.08 11.92 60.90 1.94 38.90 47.72 21.54 32.83 71.66 78.31 40.06 66.96 36.11 71.55 78.04 60.18 25.75 47.12 18.91 67.03 94.71 7.52 60.79 45.16 56.42 35.73 67.08 65.48 39.85 93.09 66.06 32.59 43.52 20.01 71.78 38.25 87.88 30.27 41.95 74.37 80.20 88.87 27.36 1.19 57.20 29.08 71.24 62.34 47.99 3.64 98.80 23.78 50.73 69.47 66.85 4.74 70.34 84.62 64.61 73.08 40.99 76.08 70.14 29.59 20.29 88.46 95.06 95.90 67.11 62.42 85.30 -6.10 67.79 77.97 40.72 13.59 16.33 29.82 51.98 63.39 32.49 4.44 77.47 46.47 94.14 64.77 60.03 97.14 18.33 42.36 9.49 82.80 19.27 85.64 87.96 28.26 7.93 27.09 40.83 99.87 2.38 23.70 88.03 69.31 35.61 24.12 87.09 32.53 72.35 42.06 89.41 89.64 39.58 60.28 33.50 86.84 94.40 41.99 55.82 62.94 90.36 4.07 19.17 60.93 74.80 9.28 88.14 43.46 32.52 33.21 1.79 63.93 41.94 1.75 28.46 43.87 46.16 68.57 98.03 99.35 37.94 96.19 12.50 37.66 89.57 73.23 37.64 20.04 2.80 77.62 53.97 78.44 12.63 70.00 77.52 57.09 63.76 52.57 36.21 79.99 50.88 63.76 8.24 33.50 11.67 1.98 84.01 77.31 23.97 0.55 0.70 -14.50 70.37 27.74 96.14 87.87 62.53 17.57 16.09 60.24 59.31 59.12 73.38 89.19 64.68 62.37 40.61 67.24 6.91 15.27 4.04 90.67 54.51 54.35 93.88 28.91 7.02 27.56 29.79 92.77 2.18 66.35 39.20 42.17 63.99 73.34 21.43 65.79 41.49 26.53 36.66 91.57 10.74 35.32 44.80 48.11 34.90 12.88 69.79 95.07 8.81 77.69 88.30 75.25 72.67 21.71 91.86 69.51 7.99 63.65 87.18 83.00 49.24 66.21 92.45 84.35 29.87 90.58 58.50 65.67 78.83 34.57 92.60 91.16 55.58 21.05 75.00 75.07 78.68 3.24 36.66 60.83 71.16 74.64 89.61 34.92 94.99 8.23 98.24 55.81 84.19 7.88 78.62 91.51 61.66 47.77 99.80 48.80 62.05 89.63 44.16 -35.69 99.03 92.38 25.86 99.74 58.25 3.73 40.63 21.27 8.75 55.54 76.17 16.27 18.34 27.54 64.64 47.98 3.69 93.33 26.10 41.81 65.50 18.16 98.41 4.49 40.66 21.66 76.55 92.40 73.66 75.65 9.71 87.74 44.04 31.41 28.60 96.53 29.27 65.47 97.76 45.19 31.04 27.43 26.06 77.56 19.46 98.00 74.47 84.12 65.01 52.93 64.82 49.71 40.59 29.29 80.52 87.90 97.89 44.77 36.61 98.23 39.51 24.48 57.98 54.41 34.42 73.77 95.81 84.73 70.71 53.83 41.91 88.22 83.06 67.79 64.96 4.37 41.84 99.30 59.68 12.00 15.62 69.51 12.54 91.66 53.14 10.64 61.19 41.26 14.28 38.48 27.08 11.09 42.40 90.73 80.99 65.79 76.14 79.74 95.09 -27.27 6.60 59.68 5.58 20.24 88.71 96.86 44.74 40.04 82.75 64.88 82.24 64.51 58.42 1.70 38.92 24.97 44.57 32.06 5.46 15.65 78.42 32.53 54.29 20.45 90.11 61.37 51.42 53.48 21.35 77.70 39.85 72.50 30.96 4.01 49.34 89.75 60.32 34.28 79.96 54.03 52.39 35.79 56.56 65.51 57.85 58.33 81.31 21.64 4.23 89.92 98.45 79.52 96.43 1.47 79.48 50.95 59.44 2.22 61.31 75.10 49.25 81.13 64.11 0.44 25.20 96.49 6.71 8.71 40.75 76.95 52.43 52.66 27.47 71.49 63.49 57.71 41.74 17.88 2.69 41.74 81.08 73.96 90.13 29.40 29.54 14.20 7.29 61.01 94.55 71.95 41.70 35.72 34.99 64.63 11.67 42.16 88.94 87.86 14.93 -30.73 59.88 11.14 61.24 80.17 35.41 24.18 10.42 74.62 95.86 20.70 56.10 95.72 56.48 44.63 21.81 39.73 49.04 6.11 35.01 59.05 99.44 88.76 3.22 96.35 21.03 46.97 98.95 26.96 47.89 40.52 19.28 38.85 14.11 51.86 79.03 12.39 46.04 45.99 36.99 16.11 77.40 70.68 36.92 63.18 50.96 74.61 50.37 69.74 26.31 17.84 37.50 59.56 75.36 51.99 61.09 6.94 7.85 37.70 7.58 49.32 43.50 24.62 36.14 82.02 91.34 13.03 61.39 43.64 71.56 23.73 82.07 55.10 32.55 54.11 76.45 57.38 77.28 30.78 14.07 40.59 27.79 33.73 36.07 97.17 19.90 50.47 66.47 54.45 66.75 14.31 55.12 73.64 45.65 37.65 96.12 64.41 63.00 83.16 70.46 -45.62 26.89 31.03 67.81 96.68 26.43 46.84 19.53 51.35 25.37 45.51 19.73 70.39 19.93 93.91 38.75 34.63 68.15 55.86 7.38 31.34 93.83 77.72 65.03 71.65 35.19 31.36 31.14 15.87 29.18 2.64 73.35 25.80 15.67 54.30 60.71 43.36 70.64 58.36 24.10 59.12 69.31 65.66 86.53 91.69 38.56 71.89 58.82 96.11 64.24 58.14 80.48 82.92 7.24 19.50 28.52 54.86 50.04 49.62 83.81 29.29 62.16 91.78 55.10 24.68 69.51 75.50 47.98 44.76 44.85 1.51 21.02 6.27 95.06 99.21 66.22 86.96 77.37 94.83 27.96 76.59 14.54 38.67 50.85 3.00 26.51 93.61 39.93 90.97 22.33 34.49 68.44 67.32 91.82 70.52 24.40 67.02 89.88 3.55 90.59 -33.75 13.50 27.58 75.90 36.11 97.65 41.38 45.57 15.66 14.65 14.72 81.09 33.74 36.64 8.98 7.65 9.44 75.92 75.64 78.53 54.65 56.53 50.81 32.12 80.88 85.25 88.88 15.75 96.79 32.42 48.60 68.89 16.13 70.92 20.55 88.14 56.97 89.96 21.21 75.43 79.81 17.29 82.60 52.38 92.96 8.14 99.92 44.73 59.67 44.61 11.33 86.39 17.49 88.40 32.01 2.24 9.29 23.18 77.91 65.55 74.76 70.93 99.28 0.62 1.18 37.46 6.46 20.38 11.33 48.22 2.23 63.24 24.40 56.17 74.36 89.38 86.71 22.04 7.99 0.53 31.27 4.12 2.71 16.23 36.52 91.64 67.42 13.54 63.26 10.94 23.37 65.66 72.05 9.65 80.42 75.47 50.75 61.48 40.86 59.71 -92.44 91.37 38.50 15.81 91.53 67.47 11.08 2.39 76.75 95.64 75.69 24.30 20.81 91.05 88.07 61.92 58.63 85.49 72.16 90.69 5.51 44.53 79.85 94.33 62.64 70.61 72.68 56.21 35.78 49.67 17.21 48.44 28.32 22.15 14.88 66.83 25.49 85.63 79.61 63.43 25.21 34.38 75.81 18.40 52.21 42.90 9.26 32.60 4.94 62.27 7.35 23.65 33.99 93.38 17.58 82.55 30.19 65.71 2.02 78.88 98.82 45.21 4.40 35.69 19.32 39.47 63.92 20.96 90.78 15.17 69.64 50.18 22.23 3.53 70.23 93.11 21.83 63.93 96.95 71.43 43.96 14.40 1.29 4.01 29.68 99.55 26.26 52.26 57.84 23.11 21.99 42.02 14.59 42.61 21.46 67.95 68.31 56.35 4.00 56.99 -43.23 92.13 18.17 96.83 10.88 21.57 69.68 95.57 57.43 53.52 50.47 24.79 82.55 8.53 76.89 98.58 46.37 28.21 59.37 7.98 7.91 97.42 81.12 75.02 85.54 40.06 98.73 78.58 66.16 14.19 3.28 4.45 48.13 42.54 42.28 22.82 25.19 24.30 33.48 56.85 62.08 85.39 92.68 19.09 28.30 26.50 58.94 74.86 90.06 33.07 50.83 40.79 34.67 6.79 46.36 33.48 48.19 91.46 63.37 95.18 58.63 85.45 95.99 7.09 97.24 7.96 62.33 38.34 53.46 39.66 62.95 56.31 33.51 48.34 60.71 67.36 55.52 41.51 29.27 60.44 51.78 91.10 89.49 95.69 2.37 31.56 31.67 3.82 70.59 7.29 53.51 90.82 19.69 50.30 79.40 41.44 74.51 37.49 70.00 19.55 -18.81 27.53 28.22 54.58 83.61 61.76 24.49 80.97 28.38 74.87 39.40 32.85 8.03 58.44 16.05 35.94 39.63 33.83 20.42 31.71 3.99 73.72 25.75 19.83 12.18 28.50 92.61 24.50 62.00 8.35 52.57 44.57 90.11 77.78 22.00 53.80 90.57 96.96 79.80 72.51 48.22 57.27 58.78 49.59 15.01 27.40 92.30 43.37 26.10 55.09 46.42 7.79 10.42 10.16 54.35 71.90 81.92 70.84 21.55 70.29 69.15 41.43 3.55 76.43 75.93 28.52 62.67 61.09 39.44 85.91 94.39 79.36 80.94 74.75 51.28 75.22 16.84 87.46 38.11 23.92 25.22 64.98 29.95 42.30 39.99 22.66 53.95 26.96 21.98 52.85 48.57 67.88 78.76 38.34 83.86 67.83 35.90 26.35 61.57 14.74 -92.03 26.35 98.09 99.18 83.61 6.08 44.20 55.91 65.64 23.92 83.47 92.67 69.85 20.02 78.96 40.46 74.76 56.91 6.99 20.33 33.67 27.07 72.03 23.64 14.08 52.99 29.44 26.46 14.62 73.34 16.39 27.03 88.87 61.57 35.43 31.68 17.93 34.62 13.11 73.66 23.81 63.81 76.63 83.98 22.82 28.41 4.36 86.18 50.44 90.81 61.00 91.20 40.04 87.41 86.22 57.91 20.14 42.89 28.62 47.25 92.22 37.84 69.33 6.19 99.95 85.67 17.81 60.40 47.41 95.97 12.51 23.31 80.29 41.61 68.15 73.58 31.30 6.32 75.92 15.78 77.02 27.03 65.51 86.87 57.24 29.93 16.19 54.47 47.03 73.71 72.56 86.97 78.47 55.12 91.65 32.73 81.56 37.90 91.01 61.86 -94.37 51.90 70.35 84.02 93.94 33.77 15.25 71.69 53.63 29.27 94.30 79.71 43.98 1.33 10.86 0.84 4.46 77.82 92.65 95.11 30.19 14.44 18.61 56.98 94.64 52.08 92.83 17.79 3.18 73.06 32.26 95.38 27.74 22.83 63.78 86.76 42.42 31.13 0.26 6.79 19.74 48.58 97.42 79.54 2.46 91.54 15.16 21.37 92.12 98.13 70.14 12.50 25.02 47.10 59.13 40.38 37.69 68.14 27.92 69.07 91.14 76.68 31.62 58.00 24.87 84.96 80.30 72.94 87.14 57.81 23.77 85.85 22.81 83.44 35.36 24.59 23.20 56.35 49.66 60.99 44.18 72.38 50.33 5.72 36.69 55.14 98.11 67.84 11.01 95.19 64.98 76.66 41.30 62.51 30.13 93.72 5.71 63.67 48.38 37.33 -79.13 93.61 43.23 71.06 70.07 71.35 39.90 78.76 85.03 9.19 14.70 59.71 0.71 2.51 68.99 53.93 42.39 87.47 43.44 57.93 4.64 68.81 96.80 83.13 80.30 40.24 92.14 46.16 68.63 99.04 38.06 10.51 27.65 67.87 67.37 43.13 22.40 37.02 66.84 76.45 42.85 72.23 61.74 88.71 74.15 3.79 41.21 62.32 46.10 83.55 63.73 33.74 9.61 77.76 91.60 46.71 90.12 1.95 11.23 87.39 48.04 61.49 37.67 23.05 92.06 90.79 92.91 39.54 99.33 4.70 61.55 6.58 53.87 12.46 73.27 47.73 33.62 28.48 38.18 94.45 18.10 70.33 66.55 91.62 20.85 49.45 68.74 77.99 61.64 67.50 26.80 97.99 6.03 5.71 9.22 92.45 6.14 83.23 67.72 13.60 -29.72 25.20 80.50 16.20 57.56 81.84 25.71 85.30 30.90 4.24 72.65 99.17 6.42 68.83 94.45 69.26 92.47 30.86 33.83 25.87 6.26 49.91 50.85 32.74 88.90 60.08 69.77 8.31 52.85 46.22 89.29 2.13 91.99 49.85 50.23 60.54 43.54 3.33 54.11 5.76 68.21 53.21 67.83 52.42 93.63 56.53 64.67 41.04 43.04 85.38 73.54 59.24 47.79 33.99 77.66 69.12 96.35 92.81 1.01 6.13 20.64 10.96 64.64 26.76 51.22 77.60 78.26 0.12 9.11 70.88 48.40 22.31 28.22 89.89 12.35 83.71 24.38 61.79 28.56 42.02 22.19 57.61 23.46 98.13 27.35 45.80 48.40 48.45 32.99 4.77 84.70 34.42 72.91 79.38 82.33 79.50 61.33 20.44 26.33 86.75 -39.03 37.34 10.67 35.30 96.37 45.06 4.96 8.54 96.91 8.28 37.42 26.17 32.88 59.86 90.40 42.16 7.32 32.04 38.49 75.93 81.35 69.30 39.98 1.79 15.66 66.13 14.34 88.35 56.66 43.00 20.26 47.21 93.75 11.11 85.28 50.58 35.20 72.93 18.94 9.61 79.73 97.18 27.89 66.47 48.37 92.81 74.51 81.67 5.72 96.99 37.45 44.43 49.48 9.78 88.16 13.56 33.47 22.12 58.91 0.55 63.98 68.26 42.55 4.44 13.42 32.22 29.58 76.03 39.78 0.49 70.95 89.14 5.89 84.29 49.21 25.00 8.69 61.28 20.20 26.36 91.20 78.23 16.29 12.16 15.89 68.70 39.42 75.91 81.98 10.94 92.71 59.40 64.77 88.56 68.04 6.88 79.48 41.73 76.05 23.26 -23.33 99.59 92.16 70.74 17.42 3.82 98.35 53.09 4.81 38.74 63.67 22.02 80.79 26.04 32.90 53.76 32.22 87.98 31.03 27.70 77.10 18.63 35.93 55.59 48.07 27.64 88.82 4.38 42.03 66.72 12.71 13.07 29.78 6.48 72.19 22.60 91.45 13.90 39.25 46.27 85.26 60.90 74.16 77.70 71.76 62.98 75.30 67.07 25.18 4.41 53.90 43.98 53.49 26.10 83.38 83.44 62.17 17.28 80.73 59.88 44.72 44.33 0.95 40.07 4.07 21.24 12.96 93.07 48.83 37.99 71.29 38.28 41.17 48.05 91.59 32.04 35.39 93.27 89.04 57.14 82.90 2.97 78.22 21.85 44.62 17.75 8.16 8.84 53.09 52.21 59.89 44.48 4.52 58.98 49.94 30.83 69.31 61.14 59.56 39.60 -99.13 33.53 93.61 97.97 44.25 29.10 80.14 29.39 25.70 88.49 87.56 99.03 5.19 85.77 58.79 17.00 4.35 77.12 22.97 32.47 97.30 28.75 43.68 68.28 75.13 3.32 56.29 85.05 64.55 67.28 23.91 48.66 46.84 12.73 35.24 30.54 92.33 62.97 32.14 52.42 84.65 67.21 33.95 82.99 69.21 44.52 58.08 24.52 80.16 76.75 32.20 63.22 20.86 78.99 56.64 4.85 58.16 30.83 41.35 81.49 46.91 70.40 59.25 85.32 64.01 34.77 65.67 85.60 89.15 77.11 19.42 41.40 34.17 51.43 83.25 85.72 25.82 6.83 47.82 30.12 55.45 31.99 37.66 10.56 79.47 26.12 96.00 95.01 38.06 31.25 72.16 59.24 58.41 77.86 83.29 13.52 81.40 21.76 24.06 83.50 -55.90 42.95 27.47 95.38 26.20 5.22 1.07 39.56 55.44 9.44 20.25 7.28 84.95 66.17 23.35 81.53 97.19 95.83 50.08 40.95 95.80 12.19 2.68 29.84 31.25 98.98 68.89 9.32 86.55 25.64 77.99 76.91 67.39 81.76 29.68 28.67 47.84 26.46 97.86 41.31 16.64 27.26 43.33 67.88 57.63 83.95 23.18 94.72 52.01 57.37 41.58 25.58 78.76 59.37 94.68 74.50 80.27 21.61 51.32 44.12 9.38 47.64 54.34 79.74 19.73 66.70 6.01 84.23 93.68 29.26 0.42 95.08 42.17 17.25 88.17 73.99 25.85 69.88 64.67 65.70 63.24 20.35 48.14 79.29 70.46 18.09 96.62 80.98 34.58 6.12 87.04 51.59 19.08 29.89 59.64 22.28 34.18 58.61 46.72 27.41 -74.08 12.42 53.90 79.51 41.38 50.67 65.28 15.51 60.02 38.91 69.70 95.46 66.53 40.84 11.74 62.02 74.58 61.02 10.67 85.39 52.47 21.33 67.34 31.13 18.30 90.38 62.05 37.45 27.99 81.80 94.47 25.95 32.29 25.59 40.90 93.49 83.57 24.32 98.61 88.34 67.07 31.33 89.68 10.89 69.17 43.58 19.97 32.28 57.85 69.77 42.43 38.49 66.01 76.38 87.50 37.81 21.89 80.23 97.95 23.10 62.55 35.01 84.52 6.73 41.74 28.66 82.97 69.62 36.26 57.47 47.13 50.76 61.69 67.25 5.34 15.72 97.19 13.38 80.32 35.81 5.84 60.14 49.33 40.83 21.68 89.28 7.25 84.12 81.45 21.36 3.37 13.88 72.63 29.49 79.01 17.39 34.05 13.14 70.36 44.17 -14.03 7.74 54.37 4.33 31.14 95.61 57.85 33.77 66.67 19.28 78.39 13.73 89.65 6.60 55.86 98.04 99.40 71.45 57.32 83.96 21.57 60.10 68.05 60.83 67.97 50.90 87.16 71.78 74.12 80.10 54.22 34.38 78.16 76.64 16.23 48.44 81.26 92.61 61.06 51.99 92.65 42.79 98.95 17.04 77.35 35.77 27.21 23.79 19.78 97.39 98.20 67.42 7.24 87.29 33.38 17.73 20.25 85.64 37.24 43.05 91.68 80.52 93.63 22.28 44.72 54.29 22.10 2.03 53.45 68.20 53.89 91.42 49.70 83.43 7.40 91.03 16.03 99.89 42.61 3.90 35.88 70.31 56.76 36.09 82.41 74.11 26.70 54.80 9.10 45.47 51.01 94.11 90.68 68.11 5.56 14.27 11.12 84.49 73.63 55.34 -42.99 1.16 90.26 59.35 29.96 96.52 7.84 29.92 4.83 62.83 50.97 74.89 5.93 25.92 16.88 39.56 32.62 43.06 62.98 84.98 55.35 46.19 62.22 52.67 6.08 14.49 34.71 42.23 84.85 30.25 98.80 8.96 70.35 49.40 79.65 48.51 35.42 72.14 45.33 4.04 95.19 35.01 19.08 51.25 69.53 3.42 76.58 78.68 43.70 91.93 30.69 88.24 96.15 80.39 99.97 95.05 86.56 63.67 1.33 22.59 84.44 73.84 85.64 90.70 90.81 15.64 33.33 51.49 8.94 90.00 35.40 44.42 60.85 41.76 23.05 29.15 98.11 1.70 62.06 9.95 25.62 14.43 14.08 45.08 23.76 58.11 84.48 20.37 66.76 86.20 42.40 87.82 64.32 56.54 62.04 59.24 91.90 80.12 90.32 51.46 -90.08 37.60 38.72 32.19 71.26 58.23 7.66 17.89 90.64 39.22 47.91 50.76 58.24 61.24 57.90 33.34 5.06 1.60 5.41 52.82 79.61 56.16 85.08 36.50 17.60 19.00 56.05 20.78 19.33 73.42 7.68 70.57 66.86 16.44 55.37 12.97 76.30 54.25 12.51 45.91 78.34 92.81 17.28 94.21 33.59 36.00 45.67 27.69 97.20 59.59 92.90 88.24 36.59 2.07 41.56 18.60 22.97 1.70 52.60 53.76 2.23 50.98 75.06 40.65 60.15 17.62 45.51 61.50 7.88 67.11 12.61 92.23 58.58 86.45 5.25 52.46 17.23 22.81 11.80 39.85 51.21 38.21 31.39 11.85 4.26 70.53 86.64 47.11 20.29 82.64 97.73 41.24 78.73 11.94 86.95 23.31 78.63 58.19 58.10 4.52 -7.14 3.98 37.33 0.34 79.48 70.76 28.88 64.49 69.19 64.27 13.81 86.88 8.51 73.58 43.96 11.16 95.92 3.21 11.03 69.16 71.24 90.20 18.83 93.48 59.67 12.42 52.88 63.30 90.13 20.90 36.15 16.25 49.78 26.68 46.09 68.25 28.97 74.34 11.20 19.80 25.96 91.66 94.74 5.20 35.09 85.28 31.14 68.15 9.38 84.87 24.91 77.13 31.99 54.76 26.16 84.49 32.21 92.93 56.83 91.98 31.49 8.93 64.25 17.20 46.55 18.19 27.39 99.61 15.88 43.17 65.30 38.66 53.28 56.37 10.93 78.07 5.51 69.53 7.33 49.65 5.83 29.48 81.29 47.29 61.18 30.60 6.09 30.06 58.73 9.26 11.72 73.05 79.25 90.97 38.44 66.43 76.14 45.64 52.23 75.37 -75.71 97.75 53.00 72.13 8.91 18.25 73.03 62.31 32.38 12.88 97.72 4.84 43.86 13.40 3.90 40.84 17.54 77.63 81.46 64.80 63.89 66.12 12.50 22.87 48.06 43.98 32.44 96.66 32.97 51.81 69.17 86.66 76.50 47.20 22.41 28.91 83.30 85.48 83.73 10.29 46.56 77.91 83.65 26.80 79.16 9.56 7.74 0.19 99.39 96.53 93.23 32.22 28.99 58.07 31.47 79.87 61.86 4.93 75.88 19.98 62.09 4.75 6.70 65.44 16.61 81.11 34.22 71.67 46.59 3.56 51.55 42.74 39.72 65.36 34.62 32.63 96.62 99.19 90.52 27.04 63.76 86.53 95.36 2.52 1.38 2.98 35.11 68.40 37.82 64.23 55.75 50.93 26.09 10.21 39.97 75.77 81.85 8.77 45.54 4.50 -94.76 14.83 11.64 91.70 26.53 36.53 33.89 76.52 73.43 49.90 13.53 88.91 18.87 21.76 14.71 57.39 11.02 0.20 53.73 44.66 90.32 71.66 5.34 32.23 50.39 78.18 78.74 45.94 68.26 22.24 41.50 30.80 4.17 93.59 24.36 68.62 38.70 15.22 89.93 14.93 66.47 95.81 1.77 46.73 92.14 84.57 53.41 41.85 82.21 96.24 84.82 56.53 72.48 45.20 62.11 82.26 42.72 93.91 92.09 33.70 51.26 74.30 81.79 17.18 1.56 17.57 89.19 12.28 70.28 32.52 40.01 45.68 99.18 43.32 55.18 63.28 70.64 95.11 79.82 97.62 42.16 99.31 15.14 81.46 35.50 67.15 21.06 6.25 61.05 41.42 1.43 41.88 72.20 86.04 62.66 47.91 8.57 74.16 12.10 49.69 -42.45 28.45 85.94 47.26 68.98 76.31 84.32 84.42 48.70 99.33 38.42 65.29 16.47 12.45 94.66 94.59 69.67 46.75 60.67 35.57 91.95 95.34 62.74 10.01 38.37 73.25 9.59 13.08 32.71 11.57 10.41 88.99 28.97 76.66 87.90 84.98 82.16 54.17 38.29 65.17 32.61 82.34 44.86 81.26 70.69 85.21 99.06 18.28 12.88 79.03 82.98 50.01 65.48 68.64 10.65 39.37 76.96 33.22 57.90 70.53 30.97 8.84 91.09 86.60 30.04 29.34 6.47 72.16 46.23 84.55 58.26 33.03 48.41 54.63 80.31 15.16 66.66 12.07 74.00 74.37 82.98 34.84 52.18 32.80 82.14 83.98 61.97 47.37 51.20 29.71 86.11 24.77 61.17 77.59 20.52 74.23 56.44 47.28 6.59 60.74 -29.33 99.19 96.96 60.95 45.17 22.81 34.67 4.74 60.73 88.08 74.86 13.87 47.33 74.12 19.42 63.31 67.59 46.65 69.78 49.30 10.61 47.11 92.21 49.12 51.42 87.19 97.92 61.30 54.08 92.06 11.24 95.42 28.45 99.11 87.69 20.90 81.25 80.96 47.73 87.01 4.59 97.08 0.41 8.80 92.11 84.02 52.52 41.42 11.55 7.26 70.35 35.03 74.97 7.41 96.87 83.00 7.96 7.64 96.67 67.89 58.83 68.41 35.86 53.61 59.48 63.30 31.33 85.33 22.40 13.58 46.55 27.85 99.20 93.85 30.94 48.43 29.11 45.57 76.09 20.78 30.74 51.37 62.44 37.39 51.16 48.74 59.43 2.55 9.16 77.18 1.92 1.98 7.55 62.46 19.31 6.32 18.74 61.29 28.74 24.83 -5.93 19.32 7.39 61.72 60.49 40.46 99.11 99.07 42.12 8.11 25.22 30.95 25.43 61.68 72.41 2.65 92.30 14.91 4.87 49.87 87.92 76.61 32.27 36.19 87.46 45.39 24.75 87.04 30.36 32.46 94.63 31.65 69.31 91.69 66.99 51.98 35.13 0.42 59.55 74.68 52.50 19.48 16.59 59.32 58.50 57.20 10.17 97.61 14.18 37.73 23.13 81.04 73.62 65.42 39.42 14.01 70.60 89.88 10.55 33.43 17.52 28.33 45.56 64.60 34.76 16.28 50.80 0.10 30.85 8.51 36.95 68.10 90.32 33.05 7.23 29.36 7.76 36.14 24.72 9.75 75.66 62.54 57.53 27.79 81.09 29.21 71.59 11.63 44.99 52.31 2.74 39.38 83.97 14.57 26.26 24.43 4.33 86.27 56.76 61.96 -71.76 13.40 21.95 53.07 82.97 54.91 5.05 93.68 2.84 39.49 3.86 63.91 56.11 38.79 91.70 29.20 80.88 82.09 39.41 98.73 38.41 41.59 41.28 38.36 21.62 30.51 47.16 33.90 63.45 23.28 92.91 76.45 27.30 72.54 18.32 44.35 12.80 8.99 76.72 44.83 51.98 74.23 42.01 14.67 58.49 24.13 38.81 8.25 77.16 74.14 77.39 2.61 12.54 72.81 52.70 94.04 73.35 35.34 96.62 38.44 51.15 54.49 54.85 22.84 75.12 30.38 9.76 61.70 5.32 76.32 93.47 80.87 2.27 40.54 61.05 3.75 3.96 63.38 53.14 71.90 37.52 71.76 0.61 36.33 10.62 9.76 46.24 47.16 83.17 89.49 70.97 30.11 74.09 41.24 54.02 17.22 18.40 79.96 42.47 60.72 -56.02 30.74 14.39 97.86 72.83 27.05 37.38 52.64 60.58 8.17 38.79 13.03 27.08 13.57 86.19 71.04 77.01 15.08 96.80 40.79 10.54 45.01 69.64 56.04 19.93 97.64 36.87 17.34 71.36 81.17 40.56 18.73 66.20 79.40 88.92 93.94 16.60 34.62 99.05 27.65 56.38 45.65 92.24 37.71 88.81 5.42 99.99 88.97 85.83 74.62 54.15 27.19 36.54 47.81 41.35 4.19 12.91 92.18 68.87 39.31 36.62 95.86 29.27 81.89 89.84 15.06 29.06 7.58 92.78 31.89 15.65 97.42 98.40 86.50 84.45 23.80 58.20 69.83 5.35 99.02 63.70 28.71 66.47 25.13 16.13 83.42 84.61 65.26 23.40 64.33 95.57 65.32 95.88 69.44 55.84 61.88 15.13 25.41 93.06 75.40 -92.53 61.82 21.89 92.30 81.78 44.59 96.44 16.88 61.48 72.68 1.93 44.77 74.25 31.45 74.33 29.76 21.50 81.07 76.27 56.44 58.57 51.87 51.54 12.32 26.90 23.17 33.28 61.77 75.94 32.66 3.58 88.31 62.07 5.74 28.02 1.02 78.59 76.93 71.76 60.76 95.66 33.37 12.90 5.31 92.78 4.13 80.40 87.58 21.44 75.91 81.05 56.31 45.31 42.79 10.33 98.57 50.48 23.59 19.98 73.64 46.37 64.46 5.05 27.91 51.84 35.04 13.13 74.15 99.48 61.73 83.78 37.18 45.73 17.16 57.90 29.84 63.53 47.79 75.32 33.11 21.21 24.22 35.17 67.10 0.86 74.03 78.92 30.39 78.56 79.04 70.03 84.49 78.13 10.79 43.80 52.98 3.87 18.32 79.47 14.86 -64.43 50.03 75.72 7.98 16.26 28.71 73.30 84.86 73.08 7.41 98.84 9.76 12.27 8.65 22.13 85.26 49.53 2.02 7.23 6.77 57.75 5.44 49.18 69.48 1.87 17.71 21.18 80.55 47.74 57.11 48.30 27.93 80.19 37.73 67.78 4.50 54.68 71.18 85.44 33.81 82.92 86.67 91.23 19.22 89.02 48.74 67.83 80.87 49.88 65.45 80.47 6.85 84.47 39.05 13.25 96.49 73.79 9.19 77.99 26.33 44.17 77.49 71.50 20.30 19.96 4.13 63.09 39.50 35.65 82.84 96.72 18.48 96.14 47.29 29.77 39.39 87.30 57.68 58.74 36.94 7.95 73.82 94.90 44.00 56.71 56.74 78.46 72.35 24.12 35.50 76.51 52.07 12.79 92.01 80.69 13.70 34.86 1.06 57.93 75.50 -66.29 55.43 93.51 7.70 60.18 93.05 95.77 13.87 90.38 97.77 42.95 88.42 62.41 10.57 45.46 23.56 64.91 44.42 68.82 60.01 13.75 48.82 10.71 9.78 82.20 63.84 54.47 91.08 71.55 80.66 26.26 69.51 65.93 95.60 18.98 98.96 7.45 38.93 22.69 46.42 20.94 36.61 89.54 86.66 38.53 15.45 77.98 56.89 69.01 98.24 79.41 30.04 81.39 57.41 22.94 1.91 10.62 57.23 13.15 97.53 59.81 90.15 4.61 92.85 62.49 78.92 45.36 13.91 67.99 80.61 46.93 57.27 90.04 24.23 91.12 91.21 52.53 89.45 45.09 37.73 11.11 21.08 43.12 58.39 40.86 62.00 95.15 33.92 22.96 1.21 50.03 93.25 44.81 7.09 51.62 74.01 62.62 24.48 91.64 47.45 -2.75 52.32 23.87 93.39 25.95 72.06 42.02 40.49 37.00 5.33 86.43 73.06 67.83 51.61 20.11 21.06 36.50 7.69 90.12 44.63 13.42 32.41 23.75 48.54 63.14 94.73 46.35 4.07 24.26 29.28 76.79 32.76 73.96 60.57 36.75 98.62 75.29 26.64 22.07 45.72 13.12 89.97 94.10 21.36 27.89 17.77 72.42 26.46 37.76 92.96 83.62 87.86 59.10 82.57 73.73 69.48 9.99 59.95 85.21 64.40 29.01 5.09 2.56 32.48 11.23 79.11 51.38 86.90 79.40 28.57 71.80 62.82 77.46 25.15 88.99 69.32 88.09 97.26 4.74 45.80 3.35 68.96 88.10 47.80 41.84 1.39 89.45 32.99 46.20 50.76 56.82 77.27 56.23 17.03 11.15 17.81 75.85 62.63 14.17 98.00 -62.48 16.81 52.38 26.03 48.44 43.59 42.30 92.05 13.16 71.79 42.46 51.80 68.99 93.76 8.33 84.56 97.84 29.01 89.40 55.90 42.99 33.75 81.24 72.23 60.33 33.87 18.05 33.52 64.39 20.19 39.90 36.94 65.17 99.94 27.75 6.23 21.26 28.72 50.67 54.17 2.27 80.87 47.45 15.03 23.33 29.61 90.54 56.09 44.99 83.99 65.69 1.68 49.74 0.67 87.23 91.98 9.46 0.94 17.17 61.46 57.18 57.61 37.93 35.50 59.53 54.47 20.82 68.90 9.98 24.65 23.04 8.95 91.85 29.38 36.01 21.71 48.55 33.59 99.69 18.20 52.27 62.62 14.21 24.15 91.89 6.47 93.01 14.36 65.70 23.40 48.67 45.17 39.06 84.75 33.82 29.83 93.38 4.01 61.35 6.64 -42.96 31.48 12.29 78.51 23.37 43.54 67.87 56.12 73.50 3.70 64.90 64.13 1.69 23.96 33.10 16.30 75.01 75.58 59.25 32.88 40.35 86.78 83.12 0.15 64.78 92.93 69.22 36.14 61.53 92.81 62.40 8.16 56.94 6.57 73.70 33.50 23.03 61.29 48.04 8.20 58.36 9.00 53.52 8.65 96.05 39.60 74.36 77.66 47.10 6.63 75.15 84.92 18.21 26.70 88.35 12.97 53.21 30.59 43.75 19.47 63.95 38.43 46.29 13.51 66.04 94.08 59.36 24.78 71.81 23.99 32.02 67.81 11.56 41.51 69.46 77.51 24.86 41.97 60.92 22.08 77.38 44.96 69.73 20.27 6.01 4.88 38.89 25.07 98.78 16.92 29.04 73.41 43.03 25.97 82.02 60.45 68.72 79.18 86.37 57.53 -62.72 43.98 86.66 61.70 83.40 16.35 45.53 84.25 65.06 0.44 39.50 20.89 51.47 14.71 13.59 61.69 90.41 64.54 2.43 31.43 90.86 86.91 94.68 37.88 98.06 50.08 99.88 34.10 63.97 26.76 58.54 28.96 73.36 55.34 65.65 40.61 94.41 34.79 79.10 0.20 34.04 11.98 28.75 50.44 61.88 16.87 3.04 35.91 75.93 44.45 24.58 17.37 28.78 42.51 9.27 12.59 44.73 46.56 21.60 55.68 83.90 16.18 34.50 89.30 89.05 95.72 41.87 99.28 1.36 49.19 56.86 67.93 67.44 95.66 9.56 76.11 96.17 0.14 70.35 96.73 55.94 76.83 30.20 86.83 44.68 78.99 9.99 53.91 8.39 79.63 76.03 36.76 42.60 62.34 64.30 92.52 0.43 95.22 66.99 23.62 -77.63 96.40 22.91 50.16 1.52 98.66 26.02 16.91 88.30 47.19 48.82 44.93 10.88 23.55 33.12 2.46 47.39 51.41 38.05 80.97 1.26 71.81 96.38 94.30 67.25 74.47 43.45 47.08 76.35 1.25 75.56 64.30 13.48 83.26 52.93 49.43 70.77 75.22 42.14 1.81 6.14 86.35 13.45 27.41 79.84 22.65 39.77 42.56 87.95 93.94 73.82 75.40 35.80 6.65 95.83 26.20 68.71 26.70 95.71 34.25 95.08 41.46 4.54 67.04 65.62 40.42 61.42 31.62 56.68 51.10 73.72 26.89 3.81 18.26 28.74 70.18 70.23 69.29 41.75 8.72 62.84 29.15 37.17 97.76 81.86 58.05 27.36 52.84 99.86 26.50 88.39 4.70 96.68 43.44 26.30 76.77 39.18 49.18 29.75 47.63 -96.18 16.62 69.01 42.25 17.63 8.69 67.62 3.28 12.32 30.56 75.92 0.99 91.03 96.52 71.45 25.02 42.26 20.76 62.48 90.27 47.66 80.98 33.62 67.48 46.58 82.96 14.28 64.05 23.18 58.68 7.16 2.43 74.77 12.79 93.29 47.59 56.75 42.66 74.20 64.74 65.18 40.65 82.60 36.06 35.69 68.08 37.68 99.34 31.71 40.81 51.47 7.53 16.58 64.28 19.56 71.71 89.73 96.06 8.91 4.79 36.46 95.40 46.26 80.91 25.24 10.77 44.45 8.33 66.79 34.05 4.47 40.75 61.51 31.75 13.84 74.22 86.76 20.48 41.10 1.79 2.31 57.98 33.08 9.07 61.83 6.46 72.61 87.44 22.18 17.97 0.17 59.51 71.70 89.47 60.03 26.73 4.79 12.47 44.34 88.77 -53.48 71.18 17.36 75.23 6.59 99.07 41.50 74.92 86.71 95.56 54.15 61.26 28.09 45.57 56.45 0.60 34.91 39.42 55.91 79.73 93.47 44.34 93.17 54.60 50.88 16.06 77.43 65.28 59.62 70.90 9.03 61.62 54.03 70.63 97.70 86.78 42.68 65.78 99.47 62.65 34.96 7.55 95.89 13.10 78.67 20.31 36.80 32.28 8.89 35.93 63.72 30.21 74.08 77.55 10.22 65.06 58.79 0.89 3.45 86.13 39.41 47.69 10.67 60.71 6.18 1.01 15.62 94.07 60.68 41.76 97.59 28.90 44.46 24.73 24.22 94.79 49.32 46.47 94.42 60.28 9.95 93.61 14.33 26.64 17.09 67.02 64.17 87.85 82.20 50.30 85.05 79.89 7.25 93.37 57.23 99.19 20.43 96.72 86.52 84.30 -8.30 31.75 32.71 18.50 85.09 72.78 58.85 35.92 45.95 77.17 49.96 69.48 44.66 62.34 4.71 68.98 71.12 17.52 60.40 81.86 38.80 52.59 82.74 41.45 87.50 1.54 27.37 59.29 16.60 73.69 73.92 44.73 29.28 41.77 48.79 67.62 60.21 65.74 23.19 19.30 26.55 46.47 40.61 46.36 38.58 60.48 33.80 74.78 14.04 3.24 15.82 91.23 65.53 27.81 66.13 80.39 79.78 47.95 11.40 57.63 77.69 47.01 90.67 80.37 66.75 3.23 65.16 43.60 26.44 24.39 74.95 18.79 3.38 72.10 29.20 32.39 17.08 91.87 45.11 62.53 61.51 65.09 10.76 92.29 9.90 59.26 66.85 70.58 84.23 60.85 16.98 91.92 80.82 75.24 89.24 37.11 14.28 43.74 75.57 91.81 -60.93 40.80 48.97 49.59 13.61 8.14 46.59 49.39 52.94 10.17 45.18 30.40 97.71 67.64 0.12 80.17 35.21 36.13 55.40 9.03 77.60 70.19 99.01 14.28 70.70 54.24 32.86 47.70 54.08 48.15 49.43 62.02 74.66 25.29 27.40 6.89 37.82 81.21 77.72 38.00 15.11 16.34 7.13 75.81 90.14 56.38 99.40 97.79 42.79 43.01 33.54 41.05 78.03 92.98 76.83 24.28 14.13 27.25 29.09 81.01 34.38 47.86 22.57 32.65 84.77 51.79 95.91 84.64 32.67 81.42 0.36 88.78 11.47 35.44 11.99 10.07 35.73 51.22 65.48 90.17 24.31 50.94 46.90 64.37 77.88 1.99 76.55 98.17 99.71 77.37 6.55 9.69 88.24 38.26 45.64 59.95 63.87 22.18 3.79 35.33 -45.27 15.84 38.13 1.41 34.56 13.82 4.78 18.34 20.69 48.75 50.77 72.65 62.97 23.53 34.38 76.43 89.31 68.26 86.62 94.69 73.65 46.92 37.83 22.28 9.13 0.70 23.02 82.02 74.87 89.41 76.54 21.67 20.12 61.14 91.96 80.55 77.73 57.09 92.09 23.66 43.07 29.38 82.94 46.43 13.73 17.64 41.93 16.00 2.79 20.81 3.26 66.72 55.57 82.69 73.63 8.98 20.30 12.78 54.70 81.16 4.80 67.65 92.46 59.67 18.19 40.43 6.26 45.29 88.09 70.40 18.49 60.84 83.34 3.19 94.16 10.27 36.26 18.30 59.96 78.96 25.41 68.69 23.69 18.35 94.40 79.40 94.77 35.71 92.99 60.22 83.14 15.10 86.32 37.91 80.83 5.30 54.35 99.50 7.62 37.85 -90.45 36.09 7.16 6.90 31.45 78.23 75.77 65.70 11.33 89.05 34.49 78.51 64.98 51.90 87.20 17.31 85.11 37.36 67.53 98.46 75.56 39.41 39.11 28.66 21.43 68.14 82.11 70.12 49.73 14.11 88.42 83.25 11.85 27.68 54.38 87.50 60.82 75.17 99.69 15.85 91.37 81.25 57.19 22.53 68.67 33.20 48.07 63.46 84.80 47.82 23.44 57.22 25.78 50.87 53.43 71.47 37.89 41.32 22.46 2.87 64.55 37.93 53.89 39.69 44.33 63.94 6.66 84.94 23.85 94.72 19.49 46.33 44.11 82.01 44.30 78.29 84.42 44.30 51.76 73.01 45.97 16.45 54.70 82.71 6.33 54.09 0.32 46.05 78.35 59.93 4.59 59.07 76.21 68.61 80.36 12.75 50.72 50.94 50.53 47.74 -4.10 32.84 71.08 78.15 85.75 96.14 56.95 76.32 5.21 10.84 33.01 64.47 65.08 50.36 57.22 77.60 22.33 99.05 2.92 88.76 66.06 68.23 7.75 56.53 71.00 20.20 85.99 88.62 97.92 16.25 42.98 55.12 14.47 19.99 54.03 13.28 37.95 21.15 50.07 37.38 64.39 33.01 15.17 15.13 31.75 6.97 0.63 83.84 45.76 5.16 30.61 73.21 13.25 95.22 59.49 90.26 3.18 14.98 97.55 5.44 44.49 45.12 66.11 58.60 45.94 44.04 95.77 56.58 19.18 47.20 63.88 57.68 1.00 66.92 50.75 35.31 77.59 46.93 83.85 60.24 90.63 21.83 81.38 67.01 82.06 33.47 73.07 36.82 14.93 99.38 39.89 99.54 44.89 63.24 15.54 18.85 6.53 54.66 58.18 42.30 -22.30 72.76 13.08 9.96 43.50 95.86 1.36 44.45 48.29 92.26 69.44 28.11 50.44 29.66 85.86 41.63 39.16 12.32 41.16 56.57 16.74 5.55 61.43 58.19 88.26 54.19 4.87 75.15 56.27 27.80 75.56 41.65 64.90 72.48 10.55 72.10 43.38 97.27 98.43 14.58 73.43 2.55 92.33 49.36 59.74 36.10 82.26 47.70 60.91 83.40 97.04 34.39 41.27 71.13 81.95 65.17 53.01 74.07 32.82 67.58 47.84 25.33 58.59 98.63 58.56 66.61 13.90 29.56 46.32 53.21 12.46 65.27 35.18 95.75 82.66 40.57 25.97 5.92 74.00 93.11 5.54 66.32 22.47 92.56 81.71 47.84 78.93 61.49 15.68 19.22 27.22 56.44 65.09 20.16 38.29 27.44 55.85 31.17 85.38 47.77 -12.28 77.73 25.13 48.24 69.85 37.77 64.89 65.09 82.95 18.00 12.34 85.27 82.76 93.85 91.58 67.38 38.67 88.51 66.40 92.81 85.39 9.84 76.00 83.58 16.73 39.20 30.62 64.84 68.15 77.28 95.06 75.98 51.64 74.92 38.33 55.33 75.27 70.37 3.10 66.69 29.46 89.53 39.80 61.50 58.21 70.09 56.25 50.54 62.08 29.99 1.94 90.65 42.17 64.53 65.53 75.63 36.10 43.50 81.43 15.43 0.29 17.84 10.27 14.31 7.70 35.80 36.38 89.81 6.73 28.32 29.58 79.94 18.02 55.59 66.86 39.49 45.71 2.03 74.73 5.40 23.60 44.52 46.05 4.31 31.60 3.12 86.39 58.48 89.94 0.98 48.06 17.05 80.30 90.98 6.09 85.62 98.10 34.84 90.59 50.47 -45.14 69.61 69.56 89.10 90.35 95.86 55.57 66.21 49.02 89.62 70.38 51.97 15.45 21.69 6.46 18.98 4.46 32.63 3.61 39.30 92.78 67.76 48.56 32.41 19.55 15.14 27.30 46.68 94.77 97.15 49.04 79.42 24.31 56.26 95.33 80.39 60.81 52.36 3.06 71.96 46.19 22.37 32.91 26.28 85.58 3.01 33.44 67.16 55.06 11.05 66.94 99.24 34.21 59.93 26.81 98.89 81.89 65.31 41.29 91.52 0.53 79.16 21.89 67.93 1.12 43.19 59.88 46.77 40.70 48.05 39.58 49.23 28.74 22.13 46.03 41.12 47.53 19.67 27.01 78.22 31.21 0.06 16.23 81.22 0.72 57.57 72.72 73.17 31.93 85.87 28.17 80.56 52.03 37.36 53.32 84.89 45.53 76.84 2.33 78.97 -27.67 27.84 38.50 33.66 65.31 82.56 18.94 20.84 89.16 32.61 95.80 15.08 67.32 26.06 40.83 48.48 14.28 84.31 66.63 72.88 70.57 12.40 31.25 11.49 5.66 96.82 52.18 78.51 75.41 14.35 90.21 31.24 85.69 23.50 36.58 92.42 10.61 40.30 44.04 59.35 19.37 73.08 37.92 69.12 23.33 96.77 81.29 32.87 25.45 44.27 46.37 0.29 52.01 84.88 85.91 17.84 59.84 87.35 14.03 81.34 1.16 16.44 44.25 86.41 62.10 14.16 40.52 46.54 38.93 70.94 79.95 3.40 80.75 49.75 65.61 6.13 63.95 76.19 68.83 49.13 7.37 56.14 65.37 87.67 6.57 7.97 4.67 38.11 34.15 96.77 3.43 39.28 28.50 60.53 87.55 27.14 24.47 50.67 7.47 40.56 -91.61 28.19 27.53 49.25 12.95 24.00 4.51 72.70 79.81 34.36 96.76 96.80 45.84 42.39 52.90 91.14 47.97 72.57 80.86 48.87 3.85 56.50 55.46 36.35 75.00 79.33 34.32 9.49 58.92 58.03 64.85 25.05 0.62 35.65 59.44 21.66 71.35 76.87 61.09 88.78 73.62 61.15 31.36 99.82 13.46 85.07 63.81 52.81 80.49 33.43 58.22 74.14 26.07 43.38 12.58 7.11 97.93 28.34 20.20 71.30 86.12 5.33 77.37 88.44 59.14 38.07 86.11 46.75 61.19 16.31 31.67 63.48 95.08 9.74 25.42 8.22 66.51 48.67 21.84 72.10 12.35 64.19 77.08 1.79 1.83 41.40 14.57 88.00 77.45 19.22 94.42 51.35 55.54 58.89 29.73 2.83 60.40 48.18 86.33 14.72 -85.43 55.73 6.75 90.00 5.74 34.42 47.26 80.96 80.75 58.93 10.34 76.74 76.20 92.84 24.16 31.49 98.59 62.09 82.98 45.79 7.46 83.50 84.35 66.20 29.95 12.95 89.69 87.83 54.70 76.22 77.20 45.12 27.53 88.21 64.08 84.05 50.13 85.95 25.34 65.63 17.13 79.84 10.33 42.45 87.48 26.45 11.27 19.28 57.06 49.68 74.56 90.47 39.51 0.74 37.33 22.62 95.18 66.81 4.36 61.19 99.99 74.87 38.40 76.77 15.86 36.66 18.06 73.27 86.36 84.63 80.09 75.32 84.43 47.52 42.79 4.71 98.42 22.42 31.66 26.38 32.28 18.72 81.02 18.76 14.25 39.94 12.53 89.47 67.26 77.13 65.80 78.24 35.15 25.35 38.29 43.49 97.05 61.11 6.95 26.83 -29.76 65.18 12.63 93.69 57.01 64.15 47.93 18.17 52.40 50.36 62.68 57.14 94.17 67.68 13.91 62.22 57.83 0.01 39.00 36.37 55.61 7.74 90.75 57.24 59.81 71.74 81.20 68.86 7.93 14.06 11.40 74.44 3.88 21.46 80.84 78.24 37.31 99.73 73.92 95.22 74.47 10.89 71.83 29.52 83.72 22.63 56.70 41.43 83.89 87.90 48.19 75.12 12.70 26.55 33.16 30.30 31.01 3.49 47.27 2.74 34.14 17.67 68.45 91.23 74.40 75.75 29.26 81.66 73.85 19.46 14.66 11.54 54.84 42.46 33.41 40.10 77.85 18.25 34.14 20.21 13.88 83.25 95.43 30.13 85.90 21.22 88.99 25.30 76.92 88.85 42.90 77.72 54.30 42.05 10.16 28.07 79.48 99.56 34.74 93.45 -42.13 45.07 81.73 73.84 16.22 75.88 65.78 77.55 91.99 33.15 61.59 65.07 71.81 55.52 39.57 0.08 68.92 42.71 26.88 75.38 30.31 82.35 57.88 48.49 61.36 35.91 1.55 90.98 33.42 35.99 55.14 97.45 57.12 30.66 18.89 61.42 36.47 77.18 46.84 81.90 99.10 48.56 11.86 1.83 42.31 60.37 11.78 35.15 85.99 24.06 5.33 95.91 60.15 95.28 11.19 68.78 84.48 17.89 24.13 15.36 48.57 40.09 13.33 43.79 95.71 52.22 58.39 55.17 35.29 78.48 88.62 85.44 1.89 66.30 86.12 71.49 57.52 93.67 12.47 85.48 38.70 74.02 36.86 12.99 11.21 12.16 60.09 4.43 46.27 79.96 9.06 42.90 39.03 14.32 47.28 66.28 20.74 32.93 27.79 93.81 -48.69 57.38 32.18 35.26 45.28 46.67 28.05 91.89 60.31 35.50 16.04 40.49 99.19 93.25 82.21 44.04 32.48 3.08 66.33 8.92 97.39 88.21 38.78 64.60 21.90 15.87 12.28 90.19 30.91 49.47 10.26 1.86 6.99 42.06 65.74 41.31 16.77 59.67 99.53 28.78 82.26 86.62 5.95 45.30 93.98 48.09 5.64 39.45 91.22 54.71 4.55 21.88 55.82 39.51 81.05 8.44 49.71 31.15 71.72 55.30 93.41 31.70 91.69 97.69 82.09 2.35 91.11 58.23 49.08 46.50 59.87 10.22 21.43 26.01 35.88 29.19 65.30 57.48 70.10 4.39 98.08 54.59 58.19 22.48 13.68 77.79 85.03 90.67 60.71 78.94 96.20 17.89 65.97 27.80 51.56 78.54 77.93 41.86 20.24 84.66 -16.03 21.49 28.95 45.43 42.04 96.99 73.25 72.70 17.94 71.51 42.67 82.26 30.57 90.83 38.94 85.00 50.88 62.33 23.35 39.70 84.72 26.01 92.00 86.03 70.39 84.60 83.95 37.77 68.77 58.76 97.16 38.99 41.17 39.47 34.97 27.68 14.35 39.61 66.74 75.41 37.29 69.23 39.72 24.73 21.73 12.69 34.78 47.10 42.34 73.43 65.22 50.50 59.76 92.72 64.01 78.04 64.96 60.79 74.71 17.88 32.86 33.91 46.00 88.81 17.81 1.85 89.84 56.82 20.27 80.89 85.94 43.50 44.65 22.88 52.40 10.07 11.76 81.23 4.40 67.51 77.88 21.55 17.14 85.56 1.38 51.73 88.47 64.57 4.80 58.50 87.65 41.81 17.79 39.98 10.19 56.41 49.21 79.77 44.70 90.44 -21.95 52.92 7.94 88.33 99.78 94.15 17.11 59.32 84.90 7.93 21.58 32.54 24.93 39.85 68.14 14.09 85.54 57.00 27.26 73.00 88.35 63.65 44.35 0.31 57.15 75.49 29.61 53.25 33.37 29.61 75.40 59.41 85.99 93.71 55.34 6.65 24.05 26.09 7.45 25.61 11.13 1.74 40.25 97.25 0.83 36.54 40.98 53.03 64.11 45.76 19.38 78.35 30.38 0.26 64.87 69.78 84.02 34.12 3.38 92.20 17.25 25.48 20.77 0.50 99.73 99.27 77.50 30.02 50.03 13.52 86.30 16.92 65.59 12.80 29.22 42.63 87.73 35.59 61.10 8.03 62.48 30.09 17.91 72.58 91.79 8.04 13.06 61.32 97.42 89.56 90.73 59.64 5.34 98.43 25.74 47.46 84.28 14.19 84.36 73.91 -3.75 65.28 68.17 10.43 66.62 88.42 53.84 80.84 25.27 7.34 24.59 93.73 58.73 83.01 96.79 1.25 38.59 2.54 74.27 53.01 33.93 60.75 16.16 2.08 35.76 60.72 19.26 49.48 60.57 85.80 59.15 88.04 9.16 98.46 11.96 56.83 16.50 70.94 73.11 72.05 92.68 2.06 29.12 0.78 56.56 53.19 15.73 97.34 34.03 67.04 87.02 96.08 94.94 74.74 87.76 62.85 70.31 3.02 81.80 13.13 11.18 59.69 51.67 46.45 42.47 49.26 53.52 88.64 8.62 31.74 52.31 69.87 43.58 88.93 77.86 65.19 71.40 5.34 80.67 37.54 25.38 79.26 81.61 73.85 60.40 10.20 26.21 4.43 19.10 21.03 18.51 88.25 71.42 57.02 35.06 95.81 73.24 62.85 18.44 76.80 -85.51 19.51 87.36 90.50 97.84 71.67 51.16 67.79 82.81 13.28 65.10 42.20 19.97 74.07 67.02 59.03 45.17 2.63 42.42 35.00 89.24 86.17 80.51 99.41 58.76 35.85 64.24 43.53 8.91 98.62 40.44 63.66 33.71 0.60 21.03 83.29 57.70 64.46 90.43 6.15 19.75 18.20 85.12 67.08 44.45 27.78 33.13 13.01 65.34 23.71 13.96 67.32 91.62 53.07 9.49 65.89 38.09 73.91 50.99 76.75 46.55 51.97 27.47 40.38 28.27 44.95 30.80 81.43 71.59 77.80 20.58 98.18 44.75 79.43 14.95 41.59 88.05 94.23 82.08 11.23 38.34 46.62 62.29 89.05 55.76 79.97 53.70 69.11 96.89 20.61 53.98 63.78 65.20 3.23 58.62 88.18 54.98 0.03 6.84 18.06 -78.78 32.58 45.09 45.37 94.46 52.69 66.35 37.20 69.50 10.47 10.42 93.06 45.13 72.13 81.84 79.26 63.32 66.65 14.82 75.03 99.38 62.66 82.32 16.67 7.04 58.39 39.58 5.48 24.03 29.58 2.59 97.31 77.66 31.27 18.78 52.63 70.24 25.34 38.55 83.90 43.28 72.07 28.83 95.82 81.15 67.70 74.69 28.93 8.91 79.08 82.33 24.03 77.10 26.55 96.50 49.89 20.84 94.75 85.94 3.62 74.13 72.51 13.27 84.07 21.06 49.52 4.57 32.23 81.55 5.68 84.73 79.24 60.04 64.59 92.72 36.61 15.08 45.02 12.35 33.26 22.13 57.89 17.11 66.10 10.38 56.22 81.85 85.91 72.76 42.47 89.03 64.12 45.95 94.39 80.76 41.85 58.39 38.64 87.73 38.01 -51.54 87.27 72.49 96.53 9.74 68.32 9.50 80.09 38.40 25.99 55.19 70.29 80.26 39.23 11.77 61.19 98.38 11.08 9.23 3.45 81.33 56.83 41.71 82.57 1.44 80.80 35.61 46.29 58.67 19.03 71.48 86.89 27.48 4.53 40.34 73.00 43.99 41.59 40.86 76.96 56.94 66.57 21.28 1.60 50.80 88.37 74.91 26.23 16.57 40.01 50.67 70.19 20.33 69.66 55.55 97.07 49.24 77.29 2.90 49.27 91.60 13.38 11.18 78.24 53.95 5.79 42.99 2.61 53.18 30.78 21.47 22.37 9.68 8.62 95.64 14.99 35.86 6.86 56.40 48.18 18.60 36.57 24.92 50.47 16.45 11.54 13.49 38.93 4.97 47.79 43.37 35.51 69.52 66.75 75.73 67.60 24.93 92.01 48.80 7.17 -11.07 55.53 43.73 74.13 82.50 71.91 43.54 31.86 95.69 58.99 85.82 41.69 85.62 62.88 85.52 39.13 72.88 85.49 36.57 21.59 88.48 74.66 73.74 81.63 51.33 0.06 5.68 30.31 44.27 84.59 98.20 45.55 96.17 64.40 98.56 58.30 34.04 74.51 72.30 31.25 4.21 10.11 73.17 11.43 4.25 76.51 25.82 34.50 50.70 61.14 6.23 30.62 79.17 28.16 22.65 51.78 66.27 50.50 38.97 99.55 86.63 23.18 82.27 18.16 89.52 94.70 79.55 35.82 50.62 16.57 31.48 7.22 38.98 41.07 11.50 66.57 76.36 15.64 6.62 28.87 82.16 47.46 71.17 57.79 1.10 58.44 81.37 5.12 79.95 42.37 79.94 36.40 34.92 7.29 18.67 38.75 6.91 10.28 33.31 48.68 -26.83 52.99 85.46 3.44 95.19 34.11 31.00 86.49 41.37 82.10 22.92 87.57 43.32 72.62 5.98 81.55 27.77 97.73 53.50 32.74 89.72 27.42 67.86 3.22 6.66 98.70 82.80 50.45 10.23 40.31 78.13 23.62 30.34 77.19 47.86 90.71 66.42 72.26 13.16 46.80 46.13 28.67 44.11 57.90 39.91 12.80 8.16 38.96 25.91 39.53 37.29 27.80 29.68 89.24 85.38 54.99 40.16 93.28 57.82 40.24 18.73 42.46 44.98 42.64 46.69 72.71 6.20 51.28 22.37 38.09 95.55 59.92 87.15 31.52 74.60 3.81 14.60 25.16 28.49 64.37 18.97 94.11 90.04 6.26 21.86 1.65 15.97 66.76 52.38 49.51 94.66 67.03 18.93 86.44 81.61 19.50 81.66 20.21 53.20 3.46 -26.25 86.53 47.99 27.96 76.12 85.60 20.99 45.28 52.30 3.75 62.54 16.52 34.15 39.58 54.48 65.26 86.98 81.49 33.99 25.39 97.86 7.84 29.58 30.95 74.50 55.59 39.69 82.15 11.52 96.21 59.38 12.30 97.35 35.47 40.58 32.08 55.17 57.75 52.50 77.24 67.99 10.97 97.01 26.48 98.95 71.13 34.66 33.03 40.52 31.46 30.59 83.56 32.53 96.33 94.52 25.14 26.67 81.28 31.64 68.97 90.76 19.07 53.77 76.32 44.14 29.28 29.13 51.46 11.01 79.26 70.71 68.90 68.30 27.03 76.22 19.23 46.19 40.94 16.35 81.75 83.47 81.90 4.61 91.36 51.47 2.16 29.61 55.65 41.85 70.60 0.91 7.96 50.96 84.92 43.38 3.70 32.19 90.52 37.33 43.67 -13.52 63.13 67.22 51.64 82.46 78.14 56.36 46.99 67.16 68.92 53.01 11.46 82.93 60.81 13.51 65.67 3.39 91.86 0.07 85.74 5.91 97.45 85.51 27.89 37.05 67.28 27.57 37.66 9.54 10.94 11.33 19.88 10.00 54.46 41.38 42.33 15.88 71.96 11.22 61.67 83.84 81.77 63.18 60.58 68.54 7.19 63.73 9.99 38.31 11.54 28.33 77.89 0.74 67.02 37.12 48.52 90.82 62.95 44.26 3.27 80.41 50.16 15.19 85.88 22.38 25.74 2.63 91.50 4.64 12.35 89.61 32.11 69.71 34.37 10.82 62.51 91.62 38.88 1.94 64.59 59.40 23.14 13.27 90.64 14.93 30.52 59.63 86.65 21.88 32.62 27.14 84.21 58.38 25.61 36.53 95.67 82.15 29.57 75.46 43.79 -71.71 58.71 44.75 3.44 47.67 58.02 5.69 55.91 63.01 84.92 79.07 77.16 70.47 61.98 14.16 88.97 56.53 37.18 96.86 45.00 36.00 61.28 64.15 82.63 87.68 42.98 6.68 29.23 91.81 79.74 13.79 85.93 53.20 27.63 92.98 42.16 76.46 69.71 14.24 28.83 38.34 92.50 37.67 23.92 94.64 5.51 95.13 80.83 9.36 44.96 50.64 59.59 95.64 36.33 46.79 19.16 19.34 76.73 41.86 71.23 18.79 7.55 9.44 90.89 92.47 86.45 43.73 55.93 31.10 29.51 40.50 46.50 11.10 63.94 99.53 25.08 41.74 73.99 73.69 90.94 11.31 94.28 4.21 46.13 67.66 61.27 33.35 28.77 39.41 97.86 38.22 5.01 35.24 56.45 83.57 96.19 45.71 7.76 25.29 24.07 -46.15 33.63 68.41 3.28 20.68 63.60 68.63 5.11 43.73 28.73 91.14 8.33 67.35 56.26 35.12 40.67 74.83 6.34 66.81 3.81 80.79 11.17 36.59 79.13 65.02 57.11 93.91 94.71 28.65 94.21 24.19 78.21 24.48 76.03 5.16 49.76 18.39 11.20 48.90 48.65 21.14 16.77 84.24 42.90 97.91 87.22 27.78 76.07 87.95 57.02 67.45 83.85 1.45 22.90 10.62 22.86 47.24 42.58 48.36 43.67 41.00 82.50 29.69 38.08 81.28 31.62 23.95 71.37 92.91 29.86 16.93 67.78 33.13 96.36 24.23 86.18 38.88 84.83 28.11 17.55 84.52 23.02 9.18 57.97 49.68 27.01 48.54 24.12 78.50 33.00 84.70 8.59 52.25 68.14 74.33 56.02 69.78 41.13 38.63 67.09 -56.72 22.45 49.68 43.00 45.26 72.99 62.58 32.26 30.31 76.62 98.08 64.79 85.95 11.85 18.81 33.01 29.07 91.61 15.30 20.18 37.79 73.13 50.17 28.04 10.39 38.36 67.42 39.75 44.28 45.86 64.94 98.51 25.64 94.27 44.89 34.75 18.01 74.72 85.06 89.79 34.13 32.35 96.07 70.37 92.67 47.54 13.11 38.31 53.61 39.92 73.09 61.81 61.73 39.08 31.97 28.56 95.04 55.10 54.33 42.06 97.00 55.41 43.28 49.61 51.06 10.59 32.55 98.68 12.16 18.68 11.23 66.70 10.29 15.43 33.97 93.94 87.77 34.92 77.34 17.38 76.25 53.78 65.18 89.61 39.87 64.40 85.19 59.50 50.70 9.74 63.85 28.25 7.96 18.01 80.63 67.24 22.83 78.42 70.25 10.90 -74.12 3.72 81.57 2.35 36.46 6.89 78.07 34.61 40.79 53.82 37.03 89.61 26.49 37.95 88.65 44.19 30.57 9.46 23.01 57.97 20.77 14.16 39.66 6.70 58.68 80.33 78.18 68.27 50.88 45.11 9.02 24.60 44.37 86.70 82.21 93.47 88.26 39.06 31.39 9.77 83.69 80.88 75.83 55.29 84.27 24.59 98.93 94.97 58.39 70.94 77.25 33.00 63.20 42.66 50.31 10.28 38.68 43.49 93.08 54.05 40.63 16.13 37.65 40.89 7.60 33.44 51.70 20.81 5.54 21.02 2.00 74.42 63.88 2.64 54.66 43.29 20.43 79.85 53.36 68.11 64.99 33.66 99.63 61.22 69.31 53.36 60.82 46.27 64.70 71.09 94.56 92.22 40.90 70.59 38.66 52.74 84.36 50.19 30.04 61.85 -58.74 99.22 7.17 78.57 69.89 9.09 66.86 59.22 4.03 40.76 79.02 55.38 26.00 71.80 56.78 1.95 33.91 79.58 46.01 31.35 86.78 73.56 43.38 4.83 92.50 24.67 66.61 2.73 64.72 3.31 10.70 66.79 46.46 33.61 18.59 57.63 73.21 27.17 84.14 33.83 28.03 31.70 80.99 2.02 45.06 12.20 76.71 15.21 98.97 64.21 2.02 96.60 98.61 48.96 0.38 6.94 75.00 19.14 72.41 69.70 1.26 60.14 5.16 37.32 45.99 90.21 44.68 34.56 94.22 75.77 94.10 85.57 7.87 73.39 23.60 51.92 35.92 89.98 69.10 13.94 74.60 28.66 6.07 48.40 53.19 64.12 22.96 89.79 54.04 80.83 80.92 68.36 8.85 88.68 27.83 90.76 26.88 38.38 86.05 43.66 -8.35 70.53 2.18 57.61 72.73 74.66 72.90 86.18 12.41 38.80 25.21 96.64 10.59 99.59 71.31 79.73 12.23 37.80 1.72 83.03 33.39 52.33 50.57 62.32 45.59 60.93 93.18 71.87 64.55 4.17 42.21 92.58 51.79 34.69 8.76 67.44 60.99 42.80 56.15 76.40 70.00 5.08 52.25 28.33 2.44 32.07 43.30 65.49 32.62 68.86 19.28 33.39 86.35 28.00 75.85 5.67 72.41 27.26 81.88 27.00 17.59 62.77 22.46 49.41 6.20 56.36 33.15 51.37 43.33 48.02 57.52 8.57 74.02 23.16 14.23 28.01 35.18 28.56 29.09 5.59 10.06 19.47 64.02 16.63 26.78 65.19 13.00 24.45 33.18 79.93 12.49 61.39 81.97 81.27 38.25 39.60 77.76 78.87 89.23 17.83 -2.87 91.27 70.40 90.05 97.41 66.09 51.98 81.56 47.60 35.00 40.05 35.94 71.55 59.05 9.21 40.70 26.97 97.02 41.96 74.95 32.85 38.67 41.96 2.99 74.33 39.94 18.58 37.46 70.70 71.51 51.54 22.24 62.11 70.79 83.28 36.22 98.82 7.38 15.24 79.36 74.78 46.55 28.90 35.42 71.79 20.65 28.36 99.02 90.53 11.58 81.99 89.94 60.12 62.24 13.42 53.98 64.31 56.32 29.46 17.23 93.18 9.07 73.72 42.56 87.64 20.93 29.76 30.73 59.61 31.73 78.54 10.41 39.05 61.56 11.66 32.62 7.55 60.99 9.72 11.40 46.36 16.26 49.58 56.29 85.34 24.94 48.65 60.30 51.81 35.81 68.12 59.79 84.86 29.38 0.47 93.83 10.43 26.16 37.41 45.50 -34.25 49.50 60.16 75.29 31.03 30.12 65.34 9.92 69.85 83.18 35.81 69.59 56.97 78.16 38.57 17.80 59.28 85.40 2.51 10.27 92.36 57.75 55.04 54.86 20.56 44.01 0.62 81.74 86.73 11.27 36.72 14.12 35.08 56.86 23.25 86.12 35.77 73.97 96.33 42.01 98.72 69.53 17.27 28.13 18.14 73.72 64.58 63.48 50.44 29.13 90.85 36.05 6.34 25.07 30.34 82.05 64.43 3.49 10.87 94.50 40.98 47.27 80.80 1.18 76.55 27.53 44.00 99.66 64.14 8.46 93.61 83.90 97.52 18.65 12.90 40.26 68.38 35.67 44.29 77.65 87.80 98.07 47.49 39.76 11.07 87.74 64.20 75.37 14.45 96.70 59.94 99.26 63.69 11.21 30.81 10.86 90.65 26.51 60.39 49.44 -51.46 4.78 27.99 24.99 10.30 26.77 55.77 77.66 64.83 80.96 91.56 36.35 63.20 83.70 81.40 71.28 84.82 79.42 49.78 40.80 42.97 94.67 50.49 12.01 68.58 59.38 95.81 99.93 96.63 28.35 99.70 16.97 33.63 81.51 23.70 69.31 24.79 79.06 4.22 46.95 4.98 51.91 48.34 64.79 31.25 42.74 12.62 98.36 80.36 62.67 8.19 17.46 66.77 26.75 18.15 20.93 73.19 78.16 66.22 99.38 68.91 34.03 97.83 20.61 99.50 43.33 95.76 43.61 8.39 46.93 75.73 9.89 96.79 96.32 33.07 78.88 23.53 42.19 21.24 87.14 67.51 2.63 60.65 36.77 56.90 24.16 28.32 28.97 73.31 3.35 38.86 84.37 60.30 51.92 12.29 99.60 84.60 86.89 54.69 91.93 -11.86 87.55 15.10 27.98 98.45 20.51 28.59 26.45 30.48 13.12 97.37 39.17 69.94 27.02 6.41 80.51 55.06 73.83 44.00 36.73 61.86 89.96 45.54 47.63 71.98 47.03 94.29 22.74 11.56 6.06 2.80 39.59 18.21 15.87 49.51 78.19 72.10 51.97 39.06 68.51 21.75 34.14 19.73 25.90 75.66 80.63 93.46 86.31 47.91 88.22 91.84 38.20 88.66 13.81 77.91 37.26 22.06 86.44 47.34 5.50 33.05 74.33 33.60 9.32 23.34 57.35 38.71 16.83 87.43 90.23 67.95 41.49 88.60 12.92 34.01 86.65 92.79 29.91 18.79 16.45 28.18 58.22 68.50 13.30 65.76 55.63 79.85 15.08 47.76 51.63 64.68 97.56 76.52 77.01 8.68 50.89 30.51 58.93 56.91 51.42 -87.63 20.87 42.19 43.92 32.07 90.56 19.93 32.61 87.54 35.25 73.75 25.33 87.71 68.58 6.69 14.61 53.81 24.39 49.30 42.17 53.70 53.67 77.52 24.05 57.95 42.86 60.70 80.90 5.90 78.63 17.52 0.86 58.49 73.84 97.79 17.06 59.09 87.40 99.74 13.11 60.40 46.77 72.53 31.21 31.18 36.56 7.14 82.87 0.69 86.15 81.00 35.70 6.54 82.93 27.81 90.04 45.14 53.24 50.11 92.46 32.73 6.73 42.21 5.17 44.36 33.79 79.34 15.99 72.88 30.67 88.39 16.80 35.14 70.82 11.79 5.30 49.83 3.96 7.34 71.80 23.42 42.69 4.14 62.29 65.29 93.97 34.77 41.43 87.25 91.04 74.35 82.71 38.61 43.79 12.69 81.02 64.02 86.77 96.46 73.37 -89.95 34.73 54.10 71.99 59.42 18.41 42.44 24.69 93.81 31.36 89.75 26.34 3.45 8.96 11.03 93.58 6.73 42.74 1.72 80.79 16.21 75.85 51.69 26.76 42.74 31.95 76.24 63.31 71.81 43.31 63.90 57.07 98.16 65.01 22.06 25.67 39.86 3.80 74.80 59.75 66.50 11.27 81.99 62.44 85.89 6.09 43.57 58.30 71.64 74.36 36.26 49.07 80.48 64.71 21.22 25.76 44.27 23.57 47.40 83.98 14.20 47.79 84.59 97.87 0.95 24.53 60.51 12.49 78.25 48.20 72.38 72.58 3.55 44.26 62.38 51.83 22.61 50.64 76.57 74.31 9.77 67.25 75.07 16.27 96.01 19.06 80.58 26.02 80.15 26.68 61.45 23.31 52.50 70.39 73.09 86.49 67.08 26.00 86.75 20.63 -68.93 83.03 2.06 50.78 33.59 61.07 88.36 10.66 30.09 98.73 46.02 93.77 23.70 77.03 71.36 12.42 55.16 16.16 48.43 72.06 68.10 9.55 13.41 70.58 83.55 57.49 97.63 94.20 70.20 44.53 92.41 41.74 22.87 36.45 56.58 31.30 30.90 88.70 93.43 33.62 61.04 88.12 33.05 5.54 54.11 10.21 35.59 56.38 54.81 10.15 25.01 17.33 70.75 89.94 98.64 68.70 81.35 93.95 82.94 91.54 75.43 95.39 1.69 86.97 29.72 85.15 5.31 86.33 73.37 70.99 26.73 79.16 93.01 1.39 6.43 53.60 46.04 36.06 46.87 43.69 48.33 94.53 79.43 13.71 29.20 98.17 78.34 4.99 89.42 12.90 54.49 51.39 60.60 83.71 76.44 98.54 17.25 60.10 73.50 44.59 -24.59 93.81 68.18 78.69 8.90 66.99 61.90 58.90 43.64 49.85 44.40 47.55 32.41 16.39 43.18 3.74 38.74 18.44 92.81 55.77 88.75 25.97 57.98 76.23 62.76 60.09 60.92 51.23 53.33 76.67 2.57 91.08 84.42 81.21 2.91 41.92 9.95 97.37 21.62 48.28 1.98 45.92 53.76 62.94 36.87 88.19 32.68 62.00 51.90 45.51 22.89 11.64 86.55 76.77 42.70 35.75 55.00 24.56 2.52 68.89 60.37 25.83 42.85 94.56 33.39 47.14 73.43 96.75 44.77 88.42 94.26 73.69 48.32 68.04 10.65 2.11 6.45 57.67 66.29 78.84 47.12 94.57 42.59 89.33 23.05 72.11 28.90 46.09 22.05 31.65 66.97 42.43 94.09 91.38 61.56 71.82 50.90 98.96 97.37 21.27 -64.61 9.21 54.36 89.95 74.83 82.76 18.52 76.32 65.05 40.08 84.74 57.90 72.03 27.86 13.29 0.46 14.45 10.69 7.07 19.86 81.06 30.37 78.36 33.17 20.00 16.93 43.54 84.43 39.08 62.34 51.26 19.31 65.01 79.53 91.32 29.67 11.93 18.93 76.17 95.26 82.27 2.99 36.95 57.46 95.24 7.84 16.15 80.96 19.99 0.83 5.96 93.79 63.68 85.40 64.30 11.25 30.03 30.74 75.28 46.05 11.60 90.57 17.44 22.34 92.49 77.19 61.04 90.94 92.96 73.96 40.24 79.66 89.80 63.84 0.06 15.26 91.00 21.41 64.26 62.40 99.19 29.14 7.93 92.50 20.17 30.45 80.38 19.44 0.21 68.70 2.40 59.99 24.58 79.62 93.13 60.06 28.69 45.86 99.78 58.64 -43.88 48.92 35.15 12.05 75.87 94.43 62.09 32.15 27.46 87.01 45.74 74.90 36.28 14.17 41.53 13.83 39.65 75.64 5.98 47.87 42.17 23.18 77.49 14.58 26.55 11.46 91.11 29.20 37.02 88.31 67.62 95.87 92.41 58.64 68.33 21.42 39.30 16.00 4.38 53.34 83.96 31.00 5.69 27.31 25.58 85.41 16.00 23.87 11.96 59.11 98.45 77.74 60.29 28.50 59.64 48.67 31.97 83.70 95.64 43.22 63.13 86.51 99.43 75.52 33.79 56.46 23.47 34.67 18.10 30.41 0.99 67.43 72.19 16.07 96.57 40.28 24.41 93.15 72.41 74.71 76.03 4.42 83.39 80.54 59.38 23.99 80.72 8.07 98.10 29.70 20.38 93.22 94.65 66.77 22.23 50.01 2.94 79.13 25.67 16.38 -66.49 69.25 50.87 80.17 70.22 11.59 81.73 89.92 65.23 23.85 47.04 28.21 46.21 65.98 5.94 77.31 44.83 85.49 43.18 46.08 82.72 18.39 62.79 4.99 26.07 10.14 59.70 24.94 37.24 65.86 62.24 22.99 32.60 66.69 12.28 12.26 20.32 29.70 98.38 90.47 87.65 61.11 25.82 72.98 19.95 85.90 86.96 60.95 11.14 70.29 38.88 20.59 28.69 16.41 38.60 26.81 69.76 43.11 78.93 47.30 19.55 23.00 4.94 60.76 52.31 36.36 87.77 49.09 86.17 39.41 75.77 92.92 19.74 87.72 95.15 16.54 87.35 87.13 92.81 22.37 63.54 94.91 35.04 93.23 31.29 72.70 89.66 17.67 32.69 83.97 37.02 11.06 33.96 18.77 82.39 2.60 56.97 35.53 42.73 92.15 -97.60 34.42 10.64 56.59 10.72 25.92 78.25 40.85 80.52 91.48 54.67 51.19 12.42 35.35 43.82 75.04 92.49 11.48 25.31 22.45 21.26 6.31 67.17 58.78 11.16 47.76 2.74 65.74 95.01 14.30 7.70 26.71 30.53 75.47 88.68 50.01 27.75 86.87 73.79 86.69 65.22 24.58 45.48 58.06 23.66 89.32 69.32 99.17 60.40 33.31 90.10 0.54 37.41 78.77 58.04 53.93 85.53 72.51 36.79 85.08 7.36 19.74 70.39 73.81 27.64 59.90 89.39 79.10 82.18 53.00 19.94 55.66 21.07 91.16 48.50 16.83 43.96 0.84 74.84 26.41 41.77 61.95 29.62 91.84 78.14 95.70 13.98 39.43 34.21 98.51 63.21 63.37 93.48 69.58 7.87 1.67 24.86 37.44 60.05 55.61 -92.84 97.09 33.09 64.89 82.12 2.91 95.86 89.39 80.95 43.94 31.29 40.08 63.80 47.61 5.38 89.68 8.84 61.29 7.94 21.28 22.72 41.57 18.03 0.67 10.46 23.10 23.11 88.45 93.20 15.14 41.54 37.33 11.36 2.50 19.15 44.06 19.03 59.04 57.82 67.03 41.54 17.88 57.75 70.80 66.00 58.80 92.51 67.67 68.19 90.09 81.47 67.77 3.13 67.69 4.56 90.51 41.29 87.05 3.51 3.24 98.46 15.71 9.88 70.39 15.76 33.17 18.02 58.60 23.44 75.81 48.41 97.67 4.85 78.31 62.85 2.88 26.83 59.63 59.04 17.22 69.74 9.62 9.06 42.84 31.11 88.13 85.63 59.28 83.26 57.76 35.32 70.69 38.02 37.98 82.17 0.32 31.37 66.97 24.43 34.79 -45.90 28.99 6.22 5.58 40.60 1.58 65.28 64.80 71.25 10.92 19.63 45.71 19.38 17.85 80.56 20.84 9.39 65.98 73.12 64.90 94.59 14.78 7.50 35.01 35.12 48.91 47.61 55.69 61.78 58.98 8.29 42.29 68.05 59.93 20.88 43.71 80.90 37.72 7.23 42.66 41.08 93.18 79.64 94.88 83.23 15.66 85.92 89.44 36.18 75.11 20.54 66.83 77.87 45.86 74.36 16.53 86.23 11.18 33.83 23.27 70.77 62.02 67.53 80.60 71.36 45.78 2.40 99.77 35.63 21.60 29.79 98.17 68.03 47.89 96.89 34.20 40.49 28.52 85.33 38.56 90.75 7.07 84.44 5.51 92.70 28.20 99.00 86.33 15.32 35.01 63.70 98.90 85.42 42.67 18.48 21.62 64.46 25.02 60.68 10.44 -7.15 88.00 97.55 40.93 80.82 47.97 24.51 60.47 66.81 46.20 18.18 83.61 66.75 97.08 30.80 46.01 37.34 25.77 65.14 0.58 67.82 16.36 67.97 40.26 94.94 86.65 56.02 51.20 88.82 88.33 64.41 72.51 98.67 49.73 15.72 96.86 22.18 82.59 23.41 80.47 1.25 69.33 63.94 24.64 95.35 58.18 13.02 47.26 32.69 29.08 27.61 34.57 22.32 57.60 91.17 22.08 95.43 15.28 89.28 55.12 0.22 13.98 64.30 54.07 72.36 49.69 91.99 29.98 21.18 14.72 20.60 78.83 73.62 25.35 3.24 41.81 8.85 82.41 20.66 17.55 5.67 50.61 42.71 14.23 84.31 5.33 97.69 86.02 25.70 73.40 70.39 37.57 89.63 19.80 13.97 61.71 76.78 95.42 14.03 58.60 -82.91 3.27 79.18 4.39 37.65 34.75 59.32 97.19 89.15 43.62 68.69 13.60 42.85 98.71 47.61 21.17 53.43 44.89 81.15 69.48 86.37 37.86 21.72 98.46 79.14 5.39 88.27 5.12 33.05 2.28 12.31 6.84 58.21 9.67 11.09 67.56 25.05 43.46 19.87 11.56 24.70 53.46 88.87 81.65 85.09 28.18 76.02 94.39 42.11 69.97 22.93 92.83 92.49 40.85 63.50 28.56 21.39 84.56 49.51 92.54 80.64 33.83 48.56 98.77 68.46 63.99 78.70 32.41 79.17 84.81 57.16 60.80 79.52 4.13 54.61 25.65 68.70 46.52 87.07 0.77 62.48 36.43 85.39 16.40 32.06 22.29 27.82 44.46 2.52 98.66 73.71 98.51 68.52 67.03 72.40 21.13 14.59 95.67 23.36 91.55 -55.44 51.42 98.39 89.66 62.79 82.88 37.36 82.87 69.15 17.35 58.08 97.00 94.81 55.14 2.71 19.15 51.54 44.68 0.33 99.78 87.39 63.05 90.39 71.89 45.70 88.30 64.62 85.71 39.71 57.78 95.57 23.32 65.06 28.00 55.85 41.44 12.82 31.57 59.50 84.30 40.42 43.12 6.33 68.96 38.05 45.35 8.52 94.35 59.25 96.18 61.98 24.78 3.48 28.73 71.18 0.32 68.02 78.30 52.65 48.12 16.09 95.47 41.49 88.04 50.36 36.24 38.56 66.68 29.75 3.08 29.04 66.85 87.44 96.79 88.46 28.00 81.22 86.17 5.51 12.91 11.81 50.13 23.72 82.80 19.26 79.09 63.87 76.06 13.87 85.20 8.13 67.28 88.52 36.90 26.73 1.10 22.91 14.95 99.89 12.86 -42.18 10.29 61.12 41.14 69.53 41.15 16.89 22.12 33.36 41.42 15.08 98.65 38.70 11.06 69.45 32.92 78.54 61.72 21.46 18.52 79.67 46.22 47.18 91.07 29.57 4.10 5.84 21.47 95.74 56.89 60.69 10.90 94.03 36.82 19.52 74.52 48.73 80.33 49.37 58.97 46.26 46.39 88.44 70.12 55.80 27.27 34.25 27.35 8.28 44.91 48.03 32.85 18.50 2.13 49.49 62.41 17.65 46.49 22.10 99.10 81.63 71.49 6.09 88.60 12.47 16.73 58.16 54.85 1.74 89.93 98.90 94.16 39.82 44.41 49.99 8.43 45.33 47.74 20.31 88.37 83.14 67.78 74.26 21.65 66.75 13.90 53.65 90.82 1.01 88.00 83.11 13.70 71.70 50.03 64.09 94.68 29.80 36.91 55.08 96.43 -14.69 35.14 66.01 9.67 67.94 88.86 19.63 16.55 46.54 1.75 60.57 35.95 99.66 85.24 19.95 74.71 34.83 2.90 4.12 4.18 93.16 83.79 91.66 52.94 50.73 38.22 36.50 13.56 22.30 82.68 23.54 71.67 24.68 48.34 69.82 57.02 2.70 7.15 83.14 85.56 43.84 81.13 92.09 2.65 90.48 16.09 15.89 11.56 10.01 37.69 21.16 72.36 73.02 75.63 28.57 6.61 74.10 90.52 84.35 43.17 41.57 35.33 16.61 40.66 12.90 1.29 74.47 1.43 81.98 85.19 36.10 31.53 52.71 24.27 44.82 3.56 74.41 57.99 25.28 4.87 89.05 6.03 22.63 17.57 91.70 54.62 4.09 3.49 56.74 22.66 36.70 94.77 74.67 49.01 53.82 53.92 58.60 89.48 1.88 29.61 -69.00 2.96 35.31 47.74 42.26 16.44 47.86 7.53 93.86 65.04 37.08 8.61 76.10 70.17 31.19 79.01 34.37 73.19 82.73 94.33 5.32 92.79 10.69 18.64 83.31 81.13 47.98 75.09 66.83 68.03 60.19 22.38 22.79 29.79 3.80 43.99 92.27 57.56 4.87 38.65 51.84 54.45 61.06 19.71 1.57 30.24 36.57 87.14 58.22 61.85 12.31 53.66 75.41 31.18 30.95 12.13 3.30 60.23 27.79 68.67 95.29 39.78 82.15 83.70 95.52 49.92 24.06 82.04 36.10 63.68 55.97 10.55 66.49 24.88 30.28 87.27 82.63 24.23 29.27 3.78 82.85 15.40 63.77 64.85 56.70 52.82 82.00 53.32 65.52 55.61 39.59 5.30 43.78 18.92 0.34 81.42 64.13 15.86 67.87 40.87 -63.44 51.68 7.82 34.26 45.57 2.48 46.18 94.73 15.02 49.18 65.81 25.65 74.38 6.38 37.62 3.48 99.09 29.21 15.72 88.96 54.56 88.57 10.67 27.71 32.08 27.57 52.54 89.33 73.74 68.14 15.62 39.08 29.64 59.72 35.87 56.33 94.00 55.63 3.22 95.34 87.24 65.80 50.15 98.91 31.34 51.82 41.72 91.66 50.54 8.77 20.42 47.69 74.59 19.50 90.54 34.48 32.45 53.03 93.77 95.76 78.11 0.78 53.42 36.62 36.78 79.53 16.99 12.70 31.65 39.57 67.21 24.27 62.99 48.74 62.52 96.64 52.71 45.70 93.92 56.09 38.33 97.89 8.30 0.35 49.69 1.43 69.63 95.34 70.00 76.04 41.68 48.46 28.44 65.35 43.55 80.85 42.53 23.44 87.50 18.34 -15.23 16.59 41.94 68.34 27.86 58.94 95.39 13.80 34.98 41.68 8.85 54.85 33.59 42.29 70.22 39.98 34.75 13.85 95.84 64.36 81.98 46.20 1.79 97.54 55.43 39.43 45.51 87.69 50.58 89.34 36.19 77.09 49.57 34.00 31.82 48.39 91.60 66.54 92.88 53.64 59.73 88.83 80.08 2.56 21.42 11.11 76.86 28.47 3.14 89.31 66.68 67.87 23.97 46.39 23.51 27.51 40.42 41.10 17.28 76.53 78.55 1.46 30.44 39.05 21.24 44.14 59.23 72.19 54.93 45.16 83.51 16.46 27.84 59.01 95.24 62.88 12.72 52.84 17.56 52.44 13.69 5.28 31.63 17.61 58.02 52.72 27.84 68.82 87.40 93.76 62.91 18.59 83.03 27.74 37.86 84.26 33.99 98.75 63.48 38.22 -62.27 73.25 2.14 16.30 76.95 79.53 93.41 79.66 85.90 97.50 89.98 79.08 37.71 40.57 31.17 9.70 75.09 2.61 2.41 17.47 38.57 65.03 45.78 38.99 95.43 91.86 61.73 6.32 89.32 41.29 49.91 48.25 66.34 8.39 49.34 92.95 81.12 7.86 44.47 75.03 10.10 59.01 37.67 2.29 74.99 68.80 25.02 29.19 66.43 54.55 21.88 74.55 36.34 6.47 64.47 16.67 39.69 31.03 94.19 3.73 44.04 74.83 60.85 7.85 25.29 25.75 82.81 96.46 12.13 40.85 70.05 46.34 99.14 51.54 60.14 42.66 60.70 28.91 74.60 74.32 66.94 20.23 7.53 30.21 98.01 15.62 59.44 52.52 21.74 8.36 94.03 17.25 16.65 63.68 16.32 21.96 32.31 48.97 2.42 85.50 -74.27 31.96 0.91 72.57 47.77 79.59 69.06 73.10 27.90 75.38 86.32 67.84 73.52 90.89 26.15 53.26 98.43 79.39 96.90 75.40 19.12 53.38 99.77 33.04 62.37 11.32 77.24 60.98 2.88 56.08 18.57 85.45 16.03 46.34 20.46 21.01 72.35 97.28 31.05 55.77 95.98 35.86 14.41 41.11 55.16 28.50 48.19 21.12 51.66 3.13 51.11 94.59 74.48 86.46 99.53 76.71 4.74 90.48 37.96 48.72 81.79 19.11 33.40 93.95 0.86 57.39 59.43 28.66 89.92 68.06 51.45 57.37 58.06 10.16 15.22 72.05 9.72 12.77 55.11 31.71 74.91 32.34 14.94 74.18 35.12 72.94 21.04 84.28 83.96 50.08 58.33 91.26 99.26 39.32 10.43 6.24 28.03 4.25 66.92 41.47 -82.13 64.26 66.29 39.64 65.52 87.06 47.93 66.37 90.48 34.48 95.15 36.85 22.65 63.23 49.40 29.79 44.06 22.44 89.15 37.08 79.67 68.02 86.81 44.95 83.84 8.69 0.17 30.20 40.20 23.87 73.45 61.91 56.60 74.96 34.31 51.14 63.74 64.42 62.67 26.73 41.72 25.27 97.44 32.87 47.25 87.78 92.51 46.34 42.08 63.84 42.64 96.94 36.15 47.79 3.04 4.20 57.17 59.23 81.58 98.07 24.08 24.53 21.06 37.43 50.94 37.06 49.32 23.26 14.36 71.89 16.66 89.08 46.36 95.25 55.68 27.66 52.82 71.56 62.40 91.19 96.12 9.09 3.02 46.01 3.34 64.96 23.73 42.57 71.50 35.92 53.68 93.31 54.92 80.95 83.09 10.66 28.98 36.94 53.52 65.30 -2.29 1.78 31.51 17.28 90.56 84.37 88.50 32.76 14.95 58.46 24.78 64.26 8.80 9.06 15.54 0.49 41.18 36.83 70.49 32.58 43.93 98.79 32.88 75.71 42.26 7.50 69.56 25.26 39.84 70.61 0.73 27.93 94.71 63.54 51.60 89.72 86.31 26.71 16.91 0.07 9.80 63.61 69.80 14.28 15.98 47.27 82.71 49.33 6.48 80.91 57.42 38.55 35.60 98.59 98.26 97.35 37.32 62.53 64.90 57.82 88.48 58.85 24.33 10.53 75.61 15.57 92.71 5.92 61.01 9.65 93.53 44.64 7.86 75.69 6.78 15.34 76.78 16.77 44.49 70.36 27.26 74.91 58.34 15.65 44.12 92.66 79.97 93.28 64.49 42.02 45.82 33.63 53.63 97.09 47.58 38.27 84.32 39.40 45.55 75.70 -22.10 33.24 54.38 4.60 68.80 14.64 29.22 38.67 64.70 1.15 69.33 25.16 7.00 73.41 97.75 57.90 49.46 10.95 38.13 63.03 20.44 32.21 31.13 90.73 45.31 39.93 10.02 66.24 21.46 94.19 99.90 5.65 52.31 46.13 29.50 95.40 78.58 89.32 4.13 53.67 72.99 51.84 66.33 76.62 20.48 1.16 81.38 10.68 53.93 71.34 3.00 83.99 25.83 29.18 29.95 43.25 41.97 64.94 7.34 85.55 60.26 52.63 94.32 46.69 81.92 58.58 36.79 92.40 18.89 14.77 13.48 1.88 10.31 52.53 65.01 72.87 52.61 5.26 90.17 69.22 9.04 12.74 54.83 25.71 89.42 44.03 74.21 26.55 3.37 43.79 99.32 21.73 32.60 73.86 4.39 56.68 56.04 93.54 81.49 68.76 -73.62 46.00 40.18 50.61 70.57 95.91 79.20 36.64 99.01 79.17 38.36 24.39 96.15 92.11 81.22 95.91 89.92 44.05 1.77 64.24 53.18 77.36 40.75 91.40 53.58 52.70 22.03 6.78 48.08 5.82 15.23 74.62 80.42 97.51 70.78 1.18 97.47 98.26 6.91 47.02 54.00 84.30 4.32 82.21 55.01 67.10 87.63 40.38 90.87 90.03 53.81 37.60 96.70 26.99 95.33 29.28 48.24 94.09 93.04 75.07 43.37 3.45 33.13 87.13 13.66 82.89 26.91 64.59 17.78 68.03 36.84 18.70 90.59 85.74 44.10 26.13 76.99 31.15 31.14 3.41 25.50 20.22 7.28 97.03 78.44 99.65 19.56 72.56 47.48 46.67 29.31 6.22 43.80 38.06 71.34 89.19 49.85 51.36 46.22 56.07 -4.82 38.78 53.51 11.66 99.88 72.46 23.17 31.42 88.75 40.63 39.05 0.14 40.26 82.94 36.95 92.58 0.15 4.88 33.98 45.84 26.05 55.11 17.46 78.52 22.00 45.51 12.54 85.97 65.03 37.23 39.04 83.37 91.54 39.87 36.49 11.69 54.77 91.28 41.25 93.82 60.05 48.38 97.74 30.09 71.01 44.55 2.85 84.99 17.47 55.43 50.58 95.57 37.55 41.05 66.03 81.42 86.45 22.04 12.13 35.10 28.47 21.70 66.31 12.58 40.40 59.82 74.73 78.19 66.24 52.71 56.35 0.78 37.47 69.05 23.80 22.59 44.01 18.33 29.41 7.27 67.51 0.05 46.96 69.96 25.39 58.31 1.93 61.69 29.49 86.39 42.14 70.99 94.49 69.04 69.59 43.35 24.82 0.67 83.18 16.80 -22.57 75.56 12.65 39.20 59.43 73.56 59.72 65.11 94.49 91.15 44.32 53.20 53.19 40.69 55.95 61.95 88.88 50.98 0.53 27.29 42.30 98.81 44.67 26.20 37.76 38.46 34.16 52.14 82.48 0.50 20.50 75.63 34.14 79.29 36.26 57.56 47.14 28.42 22.94 69.71 2.10 98.71 95.17 64.07 91.82 23.20 41.77 48.94 26.71 10.14 50.98 69.38 36.71 97.29 77.33 9.03 41.89 69.75 65.86 60.06 23.68 6.47 26.29 89.13 6.17 11.79 62.43 32.83 59.11 15.67 36.07 40.82 10.61 81.78 95.18 64.67 16.12 13.94 2.51 14.85 58.47 34.18 77.05 38.84 2.83 29.07 14.94 84.32 36.74 89.76 59.66 29.23 33.31 26.81 41.33 81.87 33.82 26.10 21.06 68.34 -39.74 30.51 47.20 19.69 55.85 31.06 32.18 76.00 48.84 26.27 18.56 32.65 67.71 66.92 91.44 52.20 26.92 17.06 46.18 68.95 81.46 39.39 11.32 9.85 70.08 56.35 94.01 6.92 68.00 7.50 22.77 36.47 36.46 64.79 23.68 11.84 46.06 94.20 3.01 80.40 55.80 34.03 31.33 47.15 14.07 38.65 57.59 55.07 28.70 39.16 9.77 47.02 95.38 48.27 33.94 58.77 69.01 87.64 9.80 57.37 42.65 10.43 67.20 17.80 92.29 0.92 30.60 19.57 19.14 79.02 18.64 26.51 15.63 97.48 92.06 47.74 14.86 48.15 20.37 18.53 87.66 53.78 44.11 99.60 74.41 1.88 71.64 36.87 63.31 47.20 21.78 53.11 44.69 20.81 32.19 99.63 26.64 14.26 27.15 50.24 -77.33 8.77 15.27 16.94 20.59 78.77 41.21 41.05 98.70 73.01 75.07 45.75 56.59 88.56 42.68 23.26 17.15 91.56 4.16 56.76 51.78 7.67 27.48 39.50 56.81 36.93 18.92 12.80 23.59 75.19 44.91 44.40 83.10 40.26 16.74 12.40 29.87 60.00 18.83 42.08 68.09 68.97 59.20 15.70 79.60 38.32 88.89 69.83 39.37 7.73 65.26 57.56 82.63 99.91 0.68 43.72 1.85 1.25 51.12 29.48 44.74 10.42 12.58 98.15 87.62 69.48 8.40 73.71 8.68 74.29 98.64 97.06 42.63 84.18 61.16 80.91 6.73 77.67 12.96 59.90 82.91 66.30 37.47 85.13 26.96 24.81 66.27 79.47 3.04 83.34 39.02 21.75 11.72 36.96 1.22 53.23 89.68 14.57 6.20 51.79 -82.19 94.85 64.28 10.30 35.11 59.86 38.61 65.51 82.48 37.21 94.77 68.46 37.28 25.59 16.72 44.30 50.62 6.87 28.23 30.01 85.60 41.79 25.86 76.03 27.86 75.85 76.86 27.15 6.64 95.33 2.32 58.82 54.17 14.96 47.17 52.57 75.56 27.59 32.62 28.43 39.19 30.10 33.04 68.66 9.54 75.37 33.92 23.15 69.41 80.51 8.69 87.07 82.75 15.74 11.84 93.21 11.36 15.46 64.98 53.41 91.45 31.10 50.60 68.47 99.16 8.75 42.04 84.12 20.84 31.73 86.42 11.66 35.74 73.93 41.16 32.34 21.60 17.99 6.90 78.77 9.82 50.84 6.40 85.49 24.81 90.63 63.69 4.19 41.31 26.30 29.05 87.05 10.78 23.45 5.81 75.12 14.05 40.17 99.59 31.07 -3.53 72.95 36.01 53.20 19.98 76.23 24.74 45.70 91.15 84.43 68.64 16.14 5.15 57.36 39.07 4.04 51.65 13.25 57.07 65.25 70.60 55.37 60.00 91.19 46.77 51.32 2.03 51.58 69.24 15.56 32.26 94.36 96.77 41.02 66.08 50.45 0.21 10.39 1.72 26.84 76.43 35.30 46.26 42.65 93.12 92.22 51.46 39.52 57.09 2.56 45.89 99.56 1.31 71.81 62.03 55.04 18.49 60.52 47.16 33.95 46.58 44.38 21.77 80.12 96.20 38.57 41.05 39.54 16.16 43.43 51.67 70.61 47.70 76.66 10.89 23.12 84.99 19.54 21.09 79.17 43.97 64.67 59.13 91.93 10.91 20.06 28.15 85.17 7.80 43.65 90.65 61.39 17.91 41.60 56.76 31.14 12.51 57.19 46.64 57.61 -11.05 17.65 63.74 98.25 62.34 46.00 80.28 63.61 52.96 90.82 45.76 57.99 17.53 32.69 64.83 53.91 5.40 81.02 93.64 43.55 70.95 26.08 59.92 63.95 63.36 38.91 42.89 48.10 45.91 99.34 81.98 74.25 23.60 31.14 49.28 45.88 36.15 44.33 6.60 17.27 38.64 72.33 78.78 14.83 66.86 71.92 40.29 95.96 9.49 75.94 73.82 48.82 37.20 1.36 98.14 45.92 98.88 39.70 26.21 11.72 34.44 66.96 58.86 67.95 15.73 97.11 53.28 37.94 73.51 53.20 21.82 88.63 34.08 30.19 73.28 72.81 59.88 64.51 80.29 27.91 84.94 27.47 52.69 26.63 92.02 97.50 76.39 59.79 65.58 74.09 26.30 97.91 13.16 23.67 5.34 68.66 79.68 40.93 16.85 76.11 -40.75 41.89 65.75 53.34 39.98 44.76 50.20 75.54 55.70 74.71 73.88 76.59 59.77 6.68 79.85 93.33 93.75 49.83 28.19 54.46 47.22 15.02 67.08 20.70 3.33 72.81 62.39 97.33 65.78 70.93 99.85 26.84 41.51 67.69 2.38 32.34 31.69 50.21 33.90 71.95 35.26 67.18 57.19 96.92 46.88 1.34 79.19 99.25 87.73 95.72 67.27 97.43 83.41 72.20 54.05 22.16 49.82 57.84 38.53 60.58 65.33 26.18 57.30 86.94 47.03 38.12 13.48 31.01 57.70 2.91 58.21 20.05 25.25 5.68 5.77 5.90 53.73 67.16 77.31 60.24 20.62 93.65 34.18 27.76 97.30 69.84 80.82 55.87 74.30 72.23 30.86 21.68 38.05 83.17 50.12 54.92 8.87 48.01 1.32 11.88 -60.33 15.84 77.11 35.92 89.67 97.91 93.86 17.95 1.18 99.84 90.58 41.86 8.86 31.99 50.24 23.16 31.76 1.17 56.10 62.34 22.51 29.92 47.03 54.36 32.28 74.87 73.23 7.45 67.58 15.72 94.56 0.23 90.14 91.49 97.08 23.77 10.35 22.09 97.73 43.48 51.78 10.34 47.41 73.87 25.06 84.25 63.89 75.13 26.09 24.21 74.13 27.20 60.89 59.14 97.39 59.13 78.50 19.44 3.05 45.17 46.48 28.37 6.82 46.03 17.92 5.79 97.87 79.61 83.66 96.37 53.44 32.65 63.90 26.86 44.03 52.66 3.49 44.39 47.61 88.42 50.85 39.72 15.59 72.55 45.59 21.96 20.09 2.30 48.54 46.15 89.50 44.69 86.65 54.78 62.44 16.16 40.38 11.41 36.88 68.58 -71.25 37.98 53.27 6.36 3.04 27.80 44.48 87.88 12.12 35.66 69.14 60.07 21.82 82.49 41.24 98.69 26.42 6.08 8.86 86.55 78.49 72.72 12.98 87.55 87.42 15.01 66.35 2.90 54.71 70.68 80.31 23.61 33.22 93.87 27.16 39.61 76.71 69.81 59.47 11.66 85.28 39.29 40.94 79.39 23.25 7.45 47.45 42.43 21.98 54.22 17.63 29.33 75.92 31.54 26.58 5.14 28.55 10.48 88.02 90.92 63.12 24.99 30.58 25.18 59.36 91.69 8.40 10.79 83.58 75.61 46.12 78.52 26.97 90.22 93.63 45.49 20.50 25.69 73.17 21.34 69.30 21.39 81.45 38.70 11.53 60.08 56.17 60.92 6.78 73.20 14.15 36.16 68.68 12.52 18.80 90.29 28.29 99.45 43.23 82.58 -33.09 86.46 51.43 7.06 40.66 36.90 83.11 25.70 43.08 65.15 10.86 76.23 18.76 49.51 21.16 60.97 9.57 23.78 86.31 45.93 39.93 55.85 13.69 35.71 58.86 47.21 61.34 3.42 90.93 63.47 84.53 12.48 90.08 5.96 47.28 15.87 3.00 60.37 16.31 48.08 45.46 74.14 9.53 91.61 73.42 73.65 47.80 1.29 98.67 4.56 28.57 59.60 43.97 4.98 75.10 3.00 19.42 75.75 49.08 67.28 76.63 15.08 22.11 35.57 94.36 45.80 61.43 20.12 67.27 2.95 9.72 31.83 3.60 47.05 66.86 0.27 75.03 13.07 12.47 65.69 64.39 2.99 29.91 61.24 74.79 89.22 67.02 93.87 50.20 81.40 7.46 24.30 93.25 45.39 4.16 75.94 87.66 32.29 56.87 21.96 -71.03 2.63 2.50 65.43 67.58 86.07 86.63 7.07 94.96 76.25 85.01 62.60 13.15 26.24 19.15 75.03 74.09 65.78 57.44 59.53 24.71 25.81 83.24 57.89 5.71 76.39 76.53 15.52 52.29 66.16 73.05 79.60 37.00 26.45 74.40 51.59 54.02 52.58 53.18 92.01 94.28 14.24 86.62 87.31 49.73 95.76 90.21 30.37 19.13 96.97 24.60 76.62 29.55 42.46 52.23 52.28 72.84 86.49 47.60 81.09 95.27 12.62 77.94 40.43 62.74 9.11 21.86 85.84 71.45 30.48 88.37 69.13 92.39 71.53 85.28 5.03 80.15 20.99 39.90 83.26 40.13 50.09 48.25 80.43 3.83 23.81 34.63 65.96 68.80 20.31 84.72 14.33 9.91 46.86 41.40 86.62 84.44 58.05 26.12 62.06 -22.59 24.09 80.63 89.96 18.93 58.13 4.86 21.74 69.47 32.98 35.74 39.00 60.78 29.15 11.32 41.01 93.48 19.57 81.54 84.67 99.37 75.57 50.94 50.22 35.95 45.76 46.57 65.55 9.01 42.33 28.50 75.80 2.33 6.16 26.76 97.71 13.38 31.09 47.98 18.00 21.84 69.97 27.27 38.83 23.52 98.34 86.46 10.83 86.54 24.08 76.76 81.64 11.10 86.30 1.36 82.18 56.34 53.90 69.67 34.83 7.28 87.98 38.66 29.40 46.36 80.25 43.27 95.51 86.86 12.96 21.21 49.90 41.09 46.38 83.98 35.34 25.28 37.10 81.07 11.67 97.43 49.13 50.65 32.46 15.21 13.96 42.50 81.48 25.79 11.51 41.66 2.76 62.58 12.71 70.25 40.80 46.54 13.77 9.94 16.79 -85.95 32.17 13.00 93.04 39.38 47.61 61.25 68.05 28.24 88.62 79.95 67.94 59.59 94.95 77.47 8.86 52.58 18.47 50.86 33.02 65.85 10.11 58.36 55.34 68.67 93.24 62.91 27.65 6.41 30.16 90.08 2.95 92.21 18.85 64.63 52.05 61.30 21.06 59.64 78.29 54.55 57.67 9.58 25.94 77.90 97.57 7.33 4.50 11.96 77.09 81.37 71.30 47.55 4.79 61.93 56.80 16.44 76.31 61.29 27.64 41.80 84.80 12.72 5.28 54.67 66.17 79.77 52.83 7.22 27.70 81.94 40.44 90.08 56.45 19.76 91.76 25.74 49.34 24.37 56.40 64.86 29.58 90.57 54.94 13.52 13.05 5.52 54.84 24.52 56.82 26.43 69.17 31.16 12.93 73.76 77.05 63.06 51.64 10.85 71.32 -90.90 16.79 20.46 27.82 61.86 10.54 3.41 21.70 11.66 69.36 17.70 59.80 77.14 22.80 45.01 91.50 89.27 17.48 27.36 67.60 27.46 67.62 27.65 88.86 61.27 29.99 37.15 38.22 30.10 37.77 28.96 90.18 78.72 9.08 61.01 67.29 94.68 82.00 52.71 46.45 19.41 57.00 56.75 13.80 29.12 74.35 48.64 19.41 24.84 78.43 51.50 57.83 40.77 43.40 19.92 33.75 88.95 77.39 48.15 72.33 57.48 8.18 82.81 51.13 18.24 12.78 62.57 31.96 26.40 94.20 9.66 24.11 40.74 73.35 16.92 61.50 63.27 55.67 33.59 94.13 49.30 45.44 74.53 52.94 54.61 11.98 9.00 49.13 35.66 53.30 13.81 42.18 46.56 25.82 63.37 6.67 93.15 32.55 76.96 40.38 -72.80 31.89 26.59 56.67 25.03 31.61 55.86 43.09 40.19 86.78 4.79 22.88 12.19 7.48 72.98 34.00 37.80 35.13 28.76 14.51 72.16 49.22 90.83 99.13 21.56 78.08 32.87 42.70 28.91 70.16 7.35 91.36 18.51 57.63 94.30 83.02 15.15 45.47 17.03 54.95 64.21 74.00 67.07 28.39 2.55 61.47 56.33 37.25 92.10 94.77 10.91 80.00 89.50 27.30 51.66 57.53 44.37 26.69 39.35 20.01 17.65 54.59 21.78 71.42 98.83 19.68 84.16 30.30 20.41 12.15 10.32 13.21 67.49 48.60 82.81 13.84 79.56 75.05 46.01 75.36 28.24 50.55 64.15 50.97 18.76 88.99 86.12 44.21 14.01 56.80 30.62 36.02 87.13 48.79 6.66 47.13 48.49 26.94 64.49 91.60 -21.30 88.39 39.47 64.79 75.73 3.52 96.89 52.16 68.82 36.59 19.37 44.81 74.96 90.23 92.05 73.07 53.32 64.53 25.22 86.68 2.54 85.30 65.10 9.17 46.27 14.39 90.83 75.08 29.63 99.58 85.21 49.53 79.12 57.83 45.03 33.24 37.40 33.37 19.70 38.86 60.10 95.88 24.13 61.40 31.60 41.23 88.81 16.79 73.93 17.42 2.54 18.56 48.48 81.18 72.23 70.73 88.40 21.51 57.29 10.91 80.95 34.91 41.25 8.08 70.99 42.41 75.61 97.27 37.21 67.55 8.52 39.46 88.20 92.05 58.68 87.26 36.88 53.57 66.82 33.95 89.27 8.66 53.52 61.92 55.80 38.63 74.43 6.54 33.50 51.22 77.71 93.72 5.91 72.62 24.71 86.97 26.05 72.04 55.89 39.35 -43.60 71.45 82.04 63.87 80.28 22.97 22.13 66.71 65.95 25.00 91.38 66.35 39.79 19.11 29.39 54.57 73.16 76.02 78.85 45.62 11.89 11.48 97.40 57.41 17.68 15.82 97.26 73.01 82.81 16.96 65.42 68.24 67.42 32.20 6.17 18.53 57.98 40.04 14.18 50.58 72.86 41.89 37.56 26.06 64.26 12.36 7.39 74.11 87.42 49.14 31.40 61.60 79.07 27.51 53.28 68.22 8.52 98.25 18.08 55.10 99.75 66.14 68.79 86.69 99.67 63.20 20.14 11.41 54.24 95.30 87.16 75.42 56.68 0.10 8.60 18.31 50.59 21.04 20.25 9.50 81.25 88.59 82.49 81.75 38.79 33.28 35.13 46.05 5.33 47.26 45.20 85.43 29.14 24.15 41.33 90.12 57.51 49.82 83.34 29.70 -74.54 36.72 69.02 37.61 25.43 97.53 51.62 38.27 17.88 40.92 85.83 80.00 58.76 75.40 3.79 77.37 86.99 59.61 24.21 43.19 95.34 47.39 97.61 52.36 44.14 56.11 24.43 18.53 28.17 3.26 16.69 87.71 79.86 87.82 10.17 92.14 9.28 53.86 23.32 48.77 96.44 40.98 13.43 24.87 28.58 54.24 61.73 38.87 68.75 58.98 68.96 3.38 84.79 12.03 88.99 67.81 99.42 5.87 47.39 55.55 91.33 82.45 47.98 38.71 91.75 7.47 39.27 80.92 80.21 29.55 98.40 36.80 28.65 3.77 39.46 15.04 11.01 86.43 36.43 64.23 61.95 75.94 13.51 21.92 58.97 91.80 87.84 31.48 16.34 12.03 19.68 74.81 89.64 72.36 25.51 39.47 63.35 87.97 98.92 86.27 -86.24 70.98 88.13 85.59 24.31 26.76 31.26 49.68 58.49 4.68 97.13 88.73 95.31 48.04 16.22 44.62 61.96 3.93 58.08 93.01 26.13 8.26 75.88 83.63 91.07 94.91 75.95 58.39 1.75 81.03 96.43 22.23 59.99 35.12 37.62 38.68 16.08 27.13 4.37 91.96 83.82 85.48 89.70 30.46 97.61 86.66 18.10 94.55 41.63 68.19 56.10 58.63 17.96 6.21 94.71 36.77 85.73 27.30 76.42 95.33 74.71 6.54 27.34 38.43 33.08 58.60 20.19 87.88 68.14 12.19 49.61 29.76 68.72 51.52 83.34 32.34 92.34 53.25 49.29 86.46 11.72 12.08 42.99 34.20 70.36 98.86 89.34 80.94 69.48 78.19 51.98 17.77 14.95 83.73 9.67 62.37 6.42 53.10 54.57 28.64 -22.57 45.20 1.31 3.24 42.54 17.31 78.85 67.94 77.04 99.85 40.81 26.89 33.38 14.07 89.58 19.85 40.42 85.63 4.92 90.23 91.35 32.46 65.09 56.91 26.63 15.30 69.42 23.90 92.43 6.50 94.47 77.14 58.94 71.61 43.47 91.17 19.31 93.61 58.52 85.62 51.94 95.61 59.52 33.20 99.41 43.91 88.24 91.42 20.80 88.08 14.64 53.16 1.04 86.54 31.41 98.43 76.76 39.66 69.66 12.94 0.03 14.00 77.91 41.26 43.07 81.36 60.35 84.67 74.27 44.85 91.73 12.87 14.91 89.15 11.16 32.84 54.27 49.08 93.37 40.57 46.42 51.58 75.29 32.76 88.55 91.78 4.88 18.61 14.90 80.28 9.93 54.07 2.68 39.62 97.29 13.13 74.98 88.34 34.90 32.98 -53.73 95.97 42.60 21.43 65.80 98.37 3.81 57.18 63.84 34.53 4.31 16.61 17.59 72.11 65.96 13.65 3.02 88.81 88.91 56.30 45.67 55.52 86.35 9.97 59.32 2.75 69.73 19.47 23.36 49.32 72.66 95.39 38.83 80.12 93.87 3.23 32.52 44.24 84.41 66.76 52.94 11.73 21.31 39.93 10.70 51.30 39.44 31.73 64.70 23.23 24.75 97.77 70.76 42.07 96.70 28.15 73.67 64.99 19.37 34.83 29.09 73.12 34.46 2.41 44.20 7.12 66.02 52.78 58.18 25.01 48.23 56.64 93.13 77.27 35.34 99.73 50.23 36.10 19.26 95.80 42.01 89.51 62.06 59.77 14.91 7.45 2.68 42.13 27.02 99.81 76.76 85.60 70.48 32.15 52.75 83.71 48.39 87.41 15.84 66.38 -50.35 52.12 73.43 65.07 7.09 4.52 14.46 90.66 10.09 28.62 80.67 30.41 7.03 73.30 27.55 21.42 29.68 77.91 35.69 82.52 69.17 92.32 82.63 51.82 58.68 48.45 68.16 57.22 40.61 45.66 85.08 29.88 51.38 68.37 88.88 44.60 10.80 39.10 69.34 94.86 10.90 65.14 75.73 2.57 24.05 24.23 77.15 33.23 31.85 57.03 65.91 15.71 29.90 81.49 13.13 65.44 65.77 91.30 55.86 60.45 82.17 45.48 46.55 29.62 11.99 47.34 30.58 47.86 13.65 17.55 55.46 46.21 57.90 31.01 75.36 86.25 67.74 1.32 49.04 4.16 25.88 52.79 48.13 39.86 60.77 74.83 58.41 22.05 50.79 90.13 54.31 8.29 27.97 6.22 61.97 14.24 46.65 79.77 49.02 62.90 -61.35 57.70 94.43 62.53 35.80 60.46 25.19 93.71 38.26 79.34 43.08 59.73 13.92 45.97 4.23 91.64 71.35 44.49 20.88 34.77 15.43 9.40 64.75 1.61 2.76 36.17 34.96 18.67 63.47 26.84 33.91 14.10 34.66 38.21 3.53 17.84 61.66 66.60 30.09 54.57 98.38 25.70 86.11 30.09 1.20 99.45 58.52 78.88 7.65 73.12 3.85 50.86 95.26 44.92 45.27 69.01 79.02 62.17 18.74 25.59 83.33 15.83 74.44 32.41 75.38 48.84 56.88 56.81 54.40 44.30 30.91 93.87 83.22 92.54 34.77 11.71 32.54 83.17 44.44 84.56 10.31 5.68 56.98 74.46 33.00 24.16 61.15 5.57 12.49 70.74 56.65 92.46 66.98 73.54 43.84 76.82 69.16 83.27 48.50 54.02 -30.54 29.98 45.41 83.44 86.02 67.69 10.28 57.57 12.67 31.25 47.31 29.08 82.63 3.65 39.23 29.13 31.76 32.63 35.14 72.11 54.49 21.97 26.62 19.90 13.75 95.20 2.89 21.10 79.93 92.76 51.19 9.48 61.74 52.55 42.56 97.31 46.39 76.94 23.52 91.58 63.81 31.15 30.71 30.19 90.34 38.11 63.07 63.72 23.03 69.27 91.61 75.23 1.90 97.33 65.10 85.22 2.24 24.91 52.34 98.58 16.67 1.30 38.17 82.92 47.30 35.22 88.53 62.57 13.76 40.51 79.05 84.63 93.03 74.80 43.83 51.87 99.18 96.53 94.08 60.38 54.44 5.11 72.65 31.91 15.25 9.81 26.88 6.41 50.41 15.84 67.71 55.51 79.01 87.48 62.88 27.63 2.24 54.94 78.77 23.68 -91.55 38.06 47.00 73.26 74.88 61.91 30.25 20.47 66.81 74.96 22.35 30.03 92.08 97.04 76.59 57.52 51.91 80.82 85.74 77.69 38.87 79.76 73.59 1.53 33.13 44.18 54.04 14.86 57.85 36.00 55.94 84.63 77.33 0.34 62.61 53.20 68.18 33.95 42.85 91.15 77.35 77.99 40.63 78.60 16.93 42.25 35.85 26.97 15.28 74.70 16.13 54.11 8.30 26.36 47.65 61.53 80.48 1.49 79.73 9.16 51.69 99.52 0.05 88.59 27.67 86.71 44.50 72.37 82.28 31.49 54.38 65.67 20.26 52.65 83.58 41.88 45.85 56.08 29.51 94.67 74.82 93.07 4.35 59.60 77.52 49.59 46.37 93.70 31.59 73.27 97.93 15.45 84.87 60.30 23.16 35.67 85.20 73.72 96.12 99.53 -44.80 15.40 43.95 80.08 50.06 33.39 41.25 21.05 98.91 29.94 21.87 67.82 5.17 67.45 16.29 55.67 94.14 60.00 65.65 26.43 14.24 6.59 22.02 63.56 33.72 72.27 95.99 26.47 72.11 24.92 6.71 64.62 97.05 29.82 39.57 37.05 10.12 35.36 48.22 72.71 45.61 18.50 58.48 79.94 2.40 64.74 92.46 41.06 59.25 74.00 25.14 57.48 45.44 94.43 67.17 47.97 72.92 0.08 4.23 64.27 45.21 94.06 3.83 35.07 94.35 82.92 52.65 24.31 15.34 11.68 92.75 42.01 95.92 46.84 29.67 50.26 66.77 92.94 55.26 51.64 34.25 54.64 65.29 38.66 43.81 43.83 63.76 22.00 98.93 77.24 3.56 12.08 49.25 46.51 20.03 30.51 15.11 68.91 92.43 16.91 -77.93 88.83 67.16 11.36 41.81 32.65 88.97 17.17 12.16 17.07 26.54 21.14 87.24 27.82 59.65 93.30 22.06 63.82 77.96 47.64 7.02 86.53 59.44 28.33 72.45 38.09 20.13 12.17 22.76 49.99 53.59 5.72 3.37 76.53 36.97 70.58 4.14 30.91 11.46 70.38 23.73 5.86 26.15 42.84 62.31 93.77 30.46 37.14 57.57 13.45 4.79 11.21 25.95 49.42 14.93 4.33 36.53 20.36 14.54 70.94 53.02 58.86 2.18 72.34 68.85 92.24 6.92 1.67 34.95 38.06 84.15 41.36 33.81 19.25 85.76 43.59 20.21 46.07 51.20 71.57 30.90 7.65 75.78 95.79 74.88 2.66 63.48 35.28 78.33 86.55 19.99 85.35 42.42 89.25 29.61 10.22 72.71 53.76 51.69 84.87 -60.57 0.36 59.16 26.81 80.75 25.19 20.01 39.77 13.04 94.07 13.81 38.72 56.48 68.42 60.18 43.69 50.31 96.90 18.49 1.67 36.40 36.46 24.38 89.85 18.31 60.34 69.21 19.12 79.37 77.42 88.77 81.31 98.20 59.71 73.37 3.44 83.55 76.65 60.42 24.50 12.73 50.68 56.78 79.83 77.10 7.19 33.66 44.37 75.45 54.83 65.93 71.70 16.34 12.57 27.74 95.37 72.50 52.87 14.16 59.90 17.60 89.74 61.44 32.25 19.50 82.50 4.94 63.31 80.68 51.80 40.03 65.65 9.16 44.87 67.73 72.39 15.31 54.13 68.57 0.93 30.65 5.07 59.37 24.22 96.84 3.02 3.17 91.91 60.18 55.71 43.16 25.68 7.74 95.08 81.54 83.84 91.41 8.11 81.37 58.13 -49.20 97.28 24.64 69.95 41.70 26.02 97.16 34.30 24.65 31.86 44.50 96.06 80.57 82.50 61.96 38.21 66.61 78.85 83.20 16.47 80.32 0.24 84.32 95.81 81.84 91.80 42.91 11.62 6.25 14.99 51.31 91.05 80.04 74.57 2.41 98.42 43.12 72.35 74.10 66.26 23.81 68.99 65.50 84.59 33.83 52.06 4.09 82.57 67.11 95.70 45.32 68.08 78.16 42.41 24.59 39.73 74.07 26.99 34.90 81.60 49.28 96.87 19.01 81.16 60.90 41.25 93.40 58.76 37.58 11.93 69.67 81.83 13.12 32.47 90.94 97.97 56.02 49.46 95.98 52.90 56.76 76.83 2.01 83.34 75.61 38.77 68.67 81.87 21.42 59.35 6.28 37.85 89.51 77.93 42.11 51.05 86.74 22.30 92.93 34.04 -54.58 34.95 8.65 54.25 50.94 72.08 64.14 9.19 24.70 9.36 61.74 13.34 76.02 11.30 80.04 44.06 67.47 5.82 94.42 38.56 1.12 82.35 52.73 19.26 40.09 25.89 35.06 84.34 53.06 51.61 27.08 96.99 1.74 9.30 23.37 0.59 70.11 97.99 44.71 3.37 70.49 36.59 54.74 59.28 71.42 10.69 19.63 58.28 19.37 55.44 60.80 40.11 6.53 70.81 53.06 35.15 16.62 25.79 43.51 78.35 66.24 94.41 74.72 2.66 57.36 14.29 87.89 2.51 61.88 46.07 37.01 92.36 15.61 7.16 15.61 14.17 51.48 64.23 19.59 70.56 95.09 76.82 58.67 54.79 6.16 17.46 75.44 56.18 50.73 3.25 5.70 79.31 8.31 53.38 7.30 32.54 30.27 85.39 70.37 60.89 -1.19 22.41 10.85 9.83 51.77 96.21 63.68 20.45 69.30 99.86 26.11 69.55 21.15 66.18 21.81 14.38 87.85 54.01 30.58 42.30 69.58 96.81 52.09 32.24 26.27 0.56 57.63 58.14 93.99 5.74 93.90 26.20 54.48 79.84 74.22 9.40 26.50 50.59 6.41 90.29 69.28 47.20 93.94 56.10 81.75 12.43 93.79 20.74 71.34 75.32 6.39 6.18 23.47 14.91 91.87 36.16 40.07 39.81 59.69 75.94 32.84 54.21 60.85 16.91 44.20 21.90 11.79 47.97 72.69 90.01 43.43 52.11 95.15 85.75 78.18 40.93 39.74 4.02 19.23 40.29 29.61 75.29 51.64 65.57 46.10 58.64 32.99 74.71 32.37 4.42 33.90 64.72 22.54 18.19 6.49 3.89 95.49 39.69 79.09 16.35 -83.30 39.03 97.95 20.09 77.92 69.58 23.57 37.84 40.47 78.19 3.27 84.90 45.36 26.63 41.24 88.66 90.46 17.17 47.40 82.69 4.49 10.78 36.87 81.69 47.66 13.38 54.25 51.48 30.36 51.50 32.43 70.54 24.13 90.38 37.12 86.57 37.91 68.81 65.50 34.09 78.52 4.08 61.57 39.10 68.28 87.44 7.93 76.36 81.49 22.70 84.44 14.29 90.22 44.23 26.85 22.05 56.43 38.00 37.69 82.57 74.65 38.11 85.80 6.90 89.20 5.19 42.21 76.74 69.65 47.41 33.83 58.58 1.83 38.08 7.21 27.26 16.06 46.74 30.83 11.32 79.57 63.08 74.86 57.04 24.38 3.06 48.71 20.25 58.13 7.66 0.02 96.15 68.03 36.33 97.24 23.97 56.63 92.58 39.46 51.59 -44.39 49.18 71.55 8.37 49.10 6.39 9.22 67.72 64.74 87.57 39.02 21.83 0.78 9.84 74.51 22.94 40.33 78.97 48.07 61.98 40.59 30.51 82.64 64.37 15.41 79.32 64.02 61.78 94.85 21.97 89.13 96.79 79.66 21.73 11.01 50.85 16.96 80.24 32.76 74.03 40.10 10.94 76.00 14.60 93.13 99.27 50.03 81.01 69.15 74.44 11.26 92.31 60.12 65.59 73.75 40.03 85.15 70.02 71.77 30.25 56.69 0.01 62.66 31.41 34.65 79.27 77.29 58.01 36.04 66.08 38.89 60.53 90.94 22.85 61.04 45.58 64.04 26.63 2.30 38.45 21.03 45.81 68.47 68.17 15.06 18.85 5.23 32.38 69.11 20.36 83.09 86.42 46.83 31.17 79.04 10.93 13.70 21.43 42.54 20.90 -48.19 73.36 20.91 40.17 35.85 1.75 35.57 42.15 62.66 94.54 55.48 0.46 53.61 36.45 7.86 59.91 51.77 22.88 22.68 86.00 19.94 28.91 92.91 45.15 53.48 56.46 79.09 41.50 95.80 69.77 85.51 45.38 13.33 93.66 56.71 28.92 2.25 92.27 82.22 26.17 90.37 15.09 86.29 30.48 26.61 34.92 39.45 50.09 23.82 10.38 62.16 96.71 94.30 73.69 19.45 46.67 69.77 80.27 74.48 73.59 92.83 12.06 63.82 73.45 26.87 34.94 36.85 67.11 12.85 63.97 89.43 70.15 72.11 28.24 10.93 1.48 52.39 88.91 67.76 57.68 35.55 17.42 92.28 46.25 47.17 67.60 87.84 29.16 91.12 99.97 41.77 9.28 89.10 20.62 23.58 91.00 54.93 18.95 99.51 15.01 -28.48 61.66 60.73 58.01 45.48 24.47 88.99 32.50 10.55 18.36 86.10 36.98 99.96 54.55 54.11 69.12 78.42 14.56 39.01 45.58 53.12 44.51 29.04 76.47 32.44 29.15 60.95 10.56 94.17 67.11 66.00 77.92 48.40 19.88 99.35 65.32 71.80 67.67 27.68 63.38 50.78 20.08 61.44 70.40 92.05 7.11 9.03 20.19 47.91 68.54 79.82 30.83 11.12 75.60 16.00 32.83 52.04 72.59 25.91 3.04 20.30 35.80 12.31 72.79 3.20 78.84 17.00 50.99 25.53 26.63 70.08 0.88 85.73 37.65 55.46 53.95 19.73 44.51 61.28 25.70 83.07 16.92 63.82 40.88 21.87 15.48 8.66 42.88 97.09 38.41 0.00 89.68 60.52 38.84 7.65 12.76 66.61 85.12 52.96 88.74 -80.31 9.85 53.59 13.67 53.98 7.97 35.77 20.35 40.74 36.84 59.64 31.44 22.94 4.74 80.71 44.76 45.44 69.02 68.70 68.21 20.96 31.37 36.81 96.85 51.40 6.68 25.21 19.40 66.05 50.87 65.32 32.30 79.60 79.35 54.96 81.84 59.71 94.90 41.86 31.82 27.71 88.40 59.36 24.54 87.86 24.14 19.60 79.11 54.94 26.73 57.31 92.10 87.35 18.31 44.92 46.00 61.35 51.42 63.29 72.31 68.31 49.37 50.77 93.57 21.25 95.49 84.88 50.78 56.42 31.60 94.22 91.37 70.14 60.45 64.37 85.06 92.11 1.20 3.48 67.16 91.96 28.64 15.17 87.04 15.90 17.61 28.92 26.90 27.80 97.64 64.28 76.27 66.95 5.57 63.63 96.82 31.85 48.01 59.30 35.29 -84.56 69.36 10.84 30.01 27.13 30.79 25.44 35.21 37.89 85.77 54.62 28.23 2.96 66.28 99.04 26.94 8.24 65.56 49.44 91.70 89.52 64.39 83.75 62.28 18.03 39.91 18.68 34.39 44.42 17.00 80.19 13.81 10.53 84.44 90.91 15.06 30.16 88.20 33.03 50.74 11.72 79.36 50.64 82.89 92.44 80.65 15.25 30.43 58.77 47.05 9.65 15.08 75.91 50.70 31.78 86.33 55.78 70.31 95.93 93.62 80.42 49.01 64.06 93.83 4.99 95.17 34.27 96.54 83.70 84.95 91.69 15.04 12.18 29.29 27.99 30.12 43.48 12.83 74.52 2.92 84.06 61.17 23.19 84.26 6.70 74.73 98.46 37.81 27.07 71.82 26.98 47.96 33.40 7.24 12.60 86.17 54.39 8.50 16.12 19.07 -53.30 99.43 23.26 91.42 68.27 10.32 17.60 62.89 1.02 49.44 11.07 98.74 99.85 60.73 11.02 98.04 79.15 35.64 18.33 55.20 31.77 95.99 95.84 65.83 35.16 91.54 89.26 88.19 31.59 1.07 49.82 67.87 5.37 32.04 97.96 3.94 56.37 1.24 66.19 33.25 57.05 35.63 18.78 16.38 44.16 30.07 56.36 38.13 82.68 81.75 83.14 47.38 89.26 63.83 39.15 80.83 27.74 88.07 7.97 80.17 46.02 61.00 22.75 76.86 63.91 40.17 83.06 56.11 78.59 88.50 13.83 22.45 55.60 5.80 34.70 46.00 24.63 4.27 7.87 73.95 77.05 89.60 90.35 10.48 56.22 89.28 39.06 68.94 62.67 86.89 5.63 88.42 98.63 33.97 69.80 49.33 11.43 70.19 95.40 95.97 -70.82 70.22 48.14 35.17 82.92 60.30 51.11 69.25 68.22 9.69 21.29 17.43 78.69 7.40 91.10 9.39 16.78 28.84 78.47 86.73 51.64 6.11 57.35 51.70 37.95 44.08 87.25 22.51 32.46 12.17 39.65 97.97 69.77 94.86 84.62 47.38 24.84 47.92 50.15 73.72 9.87 98.05 71.28 34.86 8.04 5.87 31.15 95.46 72.97 59.48 20.11 16.83 95.25 52.76 27.74 57.45 42.21 38.75 76.32 41.94 53.66 89.03 38.51 72.34 99.00 90.40 50.43 20.38 59.15 19.69 58.59 85.14 43.12 93.85 57.06 25.62 27.28 42.50 69.11 21.90 16.08 99.88 11.09 83.47 12.88 18.53 21.19 64.77 44.54 0.50 32.16 27.49 65.78 70.32 5.74 60.40 50.48 35.19 60.70 88.34 -94.00 0.66 46.77 40.95 46.00 31.19 55.79 19.63 21.87 51.38 21.17 74.52 17.52 43.79 80.91 23.36 0.33 96.66 98.51 64.03 86.49 80.00 60.13 78.48 57.85 36.57 2.41 74.41 49.88 82.26 34.85 63.59 79.42 53.58 50.03 7.46 59.58 39.03 57.90 99.46 33.33 50.08 53.71 96.37 20.07 45.24 96.54 54.17 7.66 66.62 73.92 84.13 46.26 14.39 25.19 16.78 24.50 57.60 85.66 99.07 39.97 93.18 32.42 50.66 53.58 71.65 25.22 57.73 63.00 62.66 1.65 84.62 18.64 60.01 83.91 91.72 24.17 90.26 17.65 95.97 39.86 82.34 5.95 98.15 12.89 55.62 29.51 49.10 6.86 34.66 82.61 25.89 43.07 56.73 97.14 71.12 44.77 85.04 92.66 26.57 -76.51 63.08 45.46 1.07 0.34 31.87 23.20 6.26 7.51 62.63 90.60 10.82 53.47 58.61 12.36 33.90 78.44 69.35 63.48 61.12 48.61 78.63 28.50 64.24 21.09 25.63 3.71 93.89 77.96 38.52 56.37 58.86 60.03 22.90 60.48 52.26 35.23 32.51 23.30 80.47 62.11 92.25 42.18 6.90 28.77 22.38 4.30 16.28 4.46 11.67 65.12 14.82 24.06 71.82 99.76 64.86 58.36 50.55 5.74 85.88 74.41 26.32 89.26 34.81 73.87 82.64 37.47 28.61 98.28 18.02 59.63 12.61 9.75 89.31 65.78 88.22 28.12 91.39 77.45 31.44 50.88 57.40 41.86 44.86 4.70 14.59 91.58 88.62 96.01 39.55 21.12 50.65 81.64 83.75 5.61 94.60 15.88 44.38 29.82 92.57 -80.49 5.51 99.38 69.04 14.47 39.59 36.67 74.99 54.40 74.67 56.47 65.30 7.57 39.55 51.90 6.56 78.96 80.82 93.06 68.25 13.79 66.63 5.61 62.30 50.49 3.97 83.54 81.00 41.74 59.88 31.02 27.29 50.70 32.97 31.86 41.80 98.76 37.96 7.33 19.43 65.75 82.46 2.98 10.30 46.43 46.93 12.01 41.33 99.90 23.69 58.12 1.76 53.15 83.54 16.72 64.49 10.11 14.46 83.07 4.86 76.48 20.77 91.48 31.44 58.54 73.20 51.56 51.09 82.09 24.73 73.50 32.09 22.85 2.64 62.86 84.62 95.92 98.49 28.46 42.30 9.37 36.90 87.69 10.76 75.01 46.41 26.74 20.43 51.18 8.94 32.01 98.64 34.75 88.23 57.84 95.99 1.48 79.10 85.61 98.44 -46.20 59.01 88.44 32.91 19.49 0.97 74.05 62.27 57.01 44.54 13.03 80.72 21.24 15.45 18.45 87.15 75.88 96.39 32.60 81.79 6.65 86.50 50.43 33.82 29.94 15.25 33.36 14.05 26.94 49.69 54.40 64.24 51.95 94.09 93.16 41.71 72.65 6.12 61.17 6.97 34.97 33.76 29.21 26.19 94.08 29.10 93.31 28.47 94.20 76.64 36.15 65.21 40.99 58.06 69.65 13.17 5.43 14.27 52.71 82.71 96.54 58.86 49.69 49.01 58.33 18.28 6.55 19.57 7.51 91.62 29.38 19.56 41.98 12.26 14.07 69.71 34.32 2.42 91.33 56.15 49.61 85.84 70.40 12.15 39.14 44.58 29.56 54.77 97.38 60.96 80.19 83.21 95.82 75.80 82.50 68.77 11.53 73.49 47.78 25.18 -78.58 11.67 90.28 64.92 55.42 51.16 83.33 35.89 9.25 18.82 19.11 0.66 18.21 12.00 66.10 98.61 87.85 73.52 0.85 22.31 60.83 34.11 25.29 56.34 9.55 20.10 76.51 30.61 51.81 34.50 44.83 14.31 3.17 78.71 66.52 66.05 58.77 63.78 11.77 99.87 37.63 9.05 32.19 15.88 99.55 1.39 33.28 69.02 22.14 91.47 80.50 92.28 67.35 71.54 22.91 30.25 49.66 99.61 83.24 5.07 3.66 12.17 8.81 41.19 13.55 12.07 71.39 42.53 51.80 61.46 11.44 83.93 47.78 27.34 4.77 48.82 3.71 35.01 8.17 51.86 30.01 17.81 33.19 71.39 25.35 6.02 6.32 48.06 28.12 34.07 91.57 65.37 43.60 16.74 57.26 4.59 51.39 91.18 94.62 32.36 -47.69 95.43 58.61 71.54 66.44 45.00 79.01 26.88 76.35 53.08 42.95 70.25 29.15 81.92 3.07 21.72 40.43 95.37 11.96 51.96 10.03 45.86 92.76 67.83 6.49 59.66 76.44 90.50 86.18 94.92 27.29 7.56 11.20 78.58 40.01 49.48 90.59 59.00 38.60 14.43 32.29 99.88 61.21 24.63 33.31 18.31 99.90 28.53 81.01 26.25 12.00 60.06 16.98 47.28 81.14 60.54 21.87 90.56 62.99 5.32 67.82 21.06 69.70 78.65 32.72 76.90 55.83 16.03 29.52 78.14 2.71 96.06 78.90 26.11 22.59 98.93 16.72 61.00 49.94 51.95 56.17 63.34 84.56 37.27 32.51 57.15 72.41 90.26 35.86 87.85 4.01 39.97 47.55 42.67 52.81 24.30 7.19 66.77 35.23 89.18 -73.61 53.01 55.37 50.84 60.24 9.53 40.96 21.27 0.32 96.79 16.46 89.26 21.45 29.26 99.46 6.35 10.50 85.01 97.98 86.37 86.17 51.80 75.71 58.08 18.23 24.44 49.11 68.86 54.63 29.93 43.29 24.47 26.41 32.23 87.41 52.06 73.20 30.60 27.51 7.73 14.84 88.52 0.88 93.92 68.91 94.60 93.91 93.91 77.49 37.02 41.34 90.51 10.71 55.62 55.09 60.05 2.02 46.15 18.86 43.16 26.41 3.81 92.15 68.58 97.20 92.14 41.45 40.59 18.99 50.47 31.81 17.57 99.79 60.05 68.69 25.45 80.21 24.45 88.96 82.13 60.92 96.63 84.11 78.35 38.96 49.82 6.51 79.23 90.40 28.09 2.71 24.98 2.45 23.71 65.94 99.11 83.99 39.93 44.26 11.65 -61.89 42.15 3.15 98.54 96.42 69.87 64.74 74.56 55.70 95.69 2.97 30.32 34.53 91.87 32.11 38.14 41.13 17.62 95.03 13.33 13.49 45.31 66.09 26.90 39.75 75.74 34.93 80.27 91.69 6.96 6.24 60.53 47.98 74.00 14.54 39.21 30.40 92.71 72.81 96.42 20.53 60.49 64.16 42.75 94.60 33.06 93.61 38.04 98.87 65.76 13.19 12.83 95.99 53.27 51.33 92.46 13.46 61.05 57.07 58.88 54.55 75.47 17.85 15.70 87.08 88.74 25.14 95.80 74.91 46.85 76.80 62.85 90.94 96.38 40.34 26.53 31.13 17.70 97.83 58.70 39.99 26.00 1.51 41.68 51.90 97.08 99.07 54.25 52.45 70.07 37.56 95.11 4.73 51.12 9.70 27.84 1.38 54.54 58.82 97.39 -2.74 78.95 86.39 21.32 93.42 50.78 26.38 63.79 81.72 36.82 1.48 67.14 8.29 38.91 40.78 86.33 69.89 13.91 13.35 61.00 91.08 59.18 49.66 16.35 71.31 79.08 36.58 90.47 88.35 90.66 13.18 76.18 77.90 60.18 87.51 64.88 4.12 59.89 31.23 12.49 37.36 19.37 6.78 65.75 15.81 39.66 43.35 63.14 84.08 41.12 63.00 98.88 98.70 84.15 62.51 55.59 2.17 30.74 70.82 69.54 16.61 82.41 36.88 15.77 70.66 39.13 21.00 0.61 67.23 25.23 64.92 72.68 34.88 90.85 87.35 92.26 5.43 15.69 14.86 89.49 32.18 39.97 88.44 41.39 78.72 76.85 84.56 66.32 80.02 63.99 48.01 90.76 77.01 4.61 83.57 82.59 50.53 35.47 19.45 26.41 -74.13 63.10 29.55 49.66 36.02 16.48 39.46 2.45 84.99 5.19 15.64 54.94 91.33 80.36 64.14 67.36 99.82 43.43 23.46 7.97 44.95 63.22 96.68 31.34 53.82 55.57 3.41 58.54 67.40 43.05 98.83 20.58 68.79 2.59 33.38 45.63 51.52 84.67 51.90 33.53 9.31 4.16 70.42 66.76 10.69 71.35 64.43 75.44 35.28 77.94 30.12 56.80 19.17 9.36 96.03 52.65 3.46 47.37 23.22 50.52 55.42 76.93 11.55 23.71 14.71 23.93 9.58 26.16 86.70 41.20 25.58 95.29 32.72 89.84 76.22 40.41 46.25 97.57 44.97 72.96 90.06 8.01 69.31 33.07 63.61 31.05 92.90 98.84 95.08 6.23 8.10 79.26 10.13 99.02 13.86 26.48 68.82 85.89 16.65 74.18 -93.46 31.02 4.48 76.11 55.77 40.22 42.17 93.55 26.32 83.94 20.08 63.59 38.09 13.77 89.40 38.41 76.58 92.27 40.29 71.45 53.10 53.62 32.00 97.10 12.91 95.76 11.98 48.00 44.74 32.02 72.38 55.37 92.03 39.11 7.61 15.95 45.35 52.13 74.43 36.55 56.56 75.61 62.34 34.56 98.25 2.88 44.81 55.52 84.19 63.52 81.52 23.08 22.51 17.36 79.54 12.44 59.46 64.95 27.13 36.31 91.03 3.75 51.52 71.14 19.37 78.04 99.18 79.09 52.10 28.88 68.32 44.41 90.08 82.58 18.33 35.00 22.21 17.20 21.91 49.98 73.22 51.33 83.37 81.97 95.76 21.16 75.38 47.01 32.66 52.84 87.82 62.00 50.46 37.70 56.23 52.71 65.61 84.68 70.61 35.81 -63.09 17.52 99.09 25.58 87.44 81.08 3.16 81.85 18.27 79.14 74.43 2.09 94.09 10.56 35.40 49.23 16.45 56.82 45.87 8.85 11.36 71.36 67.32 74.16 17.11 5.65 12.19 5.61 82.06 9.98 64.71 64.02 41.89 5.98 51.49 67.31 8.72 19.61 35.68 42.57 45.78 74.19 63.20 54.17 61.64 56.14 34.37 78.04 85.47 27.63 5.08 67.30 5.32 42.08 90.07 38.12 82.13 4.91 24.01 19.55 18.21 96.16 82.54 51.78 3.11 70.75 27.84 44.58 39.12 38.85 9.11 13.89 67.09 58.97 2.51 3.00 3.14 61.28 3.69 98.28 16.00 83.22 82.54 50.12 16.69 14.42 59.22 78.60 5.52 9.72 60.23 75.88 76.99 40.84 39.36 25.06 9.80 23.62 59.19 51.42 -47.87 68.29 83.00 70.28 37.91 43.01 60.37 3.65 42.43 63.62 30.83 46.62 96.42 19.98 82.91 41.28 85.10 18.78 96.79 99.48 0.05 72.61 14.54 81.06 47.40 46.93 42.64 15.36 53.48 64.65 97.54 87.26 1.05 78.98 16.02 37.95 25.51 44.71 58.18 21.32 56.46 47.35 79.22 73.57 44.36 48.19 10.52 94.71 47.05 65.18 47.43 83.55 74.80 35.06 19.08 16.74 10.70 89.39 92.29 96.48 10.95 45.60 58.95 7.08 71.70 35.96 82.46 69.03 2.36 88.57 79.41 54.50 96.17 76.87 3.35 41.29 53.57 18.81 68.96 4.52 42.88 61.89 98.98 14.46 52.41 95.22 40.69 0.05 60.71 52.33 23.06 63.98 4.38 74.71 60.86 28.70 52.87 93.60 84.12 27.04 -48.21 43.77 78.35 4.67 45.91 30.74 69.25 65.15 70.69 88.48 71.08 61.08 74.93 81.53 2.08 83.59 29.01 41.53 42.26 81.52 98.06 90.17 83.08 30.14 41.01 42.56 16.98 78.24 80.00 15.30 39.77 20.42 1.60 96.91 72.36 6.83 4.70 60.46 74.20 29.91 60.57 66.27 20.96 13.99 60.34 37.88 19.11 23.30 40.94 74.65 90.35 69.50 37.29 54.09 54.15 27.35 33.69 36.52 51.89 18.45 3.90 48.81 96.48 94.49 30.28 0.87 29.94 57.86 48.01 16.12 19.54 32.13 88.96 44.19 98.55 82.52 43.57 39.21 56.55 65.46 49.20 6.77 97.67 79.18 58.99 21.37 90.60 90.76 67.92 31.46 5.54 43.11 15.02 62.61 80.02 41.23 9.14 87.55 65.34 65.81 -94.70 19.03 65.81 81.56 16.01 92.86 41.12 95.85 47.52 15.42 81.82 57.24 90.42 57.40 61.06 38.85 34.26 93.33 48.08 94.62 79.31 93.76 18.87 86.66 61.66 78.21 65.99 75.95 11.03 73.89 0.63 80.95 1.73 28.88 29.85 14.76 16.10 41.31 10.08 33.42 28.11 10.66 97.53 2.18 95.79 18.14 93.50 16.56 60.27 64.35 88.16 17.50 5.32 98.82 61.48 77.34 10.99 20.80 29.63 94.55 6.38 49.17 39.27 56.09 96.91 90.95 83.12 31.11 82.91 8.35 96.23 95.76 94.43 46.81 36.57 30.79 98.31 86.84 89.28 92.04 11.75 69.84 93.78 83.74 8.23 34.87 67.17 30.07 24.37 81.98 78.64 27.92 30.57 50.25 39.36 75.07 17.19 81.12 71.60 1.76 -71.43 75.18 16.66 57.45 59.87 14.97 58.05 13.66 17.60 92.44 25.09 22.65 90.21 95.53 4.01 62.68 2.63 9.01 86.76 51.72 75.18 89.28 96.00 85.33 4.06 84.01 60.00 80.82 90.52 86.68 25.42 9.55 58.26 97.85 65.34 32.05 0.80 39.22 63.97 96.43 55.56 86.61 51.26 7.30 3.78 91.16 3.40 43.71 60.17 16.02 79.75 60.42 23.74 5.24 63.16 40.80 40.35 22.75 21.86 58.03 11.22 6.45 31.69 86.06 13.77 6.88 15.51 43.58 21.29 96.08 25.24 88.15 70.51 32.77 50.17 93.01 18.11 47.41 30.66 20.51 82.89 37.77 60.59 11.47 93.98 23.59 64.16 47.34 72.39 73.59 94.44 36.98 80.41 3.93 50.72 91.72 76.10 58.74 99.86 74.93 -97.81 41.45 28.82 88.50 0.50 15.78 33.25 96.13 47.92 62.95 79.03 79.93 2.97 84.82 18.91 82.07 13.07 34.66 57.48 14.55 58.50 58.47 12.85 3.62 60.59 15.96 80.26 75.93 82.84 11.57 47.86 49.40 98.48 48.87 22.81 38.24 60.04 74.51 30.96 75.52 21.73 19.50 73.09 69.03 50.27 63.63 39.23 55.02 45.30 67.34 31.79 52.72 17.31 76.60 6.14 32.70 57.48 43.36 50.33 40.99 39.98 33.91 57.10 84.05 63.25 22.52 57.39 14.56 27.91 74.26 95.40 17.43 94.29 36.55 0.73 31.25 5.96 13.72 12.12 32.88 43.62 46.71 46.89 58.21 55.97 38.10 17.78 30.99 18.28 55.13 20.47 53.75 57.39 90.94 33.86 74.83 82.93 85.54 74.02 25.26 -51.73 15.13 73.47 68.29 65.75 72.11 3.56 77.72 11.78 19.56 29.45 95.26 34.77 79.25 11.90 75.16 1.17 7.00 52.03 48.13 26.57 28.61 77.56 31.73 83.12 91.60 92.38 23.69 8.44 82.47 28.01 79.13 98.10 57.44 4.75 80.89 8.13 43.93 97.24 97.40 16.80 47.56 75.63 48.79 67.18 90.13 53.72 83.07 85.44 81.40 78.90 97.76 67.06 92.50 81.84 7.42 56.20 65.30 0.12 5.21 66.65 93.45 17.74 73.05 89.83 9.44 79.02 68.34 65.49 39.97 18.24 54.60 94.19 6.85 65.65 36.94 76.29 99.60 79.48 80.20 47.66 25.96 75.29 98.36 23.41 70.19 47.36 20.51 73.26 85.13 25.10 20.61 14.32 17.64 67.05 16.96 26.74 87.77 46.30 57.62 -54.57 86.14 83.30 77.72 73.25 89.43 56.04 1.04 1.93 48.38 61.36 73.40 5.38 56.92 43.61 2.14 18.35 88.07 59.94 30.79 14.81 46.32 95.11 52.61 20.58 35.03 0.82 52.95 72.34 37.89 71.78 35.28 41.94 54.40 15.75 63.55 63.57 91.80 26.98 99.87 16.24 69.03 7.48 88.18 46.82 27.92 17.07 61.93 54.43 89.35 79.28 94.36 65.92 18.53 82.53 36.02 4.05 81.42 33.79 22.64 92.98 10.67 4.46 22.35 9.27 64.26 49.74 84.76 40.56 45.27 91.20 44.11 78.44 67.83 70.75 83.21 21.13 27.46 13.14 49.01 86.07 46.88 36.46 50.01 39.80 72.63 91.71 77.94 42.12 39.47 8.82 19.25 67.95 3.30 67.95 87.19 48.32 29.75 33.75 28.74 -35.36 30.58 47.51 0.08 76.57 56.03 95.39 41.91 6.55 85.78 31.89 84.54 61.91 2.65 7.71 73.06 97.05 86.55 95.91 10.89 93.70 33.94 89.40 32.85 67.31 74.40 54.92 12.43 95.45 61.91 8.48 93.07 95.75 42.29 87.83 45.68 1.06 45.84 31.52 93.41 39.57 43.92 8.75 80.49 81.07 70.58 78.35 56.52 9.61 17.26 36.30 33.96 6.41 70.50 51.96 75.49 99.84 98.04 40.33 17.05 34.60 74.94 93.30 75.32 28.35 89.77 66.71 82.15 71.14 17.62 90.40 98.70 0.17 97.65 32.50 57.67 54.68 36.84 66.47 20.58 92.88 19.88 25.47 17.00 2.88 97.35 42.70 80.80 80.60 63.91 8.00 93.25 78.51 98.32 91.87 34.93 99.94 41.80 40.17 86.44 -63.85 38.23 92.42 78.86 19.06 51.25 11.53 18.28 88.58 1.91 76.14 70.91 19.32 3.29 0.39 74.02 42.08 5.79 49.14 36.26 12.24 99.49 64.91 18.16 12.25 51.00 3.73 61.38 87.43 96.68 38.40 98.53 16.90 81.31 47.40 98.49 0.84 0.11 7.77 30.78 12.49 74.80 69.60 97.36 6.76 39.02 75.84 47.73 5.78 49.17 79.71 17.69 5.75 59.62 89.72 25.81 33.13 1.13 20.09 87.88 0.70 6.94 43.01 69.38 47.66 52.87 24.34 71.47 5.54 22.47 65.53 99.52 58.66 14.50 16.82 53.69 89.81 41.74 9.75 43.04 36.86 7.53 2.54 17.30 80.47 97.55 73.03 38.64 91.25 11.88 74.69 90.03 60.66 17.87 58.53 2.75 52.24 15.16 80.26 85.29 -93.61 96.72 27.04 48.88 17.93 68.08 1.53 87.60 45.10 25.51 32.19 60.65 40.62 87.69 71.70 9.91 42.12 56.31 69.24 21.75 50.85 56.43 49.07 3.54 85.21 9.16 84.76 4.94 46.92 47.84 98.24 38.72 95.83 87.32 96.45 78.48 73.26 78.64 94.50 39.87 36.42 68.37 72.81 18.34 21.28 5.62 11.27 62.43 6.94 30.51 5.57 50.15 49.06 49.98 13.81 30.19 72.15 12.39 50.76 96.71 49.93 69.99 30.18 39.63 9.92 39.58 8.93 27.65 25.70 80.11 75.69 39.00 99.35 45.96 2.58 80.98 36.78 5.17 39.93 6.54 10.18 42.83 66.04 20.43 55.51 77.69 38.31 40.51 33.91 7.50 81.37 46.46 58.97 81.81 95.44 33.22 58.65 20.48 94.01 78.42 -98.74 71.89 69.08 58.90 97.63 83.87 43.07 17.46 89.87 51.29 96.63 93.95 51.80 53.09 12.66 50.75 3.12 75.63 85.18 38.74 18.24 32.35 25.46 72.56 73.90 53.15 25.16 77.29 38.02 92.47 78.75 19.32 47.70 61.63 33.08 46.20 42.02 48.00 75.60 66.88 34.77 44.95 67.79 92.91 67.18 7.73 83.03 16.64 52.47 36.57 58.26 62.96 43.98 45.61 66.83 30.32 41.43 19.66 62.22 51.30 17.79 85.93 13.31 11.44 99.82 50.51 93.64 99.26 75.43 57.81 93.82 45.93 87.37 67.85 31.00 50.65 60.72 26.25 85.56 88.20 70.75 98.63 39.90 94.06 7.86 81.19 41.81 74.33 49.28 78.22 1.28 50.43 41.72 95.67 72.20 20.68 16.71 10.97 42.58 44.16 -90.00 84.20 8.32 87.47 38.31 16.38 75.63 92.82 1.30 95.26 44.75 86.02 77.69 73.85 32.05 70.22 96.80 61.61 39.42 70.04 53.29 50.90 46.12 82.02 25.33 89.99 2.03 30.17 96.84 96.47 54.10 37.79 49.69 53.03 74.87 6.92 21.86 0.11 71.23 4.50 20.68 95.22 99.13 97.65 63.39 88.44 6.83 34.74 62.77 91.37 39.31 33.50 7.03 23.71 57.03 16.57 76.42 33.90 13.11 6.02 99.51 25.48 94.09 44.25 11.38 64.61 53.62 51.30 62.34 19.66 26.13 22.91 67.65 0.88 57.50 6.98 60.45 44.17 48.27 38.24 43.51 83.97 51.11 18.94 44.17 66.24 7.98 25.71 75.15 51.80 15.95 90.50 38.69 60.29 93.24 13.02 92.51 31.62 41.02 37.86 -62.41 86.62 1.65 52.98 13.39 20.49 9.35 29.99 12.86 62.06 99.62 56.01 75.21 30.29 67.66 32.90 67.09 70.70 93.90 60.62 30.69 43.85 14.72 99.21 6.94 95.18 93.93 33.42 96.73 36.39 94.70 46.98 86.27 47.66 4.99 82.99 42.47 56.20 44.89 13.43 61.48 85.59 26.58 9.66 68.74 84.46 73.04 45.34 59.82 54.49 57.75 52.73 46.63 71.14 4.69 2.11 94.88 9.21 16.75 40.61 69.05 94.03 35.91 73.98 69.84 12.76 8.05 62.96 71.23 55.69 22.69 21.39 85.95 2.51 20.05 8.11 47.58 12.11 28.61 85.75 25.32 56.20 8.76 7.64 28.07 82.85 98.92 94.76 76.85 27.59 83.57 11.42 96.11 96.87 75.76 24.22 90.76 34.79 18.18 86.99 -92.90 34.02 13.62 16.73 53.75 48.88 15.72 27.32 9.08 16.23 79.04 93.52 10.52 60.02 48.22 50.31 64.22 66.42 56.17 20.60 30.46 93.81 25.37 17.16 6.66 81.27 35.39 23.13 6.79 86.15 16.15 45.68 25.87 56.08 85.30 8.62 84.01 90.32 96.47 36.43 13.96 15.47 16.15 84.69 83.13 18.46 1.16 11.62 87.62 93.87 92.68 45.72 80.28 61.54 29.51 38.47 93.64 63.69 7.67 43.00 86.16 90.37 41.54 2.59 82.76 55.28 31.57 9.92 95.39 33.62 49.93 55.80 89.14 54.32 34.33 36.65 8.16 2.70 13.56 68.11 49.23 23.81 80.37 82.15 27.58 28.93 96.12 48.86 1.54 4.54 22.16 63.92 71.88 19.40 38.15 91.50 82.59 68.92 31.43 88.08 -94.74 96.06 43.30 56.37 90.10 88.09 3.87 44.57 67.18 94.36 35.51 31.44 81.17 15.11 86.27 43.80 78.04 66.77 69.00 11.98 15.28 17.60 38.72 25.67 62.23 66.26 85.83 44.59 29.25 53.38 93.22 49.08 44.46 60.29 83.95 98.99 50.99 1.84 3.31 27.19 38.21 81.11 78.52 71.49 10.58 92.58 86.08 98.34 34.96 47.21 5.95 80.54 25.72 55.80 37.77 13.85 13.95 11.68 16.50 96.10 3.97 39.68 70.00 42.70 72.46 16.66 91.77 66.76 95.70 10.94 60.51 89.37 31.87 15.10 15.55 54.65 26.67 63.50 85.60 8.66 11.35 3.32 53.39 61.66 57.71 21.68 67.37 24.96 16.95 54.18 26.13 42.67 17.11 77.34 8.64 53.44 15.07 93.79 14.18 85.30 -8.13 11.77 66.76 57.37 99.25 55.95 14.96 25.10 52.19 87.79 80.62 65.35 46.38 2.43 66.78 95.26 95.55 46.67 92.51 34.19 98.04 52.97 80.24 53.27 48.87 93.89 23.46 15.23 12.56 93.32 38.36 34.32 22.66 34.41 6.43 82.44 98.71 91.18 36.83 41.10 41.57 31.17 15.07 19.54 70.29 80.40 18.61 32.05 51.28 33.72 54.31 58.63 67.73 36.04 78.13 68.33 46.56 94.36 92.84 52.22 34.62 93.41 65.01 31.61 9.89 96.75 44.80 57.13 24.29 29.20 44.43 44.73 27.33 82.01 18.68 31.45 39.84 25.46 4.88 88.88 98.12 47.97 1.27 16.32 92.87 44.94 47.62 69.18 52.76 70.53 9.50 82.75 44.71 61.68 53.55 45.62 3.55 91.39 21.34 90.17 -30.98 54.76 63.94 26.93 76.10 64.71 56.92 97.23 31.91 8.86 67.93 46.66 51.48 44.51 42.01 55.13 92.29 57.31 67.33 72.29 58.54 57.26 50.59 31.48 75.14 2.70 9.92 52.68 53.26 39.09 89.83 22.77 62.35 68.81 47.54 89.21 94.49 38.09 40.83 25.03 6.56 6.36 67.68 9.38 67.15 13.89 95.17 80.25 82.45 71.08 30.24 52.86 12.64 66.98 63.07 1.03 5.39 1.15 70.04 6.05 39.19 95.86 27.15 35.79 30.89 35.11 82.00 60.00 29.12 17.49 76.46 36.30 55.14 90.30 87.21 30.18 73.21 75.96 30.65 77.56 24.33 49.96 96.62 8.17 28.24 16.31 83.03 94.58 51.12 8.41 25.63 79.78 14.20 79.28 80.80 68.83 93.78 48.69 29.37 58.52 -42.57 35.97 55.65 23.10 32.21 56.94 35.27 58.42 13.11 21.30 94.58 37.77 59.57 7.68 52.72 11.35 73.15 3.53 75.81 9.33 1.81 71.83 62.11 21.19 15.83 69.79 14.90 28.45 54.00 59.32 71.44 15.45 94.67 15.88 84.29 84.67 22.98 92.50 12.18 6.70 58.15 27.92 73.22 67.77 72.43 59.58 32.05 97.49 0.90 46.95 27.63 19.33 42.08 34.48 74.25 16.60 48.59 66.30 37.53 36.61 89.52 74.64 7.68 9.44 75.11 49.60 62.37 88.40 29.62 22.52 8.76 97.60 2.24 67.12 45.66 87.00 86.37 31.82 96.59 57.31 84.73 76.38 67.30 63.45 22.08 88.54 87.54 42.21 67.46 88.35 38.35 92.42 12.41 25.78 75.92 88.30 93.40 11.09 16.89 98.11 -16.05 56.06 99.76 10.96 6.09 38.89 22.58 85.04 19.54 23.87 65.07 93.89 49.06 87.90 65.44 18.72 56.27 20.17 34.85 62.49 21.43 90.94 1.64 7.05 12.00 41.05 25.73 59.41 74.83 66.45 40.01 20.03 74.80 10.68 37.79 25.07 21.37 48.34 1.85 38.85 74.22 29.29 4.47 21.14 86.99 53.49 1.17 61.23 38.35 53.49 71.38 78.95 49.36 65.05 70.91 69.20 94.89 70.59 23.50 75.88 94.69 53.44 27.52 69.05 76.34 34.03 11.82 32.50 37.51 32.83 44.55 81.63 59.00 46.97 51.52 74.70 37.70 8.28 8.73 69.02 94.40 79.77 78.54 12.39 35.77 48.61 37.59 36.86 23.78 1.19 88.28 72.03 5.93 71.89 46.37 26.56 87.78 36.02 47.94 44.73 -16.30 7.90 63.12 43.07 45.56 16.15 18.25 66.31 5.96 86.51 76.75 82.36 22.38 55.21 83.27 90.34 1.95 70.15 23.98 43.59 60.73 61.39 57.42 6.95 5.18 75.13 12.29 81.60 4.56 91.81 53.03 71.66 78.29 47.09 8.46 79.77 37.80 76.81 48.44 49.84 23.17 34.21 85.21 48.05 66.93 41.09 67.80 29.63 74.16 6.71 77.68 66.91 90.87 55.82 97.97 81.91 79.70 95.58 53.60 94.52 80.11 63.13 55.39 72.83 30.51 86.81 79.67 33.58 10.38 86.61 16.18 41.40 60.49 62.87 57.70 58.31 12.41 48.60 25.15 70.30 85.15 91.16 78.55 87.69 16.32 93.59 42.22 14.42 39.37 78.50 99.18 29.27 17.18 75.71 11.08 26.26 4.89 21.05 59.24 53.37 -52.51 88.36 35.96 74.28 65.05 21.73 7.41 79.56 3.76 80.84 62.07 15.79 58.17 44.83 16.50 93.62 31.21 17.79 51.36 59.31 79.40 55.97 61.39 94.82 67.52 54.21 86.30 53.78 30.40 42.73 15.62 72.04 2.23 77.87 15.15 59.30 25.76 65.57 50.56 91.78 39.97 15.87 86.06 76.54 75.89 59.45 97.31 21.66 54.00 39.39 22.52 23.14 98.91 27.95 66.17 65.42 67.80 61.07 52.49 60.93 29.54 90.52 87.52 33.45 27.86 13.70 23.14 93.86 24.14 51.92 87.71 44.59 15.58 14.28 24.52 13.98 21.77 88.98 97.86 40.36 47.35 30.77 18.42 34.10 13.09 68.60 6.70 98.27 98.61 28.08 9.21 35.71 44.29 81.88 76.18 40.39 48.06 99.23 44.18 75.46 -45.15 2.71 14.96 18.00 78.10 73.15 18.40 96.73 67.99 81.65 81.20 34.74 6.90 59.78 22.24 32.58 10.72 1.60 35.91 94.39 83.50 17.60 16.38 50.67 41.53 85.17 77.64 67.78 2.04 54.83 94.77 5.27 27.73 22.90 90.16 84.86 26.22 89.13 75.75 30.47 89.98 17.74 9.25 60.74 66.16 65.63 45.42 58.83 44.16 49.83 44.61 75.65 65.15 96.41 4.43 80.56 18.84 9.58 45.30 93.30 13.87 26.18 2.82 35.55 81.23 32.27 26.70 3.89 58.63 0.60 61.49 16.31 28.76 80.33 48.43 15.23 54.28 2.76 6.85 67.97 97.25 45.76 89.90 98.60 14.82 65.56 35.96 75.07 33.94 54.52 26.59 98.80 58.36 78.34 26.34 55.22 88.01 21.15 98.63 7.81 -48.79 62.54 70.59 48.34 18.20 26.68 40.53 11.77 96.97 76.01 75.88 26.12 39.14 30.75 68.53 93.82 4.82 49.96 78.61 93.35 12.32 59.39 44.53 49.18 22.88 7.16 86.82 35.34 41.83 34.36 34.45 43.29 8.42 54.14 32.04 63.21 28.12 13.26 95.50 19.19 72.06 93.13 22.56 67.26 48.21 70.10 96.33 79.55 95.29 80.43 77.57 77.41 99.79 1.81 85.83 72.20 88.01 33.69 86.89 44.10 57.34 31.06 20.90 83.33 80.62 79.55 38.64 69.20 5.50 39.18 17.88 4.28 19.94 51.23 67.15 82.52 48.38 89.27 20.18 88.35 38.93 5.79 6.18 8.49 72.97 85.91 16.05 84.70 19.97 9.28 2.20 44.45 86.18 53.69 65.06 59.68 12.70 73.91 56.23 76.10 -4.33 54.16 52.02 47.11 15.26 67.17 48.98 63.44 84.80 5.03 47.24 70.81 13.88 28.16 19.82 83.97 86.11 17.59 37.60 75.02 69.20 32.48 76.96 79.44 77.12 24.67 50.97 45.31 8.26 15.66 14.12 93.39 93.05 94.29 79.06 87.37 52.84 70.00 51.35 2.33 78.63 51.60 48.91 61.22 13.44 44.57 28.63 3.78 59.02 63.28 4.11 81.79 88.86 2.87 49.85 0.36 83.44 88.55 16.52 99.00 84.97 30.41 11.52 55.74 31.30 98.84 24.33 68.05 55.63 67.77 71.88 39.29 87.99 16.05 29.83 19.70 33.89 33.51 1.17 68.53 17.75 46.28 82.87 47.90 8.71 20.44 19.50 71.65 61.48 32.99 96.54 55.84 69.75 53.06 53.20 14.21 75.48 17.47 62.90 24.91 -65.13 52.24 83.28 2.89 28.39 23.69 70.43 6.30 3.52 79.99 62.29 11.41 37.24 50.68 36.04 23.92 10.58 13.52 8.27 1.36 20.78 27.08 98.20 65.47 45.87 41.23 14.15 87.83 64.76 44.89 41.01 52.17 62.73 22.95 11.71 73.92 67.18 42.97 84.20 68.28 32.95 54.67 20.00 36.40 20.71 54.00 4.62 40.97 6.42 42.82 64.88 62.64 9.14 56.95 88.60 70.24 10.89 16.65 67.85 13.70 25.24 99.89 61.35 51.76 46.25 80.53 33.27 0.20 92.64 17.58 41.03 41.01 59.94 40.44 29.70 27.80 67.36 9.81 64.92 10.46 35.51 48.85 82.19 59.57 75.46 87.15 38.87 75.01 40.04 87.35 90.55 41.58 63.37 99.09 88.53 35.88 65.16 6.88 97.29 8.04 -50.64 6.57 66.40 65.13 3.80 27.56 38.39 59.65 68.67 97.06 20.99 94.94 84.43 83.83 15.02 7.94 7.81 59.03 13.97 57.07 65.70 67.29 79.23 95.42 54.53 49.27 54.87 63.22 90.24 7.55 1.40 2.57 43.74 88.70 52.22 17.00 77.49 57.11 67.50 51.67 64.48 31.25 69.31 5.84 26.94 46.79 66.87 40.91 69.35 6.27 93.01 23.05 69.85 75.76 82.77 49.30 21.56 54.52 11.61 31.30 92.41 16.68 21.78 28.68 84.77 98.59 69.21 26.03 12.75 94.62 23.29 55.24 24.72 88.13 62.71 3.04 24.06 72.65 92.67 14.43 70.33 55.20 31.16 59.26 13.70 25.08 85.66 82.32 72.79 17.46 95.97 5.81 20.30 64.82 76.15 87.02 86.20 1.20 34.79 28.75 -9.16 34.47 66.06 18.51 43.27 58.00 89.07 16.04 79.81 73.50 37.03 85.46 72.96 1.36 89.18 90.82 73.79 96.50 41.73 83.02 7.33 5.52 78.96 76.84 56.88 0.10 82.09 31.14 16.30 98.07 7.19 20.26 23.59 50.01 1.78 22.78 48.96 29.94 28.10 45.53 36.78 39.84 55.89 44.19 53.72 99.01 47.10 46.40 52.57 79.12 66.32 99.44 55.21 8.74 51.81 6.99 71.90 64.59 98.88 36.39 74.90 79.78 91.57 76.06 33.55 27.79 99.53 81.79 85.09 67.33 48.86 37.62 19.43 9.68 43.69 8.01 3.60 30.07 34.90 9.36 63.20 3.33 86.91 37.92 25.90 63.90 15.69 90.88 85.35 38.58 91.96 82.60 22.23 17.24 33.83 70.90 89.69 73.04 93.42 79.34 -57.32 43.30 44.09 66.27 56.64 23.63 92.94 71.26 36.60 85.15 7.29 39.33 85.72 99.97 38.67 35.62 63.24 21.27 33.69 47.74 64.75 12.64 69.06 83.42 9.54 71.44 86.04 24.84 57.53 72.42 19.75 96.62 78.21 18.45 1.73 17.26 72.59 41.97 6.25 77.63 62.84 85.02 97.98 75.71 46.78 85.12 23.93 23.88 35.74 93.10 49.27 34.79 50.27 53.34 64.21 17.38 5.70 60.62 18.13 1.73 56.86 11.07 1.36 89.07 39.41 73.80 84.41 23.04 21.88 10.76 83.12 84.33 19.72 21.43 2.84 12.42 7.79 12.48 69.53 73.93 7.90 96.57 51.22 98.12 8.37 50.56 40.42 33.87 21.55 59.30 91.33 62.83 22.08 63.58 6.44 46.16 47.56 23.84 5.93 95.83 -4.94 30.50 34.48 12.58 6.08 27.72 93.26 91.12 52.53 51.41 64.48 45.62 61.58 85.37 99.85 62.00 39.27 81.51 64.38 9.29 7.17 90.54 70.53 70.63 75.74 88.64 70.01 78.25 84.86 11.14 33.21 72.21 85.70 0.16 76.45 11.64 43.85 55.51 68.81 44.91 49.21 13.65 27.82 47.57 44.75 82.84 54.01 54.00 43.88 60.03 1.30 35.29 55.65 41.45 53.18 62.35 87.41 68.39 22.54 89.11 45.26 23.05 45.87 35.02 95.27 57.04 80.34 39.67 24.31 70.73 35.18 71.60 35.53 3.95 39.22 65.16 96.03 22.42 71.86 30.63 23.90 65.35 47.29 15.19 45.34 44.01 21.37 27.40 77.31 70.97 53.90 22.70 47.33 24.98 17.63 68.87 4.96 47.57 80.21 60.29 -53.42 7.27 2.40 64.15 68.77 2.70 7.20 68.53 99.23 15.95 55.52 55.49 92.59 21.71 60.72 39.10 68.15 99.36 80.09 68.34 78.30 1.88 76.73 3.07 68.86 16.82 83.97 41.00 94.62 37.96 74.02 0.95 73.82 86.32 8.59 59.50 13.34 38.36 14.06 39.85 67.17 91.08 18.91 10.40 96.23 61.87 77.95 67.57 36.81 17.21 60.27 68.78 18.43 98.56 77.25 85.55 73.38 98.61 81.28 97.21 28.48 91.53 99.27 56.90 23.47 99.03 16.02 48.82 68.21 69.24 26.16 18.44 4.24 27.53 16.33 97.26 94.94 94.39 57.58 75.18 62.60 66.79 83.33 79.92 97.73 91.02 61.18 37.91 58.67 41.19 75.05 64.81 28.65 35.55 57.16 29.34 69.70 16.30 18.56 56.29 -40.61 87.33 7.05 72.45 34.72 86.45 66.30 98.80 34.33 17.97 46.97 14.08 50.31 67.58 1.01 42.34 65.41 2.24 66.34 5.54 81.87 52.99 12.59 65.00 12.28 93.82 36.63 84.58 59.94 45.61 94.48 94.42 40.07 96.36 41.12 32.57 20.07 90.08 4.95 88.23 30.69 57.62 77.45 49.73 14.27 49.14 3.68 82.77 8.84 1.04 70.49 77.22 75.08 30.70 98.53 11.00 14.03 64.14 51.40 17.96 18.23 67.72 54.10 19.32 95.72 26.84 79.12 95.24 4.04 89.25 69.21 82.42 15.14 9.94 99.50 75.37 19.33 59.85 55.68 31.37 26.35 43.44 79.83 70.50 63.75 7.68 73.99 32.98 63.86 77.83 55.05 95.26 73.35 4.00 31.48 7.08 73.81 75.17 30.51 89.50 -14.76 30.87 10.05 39.93 83.37 66.12 82.60 47.30 28.61 60.05 33.47 70.09 14.60 1.23 74.17 27.86 9.58 63.36 74.55 38.69 3.95 55.35 61.49 43.63 38.03 97.61 14.04 38.43 72.47 87.84 83.37 78.57 53.29 23.68 32.43 17.40 11.85 39.76 58.45 53.38 24.92 56.43 25.96 89.87 32.51 49.09 79.55 90.39 15.48 86.91 88.63 85.46 74.57 36.87 52.51 7.08 4.12 76.42 32.35 21.29 87.66 4.04 39.44 69.61 4.81 96.02 92.38 66.59 35.24 9.97 91.14 94.87 85.60 77.83 56.48 66.23 61.45 89.26 44.25 81.95 80.42 96.23 67.34 96.31 52.48 82.04 54.59 50.13 53.14 4.23 28.36 2.24 0.21 58.76 10.84 85.32 77.67 26.81 34.47 23.39 -19.59 75.60 28.29 0.92 80.50 18.34 84.68 24.32 67.18 61.00 16.70 92.29 2.15 35.22 91.88 62.95 64.49 96.87 82.30 19.50 29.11 7.75 21.69 18.06 46.10 7.44 62.28 54.63 74.93 49.72 10.94 28.42 46.25 93.86 7.32 22.58 75.51 74.10 41.27 44.07 41.07 78.16 29.70 12.85 89.64 95.32 71.58 67.79 35.04 33.63 66.15 85.28 77.08 44.33 93.82 34.55 6.89 50.04 10.05 67.62 93.49 36.30 65.58 45.59 27.46 83.13 40.11 46.65 17.26 82.74 62.43 79.72 96.32 55.21 18.98 22.22 92.41 66.43 67.68 46.31 90.02 49.56 22.92 50.44 81.13 48.23 56.08 27.27 79.60 83.52 8.78 39.95 57.38 23.71 68.05 47.76 78.07 95.80 22.40 55.15 -11.61 63.30 5.52 98.33 38.98 19.32 99.48 64.58 37.59 5.56 15.30 37.74 47.97 64.03 76.90 9.04 8.29 92.94 9.94 8.45 10.80 59.57 24.46 20.81 11.73 3.68 82.58 46.66 96.30 63.07 2.21 1.23 36.93 71.38 17.30 37.85 16.21 44.77 4.73 24.42 66.28 93.38 91.63 93.95 90.01 61.34 75.26 23.71 99.43 97.87 72.91 69.57 26.39 89.33 23.55 12.11 59.90 29.36 78.20 40.45 23.89 16.02 48.63 41.18 78.44 69.29 24.83 32.04 93.56 44.39 14.96 16.57 67.27 28.21 33.15 96.83 68.35 51.98 70.13 23.06 53.07 35.08 55.42 50.68 35.43 47.53 57.51 76.12 21.03 78.78 77.65 12.76 64.36 16.34 31.46 82.40 25.11 62.18 37.48 98.31 -0.76 47.01 21.26 89.23 11.81 5.89 44.14 32.56 95.74 69.19 85.36 29.33 3.70 49.04 46.05 46.84 50.53 74.05 93.19 53.12 99.67 23.33 14.82 72.22 40.50 81.25 40.15 51.00 92.56 12.10 56.31 45.81 5.64 41.54 94.98 30.70 84.58 6.49 33.63 33.86 44.87 62.13 47.99 24.22 92.58 31.49 66.22 38.67 42.58 12.94 86.18 11.72 60.00 95.56 44.28 10.93 76.90 68.02 77.42 13.13 27.35 70.62 13.50 35.50 83.63 62.59 88.79 95.57 45.80 3.34 10.48 87.44 65.38 87.27 26.46 54.58 7.25 3.26 20.19 15.56 74.93 20.93 18.72 94.75 54.32 13.81 47.19 71.48 8.82 15.44 86.18 40.82 54.09 89.02 37.13 33.19 73.54 66.91 18.99 6.25 -23.98 85.09 78.48 37.18 81.57 11.99 86.04 93.44 30.36 94.16 31.73 75.16 4.12 42.08 95.33 3.60 73.09 42.19 79.11 33.21 64.20 78.26 32.08 70.06 3.81 59.50 1.84 22.12 76.08 68.93 69.09 89.25 20.28 2.57 75.81 46.35 34.98 16.49 86.02 28.71 9.79 79.29 99.77 35.55 79.54 56.50 94.78 49.93 32.06 65.96 37.59 12.71 95.33 98.94 19.44 76.49 56.72 29.82 52.27 65.85 12.86 93.64 66.27 81.40 32.83 85.61 25.57 27.17 70.55 7.59 35.67 97.84 94.39 20.17 25.62 24.16 40.86 78.53 21.41 66.26 4.35 93.67 71.10 5.26 77.40 8.68 92.33 73.57 75.68 62.14 56.03 39.24 28.54 52.39 75.33 95.49 62.61 90.08 62.81 39.44 -56.78 42.37 90.34 14.55 17.61 36.66 45.41 41.68 80.21 89.28 17.47 59.85 64.90 95.95 21.50 51.95 86.20 76.52 89.56 88.13 52.57 8.64 60.25 15.32 56.65 42.26 51.49 51.80 14.55 86.00 94.02 42.37 11.59 37.49 15.81 60.70 60.03 72.77 7.69 22.17 89.09 59.72 15.76 34.78 51.77 83.73 27.17 7.89 76.98 56.19 81.34 54.77 99.18 42.48 69.67 24.23 16.52 90.22 52.15 24.82 45.15 84.62 90.88 18.62 35.71 13.47 1.28 49.25 46.74 78.04 9.73 49.01 79.37 8.89 31.97 93.54 23.74 75.72 19.74 10.22 30.87 84.16 44.81 58.36 75.73 56.17 70.26 11.09 85.91 9.05 72.56 54.61 24.55 59.62 84.61 43.98 23.78 65.31 28.41 87.68 -62.92 72.95 50.64 51.23 28.61 95.17 74.71 47.58 14.45 87.56 44.71 96.12 73.44 61.52 94.11 0.30 36.07 11.65 65.82 84.89 68.60 5.09 99.79 90.39 36.69 93.98 60.01 60.21 37.67 6.92 65.14 67.18 59.30 65.61 71.78 81.82 53.35 23.32 18.53 50.77 63.31 13.41 34.57 50.11 36.51 68.41 78.98 16.73 33.72 93.81 7.49 39.71 24.77 70.75 95.45 3.41 50.35 30.28 67.09 47.20 79.86 29.35 90.16 61.16 7.00 10.43 13.46 17.02 22.03 31.78 87.61 82.92 3.17 98.31 50.59 40.16 55.95 68.09 11.81 11.56 68.84 35.54 5.01 22.84 37.65 72.67 67.50 80.70 15.08 50.49 86.49 7.88 38.17 32.62 85.13 74.68 71.39 25.03 67.16 47.64 -3.53 14.86 21.21 56.51 96.59 31.66 75.59 26.84 0.83 95.31 34.41 72.94 11.89 48.09 43.39 27.08 80.66 18.73 45.88 4.16 69.32 20.11 19.36 16.62 87.08 11.81 22.68 74.48 59.63 3.20 67.12 85.42 7.04 46.02 47.73 66.89 19.80 18.07 94.37 2.23 25.80 94.06 98.48 44.14 73.68 95.69 14.90 62.06 7.86 91.53 37.26 40.08 8.79 78.60 95.35 76.94 48.47 68.29 21.23 10.13 17.63 30.73 15.94 74.94 15.12 14.34 3.95 54.14 6.60 57.36 16.92 66.69 3.54 1.36 88.56 90.47 46.14 86.52 78.15 0.24 0.62 9.39 61.90 76.29 11.88 47.67 91.05 74.95 65.49 81.84 84.99 47.74 38.41 41.73 94.92 51.17 97.60 8.18 61.10 67.07 -40.74 71.15 22.29 31.04 4.24 50.53 91.02 57.55 31.31 33.13 52.25 8.85 0.63 21.64 5.66 57.33 0.87 42.92 12.15 51.91 55.07 70.49 4.32 4.80 18.20 25.07 37.40 99.74 5.86 0.78 37.69 27.45 66.19 75.17 56.81 97.21 98.50 38.32 79.60 81.78 52.77 99.84 45.68 6.71 77.85 81.14 41.63 34.72 6.44 76.28 3.57 96.45 65.71 37.16 28.83 9.48 40.60 44.14 56.16 90.13 66.94 26.36 95.43 8.78 88.45 53.25 81.95 47.88 47.91 54.70 72.71 89.78 96.97 12.91 54.35 74.28 32.40 45.93 0.84 8.67 28.62 75.13 47.33 60.90 47.55 58.06 70.50 85.14 63.35 33.33 20.82 75.52 96.46 10.52 96.26 78.05 87.12 58.71 2.72 61.53 -52.24 23.89 93.47 48.08 26.41 93.20 8.20 39.34 86.00 97.85 51.61 70.40 77.04 77.24 1.59 73.58 93.17 65.26 50.15 34.01 53.35 44.37 53.94 52.71 67.27 79.24 68.99 19.18 28.79 82.12 2.46 62.48 79.55 0.17 90.87 3.13 4.99 25.52 59.03 62.04 3.49 42.29 93.38 80.00 56.87 44.44 67.23 30.51 56.68 27.71 24.23 2.46 5.61 39.89 48.66 48.21 57.90 95.94 96.72 93.90 70.51 64.60 2.12 30.82 87.35 35.24 19.36 83.14 38.49 20.01 94.50 29.47 24.56 46.95 83.37 28.53 97.01 79.54 73.01 82.26 50.15 88.61 33.99 4.78 4.44 77.39 13.33 8.53 43.09 98.10 13.31 34.35 50.04 39.13 68.35 10.51 14.89 60.69 33.95 40.79 -81.39 81.09 7.73 94.59 37.54 0.03 29.18 90.62 14.13 82.18 85.66 98.29 28.35 20.43 17.66 54.62 14.30 38.30 83.55 52.89 62.63 39.29 14.05 14.72 87.49 78.53 22.54 56.68 86.42 98.74 82.32 83.40 72.06 45.88 62.59 48.96 30.55 29.60 61.41 43.20 3.88 68.25 90.19 17.31 80.03 61.07 39.44 54.78 84.74 84.98 65.91 16.98 15.37 35.41 55.30 64.30 12.63 55.44 80.14 73.76 88.15 73.56 49.59 78.34 26.15 24.88 53.87 27.88 96.26 43.72 22.27 11.45 52.18 23.15 6.43 58.51 10.61 23.04 29.28 54.57 46.98 85.36 15.21 31.79 95.32 15.54 14.59 73.62 47.07 52.64 76.80 39.28 22.24 43.26 67.60 1.13 18.64 23.05 81.98 15.22 -58.64 16.69 57.92 37.47 12.57 89.00 8.87 4.65 78.28 39.66 71.25 22.35 21.99 58.08 86.44 95.09 25.87 17.68 24.59 90.33 88.80 43.67 17.39 20.01 67.06 39.77 18.39 69.60 5.62 23.57 47.47 27.19 56.43 7.06 56.52 31.55 75.63 93.65 2.63 88.12 15.98 5.13 98.65 96.52 16.95 71.64 35.47 97.01 78.36 38.92 86.18 19.37 87.34 25.59 32.87 8.74 49.08 50.91 23.80 21.48 85.89 46.94 49.54 55.79 58.88 15.19 84.63 78.01 85.26 38.51 50.92 18.66 39.81 9.15 35.05 62.75 95.72 46.59 90.17 15.32 97.21 81.08 15.30 58.81 6.28 6.74 76.54 63.64 56.36 5.50 65.29 18.29 6.14 47.30 93.50 43.26 98.70 63.15 24.02 73.40 -97.10 18.03 64.29 15.24 38.34 68.96 58.35 74.19 49.61 58.39 20.33 91.44 17.72 68.91 6.42 55.92 17.44 63.31 8.63 19.73 50.68 10.44 66.48 72.65 44.87 69.80 7.22 2.19 96.48 88.03 92.11 90.39 13.92 16.43 78.54 51.15 53.88 83.51 39.10 72.88 44.01 33.62 38.84 68.01 95.08 74.76 9.94 72.24 74.90 77.05 3.98 50.68 52.68 70.21 84.05 76.27 54.81 64.92 34.23 39.37 39.60 25.59 65.01 48.12 37.25 98.03 46.40 60.26 57.81 44.55 15.46 70.00 53.83 40.41 34.31 50.17 71.83 44.38 26.97 45.06 65.60 45.71 17.14 10.42 96.77 43.68 76.57 46.45 72.45 4.07 61.47 97.78 52.31 45.03 88.56 10.84 80.79 73.93 51.51 7.40 -19.93 12.84 78.26 88.73 96.26 70.41 65.22 17.87 47.54 47.82 30.54 73.30 31.13 57.64 29.18 25.46 10.19 63.50 13.94 75.46 7.82 50.64 10.62 90.30 65.49 11.88 39.20 56.52 42.37 65.58 62.64 23.67 66.19 7.56 76.18 42.40 29.94 73.21 97.49 95.54 88.93 7.19 13.14 87.25 41.99 5.29 85.86 92.35 22.09 3.26 8.01 37.11 59.60 1.64 55.11 98.24 55.64 56.94 38.40 49.68 4.00 89.72 86.52 29.27 10.50 10.20 26.39 26.14 80.68 44.83 22.53 1.06 69.38 98.48 15.74 94.24 16.24 61.83 43.67 21.18 75.32 8.97 30.46 38.23 19.33 0.21 90.99 26.57 20.13 4.68 31.99 35.76 51.53 62.86 45.18 99.37 52.92 58.71 44.29 1.46 -15.34 26.14 92.91 27.51 86.57 55.52 3.33 67.95 35.66 83.20 96.46 12.09 31.05 19.82 94.24 99.00 95.98 61.50 61.76 19.77 59.99 83.95 49.23 42.04 60.26 72.33 89.58 82.52 77.38 75.61 91.85 5.40 24.05 77.29 30.20 59.68 72.65 39.61 6.32 85.88 47.52 16.18 18.71 80.63 99.40 9.21 35.13 23.13 8.51 20.12 62.59 81.63 2.93 20.57 63.01 75.34 28.37 28.34 23.84 84.93 5.85 11.31 13.33 0.42 50.27 91.69 34.99 38.93 42.05 89.83 7.73 98.51 59.13 98.55 77.76 0.86 6.35 68.62 44.42 9.50 53.90 23.13 8.33 14.48 6.71 55.82 89.51 15.61 15.25 12.82 6.70 35.55 49.75 34.47 70.08 84.81 45.64 84.79 39.94 57.08 -58.23 21.67 81.40 8.32 66.12 42.50 26.20 91.31 63.50 20.59 45.31 42.07 72.35 9.88 59.04 69.96 41.04 55.86 52.07 93.73 58.55 29.95 28.22 92.81 46.21 96.20 80.08 24.83 19.15 79.09 99.54 69.26 31.34 8.62 19.04 74.70 69.27 48.74 4.00 75.87 94.14 60.54 59.46 22.63 95.43 0.57 87.20 28.24 43.69 65.91 39.50 6.08 4.69 26.83 67.98 75.10 98.97 95.61 41.69 48.13 22.90 99.36 43.51 78.68 0.85 36.94 58.88 92.23 38.13 48.78 91.34 10.99 15.46 43.09 61.68 66.31 93.79 62.84 3.36 52.12 77.90 44.32 45.22 40.90 84.27 17.57 41.39 0.90 35.92 7.40 75.73 59.87 66.32 82.32 3.09 67.86 40.64 25.42 90.99 21.80 -23.53 70.87 74.95 9.74 54.20 53.34 40.08 13.61 74.87 62.58 24.55 10.84 88.52 67.64 33.41 85.19 48.11 75.39 73.74 50.96 84.46 41.93 10.94 20.01 1.19 48.03 96.83 7.21 55.74 27.16 6.02 54.84 29.55 23.05 82.36 57.31 83.07 26.47 24.45 78.18 65.77 37.35 67.54 26.97 52.74 16.52 37.66 81.71 25.41 90.50 77.83 40.42 7.91 5.77 96.92 88.59 26.59 3.34 74.52 62.71 70.64 61.72 55.30 81.09 60.21 4.17 2.58 47.92 92.53 67.26 53.18 22.25 40.61 37.96 82.47 91.33 55.25 45.34 38.33 51.02 74.46 34.64 61.38 41.20 17.77 61.60 64.78 24.30 23.98 12.12 56.39 24.75 16.67 13.90 58.75 97.03 57.58 91.05 21.02 72.18 -62.61 42.02 83.64 74.70 12.63 72.59 79.15 62.58 29.50 74.49 31.84 10.61 98.11 14.66 48.48 72.73 48.56 99.28 51.25 60.36 85.97 53.46 89.50 31.91 49.60 12.25 30.44 87.74 47.05 0.71 18.96 9.21 10.59 98.57 75.33 99.82 89.05 0.38 14.20 19.92 4.53 78.82 56.35 9.05 54.93 7.85 89.88 48.30 80.27 22.82 27.09 22.49 72.29 11.73 96.01 99.36 17.70 63.32 7.13 98.70 50.74 11.29 88.95 28.65 38.41 81.64 43.68 83.53 97.76 66.24 96.19 12.38 86.41 85.91 5.12 83.21 49.88 39.09 15.25 29.96 2.39 19.05 6.48 32.88 5.09 26.83 38.10 1.85 38.80 82.35 79.75 58.22 14.23 49.96 63.80 71.36 53.82 11.76 56.27 88.48 -90.70 97.16 99.44 73.51 74.28 45.16 53.08 97.49 5.29 69.34 99.87 35.56 93.00 65.41 67.40 38.74 25.88 6.60 58.85 72.00 73.13 73.24 6.16 73.90 31.31 62.43 24.71 79.27 31.82 47.94 56.98 4.31 90.03 73.13 74.99 1.04 18.50 39.22 34.19 43.86 10.25 3.74 87.58 34.57 65.36 67.37 2.69 15.13 83.92 34.91 46.56 80.98 69.81 46.42 71.96 2.19 58.79 70.98 23.85 93.23 98.93 34.41 27.36 42.16 98.12 52.54 28.46 33.87 0.98 53.18 86.48 48.60 84.53 28.51 48.47 41.84 11.38 55.07 39.10 58.96 81.95 36.41 62.13 75.60 5.19 93.68 80.78 59.82 80.81 85.71 15.59 82.01 24.84 52.61 37.56 44.62 97.81 27.32 83.55 45.23 -73.08 30.78 34.76 60.70 25.34 48.07 86.40 54.94 79.96 74.68 92.54 40.62 51.72 71.43 10.91 34.73 83.71 97.60 59.75 32.61 22.51 30.56 3.57 30.28 91.62 32.14 73.42 95.84 80.63 49.17 55.00 28.51 10.03 95.22 4.44 56.48 49.74 25.41 52.86 53.52 32.21 20.75 99.92 79.20 41.03 88.31 60.78 2.64 32.43 56.75 76.11 34.40 24.92 58.06 94.02 9.43 90.87 45.12 99.64 64.26 89.55 83.26 9.51 7.54 76.75 95.96 69.11 56.83 29.54 8.80 56.01 6.83 90.68 65.17 28.19 34.24 44.17 63.72 8.96 82.55 11.06 73.74 19.03 26.86 44.48 22.98 79.99 60.09 84.43 38.11 51.88 70.01 75.01 87.22 32.31 44.80 29.47 24.65 96.56 29.36 -58.26 86.30 82.60 67.76 2.53 0.35 8.58 53.36 75.75 96.11 17.92 32.63 71.76 1.39 27.47 58.33 2.07 56.70 20.68 8.50 31.39 87.49 52.99 30.35 52.51 61.19 14.32 32.40 56.50 90.96 23.69 79.40 22.53 0.58 67.04 16.17 79.49 5.21 36.50 52.33 60.36 35.62 8.88 70.51 51.43 6.29 10.26 28.22 9.72 83.11 39.81 74.31 47.29 39.07 31.64 98.09 30.22 17.09 80.57 89.55 33.77 76.71 78.96 69.36 23.59 37.55 50.26 26.15 7.97 72.37 31.31 38.57 3.28 38.36 40.06 41.12 63.08 44.05 59.44 87.26 2.66 48.85 43.27 90.27 63.56 88.24 52.93 42.16 55.04 84.67 62.70 35.76 67.08 44.93 14.28 14.96 23.13 28.57 56.74 74.33 -64.00 99.27 73.95 25.71 0.23 17.15 72.78 7.20 5.65 20.03 4.17 60.88 81.67 97.61 63.85 91.08 25.88 30.24 22.57 89.94 24.59 30.97 79.36 59.27 41.84 89.18 51.96 50.43 35.53 79.34 5.51 26.74 84.33 93.48 92.66 61.88 61.87 79.84 34.42 10.76 62.17 16.82 38.69 86.62 79.78 12.44 95.32 32.13 25.38 43.19 32.47 92.90 59.66 90.82 16.44 72.73 83.65 31.94 81.39 23.53 93.41 44.36 56.64 57.03 70.03 55.72 63.44 4.82 40.93 26.00 93.36 10.92 46.45 9.03 50.28 80.65 23.56 63.43 58.43 23.57 18.98 16.58 78.89 98.46 40.78 27.67 65.95 42.93 79.04 28.26 57.07 15.91 60.61 70.36 19.41 15.58 72.03 34.62 39.67 67.86 -90.38 43.48 69.29 62.74 44.83 65.01 57.44 77.09 74.59 33.95 33.16 76.86 80.49 82.81 57.19 88.70 12.22 76.78 41.38 78.19 1.02 96.05 71.73 90.90 47.14 28.90 41.71 60.09 91.91 87.30 45.20 80.32 46.43 66.11 77.64 7.12 76.94 60.69 53.93 23.58 99.30 35.49 73.59 3.49 21.23 11.73 94.95 56.33 72.41 26.26 55.45 72.25 48.79 27.70 1.40 28.85 57.22 53.27 83.08 3.57 80.88 32.94 25.08 7.82 7.30 55.38 28.67 0.03 6.36 46.35 48.48 16.97 83.06 64.38 70.41 26.82 25.71 36.78 92.60 81.99 35.58 19.01 9.87 12.06 16.60 8.92 48.82 82.51 86.31 70.48 74.22 8.65 93.45 10.24 24.02 47.04 46.80 59.23 86.16 6.97 -55.41 4.52 54.07 13.39 51.39 12.07 81.61 77.40 62.92 96.05 57.28 33.16 8.40 64.40 65.59 40.04 40.12 21.96 57.79 42.62 36.30 71.61 60.23 43.66 60.64 51.46 56.89 4.37 13.78 20.38 23.02 64.99 49.30 21.04 6.41 36.19 48.45 71.19 68.80 84.42 6.15 72.86 79.79 65.89 74.48 93.02 47.71 13.07 9.72 66.13 65.09 52.15 49.75 98.36 75.54 20.27 51.44 50.73 72.22 92.92 57.15 48.06 27.51 82.51 48.70 52.80 61.68 40.36 67.59 84.92 34.16 69.15 63.65 80.47 38.83 61.99 0.77 6.02 62.01 0.02 64.91 80.45 42.13 84.62 85.82 61.76 90.04 29.62 56.19 87.49 44.95 60.81 51.43 56.72 70.23 33.52 39.88 15.57 6.60 40.41 -44.68 87.25 81.36 81.00 31.53 49.96 4.52 17.39 93.07 1.01 1.79 15.34 25.86 34.96 23.99 55.91 87.18 25.85 50.95 37.22 53.73 48.05 14.48 51.34 22.74 48.89 81.68 57.42 26.29 25.39 20.48 80.16 16.96 20.00 27.86 0.66 37.18 55.37 87.68 41.48 47.04 67.13 78.92 12.72 58.92 72.94 72.26 90.02 27.81 90.25 91.78 13.06 17.78 43.12 4.48 25.95 55.08 4.63 19.93 64.80 91.47 66.73 90.04 82.16 44.70 63.90 99.35 21.57 32.79 45.44 59.32 56.64 84.39 23.43 58.87 57.09 76.49 62.21 87.00 23.90 68.85 26.96 21.56 78.85 88.61 88.85 26.68 86.81 68.38 85.08 52.21 5.79 54.52 7.98 94.73 42.37 55.94 18.23 21.48 98.32 -94.24 63.89 8.71 2.45 27.48 0.22 16.06 57.68 6.97 93.67 54.11 8.33 7.86 8.13 45.94 38.57 11.62 85.18 13.13 87.97 58.51 70.71 3.54 29.94 69.26 69.75 92.34 33.42 50.63 50.53 7.58 7.40 50.41 24.58 27.59 89.97 54.41 51.52 5.65 38.19 57.91 24.85 31.45 16.55 31.40 59.99 98.48 87.99 34.52 25.21 17.31 5.22 87.35 45.37 73.77 14.99 54.02 27.37 96.94 84.43 93.78 86.65 41.42 17.11 37.47 45.67 64.13 15.13 79.86 45.45 21.08 33.54 2.07 39.79 91.17 99.02 59.06 54.56 35.85 15.99 23.80 56.36 37.78 22.10 23.13 99.88 76.98 47.35 79.92 18.17 13.07 90.27 16.16 94.91 88.90 42.77 39.27 54.91 94.92 35.49 -30.19 74.79 29.72 89.29 17.61 14.71 10.85 87.16 62.69 7.92 33.18 4.23 36.55 53.75 8.89 12.48 73.88 80.10 61.79 57.20 76.47 62.97 82.84 72.81 19.80 6.65 58.72 32.49 42.86 64.71 97.44 34.52 53.98 91.36 84.36 43.82 74.91 36.45 23.86 1.26 65.24 10.44 80.98 9.16 70.91 41.65 21.85 11.14 45.06 78.16 63.44 53.70 80.37 91.16 96.47 61.54 28.41 47.58 7.15 23.75 21.53 83.54 69.81 80.72 81.62 43.84 2.72 16.81 24.30 26.44 61.32 38.56 91.34 1.95 38.19 17.31 74.56 18.59 82.14 12.17 13.29 39.16 75.88 79.02 92.33 64.80 59.87 64.18 99.72 7.96 48.88 62.72 71.69 40.05 96.97 84.77 82.62 84.66 61.16 90.26 -84.22 81.17 47.68 54.43 10.92 86.13 51.63 69.35 95.24 91.52 26.56 83.68 33.68 73.93 17.81 2.01 38.92 57.66 24.03 44.93 6.72 27.41 94.34 93.80 5.22 60.59 37.38 11.20 38.41 0.19 40.71 14.40 99.35 88.09 29.19 45.93 78.52 3.31 72.29 26.27 50.47 14.50 47.21 87.62 95.50 7.21 14.26 62.68 58.04 69.89 30.73 76.04 71.05 19.33 74.22 16.52 65.49 54.01 32.29 7.34 16.12 48.60 33.34 39.93 19.90 9.88 95.04 6.36 4.82 59.64 79.14 89.16 85.42 36.75 16.31 66.80 89.04 76.27 4.12 37.45 58.61 44.99 86.87 12.56 95.69 30.53 71.93 82.67 72.26 34.46 49.00 11.26 82.34 31.08 46.62 14.63 45.02 22.03 15.36 8.54 -54.77 60.57 72.82 47.85 41.00 68.07 62.76 77.28 53.98 31.79 76.46 34.29 97.79 99.73 59.38 3.04 48.48 76.57 46.59 6.33 25.42 6.41 83.04 25.47 96.16 37.87 89.14 63.84 47.96 60.68 53.47 1.85 29.59 73.54 12.97 10.30 43.55 12.20 45.93 99.33 76.97 36.30 46.35 60.97 25.69 86.69 84.87 4.79 61.87 21.69 59.36 87.05 39.90 5.57 28.88 12.32 69.95 0.11 9.27 42.53 9.13 75.15 73.20 73.96 11.63 14.97 64.73 53.05 94.39 79.04 78.33 0.54 14.54 40.11 61.06 23.63 64.95 17.19 12.66 4.71 49.05 68.72 3.06 95.53 71.57 74.82 38.27 89.94 17.25 69.22 17.10 35.60 59.15 46.65 11.11 95.28 62.00 20.16 64.35 6.47 -42.15 53.93 53.88 96.08 7.21 36.57 32.60 35.32 78.85 77.35 86.94 50.17 46.97 19.84 24.79 65.94 24.17 26.81 68.72 5.00 2.55 83.46 68.13 17.62 0.22 21.59 46.03 89.50 28.07 18.30 22.14 19.28 31.84 54.08 27.11 17.01 95.31 87.33 38.64 74.66 81.27 63.59 6.38 7.49 94.21 56.59 71.62 75.92 17.52 5.10 12.40 51.01 41.26 87.26 53.70 56.89 52.11 68.53 58.69 23.88 72.23 14.73 85.42 94.88 0.68 23.76 98.09 14.07 29.35 34.93 71.26 47.68 54.88 68.77 26.80 41.70 99.63 44.77 14.82 16.65 1.76 11.69 81.71 14.09 73.97 52.31 0.84 42.41 92.83 75.43 78.09 43.82 63.17 54.87 43.78 83.14 51.80 83.63 3.93 15.63 -25.75 92.26 54.74 34.30 72.29 20.53 66.64 11.96 56.05 0.69 46.84 56.07 39.77 39.08 83.01 8.01 33.36 88.15 92.71 21.67 39.92 7.99 1.20 9.14 88.31 37.74 25.08 63.25 32.19 40.23 94.37 63.86 38.60 73.82 66.89 53.75 89.56 91.59 42.62 73.96 72.53 8.59 16.83 25.07 21.68 18.47 35.03 22.64 77.87 83.88 35.56 22.83 37.02 95.12 71.35 16.09 64.93 10.36 30.34 63.97 5.63 72.40 75.01 77.88 52.28 98.89 82.35 62.80 91.82 34.96 20.16 78.04 54.08 84.70 53.46 99.16 80.18 19.38 47.99 0.20 66.92 77.04 31.51 11.17 10.81 98.48 16.04 64.46 68.35 29.37 43.02 90.07 76.68 95.69 75.18 54.67 88.42 85.03 75.87 76.93 -43.09 99.49 1.61 18.27 98.57 64.54 3.25 22.95 99.64 66.32 76.81 86.12 18.83 48.21 61.29 54.07 44.12 91.35 56.52 98.91 79.31 51.06 65.41 45.31 44.25 79.12 18.82 59.02 99.32 33.74 16.12 98.10 15.16 77.53 99.18 65.11 35.78 14.21 82.11 10.22 42.62 63.86 68.32 50.55 76.11 64.68 26.60 19.32 30.37 51.18 6.41 71.29 98.47 83.08 25.19 30.92 53.92 32.97 26.81 28.46 41.74 63.72 39.02 29.42 36.88 10.06 8.09 88.78 53.54 67.90 8.13 99.50 57.95 7.18 33.97 70.85 19.10 58.26 54.38 39.78 16.96 7.31 5.31 31.16 38.97 10.74 32.20 80.92 77.26 84.46 78.13 54.52 7.17 70.25 5.15 12.63 54.68 55.88 30.65 98.71 -17.09 62.41 25.19 58.80 9.36 78.79 91.04 14.76 43.74 64.95 13.18 1.62 18.52 89.25 43.57 27.46 67.77 57.79 20.78 96.41 97.93 13.74 45.39 2.96 28.08 91.73 21.60 27.32 99.49 10.76 4.97 17.07 81.65 64.32 42.51 32.33 70.82 83.84 13.21 94.94 40.35 54.14 29.96 7.76 46.46 38.16 3.30 14.24 26.45 27.02 9.25 79.05 19.87 4.78 66.44 74.46 99.85 57.60 9.45 29.53 97.20 71.32 82.42 29.89 56.40 95.38 14.70 99.41 2.61 85.86 88.89 76.57 91.47 54.57 35.00 21.47 56.24 52.54 41.63 80.71 5.39 40.21 87.02 10.58 55.03 25.73 75.78 19.04 22.81 39.46 65.81 54.20 78.06 77.81 39.64 6.04 93.51 43.95 21.67 35.03 -6.53 28.45 71.26 34.42 71.69 6.30 27.95 34.57 93.60 14.01 83.00 80.12 51.29 54.49 46.17 1.10 12.69 38.38 32.50 47.74 10.56 89.78 5.77 65.79 52.86 20.41 62.54 0.07 91.05 59.88 60.58 47.77 11.76 69.54 19.47 3.90 84.89 24.48 9.56 97.40 28.47 60.69 53.35 96.09 37.96 96.17 97.23 67.40 25.67 72.13 13.99 45.15 52.00 70.59 75.83 28.40 49.86 36.00 0.25 22.33 60.32 85.67 39.12 34.50 16.80 52.84 62.57 70.73 71.48 61.41 17.29 55.86 97.83 30.72 51.55 24.70 19.91 77.96 99.77 82.76 61.29 84.39 67.80 26.61 6.82 67.47 61.48 22.31 2.99 28.39 20.38 31.87 85.72 13.80 29.65 50.80 52.25 85.10 10.37 15.48 -9.04 94.43 30.12 54.39 44.92 56.23 83.36 6.86 13.95 42.93 90.13 79.71 34.61 97.38 63.28 66.99 46.34 37.28 38.63 48.33 62.43 6.33 0.24 97.51 1.26 7.22 89.63 60.79 59.47 43.50 8.86 70.39 55.32 90.79 20.38 3.72 40.12 63.85 34.13 69.78 18.67 17.41 66.65 47.16 67.97 29.70 99.27 75.38 48.93 23.13 47.90 14.05 56.81 41.93 45.63 52.45 34.20 21.27 81.04 33.54 35.87 83.29 76.36 88.55 89.31 19.34 30.55 14.85 49.50 77.83 46.64 2.38 8.68 71.90 71.03 12.06 24.56 52.69 9.13 6.86 81.76 8.11 11.78 65.80 22.53 64.74 25.92 70.07 66.25 96.14 90.82 50.92 96.15 28.55 37.80 20.25 93.20 96.59 29.98 99.02 -44.22 30.44 96.87 5.03 17.01 40.44 69.00 86.81 62.77 66.45 60.21 87.94 97.72 82.37 91.91 4.81 43.83 22.64 28.39 51.71 15.78 87.34 68.02 69.59 18.87 43.84 10.63 20.93 25.75 42.86 25.15 87.33 83.65 20.67 65.76 55.57 9.74 11.99 43.21 78.23 74.08 70.28 6.38 92.29 30.07 63.30 49.32 83.47 7.04 66.44 91.10 4.56 68.56 93.86 87.99 18.06 30.49 17.56 60.87 60.36 50.41 30.46 11.97 87.99 3.75 88.93 48.88 41.15 30.70 51.22 39.50 22.80 34.45 27.73 10.13 15.35 5.82 57.75 62.84 67.79 15.76 80.86 6.64 45.86 37.15 84.00 57.77 63.57 55.04 88.36 40.26 86.84 86.96 90.97 10.00 62.72 11.14 62.69 14.51 2.54 -89.31 53.45 39.59 61.68 74.38 43.88 13.88 22.84 2.53 86.09 62.60 0.80 82.33 96.37 55.89 25.93 60.60 63.16 1.71 72.94 21.43 52.13 48.15 16.60 68.29 13.03 16.89 73.10 69.74 64.64 22.60 94.57 29.34 45.50 26.76 82.47 52.99 77.48 57.52 2.12 4.73 43.02 46.29 99.44 62.19 77.02 84.33 52.05 29.53 10.06 86.97 88.41 38.09 65.25 92.31 71.38 43.18 77.27 66.41 61.68 44.01 84.37 47.70 17.51 97.81 45.99 2.12 12.86 58.69 66.68 4.12 93.46 91.56 1.18 59.79 17.84 66.82 90.23 63.94 91.66 40.24 43.43 96.22 50.78 62.00 14.48 32.02 70.04 34.00 59.11 14.54 4.27 79.05 32.32 48.27 82.62 65.05 95.81 46.05 39.45 -10.13 42.38 9.62 15.89 98.09 40.38 50.18 42.51 63.81 60.82 4.60 29.57 5.58 60.53 6.76 12.67 92.37 18.42 59.58 2.68 63.38 97.00 51.74 24.61 32.31 14.35 92.98 25.11 35.89 62.06 43.74 0.10 56.33 62.44 7.53 46.21 38.91 32.08 18.77 63.05 76.43 11.54 49.60 96.19 82.69 39.02 47.49 18.10 26.29 34.27 94.70 6.02 79.32 65.57 79.62 41.77 51.88 30.92 3.62 37.75 55.87 39.32 33.52 30.75 52.67 18.34 34.37 52.57 13.02 16.51 58.36 8.35 90.44 42.33 76.13 86.93 85.33 74.65 87.07 64.54 10.14 99.54 86.31 47.50 39.83 9.36 56.17 23.96 30.27 80.74 16.37 19.65 1.99 77.64 94.66 37.62 67.16 74.03 95.42 52.02 -69.37 18.24 75.03 66.92 46.29 61.01 16.85 98.55 62.44 1.25 49.05 1.47 98.77 11.37 24.18 89.24 8.21 67.30 4.73 32.19 65.03 80.88 90.89 30.61 75.76 94.10 91.86 65.49 17.76 56.56 24.11 38.77 46.35 60.06 90.15 52.46 53.32 37.43 42.51 13.06 95.20 82.01 49.64 94.21 10.73 50.36 14.17 39.29 52.17 35.18 99.50 18.91 8.19 96.95 6.90 39.26 61.65 40.88 14.21 34.59 81.17 88.95 67.25 94.36 47.18 19.76 17.53 70.64 1.01 15.64 57.04 98.07 66.58 65.44 86.25 51.84 56.79 80.12 61.17 49.12 74.95 50.45 99.68 37.81 59.70 81.42 73.02 90.70 91.84 62.02 5.73 48.02 0.27 94.28 56.04 16.44 38.38 46.33 92.96 36.25 -35.33 80.91 89.14 60.81 71.21 14.72 38.11 93.63 29.93 33.34 68.28 98.49 26.21 79.10 95.91 61.56 2.58 6.95 17.11 48.34 88.35 28.32 44.63 83.12 40.66 72.56 88.76 9.81 73.22 3.85 64.45 65.22 27.58 92.79 35.15 38.67 71.60 74.06 47.41 54.57 10.61 1.65 87.83 15.87 40.53 70.10 85.20 50.59 13.46 35.88 10.86 58.84 5.10 89.59 9.31 84.04 30.45 46.43 1.34 18.67 71.37 68.74 58.67 68.28 67.99 93.25 93.47 53.77 23.19 75.13 31.55 33.30 42.39 42.74 38.22 56.45 58.07 53.50 58.64 44.49 39.40 10.88 1.78 16.58 56.83 53.90 63.40 97.35 72.05 39.94 34.97 31.46 31.19 70.73 96.85 20.22 53.72 87.30 75.78 13.31 -5.14 55.74 39.09 49.65 34.99 38.06 96.14 52.27 36.39 47.07 66.02 50.71 91.17 3.71 45.67 56.08 0.35 13.17 70.66 96.85 34.74 41.80 50.86 26.70 83.36 64.13 8.16 38.48 92.45 92.74 38.78 70.57 35.35 77.45 27.49 56.95 22.20 74.23 4.25 36.00 89.23 63.11 67.76 74.49 77.42 29.57 23.15 52.49 41.39 8.20 25.00 51.80 69.67 70.24 9.77 60.67 65.61 1.02 57.48 83.49 46.15 53.35 37.27 7.75 34.16 73.64 36.11 70.77 31.12 81.38 76.18 28.01 77.37 77.95 37.49 84.96 57.18 20.40 31.99 60.35 11.28 56.40 41.24 34.56 96.99 21.71 51.48 12.51 97.45 22.92 9.70 3.00 25.43 34.37 6.07 55.30 47.83 22.18 68.87 52.83 -32.54 67.05 67.49 79.74 4.33 61.90 55.31 57.84 6.83 92.41 89.73 62.92 12.56 49.36 1.68 78.39 93.85 27.80 86.62 54.88 89.97 6.74 78.78 71.42 34.78 78.73 37.32 59.40 74.80 67.04 79.25 11.78 19.27 56.17 15.48 52.30 79.95 19.10 31.73 91.94 20.29 18.01 27.54 40.72 68.82 0.30 69.30 50.97 88.77 97.94 19.13 39.07 48.41 2.72 56.90 56.32 60.46 57.52 44.85 4.26 60.17 87.45 58.19 55.48 43.47 2.20 96.62 31.86 42.51 1.44 18.01 66.60 62.16 65.03 61.86 58.81 62.97 1.05 55.73 97.85 90.01 73.98 51.37 68.44 81.69 8.35 99.75 69.48 11.35 9.33 88.54 1.35 20.57 61.85 16.19 56.24 48.70 73.43 84.38 19.08 -66.81 12.65 33.58 0.51 6.19 75.04 12.97 56.87 31.18 69.64 89.19 76.69 12.18 24.53 68.49 59.23 73.10 16.22 15.57 14.03 63.90 72.55 99.20 55.06 26.72 7.88 95.79 40.91 10.89 39.60 7.21 73.92 32.77 35.11 16.29 52.63 76.84 72.86 63.32 51.85 17.40 7.14 53.64 70.78 94.22 44.21 30.50 17.73 99.79 52.46 42.08 98.00 49.58 36.59 5.82 50.76 35.84 20.91 64.03 81.74 43.86 59.59 81.74 90.19 79.18 99.99 5.55 7.97 59.15 89.36 74.05 48.69 43.70 22.95 91.99 94.33 13.92 64.77 83.21 12.23 51.59 75.80 80.30 84.33 45.78 94.42 68.81 97.28 59.01 7.79 16.93 51.25 64.28 29.62 19.23 46.16 37.69 28.78 78.09 18.75 -28.98 5.08 78.68 26.03 85.13 83.24 6.18 18.12 38.32 2.64 70.12 10.70 23.01 49.66 21.54 44.78 93.33 58.72 11.65 94.35 53.84 44.89 1.98 32.88 99.21 30.49 65.39 88.27 8.26 25.63 91.97 36.77 40.81 78.27 83.05 56.92 54.41 52.38 54.29 82.70 56.82 57.20 14.10 15.39 60.65 9.34 52.44 45.81 4.90 61.37 10.13 1.01 41.66 85.67 96.80 13.87 86.46 14.89 93.65 32.53 61.53 92.81 29.20 4.56 72.85 0.69 68.46 84.53 37.82 19.92 70.45 76.91 96.29 19.73 73.20 66.15 45.10 33.44 64.39 10.05 31.53 63.01 88.86 66.42 78.38 3.47 14.40 29.07 51.04 62.18 78.33 94.05 23.05 61.68 60.47 16.27 19.22 73.67 84.61 97.94 -22.49 42.38 75.96 76.84 38.95 33.24 82.72 16.37 69.48 50.79 27.49 5.39 4.33 91.75 15.81 91.37 54.62 77.33 18.01 35.27 76.88 7.76 82.04 80.31 16.57 10.01 67.46 37.95 52.99 48.14 52.41 27.31 77.29 34.60 6.53 70.49 32.04 11.85 26.77 70.89 63.77 55.59 90.92 10.34 11.67 88.53 6.13 96.24 76.45 11.97 48.75 13.95 10.94 12.75 43.27 93.52 26.78 67.21 42.16 47.19 13.93 48.89 16.99 15.06 12.53 96.39 47.83 67.40 72.63 17.92 80.02 47.91 79.89 93.47 63.74 1.47 45.94 30.85 8.71 34.82 63.14 13.54 13.46 19.53 69.62 49.33 61.25 15.92 69.64 76.11 59.88 54.92 59.64 87.94 32.11 86.68 94.41 51.67 80.68 34.70 -44.14 99.60 40.76 11.45 29.17 72.43 76.17 24.19 23.04 77.67 92.53 84.15 0.82 20.91 61.81 15.45 62.01 99.21 39.99 40.52 25.52 96.11 27.46 21.19 17.42 56.42 55.49 41.46 71.56 19.54 41.23 44.05 17.97 74.70 74.26 55.09 89.46 25.65 87.18 38.86 93.12 15.07 87.78 79.08 65.92 77.04 38.00 21.63 45.79 80.38 97.40 53.28 48.51 6.67 41.09 3.16 78.69 8.70 13.39 77.28 11.14 86.76 86.69 97.42 2.05 14.20 33.99 24.79 53.29 7.12 83.90 9.45 17.36 98.01 72.40 60.22 96.09 45.35 79.45 85.90 60.22 41.91 9.78 35.37 73.33 6.85 6.13 62.96 24.23 54.82 22.72 86.59 11.08 54.21 78.13 3.21 5.46 78.30 11.22 93.81 -88.48 9.53 40.16 45.34 7.76 12.94 90.97 76.61 45.42 16.30 22.69 1.68 0.34 51.10 40.04 66.59 31.62 60.40 52.68 56.76 91.91 76.17 48.61 59.20 52.30 3.42 87.74 17.63 16.66 22.01 1.36 97.73 12.76 77.63 65.38 29.15 8.16 91.84 25.87 44.10 93.75 67.98 8.13 67.13 79.91 91.88 39.20 28.82 11.02 13.69 23.20 53.94 17.95 79.26 85.95 22.98 93.48 8.23 36.42 82.53 80.15 30.93 66.66 98.74 56.67 67.94 68.81 31.90 55.08 52.47 91.79 82.30 81.55 84.06 59.21 46.64 44.01 64.35 28.76 45.83 48.17 83.28 39.84 22.66 36.95 34.35 51.20 7.42 67.81 55.31 75.24 87.52 74.35 40.24 83.05 0.56 94.59 87.29 86.24 83.53 -19.54 76.82 65.59 36.72 34.71 13.60 65.83 37.18 70.98 85.42 25.19 97.25 96.69 68.66 12.63 2.36 0.37 28.86 53.98 47.55 39.31 52.84 6.02 78.62 60.62 20.90 13.96 78.62 98.47 41.15 32.27 53.77 0.94 66.34 33.27 28.62 56.75 85.80 97.00 29.10 83.91 95.58 41.17 11.18 60.59 87.79 59.52 9.78 86.08 84.86 31.01 78.39 78.56 26.81 85.61 5.88 43.21 17.46 40.01 42.55 63.51 41.01 65.91 70.30 75.56 59.64 24.60 47.74 12.36 52.56 83.26 50.37 38.53 28.62 52.35 39.41 87.98 39.94 6.06 76.83 20.35 66.42 78.22 50.54 36.12 56.56 80.48 2.61 20.96 51.91 74.32 68.90 49.22 42.84 95.54 76.84 29.00 45.51 80.81 52.29 -99.07 92.21 24.50 41.79 77.50 17.31 31.75 28.91 55.82 8.81 24.49 94.69 60.57 57.48 55.56 30.66 64.80 80.51 59.16 99.18 47.84 45.15 78.73 46.82 97.39 54.57 80.27 40.08 74.87 29.52 45.42 14.45 86.47 84.65 27.34 49.22 95.20 59.16 44.92 21.78 29.49 79.49 76.22 44.58 89.38 26.09 0.88 47.04 52.05 62.63 0.85 25.94 40.44 2.44 45.54 54.90 57.39 57.63 51.17 40.54 53.66 0.20 43.15 36.60 61.50 65.23 11.92 12.54 58.51 87.80 66.90 17.04 83.46 54.18 52.20 64.60 81.61 21.33 35.05 58.30 55.11 90.67 40.31 18.67 27.35 0.73 65.28 60.55 20.38 23.99 6.72 82.86 62.61 26.15 0.34 19.72 40.49 18.38 38.95 18.97 -43.07 51.99 53.74 97.11 0.13 0.03 5.93 27.87 32.92 69.50 68.63 85.57 81.14 44.53 70.68 49.37 1.83 73.53 97.68 58.47 73.91 55.53 61.14 1.58 94.69 83.28 51.56 13.28 56.84 96.58 45.17 62.58 56.78 81.61 93.98 36.61 12.66 25.70 78.52 77.59 54.31 59.22 59.44 33.79 70.28 47.68 26.57 65.11 27.46 65.16 44.75 17.94 19.26 34.44 81.57 29.84 27.21 97.71 13.62 43.60 54.23 83.94 17.00 9.19 81.01 22.66 81.88 16.01 47.31 33.38 26.51 98.14 15.67 65.24 30.54 51.06 84.09 56.90 60.05 67.23 43.37 22.70 83.04 54.53 0.43 61.07 12.64 67.72 66.40 62.62 26.06 30.71 48.77 0.27 38.01 82.98 10.84 11.94 84.27 38.57 -69.02 7.27 95.17 2.03 32.75 73.33 2.38 74.61 8.88 64.87 6.52 8.65 13.49 52.23 45.26 79.32 21.19 14.98 78.97 29.67 6.84 31.72 4.48 62.37 50.19 90.80 59.44 31.00 69.10 15.00 13.67 87.27 31.43 77.01 30.91 82.81 5.49 63.22 37.77 28.94 65.10 79.84 53.21 15.54 36.08 42.40 98.49 0.73 73.79 45.19 31.27 49.68 97.76 12.24 42.55 31.74 30.85 41.93 15.71 1.10 23.95 32.28 85.40 66.40 84.32 56.37 55.10 84.90 40.09 68.88 33.36 23.41 17.31 71.41 92.62 78.38 4.58 0.13 15.37 27.95 58.61 32.82 35.64 3.19 26.80 89.46 59.38 98.64 77.05 77.61 90.49 81.07 50.00 59.83 53.80 67.28 15.36 21.78 13.61 91.61 -63.82 86.45 39.49 94.70 15.01 15.83 99.96 17.39 23.06 57.10 5.95 29.83 72.78 54.59 32.71 99.31 58.46 11.73 82.03 37.64 65.62 96.19 51.56 35.37 77.83 58.26 79.11 27.48 19.97 23.91 40.08 38.73 86.30 56.04 70.01 13.10 90.63 7.18 17.98 23.22 54.73 14.50 92.13 5.86 39.00 80.21 38.11 68.57 0.33 89.63 85.56 61.88 26.68 44.60 58.86 41.62 9.73 75.81 84.13 4.05 39.23 56.42 4.55 56.83 0.34 98.62 56.28 17.76 64.78 72.40 93.31 11.39 41.39 34.02 21.58 88.80 83.70 87.53 11.38 42.02 14.25 50.00 3.43 36.90 11.33 68.07 4.21 37.09 80.72 62.78 92.34 29.64 67.34 89.63 14.80 66.28 9.20 79.11 84.13 50.19 -1.70 30.10 31.69 25.75 38.85 20.09 13.39 8.61 4.10 13.23 67.64 42.57 96.01 27.79 79.54 0.16 68.98 5.83 26.53 32.49 62.87 39.33 16.02 66.50 65.47 55.95 48.66 41.41 36.75 76.65 85.13 80.89 20.02 21.46 73.05 41.19 81.49 66.57 22.43 89.61 57.51 37.64 41.76 38.36 49.57 78.35 31.42 7.49 70.84 46.77 67.62 26.78 7.27 0.44 61.83 82.22 72.36 41.59 36.79 11.77 86.55 63.71 95.14 65.53 13.68 20.95 5.83 46.49 88.28 84.98 41.49 78.21 8.36 3.95 91.37 10.43 88.25 15.67 61.61 97.64 6.40 99.52 96.22 93.59 56.40 48.59 16.48 31.80 79.44 86.40 20.18 63.56 43.09 72.83 5.64 17.34 1.40 59.46 14.41 85.90 -45.65 18.90 36.46 47.73 58.23 7.72 64.68 15.38 88.35 60.78 25.13 17.08 28.36 57.90 93.35 13.43 40.14 21.59 60.36 18.52 92.94 9.28 93.21 28.61 4.49 76.37 77.34 27.93 69.47 43.15 4.45 3.13 33.14 14.49 93.92 41.06 11.78 84.38 50.73 76.83 38.23 54.40 19.13 3.82 65.43 82.86 2.24 17.25 70.68 18.14 60.75 42.30 97.51 4.42 39.83 7.09 34.78 65.64 78.50 85.85 51.18 40.60 35.14 83.53 29.17 29.91 64.02 16.69 32.00 27.11 60.00 50.86 10.29 42.96 45.63 87.92 59.73 62.88 32.20 12.54 9.11 98.08 2.21 60.63 57.87 44.34 16.02 80.12 54.22 87.76 59.15 43.62 74.20 36.68 58.50 82.39 25.46 65.31 89.38 26.59 -42.90 12.04 82.17 39.92 44.84 66.36 77.21 8.33 63.30 92.06 14.38 30.37 4.70 93.95 59.89 89.76 2.46 6.47 38.28 39.55 87.60 64.13 52.09 32.16 39.13 50.78 78.31 8.39 65.09 72.41 96.65 14.88 46.90 25.42 34.12 94.21 13.72 53.93 22.89 3.01 59.96 72.64 24.04 53.94 46.06 51.57 92.30 79.58 18.21 68.23 61.68 87.20 77.60 43.27 43.24 90.76 65.46 58.04 5.54 35.53 83.65 30.88 3.71 14.34 19.61 73.64 77.28 60.38 66.04 51.36 85.82 60.61 96.62 32.48 81.04 49.93 2.82 23.20 58.80 51.36 30.37 84.64 59.66 99.12 37.51 7.82 32.37 57.08 18.69 51.33 89.89 1.81 34.05 75.00 45.54 37.96 20.55 60.10 98.74 41.60 -5.87 97.09 83.99 49.20 18.33 54.26 10.65 18.10 16.17 90.50 6.79 28.07 27.55 31.97 19.55 41.08 3.84 52.02 73.38 54.47 87.88 58.38 59.29 54.34 64.92 30.85 7.44 8.39 12.28 47.44 16.08 44.67 94.91 77.74 73.93 34.95 63.86 3.44 48.75 91.89 29.18 54.31 49.94 15.12 95.61 50.62 4.90 51.68 29.66 69.99 32.64 23.47 59.37 5.74 23.55 59.59 12.11 46.44 42.59 15.48 91.36 39.70 27.64 61.78 1.56 24.38 21.31 68.55 15.66 95.89 67.81 59.97 77.59 71.73 23.13 87.26 91.94 83.52 77.18 52.05 28.46 72.20 34.54 67.40 50.03 10.89 2.73 95.04 49.48 86.66 5.07 23.71 71.11 49.64 96.02 36.98 41.47 41.01 72.85 45.62 -38.97 49.77 68.90 51.87 79.05 93.88 85.11 63.23 83.84 14.98 94.91 51.88 21.22 76.89 95.46 17.32 82.97 22.43 39.06 90.00 27.39 83.16 28.91 67.01 98.46 90.83 73.35 40.09 54.45 82.51 62.00 4.77 63.77 29.23 80.52 55.19 34.84 64.68 46.74 75.25 40.18 65.17 39.77 36.86 78.56 99.43 87.64 88.29 4.51 16.57 46.13 25.67 72.88 25.77 0.87 79.19 5.29 29.08 57.36 52.88 27.69 41.50 79.68 52.02 87.03 97.58 3.78 10.72 30.33 34.80 30.64 12.42 77.08 73.65 95.49 91.48 45.58 77.32 14.37 42.23 6.96 28.48 51.28 14.87 65.31 16.26 7.80 62.48 26.44 92.76 96.09 78.70 11.80 65.88 47.09 57.48 27.95 81.91 13.27 31.38 -76.13 34.38 67.08 14.05 83.38 90.85 70.79 67.68 3.31 12.01 10.17 55.27 21.50 24.59 50.53 13.12 20.53 22.37 78.87 82.31 85.32 43.59 23.98 37.70 87.50 40.29 54.01 94.01 97.46 50.92 8.86 20.09 2.28 93.60 5.85 29.39 32.92 6.14 23.24 43.20 83.25 22.20 93.14 28.47 61.60 2.70 99.50 16.96 94.97 78.32 47.78 65.33 57.71 69.42 88.84 98.38 71.90 13.09 74.30 68.00 18.44 68.98 49.23 7.76 73.65 4.34 85.19 64.29 64.20 56.32 29.08 89.46 51.83 2.96 6.24 51.48 1.88 41.08 16.96 41.94 33.41 29.31 15.42 29.02 73.23 99.24 42.57 2.53 89.35 8.66 26.14 65.48 44.20 74.04 73.97 36.77 49.48 25.78 17.28 58.45 -27.08 60.04 17.66 31.17 28.91 58.15 25.43 73.87 79.46 58.23 5.48 3.76 1.82 88.35 4.38 40.34 55.67 45.83 96.86 84.71 63.78 59.93 41.76 18.13 88.35 67.11 57.92 18.38 61.72 41.62 71.05 54.58 48.43 58.42 99.60 40.82 28.15 21.72 67.10 31.26 39.74 51.67 93.92 75.04 48.42 99.41 45.11 95.27 47.44 9.91 66.63 86.77 57.31 25.72 40.90 52.70 43.74 39.87 60.27 74.07 17.48 32.05 66.77 60.03 56.85 35.17 51.74 6.15 83.79 22.21 72.54 51.84 64.77 86.95 98.43 69.95 41.90 50.43 48.75 67.34 48.49 94.38 41.98 21.07 12.87 14.17 36.14 5.32 65.23 98.04 4.40 84.81 50.93 84.74 85.10 68.48 6.09 6.63 36.89 18.86 -68.64 18.98 74.56 29.16 29.41 32.08 3.20 88.83 63.98 6.62 95.28 34.92 67.30 62.96 54.50 13.23 51.00 29.30 14.09 35.78 18.27 49.59 5.30 2.38 58.41 97.23 77.99 53.56 78.78 79.76 57.42 17.76 64.57 79.16 91.05 16.68 53.47 27.46 89.73 48.85 44.37 10.91 48.29 24.29 30.92 65.09 38.96 51.07 50.10 20.78 50.36 75.83 60.47 56.57 75.35 57.69 74.99 35.01 12.58 59.03 51.89 91.64 94.79 77.77 74.98 80.00 37.29 83.61 14.37 66.78 81.51 97.88 47.04 16.43 38.93 29.18 65.75 37.83 15.43 10.84 98.87 4.14 56.26 50.90 33.98 83.69 66.00 46.83 51.30 2.90 22.26 36.00 21.20 55.44 22.92 23.45 47.69 34.26 79.94 55.17 -17.62 54.28 59.49 36.06 5.89 54.46 2.05 92.09 84.76 42.42 32.21 72.26 57.63 69.00 74.50 3.70 95.56 18.31 26.71 30.07 3.27 62.41 53.19 8.06 78.58 56.76 38.86 75.26 7.70 57.64 43.08 25.65 30.46 75.07 24.01 3.54 23.62 75.76 80.65 37.19 84.06 21.23 87.03 85.92 94.88 66.46 68.80 16.13 75.15 44.56 90.55 87.03 7.87 43.04 22.79 56.83 96.77 37.09 1.88 6.52 46.25 92.94 27.96 22.23 50.88 58.31 49.59 80.02 4.53 61.93 99.27 0.37 6.59 2.62 55.50 55.85 89.20 56.01 47.12 75.85 47.52 29.96 54.59 12.99 30.76 24.92 96.08 52.10 62.32 63.09 39.84 20.31 68.93 81.78 6.55 39.67 20.63 15.19 32.09 65.40 -12.82 80.36 81.62 40.41 97.43 5.93 15.59 7.16 36.72 9.60 45.31 22.07 89.95 84.34 22.53 72.90 73.64 91.50 50.28 10.85 9.16 6.33 72.98 81.45 28.40 78.29 51.90 80.44 60.37 46.24 59.14 84.72 99.55 50.18 80.56 12.33 77.91 82.61 19.02 66.03 46.07 31.80 56.20 87.09 33.73 88.71 36.80 35.19 23.52 27.61 4.55 69.11 67.71 27.67 69.33 96.59 35.42 69.26 57.23 0.81 67.78 4.06 24.27 79.58 75.29 84.15 64.42 35.78 37.54 46.54 41.03 94.87 83.15 16.28 20.27 6.10 15.32 46.61 24.48 99.18 61.76 60.60 89.93 41.80 45.49 56.92 13.71 11.69 12.04 84.31 71.65 14.04 18.80 56.21 46.01 48.51 32.26 0.42 8.03 42.48 -22.00 8.21 75.70 20.12 52.94 49.49 58.31 75.31 90.87 81.27 14.68 83.50 98.00 72.84 96.83 1.73 28.34 1.41 97.96 67.50 1.41 47.75 94.83 19.81 81.30 17.81 79.39 60.06 25.42 38.46 43.92 88.73 63.62 29.00 30.80 95.49 12.55 38.04 24.71 40.85 4.30 65.03 2.68 91.39 63.09 31.10 28.63 36.09 20.53 28.70 69.08 0.19 24.07 54.26 87.62 98.27 80.26 63.91 71.95 81.00 59.35 50.29 88.06 73.30 32.63 93.84 94.93 70.62 60.18 63.40 13.56 98.77 54.93 29.94 9.37 17.47 51.93 34.68 3.67 81.32 63.12 11.21 8.72 24.14 38.66 57.94 51.41 7.03 82.78 58.00 54.59 18.76 60.30 20.22 5.22 50.45 5.94 85.14 93.64 44.53 -82.85 41.87 58.29 23.11 85.71 8.35 77.92 27.50 78.59 3.80 97.98 63.62 22.19 44.73 9.66 2.27 90.64 86.99 98.15 4.45 19.77 13.52 82.81 50.60 14.80 82.16 65.33 96.90 23.26 16.88 85.39 34.91 58.82 27.71 8.15 53.70 53.22 19.28 12.33 76.54 67.14 13.11 94.17 23.88 22.32 5.32 12.80 33.90 97.88 52.35 92.05 72.83 20.39 8.83 37.95 38.18 68.89 58.55 20.29 7.58 36.30 29.20 54.90 12.87 68.40 87.17 40.99 64.65 49.69 57.48 17.09 22.89 4.26 9.93 92.85 22.36 54.17 10.88 57.45 83.47 4.43 82.87 94.38 9.81 68.68 78.39 7.76 87.90 3.34 58.44 0.67 93.12 60.15 1.38 63.53 81.93 8.26 20.64 75.08 75.29 -95.72 53.67 91.71 40.57 41.82 37.86 44.63 95.19 67.22 91.40 30.72 11.33 5.04 91.26 3.95 51.72 64.86 97.17 24.76 51.41 26.21 61.64 24.80 65.27 73.80 66.99 87.85 16.64 58.16 20.86 72.38 80.03 30.62 48.32 23.47 37.29 34.54 49.13 13.42 88.54 22.04 65.43 77.10 83.17 79.06 67.70 39.85 12.44 44.08 38.70 6.79 99.27 58.05 17.16 38.54 76.77 58.72 46.37 74.42 36.47 96.33 1.75 90.57 46.72 93.86 89.51 66.64 16.11 60.63 90.71 91.96 84.64 26.29 25.93 87.55 29.77 77.45 77.74 77.44 13.90 48.19 40.04 88.45 21.94 9.68 21.89 82.82 90.08 59.77 32.45 71.62 96.31 23.86 38.02 37.34 82.22 17.48 75.80 71.43 39.10 -65.11 47.99 76.15 73.96 86.55 24.61 56.17 49.55 73.31 18.17 11.62 74.27 41.87 24.77 65.06 51.66 54.56 41.95 57.36 28.50 26.63 60.15 45.99 46.52 20.20 42.44 45.12 19.56 78.00 11.28 59.60 11.75 52.29 53.50 31.79 37.10 48.55 23.38 96.11 55.51 44.40 44.04 70.50 38.63 49.71 11.11 90.94 38.17 6.30 68.90 84.10 14.76 63.31 35.62 36.12 56.35 37.04 63.11 71.97 36.49 77.03 68.30 76.02 91.73 88.96 23.27 55.94 64.39 59.16 10.83 80.67 87.79 98.40 70.91 20.81 99.05 50.75 48.69 97.81 65.10 2.00 19.86 34.39 75.58 74.09 51.21 48.91 56.36 89.30 56.11 74.13 73.01 73.12 13.16 74.28 32.85 36.33 32.54 55.94 63.58 -78.51 96.12 84.45 75.01 40.44 31.01 2.62 14.46 33.81 27.45 93.46 50.31 62.88 64.65 9.19 82.24 42.78 65.71 32.54 93.36 6.15 15.99 98.05 83.00 62.98 68.83 64.74 10.78 94.07 77.96 5.57 30.82 89.39 54.98 42.04 4.78 90.57 87.44 75.30 2.95 0.54 80.51 53.86 48.56 44.67 30.86 13.75 18.65 63.62 19.14 50.81 75.54 26.31 55.87 22.46 66.39 73.66 17.86 67.37 43.44 12.44 78.31 91.53 88.32 32.38 64.97 40.45 22.25 54.61 82.71 74.77 35.46 66.03 98.79 33.96 4.26 37.46 20.88 31.05 63.06 4.93 19.63 22.05 1.97 89.57 95.05 15.22 26.90 24.81 46.02 91.02 91.93 59.14 0.38 93.92 45.14 73.86 8.96 2.20 24.04 -77.93 71.91 47.40 27.38 42.77 99.76 82.54 75.80 49.33 87.71 76.35 59.49 71.06 51.26 42.75 92.67 80.34 79.25 37.23 71.58 48.82 7.42 82.62 9.43 79.61 67.04 21.91 66.78 44.83 1.22 64.02 0.93 9.46 32.48 10.55 96.40 54.47 34.55 0.08 43.98 89.46 23.90 33.75 27.23 48.44 1.58 25.26 50.41 24.06 74.38 64.78 78.97 39.41 13.06 24.04 61.08 5.86 39.86 6.62 48.79 25.94 33.24 49.07 94.60 31.37 10.28 45.14 35.20 28.09 53.96 98.09 11.85 41.37 4.45 9.85 5.52 51.52 40.68 30.33 92.89 36.21 8.07 31.80 47.19 64.40 13.95 3.58 66.73 7.62 43.91 51.68 49.16 1.31 10.60 10.48 53.74 42.82 53.99 54.35 46.83 -3.71 99.72 0.87 15.77 94.27 97.79 5.69 16.39 41.72 60.20 69.71 13.56 67.70 57.42 13.99 42.33 8.04 56.69 26.38 5.27 47.42 6.72 93.80 90.38 32.98 91.93 46.41 65.39 7.65 67.04 6.55 63.26 1.45 48.22 41.92 61.01 97.77 87.48 53.36 50.12 70.42 89.99 34.53 62.27 15.12 92.25 24.93 11.90 55.74 3.57 72.28 43.12 65.59 8.40 45.10 66.63 88.85 83.50 3.04 81.70 44.11 20.14 6.62 19.37 66.71 91.97 31.96 17.39 34.75 80.17 17.08 36.90 93.98 9.33 51.50 13.14 49.53 96.16 71.02 84.44 98.09 79.81 6.37 0.73 10.92 68.08 47.43 35.63 92.44 97.13 14.08 54.04 45.33 52.68 49.33 24.47 86.29 57.60 51.03 68.43 -42.78 48.97 28.29 95.07 70.21 56.19 71.53 18.92 20.17 39.66 88.05 88.06 44.42 97.76 73.92 3.86 65.48 24.24 2.79 34.81 95.06 59.63 35.17 52.06 73.68 43.99 59.05 3.93 83.07 35.10 69.04 84.42 67.68 88.26 23.20 38.29 32.94 28.73 77.96 64.58 19.08 76.81 6.99 20.13 84.89 51.07 67.64 93.78 37.45 81.82 30.02 41.08 35.59 48.87 26.24 76.09 10.92 29.28 16.05 19.64 61.44 68.53 75.64 36.70 54.26 91.10 53.55 55.93 0.10 30.09 29.89 76.08 8.35 28.98 43.70 7.16 33.98 34.42 62.96 80.82 51.00 92.41 85.54 1.36 27.45 78.00 79.66 37.58 80.52 67.51 18.62 71.95 97.89 33.83 0.43 13.54 76.17 2.66 84.68 75.83 -50.09 44.70 17.02 4.18 33.30 64.47 78.73 11.29 38.92 76.09 33.55 95.70 29.64 7.71 2.78 53.42 91.20 61.20 39.77 9.06 35.19 31.25 23.14 62.28 66.80 64.81 40.02 92.56 25.50 71.16 64.15 2.50 99.63 51.49 5.46 29.61 97.13 31.03 75.72 72.26 83.30 12.34 30.96 73.75 72.95 80.93 3.93 33.51 43.16 11.73 92.36 57.05 46.41 38.43 36.31 21.00 62.73 29.06 23.21 70.94 6.69 24.63 1.67 11.66 64.33 76.61 45.00 56.04 73.19 50.80 69.77 10.59 25.36 72.60 88.80 40.60 77.16 28.84 33.48 72.93 89.69 35.54 91.49 60.40 65.11 4.59 53.57 15.89 39.77 77.89 61.08 10.66 36.48 43.40 38.71 52.79 27.95 1.31 99.17 83.63 -60.05 35.41 90.61 2.98 45.65 59.22 49.49 28.22 22.34 33.85 77.53 43.00 65.61 10.38 81.62 53.71 45.91 70.62 61.51 83.01 3.15 91.19 11.96 47.79 70.62 31.89 9.24 32.61 53.98 33.83 9.98 99.90 44.12 84.01 75.17 18.84 72.04 12.79 84.80 99.58 73.77 36.62 63.65 15.07 64.20 99.78 17.24 93.65 36.55 6.45 29.79 13.63 67.83 48.92 77.21 36.91 20.48 15.64 34.99 56.46 7.87 67.57 30.50 87.38 73.71 80.61 21.12 54.18 8.68 49.97 67.94 10.93 3.41 28.23 3.80 53.01 2.09 84.30 2.67 20.53 2.52 21.62 8.71 74.21 81.01 88.55 61.14 62.57 22.78 93.06 3.96 5.54 34.19 45.43 86.17 14.97 90.59 68.02 35.71 93.15 -77.60 94.35 3.89 70.25 6.02 60.84 96.42 38.76 23.87 76.44 54.50 56.07 10.83 51.51 37.40 28.61 54.40 8.81 6.12 48.76 1.79 77.63 67.63 46.14 36.37 60.21 27.97 10.04 76.72 21.99 49.47 68.89 48.78 12.28 58.24 92.20 10.47 86.56 46.77 78.15 31.56 11.92 1.36 66.06 31.50 93.43 91.86 95.84 93.37 18.72 17.23 16.13 55.65 83.49 72.27 58.98 41.01 52.37 11.46 5.31 51.80 29.18 79.17 5.92 52.91 57.55 93.93 66.03 83.56 22.19 74.26 35.95 8.99 29.40 71.44 37.85 70.73 29.72 30.87 70.80 24.62 93.71 76.47 35.42 46.48 96.39 40.60 78.67 17.95 31.07 87.13 77.28 61.60 79.08 46.90 33.88 74.57 82.27 28.69 3.20 -14.58 52.00 68.18 71.34 60.30 16.97 33.42 32.29 14.45 18.58 76.32 73.12 39.38 20.90 0.25 13.19 98.83 75.14 81.27 44.50 49.54 62.46 71.52 22.75 64.89 80.23 53.34 5.48 23.24 74.81 1.29 17.27 84.81 52.90 85.91 58.09 77.31 48.04 64.14 75.47 93.92 17.44 26.46 96.42 58.84 79.81 66.81 72.80 82.90 34.91 27.37 17.35 93.91 45.20 20.60 52.19 25.39 29.99 97.76 56.34 52.00 70.46 10.40 4.57 21.54 66.24 11.83 97.57 90.55 6.97 98.21 67.13 46.46 49.60 68.00 59.49 16.95 20.19 56.85 2.34 62.18 31.35 46.87 30.60 41.22 15.61 98.80 99.27 70.56 29.36 76.42 90.44 14.61 23.79 78.59 73.38 43.42 45.83 30.76 11.07 -20.07 96.39 63.92 73.74 59.04 26.95 69.08 31.57 75.93 30.69 15.22 93.22 92.20 81.54 39.19 57.82 2.12 12.28 46.61 32.46 92.75 24.79 75.10 56.57 85.16 37.87 3.58 62.11 92.49 79.87 56.45 46.10 63.14 87.25 75.11 65.62 38.43 8.90 18.05 98.34 27.23 40.75 69.55 36.56 23.92 69.16 67.35 35.76 28.99 80.07 14.90 33.47 66.15 65.62 27.87 94.15 6.75 12.60 8.43 69.36 85.98 28.39 24.27 5.21 79.80 94.28 9.96 47.19 52.40 63.74 72.21 50.44 99.28 2.16 23.96 80.94 43.17 39.82 41.34 61.72 48.26 81.84 36.39 2.15 15.60 23.32 90.61 79.93 47.08 94.22 89.80 73.25 90.12 48.19 73.39 45.83 6.21 25.07 4.87 15.28 -28.56 96.04 65.77 72.58 78.30 27.38 37.67 41.71 24.26 93.36 60.21 49.45 50.48 98.16 2.33 80.57 60.02 7.82 50.56 79.74 22.74 25.30 2.07 98.77 52.89 2.50 31.57 15.15 7.55 46.29 44.23 49.64 1.31 34.87 12.73 71.65 34.99 81.16 51.51 91.76 23.41 17.46 49.69 97.81 41.42 54.93 75.49 6.06 30.16 22.91 13.06 5.75 28.63 24.15 14.92 30.19 41.74 12.78 68.98 16.60 49.40 40.96 9.05 6.39 68.05 78.27 98.32 1.04 86.78 59.60 29.43 94.05 39.66 67.34 25.44 92.65 37.04 86.59 57.27 88.00 47.13 1.76 60.29 63.13 93.70 20.55 23.54 61.09 84.41 20.38 85.74 73.52 14.26 50.54 88.95 45.81 82.84 0.79 95.62 19.26 -97.44 64.35 23.75 29.99 80.52 42.61 19.27 48.30 61.17 20.98 36.38 42.82 68.06 19.00 72.14 35.21 4.74 63.49 23.74 60.83 85.32 95.47 21.55 10.21 66.30 93.03 87.14 35.83 19.41 24.12 93.12 52.37 7.30 76.45 35.42 38.45 84.95 75.81 94.42 45.33 68.38 89.94 19.24 46.06 19.91 88.09 14.98 85.22 37.96 40.62 62.87 52.76 4.18 6.55 23.64 95.91 6.10 93.77 61.28 8.28 5.66 84.52 71.01 16.32 6.41 45.36 50.47 31.09 6.52 49.98 90.80 24.90 67.91 41.06 84.38 67.11 91.66 75.30 85.08 3.00 7.94 29.43 10.57 17.57 62.22 8.88 0.38 76.06 73.54 36.61 29.09 50.40 34.96 89.64 62.92 89.47 28.29 29.98 7.27 74.77 -81.91 68.09 33.47 93.00 0.62 2.42 52.76 73.23 4.49 81.82 97.36 7.03 5.54 28.24 64.46 71.67 56.30 60.22 12.47 18.67 76.34 52.05 36.18 15.56 95.58 54.64 95.83 29.51 82.08 18.09 84.55 19.48 56.22 97.65 89.56 40.63 62.32 35.37 28.65 16.78 60.64 27.28 1.36 59.79 95.94 36.26 14.54 56.63 4.47 21.95 30.60 77.40 10.69 4.65 71.88 71.84 80.26 24.15 44.80 72.44 95.37 82.70 45.73 44.37 14.31 10.57 14.31 22.49 27.23 40.18 95.90 39.63 62.14 23.32 3.74 92.35 63.53 10.92 56.85 57.57 23.68 45.55 71.67 42.32 70.09 93.22 84.20 23.99 74.07 12.53 72.34 16.63 98.03 7.06 79.73 27.33 78.95 29.81 49.10 46.90 -81.06 52.70 96.10 25.85 31.20 46.12 27.39 50.68 40.33 52.36 99.49 77.77 31.75 30.14 0.49 91.16 37.06 50.12 43.02 84.18 71.50 14.60 77.87 10.90 91.85 74.50 53.53 76.20 77.63 69.43 96.90 79.42 43.15 40.63 63.96 27.40 66.56 91.90 68.08 98.49 35.14 14.00 40.15 72.57 61.47 74.51 7.42 9.84 40.04 75.41 75.66 77.35 64.12 10.90 78.43 86.51 10.82 71.76 91.60 10.76 43.03 79.73 43.64 38.49 27.72 77.68 96.04 22.22 83.78 29.98 98.46 45.02 11.11 56.31 94.31 15.33 69.32 48.24 68.28 59.68 77.00 4.41 72.40 85.92 97.78 45.33 26.60 98.53 67.87 91.46 47.35 64.99 93.28 40.75 61.31 10.25 85.92 12.03 51.67 43.28 -95.38 79.25 22.50 57.63 66.57 90.51 66.12 48.57 92.40 59.71 38.68 33.06 50.67 69.72 22.52 21.03 98.23 48.63 36.55 62.33 67.15 5.00 87.86 10.62 38.75 20.13 19.14 63.94 29.47 5.13 82.10 7.78 20.53 56.69 50.97 25.28 24.45 92.61 62.18 64.64 35.67 27.02 80.30 80.63 9.64 56.05 87.66 82.90 68.29 34.01 16.12 73.63 2.45 43.27 33.03 2.47 48.69 0.64 56.48 23.65 39.88 98.95 91.03 38.82 38.97 85.25 9.12 93.45 41.41 5.94 87.75 16.18 61.26 49.63 97.68 63.62 87.02 65.92 69.20 18.35 35.51 40.30 48.92 93.70 81.42 48.30 45.13 51.49 58.80 85.47 92.53 24.50 54.30 58.49 55.63 67.33 66.19 42.24 92.01 63.71 -85.13 5.32 20.64 43.44 11.32 86.24 52.61 93.85 48.86 97.94 61.68 36.15 15.89 10.83 10.73 48.60 26.38 76.16 73.64 83.13 80.52 40.76 30.44 98.60 65.37 78.92 44.07 99.18 67.52 90.74 26.73 95.37 91.96 11.26 73.81 42.71 44.78 63.66 46.18 56.57 23.79 94.83 85.04 45.63 40.93 69.37 4.86 73.92 94.84 35.86 42.05 43.74 99.70 69.42 45.39 92.77 45.13 56.59 82.70 75.28 22.42 73.87 33.33 98.61 82.18 21.49 48.66 67.10 47.65 89.06 24.53 83.86 94.64 77.66 16.17 91.56 55.34 85.89 65.97 53.45 85.68 86.48 61.53 40.34 76.35 90.69 38.91 12.02 15.33 23.90 42.73 8.43 89.41 74.56 58.79 74.26 16.65 72.17 21.21 22.16 -80.52 46.07 43.27 96.70 21.35 58.97 84.50 86.92 98.71 96.66 2.25 54.01 86.18 81.19 58.08 44.77 89.99 12.53 61.79 13.70 7.35 81.94 15.64 13.94 44.60 71.48 3.93 79.88 15.60 48.83 95.69 73.87 79.33 70.63 32.79 42.55 9.27 19.30 85.01 11.88 21.82 66.95 50.86 86.39 68.33 60.44 27.33 38.07 25.82 75.90 47.04 83.14 65.23 80.19 81.21 87.87 69.71 23.15 82.54 34.24 72.22 81.07 5.70 27.57 79.85 97.55 46.80 35.34 30.01 77.01 91.32 18.56 85.56 45.94 8.48 50.80 18.44 3.75 83.48 21.52 74.36 48.07 19.84 93.35 84.59 0.28 22.95 54.29 33.59 25.90 40.76 94.45 82.29 1.02 93.94 78.08 27.77 58.90 69.24 43.86 -0.19 56.98 70.82 34.34 25.39 65.54 57.37 71.70 41.46 45.05 89.85 7.48 97.65 92.03 62.05 82.84 4.56 49.53 8.58 9.28 93.47 73.68 21.87 0.09 24.94 83.22 91.71 83.20 18.57 56.47 3.96 28.56 22.05 32.00 13.02 56.44 24.24 78.35 26.31 79.89 68.09 10.17 88.76 90.71 49.06 47.45 88.31 79.36 26.59 96.33 70.19 15.00 60.62 79.49 91.81 75.66 26.00 63.05 3.06 91.17 97.99 15.17 59.30 67.58 98.09 69.74 25.63 27.17 62.89 24.43 37.15 56.47 30.11 91.94 48.58 47.60 36.97 55.65 47.22 13.69 80.89 2.33 99.55 73.92 10.49 51.14 15.16 71.93 67.01 7.30 66.86 35.54 81.44 14.49 55.60 41.52 20.92 14.15 79.02 1.89 -78.65 14.06 18.37 95.94 87.63 72.57 8.43 33.08 20.30 67.39 97.15 3.95 53.13 94.07 57.81 21.81 39.34 13.82 4.44 48.23 45.24 76.81 69.96 48.34 36.64 97.99 32.52 38.42 36.54 56.22 95.70 93.60 13.36 50.60 33.57 81.20 53.63 85.35 99.59 28.34 80.11 60.12 6.47 19.36 60.90 74.96 38.21 8.83 63.28 25.16 68.25 2.89 47.99 39.47 92.83 70.99 88.54 27.98 88.32 50.79 3.06 66.13 34.70 61.19 19.75 72.93 55.98 76.96 88.12 36.31 34.02 82.55 42.94 27.91 0.97 90.07 88.30 59.28 60.20 76.76 48.03 0.84 37.85 8.16 56.29 39.62 74.95 48.67 41.27 11.00 89.70 34.93 10.06 68.33 83.86 6.35 36.68 36.45 29.08 7.69 -21.81 92.55 70.02 16.72 97.57 99.99 47.05 34.07 51.91 14.26 1.65 25.85 36.61 58.22 92.82 24.60 52.06 33.96 89.80 33.37 31.74 52.35 2.72 48.99 68.09 97.67 44.74 96.14 53.33 65.10 51.57 32.78 91.63 73.58 55.07 29.45 57.75 53.41 36.97 32.76 36.21 86.79 59.82 75.05 65.11 26.98 56.24 14.66 21.94 70.44 45.15 82.33 80.62 58.79 70.02 23.07 8.64 46.85 87.90 75.33 86.25 2.16 31.55 30.66 19.95 50.21 46.83 50.38 65.01 65.84 23.73 8.43 93.91 99.00 23.05 58.80 10.79 52.82 36.47 74.40 7.01 27.99 79.24 86.94 47.25 3.08 27.94 62.66 13.18 35.00 46.53 49.54 30.12 41.35 88.23 26.45 48.83 89.83 87.03 95.80 -46.82 78.67 13.54 65.79 28.26 48.14 37.65 85.51 72.01 18.59 63.96 91.33 98.60 58.97 4.73 75.05 78.95 10.55 35.92 50.04 98.61 7.44 28.85 2.63 64.00 12.66 93.09 43.14 73.82 80.06 38.79 64.16 69.56 94.75 76.05 15.04 54.87 91.52 51.50 24.06 94.83 0.22 83.77 28.30 36.33 53.06 48.96 72.53 98.42 99.75 18.77 68.66 17.76 85.32 67.05 19.15 8.87 3.58 71.35 8.03 58.20 73.46 88.51 78.23 71.33 33.36 69.48 31.75 92.94 42.53 25.31 10.88 65.74 2.76 68.50 78.70 91.18 60.11 47.45 14.60 98.95 82.45 31.55 32.76 83.78 37.57 19.37 80.51 55.43 22.70 38.88 32.84 68.64 77.84 78.43 26.85 2.47 20.67 24.59 10.82 -71.58 88.01 97.66 37.67 6.28 46.43 62.89 3.26 13.46 48.69 39.18 85.18 72.40 45.92 91.82 50.24 49.52 10.35 97.40 9.47 37.75 62.05 26.30 19.04 28.42 30.10 25.33 27.86 15.36 21.29 97.75 35.40 64.29 24.20 54.26 84.77 57.10 56.11 91.07 60.25 39.94 12.39 31.41 34.71 75.86 23.67 76.46 77.10 40.29 6.45 74.65 41.52 35.14 6.20 22.69 61.75 90.34 39.20 69.26 37.97 20.21 71.14 42.31 93.63 72.37 70.10 13.02 78.22 69.16 59.16 1.73 15.47 27.71 14.68 24.83 14.51 66.40 16.40 15.43 68.95 78.36 94.82 57.89 29.62 23.50 13.34 82.19 25.92 66.32 88.81 81.19 62.38 33.78 43.33 2.24 80.05 31.68 83.73 97.68 76.03 -41.92 18.25 78.65 79.27 5.97 75.80 54.01 45.36 18.08 41.12 2.40 84.39 60.51 48.64 36.23 41.55 56.07 62.24 40.52 37.78 6.28 75.40 9.11 10.47 98.08 33.31 27.26 89.02 14.68 93.68 72.09 3.06 31.11 46.78 15.93 63.48 16.92 92.25 53.15 66.98 83.02 47.49 33.48 24.25 41.92 2.71 62.30 6.76 87.08 69.05 28.32 79.43 16.38 32.73 91.77 20.81 84.38 40.82 86.14 92.41 24.81 44.69 6.93 19.77 96.35 61.79 22.00 76.30 36.44 68.07 74.22 97.44 60.85 65.87 33.10 50.51 32.54 83.35 34.18 77.86 12.35 78.28 4.28 18.86 91.67 17.51 54.83 1.54 43.60 20.95 16.46 94.67 25.98 65.96 23.24 73.24 2.56 71.19 1.18 42.62 -29.79 84.23 77.97 44.94 84.79 66.28 79.77 79.28 54.59 44.33 47.67 94.17 70.76 65.39 28.73 37.67 34.91 18.38 27.58 47.60 64.62 85.79 19.34 56.28 2.80 80.73 37.54 72.79 96.57 56.56 16.18 92.62 73.62 68.66 33.60 51.47 71.39 16.14 66.37 1.49 91.42 68.08 38.56 82.29 96.33 6.21 40.54 40.31 26.81 68.92 4.55 84.15 28.23 59.88 15.55 81.81 6.74 49.63 98.38 3.55 13.40 52.59 5.19 48.20 42.64 83.96 26.11 77.49 68.52 23.49 85.24 42.09 67.89 90.10 61.15 90.43 45.47 90.37 41.81 97.83 43.46 3.90 42.84 38.27 62.00 91.07 6.79 28.66 7.82 89.65 30.75 82.10 83.12 94.67 75.86 99.75 14.85 30.59 24.36 0.32 -1.20 8.51 31.39 90.50 29.71 96.11 26.44 47.20 40.97 61.04 11.28 42.27 79.54 23.50 36.53 81.83 66.40 71.59 78.59 60.33 6.56 57.07 73.26 45.41 63.40 86.77 56.92 85.19 14.54 15.96 62.08 90.81 80.87 46.31 99.28 8.33 59.61 94.05 90.16 72.25 8.84 73.53 10.94 12.96 58.12 64.47 72.75 40.56 39.44 73.66 89.08 18.69 3.79 54.46 93.60 70.27 60.28 31.57 19.71 99.78 64.62 40.35 29.13 65.55 81.59 74.26 2.95 48.02 95.59 90.67 5.07 65.90 11.83 22.32 33.35 39.75 28.61 15.39 11.79 4.04 63.78 34.92 1.18 73.79 64.54 86.98 56.67 80.56 69.61 79.65 99.63 63.18 92.69 10.43 51.31 86.06 73.35 45.54 28.52 92.75 -20.48 92.49 31.87 42.20 15.99 14.77 89.82 13.34 65.00 47.38 87.33 41.49 50.90 69.37 43.18 47.78 59.03 52.77 38.18 1.78 38.79 69.17 81.78 65.87 72.32 42.68 1.36 16.15 17.83 52.07 20.23 39.84 48.51 76.96 62.15 87.83 58.23 93.58 79.78 41.09 71.65 98.27 38.27 29.73 84.78 83.09 72.38 54.32 11.82 14.09 55.80 63.73 55.56 5.92 87.30 25.26 3.43 96.99 14.85 33.17 66.80 84.80 84.55 30.11 7.42 89.00 49.11 24.27 41.12 40.18 51.11 26.87 44.11 85.81 99.61 65.16 81.27 2.80 13.26 85.37 43.86 68.19 16.10 24.06 7.54 1.97 4.88 36.44 38.62 5.56 42.43 50.83 58.98 93.35 92.15 7.92 10.43 88.47 89.39 4.76 -28.79 47.14 25.54 46.83 22.87 1.75 23.68 37.19 1.44 81.20 67.86 39.40 20.39 51.21 46.85 37.34 20.37 49.76 98.62 84.73 62.61 11.15 51.20 52.87 96.85 87.99 47.75 14.93 3.49 59.76 45.51 10.75 45.31 31.25 65.32 18.01 63.42 67.15 64.46 22.84 72.19 17.87 0.03 76.51 66.54 43.89 11.61 12.83 92.12 12.96 69.99 72.08 41.02 66.11 68.84 17.37 63.28 59.94 32.81 29.17 84.18 80.72 66.45 36.58 8.65 11.32 69.41 31.26 82.13 11.18 35.16 87.88 30.58 34.92 80.69 60.50 48.38 37.92 78.18 0.51 27.73 93.76 74.50 26.63 84.24 38.64 50.67 6.43 96.41 77.68 32.34 20.62 88.36 40.41 8.02 29.38 20.43 91.27 9.20 0.36 -60.35 63.57 76.25 42.09 79.73 57.02 97.70 33.91 35.40 55.37 31.48 60.77 8.95 28.03 6.41 71.15 48.10 25.97 59.87 90.89 31.42 83.03 73.88 88.73 49.30 76.43 57.75 15.28 38.05 37.60 49.71 95.16 97.01 12.10 95.41 35.76 16.10 16.06 20.66 74.24 17.26 13.35 17.22 8.85 98.64 16.90 9.44 36.16 82.81 47.67 55.39 0.64 71.59 38.34 47.50 14.32 2.72 39.21 40.32 66.98 37.49 79.88 84.36 0.51 90.55 82.18 35.68 51.28 94.04 26.90 18.49 57.82 28.83 7.23 85.87 35.06 45.90 56.06 65.24 90.02 32.57 92.29 32.55 63.20 53.94 27.42 38.61 88.06 44.97 4.65 9.45 40.12 11.69 85.00 81.62 37.79 82.74 32.39 18.67 14.69 -56.00 5.50 55.23 29.53 29.61 81.22 64.83 10.84 36.72 28.55 55.69 59.71 29.17 22.05 70.20 46.08 24.28 30.04 88.14 97.87 84.71 99.20 31.04 28.29 54.63 63.22 49.51 57.73 52.71 66.95 82.17 32.82 68.10 60.53 20.13 57.13 90.01 28.51 61.95 34.39 17.39 88.65 29.60 51.66 5.57 54.68 62.37 18.42 36.63 16.71 84.40 31.38 9.89 76.61 64.19 97.73 11.48 65.32 82.81 97.89 37.84 16.17 20.10 55.67 78.76 45.57 20.99 98.67 64.43 67.06 84.17 49.90 11.03 4.19 8.63 64.79 55.42 16.03 1.09 10.70 17.35 63.80 82.40 99.64 76.57 86.99 28.41 82.92 88.75 55.49 29.45 43.21 18.48 99.38 65.09 30.10 19.38 28.34 60.60 86.50 -97.09 24.95 98.34 46.90 98.60 8.00 26.40 76.66 13.70 4.62 6.74 75.49 20.69 67.13 87.77 22.41 13.39 31.62 73.55 11.73 25.93 32.24 72.32 97.60 64.87 56.81 23.59 81.83 82.52 56.17 79.18 95.72 64.48 83.93 68.98 47.58 50.02 63.50 42.47 95.12 48.06 4.49 45.44 69.39 84.11 5.84 70.12 5.53 10.68 49.97 3.37 95.02 10.35 80.94 2.75 81.96 62.88 73.50 65.41 12.08 9.58 49.33 40.32 36.74 39.98 50.29 79.21 43.50 75.75 52.27 4.00 55.05 43.01 36.15 25.84 8.62 84.84 55.71 93.59 74.26 7.32 60.36 43.11 55.71 55.25 45.06 45.39 87.17 46.08 45.40 70.41 77.97 24.97 41.83 35.22 15.58 19.80 90.65 58.30 46.80 -41.87 9.01 74.12 60.93 8.44 73.89 84.85 17.33 12.84 6.02 2.11 32.23 24.69 66.57 72.98 24.97 1.72 46.34 10.38 61.56 66.01 7.25 92.31 51.23 79.20 82.61 32.77 2.75 27.63 36.20 66.02 79.53 31.78 92.16 47.89 5.52 14.15 38.20 68.70 45.36 8.29 84.44 86.14 57.71 70.31 94.57 96.36 4.75 47.59 84.84 18.71 53.63 52.26 64.01 25.63 32.01 89.51 98.96 32.63 64.76 8.08 87.22 14.98 84.60 1.84 36.85 24.06 77.24 13.67 17.80 38.17 16.84 88.66 20.95 17.90 73.35 42.99 26.31 75.15 30.64 78.10 68.16 40.25 77.26 37.50 90.34 26.37 24.62 5.90 45.15 33.11 82.11 63.67 55.05 49.24 16.82 95.03 65.92 23.83 53.45 -22.14 62.31 9.39 85.69 9.63 33.41 87.50 77.41 39.44 21.89 16.79 42.30 46.43 99.81 40.57 14.12 72.53 4.27 9.15 11.57 34.20 48.21 50.68 51.34 67.81 15.65 71.83 22.73 43.19 27.77 3.02 50.59 77.94 45.15 3.19 59.72 95.07 33.53 48.61 27.96 35.97 41.47 80.41 57.22 47.59 19.48 54.88 37.35 41.02 86.93 47.66 43.19 10.06 68.96 19.55 34.98 95.55 41.01 18.56 35.53 11.31 16.03 98.52 49.56 3.51 28.53 10.53 22.29 72.68 81.71 8.41 82.61 1.65 73.78 50.93 51.18 53.78 6.64 84.83 94.69 3.23 76.94 79.85 91.68 20.39 20.26 41.46 50.34 85.96 17.47 3.99 60.79 27.66 94.75 16.53 16.81 62.78 92.23 6.42 8.80 -74.19 15.63 50.33 24.59 33.24 70.78 94.43 22.62 41.12 91.20 45.92 8.15 95.14 37.34 82.94 32.90 5.25 64.53 92.70 5.44 30.03 57.82 20.27 81.09 93.66 16.12 9.27 36.07 82.95 21.76 39.32 66.52 80.68 38.51 35.99 22.29 78.76 38.08 43.60 78.73 37.91 80.20 25.58 55.52 50.15 64.90 98.27 38.36 94.34 48.38 10.31 78.16 17.49 58.74 76.05 0.40 32.45 75.40 74.67 55.03 22.85 88.21 88.53 24.39 63.66 56.09 79.92 53.35 62.61 66.57 17.82 27.98 42.09 7.57 53.31 35.36 81.87 37.43 32.78 76.11 7.51 88.66 45.15 34.28 47.44 83.63 26.92 86.50 30.67 29.35 67.48 15.60 15.90 78.99 68.14 60.90 5.25 40.94 83.60 43.97 -15.68 70.12 41.67 53.96 36.56 80.33 38.98 12.93 21.14 69.73 98.86 96.67 73.23 30.03 98.92 92.97 94.60 56.37 33.79 80.84 3.76 7.65 13.62 78.41 27.56 90.74 7.94 2.81 52.67 90.49 7.70 69.81 1.43 54.98 55.85 51.06 75.43 56.61 82.97 76.05 62.41 85.66 2.86 30.19 85.26 18.27 43.31 80.37 90.84 10.12 99.44 3.47 59.55 85.16 15.38 46.24 16.23 23.28 60.97 42.20 14.16 16.78 37.57 77.50 84.08 20.34 44.33 14.00 77.15 34.42 51.55 94.34 41.89 24.45 43.72 65.30 91.43 32.19 92.63 6.36 43.65 7.21 61.21 20.10 50.05 75.76 9.85 77.82 43.61 19.30 81.77 92.93 83.25 16.41 56.38 8.36 6.30 99.39 68.13 90.71 -11.68 19.91 19.61 68.22 13.00 15.13 53.23 2.73 78.77 98.19 94.81 38.98 70.29 28.97 80.06 71.06 11.03 76.24 78.12 61.18 45.93 64.84 21.78 7.99 54.58 93.95 69.26 31.11 77.63 40.97 62.86 51.69 15.04 71.58 57.90 29.65 23.49 81.58 67.47 59.28 58.90 45.18 15.29 50.84 67.03 13.75 80.09 39.83 24.29 53.07 65.16 53.28 74.39 48.60 64.18 5.06 31.88 28.01 22.14 5.85 85.61 68.09 21.14 9.56 83.35 42.17 77.42 54.24 37.46 65.28 10.64 28.54 77.28 34.81 82.16 0.73 44.83 13.24 56.11 90.84 0.11 41.97 59.69 63.54 41.96 79.14 46.79 67.58 97.75 7.75 69.36 50.54 37.88 75.54 32.42 92.47 33.86 10.79 57.32 42.75 -70.53 72.02 49.57 88.44 73.90 21.73 6.03 48.74 18.48 0.48 95.14 99.57 53.71 45.91 0.73 87.19 48.64 7.59 23.70 65.78 61.96 34.56 39.40 2.67 47.40 23.75 97.09 40.67 21.84 24.72 38.38 97.13 88.55 43.95 56.78 77.85 8.00 62.32 26.91 29.21 88.07 93.07 94.09 42.71 28.31 89.12 79.50 21.88 15.22 67.82 16.87 94.16 91.95 76.20 88.40 18.39 93.60 1.43 48.03 37.65 31.77 94.81 45.57 50.65 68.87 26.15 34.88 14.65 72.77 8.50 33.64 79.07 75.99 47.52 21.79 34.96 93.62 4.85 53.39 40.21 22.74 26.66 95.26 95.83 45.10 60.40 4.90 0.14 90.43 43.49 93.89 20.97 57.65 93.92 85.47 78.97 26.52 68.63 97.93 23.86 -84.29 10.74 57.32 78.80 9.05 10.13 53.61 46.81 34.05 31.43 6.68 92.35 74.11 95.01 97.66 85.53 4.65 61.06 3.31 67.82 30.07 7.55 30.34 54.30 60.14 89.08 23.02 16.71 34.86 61.84 28.90 69.14 44.76 15.42 75.77 70.72 65.28 90.44 21.29 4.91 24.16 64.81 86.77 70.54 8.61 31.31 24.60 57.32 67.04 51.20 40.97 85.49 77.27 70.93 89.00 46.66 79.02 16.27 27.03 72.50 81.14 64.41 46.02 15.58 93.38 79.52 33.94 64.20 12.47 80.23 18.69 67.29 33.59 24.99 97.12 41.50 4.33 30.60 99.13 48.58 0.64 66.34 20.25 96.24 88.94 25.65 28.55 57.21 87.89 1.62 68.70 82.75 66.18 11.31 55.13 87.40 70.76 98.94 69.23 48.82 -80.66 30.18 92.31 40.29 99.12 16.78 62.36 15.74 81.97 58.49 53.28 76.78 51.16 86.36 97.69 58.97 37.73 8.79 47.18 20.71 18.72 31.55 11.27 71.19 50.20 84.54 25.64 11.94 93.21 41.37 33.08 57.09 71.81 36.10 32.93 2.84 62.77 39.00 57.98 92.76 8.02 90.50 74.36 86.24 3.61 5.69 15.68 3.39 78.47 72.40 4.18 76.26 22.19 78.87 55.26 17.57 61.80 84.82 91.46 90.81 10.14 53.17 8.21 51.31 79.57 26.96 40.78 32.24 34.57 46.70 8.65 49.38 33.71 75.39 94.93 53.13 38.60 6.34 49.64 42.18 77.80 5.96 23.52 12.23 18.27 52.81 94.46 16.37 90.42 82.00 38.56 51.64 56.06 95.99 80.53 94.70 97.08 5.93 37.77 39.17 -29.94 26.43 45.92 18.57 33.18 96.88 25.65 6.91 35.79 37.12 55.67 89.67 15.50 51.90 85.84 89.33 90.84 46.75 48.69 83.11 19.31 18.84 29.36 84.32 69.54 11.23 63.36 69.88 41.85 82.87 45.59 12.69 64.63 61.44 58.15 34.77 38.80 4.69 93.46 89.96 79.83 52.70 20.08 3.01 12.77 41.60 28.65 64.73 18.75 92.98 50.57 43.19 72.53 37.88 23.52 24.64 11.60 90.45 11.47 78.12 5.22 65.53 70.61 10.19 13.88 83.87 37.46 77.27 20.31 78.58 12.21 25.81 27.13 39.99 59.50 25.55 87.61 48.63 66.60 46.06 80.05 48.43 49.49 13.53 93.44 41.20 98.17 39.54 1.04 37.23 84.31 69.78 51.65 38.07 73.79 27.41 80.83 73.47 43.28 66.42 -83.50 53.34 50.38 51.96 15.78 72.26 78.18 97.53 21.11 41.37 46.86 93.32 15.43 70.68 54.39 31.94 11.27 27.93 76.99 43.48 67.06 82.86 73.84 52.67 37.85 85.87 22.99 60.49 33.40 95.92 58.34 75.85 78.01 41.63 9.61 72.40 54.50 44.88 92.51 41.06 10.30 64.82 21.73 75.38 9.10 31.90 31.64 87.77 34.54 59.80 99.65 3.05 75.85 46.00 35.81 67.62 88.89 89.71 54.37 8.92 17.44 47.99 59.50 74.44 1.17 39.60 88.77 14.61 53.02 24.22 72.08 40.45 57.30 73.38 75.62 51.61 80.17 86.10 14.27 38.28 45.29 2.79 47.52 14.38 96.40 18.19 57.91 78.22 27.49 72.09 74.73 2.59 47.45 61.54 98.98 95.98 62.81 53.14 82.28 23.40 -81.20 54.02 83.94 45.27 32.85 90.45 90.36 32.39 44.97 90.81 45.91 44.68 29.39 2.58 29.78 55.00 21.38 97.38 89.78 55.13 30.76 84.51 80.05 30.72 50.70 8.71 64.97 69.80 14.79 75.39 40.51 84.93 13.74 42.64 30.76 90.25 71.56 74.91 2.25 39.61 37.98 69.17 80.37 58.07 10.13 11.77 70.63 3.55 92.04 52.01 9.18 82.45 13.27 72.15 19.48 10.20 57.51 22.56 20.99 18.85 40.16 66.20 0.73 60.55 45.09 50.02 94.40 54.75 90.52 19.59 6.41 66.93 87.68 75.13 98.35 80.24 89.27 91.78 86.90 28.44 47.02 89.83 84.19 23.61 81.54 95.85 60.06 41.79 80.15 55.40 95.71 10.38 1.92 42.24 14.42 84.23 16.27 23.03 74.07 6.26 -75.13 82.02 29.86 68.75 81.84 59.46 78.00 32.92 48.81 99.45 93.56 50.97 67.08 15.96 98.45 24.14 50.35 45.84 90.98 37.59 35.31 12.41 64.30 22.54 83.78 54.67 80.12 59.87 63.83 9.57 99.68 40.86 27.36 37.61 95.08 74.89 53.40 51.66 82.74 54.36 38.07 29.50 18.83 28.09 76.99 79.86 37.26 48.14 40.39 82.34 48.43 89.77 7.80 27.34 11.63 92.71 5.97 33.53 3.40 17.43 44.84 28.41 97.21 13.21 60.65 10.52 26.83 46.79 89.93 60.76 64.13 7.06 10.85 17.80 27.79 84.89 46.59 80.24 36.92 86.89 76.58 25.69 17.55 89.38 42.30 2.34 39.11 41.43 84.42 11.70 87.28 37.65 69.30 87.52 63.54 68.38 42.13 51.78 12.78 45.81 -36.16 28.11 15.24 97.13 34.08 14.88 96.56 37.77 20.04 53.77 72.08 11.48 55.57 80.22 18.18 21.14 61.62 69.74 65.15 8.65 73.86 5.50 59.41 11.94 61.24 27.35 69.57 77.17 63.22 61.57 87.01 26.79 27.01 32.95 58.77 8.65 8.13 19.48 25.60 30.41 38.65 62.00 18.75 85.80 0.28 71.62 6.40 83.94 90.83 40.28 67.07 26.03 31.27 49.18 99.92 95.43 99.53 58.37 73.37 86.39 80.11 75.42 91.59 26.38 97.01 6.09 89.05 4.74 25.77 29.75 0.50 89.17 22.25 51.90 99.88 3.54 60.31 47.65 47.17 86.89 28.24 87.91 85.76 39.82 7.77 62.50 0.87 7.14 85.00 67.26 71.24 40.39 72.65 25.57 22.80 58.01 97.13 5.49 46.18 77.39 -75.72 61.65 55.45 3.89 81.96 5.83 38.49 39.38 9.36 84.13 69.70 68.53 56.08 7.00 2.64 75.75 16.50 40.40 77.49 71.61 7.78 23.41 45.12 0.73 31.69 30.35 2.86 8.55 84.80 41.96 99.33 68.00 30.70 49.78 76.47 31.14 57.83 71.91 91.47 5.47 17.53 2.11 16.63 99.08 11.97 85.27 63.54 54.07 52.43 40.41 32.23 66.20 94.22 22.93 42.68 22.91 3.44 90.09 81.70 36.49 30.10 73.24 32.91 36.75 50.15 73.53 98.83 56.12 4.98 48.76 95.42 28.48 90.21 1.35 10.92 52.52 94.68 31.90 95.52 84.26 67.00 26.95 98.16 90.18 88.90 93.15 56.67 17.72 42.57 99.03 37.50 6.11 14.33 16.95 21.72 87.33 29.81 87.47 37.59 11.13 -12.79 35.36 0.62 98.71 12.63 84.08 36.87 76.79 94.63 18.87 93.91 63.89 71.19 32.54 58.32 47.16 3.83 71.73 87.04 15.99 25.71 8.05 59.13 63.44 90.14 12.99 1.75 91.45 77.06 97.60 52.29 13.71 96.18 98.26 94.45 37.69 72.78 16.66 96.96 5.61 87.96 27.55 43.48 70.19 72.56 75.15 65.35 1.34 10.91 81.02 77.08 43.81 71.26 64.70 54.80 64.18 26.66 18.52 85.26 67.68 12.07 31.66 68.48 34.49 59.84 10.45 92.76 13.44 99.86 38.87 48.38 48.86 27.93 79.89 77.52 57.69 86.02 28.15 7.01 78.80 58.84 95.35 71.31 45.20 60.67 31.87 5.82 99.81 5.29 91.89 0.02 36.83 35.77 0.03 47.68 29.84 24.90 61.26 63.24 19.61 -0.29 61.92 70.40 83.13 80.93 42.32 3.25 94.50 41.57 31.70 7.83 46.59 49.35 95.24 35.90 86.50 13.15 21.27 54.47 86.26 84.29 73.75 57.68 88.28 84.63 0.71 15.02 23.62 66.37 82.57 66.13 43.00 52.31 79.94 50.37 8.16 32.46 30.27 30.41 28.62 25.51 29.63 72.97 79.64 34.76 95.05 57.81 44.03 40.62 46.02 25.81 0.16 6.59 30.42 66.15 95.22 46.64 1.41 28.81 48.86 40.45 82.03 77.63 90.06 32.70 50.90 87.32 61.65 67.96 98.57 67.03 29.40 83.19 41.38 12.68 89.59 31.74 69.98 67.05 53.75 8.13 27.38 87.42 95.03 57.54 17.57 58.89 82.65 31.16 15.54 82.50 56.89 73.55 35.43 50.70 9.44 38.09 71.63 21.18 84.08 -33.78 19.71 18.06 21.62 34.51 96.47 30.35 33.30 62.59 29.02 37.58 37.53 8.97 40.00 51.91 57.70 67.84 58.18 30.40 92.09 52.05 27.78 96.49 35.96 67.87 62.27 2.44 73.34 7.64 53.32 88.15 14.81 46.42 70.07 30.12 85.78 48.22 2.01 6.40 43.77 57.31 60.01 21.10 11.55 97.09 49.76 17.39 41.39 3.48 3.78 78.69 81.63 12.09 51.67 67.96 33.87 17.50 62.54 24.61 6.27 82.25 94.78 97.15 36.75 86.18 85.23 99.49 77.21 80.17 47.00 29.46 99.83 50.93 44.49 4.76 88.12 50.69 28.10 44.00 69.25 60.37 0.90 13.71 6.20 26.17 69.91 27.71 35.62 46.85 26.81 40.99 19.79 16.63 75.16 16.37 51.44 42.22 90.32 96.49 40.42 -92.71 0.58 47.45 53.28 46.50 7.51 88.80 14.17 72.51 27.89 59.99 9.15 56.93 28.66 81.38 20.59 53.67 88.71 64.15 96.67 83.56 11.76 52.34 66.63 73.66 45.19 50.90 59.65 32.80 34.63 21.08 29.04 14.88 16.04 35.58 17.27 56.73 2.09 85.41 47.36 92.04 16.83 62.37 84.69 39.74 60.12 93.67 26.34 99.81 65.19 63.82 80.21 42.25 96.44 79.79 22.67 49.77 73.82 74.83 50.21 55.03 60.11 6.10 80.61 41.05 0.43 94.47 13.04 87.50 44.12 90.45 21.03 59.97 43.86 17.16 32.96 53.73 86.72 87.73 74.91 89.77 24.69 32.16 74.19 73.51 46.21 49.47 24.75 61.55 39.39 33.33 98.18 49.46 57.92 14.12 58.13 54.25 16.36 46.17 84.70 -47.08 55.52 46.86 15.65 97.44 75.31 16.18 64.77 31.64 21.05 87.28 6.60 22.10 25.93 74.01 9.61 38.32 67.47 43.84 18.70 27.65 7.16 88.84 96.67 97.26 81.10 61.86 45.79 32.69 38.32 24.11 53.47 40.08 63.37 74.94 76.89 45.25 91.44 84.47 56.72 19.92 65.18 82.26 65.54 10.71 68.30 29.69 71.53 27.10 11.43 57.41 24.94 33.10 70.87 86.00 98.53 96.79 27.10 10.64 17.97 94.80 48.47 2.99 37.33 88.49 19.04 40.82 25.09 66.53 73.97 19.82 19.16 59.51 3.74 56.19 75.61 50.56 75.25 63.92 17.92 17.66 3.27 97.52 13.87 55.79 4.86 0.06 59.48 79.59 20.16 50.88 73.62 70.37 30.96 65.42 87.26 75.36 4.42 28.20 86.94 -37.94 3.74 48.01 20.07 69.67 48.52 7.50 98.36 37.69 98.01 49.01 16.15 77.88 71.63 10.89 61.14 94.05 36.81 32.91 10.86 4.81 57.14 24.00 86.66 36.14 40.95 88.27 79.05 96.89 51.21 41.64 89.61 10.41 97.50 8.62 93.65 74.26 83.71 6.94 44.98 56.57 0.97 82.87 65.07 9.70 87.25 7.18 79.96 13.35 19.36 6.09 90.85 56.12 90.62 1.07 43.92 75.69 44.70 28.26 55.81 49.06 78.49 32.38 18.96 71.66 85.83 83.83 87.55 32.33 71.34 27.11 64.64 68.45 63.57 15.02 67.82 43.83 90.15 32.55 4.31 60.89 17.01 52.48 66.72 10.31 85.66 30.02 66.86 85.14 83.87 65.44 85.01 19.73 16.93 96.70 9.21 90.52 22.73 80.33 99.20 -55.12 57.95 45.11 64.76 12.07 96.96 10.82 99.68 20.50 56.06 81.45 37.76 38.82 31.82 30.50 28.41 42.75 51.87 96.60 46.29 75.56 94.86 19.10 98.28 81.04 51.26 3.14 46.07 14.04 20.55 94.68 7.90 27.43 32.18 54.02 85.92 36.86 25.23 53.52 58.61 48.44 85.38 38.12 28.34 27.11 98.54 57.21 39.87 95.63 32.19 44.00 53.08 49.97 83.75 96.35 53.59 48.78 84.12 4.68 22.83 71.83 82.86 67.70 53.05 92.32 87.22 6.47 80.30 3.98 0.49 56.75 0.62 49.70 71.03 57.15 64.87 24.25 77.73 40.79 71.41 15.70 8.53 31.49 12.85 9.55 60.08 7.51 36.19 61.90 94.27 36.03 84.97 44.44 32.75 40.85 5.44 62.34 16.18 48.77 32.92 -44.34 38.11 84.69 75.85 13.32 95.54 82.68 91.40 91.42 80.93 84.71 22.14 14.02 9.85 32.31 19.83 12.28 9.83 66.06 18.04 46.69 61.94 40.30 80.85 89.46 53.54 56.60 1.73 93.33 97.23 94.95 70.46 17.13 12.42 11.70 37.56 33.76 15.05 59.56 17.93 78.91 72.95 4.94 34.20 18.89 95.09 67.32 60.82 29.52 7.57 58.68 25.22 81.90 27.26 72.08 66.27 46.99 28.03 68.55 15.17 99.36 86.19 11.86 78.85 23.04 77.24 97.94 55.19 48.78 83.51 20.77 76.85 18.04 49.13 40.09 87.24 51.11 80.68 24.87 33.60 53.64 88.90 6.71 21.82 10.22 13.25 64.71 10.15 44.28 40.77 19.39 77.85 16.85 67.80 84.71 66.79 74.24 63.03 9.99 54.38 -5.91 16.93 55.30 8.69 97.16 95.84 58.02 43.07 95.71 33.92 11.09 29.35 92.91 4.08 13.03 22.57 86.93 21.36 88.33 9.38 62.13 27.78 69.96 96.18 89.34 61.60 5.44 13.44 71.45 69.66 26.53 11.17 35.98 91.33 61.92 70.40 30.81 99.64 80.98 80.90 16.90 72.20 75.57 78.66 65.65 12.93 11.91 63.31 32.40 43.48 73.64 63.43 80.49 2.60 83.59 73.53 70.85 19.25 4.41 40.96 63.04 16.51 76.01 94.24 88.67 33.11 47.58 66.45 50.13 1.13 16.24 69.39 96.52 32.07 58.39 29.58 93.74 34.22 74.35 37.86 44.46 72.67 0.09 93.75 72.44 1.30 65.65 76.98 81.97 35.87 76.82 45.97 74.01 62.66 95.26 23.30 1.80 25.21 47.35 7.98 -7.31 19.76 63.66 22.65 26.56 33.37 52.42 77.88 6.69 47.14 68.64 88.95 27.39 73.42 44.49 1.40 41.61 98.89 4.06 74.52 1.33 22.39 92.45 78.08 23.17 89.78 17.96 67.83 83.12 22.44 8.14 40.11 71.17 99.31 27.94 57.89 37.93 50.11 61.46 90.34 50.14 24.85 27.09 11.83 28.92 20.37 83.11 40.28 71.63 78.95 51.33 92.63 97.73 95.88 97.19 14.41 7.19 98.34 4.65 74.65 39.89 12.44 45.54 91.90 50.62 8.12 72.17 12.44 12.55 38.65 99.70 48.12 62.11 87.03 45.33 63.16 79.25 18.80 11.62 82.36 2.38 97.30 33.44 93.31 70.68 18.01 18.66 70.60 17.39 40.28 37.41 29.88 53.55 7.32 27.29 86.33 56.11 23.84 17.40 11.30 -46.04 34.27 49.32 97.54 91.10 68.72 67.49 31.91 79.53 72.41 71.44 95.69 45.89 67.66 17.87 10.82 69.21 2.72 34.94 60.07 63.87 23.54 20.08 31.37 85.90 74.92 54.42 76.44 13.99 74.62 59.29 83.76 51.22 88.63 70.78 71.28 93.37 26.68 84.52 95.55 57.06 89.04 40.67 93.89 18.55 50.27 84.95 81.25 18.71 70.59 58.06 90.08 18.56 44.10 75.00 17.79 56.23 15.93 91.14 45.83 51.86 60.26 38.12 78.12 90.93 7.19 71.81 79.51 88.16 25.08 81.16 28.05 35.02 0.99 24.73 35.81 34.78 56.79 54.46 42.86 46.36 91.17 92.68 30.09 72.13 15.23 21.68 75.59 36.94 69.59 37.85 87.29 38.61 85.35 64.49 3.54 15.91 50.34 4.91 57.80 -72.32 38.10 54.41 13.33 38.46 28.49 19.32 85.50 74.44 79.79 12.48 72.11 45.86 39.32 20.68 26.34 82.82 48.21 61.61 49.46 38.54 31.21 25.88 37.00 11.32 4.94 80.48 12.21 59.95 56.07 77.20 35.05 69.76 78.16 67.44 36.70 60.48 45.77 29.79 15.95 66.39 14.18 65.13 71.44 47.12 80.89 8.24 66.98 72.10 72.25 83.25 68.07 70.20 34.44 23.47 11.61 55.93 4.75 11.54 91.35 31.95 92.87 87.29 96.61 88.40 54.39 43.52 6.13 98.85 51.35 46.57 57.92 20.84 18.11 6.90 49.42 23.50 41.48 53.37 11.06 45.53 62.82 1.28 23.26 48.35 17.92 55.14 24.65 42.33 93.02 93.70 70.49 65.57 99.48 28.07 50.10 25.72 83.00 93.03 25.37 -55.10 72.35 19.57 11.57 28.08 88.26 24.02 86.73 92.36 55.73 79.63 30.93 8.69 18.54 93.52 9.85 38.24 2.56 69.27 64.92 57.15 51.09 22.22 64.79 84.67 98.38 5.55 39.05 92.62 67.87 20.99 10.85 88.77 84.94 25.14 53.93 79.47 21.02 72.61 28.09 24.59 7.82 58.52 35.67 13.38 43.07 67.58 86.44 50.58 76.58 20.06 8.36 19.45 38.83 79.71 4.78 76.25 35.57 21.25 20.92 8.36 3.77 35.23 64.32 30.42 61.41 1.12 17.79 17.16 93.16 73.97 66.61 42.09 2.86 93.92 50.22 71.29 21.37 35.86 99.50 42.63 46.55 95.92 45.49 1.98 65.47 8.67 17.20 71.53 50.29 57.86 93.89 66.80 74.61 31.73 68.35 45.62 64.93 35.40 8.60 -88.49 22.42 11.32 62.06 98.59 0.73 69.38 4.42 88.85 43.43 16.77 18.47 38.43 8.21 77.91 93.70 15.30 26.31 21.16 5.28 37.05 83.41 46.22 54.26 15.28 46.50 47.83 74.00 56.38 24.54 69.60 42.86 8.35 75.68 9.55 3.60 67.06 49.21 67.73 98.33 66.83 22.74 77.62 37.12 27.68 26.64 36.86 71.46 85.41 99.86 10.49 85.60 44.55 73.13 22.86 72.96 6.20 0.19 96.28 39.01 68.92 25.14 27.09 30.76 32.46 72.52 45.61 28.53 70.50 86.06 22.82 5.44 94.16 6.96 36.26 27.22 41.44 5.40 23.29 83.22 15.23 26.11 54.94 21.84 91.85 59.59 72.22 63.56 25.11 73.89 75.73 84.84 42.41 66.69 58.97 78.03 25.41 18.39 90.50 34.58 -33.08 84.39 4.32 63.57 23.75 25.04 6.15 59.41 94.99 70.20 55.44 19.53 10.82 92.43 16.43 39.87 74.75 9.80 47.84 56.10 19.44 30.05 34.79 71.12 65.54 11.94 61.42 11.97 53.49 51.02 29.22 7.60 31.12 17.52 53.48 53.73 7.11 19.48 55.68 94.74 62.32 97.78 55.06 22.78 63.01 74.01 23.76 81.67 59.89 33.33 23.73 57.24 75.88 30.75 15.64 35.58 86.52 9.22 50.84 5.18 30.17 86.68 90.52 22.75 31.02 4.06 9.05 21.66 25.48 80.67 65.74 85.05 87.90 22.56 38.87 23.21 68.05 38.94 62.02 52.72 41.26 26.89 16.71 42.62 95.39 7.39 60.95 53.76 93.67 58.21 34.62 7.44 85.78 53.54 25.44 47.41 2.06 20.57 3.82 24.11 -41.36 49.91 78.07 54.78 10.15 36.43 26.95 7.02 46.51 3.52 83.23 30.34 47.52 69.03 30.31 74.26 30.17 85.04 41.39 89.96 58.24 71.73 33.42 86.67 88.48 75.50 51.80 24.01 66.18 75.79 46.02 10.57 41.14 69.24 11.05 30.09 64.07 38.70 0.29 44.12 0.04 78.72 88.24 31.09 22.45 54.74 59.11 19.95 33.00 34.90 25.05 53.48 43.89 35.26 72.62 43.75 67.41 59.19 90.04 7.00 24.23 31.32 64.00 12.74 5.30 89.49 11.21 30.74 29.94 3.02 58.02 97.30 10.95 24.59 41.09 45.19 99.05 80.43 40.53 3.95 26.25 32.22 39.37 57.91 2.19 37.72 90.44 19.80 77.29 56.70 81.13 25.89 56.93 22.08 44.73 57.40 95.52 31.04 58.47 55.79 -60.33 76.48 69.40 97.21 28.01 1.05 52.47 65.85 15.96 39.89 28.67 78.35 32.57 99.21 79.12 2.07 25.34 83.59 65.46 88.19 57.71 59.61 25.87 43.92 23.37 45.44 82.77 79.99 66.39 62.91 4.85 63.95 66.68 87.02 52.63 25.24 14.72 3.55 35.64 58.38 55.30 93.73 27.19 45.00 93.03 44.91 6.89 10.25 66.14 18.58 79.11 44.57 27.25 83.99 22.88 81.62 39.23 38.97 15.65 50.74 35.93 61.98 43.20 25.09 53.16 77.25 7.21 35.19 53.25 65.99 86.22 32.26 44.66 23.51 72.61 76.22 19.69 95.54 89.14 77.09 83.14 93.69 17.07 69.74 70.35 23.01 13.46 65.84 81.47 6.55 18.21 72.00 2.18 54.96 75.91 41.07 92.46 87.09 87.70 78.64 -69.72 42.52 47.46 71.18 72.00 84.69 4.80 95.14 35.50 10.28 2.17 3.39 9.39 93.10 63.12 64.96 34.09 69.05 32.24 36.73 18.11 68.31 19.31 19.82 19.37 85.57 4.74 6.65 32.60 39.37 25.51 68.84 15.97 84.31 51.57 99.23 81.76 59.03 35.71 6.82 46.44 27.89 89.24 79.12 75.65 31.60 6.60 89.11 45.14 83.52 98.90 62.55 90.15 79.16 71.06 97.15 65.19 31.53 33.14 93.24 97.12 2.97 35.77 34.58 75.58 63.64 87.86 45.71 41.77 13.74 88.21 13.03 65.76 65.41 94.93 39.17 71.34 20.55 51.84 76.89 96.77 32.37 73.89 32.57 43.32 91.63 80.58 9.76 85.69 20.91 5.43 9.60 36.01 20.35 97.58 69.40 29.68 65.71 72.53 68.25 -21.68 59.81 4.83 22.03 60.43 71.20 25.10 85.09 93.86 17.21 30.64 62.49 2.52 28.48 57.54 36.36 32.26 38.84 33.27 89.31 44.46 60.26 31.16 74.31 45.35 64.83 8.11 19.55 96.53 29.02 95.77 87.50 14.92 97.81 77.51 57.44 47.23 82.82 92.03 46.34 68.76 0.07 47.33 94.18 87.06 32.44 75.62 15.51 20.64 72.92 63.40 68.03 39.04 7.90 14.34 87.67 60.88 49.03 53.97 32.24 51.52 12.57 71.39 95.60 21.69 11.30 58.58 60.85 81.34 86.21 94.51 88.75 8.47 40.78 45.38 28.43 34.54 49.23 26.05 71.49 46.31 92.12 9.95 48.62 75.07 47.84 25.57 73.23 52.91 46.35 20.07 67.41 4.98 55.21 23.21 83.84 7.59 18.32 18.80 92.85 -50.58 3.46 56.25 82.57 10.69 33.50 53.61 26.85 8.23 64.83 74.19 57.48 66.38 0.57 94.69 61.32 77.66 75.39 91.52 37.39 35.21 69.13 16.03 41.19 38.71 11.85 90.87 28.27 83.81 53.91 58.78 85.96 11.15 61.52 5.22 3.47 55.01 53.00 56.45 11.84 29.14 47.95 79.62 55.37 99.15 55.29 21.13 65.27 68.83 38.51 19.94 90.83 40.44 82.38 18.19 87.17 16.29 85.93 97.39 91.10 88.82 41.86 28.95 90.06 0.87 69.53 27.29 98.23 79.62 13.85 15.49 55.56 0.77 67.18 39.89 81.72 58.78 19.37 39.40 92.85 9.53 35.11 59.59 8.78 1.75 53.83 91.35 94.09 7.14 51.35 68.67 2.40 55.61 20.83 46.85 90.45 14.62 50.92 63.46 82.08 -40.02 71.12 47.46 91.82 37.23 24.82 23.97 86.95 17.65 99.89 6.76 96.08 74.73 90.32 9.67 29.16 86.30 20.89 94.26 90.28 10.64 0.73 95.92 83.26 87.23 42.83 59.48 63.25 45.53 35.49 77.47 94.90 91.76 94.36 88.07 56.51 89.30 73.62 92.40 82.69 15.61 4.75 11.16 44.83 84.80 51.91 97.48 81.61 52.04 87.84 13.63 62.94 74.77 67.53 75.51 29.76 38.05 17.92 46.17 1.60 83.17 65.29 93.61 34.78 98.00 59.45 90.26 61.68 11.97 92.62 85.22 87.79 44.87 28.79 94.86 63.66 81.58 42.92 96.17 99.41 58.23 37.97 45.84 51.28 71.88 44.20 39.25 49.89 2.17 95.64 26.73 66.11 51.47 89.12 58.54 73.24 24.62 47.41 83.81 8.07 -53.21 22.20 98.01 28.83 3.11 58.50 72.67 23.05 36.95 68.68 97.74 37.99 11.85 65.52 2.75 81.64 49.01 61.71 50.00 97.82 25.81 16.12 71.74 87.42 54.48 6.17 0.50 67.82 23.03 26.77 87.64 28.28 17.42 11.22 27.47 84.95 13.39 64.24 7.37 29.10 8.18 25.10 34.64 68.80 30.62 96.77 91.04 23.72 23.44 6.63 10.57 48.47 27.02 78.57 79.67 83.57 15.96 21.19 22.07 22.11 37.54 25.96 20.38 96.09 18.41 28.73 75.99 83.00 6.05 13.84 75.66 71.64 29.95 16.17 8.18 6.47 19.46 43.98 44.31 58.34 39.56 97.44 18.41 7.31 46.19 34.99 1.94 14.80 12.96 16.78 33.59 43.93 33.59 98.31 35.61 63.30 69.84 18.88 10.57 76.03 -82.96 10.11 41.52 31.76 71.13 37.51 83.81 42.01 28.36 55.51 34.50 8.69 53.13 78.94 4.15 6.85 94.46 34.25 65.60 67.79 10.41 26.82 84.00 92.38 86.69 97.84 10.98 1.27 27.97 11.66 23.28 43.59 66.20 37.35 7.49 79.17 81.49 44.12 1.90 36.34 42.38 98.26 62.24 6.58 5.08 96.83 81.04 0.98 53.31 85.98 46.41 95.16 67.66 55.63 71.68 14.87 34.20 39.78 76.51 88.49 92.60 25.24 40.24 72.72 79.84 80.04 21.78 81.79 17.91 78.45 8.21 18.22 89.16 88.23 22.92 52.39 55.97 18.17 89.97 7.10 91.02 12.59 26.40 67.48 55.47 27.15 95.69 62.30 66.29 70.10 22.58 57.01 43.07 73.66 57.08 7.68 76.41 43.54 25.72 47.66 -57.03 22.79 99.17 16.27 84.00 86.47 93.03 42.17 6.70 19.79 0.92 77.38 67.94 36.41 99.83 87.70 33.35 34.15 48.05 80.87 66.02 90.29 67.38 79.48 4.22 54.85 11.68 98.39 61.06 26.75 14.49 49.38 92.72 65.42 0.05 69.92 9.11 66.62 13.78 98.68 60.15 86.51 80.03 38.95 41.99 41.61 71.11 75.90 18.79 20.72 85.84 61.60 73.68 90.70 84.23 54.81 11.81 96.33 20.72 64.17 47.26 36.72 64.81 67.84 15.93 0.84 27.58 89.10 52.81 36.19 9.46 45.28 5.96 47.76 34.96 67.53 62.57 54.42 83.45 98.34 9.06 32.96 16.44 8.68 64.48 86.73 7.92 38.22 39.32 9.22 82.66 74.71 72.94 97.81 29.47 83.39 99.39 21.44 12.46 0.15 -19.55 96.18 93.35 15.90 6.28 2.34 83.86 37.54 96.23 93.02 60.31 93.58 25.43 41.12 34.05 31.57 13.31 35.49 35.42 2.97 82.73 65.50 2.48 42.26 65.93 92.26 86.67 33.52 43.36 34.38 45.05 72.30 99.68 23.08 78.97 92.48 19.83 43.26 28.06 10.11 60.16 67.45 64.63 42.15 79.43 85.33 11.67 24.54 3.73 4.78 33.48 67.95 17.43 47.81 20.71 59.55 70.70 97.88 80.91 2.42 23.19 45.34 11.02 95.92 96.33 37.94 23.14 84.89 48.74 11.42 33.06 12.19 16.28 82.40 55.21 28.82 32.28 21.38 66.88 82.57 45.19 38.45 47.92 72.39 92.42 75.60 86.53 36.46 77.09 28.60 73.10 57.08 18.93 68.11 56.43 43.25 7.66 39.93 6.33 40.89 -83.71 17.70 8.76 51.92 15.34 11.09 92.54 91.46 82.59 13.06 12.16 51.91 89.17 81.09 49.27 25.64 41.13 16.94 83.52 55.67 23.07 49.65 73.56 67.59 39.47 77.32 55.93 33.29 1.13 23.88 52.86 95.91 94.27 33.66 94.19 21.77 17.90 31.94 56.15 54.34 58.01 0.51 79.00 5.10 81.82 2.20 67.16 89.92 39.36 98.59 57.53 73.41 99.13 90.28 93.48 23.86 85.99 83.93 64.67 10.93 47.77 8.79 48.22 98.29 70.47 83.85 41.79 55.29 88.98 86.08 17.60 29.49 12.65 58.14 28.87 58.45 97.80 19.94 29.67 98.15 48.47 52.66 32.83 68.97 4.58 86.21 27.62 64.81 12.45 17.57 65.48 5.19 81.63 19.73 77.96 38.42 37.40 99.82 57.04 81.03 -62.33 46.79 9.93 79.22 29.87 43.38 19.95 67.92 41.55 99.12 73.87 31.57 37.55 91.58 3.47 16.50 35.62 27.07 71.15 95.88 25.24 19.47 31.82 84.50 85.61 91.99 17.00 52.80 78.66 22.97 38.40 92.85 23.18 80.87 1.58 25.90 46.02 24.47 88.24 56.86 55.74 7.16 40.60 35.01 50.16 46.93 47.87 74.49 48.60 85.56 38.04 45.37 23.80 9.83 77.59 72.94 75.99 20.52 94.00 79.18 36.28 31.80 89.22 31.78 67.02 21.28 70.23 2.09 54.93 13.53 27.33 35.44 0.08 37.58 99.77 52.41 95.97 79.66 89.70 34.07 12.70 19.38 95.52 21.63 66.38 85.52 95.05 17.60 44.81 85.62 85.19 27.43 67.24 3.21 16.83 42.80 43.81 21.57 55.09 49.73 -59.96 41.62 79.73 12.86 27.27 70.75 19.26 34.07 1.29 51.33 36.64 18.69 28.63 78.42 44.66 12.13 65.09 52.32 1.28 43.25 92.79 50.04 85.09 58.33 24.75 19.19 71.82 74.94 21.97 89.88 56.29 42.71 52.84 19.99 0.65 55.51 18.34 95.40 98.09 27.32 99.02 95.04 91.90 7.79 29.70 56.10 52.38 95.40 13.15 13.47 58.85 76.90 47.48 10.34 54.22 83.87 89.25 19.51 65.40 73.91 75.23 8.81 99.19 76.28 58.32 29.35 85.26 63.30 15.89 99.22 79.32 35.72 63.74 55.99 75.74 54.48 9.44 21.34 61.74 80.86 87.21 13.48 95.26 59.52 19.42 83.21 46.13 90.35 47.33 39.51 2.23 44.60 40.21 79.92 37.04 79.57 49.67 97.44 42.07 47.38 -8.02 33.52 50.20 70.83 4.01 43.28 51.36 33.48 29.85 96.26 18.14 20.45 18.71 70.83 98.60 86.50 34.57 88.24 8.90 82.43 48.98 10.22 86.93 72.83 14.34 44.56 5.09 51.21 53.69 62.88 41.54 68.43 70.14 81.68 12.27 17.90 34.79 63.87 68.33 30.41 43.13 23.43 36.29 90.80 21.69 26.49 53.45 84.22 24.66 19.48 84.14 79.56 8.84 25.95 28.72 18.14 67.70 12.87 18.49 90.06 47.59 60.00 1.32 94.75 34.56 90.96 1.56 79.47 3.66 13.90 70.64 83.75 75.91 5.31 49.52 97.02 91.72 25.18 90.41 96.27 71.65 8.24 38.26 62.27 87.00 76.69 69.82 47.66 96.45 22.77 87.13 80.53 82.12 85.23 56.04 75.61 29.81 94.65 67.37 50.23 -19.87 74.30 48.82 65.09 8.26 57.62 15.53 32.43 99.23 13.91 19.72 38.11 13.33 16.82 78.34 25.99 78.59 68.73 97.38 79.71 43.84 44.64 42.97 43.43 72.97 82.24 53.89 93.15 82.90 45.11 66.47 9.46 3.15 90.19 65.37 93.37 12.72 4.13 11.09 22.41 98.79 84.84 0.62 9.10 37.09 3.97 93.14 69.92 24.39 38.78 49.64 19.15 80.36 47.90 24.86 4.62 80.95 5.52 32.27 14.91 46.88 29.22 84.87 40.80 95.31 43.26 51.29 76.46 18.99 45.07 97.57 71.16 86.68 54.66 72.08 72.17 86.99 71.65 60.65 45.34 57.89 38.10 26.91 60.28 86.44 12.59 5.63 87.60 78.90 36.20 79.83 96.55 93.42 58.88 39.43 27.83 46.01 93.00 99.71 12.73 -65.16 79.09 40.12 34.64 44.70 75.69 18.02 28.93 2.69 13.12 50.19 53.98 11.42 89.84 87.79 45.46 66.72 64.94 36.69 24.00 44.71 36.45 94.45 79.44 91.91 6.42 81.41 8.31 50.75 90.81 55.07 68.58 59.52 48.44 88.34 70.15 86.72 15.50 20.01 30.64 58.67 80.86 10.52 33.73 8.39 45.96 21.03 61.37 85.63 7.02 11.42 37.91 52.04 60.53 61.45 62.06 84.46 1.81 71.93 16.15 77.21 63.81 94.65 96.42 78.06 88.45 98.65 74.05 87.26 8.24 38.27 91.99 25.93 17.22 20.57 36.29 63.50 72.81 54.25 30.19 56.21 25.68 47.91 78.40 1.12 22.55 43.17 37.64 14.00 28.19 6.33 46.42 41.45 70.78 99.94 46.08 9.37 31.96 39.38 3.24 -51.37 52.74 43.54 49.50 35.53 18.50 38.72 42.78 48.70 85.32 58.83 53.89 58.69 75.06 70.55 37.08 65.40 80.44 16.82 68.33 15.83 2.64 90.26 56.06 40.57 40.58 42.69 3.39 23.48 21.13 28.24 59.00 22.96 74.07 93.45 83.11 44.86 25.39 92.56 56.88 89.88 41.17 85.54 96.72 51.20 18.06 8.37 88.14 71.06 56.54 94.25 95.86 71.37 38.34 76.21 93.82 54.91 64.46 54.26 18.84 49.11 74.39 2.63 15.40 82.78 85.86 99.07 5.67 47.06 63.82 33.92 48.26 25.20 53.41 28.98 32.19 56.34 92.16 80.53 38.53 72.95 6.35 58.56 80.37 62.74 59.81 60.51 7.52 28.18 81.41 32.35 97.30 93.45 81.73 88.99 37.77 3.21 63.42 46.35 65.91 -31.27 50.14 20.33 67.55 54.04 9.49 73.78 7.60 39.50 93.81 94.61 59.79 25.35 4.24 19.30 98.09 64.62 51.35 97.57 20.24 42.56 23.31 68.46 90.75 42.49 68.46 25.28 12.09 52.72 96.68 16.30 82.06 95.11 65.43 62.53 84.82 68.81 20.05 55.88 34.05 29.22 69.73 72.77 11.64 0.25 92.57 4.53 23.02 65.99 62.87 1.87 16.77 54.28 26.44 13.50 18.93 85.98 19.74 71.53 45.98 53.81 35.51 0.86 39.05 7.67 72.50 56.15 2.34 66.69 83.15 88.63 47.05 54.24 6.61 19.28 38.21 22.28 66.58 44.57 35.94 13.71 18.04 14.76 72.89 62.40 91.93 7.34 0.38 58.95 51.00 74.09 44.85 13.43 68.79 0.47 39.47 50.29 84.61 9.86 50.08 -77.16 94.47 31.53 97.37 9.29 78.76 28.15 93.80 34.36 11.80 63.82 83.40 38.97 56.97 64.05 28.44 94.82 16.88 97.65 93.17 91.58 86.96 53.45 90.09 48.71 39.91 60.49 9.54 60.71 41.91 42.38 47.99 11.86 10.67 53.46 77.62 80.77 28.09 84.05 84.00 19.80 24.48 35.39 69.18 30.43 78.41 49.24 56.26 17.35 91.33 98.07 54.24 97.86 12.07 89.71 33.42 56.86 71.12 90.16 44.14 72.09 62.92 21.97 35.39 26.20 12.32 5.62 32.07 40.28 0.02 3.93 70.96 73.06 3.69 57.44 8.59 96.90 57.77 26.52 87.89 29.02 69.46 13.52 38.67 33.56 87.75 31.57 98.33 21.62 19.03 36.53 3.63 88.30 37.54 6.68 82.16 84.09 68.99 18.14 39.91 -77.44 80.35 41.68 34.22 72.50 25.99 93.24 34.53 78.22 57.86 70.58 53.04 38.91 39.87 54.21 58.17 39.86 37.51 95.48 50.91 55.56 55.70 94.72 61.21 3.29 18.14 58.73 51.63 0.41 47.20 50.71 12.82 90.77 81.67 27.00 28.82 64.64 11.84 90.03 42.17 25.15 61.76 68.73 21.68 88.26 15.51 91.24 14.40 2.51 25.68 4.47 14.79 71.44 67.18 35.40 43.64 79.52 62.62 90.11 0.22 92.62 19.51 46.67 45.60 88.98 98.70 44.13 52.86 70.56 80.73 50.66 86.98 45.34 39.57 97.62 80.39 92.40 79.52 74.20 27.05 19.09 45.81 55.45 53.38 8.27 45.36 2.12 67.33 65.85 33.18 86.53 4.20 30.69 83.35 69.56 46.90 86.78 92.88 82.64 34.17 -50.75 77.11 48.92 68.43 92.23 23.91 20.64 2.95 8.34 73.31 9.58 72.86 89.54 98.58 95.98 88.88 94.76 73.84 22.51 72.92 12.72 28.35 63.18 11.44 78.62 1.75 58.36 74.12 29.75 46.29 27.14 21.51 67.63 55.43 27.32 24.99 31.77 46.62 2.74 24.49 13.58 51.28 33.32 33.45 75.03 19.48 85.73 76.75 20.23 60.54 26.10 3.17 37.87 48.34 3.73 87.77 17.36 81.84 51.94 46.89 69.63 65.14 46.36 9.10 51.34 68.20 61.08 79.23 41.36 3.10 12.80 63.82 28.44 19.83 55.88 29.27 71.66 72.86 87.38 59.96 77.87 67.31 25.42 71.13 13.52 15.65 11.93 30.99 49.26 63.10 97.31 4.73 22.70 71.25 13.89 0.54 77.46 70.50 65.41 58.62 -79.94 62.67 21.49 52.63 47.76 20.86 37.86 66.47 6.78 5.54 2.41 51.09 11.70 51.98 7.56 68.10 43.23 30.35 16.76 23.80 66.93 90.90 56.26 31.28 27.53 78.90 5.37 0.20 71.51 60.37 60.42 33.94 50.28 75.26 89.16 80.99 83.22 74.81 2.19 92.07 41.26 94.76 15.23 82.35 67.51 56.01 43.89 20.45 3.84 23.84 90.59 25.97 42.14 45.35 48.94 90.96 91.51 25.74 86.68 76.83 25.64 4.74 48.69 78.20 78.56 11.49 69.20 89.55 55.63 82.80 6.86 97.82 18.52 4.33 65.95 32.39 38.72 74.30 29.16 6.74 92.76 66.78 52.53 38.49 46.37 48.39 61.51 6.50 11.68 37.61 23.77 41.73 86.59 81.36 19.27 11.86 78.99 48.37 50.13 36.67 -71.43 36.59 39.93 71.31 12.45 98.50 53.73 38.64 64.84 11.49 77.85 99.77 73.67 59.99 81.87 24.14 52.89 73.09 27.14 28.14 26.46 40.97 81.08 75.78 42.06 15.14 64.60 75.39 84.59 28.42 8.79 20.20 11.76 62.22 68.57 12.99 48.44 39.27 51.36 73.33 91.74 90.72 41.71 88.44 41.38 7.32 35.91 81.01 21.83 99.24 30.10 25.73 2.59 41.26 69.30 0.95 39.09 12.30 44.77 98.72 54.74 99.70 48.82 45.14 68.11 95.28 96.92 32.92 71.33 30.41 34.17 93.06 18.31 77.18 4.63 70.00 91.17 74.79 87.79 7.02 46.30 20.69 58.50 9.97 96.07 17.30 67.08 73.62 94.44 13.46 36.12 66.62 14.69 80.31 13.75 25.63 44.65 31.98 2.98 11.15 -52.43 5.88 14.21 31.69 6.74 80.75 17.01 60.49 77.40 99.37 83.83 2.14 32.01 62.07 40.08 38.60 14.28 10.66 48.02 48.17 42.14 46.27 48.71 29.48 13.07 84.04 20.57 24.28 62.85 49.63 5.15 63.87 91.94 18.99 45.98 85.31 18.66 92.34 67.93 17.87 40.52 83.12 4.76 67.57 16.33 72.16 62.34 53.14 62.03 62.24 27.00 22.24 80.48 29.17 67.67 43.24 50.26 46.63 25.15 90.34 15.52 99.04 30.40 1.10 28.40 32.23 52.64 57.87 5.51 50.82 75.05 50.71 28.98 11.34 28.30 31.09 91.46 86.09 38.92 72.97 63.00 33.35 13.99 84.27 53.85 92.16 80.58 68.55 85.68 11.63 38.61 14.11 12.67 93.98 62.33 57.35 59.63 41.44 76.83 67.77 -79.07 3.97 9.89 93.45 86.05 47.35 92.39 95.91 51.45 16.04 44.16 12.59 51.35 35.75 60.55 22.40 93.13 24.36 48.30 21.53 56.60 48.20 9.86 89.04 23.94 75.19 60.72 21.18 61.92 75.14 23.82 24.65 30.18 19.59 98.09 58.80 5.62 29.12 28.98 81.83 10.31 30.46 10.54 49.67 58.17 74.47 47.70 11.71 98.21 35.09 75.88 52.34 67.44 5.08 33.78 55.68 59.18 28.82 23.45 89.95 60.71 95.05 23.99 53.20 64.39 39.34 49.86 25.17 65.01 47.51 40.76 86.96 99.43 1.58 43.32 4.15 20.60 22.95 98.17 23.62 75.62 59.74 55.63 54.48 5.91 69.06 4.30 72.88 6.05 29.67 79.44 72.86 24.70 73.89 58.83 57.13 4.33 64.39 77.30 41.54 -47.76 1.83 88.99 6.77 75.47 51.09 6.94 17.26 40.92 89.60 16.94 21.57 4.53 48.97 11.32 4.06 76.47 9.71 28.57 5.69 52.63 79.53 10.69 18.88 7.29 42.29 26.59 91.19 84.87 23.20 85.92 40.70 3.04 39.26 89.37 89.92 62.56 60.12 9.98 65.07 48.76 2.84 37.36 17.91 25.43 8.31 25.89 9.01 72.65 53.04 72.35 2.44 3.19 96.16 74.01 67.16 47.32 35.94 16.59 74.46 64.63 43.51 56.66 70.31 38.62 30.95 87.30 26.48 65.98 95.57 22.41 9.64 86.99 58.94 46.50 58.13 43.28 16.95 22.84 98.89 9.03 74.57 40.64 96.75 27.33 42.93 74.81 10.30 88.92 63.81 56.23 33.05 51.47 67.02 1.53 35.94 75.51 14.84 63.67 47.63 -53.72 34.06 54.33 6.00 36.41 62.51 99.24 19.75 2.42 37.17 30.22 92.49 25.76 84.77 78.04 54.67 7.11 44.64 88.20 97.08 77.56 33.66 75.73 96.27 34.34 32.17 79.94 43.00 19.55 32.02 72.55 36.06 62.06 80.10 24.86 35.62 46.91 50.77 86.80 52.17 41.39 43.25 34.17 90.86 51.78 42.16 0.48 9.94 56.48 69.58 73.55 1.45 65.86 63.46 4.53 82.20 48.70 56.40 96.51 84.39 96.14 99.45 53.57 80.36 35.71 28.28 74.72 55.15 59.53 86.17 40.51 67.65 48.16 57.96 76.77 14.65 82.75 44.82 89.61 46.44 73.70 15.84 87.61 62.24 68.90 68.85 72.26 64.05 38.63 66.56 41.34 22.65 83.97 10.00 34.27 49.75 50.14 56.71 94.83 44.35 -15.74 43.66 12.75 96.53 76.06 14.67 58.05 57.87 6.76 43.66 62.80 43.54 22.91 58.24 5.73 56.49 19.47 94.13 67.05 4.38 48.62 24.41 16.19 14.80 50.84 92.63 32.30 61.13 90.55 83.54 15.48 57.01 22.20 99.83 44.29 56.56 46.30 27.69 29.03 13.08 51.82 37.31 57.53 98.51 87.13 56.88 62.98 62.64 61.57 36.90 82.40 75.08 31.01 4.07 43.40 52.34 26.75 72.62 15.31 88.78 62.63 15.45 65.70 47.04 34.79 81.96 79.31 7.32 14.56 3.50 78.03 49.37 63.66 97.48 21.13 20.84 93.32 83.28 55.79 25.37 53.25 53.71 58.08 63.13 98.00 90.08 68.69 71.47 82.14 50.63 32.83 81.22 86.75 46.35 10.76 38.01 21.49 22.00 14.45 24.88 -8.68 42.12 16.68 70.95 65.72 55.90 45.76 79.51 56.80 23.00 47.95 46.76 87.29 62.39 31.52 56.51 84.72 54.31 33.87 82.49 59.53 59.00 12.69 4.65 76.41 63.59 75.49 12.03 36.65 71.92 24.63 38.70 95.82 87.31 47.91 14.89 76.54 4.87 6.69 97.83 0.84 52.22 36.21 81.68 98.24 41.60 60.45 29.26 21.28 41.36 7.16 29.03 10.51 76.89 63.82 79.68 32.56 11.59 18.65 53.50 32.89 30.10 37.78 57.91 49.00 38.23 87.88 67.11 65.19 95.93 40.06 81.87 63.52 32.06 82.33 82.61 18.70 37.38 43.99 14.79 93.52 22.09 50.97 66.95 60.91 8.65 39.07 53.99 72.96 82.83 37.29 74.44 74.18 96.67 3.15 9.15 81.81 26.35 64.37 36.27 -96.73 50.62 6.55 93.91 14.56 78.03 41.78 79.23 40.25 56.87 74.88 77.04 4.76 0.26 22.41 9.07 78.97 62.36 83.71 26.39 28.75 48.88 49.22 95.36 68.81 18.46 74.93 73.98 9.08 34.64 57.42 8.78 44.76 30.38 91.24 99.80 94.66 81.43 93.52 97.65 91.08 77.59 66.58 85.68 62.72 38.88 2.56 67.74 56.79 61.64 76.83 55.57 0.54 59.46 66.72 76.91 95.66 30.29 76.49 89.45 91.91 31.28 8.00 36.00 32.13 14.96 95.51 30.96 11.75 4.10 34.74 60.51 20.98 44.58 3.94 85.69 14.08 73.73 50.69 75.09 26.62 49.25 28.55 12.66 38.09 6.07 72.46 19.33 39.08 69.63 74.67 54.19 42.90 79.70 94.23 70.57 72.99 71.66 49.22 29.09 -11.83 37.67 72.54 47.12 95.29 22.13 46.10 58.17 29.81 12.73 76.00 16.32 28.06 25.38 74.56 67.21 88.40 16.64 6.73 92.36 55.43 17.00 97.87 76.61 64.90 18.36 0.39 48.70 67.34 8.43 42.01 59.76 31.38 6.63 93.46 23.17 93.22 83.43 45.27 45.59 23.66 45.47 31.83 4.22 9.14 61.82 34.69 12.43 31.47 44.76 72.21 66.38 50.00 44.53 18.06 69.34 94.87 13.34 26.45 1.97 99.00 85.26 61.81 30.19 19.74 68.44 94.00 55.60 41.81 46.14 33.58 63.53 20.23 32.61 84.68 47.45 35.72 63.08 57.92 79.07 66.70 5.90 84.40 95.54 56.71 44.71 25.21 72.61 56.41 21.29 89.70 67.65 19.00 71.63 83.34 60.32 96.19 30.82 93.38 28.09 -22.56 32.61 9.00 75.97 63.54 56.59 84.12 86.68 3.70 97.33 33.56 3.78 61.37 91.99 78.48 59.41 77.14 37.35 76.39 45.40 62.39 29.38 27.64 79.46 33.49 46.78 43.01 20.53 58.20 9.71 5.72 66.18 21.97 4.20 72.72 47.98 18.76 19.12 52.82 58.19 37.56 41.64 16.43 30.88 68.70 23.92 68.37 30.70 23.29 76.29 24.55 5.75 38.26 93.30 60.69 61.24 28.22 68.00 44.95 83.60 92.70 50.95 22.03 49.35 68.67 19.12 56.44 40.78 32.64 54.34 12.57 8.13 84.60 95.00 93.52 20.86 82.18 8.95 16.98 71.18 66.34 14.07 34.83 72.42 36.56 80.92 92.76 19.49 95.70 81.29 37.03 93.31 13.76 54.81 52.82 67.57 68.69 62.81 83.63 87.05 -92.99 76.30 0.32 11.22 35.45 54.32 59.75 71.55 84.63 39.04 85.18 29.16 70.23 76.72 68.88 44.19 54.50 64.15 35.18 67.18 57.53 33.60 56.82 65.91 91.86 14.39 88.00 2.78 42.43 30.88 52.67 6.17 50.13 85.29 44.33 29.36 71.76 24.46 41.03 85.77 73.96 84.26 57.93 60.20 15.82 59.21 20.39 75.48 86.00 62.17 26.64 51.99 65.79 40.32 68.80 5.83 67.50 81.08 6.36 3.55 97.04 31.55 33.37 31.94 79.04 20.95 35.68 45.05 18.71 17.06 5.98 99.12 72.20 48.72 1.03 54.65 80.07 27.15 27.48 8.73 60.17 15.80 3.75 55.55 44.41 8.98 38.30 75.52 1.26 45.31 38.31 72.79 9.56 24.96 16.13 67.03 76.06 50.03 12.97 13.39 -63.44 10.77 27.19 14.44 40.39 58.35 84.11 62.49 18.04 40.06 77.55 75.92 89.51 87.02 18.55 97.74 9.20 62.54 60.96 41.01 83.76 74.36 62.67 32.28 21.97 28.83 51.64 99.05 45.42 68.68 2.62 63.73 4.00 75.65 79.54 84.08 39.88 83.02 68.46 2.76 61.30 28.20 67.38 31.54 15.68 35.12 16.04 92.18 85.31 8.15 8.44 6.57 42.10 57.94 34.92 15.19 1.74 83.66 65.64 96.11 29.21 35.36 21.99 47.21 61.09 61.78 96.06 80.03 78.90 45.62 18.64 72.09 44.21 88.66 81.84 59.10 38.64 15.57 98.72 82.14 69.91 27.56 89.41 45.17 57.66 17.24 83.62 12.72 9.65 59.98 47.02 36.80 86.43 1.39 62.95 38.12 81.07 94.43 46.19 63.07 -21.18 23.60 6.80 21.21 33.61 26.81 22.50 0.67 18.27 64.72 49.59 61.95 45.40 83.47 86.37 53.12 92.03 83.24 80.66 10.63 95.12 98.71 42.31 46.96 50.87 48.14 64.92 38.60 81.93 28.16 93.21 95.64 20.95 65.22 92.10 54.41 15.50 95.38 20.89 85.38 23.86 66.08 50.55 82.16 0.44 30.64 63.21 43.50 44.46 14.65 75.50 48.98 82.98 52.24 12.62 19.11 48.39 45.09 79.81 30.42 88.83 23.21 54.39 37.68 23.62 95.35 55.78 1.89 79.48 16.44 76.97 53.19 3.27 67.40 32.65 42.73 96.17 63.53 84.08 48.02 29.31 32.69 15.52 21.37 83.17 50.34 86.94 42.12 82.22 92.20 77.13 45.10 88.86 7.37 99.63 80.30 29.51 88.51 28.75 49.61 -51.04 67.98 83.99 86.34 79.75 57.37 16.14 67.79 42.09 45.16 91.79 21.63 29.99 43.60 59.71 28.50 41.65 99.92 66.30 47.60 68.09 92.19 97.10 3.04 62.84 61.79 75.29 46.09 93.19 54.82 29.59 69.03 92.26 66.89 48.76 61.33 67.12 75.08 74.86 5.37 56.73 36.85 38.93 57.92 43.90 67.78 96.13 41.02 54.07 90.82 85.66 69.15 32.63 26.69 74.79 92.88 89.33 16.25 94.91 37.64 58.56 14.54 27.00 70.76 26.86 83.32 78.96 76.63 30.71 18.07 37.07 51.83 19.08 41.93 8.60 53.43 18.28 81.94 2.46 4.59 67.15 10.41 80.78 56.66 41.59 91.46 51.83 1.93 81.00 32.03 79.62 88.66 87.12 28.16 42.17 7.26 4.20 77.60 8.88 52.97 -55.69 88.99 85.40 61.42 33.12 82.58 99.17 6.56 69.22 49.85 87.33 93.25 19.39 6.60 99.82 6.42 80.18 76.01 72.29 85.05 33.16 48.12 22.38 39.67 31.30 33.72 92.22 18.95 48.96 91.61 15.11 75.90 95.11 15.82 28.00 64.16 55.45 5.67 67.58 26.34 28.73 7.88 37.06 70.82 37.50 81.44 18.49 78.29 18.79 26.37 78.53 61.57 31.56 12.06 68.89 98.61 1.77 32.75 47.25 3.77 78.27 62.80 43.06 30.89 84.27 31.12 4.81 98.92 32.46 77.93 59.23 97.13 41.89 59.22 77.63 97.17 36.21 82.47 42.32 91.92 89.66 90.81 69.29 41.39 89.71 20.46 3.13 33.29 56.31 57.17 69.90 10.57 72.49 36.09 37.14 95.63 96.46 56.40 88.79 33.42 -92.51 90.93 35.27 74.84 74.51 47.22 19.35 83.77 40.55 2.52 14.46 54.49 90.80 99.38 12.32 23.87 90.50 87.99 2.43 85.38 70.95 11.45 36.32 30.51 88.42 64.27 97.09 51.80 32.79 69.64 21.18 74.67 83.07 60.58 12.27 49.28 41.45 57.82 74.54 73.94 20.13 0.46 15.87 40.50 99.73 1.78 7.77 35.17 42.10 20.31 77.97 14.20 71.04 41.03 82.91 51.17 26.82 97.66 32.79 6.10 83.62 3.26 86.59 14.30 7.48 38.34 75.36 70.77 94.71 36.05 89.57 59.64 76.34 50.84 27.24 81.45 36.77 16.13 80.60 0.98 28.56 12.92 94.04 18.07 73.44 71.74 78.51 43.22 19.87 45.57 85.90 98.02 87.91 22.84 47.90 73.12 89.53 83.31 86.65 10.65 -15.67 36.53 13.24 58.46 99.72 69.88 5.92 75.63 10.84 82.14 79.70 99.34 34.63 64.12 29.39 25.77 81.95 50.01 30.74 20.28 89.49 25.15 26.40 39.13 61.90 56.63 82.46 54.00 83.41 36.26 39.79 35.44 14.49 11.82 17.22 21.79 59.87 88.72 93.61 88.24 75.87 59.64 64.16 92.99 90.69 40.92 63.75 13.81 33.42 69.89 5.30 57.56 46.09 70.36 37.30 70.41 60.07 86.69 17.32 24.94 74.76 49.87 72.71 37.63 31.30 30.87 66.73 58.42 25.37 51.84 15.15 58.37 50.15 46.97 21.24 73.96 82.24 23.76 33.52 80.30 63.38 59.35 20.70 21.57 34.78 62.51 79.88 79.61 66.80 3.55 85.55 54.28 73.34 39.31 60.81 37.19 28.52 62.63 48.65 87.29 -74.62 89.30 5.93 30.06 22.59 39.56 89.28 17.29 73.24 61.09 85.00 44.78 94.43 32.57 68.06 0.51 41.99 82.42 46.16 33.03 16.92 56.29 86.37 83.69 6.85 41.31 69.66 89.74 60.65 53.13 0.98 31.54 33.08 23.08 56.33 36.71 9.72 71.88 97.23 75.01 50.95 75.04 30.23 25.26 63.55 18.48 66.99 10.78 83.42 3.04 19.22 99.80 56.06 91.52 27.36 72.62 45.91 28.14 33.72 32.27 89.42 24.94 81.11 39.17 26.47 3.34 17.63 66.67 33.99 87.82 47.19 81.62 68.20 80.36 16.22 76.43 94.75 92.11 6.00 19.17 33.43 50.09 54.78 53.81 98.43 52.68 66.67 74.44 98.33 70.90 51.74 0.61 63.60 15.07 33.93 74.45 93.68 81.90 60.17 86.12 -30.72 26.88 38.88 21.76 48.64 95.26 44.17 91.93 31.05 40.63 75.45 5.07 69.92 21.23 62.46 39.61 9.42 70.46 9.72 91.34 7.51 25.90 64.81 40.26 20.34 78.45 47.20 5.50 16.38 25.13 17.95 55.21 91.42 6.09 57.51 94.65 75.60 71.62 34.16 88.28 94.16 53.74 86.00 11.33 47.51 68.88 48.89 22.43 69.67 5.41 24.27 62.18 99.68 81.81 22.08 28.91 58.84 34.45 73.05 39.82 17.76 1.66 32.97 41.83 22.95 43.02 63.11 32.13 49.28 76.01 16.69 86.12 49.93 11.14 4.28 90.45 4.08 63.84 17.22 34.24 69.85 68.68 54.97 17.81 19.74 54.98 62.74 19.79 93.55 99.39 15.65 99.12 78.50 98.14 62.34 25.76 1.78 62.80 10.75 33.03 -10.79 49.22 17.21 34.96 11.41 61.53 31.09 46.01 35.08 39.06 84.29 6.54 21.87 28.34 78.74 37.34 7.97 96.01 21.54 30.32 7.90 46.99 45.55 75.71 35.05 25.39 64.71 35.65 41.02 86.40 23.12 65.32 31.77 45.96 31.69 10.59 56.04 40.76 88.74 66.78 47.96 80.58 66.28 84.22 10.37 73.02 67.28 34.47 95.54 95.28 32.15 53.71 8.45 88.21 54.38 13.97 66.15 51.74 4.89 31.72 46.90 63.45 59.04 84.01 88.87 6.69 14.12 19.17 65.14 7.91 90.12 7.64 46.67 20.53 90.61 30.07 29.87 48.92 31.54 79.52 72.16 17.49 21.97 17.52 53.81 78.49 81.10 47.49 69.70 14.05 12.24 98.63 23.29 75.97 62.57 24.42 24.14 20.74 51.89 94.57 -58.16 83.25 14.09 42.08 91.17 98.38 10.35 57.52 13.98 41.75 29.62 61.95 29.17 49.57 86.57 68.20 44.59 28.59 40.40 39.88 5.19 31.30 91.01 67.81 34.97 96.82 12.95 53.38 21.00 52.66 44.33 5.98 47.54 45.31 43.51 71.38 35.79 27.91 71.50 35.87 38.07 40.97 39.75 32.28 86.84 22.59 78.78 59.59 98.93 24.77 61.00 18.77 71.82 55.63 16.68 22.55 62.80 57.34 43.38 14.73 94.94 9.28 59.85 23.82 22.91 30.82 85.89 44.09 65.50 5.52 92.88 2.26 51.90 67.19 72.86 68.19 19.06 55.84 59.92 44.13 25.93 16.45 97.38 20.84 36.10 81.68 64.07 59.20 34.12 62.52 2.44 76.34 14.44 8.96 49.10 5.86 94.19 84.19 96.18 52.65 -64.83 8.23 90.33 24.53 70.05 35.36 79.35 33.55 58.87 40.82 90.00 14.36 61.16 97.45 46.50 70.99 82.46 85.52 46.59 49.08 2.41 91.52 27.60 18.47 18.32 61.93 39.89 49.45 63.09 84.10 31.26 31.47 6.52 78.77 6.27 18.01 60.53 25.60 37.85 78.46 37.71 24.35 29.87 12.08 21.34 44.65 64.99 34.14 64.08 78.59 45.90 80.21 89.61 17.78 21.95 46.32 96.22 6.37 31.37 4.88 59.45 50.37 12.18 98.94 21.51 60.51 82.64 76.56 11.30 7.25 62.73 22.02 32.59 60.98 98.64 90.10 84.06 44.65 89.58 28.47 33.42 25.16 14.55 77.36 17.97 59.87 9.52 90.58 15.27 88.49 33.64 37.65 15.72 12.26 69.14 30.90 86.91 19.96 88.65 29.00 -64.30 95.25 92.85 4.53 31.03 19.94 71.08 33.00 72.73 13.63 13.71 10.70 93.39 22.49 13.03 15.63 99.40 75.18 87.36 5.64 27.63 80.63 4.15 55.08 36.98 76.44 66.28 0.37 7.03 6.25 82.72 18.78 98.07 48.41 82.60 54.68 61.83 26.28 22.10 12.32 54.95 63.93 4.55 73.80 22.21 77.79 6.36 40.32 21.80 99.69 67.33 62.26 42.88 11.54 61.35 2.37 70.44 21.05 62.47 84.29 93.96 15.38 93.82 71.66 83.08 19.29 36.88 93.97 0.04 87.89 64.21 78.06 99.09 62.58 60.17 54.78 40.75 5.09 76.45 27.67 12.69 3.78 38.26 16.56 76.69 51.72 66.10 89.75 61.21 18.62 22.44 10.65 23.74 96.64 94.30 39.42 26.98 68.82 24.13 34.26 -81.04 26.25 10.41 29.70 6.85 20.42 20.71 66.34 57.35 17.89 14.67 39.42 11.72 42.13 21.26 18.41 31.21 5.38 50.56 59.98 98.36 55.62 58.07 68.01 70.69 25.59 74.21 5.26 94.93 87.90 37.14 32.39 52.63 46.77 47.43 3.51 69.40 8.01 36.94 56.20 87.52 48.16 41.56 70.19 17.65 76.33 45.73 39.62 54.54 84.44 81.20 56.83 40.42 34.22 66.45 19.93 2.49 24.36 95.01 39.38 54.68 47.47 34.04 15.67 0.74 30.27 48.62 80.87 96.76 3.13 10.70 43.82 92.46 24.58 41.51 75.25 10.22 46.62 83.79 38.13 34.54 91.05 30.13 19.11 18.75 33.76 96.94 40.10 64.39 80.02 44.39 38.25 9.42 71.68 91.92 47.88 2.13 82.39 49.16 46.52 -1.51 3.98 32.79 86.49 33.50 28.11 13.79 19.42 56.46 10.47 76.88 85.44 26.97 58.32 19.30 62.57 51.37 37.55 85.71 50.47 99.72 23.50 79.09 46.15 96.47 31.01 83.91 8.06 90.26 54.70 21.58 88.55 27.23 91.86 28.78 62.54 65.46 88.66 17.37 14.86 16.46 35.06 72.35 30.86 32.03 17.33 14.46 83.22 30.96 69.89 16.15 25.69 56.18 90.85 74.29 55.54 82.18 5.79 35.42 1.53 5.76 45.11 49.76 4.67 1.23 19.75 80.43 34.35 90.97 12.86 23.03 32.89 86.84 41.72 39.68 64.28 24.68 94.97 65.77 77.39 89.09 23.09 62.14 85.92 50.22 27.93 19.42 40.42 51.30 58.38 36.29 92.04 91.33 46.55 61.66 61.57 11.74 64.30 74.50 86.82 -81.05 35.04 50.60 59.83 83.95 19.57 74.93 50.59 71.93 81.84 99.11 58.18 35.13 9.28 58.39 2.75 37.34 60.14 12.22 20.88 28.92 82.04 84.29 99.58 75.86 54.72 53.33 31.86 6.78 50.48 32.33 16.79 18.07 42.96 28.99 85.10 81.58 63.87 80.46 1.75 68.79 67.93 34.56 19.96 55.91 47.24 38.80 38.18 47.53 98.35 76.48 82.00 3.24 72.38 78.39 2.11 73.00 26.43 84.99 75.43 92.81 86.60 90.74 36.43 44.22 34.31 80.63 81.10 98.23 44.59 55.70 40.92 76.94 37.64 11.46 64.07 72.63 21.01 59.35 72.65 5.47 16.55 30.74 99.55 1.50 95.21 80.86 51.74 28.43 62.03 97.32 59.79 44.34 42.16 17.26 30.27 24.16 67.08 83.06 59.80 -90.53 52.49 36.46 42.52 1.92 33.32 87.96 87.97 43.34 5.62 77.91 38.17 65.51 68.08 45.26 93.95 46.25 1.31 28.39 25.03 24.57 69.54 46.57 59.27 63.69 26.60 35.40 2.95 65.35 11.11 3.78 25.87 21.85 89.47 60.22 21.05 2.21 80.93 11.84 50.76 94.54 78.28 77.24 82.89 15.65 87.20 37.48 10.76 98.09 5.96 70.43 55.70 60.26 35.17 71.91 2.13 25.35 20.13 88.59 85.86 45.11 41.77 83.43 21.75 90.66 15.64 63.98 20.73 87.00 98.76 23.24 79.96 93.89 0.25 36.00 49.26 48.82 16.31 65.16 10.08 71.40 15.77 77.64 40.23 89.11 16.58 82.22 74.57 97.03 64.25 21.28 39.31 10.87 42.81 73.33 25.19 59.53 24.57 44.84 90.36 -72.67 25.81 82.47 2.00 2.17 32.49 4.87 0.92 5.64 95.35 85.14 0.84 24.02 54.40 85.26 98.38 50.83 74.39 77.06 93.01 2.50 51.74 52.51 24.94 74.17 68.33 6.89 87.42 41.31 39.33 10.74 4.34 52.79 20.94 48.70 18.97 32.84 83.87 35.81 83.04 4.26 11.37 73.12 50.10 93.78 25.67 47.75 83.86 66.26 46.31 59.95 1.63 19.35 63.11 60.09 53.77 21.88 44.34 19.27 65.65 57.44 20.69 59.75 19.10 68.74 45.27 42.00 61.66 34.56 34.36 52.48 24.03 53.07 36.03 63.71 94.90 60.54 59.06 52.77 8.76 85.26 1.94 39.84 34.28 38.15 22.70 90.55 95.68 23.87 3.47 52.34 92.58 44.32 59.47 45.78 65.25 48.00 24.24 66.53 41.03 -52.26 52.19 62.90 30.26 97.01 86.48 70.62 86.85 73.43 80.55 98.40 62.87 82.18 23.41 83.99 18.68 12.38 54.73 51.45 59.85 78.04 9.05 11.41 0.44 8.39 14.88 78.04 24.71 70.62 72.47 25.44 37.53 18.62 36.01 56.83 13.07 83.67 80.51 23.82 86.86 41.21 3.23 62.39 22.85 88.32 90.69 44.87 76.50 12.20 26.72 29.31 45.09 13.96 16.40 40.94 97.82 52.74 58.97 75.42 26.82 37.67 20.62 76.00 92.12 42.61 17.39 87.90 88.94 44.87 74.57 2.06 27.27 32.27 16.37 63.81 41.62 38.90 10.45 18.36 1.77 62.71 11.85 62.53 59.03 18.33 92.01 69.84 29.71 54.90 79.40 41.17 85.88 9.18 53.18 67.10 5.62 60.22 62.81 30.45 91.21 -25.26 76.89 0.20 75.07 94.07 86.02 40.87 28.84 51.34 31.97 53.61 37.34 81.64 64.92 35.96 45.57 49.99 37.48 28.03 82.54 87.12 70.69 55.24 63.81 90.74 85.38 26.61 73.44 64.07 44.89 56.06 3.79 41.90 4.35 92.23 29.83 57.64 60.32 59.49 90.49 64.25 27.78 25.69 83.27 48.44 46.78 68.52 69.58 63.80 86.69 23.56 56.23 83.99 72.36 83.04 4.14 38.80 31.13 57.09 52.82 36.69 35.11 59.72 12.11 76.22 49.84 85.04 0.07 57.23 0.12 24.67 51.46 49.56 3.04 64.07 48.45 35.46 64.45 94.91 30.50 67.38 73.49 29.47 24.24 11.63 70.49 43.05 49.64 15.14 8.59 44.34 64.84 47.93 14.19 86.64 80.14 70.13 68.74 46.86 76.30 -91.03 64.92 14.94 28.51 18.09 98.55 76.66 21.05 85.41 96.07 44.04 51.25 33.47 13.46 15.45 90.33 51.47 16.60 77.41 33.96 15.06 75.26 56.87 13.97 95.26 5.58 58.92 70.37 82.37 57.90 12.03 58.55 3.33 48.71 69.16 45.97 39.18 83.85 39.59 58.89 65.49 42.86 98.42 83.75 0.52 69.75 13.56 31.57 81.41 93.05 85.07 16.59 46.48 56.83 75.09 3.50 16.16 39.60 45.09 75.15 60.29 83.86 86.06 6.37 81.25 81.49 35.45 87.03 51.18 12.64 4.23 31.92 65.80 43.30 28.19 65.04 53.52 13.35 53.79 98.15 45.08 75.10 55.19 63.82 28.74 98.92 85.98 5.41 15.22 10.83 56.79 22.91 76.08 39.35 71.47 6.67 67.02 63.12 25.26 32.49 -72.20 16.25 25.18 88.49 32.71 30.61 19.21 35.34 82.19 81.70 10.30 37.83 4.64 39.07 32.05 69.58 2.98 42.78 56.46 71.69 71.10 76.19 83.77 95.88 34.70 38.20 74.65 43.06 31.55 34.39 53.05 97.31 22.64 56.12 33.74 74.21 64.05 58.41 4.10 0.23 47.11 16.86 82.94 55.94 9.62 17.77 87.59 17.40 98.01 26.83 55.09 94.63 0.45 38.75 5.50 24.86 77.76 35.28 25.25 97.09 9.72 94.21 62.14 5.64 55.79 89.60 34.49 73.90 50.02 5.49 74.77 87.21 37.46 14.33 42.92 2.93 80.15 99.70 95.72 11.93 28.55 51.07 65.89 8.06 22.10 0.61 39.34 35.74 94.12 95.59 35.18 76.31 69.47 75.93 53.11 58.30 43.66 91.91 99.69 59.89 -50.23 60.15 8.90 59.87 86.12 70.83 73.80 57.93 24.30 87.55 82.81 54.36 39.24 40.64 31.59 7.34 69.49 16.37 6.87 38.79 88.35 8.84 1.36 55.14 71.84 26.25 15.15 12.93 14.29 93.19 68.24 34.22 26.79 29.65 21.04 5.22 43.87 25.13 46.69 47.68 34.88 7.72 52.26 7.96 67.88 75.68 53.64 74.62 59.61 62.93 12.45 73.43 71.18 77.29 20.51 68.75 12.09 71.13 20.40 57.61 84.56 95.86 31.56 14.69 56.98 17.63 39.90 85.96 78.90 62.10 84.15 89.17 57.69 4.19 3.18 0.79 93.29 86.07 57.67 99.63 18.58 2.31 36.41 57.31 57.01 33.50 1.90 79.65 36.88 29.05 34.96 36.99 27.54 68.56 51.21 8.89 43.94 19.88 49.51 23.44 -21.52 22.85 66.14 3.65 38.18 69.11 33.85 1.99 19.59 7.47 24.72 87.65 56.59 19.57 30.63 73.65 10.41 1.89 4.65 17.86 1.57 35.01 99.44 49.05 99.62 89.28 73.76 8.26 30.65 69.37 73.46 22.76 19.32 94.19 87.72 58.29 35.44 59.05 26.82 43.12 25.18 55.76 36.98 10.53 87.63 63.01 1.17 66.07 66.23 46.77 53.38 75.18 48.36 15.30 52.31 46.00 44.60 35.43 43.31 97.70 99.22 2.26 20.28 91.12 0.69 26.21 22.08 72.03 22.29 80.65 57.81 72.58 93.23 83.73 80.34 37.72 78.08 64.24 56.53 28.77 56.66 41.13 26.66 63.43 25.16 55.99 90.26 71.81 89.31 45.89 35.51 18.11 1.11 81.58 82.72 34.14 31.16 13.10 12.29 58.39 -65.27 79.60 15.37 39.03 30.11 1.75 67.54 71.71 41.83 70.00 30.78 29.65 94.27 28.34 4.40 36.89 48.98 84.82 80.56 29.38 56.83 96.91 64.58 82.25 95.60 53.58 47.70 0.98 16.44 58.09 15.69 22.24 30.58 44.60 41.18 4.87 37.63 82.21 18.64 58.67 61.78 9.70 39.92 1.39 96.27 3.33 59.98 76.29 96.16 66.90 83.94 6.44 34.89 41.40 77.79 79.23 14.43 67.11 39.75 17.25 32.80 61.57 28.10 13.55 55.23 57.91 61.72 52.02 42.10 19.56 3.76 95.69 29.60 16.87 75.75 5.00 91.43 10.12 84.74 22.18 53.54 21.96 38.62 9.53 39.07 37.53 33.41 20.84 80.33 78.39 79.05 90.23 92.81 80.70 28.28 73.22 67.83 26.01 50.76 54.04 -45.77 71.60 15.39 50.52 70.48 60.77 23.29 1.51 57.21 98.94 89.39 53.13 84.75 78.08 11.78 30.33 35.84 76.95 74.35 53.95 30.31 10.17 7.49 74.32 60.19 69.49 75.43 11.56 91.14 43.98 44.64 16.76 58.52 62.33 94.31 61.12 48.52 66.66 45.09 12.75 88.02 67.34 90.62 56.34 31.18 86.01 3.66 45.97 39.72 81.37 84.65 24.94 6.93 18.70 78.22 62.08 26.26 53.63 45.60 76.84 84.76 53.36 83.31 75.58 92.51 77.50 49.63 84.66 54.79 67.57 69.95 37.35 60.77 5.61 20.89 58.08 42.17 54.79 45.79 74.93 75.98 62.99 66.25 99.56 39.51 32.95 44.58 45.26 54.98 72.89 78.63 62.45 73.31 83.32 29.41 92.71 75.45 43.88 49.05 34.48 -79.10 77.70 71.44 65.36 28.21 65.37 37.70 34.64 72.01 22.03 17.57 61.34 9.75 24.03 90.66 26.38 22.34 91.28 50.64 21.05 28.69 21.86 2.02 96.25 82.90 71.52 97.43 20.42 93.60 91.76 88.94 11.11 21.80 80.65 89.63 11.60 23.48 37.29 13.82 51.44 53.89 42.25 76.88 21.07 56.67 32.29 46.77 5.47 89.08 23.00 51.67 73.16 35.56 33.71 5.40 11.27 27.44 42.62 85.93 70.13 6.81 44.63 11.82 77.26 72.39 67.00 66.90 86.23 38.51 73.30 75.93 88.36 11.80 57.70 87.46 49.08 0.92 66.39 24.85 1.06 83.69 80.42 61.71 12.09 14.97 23.57 89.14 71.51 9.85 22.31 13.46 0.07 51.46 12.29 64.65 39.23 90.85 41.92 75.59 53.47 -59.75 54.64 24.35 1.75 99.81 73.90 52.35 82.31 36.15 54.86 66.21 10.36 48.84 77.94 51.33 12.23 81.26 38.01 88.81 76.60 53.91 35.56 23.83 8.26 69.73 82.89 85.50 83.46 6.14 23.84 68.26 52.39 23.83 8.79 76.28 94.03 27.81 10.85 12.76 20.96 60.52 62.54 9.41 77.75 47.09 15.05 25.67 4.82 29.18 69.04 44.63 90.25 88.68 73.26 19.76 51.22 49.62 30.17 20.26 57.45 2.95 19.04 31.75 49.14 91.20 29.59 34.66 9.16 54.68 92.13 52.42 15.32 70.29 30.05 64.72 35.39 74.29 11.70 76.73 52.72 52.50 98.09 39.56 40.03 77.02 0.43 19.03 76.38 47.08 56.56 84.04 87.10 52.61 61.02 34.29 10.41 10.65 96.25 25.66 18.11 -79.32 39.77 82.02 60.67 4.50 57.78 15.54 44.87 90.39 48.69 39.96 54.50 63.45 45.67 44.46 84.20 63.94 81.17 82.34 70.62 67.73 55.76 55.30 57.04 1.84 81.45 22.27 13.98 85.12 55.19 17.82 43.17 85.48 42.67 44.01 77.09 65.30 77.84 26.99 28.77 60.24 89.18 31.07 50.43 41.91 76.96 86.80 76.45 93.37 43.12 78.18 19.94 90.35 58.96 83.51 69.31 67.54 61.47 96.53 10.79 55.56 84.76 85.50 5.13 69.34 31.80 72.07 4.50 24.96 23.92 15.27 1.70 62.42 42.41 93.22 53.18 57.60 21.56 77.88 28.48 62.94 68.72 96.56 85.01 54.89 15.38 75.68 14.02 73.94 9.26 26.52 3.31 81.37 96.32 89.90 77.44 30.15 71.80 5.96 1.40 -93.27 50.71 18.74 39.96 80.75 8.82 57.90 77.81 9.63 22.17 73.32 55.32 75.98 16.08 71.57 45.61 86.93 52.10 69.85 38.19 62.63 49.83 23.15 41.56 89.70 55.40 14.05 32.81 21.46 48.14 18.70 52.90 5.91 96.13 70.38 7.99 44.42 12.89 79.49 15.88 98.66 30.17 1.09 30.74 78.06 32.59 61.23 5.61 82.18 16.82 14.61 33.55 99.85 88.58 62.69 7.46 84.80 24.51 6.25 85.42 7.42 19.29 32.05 95.76 35.31 48.22 84.05 49.69 86.94 61.47 17.75 88.92 71.86 8.53 40.06 91.12 22.01 81.18 99.53 93.12 24.04 64.47 76.14 41.05 90.53 3.69 19.20 95.95 60.36 12.99 11.86 19.91 68.76 81.54 97.45 74.28 61.46 97.40 83.26 32.37 -70.42 82.64 97.40 85.62 67.88 3.88 19.94 56.79 20.96 77.78 46.01 89.79 92.48 61.19 64.16 23.31 87.28 80.11 60.64 31.08 5.34 63.44 56.38 19.94 46.80 16.71 79.64 15.78 47.66 64.36 82.50 66.01 98.30 11.21 21.71 49.19 97.23 57.14 58.14 90.18 4.09 99.72 13.72 37.81 21.01 65.83 83.61 34.99 54.53 97.33 0.35 78.69 73.08 1.28 36.45 91.75 56.35 24.00 38.56 31.57 91.93 51.21 41.47 32.91 47.70 4.44 70.78 77.47 71.56 94.52 85.86 82.19 19.87 47.89 63.80 44.04 45.87 82.74 63.09 72.71 34.74 46.03 82.76 25.10 34.46 23.36 67.42 38.93 62.45 80.96 37.09 20.10 29.84 69.47 65.01 36.78 58.97 51.46 70.83 7.08 -37.78 84.31 65.35 59.36 27.55 55.96 28.96 88.73 53.08 63.63 49.62 98.20 81.51 99.23 94.51 53.81 83.23 41.84 36.74 36.08 61.04 51.03 43.43 29.93 74.68 54.23 12.42 61.32 70.68 67.58 72.49 96.30 46.25 0.75 91.47 73.49 65.24 73.72 22.14 54.20 34.27 82.97 39.71 63.99 83.87 66.47 71.52 83.54 80.36 42.53 87.73 64.48 21.29 64.81 94.43 41.70 36.03 8.76 93.30 28.64 89.42 78.06 4.19 8.17 26.86 77.67 42.06 31.00 15.31 2.07 56.12 24.44 31.00 45.80 42.64 62.86 34.56 49.06 17.27 91.34 71.06 7.05 46.83 45.22 63.29 15.86 35.71 16.30 50.70 12.31 36.46 40.27 52.29 59.64 18.16 96.55 74.79 56.40 74.46 97.83 -71.72 18.57 53.80 31.18 3.14 89.27 83.52 37.76 1.67 71.18 13.86 94.98 24.65 27.95 62.04 45.23 3.02 49.93 5.21 3.27 58.73 87.53 89.20 92.31 67.52 58.15 14.46 84.75 46.27 72.08 50.14 12.65 63.30 40.52 73.38 52.90 41.09 54.59 38.13 64.25 0.02 79.94 29.05 26.28 67.69 16.84 44.17 24.53 99.81 1.57 32.42 62.54 65.30 83.16 58.30 64.20 10.40 11.26 1.67 45.38 25.02 71.45 37.08 43.27 27.96 22.72 15.96 85.05 10.76 55.76 14.85 33.04 40.34 48.97 94.02 71.97 29.54 6.95 27.74 14.75 9.13 29.45 62.70 19.21 64.00 28.81 55.83 14.99 13.94 31.18 56.47 10.46 77.05 31.48 29.34 96.20 23.69 16.66 81.83 75.44 -73.85 73.81 32.70 93.15 55.49 98.92 34.02 10.59 5.30 99.83 64.26 19.73 12.87 49.63 28.95 57.82 24.92 7.41 36.85 31.94 91.98 49.45 62.26 86.88 12.87 60.98 48.33 35.92 20.04 0.40 93.17 35.20 98.83 31.05 26.03 99.18 58.55 58.00 46.93 91.68 23.52 42.31 81.71 0.54 30.30 89.22 17.51 70.33 16.00 29.85 33.76 91.46 34.84 65.45 67.03 44.64 1.55 79.20 21.68 42.77 85.82 55.79 0.85 53.22 38.94 53.78 75.88 30.89 88.36 72.59 25.68 75.86 76.71 57.48 83.50 20.70 70.02 77.44 25.48 27.47 80.45 78.38 96.27 89.94 95.39 78.70 78.23 95.39 28.32 91.16 48.37 65.30 16.65 52.34 58.45 83.20 24.31 71.68 92.85 72.51 -75.65 20.45 47.85 35.09 23.95 68.08 56.48 61.75 32.78 33.16 28.94 39.94 53.56 65.08 4.39 17.70 44.72 2.93 99.62 50.87 95.33 71.68 78.87 44.10 66.66 76.68 0.64 31.17 56.01 72.44 20.84 96.97 63.81 12.36 88.05 46.81 90.21 95.63 47.70 17.50 49.46 45.52 86.73 15.24 72.46 68.73 49.44 27.18 31.16 85.63 32.51 72.45 77.24 45.53 72.91 84.42 98.14 58.42 52.85 67.06 87.22 69.89 74.99 34.55 60.72 14.49 95.94 53.47 92.84 13.34 15.11 47.73 67.99 89.97 88.15 89.51 46.91 51.17 17.27 30.29 24.75 98.02 33.29 63.93 12.62 71.96 7.96 68.66 8.91 93.25 16.55 49.51 17.32 71.78 35.98 77.48 14.80 55.82 56.28 30.27 -80.18 10.32 1.29 79.18 15.32 43.22 87.10 61.33 17.62 33.40 47.62 53.41 91.67 15.83 57.16 57.28 7.16 75.92 96.76 31.39 86.12 63.98 52.85 62.99 65.46 11.61 8.95 50.67 49.74 23.88 58.06 72.63 45.39 80.61 66.68 98.19 76.49 9.26 60.07 63.99 5.14 42.84 63.67 80.75 8.86 43.57 41.23 18.80 86.99 66.79 40.77 18.00 11.01 11.30 51.34 87.52 92.34 47.10 6.20 94.01 28.58 55.98 30.31 52.57 10.22 54.84 89.57 56.75 66.40 57.59 6.73 22.34 64.83 20.99 10.43 96.67 6.60 6.86 28.28 35.12 40.55 77.56 40.58 61.93 72.18 22.42 10.17 21.50 65.93 58.45 90.79 7.84 92.25 20.54 64.29 66.63 80.60 23.78 99.45 61.73 -22.30 0.48 68.86 86.20 69.62 80.49 61.76 85.62 20.68 54.97 61.23 40.51 62.89 77.28 23.73 14.13 30.30 31.12 52.38 65.48 75.89 65.42 70.02 90.92 13.78 44.87 33.23 82.45 33.28 96.42 75.01 88.19 57.80 99.21 97.81 75.13 72.15 84.59 97.44 80.03 4.31 2.55 79.63 97.68 14.68 19.38 49.93 21.12 99.58 56.48 62.72 56.45 82.41 12.00 49.45 24.84 40.56 44.40 24.05 22.16 30.96 88.34 89.52 58.11 68.22 82.02 52.01 96.36 76.55 61.13 12.90 51.37 65.46 60.94 86.18 43.25 47.07 26.90 45.05 16.43 57.68 90.25 53.38 6.83 7.67 9.78 54.16 24.39 4.59 76.07 18.05 42.79 91.40 26.94 81.21 63.15 0.68 88.36 59.57 22.11 -22.61 99.02 42.06 82.92 60.01 65.44 1.71 62.75 3.93 96.16 81.78 62.06 61.12 91.26 28.99 38.10 15.42 90.06 44.69 94.54 44.82 98.98 71.02 34.03 26.35 56.65 22.01 33.49 62.27 76.96 11.63 58.05 63.87 47.41 93.30 45.66 6.07 99.61 78.65 89.68 89.17 16.66 92.26 47.58 2.81 93.92 15.03 99.32 66.26 11.32 57.87 47.29 58.79 47.23 73.86 63.51 22.03 50.87 45.52 65.20 96.04 72.86 10.62 93.22 92.40 79.04 2.99 86.14 32.47 6.52 10.10 54.77 72.20 22.31 10.05 7.85 79.41 73.92 99.97 70.92 46.58 26.76 13.18 11.75 83.21 89.67 55.32 40.78 75.88 75.03 72.72 71.83 64.48 17.04 3.52 13.04 2.03 76.19 10.86 44.28 -46.21 72.32 70.96 68.33 21.04 5.11 83.42 90.34 24.18 9.41 94.93 49.72 42.14 12.13 46.63 28.59 94.93 68.34 84.61 25.65 33.72 21.79 75.05 61.00 97.37 27.94 68.03 2.89 31.10 25.25 78.99 96.82 11.91 21.03 51.03 12.21 44.53 91.33 1.09 20.88 96.17 17.72 50.68 58.01 6.18 84.60 40.52 23.79 69.03 31.89 81.78 91.91 39.26 47.42 4.14 49.66 56.96 47.27 15.90 91.97 69.78 81.37 11.57 72.01 99.97 72.41 91.98 67.02 97.92 3.44 96.45 85.43 78.92 79.23 50.85 84.66 54.22 82.95 79.12 67.68 16.88 13.05 99.97 98.00 0.37 87.53 87.47 40.52 82.42 57.15 7.54 47.67 37.79 14.68 49.14 3.40 43.91 64.73 57.55 86.23 -76.78 28.81 2.53 12.60 74.67 71.21 45.12 94.28 46.90 56.16 51.63 9.48 74.95 63.57 23.57 55.17 48.74 46.41 85.98 9.07 2.89 45.45 61.31 81.30 72.88 7.37 95.05 7.32 91.21 88.71 8.31 60.05 48.94 30.94 58.64 97.93 80.13 24.13 22.93 45.11 58.25 10.39 37.85 28.26 92.70 84.42 52.84 96.16 78.23 30.11 89.45 97.24 6.65 8.05 83.82 6.00 55.66 55.15 55.36 52.85 21.61 30.63 22.09 10.34 8.77 67.91 48.50 4.93 89.80 15.27 59.94 56.56 61.42 43.41 61.70 46.34 91.52 84.49 68.52 45.40 40.93 33.88 14.04 98.30 92.87 67.14 36.52 99.45 78.14 32.87 7.11 82.34 78.54 44.50 52.43 50.55 36.90 99.39 73.20 17.83 -85.64 39.80 60.71 43.46 38.30 13.06 30.89 21.85 83.54 93.70 73.10 68.81 93.18 99.18 55.75 13.81 73.49 31.58 98.81 98.58 6.43 60.83 76.74 40.78 86.20 70.95 70.79 76.66 79.34 49.41 48.75 86.97 30.36 69.83 32.60 92.88 32.36 58.12 66.30 82.34 12.68 71.24 27.19 37.31 36.63 83.32 10.17 73.56 38.45 56.91 82.12 29.75 36.52 65.29 50.53 32.56 16.93 43.98 83.95 88.71 19.10 38.65 71.52 11.79 73.24 87.10 16.16 35.31 47.85 2.24 12.01 76.22 64.52 97.33 65.29 10.60 44.87 95.07 80.19 45.58 23.05 76.17 14.48 91.88 48.32 53.06 44.69 39.91 86.06 38.12 53.79 65.72 78.76 76.15 55.81 44.49 57.08 69.21 56.59 4.68 -85.25 57.06 36.31 4.34 89.80 24.52 16.83 93.04 60.57 67.10 93.53 53.47 21.31 1.32 19.34 74.27 39.31 6.85 26.31 22.95 89.24 4.40 48.08 43.76 26.39 12.54 42.49 35.85 66.16 3.52 77.55 92.42 24.98 63.55 74.28 5.67 59.34 43.63 32.02 62.88 5.87 32.76 54.23 85.31 33.48 4.33 13.15 18.79 69.43 27.25 68.54 30.52 15.25 91.57 7.43 16.57 88.60 32.60 8.79 60.84 49.10 26.74 36.88 40.32 80.06 26.30 24.72 29.39 48.65 11.63 28.12 64.68 95.29 51.49 93.78 47.14 24.01 14.87 85.79 14.28 94.88 27.23 42.53 23.09 96.56 41.92 71.79 6.21 71.48 37.90 33.31 80.31 83.95 53.92 88.23 33.08 60.84 35.14 77.34 77.51 -34.87 91.01 62.11 36.57 2.49 88.74 39.34 98.02 18.68 36.42 30.57 58.60 79.28 35.45 84.76 91.14 38.36 55.57 21.77 20.74 57.22 76.27 75.21 32.69 48.13 98.92 1.71 89.84 10.30 87.37 83.49 6.43 50.06 80.16 63.08 1.34 98.08 65.00 15.31 44.32 75.33 27.21 64.36 22.43 29.03 91.03 10.22 77.17 96.42 14.05 31.06 32.84 97.92 68.93 31.19 92.28 0.34 32.64 33.72 46.82 37.94 71.91 11.00 11.24 12.01 41.39 70.25 46.17 56.63 2.50 1.42 58.15 0.31 9.45 65.44 20.47 86.57 89.37 42.28 40.14 19.67 25.10 33.55 31.40 63.35 64.89 70.84 23.24 61.05 15.73 7.44 97.93 18.81 72.09 59.31 79.73 4.71 23.67 2.77 20.05 -30.33 92.31 94.92 66.71 8.54 70.29 15.82 72.52 91.11 98.41 35.13 86.94 54.86 69.57 99.28 2.40 49.37 77.60 14.87 75.63 35.87 46.53 12.77 19.96 60.03 93.75 11.12 71.01 76.58 2.22 19.62 53.99 64.61 38.50 30.27 78.06 68.54 48.23 71.95 2.28 18.47 12.98 50.82 51.56 2.72 86.70 95.46 39.68 90.28 8.08 93.25 75.82 14.59 39.97 52.18 79.17 19.01 17.16 67.10 77.02 46.74 59.68 48.63 0.63 28.39 95.76 53.64 96.68 97.97 44.07 81.94 23.02 1.56 40.11 30.65 83.00 8.29 83.47 12.99 15.99 4.89 36.94 21.50 1.23 13.89 89.20 40.35 60.77 29.47 76.94 17.53 31.00 35.35 63.17 74.39 99.06 94.88 18.89 2.57 9.53 -37.52 95.42 46.05 24.95 18.84 5.66 28.01 24.51 32.15 70.06 14.21 65.09 4.34 23.12 91.44 68.43 37.40 91.26 33.82 98.81 69.47 8.74 86.77 14.14 79.41 74.12 97.28 88.04 46.54 1.04 71.07 97.89 34.33 13.43 47.38 37.18 13.25 63.90 42.81 38.26 16.78 97.78 95.58 3.78 5.86 79.70 59.43 79.34 52.07 24.14 58.20 79.00 57.09 88.12 3.36 62.67 4.86 6.34 98.31 23.01 99.18 56.08 29.75 30.54 96.86 32.37 74.96 78.34 48.85 77.20 34.61 44.28 64.10 17.38 26.69 99.34 83.12 3.57 10.72 58.19 84.61 76.85 43.33 52.11 13.54 71.57 50.99 61.78 28.39 6.37 27.94 33.58 27.89 90.82 14.46 31.32 96.31 91.11 41.98 15.05 -19.54 46.26 32.45 55.32 61.04 85.99 28.97 64.50 30.44 58.91 10.27 88.00 95.78 2.05 1.24 98.68 31.04 54.80 29.62 55.43 89.42 6.40 64.97 79.80 15.77 19.13 56.03 90.01 17.36 98.00 81.08 85.50 97.02 27.09 92.04 3.12 13.94 70.23 33.27 32.97 68.75 1.69 74.16 66.36 23.44 40.62 60.41 45.29 43.61 79.18 87.47 86.15 86.45 79.09 26.63 33.24 73.19 20.01 14.25 65.90 27.34 74.06 56.30 29.98 46.91 5.91 40.83 84.42 31.59 77.58 85.98 16.13 12.72 96.29 38.92 12.32 65.84 14.22 42.68 63.47 75.48 38.26 93.53 86.00 92.25 87.70 42.47 33.84 58.89 90.28 80.96 71.25 62.08 3.75 0.87 86.89 12.65 7.72 14.82 29.26 -24.90 98.40 8.95 2.35 32.71 2.32 29.34 68.54 69.88 4.48 19.81 23.32 26.51 67.57 58.88 12.46 37.65 78.57 82.97 45.54 30.95 18.22 24.46 50.41 67.52 35.03 44.45 71.81 89.63 66.15 24.54 24.41 96.98 96.78 99.37 28.97 96.15 63.89 45.33 69.66 29.81 61.73 45.05 78.76 22.54 45.80 8.20 41.56 72.99 91.52 79.61 63.96 72.46 6.85 65.85 0.16 38.32 84.53 1.22 8.37 88.19 70.42 42.78 29.66 54.72 83.16 22.81 44.65 32.96 61.80 2.85 67.96 59.63 91.91 49.60 61.12 13.69 2.86 26.39 9.23 55.10 47.50 2.82 29.22 34.01 41.69 50.98 95.71 75.62 32.29 34.77 46.41 93.04 59.26 4.51 4.98 1.58 3.13 23.94 3.08 -60.53 81.77 23.93 67.00 30.28 46.94 39.12 47.53 73.44 71.60 17.50 36.75 93.85 43.63 6.79 93.13 11.66 31.24 10.68 27.55 56.12 59.30 54.76 73.09 98.03 44.80 81.05 52.13 1.12 58.84 71.23 91.81 41.10 20.38 28.48 51.58 89.81 87.24 8.64 61.80 51.70 31.05 63.47 41.13 2.71 63.11 41.44 73.03 5.12 98.90 97.12 5.63 96.13 6.31 30.19 24.58 92.57 56.21 72.80 76.05 34.91 81.39 97.49 76.58 67.13 69.26 42.41 19.88 96.37 93.17 16.45 68.11 9.39 67.02 76.59 45.37 76.55 2.13 58.90 68.54 67.75 52.70 54.56 44.66 76.17 0.61 79.80 45.79 45.73 82.76 85.14 73.54 84.62 46.62 30.78 37.57 41.13 16.22 40.66 76.06 -4.68 24.07 13.29 14.02 11.66 2.95 20.03 91.65 86.90 7.24 65.56 69.25 18.66 67.04 99.74 45.76 93.93 13.48 34.55 81.64 90.82 6.54 35.35 95.81 60.22 23.40 93.79 64.56 82.23 98.35 90.78 75.65 38.03 83.36 74.54 39.66 20.47 5.96 38.90 47.73 41.97 10.93 95.24 0.51 84.64 41.30 34.52 99.03 13.99 74.32 24.63 63.94 80.33 86.32 12.53 94.70 56.90 52.19 1.66 52.85 0.47 26.67 46.85 65.75 22.86 74.96 77.64 20.30 89.02 84.77 48.78 17.60 73.13 38.95 34.53 76.26 33.71 24.33 10.01 43.42 6.09 68.50 46.12 21.25 80.36 21.86 5.17 26.04 84.16 97.60 61.95 68.49 83.13 89.16 69.78 44.73 93.55 91.22 65.62 99.83 -74.89 81.58 97.02 3.23 94.47 45.87 39.84 28.18 49.91 51.62 93.24 84.51 97.82 86.20 25.93 28.61 26.40 9.64 95.33 40.57 8.70 73.01 6.00 17.17 50.35 57.92 4.36 66.20 20.23 71.11 57.87 23.57 45.57 7.74 26.17 26.21 0.28 77.60 24.64 55.82 70.09 7.13 5.37 75.39 48.40 20.50 62.54 25.57 98.26 7.66 13.94 41.02 41.84 12.41 75.82 51.63 77.03 67.84 69.07 52.42 80.82 92.27 47.22 34.93 59.59 64.87 32.00 30.72 53.51 32.03 95.27 74.99 71.81 47.52 24.11 7.95 63.53 37.37 94.41 95.97 14.78 73.82 79.31 37.78 84.54 71.86 35.91 53.49 63.04 70.71 24.10 67.53 59.44 44.93 4.70 75.33 44.68 9.89 18.19 15.79 -38.59 75.45 34.82 39.40 74.48 4.50 74.06 91.17 0.52 74.16 99.03 9.39 33.30 57.83 25.28 84.09 32.57 55.53 3.90 6.31 2.60 62.74 34.04 82.49 64.90 24.34 26.23 19.72 96.05 44.89 85.99 42.48 82.37 78.52 79.16 98.87 10.57 35.13 2.04 56.78 7.90 86.17 90.07 4.67 65.33 60.68 57.04 97.10 30.46 43.52 67.16 47.06 68.61 85.33 82.31 62.35 46.01 19.99 45.57 21.96 7.60 99.28 87.46 12.33 74.65 79.83 52.51 21.30 84.19 13.09 42.96 92.58 73.39 59.11 10.76 6.37 98.24 15.82 55.18 73.75 18.06 18.77 24.56 92.54 15.57 1.05 73.33 92.58 62.96 10.90 2.26 36.99 52.63 41.50 87.01 37.42 28.99 63.27 68.16 72.64 -39.60 36.43 86.39 49.19 69.67 8.58 61.78 29.89 3.68 8.68 33.60 29.29 34.32 18.53 9.09 23.06 75.81 27.24 76.83 45.16 69.26 7.42 67.55 27.54 52.79 90.32 20.35 77.32 77.96 97.37 58.11 66.17 29.15 79.36 47.68 66.93 57.20 35.50 75.63 45.00 1.06 66.36 7.59 76.47 53.97 16.95 23.70 86.19 91.55 1.18 32.60 34.32 28.83 73.83 66.78 41.27 27.79 35.70 3.46 94.70 14.44 46.89 92.06 43.96 5.46 59.03 7.54 68.31 54.86 87.83 8.20 15.35 52.92 34.58 99.03 64.01 71.43 62.78 39.94 10.51 49.10 30.26 28.20 26.85 85.39 54.55 40.97 41.45 25.31 37.42 1.61 6.78 99.72 19.65 5.03 97.66 82.06 87.13 27.36 5.81 -13.49 94.02 35.20 18.54 87.71 51.18 47.30 6.74 47.08 33.47 45.83 0.93 61.71 35.52 59.36 37.81 53.31 41.32 7.21 5.99 50.70 49.12 38.56 85.41 41.08 14.65 34.17 61.26 91.78 57.52 17.62 84.40 93.89 79.50 17.66 59.78 43.13 65.31 91.22 64.72 47.40 17.19 61.38 68.44 59.75 1.70 58.16 79.12 41.91 12.74 79.74 36.88 64.26 68.38 25.22 67.68 91.33 15.59 20.32 71.34 8.02 37.14 74.81 48.75 95.03 42.17 78.53 32.25 52.73 13.57 53.83 80.78 75.38 10.89 43.41 92.30 57.18 14.61 19.50 91.25 62.66 96.34 66.24 97.32 49.61 22.03 86.03 44.57 15.74 75.84 96.29 79.42 66.21 8.69 36.38 87.65 82.56 49.73 53.29 9.62 -76.60 76.50 61.95 41.97 50.01 6.44 6.77 12.85 67.35 18.39 1.91 28.43 67.09 34.20 29.93 62.46 2.67 53.85 85.92 23.11 59.65 91.48 29.16 65.01 32.21 12.83 54.79 2.62 5.47 3.27 19.95 89.33 61.28 67.38 56.49 76.71 99.99 75.16 94.87 35.26 7.10 70.72 97.87 87.27 13.07 63.58 44.01 22.53 6.23 15.09 81.67 16.64 79.30 22.55 21.72 9.41 5.55 26.33 97.18 24.81 49.19 66.14 27.56 39.60 0.50 54.88 23.22 87.26 63.99 7.17 35.06 71.12 91.35 87.04 18.92 96.93 20.51 18.99 69.79 61.12 15.88 84.53 8.67 15.75 33.05 44.08 36.54 94.99 61.45 20.80 31.78 89.33 35.72 71.48 25.65 0.01 11.36 44.71 33.79 62.01 -50.87 85.99 66.99 88.63 97.52 36.26 56.32 91.93 67.33 67.20 18.86 84.82 59.07 19.77 75.29 89.45 29.13 65.68 10.54 37.44 43.27 21.86 48.59 79.95 51.52 81.62 99.88 90.30 40.69 69.82 59.16 80.59 15.11 54.16 17.39 82.28 71.51 5.61 16.48 60.18 92.47 85.56 25.00 32.75 46.99 8.78 92.10 63.15 37.83 89.26 90.15 58.09 26.31 71.06 42.61 64.82 40.07 10.36 66.37 6.61 12.37 84.64 62.55 63.50 72.14 43.21 90.86 88.18 87.60 86.73 30.63 45.55 70.62 0.18 48.14 9.53 42.73 5.99 38.29 89.67 50.53 34.75 85.95 73.64 59.90 91.85 94.28 82.17 48.40 89.29 29.24 97.43 83.02 45.82 85.26 57.88 29.67 26.45 77.52 87.18 -23.20 38.76 24.11 20.65 17.75 33.23 55.10 26.76 15.50 36.18 72.32 64.83 6.80 63.74 57.92 77.19 11.44 2.96 62.28 26.20 40.23 38.15 0.34 41.06 27.03 83.02 71.07 98.96 22.80 48.20 10.82 2.23 49.71 88.39 42.80 79.68 46.35 71.58 27.97 38.94 51.22 72.59 13.73 99.73 14.48 93.76 44.48 59.74 54.50 18.52 30.19 3.55 80.51 57.16 43.87 68.37 82.93 10.41 17.77 73.90 50.84 93.00 63.97 40.69 29.93 77.92 94.32 72.86 14.62 46.46 51.10 49.05 21.16 30.13 38.98 52.19 69.22 39.39 86.96 21.90 64.64 85.88 56.89 19.70 53.33 8.02 36.40 40.57 80.68 34.79 79.73 49.35 91.88 26.56 74.50 13.36 56.95 34.81 77.33 92.11 -62.24 5.59 41.89 89.35 33.23 28.61 97.47 21.90 80.22 36.77 22.40 25.90 29.78 94.70 24.18 68.16 39.39 25.63 37.07 92.84 11.53 93.28 23.35 89.99 33.54 11.40 75.45 71.79 91.43 31.57 73.69 71.94 3.01 29.01 94.10 33.65 13.67 76.82 78.48 15.56 24.37 5.92 68.95 93.40 61.86 28.71 75.74 45.03 94.14 71.38 90.94 47.38 12.50 82.27 8.54 43.83 60.94 67.63 18.62 64.12 35.11 39.93 14.70 67.29 89.51 17.63 16.90 83.97 62.97 72.89 30.26 53.78 98.24 94.54 89.88 87.44 91.79 4.14 28.87 0.45 50.95 73.61 42.67 0.63 7.20 6.02 0.24 16.34 18.78 64.41 28.91 66.26 54.94 10.36 34.39 12.82 79.26 88.08 44.68 49.57 -19.25 39.17 79.43 83.89 18.89 84.18 73.35 29.81 52.61 58.89 17.37 75.61 69.67 71.53 58.98 83.59 67.57 61.11 57.65 79.29 68.12 85.09 92.99 52.24 47.41 58.15 57.92 94.88 66.61 72.74 82.60 51.44 66.31 84.43 12.39 20.08 81.02 35.13 79.00 43.21 58.02 18.95 29.38 37.15 45.16 20.72 57.27 70.73 37.32 29.47 55.41 16.22 95.60 92.43 2.13 37.29 31.62 36.83 76.34 58.15 70.70 12.34 37.41 10.88 12.31 87.18 74.23 20.08 9.68 11.62 83.10 62.71 46.50 98.78 67.95 29.60 95.51 27.17 0.17 2.79 74.27 33.32 96.36 36.69 4.34 31.58 32.30 48.41 7.52 52.25 91.93 91.24 92.80 61.50 76.18 50.14 27.70 67.22 18.42 94.97 -79.09 99.66 49.00 47.12 15.08 97.06 3.92 4.94 77.16 32.56 7.37 88.18 40.91 43.13 25.56 61.71 99.44 57.25 53.38 60.49 64.45 51.97 75.53 26.99 41.17 60.89 35.54 2.82 39.06 51.55 54.02 22.42 24.31 8.57 65.41 56.24 13.22 82.10 48.74 53.25 77.57 65.69 59.41 24.42 64.95 40.59 89.78 63.64 97.89 45.24 9.31 38.44 37.22 31.93 88.93 25.02 34.01 54.19 49.87 34.05 13.20 18.03 55.23 10.29 68.57 28.58 94.98 76.30 11.34 58.07 49.99 75.87 56.16 77.30 9.51 64.19 77.30 37.52 36.99 44.85 86.81 78.41 3.95 51.55 6.49 9.46 54.61 73.96 48.37 8.18 86.38 94.34 90.01 43.79 20.45 33.78 34.03 14.69 3.46 18.31 -40.78 68.02 24.58 6.03 73.55 13.30 29.90 13.58 26.17 30.10 90.24 60.37 12.46 89.19 92.90 81.75 2.71 0.57 68.24 98.05 36.07 31.06 94.37 38.32 35.76 71.41 92.12 20.62 41.04 31.00 54.01 75.46 21.61 82.85 73.38 13.65 59.18 17.87 13.23 67.31 56.06 31.83 2.94 52.02 29.56 79.25 82.47 18.26 32.75 76.40 58.10 26.31 14.04 85.95 21.77 40.51 72.03 22.92 78.34 12.49 7.46 70.15 55.61 87.92 52.81 29.98 53.08 46.52 88.18 14.20 62.92 7.36 78.23 33.05 59.28 47.04 43.62 2.43 13.22 29.65 29.13 68.45 58.38 63.40 88.04 57.64 28.09 60.18 94.40 51.91 77.74 75.02 27.04 59.02 74.48 93.09 96.66 46.92 89.55 0.56 -17.31 82.91 8.84 18.08 35.54 44.37 7.99 42.79 12.13 22.40 70.77 63.44 98.56 51.46 85.37 78.50 17.00 26.67 42.58 1.96 96.21 55.99 92.78 34.84 87.19 29.54 15.53 26.26 22.52 89.19 43.52 9.00 13.85 44.06 3.97 63.34 26.24 39.25 74.84 99.21 99.70 35.61 3.45 11.89 11.00 1.57 85.87 68.18 80.60 86.50 93.16 8.13 84.19 71.69 21.42 2.03 62.64 43.74 75.71 53.88 73.18 70.92 83.55 41.64 31.23 90.24 66.60 34.51 39.05 92.16 11.31 97.04 37.42 20.71 17.18 85.04 86.85 46.02 1.69 40.34 44.82 6.11 49.89 84.49 3.35 68.73 80.44 14.29 79.44 49.39 77.59 52.99 70.50 80.31 58.61 36.13 21.54 45.55 69.56 17.56 -30.31 34.59 24.50 69.49 8.65 9.15 61.27 36.91 75.23 21.81 8.44 25.41 79.65 11.63 49.53 38.58 10.22 16.63 93.59 57.82 71.02 58.54 93.12 37.83 62.01 59.58 73.07 63.68 10.64 88.37 18.84 64.08 61.85 72.35 2.24 71.55 45.21 35.09 70.05 29.90 80.35 66.15 67.61 54.46 89.95 66.89 51.77 43.76 24.63 53.89 16.25 73.27 23.18 15.95 95.76 54.02 30.15 0.90 74.35 91.41 14.02 98.82 91.21 49.84 29.76 20.76 75.61 29.83 30.98 16.02 65.90 74.53 84.81 6.06 61.63 8.30 21.67 9.81 26.15 40.22 11.78 74.40 76.15 23.99 60.04 11.79 86.29 30.53 98.54 77.96 15.00 31.59 48.86 65.86 77.65 29.34 35.75 32.72 20.83 98.66 -54.73 70.27 9.85 75.41 52.43 9.45 91.54 94.79 26.18 83.63 53.47 51.53 78.00 48.87 16.32 98.54 29.82 48.64 86.19 81.33 81.17 16.61 84.58 92.73 27.79 48.62 23.96 95.46 8.54 55.84 37.30 47.46 54.42 66.36 33.33 96.47 75.37 55.58 26.60 10.80 13.76 82.46 92.06 19.47 72.72 96.61 49.19 23.37 34.80 37.07 28.58 91.90 34.10 9.69 31.36 29.70 88.41 18.01 56.52 74.70 51.13 20.74 97.57 50.24 83.38 8.87 99.22 49.54 42.00 28.00 47.27 56.18 61.11 85.08 92.24 92.47 14.61 90.54 12.02 88.14 11.10 63.84 14.22 11.24 17.50 35.89 27.69 99.62 93.48 98.21 53.76 77.13 15.33 81.95 7.30 20.04 58.75 36.40 51.75 69.90 -19.26 68.10 19.36 42.17 91.33 77.16 0.31 91.81 39.55 95.61 1.27 79.32 28.71 62.84 95.56 28.22 3.95 70.65 11.43 88.56 75.53 67.29 54.11 12.02 29.86 87.12 79.62 94.26 2.28 8.84 58.13 10.20 47.98 60.75 62.04 59.14 88.73 97.80 91.29 37.65 77.28 4.51 28.98 60.73 7.02 41.22 64.80 79.05 3.92 28.02 44.64 51.69 3.25 89.05 92.82 81.11 10.79 59.52 10.40 7.15 31.66 44.04 87.28 92.89 7.02 7.89 94.08 60.64 99.47 49.74 19.05 2.31 36.95 33.71 27.83 45.28 63.51 23.13 72.69 10.19 52.50 53.21 58.04 72.20 82.34 60.25 46.47 60.44 69.46 65.12 65.12 2.13 89.47 75.61 82.12 99.39 54.42 49.42 48.11 7.71 -11.88 72.90 8.74 78.66 82.15 11.78 18.08 95.00 5.21 50.17 56.69 67.95 86.51 98.72 62.50 86.47 17.11 48.42 92.40 62.61 95.54 61.93 64.30 39.34 14.05 56.37 50.62 61.49 95.21 20.91 24.27 31.22 47.57 61.07 13.28 22.97 66.89 17.24 39.18 49.23 66.92 16.77 45.15 66.67 35.22 26.06 15.89 92.12 67.93 49.61 70.60 49.13 8.71 16.92 86.17 93.35 43.77 83.54 58.41 82.93 66.48 33.94 70.01 92.89 54.47 34.25 84.61 81.32 63.48 3.49 31.25 44.06 12.44 70.99 22.03 21.69 52.58 92.51 30.58 56.19 64.39 74.58 80.13 75.15 0.66 32.48 63.54 36.09 96.71 29.97 42.99 97.17 84.39 11.66 84.00 65.23 24.49 96.61 33.68 57.21 -12.45 6.85 34.25 52.95 53.22 79.85 63.69 28.29 42.76 91.70 12.51 0.61 36.60 31.19 91.45 4.77 65.95 92.68 49.62 89.58 55.58 16.35 26.07 53.11 8.70 40.15 94.65 67.34 10.94 5.95 58.25 14.65 41.59 70.06 83.34 4.07 72.97 37.72 14.59 97.22 96.04 88.61 58.97 8.01 99.05 6.40 41.09 97.87 22.07 23.41 39.47 16.17 59.97 92.67 65.63 80.50 99.14 48.40 14.26 73.90 16.55 73.50 15.73 19.55 63.40 75.61 78.98 77.52 20.30 14.26 35.72 40.21 8.93 28.90 41.94 56.30 43.48 12.82 81.19 73.59 55.85 58.80 33.37 47.67 44.11 67.64 55.72 57.53 96.99 24.63 77.44 84.20 92.96 7.96 88.29 92.50 11.08 69.25 76.84 57.90 -68.73 89.32 7.78 50.43 58.78 69.64 31.39 20.34 63.69 87.67 18.91 66.38 10.54 95.99 32.54 3.30 30.10 39.76 43.59 56.68 43.84 15.33 16.12 6.34 33.00 50.62 37.82 22.62 64.27 86.06 20.83 77.89 25.11 94.69 48.13 74.22 10.30 77.80 65.58 26.44 73.03 35.86 18.09 17.76 18.40 47.17 9.09 77.39 89.04 30.37 74.82 31.23 92.15 91.34 40.82 51.09 32.80 31.19 54.98 23.36 66.17 24.12 16.19 74.62 58.82 41.93 16.57 35.14 59.37 66.42 50.98 43.02 91.13 24.93 26.13 56.43 86.32 57.92 8.62 77.92 83.33 91.68 42.90 64.19 85.58 50.35 8.79 55.13 86.24 52.61 9.67 6.82 13.23 14.28 53.13 69.10 48.54 91.61 15.75 0.54 -78.60 26.12 0.23 33.96 70.46 49.59 23.08 26.64 44.20 95.26 9.01 85.50 16.53 72.85 44.96 52.89 88.30 92.55 16.17 5.02 29.88 97.37 52.27 35.00 6.39 96.22 43.69 68.01 67.28 81.48 59.50 87.60 99.88 49.94 83.24 12.65 25.59 62.42 8.81 98.66 74.17 86.29 7.28 13.56 21.57 63.20 64.56 69.63 56.05 69.58 66.34 69.39 22.24 44.76 71.05 81.93 26.21 97.67 60.87 86.18 15.78 32.98 57.07 68.24 78.84 2.45 1.74 32.05 44.74 14.84 20.25 73.66 34.99 72.32 19.11 99.28 99.18 53.82 0.58 56.12 48.67 79.63 58.38 96.16 0.32 27.25 46.04 12.05 67.03 37.63 37.51 57.17 42.48 28.87 83.60 17.20 66.36 30.29 53.52 53.40 -28.70 33.41 35.86 64.49 59.84 64.95 90.48 11.70 66.16 40.51 99.95 53.71 15.78 83.11 60.73 33.80 48.08 32.10 60.59 45.03 71.25 76.59 52.90 42.31 68.89 79.02 49.04 0.36 91.36 75.03 36.99 39.58 70.33 37.37 43.32 25.89 50.34 93.23 91.65 13.48 75.01 84.15 64.28 72.58 17.78 41.31 79.25 51.22 43.65 44.78 91.11 91.61 63.56 3.64 14.08 60.38 65.58 71.28 77.76 11.67 58.52 88.45 67.58 34.02 10.88 2.95 0.89 30.86 17.57 4.03 56.78 71.96 8.46 30.11 56.71 96.82 47.49 85.36 45.41 30.40 14.15 67.83 35.67 52.23 54.59 30.68 0.96 42.20 15.24 9.97 86.65 89.18 34.80 90.50 57.68 14.19 86.69 2.04 2.55 29.92 -20.36 10.20 35.84 88.49 60.41 10.97 42.55 85.00 80.03 42.85 73.43 98.10 98.93 77.28 34.70 8.36 41.88 91.22 85.98 86.94 7.68 61.30 15.42 14.21 50.56 80.42 78.13 34.59 43.88 17.99 26.85 38.18 65.69 80.20 36.14 1.29 84.95 32.34 55.13 29.12 59.73 2.52 62.69 23.87 52.49 83.25 14.32 95.11 53.48 87.62 30.87 39.49 88.69 32.83 90.35 1.39 30.43 99.51 9.84 66.75 8.73 12.44 38.51 28.40 26.27 12.18 24.75 2.82 10.97 9.91 48.84 62.23 44.80 42.09 20.99 8.60 37.03 11.64 94.60 97.87 88.56 56.05 55.63 72.86 34.66 5.50 20.33 18.57 63.10 14.47 63.11 13.65 6.01 52.93 50.41 2.88 47.38 28.29 81.38 88.95 -54.88 25.09 0.49 23.99 16.31 22.48 14.12 3.08 76.28 88.14 82.03 46.19 58.35 62.76 19.26 48.34 52.24 97.44 40.19 37.07 81.66 40.09 86.73 27.71 95.62 59.32 36.17 93.20 78.16 88.05 43.02 42.16 99.60 52.64 66.77 3.16 10.98 78.83 7.11 33.61 7.55 70.70 13.17 25.42 91.68 91.67 41.66 58.62 64.01 78.60 62.25 71.92 70.02 21.83 92.72 21.68 93.89 27.29 99.59 5.58 40.85 25.78 74.72 23.49 13.33 88.27 85.27 30.60 10.52 49.15 25.80 26.47 51.90 94.51 69.19 84.03 42.20 34.62 85.83 26.76 50.98 19.26 19.89 2.68 2.82 1.86 87.78 7.82 75.00 13.65 98.95 89.97 45.44 36.12 65.70 22.30 52.61 98.08 11.64 83.81 -97.77 67.37 1.94 16.76 26.37 27.69 12.65 46.42 56.78 64.61 81.97 45.29 98.16 72.20 49.65 49.50 99.07 8.60 14.06 23.11 89.53 58.31 85.26 48.98 66.56 59.09 0.15 31.77 39.13 43.99 2.93 81.79 47.32 99.16 19.26 57.23 82.92 84.11 86.34 41.30 41.63 1.98 82.13 17.21 82.98 96.73 1.91 2.94 20.08 73.97 44.37 62.49 69.91 19.12 51.82 59.95 80.61 98.98 57.35 12.90 84.38 89.57 59.91 87.77 23.25 88.47 42.94 53.08 64.54 20.27 91.97 61.72 41.87 10.13 31.61 75.56 1.12 2.54 42.59 35.81 39.34 7.47 78.74 20.90 55.67 37.83 8.89 21.29 29.91 4.76 97.46 95.91 14.07 54.00 43.05 67.02 43.83 87.80 95.55 31.07 -6.31 31.73 14.98 13.51 52.47 51.81 16.54 73.87 48.41 49.73 9.22 27.58 29.55 86.01 32.71 1.17 19.94 88.53 44.60 99.53 37.12 38.21 72.01 73.23 55.21 93.84 59.74 46.29 98.76 40.23 64.12 6.70 27.61 43.57 92.58 51.93 80.72 93.54 58.96 82.45 54.21 98.07 47.23 1.83 56.38 99.14 90.93 59.09 45.09 65.11 47.46 18.19 67.35 30.87 45.04 98.28 70.73 69.08 81.57 72.78 22.40 54.82 35.78 35.12 9.86 45.36 9.39 77.41 56.66 60.71 81.34 97.52 44.71 27.45 90.56 57.73 17.59 36.63 6.24 6.36 67.55 20.27 0.90 30.20 27.16 8.68 80.42 48.24 28.82 38.14 89.82 56.41 39.52 60.55 64.43 37.31 63.78 63.54 30.07 47.43 -51.10 10.88 14.94 16.91 88.12 81.10 84.17 42.51 78.95 63.34 46.12 30.00 45.86 66.91 37.67 40.61 86.03 21.53 9.52 89.62 42.10 70.54 12.71 42.32 37.48 38.45 62.09 20.47 7.86 84.34 60.85 47.14 32.47 79.72 39.89 56.35 67.69 97.16 31.27 7.33 65.46 35.55 72.98 99.58 69.92 80.09 56.53 40.62 84.57 31.35 1.62 45.95 48.42 98.09 16.05 40.51 77.31 52.51 42.39 13.28 31.24 7.97 13.55 58.93 18.52 95.00 56.16 84.03 58.16 16.45 90.69 34.80 75.91 83.93 57.67 16.70 95.16 82.18 50.89 17.69 86.51 28.98 17.61 13.96 21.17 31.98 73.88 12.53 55.89 60.06 10.21 38.25 68.74 30.91 88.62 0.66 45.98 87.15 16.34 60.21 -21.38 82.91 6.87 10.19 88.83 46.88 19.39 60.72 86.63 0.05 61.81 74.98 93.16 92.60 50.71 0.59 45.60 65.75 73.05 33.47 91.83 61.67 10.15 36.39 9.41 15.79 94.45 54.72 42.81 38.43 62.32 99.35 92.14 57.36 61.03 81.94 46.62 4.17 88.96 19.55 14.07 64.20 39.41 81.84 43.76 49.78 19.98 11.99 76.77 95.26 51.63 82.51 12.28 12.31 18.19 35.60 89.97 63.76 22.65 40.76 60.09 62.60 60.13 77.73 7.23 23.58 41.99 21.11 2.66 34.58 62.65 59.62 20.67 85.63 95.25 18.91 69.02 62.49 14.48 78.22 32.49 23.85 29.81 90.37 93.85 32.23 62.94 16.25 31.25 37.35 2.47 7.14 66.05 55.77 26.74 77.99 56.07 4.37 2.31 55.95 -31.79 59.81 2.51 86.94 93.06 9.89 90.76 53.36 17.07 46.24 20.41 58.29 1.84 72.11 17.36 86.23 71.86 19.90 10.51 37.39 85.32 6.35 84.12 24.93 69.60 88.30 55.55 28.73 10.54 68.02 17.63 52.27 84.62 31.09 28.02 41.18 81.31 12.21 61.77 14.79 20.86 62.06 16.12 75.66 17.39 39.89 4.36 11.48 38.66 30.99 58.42 96.63 4.23 42.32 48.01 35.78 85.92 58.53 67.26 53.23 9.04 49.72 76.91 68.32 58.12 65.98 34.73 63.95 70.54 16.76 99.50 74.97 59.56 96.46 54.72 90.60 0.64 67.68 16.80 35.99 44.52 60.00 44.35 83.80 93.19 29.78 87.06 76.91 61.72 16.98 15.67 43.51 51.55 50.37 15.88 66.76 31.07 83.66 76.96 45.26 -25.09 11.42 60.77 15.59 47.98 96.21 61.45 70.81 49.36 52.58 1.76 44.24 58.21 70.86 22.41 78.09 99.81 22.43 64.76 4.70 87.86 41.13 45.87 44.67 53.88 29.24 4.23 39.52 40.23 29.57 56.20 31.18 45.71 97.64 12.90 4.61 47.80 11.35 28.81 0.69 89.85 66.37 57.16 98.89 89.44 94.61 88.62 31.17 60.64 40.24 65.15 64.96 34.35 58.10 47.42 21.86 37.67 18.69 12.85 75.23 79.12 72.31 40.72 18.94 97.58 91.44 79.57 19.31 12.81 64.64 36.04 65.26 18.74 70.61 15.62 69.32 72.15 10.76 35.54 5.26 61.16 7.91 82.07 29.04 3.97 31.77 35.80 19.48 97.66 98.35 33.44 44.49 14.83 56.24 54.82 32.34 19.59 1.93 24.50 59.26 -13.45 3.01 81.26 53.41 41.91 17.13 49.06 4.54 11.61 63.52 27.86 85.74 30.92 8.35 55.54 58.73 35.09 45.95 82.36 80.27 82.39 37.87 57.39 96.83 75.70 84.85 49.77 76.53 86.03 1.84 35.89 35.53 17.49 85.58 44.53 58.33 89.54 65.30 21.46 41.25 30.37 63.15 84.52 30.16 8.82 49.58 4.65 91.79 76.93 86.69 1.88 12.23 41.03 0.65 93.61 62.64 10.11 39.06 93.07 88.59 71.95 15.46 28.08 47.68 38.13 96.57 19.99 87.61 53.96 75.48 79.39 62.20 22.41 49.64 12.31 29.62 78.73 19.50 85.96 48.62 96.03 71.93 70.45 54.62 96.54 76.17 97.70 91.95 95.66 91.02 32.70 32.60 79.38 68.10 79.45 28.50 50.88 15.81 29.55 18.81 -56.57 21.33 54.87 81.34 70.25 76.82 34.39 87.41 59.59 23.29 33.13 21.78 81.51 24.88 0.77 91.80 24.12 40.81 92.87 56.35 46.13 73.52 29.95 51.40 81.79 59.58 16.82 9.47 35.01 15.12 95.40 79.02 85.55 46.44 49.15 11.11 88.61 26.57 55.11 96.80 29.64 65.32 5.78 60.08 0.66 51.99 71.30 69.25 18.74 39.02 90.29 8.38 20.10 21.98 8.61 69.47 0.58 35.76 34.75 72.73 23.11 91.01 84.89 47.98 59.86 51.13 73.97 0.83 79.87 65.48 58.03 86.08 17.07 34.15 85.10 66.32 80.50 12.21 56.07 61.74 51.57 6.54 83.13 81.17 8.71 30.80 83.79 76.95 46.13 36.13 79.89 14.32 29.19 88.53 85.83 23.80 54.65 48.13 21.33 10.66 -1.78 2.87 83.28 81.52 3.79 85.14 71.74 23.35 50.73 75.93 37.73 95.20 72.01 48.91 1.60 43.90 72.66 47.36 58.57 7.35 34.44 18.49 72.77 31.65 17.64 46.57 50.41 77.72 29.15 85.30 47.92 76.39 56.07 99.34 6.20 93.13 37.56 67.71 71.94 81.16 6.23 4.89 82.15 88.42 37.03 85.83 90.13 83.22 24.59 7.97 78.97 24.10 63.73 77.08 63.51 18.95 72.92 26.83 74.36 79.92 54.08 52.73 58.14 37.70 25.40 78.37 4.17 10.08 39.92 5.41 70.95 69.86 80.82 86.94 2.52 50.45 11.32 75.46 6.70 24.63 30.27 77.12 13.48 81.28 79.24 95.14 0.69 76.70 12.00 33.94 90.88 18.13 13.04 28.73 86.35 53.49 26.22 58.80 78.24 92.54 -95.51 17.93 38.08 3.63 86.21 1.23 99.37 4.49 38.31 54.29 76.22 32.64 69.65 88.82 13.99 81.88 36.92 32.00 69.96 11.28 68.77 22.41 46.54 13.82 75.10 25.86 85.34 81.15 64.37 62.22 80.19 76.59 74.36 72.86 18.44 62.20 62.37 49.14 6.01 13.72 1.65 16.00 70.68 16.14 97.17 98.39 56.04 31.58 92.10 64.90 68.79 62.23 70.17 36.71 34.00 42.30 35.86 10.16 18.67 57.82 6.60 28.32 85.02 35.87 84.37 68.27 38.36 29.47 73.23 9.95 88.96 93.34 57.73 63.89 7.39 59.25 35.20 64.99 84.01 59.67 89.32 19.52 15.86 30.68 25.25 69.64 71.35 72.44 84.16 97.84 22.22 39.26 6.91 33.96 4.78 14.29 93.68 79.14 58.04 15.17 -61.40 83.91 68.22 34.66 68.69 21.04 70.27 1.16 13.13 93.18 81.31 13.59 10.24 91.08 54.35 70.77 88.19 11.68 94.11 90.71 34.84 97.74 41.28 49.27 47.29 92.14 74.27 70.93 77.54 57.15 61.96 18.12 12.63 42.98 2.87 44.94 41.44 3.99 32.95 79.12 52.87 2.73 23.23 44.09 81.00 62.86 88.85 68.73 94.03 86.73 34.71 85.30 18.58 51.90 39.53 18.70 68.75 76.56 93.64 33.97 97.66 13.59 22.84 97.67 16.50 3.30 77.59 39.29 7.78 48.66 80.77 93.63 56.15 48.25 18.13 3.95 71.86 88.45 62.34 75.12 47.09 5.36 68.69 11.30 42.48 10.73 52.33 4.16 51.03 21.08 37.88 0.28 32.05 99.22 71.41 83.95 80.20 12.68 71.96 58.83 -30.27 71.53 91.49 34.49 87.55 8.14 50.87 61.28 79.10 66.20 56.53 81.32 23.36 53.47 98.95 58.50 42.14 35.25 35.34 19.30 13.75 80.66 44.43 45.98 47.30 70.16 57.49 96.86 41.58 66.42 24.56 17.00 94.73 96.27 37.08 94.70 83.97 27.05 71.26 43.86 37.67 38.47 27.10 60.00 94.82 6.81 85.19 31.23 56.14 21.01 8.48 97.37 13.85 58.89 78.56 54.64 13.78 70.86 68.02 86.64 82.23 51.53 56.19 20.75 50.75 43.16 58.84 30.47 11.77 20.07 19.37 56.45 12.08 54.01 79.68 9.97 62.19 93.25 74.17 67.30 72.47 90.12 30.10 88.52 53.35 22.70 14.84 44.91 48.14 16.66 82.25 59.52 66.05 5.72 2.04 46.42 91.67 12.94 17.55 50.27 -39.27 85.38 67.91 85.74 27.97 40.52 60.88 13.38 84.83 28.31 52.71 12.58 17.88 19.78 50.71 71.11 94.00 43.66 24.11 29.99 57.91 35.27 90.67 25.09 27.26 4.59 49.71 20.39 78.69 35.35 82.00 5.01 33.06 71.19 23.95 78.42 6.17 17.51 20.87 0.20 9.41 50.96 99.10 14.27 80.84 29.44 34.97 26.71 55.35 24.80 92.48 11.07 74.92 76.40 14.69 76.19 85.63 40.04 71.53 46.29 74.45 90.16 39.98 67.17 36.58 61.96 98.99 28.43 9.15 50.90 21.16 40.35 2.54 4.64 90.67 15.34 18.89 25.49 12.20 75.73 13.74 65.14 60.11 75.72 19.83 83.37 35.49 49.75 40.37 82.26 76.86 38.92 27.46 37.77 27.66 26.40 31.92 60.16 98.78 39.28 -43.85 72.17 95.73 14.11 0.39 81.29 49.25 74.93 60.43 99.68 39.26 20.77 20.92 81.11 14.05 74.95 4.81 56.22 25.17 9.03 8.34 92.76 19.72 22.27 18.69 28.74 85.55 53.39 5.16 18.70 96.18 29.43 87.06 47.95 63.93 54.10 75.42 95.46 18.65 5.65 63.50 93.92 16.79 20.83 25.76 69.16 71.05 68.99 75.76 27.34 0.33 89.52 54.42 19.03 0.08 18.82 93.81 83.48 73.55 34.54 20.99 53.12 61.51 86.98 27.83 91.79 81.59 33.33 70.93 44.00 47.61 47.54 75.86 51.26 32.79 45.09 3.12 89.30 90.43 17.60 73.02 40.53 97.75 61.14 56.76 96.38 25.85 58.03 55.02 55.96 52.11 29.19 13.99 56.76 96.02 82.82 40.48 76.02 53.77 37.22 -24.14 43.77 74.62 61.95 6.09 44.04 70.98 56.87 77.28 62.32 17.84 7.86 51.53 21.29 60.34 37.52 65.11 5.82 60.08 6.08 91.05 49.21 99.87 76.64 27.22 68.99 74.68 90.01 26.92 69.14 18.38 98.99 32.95 76.40 8.78 56.37 94.80 54.71 7.88 0.71 6.82 67.72 31.94 25.85 48.68 26.36 36.34 39.13 29.47 19.90 93.28 55.85 20.45 27.99 67.50 94.73 1.17 75.21 63.18 33.63 47.47 67.21 71.46 69.04 1.24 48.73 3.28 62.39 45.60 50.57 85.49 0.23 56.32 67.65 54.46 54.74 75.16 80.90 92.20 72.00 66.47 54.64 58.30 0.56 52.56 79.99 97.33 66.24 3.66 80.72 10.39 66.24 88.36 25.56 12.99 64.55 72.49 99.25 89.86 68.92 -9.12 7.38 84.13 99.28 64.14 17.39 15.81 62.28 14.78 66.59 26.16 40.14 87.30 63.79 51.64 63.06 93.56 21.10 65.76 81.60 37.21 16.62 48.92 42.43 81.14 32.76 28.21 82.78 21.82 23.53 83.47 42.04 22.53 76.34 52.70 7.84 2.65 38.56 51.37 3.22 98.66 33.84 24.30 12.63 54.71 31.94 94.91 7.27 88.48 20.59 4.74 72.92 21.00 77.32 32.45 57.55 16.42 30.84 62.95 51.77 30.65 76.56 25.08 37.02 88.79 35.78 47.38 1.99 80.02 10.69 39.35 86.61 71.22 58.04 77.43 77.33 7.22 96.93 28.44 89.37 16.76 77.51 88.82 27.25 67.40 51.01 60.70 73.26 66.69 8.68 57.40 45.56 81.27 80.57 2.35 15.43 9.43 98.49 66.88 1.34 -85.29 45.52 50.78 50.25 15.35 29.90 46.28 11.80 20.20 48.89 42.26 51.46 33.47 19.67 96.92 90.94 91.76 69.50 78.66 84.09 65.06 59.80 22.95 77.65 99.58 19.83 47.78 94.50 93.22 98.42 53.76 96.18 10.75 75.91 77.26 43.19 68.75 44.92 45.28 6.01 55.04 37.27 43.27 58.21 31.03 14.96 10.51 19.96 49.32 77.01 4.05 92.07 37.13 35.80 31.68 4.26 90.34 89.99 0.94 20.63 35.18 90.65 60.19 66.87 47.68 58.73 11.24 36.20 14.54 14.35 17.69 53.38 93.12 94.53 23.42 27.19 77.04 54.93 72.08 0.45 95.53 13.74 94.54 82.88 68.07 40.95 39.32 44.84 25.01 39.05 86.57 47.89 97.48 30.43 69.08 67.89 71.30 37.59 63.16 3.48 -13.89 33.48 57.52 85.90 22.88 40.96 63.45 9.56 57.83 62.62 90.01 86.16 5.02 23.91 66.73 51.68 34.23 30.38 63.45 67.43 84.31 2.28 69.88 0.25 62.18 75.58 23.96 60.77 36.84 55.77 7.03 13.75 32.78 18.31 66.00 18.50 48.37 0.37 77.99 13.47 80.58 50.24 24.29 39.91 96.41 94.41 30.44 52.89 70.51 78.25 94.08 6.34 38.55 15.41 77.47 58.95 74.53 19.11 31.12 89.79 98.52 81.88 44.05 26.59 45.66 23.32 95.15 67.66 54.53 41.24 92.54 83.60 22.97 31.88 21.40 73.40 64.72 68.36 64.58 25.43 59.25 49.75 51.65 98.79 7.74 55.40 4.10 78.16 68.07 95.20 69.26 81.55 95.69 91.73 78.33 96.11 32.97 79.76 51.72 11.34 -5.17 13.15 80.54 88.35 99.90 24.58 42.01 28.18 67.94 22.47 84.13 62.19 5.36 95.10 25.18 6.34 9.44 50.57 6.72 6.01 38.35 2.95 72.03 33.91 84.49 74.72 4.64 35.83 82.47 94.66 25.24 91.14 88.16 59.98 22.08 43.60 21.40 56.81 43.85 21.28 72.16 4.06 12.72 51.46 35.29 1.08 65.09 19.70 20.22 5.95 66.62 86.08 9.46 60.31 19.29 73.10 49.14 97.32 38.38 49.37 69.93 11.74 80.44 53.69 39.63 68.02 40.72 7.98 4.99 39.84 33.01 84.80 29.85 43.35 49.58 5.61 1.91 12.98 86.76 79.88 62.00 69.50 89.51 25.62 46.10 8.86 24.14 67.35 14.05 36.24 81.67 10.53 25.88 72.10 84.00 78.72 40.88 34.19 46.02 32.53 -53.18 79.04 81.62 83.12 32.41 67.98 63.10 22.04 50.80 14.12 50.86 65.14 8.60 63.15 29.84 18.97 74.25 36.90 71.31 49.08 79.75 71.51 17.77 38.65 95.22 97.50 43.40 83.96 38.62 35.63 83.01 40.05 7.71 22.33 87.36 32.51 70.33 56.57 47.03 48.92 27.11 63.38 25.21 90.86 90.48 56.02 35.82 91.94 13.56 43.19 61.17 42.79 59.45 23.74 94.90 97.49 37.35 81.05 8.15 89.96 10.62 78.43 68.49 85.70 0.72 61.54 94.68 89.69 13.14 72.70 2.43 6.36 19.82 75.63 55.44 22.25 50.14 33.84 83.71 89.83 9.21 19.60 95.71 22.90 25.56 84.11 18.33 90.05 67.51 87.51 36.50 14.64 68.51 17.24 50.78 78.80 79.81 78.71 63.13 78.14 -63.99 73.55 72.16 30.95 73.47 14.12 14.58 29.78 23.12 56.38 68.18 71.29 49.54 70.15 19.74 41.75 56.58 20.32 30.12 91.15 93.82 80.04 19.70 80.18 73.14 44.68 34.98 12.76 41.31 46.47 82.10 46.58 34.68 80.17 48.59 74.07 0.88 81.01 36.19 5.20 80.44 60.81 63.56 90.24 82.52 29.71 68.31 87.70 29.57 15.34 72.22 53.10 20.71 90.05 12.96 95.94 53.78 13.57 51.72 57.88 95.89 42.21 26.97 63.20 62.83 99.54 57.75 84.77 28.02 26.47 42.58 18.20 64.60 72.87 33.31 6.34 44.09 63.72 1.04 24.21 80.82 37.36 69.86 36.51 40.81 22.99 39.57 22.31 93.01 71.23 45.51 24.31 62.88 64.46 93.02 51.79 4.47 12.86 89.42 55.44 -97.34 76.77 76.22 73.25 99.09 35.54 9.25 86.51 91.70 99.23 7.58 74.60 84.97 82.56 79.03 62.76 86.04 49.49 73.73 24.31 74.91 5.78 4.15 5.08 45.86 99.11 95.35 66.65 1.93 8.61 4.14 92.12 64.17 33.80 86.62 49.94 98.50 43.90 78.01 31.92 62.54 78.93 9.01 92.52 35.12 29.26 33.51 87.02 75.21 51.49 85.37 40.63 64.35 31.18 52.13 33.81 35.24 60.04 45.37 50.78 96.50 10.22 60.65 33.38 98.74 65.15 31.13 16.00 24.84 78.86 34.20 2.14 57.73 84.30 36.83 28.65 27.75 7.05 63.91 12.82 11.10 2.72 20.61 91.79 5.52 90.23 37.29 30.99 60.37 65.22 95.05 15.79 30.98 22.41 42.21 5.72 86.36 73.26 58.41 96.67 -17.61 74.17 45.58 26.29 32.11 8.69 45.65 71.01 39.77 54.67 96.03 87.88 90.21 43.71 55.97 89.42 64.86 8.49 59.74 83.63 37.07 33.36 59.75 42.90 49.79 11.63 84.96 50.83 49.97 34.63 13.63 88.37 84.31 68.80 56.91 35.96 9.56 26.76 92.31 97.32 67.07 12.60 78.85 47.75 5.55 38.52 70.71 15.79 84.29 55.20 71.06 69.90 80.66 83.53 10.31 80.98 72.24 33.03 51.01 58.79 83.78 65.25 28.52 4.19 28.86 69.45 23.58 97.12 92.36 91.96 23.68 93.67 72.44 74.62 9.12 69.69 26.47 23.41 97.09 0.49 26.15 57.18 27.54 82.76 25.71 43.77 29.95 67.91 96.19 72.85 84.23 0.40 45.54 94.54 32.51 21.73 51.50 24.33 40.25 35.81 -5.19 11.89 21.87 29.71 21.52 67.77 53.16 9.70 47.51 35.67 85.26 47.45 21.72 63.14 71.28 36.33 6.16 4.40 14.45 23.97 30.30 6.24 37.32 53.54 47.78 84.66 79.21 55.04 21.57 77.86 25.81 94.95 11.69 56.70 57.25 89.86 14.86 90.89 59.94 70.12 75.68 62.53 24.13 39.78 25.02 82.62 23.76 94.85 73.49 77.44 57.76 86.22 57.93 32.36 84.38 30.68 44.71 27.08 43.21 16.46 75.39 18.25 41.46 87.98 11.58 88.19 0.65 99.66 93.27 63.45 2.39 51.57 22.47 49.77 60.86 34.58 3.77 57.27 80.04 91.83 73.26 25.57 17.64 55.47 45.33 70.75 26.35 22.43 25.45 16.45 84.09 18.13 1.95 92.37 79.00 51.70 85.28 55.67 24.00 0.91 -97.97 54.39 18.26 32.52 72.91 94.38 93.86 27.77 76.84 65.14 54.62 59.01 90.66 48.75 89.91 18.64 23.91 41.47 82.35 11.16 83.40 75.87 74.53 37.04 43.63 3.60 49.54 93.09 66.44 5.61 99.07 61.18 73.85 50.09 79.48 57.96 85.62 66.47 78.11 64.24 26.16 54.52 75.61 24.52 8.38 75.88 7.55 33.78 40.32 49.55 56.75 18.55 63.19 47.33 29.08 95.90 24.54 97.87 39.85 14.16 29.86 94.57 7.25 13.47 70.97 73.12 51.78 20.12 0.21 46.43 23.26 13.65 76.26 10.47 7.55 60.54 96.17 62.53 52.30 53.24 55.99 87.34 4.83 64.16 74.45 85.61 83.89 81.14 10.70 62.04 49.61 35.31 74.92 51.74 73.07 25.02 5.80 69.75 63.99 71.36 -28.27 51.40 3.09 22.90 65.91 25.10 49.63 54.73 94.36 26.60 84.11 98.30 35.33 51.98 96.26 86.30 10.91 4.57 49.12 97.21 86.56 6.76 79.63 94.72 46.88 61.18 97.63 76.89 8.06 86.94 80.21 64.43 20.81 88.49 58.29 64.57 98.56 12.31 72.77 42.76 85.79 32.18 17.65 0.28 15.95 16.53 77.96 4.29 38.51 32.69 99.61 89.06 20.47 84.57 64.52 43.79 21.82 42.44 10.75 63.05 7.67 90.64 5.23 81.31 39.36 25.59 44.15 83.60 1.06 78.96 96.40 74.03 93.17 9.81 82.63 69.03 57.58 23.66 88.28 55.50 94.57 27.61 46.11 9.43 14.44 1.14 44.42 6.09 32.43 74.83 24.36 96.00 37.63 69.45 25.32 96.39 56.52 84.29 23.65 58.49 -40.13 29.40 90.35 67.49 54.57 17.47 98.29 58.29 66.18 58.55 21.84 22.57 18.69 24.19 42.61 28.87 33.25 11.23 2.57 61.64 6.00 51.99 29.26 81.45 41.55 94.95 86.59 20.75 73.46 5.97 34.35 36.31 79.60 78.62 56.90 8.03 99.42 39.00 3.22 67.97 47.94 13.82 76.64 20.69 79.90 81.53 90.22 24.20 95.04 92.78 71.73 77.76 23.19 13.50 16.44 87.25 86.22 7.90 2.98 80.89 36.35 44.58 26.95 2.43 53.20 10.63 89.08 11.89 92.84 71.09 84.05 42.19 71.07 91.55 69.43 10.38 82.45 74.92 88.80 61.36 25.98 47.12 22.41 18.06 81.71 27.60 37.31 18.79 25.64 69.20 52.96 94.54 1.52 64.90 75.59 90.13 89.76 35.12 79.99 73.14 -90.25 81.13 22.56 62.97 90.69 53.25 92.04 33.40 55.39 86.64 11.74 39.29 0.51 61.68 95.60 75.40 12.67 87.68 39.63 36.45 73.29 62.72 51.18 72.66 62.70 0.28 86.62 32.70 50.38 66.20 0.76 59.68 10.47 89.29 8.72 6.54 77.96 26.53 83.41 87.95 0.16 51.05 10.04 32.53 71.78 73.78 13.40 64.83 69.09 58.24 3.20 36.25 87.56 29.32 29.08 24.08 68.14 70.14 14.46 77.58 13.50 66.43 23.05 93.97 40.93 44.08 0.67 95.77 37.70 13.19 79.21 9.61 85.29 15.03 40.07 85.77 9.80 81.83 93.56 69.16 88.80 90.98 90.02 64.95 66.28 39.93 69.05 30.18 20.76 93.88 13.21 18.28 1.96 71.69 89.87 82.81 12.98 94.78 83.00 86.87 -1.22 21.24 40.24 98.39 63.35 44.34 79.99 46.85 80.17 23.67 16.72 8.72 39.64 66.70 43.51 33.96 14.68 59.82 8.13 97.12 17.63 29.64 65.75 20.84 90.79 57.39 62.38 66.66 49.08 30.44 11.99 81.57 76.93 61.55 64.46 31.51 99.78 46.36 55.86 72.97 10.06 40.95 54.42 83.74 51.66 62.32 71.40 63.67 42.02 80.49 11.56 42.01 41.80 14.80 99.86 44.13 66.00 4.67 15.10 71.04 83.29 46.82 62.13 49.41 94.84 21.44 82.96 66.01 99.87 78.83 84.28 40.08 77.39 80.84 63.50 0.30 25.83 96.13 39.20 62.01 35.30 75.50 80.50 42.12 90.89 22.12 2.59 30.28 99.37 14.15 40.80 76.15 16.76 45.44 97.46 69.19 5.52 57.88 17.92 25.39 -58.44 75.35 38.24 24.08 45.69 28.33 91.11 11.37 25.32 24.10 35.42 97.41 20.65 64.40 20.54 0.19 32.06 44.95 16.71 84.89 76.12 48.81 15.68 73.52 37.92 19.69 65.60 19.13 7.54 29.17 53.06 21.44 10.36 77.64 45.23 92.28 78.74 2.45 84.08 57.58 86.10 13.09 13.02 7.99 14.73 58.00 34.36 37.79 98.96 61.67 79.36 61.48 21.32 51.93 30.74 7.64 86.62 42.43 70.42 96.74 97.78 60.01 16.45 45.70 1.51 56.62 79.07 31.15 82.17 1.50 11.93 74.87 21.96 16.43 44.43 15.94 5.00 72.06 11.58 70.69 6.96 7.81 8.45 82.18 78.88 70.93 83.60 37.73 6.65 64.61 14.24 43.35 82.14 70.83 21.70 53.54 40.57 95.70 62.81 11.60 -30.83 75.68 66.04 3.72 21.18 82.24 25.94 77.26 43.19 60.50 9.44 16.99 41.78 48.88 2.20 18.34 76.05 61.87 46.52 39.51 9.41 77.66 81.33 40.80 81.00 98.13 68.63 10.55 94.11 60.22 21.20 94.79 12.63 61.83 19.27 58.43 26.65 32.62 35.39 93.40 44.38 6.35 60.05 13.02 15.27 46.09 9.26 28.61 1.57 83.84 23.13 69.01 23.47 74.75 66.41 98.48 56.88 59.66 6.34 58.90 68.78 67.37 29.46 0.58 64.47 7.13 1.47 1.75 15.58 23.21 8.09 95.94 53.26 62.20 54.24 25.66 2.07 4.81 14.31 18.50 95.00 62.51 6.59 78.36 45.90 20.04 53.54 40.86 62.51 9.06 83.34 76.10 1.89 91.05 24.00 38.62 42.32 76.88 2.34 90.76 -67.35 11.28 90.49 51.07 33.97 71.77 5.57 80.72 94.99 18.29 74.94 13.82 74.29 4.94 89.29 93.92 78.02 93.17 14.95 51.36 82.88 42.55 26.54 83.84 68.24 44.44 14.63 18.73 29.24 99.23 67.30 62.01 18.12 39.51 20.46 75.33 10.05 52.60 42.25 21.95 14.21 97.06 81.86 96.88 94.62 14.39 69.77 18.36 93.00 82.49 97.05 27.57 30.60 64.17 77.75 0.14 73.53 67.68 13.66 0.50 7.99 18.65 76.51 62.49 12.11 39.02 33.42 4.05 30.04 99.96 51.84 98.23 32.69 1.58 73.43 88.80 81.36 6.91 58.61 58.61 63.04 79.63 81.15 51.92 15.93 61.18 44.70 58.09 6.57 1.25 65.46 16.36 38.71 71.90 21.87 15.24 13.75 56.88 56.45 73.23 -76.70 8.51 2.38 87.09 76.92 69.00 17.68 8.16 42.29 55.14 1.32 85.71 91.54 56.72 81.36 38.95 45.26 29.70 9.31 78.30 90.64 97.08 72.08 16.89 97.68 62.31 8.78 49.13 95.87 35.05 21.29 36.32 44.50 91.76 12.82 95.10 85.59 7.38 27.93 83.18 23.73 94.40 28.80 49.94 19.41 93.99 21.54 46.57 35.53 29.96 10.99 60.41 25.06 90.11 53.32 78.27 47.17 63.58 83.65 8.85 66.25 39.58 93.75 24.40 17.59 73.23 53.73 73.35 74.39 84.97 83.45 12.51 62.84 58.03 59.57 14.98 31.38 91.38 19.15 50.99 89.86 46.13 46.06 71.57 72.43 90.42 17.21 7.32 89.02 94.84 6.87 38.51 62.17 79.97 40.96 16.66 92.17 10.39 17.24 77.05 -74.67 51.55 16.19 76.58 66.37 57.81 72.07 0.19 23.23 2.74 21.57 65.17 76.98 27.21 77.87 23.57 57.72 73.56 17.75 51.47 42.81 38.91 28.50 64.29 45.41 70.13 40.18 2.84 20.35 37.64 89.15 5.04 40.23 31.44 20.91 5.59 32.37 50.13 29.15 35.23 92.71 65.25 71.49 42.90 18.15 97.95 70.91 13.28 66.32 66.77 70.80 88.00 63.52 61.92 21.68 64.13 56.52 80.57 74.78 26.06 19.09 17.73 6.27 85.33 23.14 78.78 19.66 15.80 38.62 88.07 71.40 77.51 59.06 29.74 13.25 63.70 38.74 57.39 94.68 17.98 41.86 76.56 0.37 56.33 38.48 47.25 29.84 67.77 11.62 44.63 63.46 58.14 88.42 88.26 41.45 66.90 99.54 27.88 12.50 0.44 -57.09 40.64 12.20 71.32 86.44 4.40 69.07 77.43 91.60 23.98 19.60 72.88 77.92 78.81 46.65 1.01 2.89 73.04 57.84 13.05 47.39 84.36 34.20 42.58 79.98 6.62 75.66 17.12 52.23 91.62 90.92 46.31 81.57 95.77 35.78 16.79 24.31 74.47 68.14 34.82 0.29 66.63 71.55 74.55 0.14 8.80 97.66 92.48 42.65 28.05 58.15 5.22 10.95 57.66 4.61 47.45 97.54 99.61 21.16 77.28 59.42 52.82 86.31 93.73 99.92 0.33 49.95 37.29 1.23 85.21 5.97 29.86 30.76 60.33 8.95 65.73 19.69 3.26 16.11 81.98 97.33 11.94 98.74 43.42 86.73 46.68 55.09 70.26 38.43 90.90 92.21 2.16 72.59 18.89 47.73 55.39 80.47 61.44 57.63 2.15 -77.62 7.76 73.45 62.33 76.20 89.17 55.43 59.77 21.79 4.23 70.44 78.88 16.40 68.80 14.50 79.74 17.85 19.31 36.51 32.85 15.94 81.03 7.02 90.85 10.79 27.93 55.19 10.97 99.72 23.78 63.19 76.89 1.29 81.17 27.27 82.06 48.78 40.54 67.34 75.68 99.09 35.20 28.74 98.09 85.24 55.79 6.77 31.68 97.20 18.43 67.21 41.58 72.55 44.18 85.18 57.22 84.88 10.20 86.80 87.37 97.72 85.38 87.25 48.58 21.51 14.39 11.17 94.52 88.72 3.90 65.52 57.76 35.73 10.73 55.37 90.55 85.12 13.34 31.36 81.96 48.28 19.13 22.91 14.01 7.74 83.14 26.71 64.90 58.39 42.03 64.17 86.76 86.04 21.86 67.50 5.74 20.47 84.62 14.05 77.88 -95.81 22.40 55.99 18.11 76.28 87.48 52.88 91.47 58.40 67.40 46.50 6.32 29.50 38.04 47.92 29.62 86.08 33.89 35.89 80.12 38.56 80.97 17.30 9.04 10.45 97.03 57.22 80.78 22.52 71.29 50.53 70.77 30.15 72.71 19.00 60.44 42.02 10.96 90.19 85.90 41.71 16.13 48.73 86.65 43.63 52.29 52.76 73.50 41.50 94.87 48.00 88.03 83.58 93.25 23.69 27.32 89.16 7.14 84.75 38.13 79.67 98.67 44.12 24.49 25.08 20.45 42.46 61.94 95.06 53.88 3.09 22.18 14.81 9.52 36.64 73.14 45.77 37.15 86.04 31.93 9.98 92.44 89.47 94.07 32.26 3.84 98.55 39.55 11.79 8.31 16.44 72.06 52.06 21.20 1.51 50.90 55.33 64.68 87.19 52.67 -4.09 86.35 16.93 60.61 27.48 75.15 65.72 80.84 21.42 37.36 11.70 48.56 61.90 1.25 23.50 77.90 96.48 7.74 98.93 9.44 7.07 30.71 1.72 17.11 74.87 60.71 99.20 82.06 62.24 55.91 23.15 48.13 92.93 30.21 6.26 93.57 43.76 63.83 6.34 63.16 49.99 93.34 28.91 69.58 84.32 51.97 41.46 81.30 88.06 54.62 53.34 88.15 6.88 6.04 15.09 61.96 85.92 93.03 3.53 87.24 64.38 4.50 24.26 48.42 92.50 91.12 47.54 49.35 63.12 76.12 21.58 36.25 81.99 30.25 2.24 7.38 26.72 91.24 79.29 22.03 12.81 43.06 59.22 84.08 93.61 25.01 38.16 14.68 85.60 24.01 73.04 95.41 38.24 45.77 89.31 18.10 37.57 48.57 85.91 32.08 -54.68 69.67 24.98 31.64 82.24 96.16 71.76 27.93 10.95 38.49 96.88 70.41 62.79 3.11 92.04 76.32 38.11 38.13 12.46 4.53 11.83 22.47 76.35 23.72 68.23 66.90 69.51 32.98 15.17 65.46 48.76 39.79 48.28 17.93 53.12 36.39 12.84 48.03 87.31 43.77 62.19 78.63 93.05 71.61 92.93 38.59 4.85 46.30 39.89 6.78 2.25 31.82 90.31 90.33 3.22 58.22 54.02 48.47 78.82 92.06 12.92 92.17 40.20 77.87 89.54 76.74 17.32 7.47 78.51 28.11 49.96 70.09 98.25 17.60 64.25 23.13 88.83 59.68 42.64 61.96 67.25 21.66 26.28 15.75 75.52 17.84 63.04 24.09 1.41 28.12 24.65 97.11 38.38 4.63 37.73 63.64 53.17 55.59 40.10 73.68 -14.15 32.14 5.35 89.74 8.58 17.61 85.92 89.41 67.41 15.48 67.30 36.16 57.37 1.36 46.75 35.37 92.90 10.75 29.26 47.68 25.35 96.51 88.84 74.83 39.25 98.40 71.61 49.28 62.98 40.82 15.18 19.16 33.74 5.84 49.61 32.65 82.95 94.46 51.16 90.40 37.14 87.11 22.68 26.81 39.04 34.81 29.38 14.51 5.76 92.39 59.70 40.00 16.89 84.72 92.73 42.53 75.66 51.86 50.06 2.53 95.47 54.62 45.55 84.93 61.88 48.44 23.83 28.57 97.42 32.44 87.86 57.71 41.47 58.11 62.95 81.92 96.91 2.83 18.56 88.32 41.24 32.60 4.88 41.61 39.37 45.05 52.61 51.03 54.12 92.05 50.47 90.66 6.25 94.14 52.06 37.21 55.08 37.99 64.76 2.18 -54.04 55.22 53.14 68.61 43.81 74.35 73.45 51.50 45.75 98.41 2.60 13.52 91.09 24.15 87.65 82.30 82.47 82.35 85.32 2.18 74.39 99.52 75.36 84.51 3.96 64.61 84.54 1.34 55.91 99.37 12.34 32.99 48.02 93.36 44.44 35.41 52.70 60.49 58.43 12.93 40.81 88.76 11.48 29.08 2.87 97.08 60.71 81.22 3.76 39.01 70.65 64.98 10.30 44.89 10.16 57.85 23.87 49.66 69.00 13.31 14.85 86.55 99.24 64.10 9.01 71.11 61.78 35.14 9.68 42.35 14.33 10.34 53.35 19.08 76.52 15.52 56.08 91.42 74.35 5.79 15.52 47.64 3.45 20.40 93.74 34.36 41.16 7.18 73.71 33.15 4.84 73.44 96.02 82.28 65.58 63.01 50.23 51.50 2.83 1.49 -2.05 70.82 43.11 18.53 7.40 14.26 49.68 41.09 12.57 45.17 27.14 62.25 80.06 19.97 4.99 86.95 79.91 16.23 68.77 0.23 21.05 5.00 32.48 55.55 10.49 20.29 39.86 88.90 79.30 94.83 63.38 57.15 64.02 68.62 34.80 78.78 13.72 83.95 62.65 79.17 7.19 64.75 82.26 92.45 4.01 36.64 90.49 72.73 77.71 63.93 39.86 59.85 62.00 40.00 10.85 15.08 30.73 36.77 29.53 78.24 9.72 53.40 25.14 58.03 78.35 12.94 84.31 44.55 47.00 68.55 5.37 37.29 63.93 16.42 38.96 57.48 54.82 52.64 48.14 27.89 94.56 30.62 65.69 29.28 61.46 51.77 62.33 79.84 9.37 59.43 24.59 51.18 27.06 93.73 60.95 60.84 97.40 65.01 25.14 56.12 -38.01 50.29 98.85 97.28 64.15 12.11 71.06 4.82 32.94 62.52 84.99 96.49 31.40 49.92 9.61 35.26 10.44 40.00 67.37 33.44 50.57 84.17 5.67 39.62 7.50 15.06 19.83 49.83 15.45 45.46 75.45 37.50 3.59 56.50 53.01 51.90 71.01 74.27 19.51 10.30 5.50 64.09 68.74 96.20 80.82 0.99 35.06 89.91 77.41 93.06 73.33 64.77 54.98 60.80 88.38 12.98 95.03 64.84 98.56 70.42 21.35 91.08 99.23 13.26 75.08 29.96 28.81 40.42 73.78 87.89 49.87 58.85 51.57 35.20 70.27 47.07 70.28 70.22 32.75 26.02 31.71 82.50 13.64 48.82 66.17 66.18 40.77 80.51 81.30 37.19 26.56 48.97 71.96 28.14 15.31 80.65 18.42 68.19 15.62 10.90 -48.17 59.60 6.18 50.91 20.46 23.55 13.31 54.55 45.43 6.78 94.59 45.09 69.90 73.84 84.43 13.24 14.47 69.32 74.37 44.17 88.51 57.64 48.10 79.70 46.23 37.66 8.41 77.28 54.18 30.81 12.40 15.01 8.79 63.70 19.34 77.36 19.58 7.43 87.56 13.66 81.12 17.80 57.04 12.94 87.88 97.59 33.01 52.29 70.74 4.40 91.80 49.84 0.67 37.53 98.71 32.52 42.08 8.47 73.94 89.19 82.20 27.22 2.50 87.26 17.05 49.56 5.98 92.33 68.60 33.50 5.34 8.81 32.75 79.10 97.92 15.59 60.79 99.22 69.69 23.46 25.73 56.01 46.61 62.15 16.13 67.54 94.35 15.85 61.98 33.26 49.52 20.60 69.22 87.10 89.36 79.69 99.78 24.66 12.50 55.07 -18.24 31.68 15.16 10.11 66.60 2.99 56.71 92.66 49.08 97.69 95.34 20.91 55.52 15.98 44.41 7.34 28.50 67.84 15.07 69.67 46.33 77.97 81.91 74.07 72.76 10.53 25.73 76.44 58.69 51.63 98.07 17.79 49.15 61.39 16.23 78.36 59.84 47.37 77.79 92.98 25.15 80.17 97.03 86.16 5.29 39.90 78.71 96.35 48.13 77.22 89.47 7.93 83.53 27.13 62.32 60.91 7.09 73.71 73.66 76.22 92.19 59.67 26.15 24.78 13.90 18.76 78.26 22.23 96.65 15.65 9.17 95.67 57.34 82.71 25.54 14.40 68.07 75.36 50.83 56.83 88.89 37.69 0.94 41.76 80.17 12.29 16.74 82.03 64.55 25.64 80.96 56.39 92.86 18.82 98.90 58.80 58.50 79.59 74.82 59.36 -92.51 34.43 78.97 71.36 52.00 38.06 99.93 81.70 12.14 3.73 87.28 18.03 87.06 22.58 8.74 9.29 77.50 34.19 5.62 56.69 85.21 9.40 8.14 49.60 61.12 87.78 79.58 64.39 58.93 57.61 33.20 6.93 45.37 56.03 38.27 49.06 51.17 92.34 10.18 88.88 31.58 97.04 12.64 98.18 2.44 16.97 27.16 81.71 94.33 72.41 10.10 91.01 11.69 90.41 41.24 85.74 26.99 67.77 89.50 86.17 3.04 38.29 33.29 5.03 82.04 35.46 9.21 66.35 37.89 91.49 93.33 73.99 11.78 82.87 98.63 47.75 15.22 67.65 87.84 22.39 42.10 49.80 2.54 78.44 37.32 35.78 96.27 49.83 81.49 16.22 66.55 88.40 92.91 76.63 67.09 7.40 45.41 89.92 97.46 31.71 -22.69 38.14 94.47 76.84 99.67 14.07 76.70 16.55 43.11 44.23 62.25 93.27 59.86 9.05 84.83 93.67 90.41 7.52 81.92 65.56 76.98 55.98 64.37 8.96 99.65 29.54 20.21 78.58 98.27 36.16 48.11 80.46 72.33 55.41 82.45 55.90 41.81 23.86 95.27 2.08 5.48 4.72 95.37 23.85 36.90 89.49 26.02 55.34 10.88 37.45 81.84 93.07 8.98 22.12 33.25 84.50 38.67 99.11 90.82 37.31 39.40 16.47 31.37 82.12 19.93 63.84 15.03 77.79 85.42 17.25 74.31 78.77 3.29 76.88 24.14 10.92 70.40 56.46 56.05 52.39 45.32 20.28 60.33 67.78 60.09 32.89 21.37 24.27 93.26 36.03 99.20 51.22 21.88 47.58 0.48 98.53 85.71 78.18 36.45 47.75 -23.82 95.80 60.85 70.28 1.68 6.32 51.56 70.26 97.62 1.50 50.33 72.28 50.84 36.41 0.74 86.27 26.77 4.33 89.02 38.78 79.28 25.50 41.83 79.18 1.89 53.90 45.36 38.78 49.31 99.84 61.89 77.10 77.98 92.82 57.47 86.94 12.18 19.75 62.42 90.22 73.66 17.95 27.45 38.91 54.47 98.90 48.86 56.63 36.99 91.29 52.48 58.15 5.45 50.32 76.10 7.59 47.69 33.55 75.97 49.43 29.14 23.37 36.71 59.93 22.16 31.94 67.05 10.45 64.19 76.18 86.58 38.59 9.88 93.52 40.40 96.52 25.41 75.74 22.58 58.48 85.89 63.94 94.39 14.14 54.33 58.21 78.10 3.74 43.22 60.46 43.99 62.06 48.66 70.95 55.56 16.03 1.55 14.13 1.71 15.26 -65.71 53.96 71.05 24.69 58.10 69.25 49.38 55.96 82.23 22.98 57.90 49.47 60.64 50.70 93.26 53.78 46.74 83.09 62.01 1.78 79.69 27.15 90.08 77.57 47.78 67.53 5.53 26.79 55.80 17.28 76.70 86.72 12.46 86.24 19.86 83.06 47.69 4.63 14.34 8.75 97.62 92.72 75.43 63.17 81.59 53.93 88.98 98.51 94.95 66.86 78.66 17.09 10.12 35.79 36.46 39.82 9.34 40.57 79.10 35.59 9.77 83.70 38.15 11.84 82.47 35.50 59.42 78.76 93.39 68.97 75.15 7.39 33.31 2.55 24.01 48.48 53.63 94.33 97.74 87.39 40.53 60.30 72.58 50.26 95.89 61.61 22.88 19.38 83.73 86.54 52.41 85.18 48.00 25.98 55.37 28.68 38.57 38.51 3.50 39.37 -41.78 75.44 56.32 16.52 16.69 21.88 26.66 23.35 82.01 92.29 70.34 56.75 7.65 88.02 9.00 39.24 4.57 57.46 75.73 20.04 94.50 12.20 61.62 31.89 12.78 15.84 75.07 88.03 15.01 33.02 65.14 50.30 88.25 8.19 36.32 88.00 62.40 52.18 2.51 75.86 75.17 62.64 65.51 19.27 19.50 14.53 90.20 37.43 47.73 51.34 86.75 67.35 2.60 31.41 52.24 96.25 66.86 28.88 24.40 22.37 35.87 28.67 11.88 44.48 6.62 60.86 0.73 92.64 25.63 31.69 26.46 77.32 59.11 82.65 95.68 45.80 96.48 47.59 3.79 54.16 81.73 69.40 29.35 88.50 13.31 44.36 75.57 74.52 24.37 73.68 78.50 1.90 47.60 20.93 75.10 19.76 77.70 5.17 66.42 71.37 -98.18 2.48 15.45 42.71 5.55 66.84 68.13 33.26 91.61 35.86 56.76 65.87 42.43 2.19 72.96 9.86 61.92 33.96 93.48 87.88 21.96 48.89 40.07 85.10 14.22 43.30 79.11 50.87 55.03 87.01 21.67 63.14 48.01 11.36 72.51 95.91 78.12 42.66 75.86 32.30 38.23 40.73 39.17 76.79 31.07 84.01 27.01 80.69 93.59 24.81 87.26 68.35 82.46 8.02 35.63 44.95 45.24 70.61 38.51 66.95 67.21 85.95 38.01 52.51 5.69 6.45 79.73 14.01 21.62 79.16 7.53 13.24 92.40 17.73 68.26 70.80 58.06 0.18 73.06 82.66 45.51 99.77 79.47 69.76 40.13 46.36 78.37 30.80 39.04 35.18 85.64 20.38 25.17 59.41 89.28 48.81 79.86 82.88 6.44 64.72 -1.08 47.65 12.49 48.34 97.83 19.36 53.24 62.30 32.77 27.93 66.70 60.11 47.92 37.75 1.84 66.92 52.46 21.57 56.68 69.48 76.82 76.54 49.34 46.74 73.68 43.15 91.86 21.34 99.55 2.39 4.11 40.14 41.80 48.35 95.92 54.01 49.55 31.59 48.09 16.33 19.67 88.84 40.46 13.53 23.85 93.61 24.63 62.20 65.56 21.15 44.38 59.22 41.23 36.89 87.42 50.95 99.40 96.27 33.25 39.57 81.84 29.00 34.83 32.05 63.94 97.96 55.55 59.69 97.12 54.02 66.46 25.43 47.49 44.46 23.76 11.53 72.38 35.45 54.90 37.25 33.09 12.60 30.76 89.73 93.68 20.91 93.03 2.74 58.58 35.46 25.19 30.14 6.36 95.35 28.40 20.98 92.56 82.34 68.64 84.47 -53.45 76.36 87.39 7.82 65.27 91.60 41.47 20.09 92.42 0.25 43.68 62.66 12.45 24.11 67.61 66.79 41.99 96.97 19.48 24.41 78.08 1.20 8.82 32.89 52.13 45.63 54.71 57.60 36.07 52.21 31.54 83.04 16.41 96.13 6.16 94.32 11.94 41.65 19.42 39.45 59.36 58.05 29.60 65.43 66.89 93.54 82.70 54.50 70.44 51.37 31.90 4.32 76.77 53.75 32.91 4.72 1.19 23.21 86.61 86.60 87.45 76.21 51.05 70.55 94.88 46.02 49.82 30.34 6.81 45.32 23.01 69.82 90.44 28.89 18.37 95.78 79.23 52.09 80.70 84.89 5.57 89.49 53.92 64.63 47.38 49.24 37.63 64.83 65.96 23.33 84.41 96.20 77.57 67.68 7.13 63.11 43.52 25.18 50.98 79.24 -34.27 86.97 82.47 52.51 83.07 40.42 46.16 62.01 49.53 93.62 14.71 65.58 90.01 19.89 57.77 44.30 30.52 24.54 42.11 55.46 98.57 23.22 80.77 27.09 25.04 91.46 92.70 59.70 42.13 83.32 6.81 41.36 41.45 45.45 27.10 19.60 17.37 23.23 73.41 15.65 35.74 60.63 4.02 62.61 28.57 3.16 81.63 50.98 64.82 58.23 22.42 65.05 98.16 91.66 89.51 75.00 52.94 34.58 11.95 56.16 47.11 31.24 15.39 10.99 99.35 0.21 44.35 8.53 61.48 57.67 96.24 91.90 12.28 89.29 48.14 14.09 26.42 50.82 50.77 38.23 14.66 90.03 29.23 98.10 66.01 15.53 46.69 9.49 48.19 19.94 52.95 44.47 94.53 90.48 69.25 66.01 39.51 32.49 81.61 80.55 -38.05 61.44 98.95 62.63 61.99 15.09 31.18 64.14 69.99 69.93 48.93 14.83 42.28 0.93 21.10 89.51 66.64 15.21 33.21 37.62 10.64 38.59 36.62 2.53 93.55 95.78 66.42 62.49 56.40 74.43 15.58 21.81 40.31 45.94 25.98 96.50 2.10 96.36 69.60 70.79 54.34 9.66 84.75 4.57 42.20 66.25 93.79 35.61 13.04 8.79 18.18 35.95 66.02 0.48 21.67 86.62 45.17 18.86 88.75 40.53 47.72 75.22 50.24 78.20 51.59 17.29 73.09 56.57 61.87 98.28 40.34 43.27 30.88 30.68 75.06 86.40 25.50 88.74 66.98 81.80 31.64 42.94 16.43 72.98 36.83 70.83 70.56 74.86 91.51 55.07 70.84 3.52 15.23 44.92 71.37 62.91 61.22 74.40 50.45 94.89 -25.07 88.40 3.60 55.73 15.93 82.52 62.56 72.74 23.94 38.59 74.06 73.00 47.08 90.61 57.35 93.02 73.77 14.22 90.95 92.42 31.32 22.48 40.67 94.70 75.19 55.60 39.20 70.07 80.90 16.05 62.27 39.99 16.34 74.03 47.02 22.72 95.68 20.56 95.55 12.70 72.88 71.45 29.69 23.37 24.06 17.77 60.20 48.70 86.38 55.62 32.57 45.58 17.35 76.61 5.81 38.02 68.43 96.13 35.34 62.14 36.11 43.68 8.90 14.70 17.20 28.24 94.19 77.25 3.19 53.35 59.80 40.39 56.61 70.00 0.48 97.42 34.15 61.09 56.92 33.21 74.68 89.88 59.92 62.86 88.06 10.93 10.10 30.42 92.07 7.24 32.48 58.07 74.07 56.60 24.68 55.15 35.04 22.00 7.29 83.79 -97.55 74.88 64.26 25.01 41.65 54.90 71.72 84.49 98.81 18.60 31.48 11.45 2.37 8.35 72.23 12.42 46.94 75.35 16.01 57.51 35.09 4.84 77.96 31.17 49.25 22.23 16.72 6.36 80.12 90.06 64.99 19.77 81.95 44.85 61.96 84.79 80.59 2.40 85.89 64.37 52.10 77.23 12.59 8.52 47.54 6.67 37.30 13.17 92.88 10.94 77.64 36.46 55.05 97.41 34.73 76.54 98.75 6.49 33.37 81.67 20.08 95.38 90.54 5.67 2.92 28.59 43.88 0.64 23.52 74.06 64.36 73.82 43.27 84.97 93.30 69.57 48.31 51.41 62.14 53.31 86.91 9.71 26.11 2.47 50.71 58.46 94.29 51.51 58.74 65.51 40.82 22.41 71.86 45.19 96.11 60.09 44.28 23.55 42.95 77.81 -3.78 15.51 37.04 3.87 7.80 34.74 31.53 8.99 24.39 49.78 12.94 41.79 21.37 6.46 25.90 98.90 97.59 72.70 32.19 33.93 36.00 94.22 45.88 27.07 46.82 69.30 31.07 37.84 52.77 7.34 57.40 84.12 11.29 39.23 17.04 82.98 76.89 94.84 39.02 40.28 43.40 5.96 92.28 37.48 98.39 31.72 34.13 26.93 80.80 30.88 67.79 65.59 17.91 63.52 15.64 46.42 98.17 10.78 99.60 32.07 33.54 35.95 71.25 63.61 27.12 96.21 10.66 76.94 51.85 52.02 7.63 94.56 72.99 41.61 31.77 78.35 13.95 35.67 52.12 51.10 68.65 2.05 27.11 1.08 68.27 31.13 76.04 62.24 68.77 33.81 54.18 26.19 33.30 3.95 79.35 79.29 23.45 43.52 26.19 32.70 -77.00 85.36 45.46 42.18 58.16 52.37 61.25 14.13 28.46 69.16 67.23 78.72 45.77 43.39 86.75 66.89 46.89 44.78 70.65 21.26 55.94 39.33 31.88 5.94 1.56 92.56 53.29 11.99 18.78 57.92 93.13 55.86 45.60 38.65 60.72 95.13 51.64 42.33 90.05 56.64 43.52 19.01 40.44 41.91 98.38 32.13 29.02 55.31 4.68 39.68 94.03 52.60 64.48 66.92 3.45 4.80 39.30 65.51 24.29 66.70 22.74 75.03 75.26 76.63 70.87 3.39 85.85 2.76 68.24 33.34 93.62 52.67 27.63 32.15 32.89 73.69 79.29 95.30 13.05 71.76 95.83 55.92 99.87 70.02 27.86 46.60 88.98 50.18 24.28 3.58 17.50 56.15 42.36 56.84 34.31 65.26 38.60 26.26 95.31 70.15 -5.63 72.60 37.07 48.45 83.70 18.87 28.86 97.09 45.84 50.99 97.78 25.82 74.76 37.06 51.67 48.91 37.62 22.71 34.79 92.90 45.08 32.68 2.11 70.34 20.10 66.15 84.03 24.32 47.12 48.58 76.35 85.78 92.78 37.52 61.92 95.78 76.40 41.74 42.98 51.74 86.15 29.54 50.62 40.43 35.86 79.64 17.39 83.53 95.75 87.09 55.86 12.49 19.21 29.55 63.17 75.71 86.83 60.01 60.19 93.06 22.30 61.78 6.42 1.69 13.59 28.55 12.38 52.98 58.23 81.90 62.45 34.11 2.43 68.25 91.10 15.33 53.76 80.95 15.64 57.92 11.29 37.68 45.78 6.23 79.49 89.78 36.64 68.63 13.92 51.36 83.58 87.33 79.82 18.68 82.14 24.72 98.79 73.35 4.29 79.96 -40.52 8.63 59.64 29.44 76.59 0.88 33.44 45.89 95.44 38.13 15.80 95.85 79.59 50.85 10.06 74.24 13.21 13.03 19.28 38.28 27.74 63.90 57.91 10.89 30.97 91.18 29.23 28.88 61.86 83.77 1.60 86.44 96.97 31.51 56.98 34.45 91.99 55.72 3.84 59.22 62.06 23.07 89.93 1.06 60.50 48.25 67.44 95.30 2.37 83.26 16.15 61.29 53.62 40.91 67.41 65.67 96.23 89.77 53.90 32.30 53.62 2.49 2.58 89.26 21.02 90.91 82.11 6.08 59.97 65.73 19.38 60.41 9.46 26.95 94.73 28.06 63.17 8.26 25.69 57.44 68.43 94.81 5.11 35.98 0.71 26.58 58.22 93.40 78.05 26.54 24.30 29.24 63.38 58.75 96.29 49.46 16.71 97.66 7.45 5.62 -81.73 10.29 67.93 28.99 89.17 59.03 59.89 29.52 1.90 18.73 61.46 14.77 37.24 66.86 48.95 82.33 85.53 52.60 41.21 11.06 87.69 15.56 37.38 12.49 81.81 72.92 67.11 55.35 40.89 12.48 55.01 35.03 21.42 59.94 16.78 76.33 25.78 41.44 86.12 23.47 85.61 62.41 66.17 37.10 31.23 32.59 75.91 9.15 48.22 9.63 97.39 59.02 57.01 55.69 36.27 6.97 98.63 12.76 67.73 69.25 80.81 46.65 39.91 48.81 65.57 45.05 19.34 11.11 78.69 86.68 54.62 63.43 81.66 6.67 59.81 7.26 81.05 36.22 36.64 25.23 79.29 20.15 95.23 69.29 50.39 62.70 32.75 47.80 99.56 70.38 16.18 41.05 94.89 64.70 45.16 19.92 40.41 16.70 31.19 93.87 -91.64 32.25 46.77 64.59 88.75 5.88 57.91 0.99 58.23 36.96 92.17 22.43 42.21 9.07 73.90 53.41 7.03 54.10 81.06 95.38 43.66 83.36 36.93 28.36 39.67 36.49 78.90 91.09 10.31 64.80 30.98 55.52 42.38 0.86 48.60 8.77 19.53 53.20 77.79 59.85 46.44 83.55 37.64 64.40 5.48 97.17 25.41 49.22 28.60 38.95 99.55 14.82 80.99 34.87 65.25 20.82 59.09 87.87 30.54 80.60 74.30 7.76 47.84 64.37 46.00 82.03 51.46 86.17 40.00 17.64 56.25 21.90 52.86 42.84 90.11 92.64 47.67 13.53 79.17 41.14 98.66 84.89 28.90 32.59 21.84 50.81 95.54 5.93 89.10 2.30 25.66 0.24 62.03 16.24 4.05 78.40 19.51 60.09 63.93 22.81 -26.92 14.96 29.79 4.22 64.56 83.37 83.85 32.88 31.57 85.71 6.69 96.24 91.56 79.30 89.98 61.97 21.06 8.33 47.26 57.52 50.66 67.78 81.59 25.63 8.16 77.68 63.02 54.90 92.51 40.23 82.10 58.53 14.51 80.73 92.14 55.52 17.66 49.99 6.06 23.20 28.60 80.83 81.24 42.46 78.93 67.70 90.35 8.07 94.64 24.71 79.94 21.96 55.05 11.23 35.14 99.66 34.47 85.28 35.50 82.71 54.61 92.04 94.27 50.99 58.52 57.42 90.75 57.38 63.60 18.22 51.08 50.74 10.10 41.58 51.26 88.66 68.90 31.87 17.12 90.58 66.22 99.77 13.17 95.50 50.20 71.78 20.88 18.43 82.37 22.44 2.56 14.15 2.53 93.96 41.12 24.44 15.29 49.35 72.37 85.81 -8.19 68.31 91.33 44.37 7.77 1.12 18.67 23.21 73.99 75.51 59.17 94.27 42.62 23.55 63.96 72.32 25.89 13.90 53.99 18.53 28.29 6.63 65.08 94.70 89.26 54.27 10.15 82.73 29.98 92.54 59.89 99.33 15.05 63.84 26.23 64.23 51.86 31.56 0.05 82.72 54.08 43.38 22.86 50.88 95.49 29.75 37.91 34.72 54.54 21.71 69.88 97.58 35.17 6.17 50.84 29.68 75.97 12.39 52.95 63.06 18.00 43.45 23.20 20.23 24.51 71.89 1.31 35.21 87.79 27.88 16.12 40.69 30.80 97.56 31.21 69.43 72.06 58.03 59.43 62.02 15.04 96.38 7.56 33.04 56.37 68.12 27.12 56.03 4.84 95.97 68.49 51.10 8.63 8.70 85.15 98.62 12.88 91.43 37.54 45.09 -61.17 96.68 27.79 8.12 92.87 61.36 79.64 48.90 4.70 8.68 45.86 82.07 32.70 23.52 78.86 74.56 84.24 84.17 28.40 40.77 94.54 36.47 69.43 52.87 16.42 21.36 11.86 80.35 98.64 15.31 14.62 77.28 47.21 20.89 39.38 31.10 34.92 45.18 68.26 24.75 59.33 89.93 59.29 84.23 64.55 46.63 59.30 2.17 87.04 51.68 73.95 93.27 93.44 40.69 32.22 31.37 48.92 21.35 33.91 40.40 46.25 38.72 3.34 67.90 44.49 67.25 38.01 58.61 24.58 46.77 74.45 92.52 38.60 84.45 24.07 20.05 6.27 19.34 50.36 76.26 3.57 24.84 65.79 27.45 48.06 51.69 87.60 50.41 18.72 6.44 44.70 83.71 25.23 43.40 88.73 85.55 78.76 53.49 97.37 2.17 -38.30 16.36 4.40 56.47 96.06 17.68 85.48 83.43 75.34 63.07 1.10 38.13 27.37 85.51 14.89 28.47 83.10 29.05 24.60 78.20 48.95 41.47 95.54 5.96 99.46 89.29 12.97 35.52 57.84 36.68 65.81 17.05 88.25 23.91 14.47 31.17 87.71 54.16 86.17 69.22 30.88 76.67 75.94 89.33 35.33 22.83 49.87 71.17 88.59 9.58 93.98 15.21 43.27 96.96 71.59 12.93 31.72 86.33 30.72 76.41 3.45 16.31 91.99 11.12 22.23 9.11 30.65 51.52 14.85 34.45 65.67 51.51 23.15 97.47 42.54 98.64 29.49 80.47 71.84 85.09 4.78 1.18 8.62 52.29 48.56 44.91 49.54 77.56 24.33 27.88 43.64 90.86 81.85 32.92 3.05 40.90 44.37 50.45 42.54 5.10 -91.52 70.20 40.27 8.42 82.40 54.15 6.63 24.69 81.91 7.95 91.69 67.19 95.54 59.39 46.04 6.05 43.49 34.48 72.56 29.44 56.78 26.19 53.17 44.13 35.44 88.97 68.27 84.82 67.91 48.38 55.79 19.15 99.52 43.68 32.31 6.16 5.50 85.80 88.52 52.38 17.47 22.90 7.97 29.15 80.94 14.13 40.44 23.04 65.03 42.12 3.43 37.04 43.35 6.66 34.04 69.50 33.83 15.03 50.73 38.87 87.00 55.56 93.95 48.55 82.48 66.57 3.54 17.77 72.61 72.73 71.28 98.03 87.40 95.06 93.80 39.36 7.20 68.31 14.35 29.56 92.80 34.25 92.37 66.35 83.82 84.27 93.52 53.12 17.52 58.12 44.10 15.10 46.08 69.83 41.94 44.95 80.44 46.34 19.20 43.23 -43.55 6.32 18.67 80.55 29.66 94.77 22.93 36.98 9.43 66.55 41.07 1.68 21.50 85.96 8.04 91.59 22.54 85.91 5.25 44.89 70.53 95.76 17.23 26.70 60.26 81.15 61.09 54.12 90.95 86.54 58.91 85.11 18.99 84.73 97.85 50.52 19.38 33.69 14.06 19.94 57.42 47.57 37.86 47.50 22.65 82.62 30.46 69.94 38.86 29.64 67.53 45.22 4.92 24.09 34.83 97.29 76.95 1.74 68.92 80.18 4.28 6.71 28.53 11.77 50.28 10.95 28.51 91.29 53.58 37.09 0.71 5.06 14.55 59.80 98.67 21.16 49.47 46.95 48.98 50.54 30.69 40.71 98.15 52.99 76.28 47.69 84.95 78.43 37.52 46.56 6.66 62.66 32.49 7.04 44.27 54.92 47.48 27.58 13.96 49.31 -40.01 19.90 73.38 64.09 27.09 54.24 49.25 20.35 67.66 29.21 97.68 34.49 94.61 84.70 86.78 42.99 80.91 87.05 35.59 21.87 62.23 20.37 56.06 40.64 51.85 15.64 36.68 28.04 35.80 84.08 53.91 55.44 59.94 99.78 78.47 2.05 89.50 80.19 77.08 88.89 81.34 13.06 47.11 3.04 54.39 49.04 42.24 35.25 44.35 15.45 46.76 60.07 79.05 15.04 78.98 70.89 24.35 25.73 15.81 85.01 0.20 39.39 92.91 43.01 79.46 9.17 41.88 0.79 58.96 89.55 73.90 4.91 12.12 27.70 6.72 54.65 74.01 97.00 57.40 96.90 14.94 19.31 54.68 33.35 60.05 77.05 92.95 98.13 66.10 81.26 82.37 80.33 56.05 66.50 89.17 75.04 74.19 45.74 56.81 14.98 -61.79 18.47 88.31 49.23 95.88 99.07 84.76 76.44 94.12 61.93 16.76 3.34 45.82 32.89 18.90 67.18 67.01 47.23 19.38 43.55 67.78 67.07 35.85 32.95 11.73 7.51 41.24 12.94 43.15 38.97 91.66 40.30 89.35 95.77 40.00 88.06 50.30 45.77 36.19 52.65 57.95 78.77 84.07 92.56 51.16 83.52 87.79 24.46 66.34 91.93 7.75 81.53 48.94 10.65 6.85 62.38 58.86 3.09 89.78 80.48 28.52 38.55 96.24 40.42 16.93 9.33 94.54 61.51 36.77 32.17 50.70 23.67 10.65 4.88 60.99 14.34 68.99 8.76 8.65 35.28 92.38 86.29 58.02 67.56 12.38 98.23 89.57 92.44 96.24 19.33 15.78 89.86 48.25 70.99 7.01 51.65 23.85 58.88 26.94 61.02 -32.78 32.67 37.81 43.04 37.89 83.73 20.00 48.16 95.31 40.79 83.62 17.37 45.10 39.63 76.36 74.25 21.69 95.71 19.14 68.84 94.77 36.17 89.98 52.58 57.29 45.17 12.11 99.47 35.81 99.39 76.59 25.04 8.47 53.63 67.55 0.21 47.69 27.81 57.68 75.71 41.24 45.44 44.14 75.91 8.60 77.19 61.43 33.20 27.63 48.35 71.93 56.57 89.03 43.77 29.38 43.05 36.02 0.55 6.22 24.81 68.75 4.81 94.04 68.42 91.78 4.41 17.36 38.38 64.79 68.35 48.58 98.56 22.04 44.42 40.20 47.97 38.14 67.06 71.28 18.59 95.73 57.45 8.70 86.59 32.00 1.38 17.98 41.57 47.39 81.57 19.54 73.33 36.11 35.17 67.19 82.44 51.12 1.62 54.05 71.48 -62.41 49.82 63.80 93.92 55.16 65.00 34.85 32.50 76.38 43.89 14.59 9.64 88.15 4.49 2.31 44.45 25.10 69.74 29.65 47.50 65.00 13.80 78.97 11.90 38.38 6.34 49.47 63.14 57.57 8.40 7.37 20.15 50.68 58.95 7.46 97.77 20.89 29.73 8.44 47.94 79.25 12.88 15.19 24.79 8.81 11.66 5.51 80.37 5.63 1.19 94.28 46.76 58.68 54.80 21.24 1.60 13.47 71.25 25.06 26.91 23.83 94.26 25.71 60.87 42.03 75.52 19.72 34.37 88.16 27.55 53.38 55.95 81.35 46.83 69.67 74.91 2.97 29.73 78.39 99.04 2.82 68.25 82.86 17.72 65.51 91.93 43.60 96.11 7.83 39.94 38.26 81.28 9.29 5.69 52.75 61.16 40.43 46.51 85.66 81.06 -1.20 66.78 70.10 63.32 46.60 68.24 2.46 9.03 91.06 11.29 77.17 78.72 41.14 25.67 75.00 95.30 69.41 81.83 86.08 40.67 54.79 62.76 95.34 12.20 77.41 70.08 91.88 48.23 66.78 83.40 29.71 82.50 17.00 47.55 1.91 74.65 62.18 50.38 71.29 57.09 10.41 32.62 83.96 92.85 10.53 12.37 73.81 88.36 74.43 31.36 34.63 15.73 22.28 22.20 35.34 29.38 8.57 49.16 89.58 42.81 75.66 40.30 51.05 47.04 60.10 45.58 91.85 67.23 35.20 21.46 92.36 85.12 5.32 49.62 77.18 33.08 31.06 76.11 1.35 38.74 43.88 84.76 64.39 74.95 87.14 3.75 16.64 89.41 10.66 62.08 39.86 85.72 79.98 41.03 80.18 79.99 58.10 19.97 99.53 53.39 -34.09 43.33 83.64 16.02 82.07 29.87 31.57 72.36 78.12 45.53 85.23 36.63 59.65 93.70 36.66 17.29 24.06 28.73 14.59 44.79 19.84 42.42 13.27 92.08 71.79 20.36 39.29 54.76 30.85 48.77 59.35 79.44 87.63 27.43 93.03 26.50 54.41 45.58 9.52 52.77 81.93 6.47 90.88 75.89 32.01 80.51 69.30 99.70 20.93 73.89 13.18 73.74 71.28 79.95 15.24 85.51 48.54 3.04 15.78 44.94 39.70 98.19 55.32 46.76 91.80 8.12 71.33 93.26 95.54 39.71 93.04 68.61 36.22 14.53 16.97 78.58 75.53 38.02 76.82 34.03 96.28 28.60 22.43 90.77 39.22 56.14 37.50 76.49 47.05 70.14 51.26 27.99 12.74 73.16 5.79 17.40 29.34 64.95 69.26 2.92 -22.62 78.99 99.92 65.27 21.29 66.11 94.19 70.65 23.90 19.34 51.09 32.68 34.59 37.27 90.84 34.05 57.94 88.29 12.82 22.77 24.38 67.54 65.42 70.88 56.89 23.12 13.84 46.99 9.00 57.53 8.22 6.58 95.13 8.97 80.02 10.62 81.97 30.66 41.97 50.30 2.82 81.79 71.02 59.44 1.76 28.23 18.37 12.94 69.28 21.78 86.52 39.72 48.34 25.16 66.19 77.20 47.42 54.25 68.53 75.25 82.74 57.59 97.09 25.62 8.17 23.16 73.04 39.21 29.15 91.31 59.00 67.45 82.74 25.43 73.68 57.16 75.67 7.45 77.25 14.67 85.92 69.85 51.28 59.78 17.05 2.40 60.35 10.82 60.10 48.06 70.64 99.69 51.94 45.18 14.70 3.61 90.56 18.90 81.35 29.69 -74.88 17.29 99.92 91.39 34.50 66.51 1.29 89.24 4.62 84.20 70.44 34.84 73.56 16.00 23.24 63.94 0.05 82.61 15.43 59.83 10.62 17.48 71.41 50.97 36.91 50.60 72.94 29.80 51.71 25.97 92.40 73.28 60.98 11.08 40.60 29.88 34.31 80.54 33.61 53.88 14.45 55.14 4.92 74.76 22.95 74.76 10.87 64.22 16.00 29.97 84.97 36.20 81.75 48.56 60.00 77.05 94.33 32.17 59.97 87.82 4.83 62.53 77.43 58.48 28.86 70.97 44.99 27.19 58.06 59.25 90.09 36.71 99.09 61.46 59.04 77.55 61.84 15.65 48.41 90.38 8.15 47.87 80.58 12.13 83.35 93.00 90.07 96.43 98.87 89.20 91.47 72.46 80.27 29.26 76.90 88.03 39.31 34.36 98.86 64.25 -35.85 31.29 82.31 72.60 97.82 52.36 97.36 19.82 91.47 97.79 24.55 80.14 96.94 86.20 65.82 89.10 7.52 19.12 56.47 21.00 82.55 68.33 60.94 49.16 99.12 95.22 98.91 21.83 1.14 0.46 80.56 77.54 0.15 70.10 64.03 82.34 57.20 21.55 17.34 3.94 78.83 59.09 17.54 69.59 58.02 90.20 23.94 99.86 49.01 82.81 16.68 41.92 58.58 37.44 65.32 9.60 45.29 34.31 99.97 52.72 15.83 65.45 63.03 40.35 1.40 68.83 56.56 18.67 43.00 16.01 87.12 86.22 33.65 37.89 33.59 39.41 16.09 19.02 40.55 61.01 37.10 16.78 99.76 25.02 91.23 54.52 51.02 64.58 2.25 67.90 67.26 73.25 96.06 15.12 5.50 73.03 40.58 37.73 61.02 93.17 -25.16 2.01 90.44 22.26 49.71 20.48 1.52 34.80 52.87 63.32 87.28 5.76 66.09 96.90 78.80 65.40 55.67 45.08 1.09 20.25 78.56 34.11 57.94 53.67 47.32 49.06 93.44 63.11 90.24 99.92 7.09 80.02 31.15 95.97 21.34 2.18 97.21 11.15 63.23 18.11 55.67 68.05 10.20 59.59 20.02 44.09 1.79 31.67 21.12 57.70 69.25 24.54 27.06 62.57 11.27 81.35 0.09 90.98 8.24 59.03 1.43 94.16 13.41 81.21 53.77 24.14 1.28 69.62 96.08 78.71 82.94 14.22 40.37 97.56 8.24 96.44 86.07 69.49 21.98 23.00 35.41 64.92 21.76 53.51 78.74 28.39 8.98 41.43 18.12 54.09 84.23 15.25 0.84 49.93 38.36 4.58 97.86 16.78 20.88 4.88 -82.19 56.03 3.10 93.36 5.91 90.52 5.66 12.51 17.04 25.24 10.87 25.28 5.09 84.09 86.44 64.47 25.24 4.46 0.91 87.31 97.49 94.13 11.77 5.89 96.73 77.24 7.14 63.25 29.23 4.75 12.49 42.08 69.99 22.93 98.06 62.20 41.55 24.93 41.15 63.79 54.07 18.27 4.82 88.82 17.33 63.60 59.00 50.96 49.17 5.30 37.02 16.57 55.41 24.65 11.45 49.49 53.34 46.11 92.19 45.09 29.41 30.20 5.45 23.32 17.42 99.38 70.63 88.58 38.88 43.90 11.98 30.24 38.23 45.60 20.97 99.97 40.10 13.20 49.39 90.02 89.92 74.98 57.37 68.75 98.52 21.08 27.70 54.12 30.87 76.05 20.93 1.74 64.70 50.57 31.53 1.67 16.71 98.88 7.59 17.61 -38.83 13.33 27.96 74.10 54.91 59.57 13.66 41.54 94.50 68.11 40.22 90.22 90.14 69.00 68.62 57.69 21.62 90.09 15.02 75.10 38.09 75.48 15.30 53.51 51.28 58.80 80.40 46.85 72.16 71.70 73.44 72.08 4.91 4.39 70.77 34.72 14.03 96.54 57.61 80.44 62.77 7.27 86.73 70.28 10.18 27.19 78.98 54.41 24.04 95.96 15.23 22.88 39.78 3.45 33.08 2.49 57.66 24.05 50.41 25.71 16.88 9.49 96.98 26.18 47.03 54.76 83.06 73.44 30.75 5.32 98.34 67.09 91.06 64.16 4.09 80.95 6.97 41.42 10.92 29.51 79.97 24.03 89.34 59.30 94.20 22.08 71.05 6.39 87.51 15.20 13.01 89.77 47.80 96.13 81.61 27.09 15.94 91.20 58.16 73.65 -0.84 36.97 7.84 81.72 87.66 59.56 53.55 66.98 72.83 33.39 19.49 65.32 79.44 14.72 62.22 69.97 69.08 56.12 2.33 91.60 27.44 21.91 34.41 88.01 66.10 44.25 18.60 43.27 39.64 18.54 23.73 65.70 68.54 38.97 13.60 14.71 69.06 51.25 70.35 50.57 31.98 30.75 66.67 38.68 49.05 60.57 40.11 87.90 37.43 44.30 90.84 18.58 68.80 39.17 62.05 32.31 36.24 2.64 58.18 61.35 41.19 22.01 98.32 51.58 85.38 76.54 51.18 7.91 17.73 30.98 40.99 87.28 57.35 41.58 96.05 69.47 41.10 70.67 46.99 63.27 89.03 21.85 47.42 68.97 48.62 19.50 23.38 86.93 3.22 95.60 12.89 10.29 42.18 55.63 46.92 54.34 59.25 51.97 60.42 64.08 -38.02 46.68 77.20 62.86 52.76 28.04 15.32 19.10 80.15 3.92 14.18 2.88 59.42 42.58 96.10 98.01 85.31 5.91 94.82 46.31 0.45 83.93 94.93 13.06 13.94 87.72 23.49 37.30 21.10 75.58 59.74 32.81 50.21 65.70 90.25 60.86 75.92 93.14 97.11 76.92 33.94 12.05 12.71 67.20 53.73 71.50 93.55 19.40 64.19 40.94 72.99 61.82 27.64 16.37 22.52 53.61 13.44 53.40 22.86 78.11 31.09 61.94 74.81 51.45 64.41 21.89 20.75 74.96 3.81 86.69 77.62 3.31 34.02 33.75 41.43 6.44 40.97 95.43 55.29 93.59 85.87 77.98 53.74 9.58 98.93 92.33 58.20 19.06 56.56 19.63 36.38 68.71 40.47 17.25 74.57 81.83 1.32 14.27 18.13 62.95 -56.17 80.32 56.43 69.03 88.09 87.09 22.17 47.79 18.69 74.45 47.66 52.29 81.69 12.78 21.40 80.36 55.12 30.95 82.96 25.67 2.81 18.66 58.46 62.37 19.50 32.13 68.34 23.84 24.82 61.23 47.65 83.87 18.66 57.71 11.90 69.18 11.43 90.27 64.90 52.17 14.95 46.86 22.76 60.31 30.70 33.19 11.39 95.32 45.84 58.49 73.54 6.57 67.48 43.54 58.73 51.40 78.43 32.46 54.58 19.05 22.23 4.99 41.84 91.01 58.43 12.05 58.81 75.43 54.61 85.93 1.06 15.46 64.07 26.31 20.39 23.09 71.74 9.15 34.76 45.47 68.73 43.99 50.58 38.74 63.13 12.07 5.10 0.16 82.07 50.44 0.57 51.90 26.66 40.77 59.16 14.73 82.93 4.89 51.87 71.82 -16.13 46.28 78.67 14.12 27.24 33.96 32.40 61.06 49.14 38.80 25.45 91.40 52.48 93.94 21.79 34.27 22.98 19.14 90.57 2.09 72.74 58.91 70.07 21.15 10.34 62.57 49.81 68.26 33.69 89.38 2.90 88.91 42.49 33.77 18.87 22.09 61.96 80.50 99.09 41.44 48.82 71.58 70.85 18.42 27.06 27.42 35.31 41.67 25.88 38.18 3.34 27.52 20.09 4.26 60.29 34.96 47.50 82.56 68.24 11.78 76.68 21.87 54.87 90.36 5.48 28.59 51.38 13.12 25.97 30.40 72.57 38.40 77.01 4.07 35.75 19.82 92.51 76.09 26.58 89.57 60.49 55.71 27.55 21.35 98.31 62.21 24.52 77.90 37.07 88.81 2.06 84.79 21.87 69.10 15.01 98.15 82.10 54.69 66.48 99.23 -8.00 40.72 49.69 48.74 84.45 98.12 55.46 10.10 85.44 33.30 62.56 58.39 99.99 86.27 20.94 95.76 95.84 0.28 3.37 60.78 45.27 79.23 40.46 93.87 20.28 3.96 88.76 51.50 2.42 60.51 25.66 58.28 19.26 77.05 65.58 8.66 86.66 24.51 55.66 17.46 33.63 10.88 73.63 58.54 64.98 62.42 45.88 64.47 87.26 3.05 65.81 69.25 81.26 88.19 57.53 79.82 92.51 83.92 88.51 42.81 5.17 52.14 83.90 7.99 17.42 8.59 90.87 23.95 81.27 77.91 78.07 30.27 15.18 35.11 62.87 47.90 96.92 49.58 54.60 90.49 15.73 7.68 1.48 1.31 45.21 15.70 0.24 14.56 34.20 50.14 53.01 82.49 71.72 29.13 35.40 63.59 51.75 47.07 85.13 18.53 -13.78 90.19 40.32 22.43 6.02 64.56 48.31 25.34 59.69 82.20 40.75 69.61 34.73 22.44 94.41 13.55 78.47 35.42 44.92 87.68 56.98 51.64 82.19 81.91 98.23 0.78 28.69 30.72 0.68 79.43 11.53 6.36 25.13 40.34 62.66 40.34 77.02 33.83 49.16 25.93 22.98 71.43 82.46 14.30 71.87 78.93 64.24 22.94 49.53 9.35 66.08 8.79 33.19 3.93 61.16 49.67 13.59 66.77 83.42 76.57 47.25 69.65 50.47 18.67 80.80 11.60 88.67 90.40 41.55 1.18 77.68 79.94 7.63 75.55 85.88 37.77 94.31 78.42 23.19 9.61 8.96 45.22 51.76 8.47 75.19 99.87 87.87 53.86 74.61 46.35 75.41 13.36 92.32 35.50 56.81 21.30 97.85 68.57 61.76 27.49 -90.80 45.60 35.32 49.79 5.58 27.33 8.74 88.27 82.15 58.98 55.66 70.66 81.39 62.00 40.52 83.06 75.84 62.04 95.94 27.40 63.27 53.74 44.92 23.63 66.82 60.65 24.32 50.49 12.91 26.56 70.03 95.40 10.49 31.73 79.32 77.94 91.90 52.51 44.70 22.18 26.73 47.03 69.48 64.78 59.57 23.74 51.84 37.78 22.04 56.91 37.66 37.55 78.39 31.70 15.54 49.53 1.91 33.74 48.53 96.12 66.03 31.16 77.31 71.45 10.32 19.67 74.42 39.23 82.88 73.98 55.25 60.31 98.58 35.33 50.87 27.74 47.81 71.20 1.76 26.34 74.74 88.43 3.41 27.82 83.74 78.30 96.65 59.50 9.13 46.96 49.67 94.43 49.10 0.79 49.68 26.37 80.61 80.75 12.76 79.67 -69.70 46.29 82.33 96.87 41.89 9.04 99.13 0.89 19.71 14.20 74.63 7.40 9.82 46.44 39.12 23.21 4.60 65.43 21.84 31.22 20.81 17.94 68.47 58.01 81.29 54.53 20.63 35.34 87.76 90.34 80.90 56.74 3.45 18.39 14.99 62.91 88.69 44.72 82.64 41.32 99.89 72.43 33.47 87.56 80.92 37.62 99.35 66.89 16.20 4.26 86.98 23.02 15.82 64.41 80.77 46.99 11.43 43.96 43.05 86.34 17.59 92.53 79.52 86.21 89.05 69.92 60.65 10.53 6.18 13.84 88.14 30.25 81.08 65.24 67.18 6.32 38.88 0.31 99.43 23.53 79.87 60.72 98.55 54.15 92.39 9.30 46.05 53.24 65.60 72.41 12.23 40.76 53.13 17.99 72.00 63.35 77.89 28.20 39.64 40.78 -40.03 77.85 6.23 8.45 14.40 11.04 11.08 60.06 66.77 57.62 2.89 76.16 93.50 2.62 6.61 30.84 20.85 80.87 82.75 61.55 86.66 34.37 66.53 29.79 58.49 24.10 38.76 84.77 18.28 48.17 83.24 70.67 81.41 97.96 58.58 56.70 29.34 99.87 49.99 51.75 21.60 74.96 72.35 0.01 62.58 29.99 32.49 45.90 70.87 90.61 27.24 2.12 17.65 27.66 39.37 19.43 15.71 6.24 28.56 15.35 3.16 55.79 75.83 90.45 36.77 83.88 81.28 14.41 58.00 82.51 2.30 6.16 3.67 3.46 58.48 37.48 23.01 34.50 79.07 38.59 79.44 29.83 76.37 60.21 52.54 16.23 93.60 65.42 19.07 99.59 21.26 60.46 92.99 57.64 60.21 49.77 12.48 46.57 32.14 42.69 -57.92 30.44 8.82 3.22 70.25 30.65 69.96 45.31 29.97 86.89 40.74 45.38 44.16 84.60 59.33 5.67 73.49 86.88 31.23 78.20 79.98 3.47 11.49 80.87 92.93 75.68 67.55 69.06 68.50 0.49 19.56 24.18 97.24 79.74 55.24 29.94 65.19 77.07 10.06 87.45 3.47 63.56 1.05 61.32 42.62 45.49 65.80 51.27 82.69 21.30 85.42 56.28 82.50 13.97 27.63 26.60 85.39 89.68 15.26 72.88 99.66 15.90 43.31 82.94 23.43 15.64 26.14 31.65 2.98 59.18 84.31 19.70 67.75 97.24 56.61 26.26 2.77 31.48 89.73 86.19 71.15 91.25 65.51 58.93 16.56 77.50 5.26 11.78 39.55 41.21 33.88 89.00 29.15 94.89 83.38 54.28 89.86 34.09 98.30 82.05 -34.33 71.01 44.40 1.58 35.29 96.67 94.38 22.09 54.08 99.80 5.98 38.23 44.62 14.76 92.79 11.18 83.77 15.42 13.87 55.59 1.84 8.14 65.61 55.06 28.23 6.24 25.20 25.03 57.47 30.66 78.96 32.74 66.82 59.32 50.42 9.04 80.52 82.37 50.41 85.80 70.41 1.57 68.60 16.54 72.63 33.42 12.08 88.27 86.40 75.98 44.57 14.14 34.86 46.58 5.28 98.57 32.96 15.55 74.11 64.95 77.40 99.61 91.55 45.53 58.20 60.41 42.88 68.79 26.12 30.44 97.04 66.91 14.19 23.20 37.22 96.41 1.19 85.81 93.30 43.29 84.71 79.55 23.38 77.35 4.71 59.85 44.40 67.50 64.91 94.07 81.12 1.22 43.17 69.86 35.33 37.48 93.22 98.61 39.80 65.43 -72.76 42.55 71.02 90.49 61.32 27.86 20.48 48.88 15.75 55.61 42.52 24.29 90.57 12.56 91.18 38.55 75.84 72.73 27.88 54.21 61.32 69.96 66.06 70.27 17.72 44.43 88.19 57.82 75.21 78.41 15.76 24.67 76.27 91.33 54.72 5.32 33.23 33.40 43.03 78.31 19.84 28.73 54.69 31.73 56.52 30.70 47.25 59.50 16.08 33.38 34.67 62.87 2.65 64.83 14.57 53.15 76.36 61.16 70.22 13.70 83.57 0.11 58.54 88.35 45.15 26.65 12.32 24.54 77.48 63.28 91.32 43.89 81.33 83.05 74.98 98.34 29.96 52.91 95.43 28.83 88.31 80.24 46.42 91.32 39.23 28.74 19.42 90.39 35.10 88.83 51.27 79.25 97.71 0.02 16.25 8.33 54.11 36.72 29.24 75.99 -76.92 52.95 82.16 85.27 27.50 43.18 55.05 23.76 92.40 7.20 5.19 98.43 15.94 70.13 16.59 38.73 20.08 63.42 11.95 84.01 65.13 3.52 50.79 60.01 70.80 29.70 65.78 31.46 77.85 29.73 34.48 47.30 2.24 15.32 28.69 22.11 58.79 52.96 89.78 11.79 3.65 99.80 44.40 44.78 32.31 32.63 23.14 24.41 40.74 6.56 21.44 6.74 22.59 67.93 4.57 62.97 90.50 62.46 78.47 36.31 39.58 91.40 54.51 23.83 84.56 0.38 74.26 35.66 20.20 12.04 73.49 60.59 88.16 69.20 77.59 61.43 94.44 69.54 76.77 62.56 11.93 89.11 89.53 27.53 73.62 95.18 4.17 20.27 68.51 88.54 45.93 55.29 96.70 9.38 73.64 30.44 8.28 36.25 59.77 13.73 -5.36 90.97 50.31 49.24 81.05 97.78 58.86 42.36 65.88 29.95 75.60 28.93 29.70 77.24 91.01 45.68 6.58 62.01 40.68 56.59 35.95 43.41 45.48 37.04 5.12 94.59 36.54 50.00 56.68 60.30 87.91 13.52 98.32 53.77 66.72 77.23 81.92 42.55 2.70 7.41 83.64 4.73 9.96 8.54 41.23 20.14 20.69 69.78 53.33 45.17 27.99 38.45 49.51 81.04 23.23 7.00 16.57 37.73 74.65 6.12 36.83 32.00 31.53 66.06 22.43 48.05 15.12 66.29 26.03 92.89 84.18 51.93 32.73 10.97 58.86 21.96 68.31 94.82 29.92 59.61 83.42 64.78 9.91 44.10 75.43 52.25 56.97 43.54 4.75 23.31 3.01 40.63 23.43 37.66 1.24 98.31 97.86 69.94 73.85 7.64 -2.86 1.61 36.72 19.14 45.15 48.16 53.46 77.99 30.10 2.51 41.26 79.50 16.27 43.56 6.11 4.08 27.37 29.79 15.34 13.52 46.79 76.45 64.90 46.91 53.38 57.48 49.65 93.84 31.82 77.04 61.57 11.93 3.11 2.09 98.71 26.92 91.73 95.73 2.50 84.67 28.93 1.15 37.86 22.02 90.78 34.48 86.18 32.35 21.96 73.49 32.70 91.20 29.58 59.40 74.96 96.90 37.96 71.76 50.94 89.98 12.00 49.66 5.89 16.32 64.61 1.92 95.15 42.31 99.31 3.54 74.85 69.51 12.42 67.02 77.45 36.80 41.59 76.20 20.54 46.94 87.22 86.51 3.31 60.14 81.93 99.07 8.10 72.27 9.47 50.87 71.08 12.29 7.51 19.54 67.44 82.37 30.81 72.97 13.58 98.50 -52.76 97.50 70.81 80.56 99.84 81.99 10.58 20.05 80.73 41.48 48.42 79.80 81.97 33.21 20.17 78.20 9.72 43.12 88.00 50.31 36.02 86.04 19.91 67.43 3.43 51.25 17.17 1.54 0.68 35.47 69.45 1.10 50.16 82.12 58.10 61.01 89.87 85.50 34.56 2.02 18.94 12.96 60.71 26.41 50.45 66.76 73.31 13.40 96.99 67.93 43.94 1.22 15.24 7.78 59.53 79.42 41.50 40.45 80.67 66.08 0.18 73.51 88.90 5.44 13.84 32.69 48.26 21.44 94.71 32.70 69.38 47.23 82.19 9.98 54.34 39.68 45.33 20.85 15.37 19.65 71.76 86.43 68.18 59.34 75.26 50.61 9.63 72.54 8.23 25.28 99.12 79.35 49.08 96.46 20.25 37.83 71.59 29.14 43.40 39.17 -8.61 88.79 59.52 45.49 73.51 50.37 56.45 63.76 38.51 78.75 61.47 48.09 63.17 42.15 82.08 92.25 47.41 58.35 21.14 27.53 49.56 3.07 0.93 53.29 21.02 35.48 3.74 11.29 77.74 48.08 98.15 49.87 97.55 70.13 49.82 54.14 10.50 19.70 76.25 25.18 65.72 35.63 5.12 21.61 49.76 26.49 90.74 22.64 83.30 50.50 89.17 45.05 28.08 39.62 30.63 78.36 98.31 85.66 89.88 83.98 39.20 43.31 85.49 25.77 1.25 91.09 44.86 25.77 57.44 17.23 35.22 10.21 90.58 6.38 2.94 69.83 53.60 71.72 40.03 20.82 82.88 62.79 73.79 67.89 46.20 83.50 23.62 20.23 8.43 34.68 22.64 23.12 54.44 81.40 52.06 75.43 10.90 69.96 51.35 69.91 -51.44 18.79 64.20 79.92 62.03 16.99 11.11 39.49 95.97 14.35 33.25 68.40 73.67 47.47 56.08 70.70 57.69 64.94 30.45 85.78 2.87 61.36 97.21 43.07 86.12 89.24 84.80 71.45 53.95 81.38 12.88 3.92 36.56 94.77 94.78 74.20 66.32 63.56 75.39 12.73 61.74 26.56 35.99 97.14 66.55 77.86 28.81 10.31 39.31 96.39 27.77 17.59 79.84 93.52 37.43 93.14 67.86 12.56 42.36 57.58 70.90 34.95 74.25 69.83 48.39 3.04 91.34 61.05 77.27 67.04 79.65 58.53 29.89 22.08 98.49 13.75 19.15 52.80 18.27 25.35 75.51 13.49 35.50 4.91 89.07 84.32 84.46 3.98 60.46 88.55 86.75 3.66 42.63 69.93 87.18 71.71 58.28 80.84 65.15 85.62 -40.89 67.78 67.55 8.10 59.76 28.59 71.28 40.44 80.68 53.75 98.66 41.78 87.38 80.97 57.44 30.06 40.89 60.03 35.02 86.89 46.03 48.54 96.23 10.24 31.50 14.42 74.60 81.40 56.14 60.78 38.68 60.72 50.39 12.04 71.31 14.53 0.77 80.39 76.02 74.41 32.69 86.25 65.13 82.41 1.46 17.01 29.35 21.12 52.72 49.39 29.65 27.62 40.77 5.32 32.00 23.24 52.13 41.62 0.98 34.55 37.15 56.66 48.39 93.94 80.73 67.09 95.62 18.59 85.20 80.08 56.59 29.52 55.18 5.36 89.03 23.96 86.67 81.71 63.20 31.29 9.60 30.92 38.93 80.84 4.87 48.30 33.07 39.06 53.40 9.77 66.46 44.25 60.23 99.84 62.26 85.55 70.95 48.25 50.37 26.38 -85.92 37.40 59.68 77.66 97.90 24.11 20.27 61.97 16.77 44.65 62.23 68.66 75.36 34.53 65.77 4.44 96.63 32.65 19.78 84.51 26.92 36.16 3.85 37.69 41.53 38.66 81.26 4.20 49.74 40.02 33.54 6.66 72.80 50.09 76.45 51.33 46.28 74.06 49.28 77.15 28.76 21.24 38.28 42.17 34.56 90.99 42.27 25.78 31.72 78.51 32.66 94.69 81.43 33.77 56.72 53.88 50.51 35.83 7.06 15.01 21.29 51.29 98.91 69.48 86.54 15.76 99.18 86.57 71.03 71.49 73.75 30.94 39.61 34.25 46.10 25.28 15.95 55.41 54.74 51.68 91.93 60.22 86.69 15.90 48.38 65.45 35.62 5.85 10.47 52.13 55.82 67.62 73.73 60.14 68.47 43.35 49.94 60.96 3.79 74.40 -19.41 71.76 57.42 18.82 37.17 46.72 22.53 28.79 33.37 31.47 44.76 69.49 69.40 19.12 6.12 76.00 28.15 33.08 59.17 12.29 20.02 66.59 19.42 20.35 45.92 36.32 88.65 10.92 8.94 7.32 53.33 80.17 98.24 7.77 56.96 30.49 85.31 67.00 97.40 66.14 80.49 2.05 58.24 95.22 41.61 42.77 27.85 33.14 66.87 55.76 87.32 30.25 50.83 35.88 60.00 33.66 85.19 5.72 42.73 30.74 3.83 88.58 34.55 66.03 39.98 78.09 5.92 9.87 3.43 30.43 34.45 49.65 64.70 59.48 39.76 52.67 90.72 64.16 45.46 15.94 34.84 52.45 40.51 20.58 83.98 79.57 15.87 73.16 44.78 18.32 73.77 83.26 79.77 30.48 45.02 27.45 85.35 5.12 36.41 18.68 -6.14 88.32 62.31 17.39 66.78 54.68 37.33 23.32 13.83 46.84 75.07 91.69 55.19 41.03 2.98 3.56 85.13 75.75 69.49 83.30 47.58 63.55 19.35 95.68 21.79 45.58 65.53 12.57 11.07 29.99 86.04 95.48 76.25 12.69 47.28 23.02 2.98 20.98 99.61 10.35 3.15 42.35 52.10 48.07 31.39 79.69 1.07 85.39 0.17 55.97 30.59 34.24 88.27 13.41 82.48 28.25 17.73 92.63 11.55 41.60 70.69 99.43 49.93 85.83 31.87 50.03 45.42 90.17 89.93 44.16 83.83 78.28 19.45 16.90 87.26 46.97 26.88 78.52 34.42 45.76 71.64 42.01 19.36 37.98 64.63 37.28 81.05 57.11 79.20 79.70 87.67 76.03 53.03 94.83 52.63 85.41 72.44 19.07 34.79 58.93 -31.55 1.89 61.40 14.15 88.65 25.39 10.73 18.49 40.57 85.70 64.29 53.85 25.01 10.49 7.14 96.05 57.62 96.26 11.30 81.66 85.25 51.39 69.22 65.30 78.79 5.22 84.53 59.78 94.58 61.54 63.76 23.68 47.03 17.54 81.93 65.61 36.18 75.62 14.01 23.01 73.91 62.05 98.14 74.77 63.38 50.23 51.92 35.05 32.72 64.24 78.07 1.53 14.29 70.13 55.97 39.73 64.48 38.68 38.34 9.85 70.41 8.46 83.91 2.41 82.89 83.66 73.30 77.10 99.68 72.34 42.06 87.89 12.75 60.18 26.63 12.41 81.48 81.21 56.76 50.03 50.00 67.25 98.71 47.96 12.99 83.97 3.04 51.32 42.10 9.67 76.20 15.18 27.73 77.48 29.69 81.99 2.24 7.06 44.77 23.96 -24.69 89.64 15.95 75.84 78.53 99.92 35.13 47.00 50.83 3.50 56.71 58.66 12.00 12.39 88.83 12.51 38.41 81.23 88.68 46.09 48.81 98.74 51.44 25.74 88.31 99.67 57.34 73.19 3.99 30.08 69.45 2.52 5.03 23.25 32.94 63.32 0.44 21.76 56.43 5.00 24.54 88.86 9.00 60.10 41.98 49.07 6.46 10.90 10.76 4.52 83.89 90.90 8.65 76.32 59.18 78.81 17.47 84.57 71.87 11.52 79.24 13.76 36.80 80.54 13.84 20.35 84.26 13.60 74.87 54.52 46.38 77.65 30.95 41.60 50.08 89.51 90.06 31.07 80.83 89.26 49.78 5.14 14.11 25.35 49.87 72.77 44.21 8.31 93.22 11.38 54.38 5.00 53.80 17.72 61.55 16.61 92.10 82.57 30.64 54.70 -37.88 97.55 85.92 29.57 14.71 71.02 0.41 63.37 83.42 16.59 54.51 59.16 88.27 20.75 43.60 6.58 67.60 91.48 99.42 17.87 82.54 29.04 17.06 83.54 95.87 29.10 5.68 70.81 20.50 61.64 5.06 75.80 22.45 30.14 23.78 98.59 45.54 92.55 29.34 77.92 7.82 2.30 74.26 33.72 75.27 78.85 11.70 78.05 21.12 93.86 92.92 95.87 56.24 64.76 70.30 22.48 99.14 97.11 52.00 87.37 53.14 60.36 43.53 20.56 29.27 29.59 0.66 79.42 86.49 20.71 0.20 26.97 25.00 1.14 18.34 72.97 14.68 62.41 99.00 89.59 52.29 72.96 5.29 65.14 60.48 58.10 84.26 78.52 90.32 32.17 91.42 22.72 82.38 23.12 46.01 71.00 24.50 71.85 52.76 8.55 -31.17 87.13 78.37 38.31 35.21 99.42 9.45 61.07 49.74 60.72 97.74 27.90 37.47 21.52 95.57 7.27 35.54 95.84 0.97 74.26 18.11 5.86 58.42 76.94 64.54 60.12 47.93 93.18 7.68 4.46 77.41 15.75 39.95 73.76 72.24 5.41 21.29 70.55 16.39 9.06 14.51 47.57 90.19 65.09 14.67 63.53 28.34 12.69 94.93 1.20 55.25 17.43 22.83 78.98 55.36 40.74 82.12 64.67 93.72 68.44 12.82 60.87 89.54 47.37 16.69 50.01 18.54 50.10 19.69 95.78 65.35 83.26 98.25 99.74 7.54 59.36 4.81 19.64 7.18 77.20 5.39 67.90 25.87 7.95 45.58 60.00 52.15 10.64 52.46 8.62 85.11 17.22 59.29 48.41 57.07 77.36 28.50 32.30 39.75 65.93 -68.33 96.08 2.95 22.43 88.80 46.14 37.93 76.44 66.40 47.15 23.48 62.17 56.49 17.22 89.65 99.50 58.39 87.64 87.28 53.98 32.18 64.30 61.71 9.46 9.38 98.14 63.44 38.61 36.58 88.47 97.80 45.91 22.80 22.67 62.29 3.26 17.68 32.52 46.48 78.33 89.91 40.83 66.27 58.14 52.62 55.25 35.21 20.68 6.94 60.20 38.57 38.84 98.96 23.60 52.35 38.44 46.62 68.49 33.61 33.80 81.18 59.09 92.46 73.44 94.76 84.34 30.41 68.47 29.69 26.48 35.74 3.51 10.92 52.94 23.51 73.79 89.17 24.59 64.07 71.10 5.52 90.71 16.38 0.86 90.27 49.42 10.38 29.77 66.03 35.35 42.62 25.20 22.53 17.20 32.11 74.30 98.97 2.43 61.12 51.40 -73.45 58.53 74.59 94.33 28.01 75.79 85.92 23.16 49.96 88.38 53.24 2.53 74.41 55.90 12.73 99.61 94.48 29.81 57.17 85.34 26.22 23.81 97.69 8.56 33.30 74.10 10.37 46.44 29.74 54.79 79.68 1.39 43.90 11.84 54.01 83.61 74.28 82.92 47.06 24.82 97.46 78.47 26.26 34.86 86.31 35.77 7.55 7.16 59.46 73.89 12.25 15.62 47.92 14.22 39.47 96.21 0.65 61.09 22.57 9.15 3.05 64.76 39.57 35.48 98.09 85.19 88.05 28.70 69.23 73.92 77.08 36.46 29.71 28.77 64.28 92.59 83.79 88.88 16.14 82.47 91.95 39.43 68.65 79.19 36.73 54.98 25.70 42.71 34.57 35.00 30.42 81.30 17.21 5.89 64.07 47.80 98.58 45.53 13.33 38.86 -35.83 72.85 22.94 85.22 71.04 15.31 69.47 10.69 2.72 71.18 20.49 49.06 79.09 45.95 29.96 66.15 20.77 5.20 10.87 42.78 99.05 22.58 44.24 36.26 75.50 53.00 21.30 95.38 92.19 96.85 9.03 45.51 3.48 87.70 62.54 85.05 93.86 5.66 57.05 11.49 17.34 48.44 52.45 84.54 30.42 72.87 48.68 17.90 70.64 62.51 64.61 77.49 18.10 92.25 85.20 55.16 71.58 25.56 16.95 12.05 54.37 54.37 45.17 85.92 95.78 79.49 60.58 43.58 48.10 77.64 45.73 68.94 53.54 37.12 53.12 33.68 59.83 77.39 49.95 89.93 33.89 78.43 80.36 80.31 73.33 45.57 57.63 26.76 68.70 4.56 66.38 14.08 7.22 6.67 10.82 43.55 59.99 41.76 23.23 42.41 -82.88 4.29 87.68 89.88 16.07 53.42 10.30 88.23 27.75 6.96 7.81 59.09 61.44 12.50 61.74 46.04 36.55 9.24 38.37 36.51 11.48 79.00 31.35 25.19 54.39 27.67 24.22 41.75 17.94 12.04 70.42 91.38 7.43 0.34 60.56 84.12 23.68 19.39 57.34 10.94 37.51 78.05 74.11 57.00 52.33 29.46 55.27 2.44 36.09 2.49 64.74 40.17 45.97 31.36 69.93 38.76 10.43 23.04 31.64 44.16 65.82 40.37 11.95 63.89 80.33 12.86 51.16 64.36 43.95 82.40 97.67 3.16 83.25 88.51 4.64 26.13 34.68 71.16 35.42 21.19 52.89 25.73 33.79 71.15 49.49 53.02 48.86 10.29 47.19 20.14 81.53 75.76 80.50 41.75 0.69 33.20 81.97 38.37 45.88 98.69 -8.30 85.96 84.41 13.32 30.69 68.83 72.76 52.65 63.65 74.02 33.22 12.20 47.85 70.80 22.05 35.45 41.06 65.80 10.14 95.96 14.71 66.54 59.12 22.42 50.96 39.10 39.24 71.48 91.36 63.83 69.48 39.43 36.31 31.81 48.04 49.31 5.49 65.05 86.70 62.36 85.91 7.40 0.67 21.35 96.56 4.22 74.62 29.24 93.13 82.93 70.94 23.30 16.21 80.55 18.45 93.65 49.85 6.81 18.14 85.72 5.78 53.44 57.88 63.29 64.85 90.97 14.87 60.11 8.59 1.44 62.64 42.26 0.01 19.72 71.33 22.58 1.94 95.64 77.86 85.23 49.17 17.75 18.76 88.63 10.83 60.25 61.19 0.53 95.68 88.36 59.20 69.36 57.70 21.83 12.02 43.28 38.67 73.63 44.40 8.30 -36.77 85.78 13.20 10.71 72.78 73.50 39.11 12.25 2.58 97.83 4.14 64.58 16.09 64.98 71.43 80.89 42.97 12.52 78.19 91.05 35.54 38.39 96.10 9.05 89.93 87.25 62.06 29.73 14.65 20.55 11.87 1.63 1.39 32.30 46.88 60.69 62.71 45.28 1.53 59.88 66.52 79.46 0.02 28.44 99.21 50.15 3.17 92.75 19.50 82.57 38.92 1.68 57.26 82.30 74.35 30.62 12.46 14.30 66.62 61.43 11.13 41.31 33.69 3.78 77.82 59.77 32.93 35.23 45.78 82.49 37.74 75.35 93.28 1.09 11.64 89.32 0.46 78.10 47.59 61.02 26.66 87.82 94.79 27.10 79.87 73.77 12.68 96.41 0.77 57.07 6.95 95.33 85.95 84.70 39.23 33.59 90.29 12.41 43.01 39.37 -25.74 89.52 97.49 8.04 96.08 51.17 16.69 52.93 1.49 71.26 50.29 5.99 88.80 79.82 32.21 26.93 26.01 99.57 61.58 26.57 9.11 64.40 30.21 57.18 0.54 78.10 4.00 59.41 30.71 95.01 51.40 27.53 58.60 46.10 18.05 17.64 71.70 61.89 16.31 44.75 58.59 89.62 83.89 13.37 54.21 95.70 50.93 76.91 54.36 52.46 86.65 33.72 89.08 44.49 9.84 26.48 48.16 29.23 31.22 62.83 81.28 22.04 4.62 9.16 47.51 58.05 63.85 7.21 30.53 74.24 78.82 8.98 50.12 63.84 91.52 33.99 3.72 20.87 38.55 18.04 83.77 78.69 64.71 54.88 75.04 74.55 38.02 62.62 45.15 29.57 17.34 22.49 9.64 88.41 18.78 5.62 82.19 58.95 19.92 57.21 -2.94 17.91 90.43 9.73 78.90 22.15 42.89 99.91 24.52 68.81 5.11 78.00 75.88 23.24 89.63 59.79 2.02 67.53 39.23 92.90 7.49 66.28 39.59 35.97 95.58 94.07 92.98 12.55 81.08 99.80 58.08 21.94 6.27 45.72 90.53 81.64 2.69 58.10 78.46 53.63 28.38 23.26 45.67 51.15 74.03 70.95 11.07 55.86 94.04 80.60 90.74 52.32 39.23 84.87 80.35 93.80 73.26 75.27 71.34 80.31 97.29 24.59 83.43 29.20 22.40 43.91 75.09 96.51 54.95 1.58 61.18 76.43 21.30 52.36 35.22 42.11 63.08 86.34 64.39 89.92 1.30 34.22 2.82 81.06 18.92 12.91 78.24 62.19 76.37 8.07 75.47 88.43 33.03 88.25 81.73 7.99 34.09 16.88 92.29 70.98 -58.68 50.73 65.05 83.73 23.14 63.12 88.44 72.61 76.79 79.86 34.47 41.69 81.50 26.41 65.47 83.74 62.82 26.84 90.65 79.34 58.00 0.28 30.70 78.30 38.69 50.15 90.19 97.85 21.87 49.67 13.17 17.15 90.44 75.88 70.37 24.47 73.41 97.99 28.06 47.26 81.74 98.21 22.07 93.55 44.94 45.63 88.43 92.59 67.06 10.89 62.23 36.39 80.15 74.39 72.82 59.89 20.24 98.62 53.82 66.12 20.61 85.45 27.28 10.45 6.24 31.58 78.80 32.41 30.53 34.58 35.67 13.99 24.92 25.57 22.31 28.69 50.52 53.60 39.04 83.88 95.28 98.44 93.58 52.62 16.97 65.45 70.21 9.52 65.83 28.86 69.26 66.50 42.50 51.93 45.28 57.03 17.74 44.53 79.51 87.42 -71.19 39.23 95.55 63.67 96.43 68.16 58.13 48.28 54.99 3.79 3.35 96.30 89.26 59.19 70.59 74.83 27.60 79.32 38.13 9.30 35.04 26.37 47.74 77.25 52.32 51.42 12.72 11.54 26.42 64.87 31.45 51.09 23.23 87.42 75.24 85.75 19.93 41.89 46.91 69.60 96.01 17.04 14.77 98.39 99.70 48.22 0.12 7.68 83.93 4.44 66.16 80.19 92.84 4.28 46.54 10.50 98.41 78.79 4.47 51.05 78.20 29.43 71.79 70.50 67.30 64.58 15.36 74.17 56.17 5.50 42.12 67.15 23.18 89.29 74.23 90.44 64.40 36.26 41.64 69.35 50.07 88.73 90.64 69.89 11.45 27.95 15.08 42.95 97.19 87.06 62.00 65.13 86.03 27.64 1.70 1.44 53.98 89.00 3.41 99.75 -15.69 79.74 2.80 69.42 23.98 87.07 91.30 15.86 33.97 39.80 87.11 27.23 43.22 21.94 73.91 48.96 25.83 67.25 38.63 78.22 6.37 44.50 95.13 84.64 46.40 30.67 72.39 87.84 62.54 12.97 9.49 75.43 44.65 91.25 2.00 97.35 47.27 67.80 42.37 99.38 40.86 48.70 14.20 23.28 50.59 8.72 62.73 57.75 27.45 59.22 82.10 11.79 49.45 79.80 26.29 3.88 82.31 69.69 59.51 64.16 50.30 33.65 53.83 83.87 79.19 18.27 55.33 6.48 7.30 76.25 89.04 30.44 56.60 51.26 60.44 88.29 99.18 90.10 75.99 28.67 1.14 72.80 82.87 22.90 5.80 95.16 4.92 50.13 29.56 46.01 28.88 23.76 37.78 62.89 94.89 18.23 35.53 97.33 16.91 68.72 -85.83 35.34 64.11 26.78 68.12 25.80 84.29 14.76 87.55 57.72 24.22 84.59 52.34 20.60 3.87 86.25 34.49 81.09 46.58 31.18 56.57 86.89 4.90 51.95 70.51 11.81 5.67 94.04 27.72 67.07 64.72 72.29 36.35 77.34 56.49 45.14 86.45 20.94 5.99 13.22 12.35 45.94 48.52 34.20 14.72 39.04 80.83 54.30 46.83 61.02 52.61 25.91 2.97 50.95 89.69 38.28 77.31 92.79 61.90 2.23 52.84 24.07 19.57 15.09 92.71 77.06 87.75 5.42 3.37 94.74 35.61 20.99 29.67 50.33 14.11 22.42 90.45 77.69 98.36 43.78 49.95 49.95 7.83 56.15 99.19 40.63 79.55 75.08 11.80 2.20 34.48 14.96 70.00 83.69 65.17 21.70 24.44 41.25 65.48 64.21 -88.75 67.67 9.35 40.00 41.56 55.34 19.39 47.68 87.77 40.29 22.72 39.76 91.39 10.52 37.63 81.63 86.38 19.33 95.50 57.21 13.60 97.05 87.01 0.47 16.79 63.52 41.98 46.60 94.32 24.78 88.46 26.11 70.23 9.24 84.47 92.62 41.39 63.37 42.78 86.50 49.05 31.95 82.35 99.77 14.28 78.99 67.02 19.19 87.19 1.68 13.19 64.31 43.92 70.72 84.35 16.31 52.15 11.70 36.52 93.57 7.93 69.25 27.04 61.69 69.16 63.63 79.68 86.85 45.19 81.49 47.80 75.94 68.66 27.14 10.12 65.62 54.03 75.57 77.03 69.96 46.19 28.31 24.12 20.40 50.59 73.90 30.26 67.74 53.94 26.87 4.12 34.04 61.37 23.75 15.38 62.17 10.64 12.87 89.25 73.53 -60.78 45.50 58.91 94.63 65.09 18.78 66.72 21.36 92.63 13.86 7.51 90.32 73.54 67.84 23.37 51.99 79.99 81.09 50.84 19.86 24.12 47.37 40.89 65.33 93.65 3.09 34.49 92.61 88.95 85.71 76.50 35.97 69.17 96.91 43.92 95.31 77.04 90.44 17.68 81.07 97.79 74.36 93.43 44.76 26.94 26.67 58.36 59.60 73.38 72.54 26.33 53.07 97.53 68.08 47.25 40.08 42.93 83.62 39.15 2.33 31.33 21.08 82.49 75.92 21.06 59.26 57.36 70.86 81.41 16.19 18.49 0.04 50.88 31.30 27.42 72.81 99.11 57.14 80.54 43.35 24.89 35.20 31.10 69.09 5.45 6.91 2.73 74.57 61.70 66.21 72.45 19.19 53.08 11.80 49.07 62.87 47.69 80.42 75.40 47.42 -43.02 20.95 90.58 74.20 5.70 93.98 51.39 97.45 35.43 83.55 55.07 34.45 50.39 68.60 13.55 24.12 89.88 56.57 37.35 3.25 32.52 47.54 28.57 59.80 97.21 19.26 0.84 41.79 38.46 45.94 70.59 12.01 5.97 99.16 27.43 23.99 39.32 83.65 55.36 60.40 57.80 49.30 59.78 23.30 21.33 92.74 34.16 78.14 66.83 79.70 51.58 35.03 17.37 77.87 95.24 55.59 37.77 68.60 58.47 8.00 33.34 72.15 20.88 59.70 9.29 31.08 74.25 16.71 70.56 16.42 18.91 21.27 59.94 44.79 70.05 48.72 69.80 14.19 47.75 63.22 25.38 16.23 1.34 65.56 37.39 69.65 55.44 71.20 8.89 26.88 4.16 29.28 84.65 94.80 96.56 42.83 7.94 78.11 62.25 61.25 -40.79 95.38 96.42 84.32 62.85 79.10 11.87 25.00 7.56 25.62 20.83 71.00 22.56 24.86 66.83 3.92 60.67 86.80 37.86 72.47 83.26 44.91 0.33 1.49 5.07 32.44 4.55 23.46 0.59 52.72 86.12 75.07 70.39 90.74 29.10 29.59 77.62 56.60 51.37 47.37 62.93 33.93 99.43 50.61 71.53 34.87 7.37 35.70 99.86 38.28 50.16 33.85 11.68 75.34 68.77 61.36 78.96 27.78 83.41 30.98 57.81 76.95 30.16 12.25 59.52 88.48 2.60 27.04 30.13 53.40 39.64 71.76 43.39 34.79 35.19 99.46 15.00 71.12 46.22 15.53 30.68 37.05 64.82 87.28 11.21 50.07 42.12 93.77 30.71 54.49 16.24 43.96 3.73 43.40 71.72 70.64 8.24 62.59 88.28 81.63 -15.75 20.95 58.42 89.12 65.78 81.78 62.67 5.79 3.04 16.95 91.74 70.89 62.95 65.94 29.91 7.77 4.59 54.73 87.62 16.01 84.77 28.53 15.19 10.08 84.58 78.27 37.48 76.77 94.42 93.23 21.02 20.04 22.11 62.87 84.75 78.01 8.48 27.42 32.24 94.90 75.01 73.70 63.14 12.04 10.34 55.00 26.79 56.31 4.03 55.15 75.71 13.37 76.86 94.79 68.01 42.77 55.80 24.32 76.42 71.59 88.23 16.04 65.96 70.59 46.87 32.94 28.94 99.61 38.64 4.82 3.23 61.38 58.62 62.22 88.47 8.67 20.75 86.45 88.80 36.85 26.08 93.66 1.79 5.42 24.30 62.66 43.56 54.12 86.58 70.53 33.90 45.96 51.42 33.43 72.47 26.79 72.67 73.47 69.39 31.74 -42.60 46.29 17.82 92.98 53.84 9.65 1.47 0.34 65.29 3.69 56.30 85.10 15.52 73.59 42.73 28.73 3.16 18.82 98.60 74.35 54.70 55.07 22.89 99.14 41.77 6.73 55.73 23.44 93.55 67.09 78.08 34.07 58.71 42.86 43.11 31.21 11.66 78.66 9.60 49.01 93.79 78.66 96.03 62.56 30.31 78.50 64.26 81.07 21.88 90.99 67.91 4.23 48.12 96.68 28.70 10.92 98.59 18.64 9.45 19.28 92.12 11.72 91.70 21.94 83.13 47.85 84.11 55.89 11.32 66.04 56.20 26.75 52.92 58.28 66.27 94.86 72.20 31.77 43.98 7.13 93.26 88.40 42.52 47.76 2.36 86.40 78.59 13.01 11.11 95.30 18.34 35.84 54.21 71.96 47.36 32.21 67.81 86.65 25.74 69.87 -31.91 59.77 60.19 82.45 67.04 27.87 64.51 61.65 88.02 54.11 45.88 54.13 92.09 34.81 54.51 16.27 26.10 62.59 96.98 70.77 90.73 84.55 4.39 18.90 7.58 19.34 17.41 89.25 40.97 23.16 61.24 5.99 34.09 94.98 69.95 1.45 68.79 37.38 11.78 84.50 59.94 4.16 57.30 41.88 69.86 45.42 38.14 80.12 15.80 88.81 69.70 39.91 76.94 84.22 88.15 89.52 81.48 25.49 16.22 33.69 55.36 11.44 78.29 87.62 71.87 59.81 27.71 32.52 83.98 56.16 49.46 10.82 9.96 81.99 89.38 72.71 26.75 90.28 32.34 64.13 90.20 22.98 99.52 60.50 3.75 43.29 15.67 66.59 13.47 78.41 58.63 38.64 78.98 76.65 29.89 11.19 36.90 29.27 64.85 95.50 -46.13 49.14 12.10 13.49 14.56 53.61 27.72 89.36 8.26 29.02 70.82 36.76 23.04 33.48 32.11 21.61 8.16 12.69 3.32 27.31 50.60 9.50 32.49 20.98 87.42 9.18 37.33 10.29 15.60 79.84 15.72 15.21 26.07 59.41 0.74 89.01 79.50 45.09 32.34 49.71 28.53 65.37 10.00 55.93 47.42 18.91 43.12 66.58 3.47 16.26 9.40 2.26 54.79 50.83 54.13 85.80 1.39 61.25 56.35 27.50 67.06 74.82 59.44 22.72 55.22 96.47 31.98 89.63 78.96 33.24 39.46 80.05 70.65 42.11 40.82 28.20 64.23 20.41 69.96 78.89 68.45 84.82 10.44 19.14 16.75 34.12 20.30 0.76 54.85 42.53 62.14 3.12 43.05 61.72 6.89 22.65 36.20 55.77 60.38 51.53 -25.13 72.90 16.74 16.81 43.67 37.08 62.30 45.27 48.53 44.35 81.95 63.74 56.26 82.09 35.03 19.71 49.28 26.83 24.41 26.62 25.16 45.27 78.10 14.10 16.56 17.10 8.79 12.42 17.81 66.11 2.41 45.95 67.64 17.51 94.93 67.50 13.29 83.81 78.52 30.38 79.53 51.17 77.18 39.00 6.90 8.05 39.03 22.95 30.43 16.87 86.21 32.60 66.21 92.29 60.22 58.80 67.65 60.21 11.39 21.93 33.50 68.53 40.31 11.09 70.42 89.63 52.77 27.57 8.26 41.04 93.96 14.37 52.46 76.52 87.29 60.70 98.98 85.23 47.65 7.97 25.79 20.67 28.94 15.22 55.37 87.43 66.76 94.78 90.46 57.54 48.70 43.16 43.41 40.74 1.34 5.14 93.91 11.59 85.96 50.70 -1.94 1.14 0.46 40.74 47.89 77.30 37.97 98.28 41.80 5.05 70.49 9.94 57.10 48.29 5.21 96.51 55.59 26.43 47.68 89.16 40.42 91.36 9.21 46.14 97.29 70.89 74.22 37.67 11.49 90.06 22.97 31.37 76.13 84.96 32.27 87.58 23.12 66.91 33.90 10.87 24.87 47.98 88.24 84.91 70.08 68.86 10.43 43.11 39.75 93.00 87.71 96.26 97.46 84.84 20.43 90.48 14.22 18.10 14.73 33.96 89.36 98.73 56.10 43.30 48.37 83.53 41.67 80.69 47.92 18.60 53.81 94.93 40.22 16.07 86.66 10.73 34.55 33.29 62.90 23.65 88.70 81.94 13.67 64.41 73.27 70.92 7.78 49.96 10.72 8.64 98.31 76.52 33.78 59.99 82.05 93.06 30.13 72.25 56.26 39.58 -77.80 76.86 50.33 89.76 25.38 59.76 15.71 80.60 98.06 87.74 39.32 40.04 77.67 39.21 64.09 59.27 10.58 42.99 38.92 29.53 88.89 98.17 18.06 16.21 58.61 50.36 5.88 40.04 2.05 42.70 87.22 12.78 1.14 3.12 6.01 22.62 74.67 93.45 91.88 55.91 85.38 26.78 21.34 41.26 41.02 82.50 39.90 66.10 54.86 66.69 20.31 15.16 13.20 3.82 50.55 27.83 10.51 1.33 76.77 29.21 10.55 9.86 95.28 27.99 45.30 42.46 41.26 73.03 94.42 51.02 99.63 57.62 30.96 5.11 6.97 77.32 48.22 93.76 62.14 84.52 2.22 55.28 89.98 89.35 35.54 45.08 89.08 72.09 20.45 47.03 19.59 66.08 64.65 30.43 63.07 45.36 46.55 11.20 98.82 30.33 -74.46 84.08 31.11 9.83 8.22 63.06 95.27 19.07 3.62 30.47 98.79 14.86 24.87 36.58 83.00 5.44 17.23 52.32 89.38 20.81 7.19 30.49 57.11 73.11 23.57 56.52 54.70 94.19 87.05 89.17 53.11 72.71 41.79 25.44 84.75 17.68 42.71 77.79 61.86 55.71 10.02 83.68 23.42 88.86 69.34 56.26 3.08 81.90 37.83 95.65 43.80 89.72 61.36 12.79 27.90 20.40 62.74 96.74 33.71 82.40 37.80 64.75 29.72 60.22 23.75 49.42 35.81 67.25 39.55 12.84 46.56 90.75 88.76 16.62 42.51 31.67 37.21 68.81 34.88 5.87 13.81 38.53 23.08 60.37 77.41 1.97 63.53 89.86 65.89 69.30 62.76 77.25 83.08 62.97 11.08 17.58 99.74 25.35 88.52 37.70 -44.51 96.43 50.02 17.35 50.70 92.54 2.76 16.67 11.46 97.53 32.50 70.21 94.26 21.27 69.62 91.20 62.05 37.01 72.24 81.32 96.44 31.10 62.07 55.77 21.79 72.11 58.12 82.36 88.98 19.11 46.60 36.02 99.70 24.96 60.44 67.17 86.98 9.24 17.48 81.34 44.07 79.79 68.15 87.16 70.73 52.45 62.12 28.20 11.70 44.67 42.84 39.30 92.34 54.11 3.80 85.55 43.65 15.87 59.11 91.23 91.61 58.08 53.77 87.03 39.23 20.62 44.61 29.64 38.32 37.64 82.23 92.32 96.60 78.98 28.76 60.30 74.90 36.71 10.96 75.60 2.63 7.55 18.42 9.12 21.01 55.26 46.84 90.83 78.93 49.59 19.75 17.68 70.08 45.03 52.31 44.46 83.33 71.90 28.97 79.89 -4.93 49.27 9.30 12.10 83.44 52.04 61.74 12.94 42.56 1.68 56.60 8.47 42.47 58.79 2.15 44.27 84.52 88.39 26.50 20.99 78.23 72.00 46.66 37.79 72.59 29.93 91.69 54.31 28.63 59.83 57.25 21.29 82.05 4.06 15.06 68.87 94.57 67.31 88.13 30.93 50.10 18.47 34.44 18.14 85.69 5.21 7.12 31.45 39.82 1.16 52.78 92.20 35.97 46.64 54.28 0.20 54.67 48.11 2.26 61.89 50.64 98.32 73.21 52.21 98.46 57.69 30.80 71.49 33.03 28.47 99.84 73.52 82.06 12.81 56.56 78.66 93.17 19.48 18.19 30.47 51.60 93.39 6.43 89.90 60.27 6.09 98.16 27.49 48.63 84.33 73.43 85.27 65.83 18.45 63.36 29.64 2.69 25.18 13.46 13.30 -96.05 91.66 26.06 25.51 76.08 76.69 96.20 10.05 99.64 71.57 73.16 27.45 30.28 55.27 73.85 2.01 31.00 69.54 92.60 0.26 89.97 33.41 95.20 41.30 90.12 11.57 6.48 34.29 7.26 90.54 34.85 12.31 7.67 60.73 54.59 89.81 64.50 52.37 7.69 34.55 40.07 17.37 41.55 69.35 10.36 23.07 34.62 29.13 65.97 42.53 26.20 88.75 16.08 79.44 2.21 65.18 51.11 54.31 94.75 93.18 49.62 84.40 24.59 76.89 70.37 74.64 22.21 54.80 89.33 24.67 51.98 33.72 8.15 51.17 98.83 40.37 79.19 25.68 1.76 68.49 76.07 62.67 6.89 90.29 87.74 53.80 58.00 89.80 7.23 58.23 82.75 88.14 0.87 62.86 5.17 80.18 85.46 83.52 91.50 29.59 -45.59 53.21 25.60 21.70 53.68 60.11 21.76 86.55 67.46 37.40 55.36 49.19 63.67 80.34 72.64 15.07 72.18 85.44 45.55 31.43 57.33 59.30 35.81 98.41 8.27 34.39 88.20 88.84 41.85 11.57 48.25 34.67 37.11 91.55 25.98 20.67 42.70 37.24 48.81 79.53 29.58 88.08 93.19 47.61 30.53 43.79 98.24 66.20 0.53 12.39 97.69 45.58 79.22 35.96 15.62 34.87 30.59 37.09 65.47 76.95 20.02 43.62 77.83 9.29 4.14 65.71 45.25 31.47 88.93 75.96 3.38 3.08 48.64 73.22 75.03 89.21 33.93 88.15 72.51 53.33 62.89 78.97 2.07 43.61 61.46 84.10 81.63 80.04 64.51 84.76 27.02 21.01 16.61 40.38 12.45 16.87 65.67 9.52 66.20 9.59 -24.84 98.40 21.85 32.09 14.82 44.65 74.37 29.82 20.31 31.64 34.49 13.42 25.45 54.05 61.30 61.26 51.08 63.73 46.45 38.91 27.66 35.76 30.74 49.25 8.23 29.60 98.26 96.05 70.75 85.58 97.50 46.86 67.52 39.16 14.87 37.61 54.10 12.65 96.79 72.47 32.90 14.04 73.87 98.05 14.43 75.45 83.87 41.67 14.85 46.95 99.58 37.89 71.67 45.70 97.90 62.31 13.54 11.96 35.82 5.19 19.81 86.88 38.64 80.24 16.80 34.08 75.47 40.80 81.20 14.58 42.68 61.74 1.64 1.61 47.29 82.73 61.14 23.55 17.05 99.63 78.50 95.61 68.71 18.72 45.54 17.33 19.80 13.19 94.47 86.73 62.14 35.70 24.85 66.07 43.43 98.99 61.97 94.88 77.96 15.10 -20.86 57.60 70.55 18.63 47.71 6.40 95.36 25.24 67.63 59.77 82.16 4.78 6.43 21.00 90.56 1.30 53.38 83.22 25.09 59.71 55.07 7.71 57.42 54.64 63.27 77.99 87.42 45.98 66.46 22.58 36.64 22.32 96.56 33.75 10.45 29.33 61.28 93.35 9.73 62.23 31.06 53.87 21.06 46.52 33.36 21.99 10.29 11.69 79.98 50.22 6.56 25.20 77.36 54.86 16.18 19.59 67.74 94.48 70.01 86.81 17.58 72.60 22.69 87.47 8.02 98.84 50.91 51.50 11.59 67.38 71.05 81.40 34.47 29.99 11.79 11.04 89.35 45.48 23.55 42.92 73.83 32.07 68.79 49.60 78.67 42.35 53.58 93.07 58.61 57.72 21.33 30.74 94.48 23.09 54.34 89.01 12.51 15.85 32.80 33.58 -92.30 95.69 86.56 50.45 49.08 70.46 13.51 58.14 51.30 79.74 57.57 22.28 50.03 24.07 42.92 51.67 43.52 40.86 29.11 63.74 59.71 54.52 85.43 53.87 10.91 82.48 23.57 76.82 26.12 13.21 90.32 60.98 2.33 28.52 32.55 63.19 50.15 49.74 58.36 59.15 67.12 58.59 91.88 6.43 31.66 2.66 45.44 85.62 2.06 20.81 56.55 90.30 56.14 14.43 83.81 44.39 50.67 95.12 75.56 59.29 74.91 23.67 53.45 0.87 35.24 82.02 99.82 45.63 64.94 70.38 55.58 35.65 33.87 75.85 8.61 1.12 23.85 63.17 47.12 70.47 1.14 80.04 21.54 94.22 9.40 38.98 46.53 59.46 20.07 35.66 98.59 56.03 58.89 11.59 0.67 17.16 38.60 18.56 88.81 42.36 -83.02 42.71 36.71 97.37 69.02 90.67 84.30 33.47 30.61 72.21 65.00 90.93 65.38 52.51 37.78 12.35 6.10 6.24 9.90 94.05 90.91 8.62 90.84 76.26 74.92 32.31 12.86 22.59 91.71 97.17 45.10 28.31 50.61 96.22 87.26 22.30 39.49 79.90 45.34 64.39 74.04 86.24 76.76 20.34 10.65 49.74 25.43 18.28 72.72 14.66 6.79 79.65 37.23 62.41 21.06 42.31 96.37 18.65 26.37 63.60 87.36 53.13 95.56 18.34 52.23 72.76 61.17 66.65 54.94 94.09 25.78 58.15 74.37 30.71 40.26 24.21 35.19 89.42 41.64 53.76 82.90 40.09 60.10 79.02 68.76 47.41 36.16 70.44 29.81 93.95 64.47 2.12 62.33 7.34 46.30 22.51 45.30 34.60 57.14 6.68 -1.18 64.13 81.78 26.10 91.76 12.58 98.25 79.71 49.18 66.30 63.48 97.84 71.07 29.03 96.48 93.66 9.96 23.63 92.29 66.42 41.83 61.05 49.79 24.29 36.73 27.66 89.69 71.48 83.13 5.82 30.01 42.62 25.85 16.30 5.43 13.65 41.76 20.06 46.99 43.83 50.04 69.30 3.74 2.40 96.25 28.40 72.63 74.23 15.10 24.30 94.57 14.20 63.75 74.79 69.45 71.60 7.92 38.61 47.27 94.06 35.28 61.67 38.83 24.51 71.04 40.28 2.67 64.75 99.65 63.77 39.74 54.89 57.41 21.09 26.49 72.87 4.98 33.61 57.07 37.10 42.67 2.52 14.79 19.40 97.36 19.53 14.01 16.88 79.12 99.68 73.71 90.46 85.18 29.84 78.64 1.85 13.44 84.90 58.47 12.63 -2.69 57.25 6.65 0.13 44.50 79.01 17.15 33.10 81.34 64.96 88.97 14.62 82.57 10.66 89.54 69.39 1.42 60.94 10.04 60.44 36.64 99.90 35.99 69.21 37.47 3.43 80.81 36.85 47.49 77.28 51.54 24.59 53.60 75.61 20.48 81.33 78.85 48.54 66.45 19.12 59.29 16.05 76.29 66.69 99.88 30.32 91.07 30.40 84.39 92.38 18.39 42.48 5.09 94.87 88.87 19.56 9.33 43.57 35.12 63.90 27.96 41.80 84.86 13.28 89.82 39.81 17.96 33.48 89.95 88.23 82.83 64.20 99.10 38.73 75.26 12.94 5.89 54.17 50.67 74.39 43.32 38.86 4.22 56.27 95.85 37.48 87.44 85.47 28.16 60.90 51.82 95.09 49.22 37.77 36.69 40.50 78.67 27.33 6.80 9.63 -46.88 46.56 5.81 36.29 29.54 51.52 56.12 98.12 70.59 54.83 53.03 5.67 77.98 26.08 50.25 91.56 14.83 47.93 32.46 51.00 11.07 42.78 57.41 5.55 90.38 72.22 26.11 63.71 55.53 98.86 85.95 10.14 67.58 84.43 76.00 36.48 88.35 57.04 43.73 64.88 17.45 76.81 94.69 23.17 50.51 71.48 92.75 37.45 88.62 71.80 37.61 73.83 87.67 36.81 16.29 66.40 56.15 77.09 33.53 74.50 35.66 83.51 72.97 54.66 51.57 95.58 17.81 88.93 93.59 43.85 56.82 58.98 20.31 23.47 22.75 41.62 39.53 40.25 84.98 8.74 25.05 89.75 20.92 9.93 41.85 66.40 48.57 83.84 84.73 83.86 30.10 47.58 43.64 94.35 28.81 8.98 82.05 54.97 81.87 53.57 -90.70 0.64 24.26 48.81 56.77 65.05 76.50 54.90 60.78 80.25 93.36 0.96 88.85 78.03 86.31 9.19 53.15 82.28 67.42 63.63 86.47 17.04 92.42 99.71 64.27 52.18 60.63 72.63 13.64 64.75 7.89 87.23 15.64 75.37 36.39 74.32 75.24 74.86 49.16 72.00 39.69 24.23 91.05 24.94 40.61 78.41 56.56 58.56 59.81 56.10 43.67 93.54 43.40 74.42 3.57 25.76 98.64 55.79 34.65 69.11 49.61 62.50 44.28 22.19 21.90 81.53 45.89 16.58 19.67 60.20 20.53 99.01 20.23 51.85 59.25 54.17 89.41 42.49 75.57 57.96 4.34 34.43 41.36 79.89 29.81 35.49 59.38 88.27 20.25 39.94 94.13 54.67 79.75 96.02 17.55 15.01 12.18 48.32 73.93 72.72 -8.05 96.41 26.23 35.17 76.07 50.85 57.06 54.06 89.28 90.89 69.77 77.91 3.40 16.28 21.47 85.42 48.12 35.13 14.29 4.39 26.06 56.87 23.41 41.35 38.10 35.88 63.86 77.55 43.81 89.15 93.66 62.61 22.60 93.52 1.38 42.50 9.02 30.76 72.09 50.28 31.12 6.05 64.75 55.03 65.49 53.97 93.53 6.50 27.67 19.40 17.97 46.52 5.59 88.82 93.88 46.12 13.45 81.02 5.54 78.43 98.18 79.75 93.27 96.03 36.66 9.59 91.14 37.82 2.35 34.97 10.16 74.25 30.75 97.06 22.47 73.55 34.09 93.69 0.19 34.68 58.04 79.48 90.33 81.48 81.26 72.08 35.62 10.27 41.04 83.19 94.83 52.22 75.91 15.97 29.38 91.31 48.03 50.13 30.29 78.70 -3.12 35.03 89.47 2.18 93.45 7.24 89.40 4.78 74.53 3.47 85.66 18.76 24.45 37.98 41.83 21.67 64.70 63.25 27.46 9.63 76.36 14.44 79.54 74.69 77.57 0.37 23.51 26.02 82.31 11.21 41.01 32.27 33.88 13.53 68.29 47.78 76.13 49.68 94.66 89.43 86.85 78.80 92.93 69.61 45.96 55.54 65.29 82.27 52.89 34.96 60.87 68.89 61.06 48.36 57.50 4.34 86.86 19.95 52.40 54.18 71.48 10.67 4.81 99.94 68.38 34.30 33.52 23.83 96.25 58.21 96.93 88.21 76.60 10.72 67.75 29.77 41.75 2.27 74.33 32.56 17.51 69.87 26.28 37.73 37.36 75.57 38.79 68.11 62.11 69.13 35.45 65.62 71.79 74.53 61.70 18.96 33.99 45.55 58.93 40.54 -53.32 82.75 14.49 97.93 7.92 9.08 18.91 91.52 4.39 82.37 38.79 27.06 54.45 28.55 90.04 13.80 25.99 19.50 39.45 92.27 99.09 16.70 72.16 97.13 65.70 30.54 98.66 77.12 8.11 72.32 75.81 81.31 21.22 90.85 39.91 11.72 37.36 22.21 13.88 76.63 86.31 96.51 56.95 94.13 99.90 84.35 91.23 8.58 31.44 86.92 28.33 30.22 14.86 86.69 24.47 44.01 15.58 74.95 78.43 57.79 27.74 59.11 99.79 96.94 0.92 17.90 40.46 1.32 18.73 82.22 25.69 33.81 91.25 71.27 32.35 37.14 22.86 65.97 50.17 78.04 8.20 69.24 16.65 20.07 10.76 81.99 20.56 85.21 47.11 27.39 98.03 82.70 43.85 51.73 93.23 25.40 38.21 76.35 38.62 86.02 -54.38 69.07 67.59 1.12 53.95 70.48 35.72 93.00 9.40 76.70 43.16 70.00 22.93 98.93 84.76 11.37 10.42 81.71 79.96 43.20 84.99 40.34 49.71 22.75 67.45 52.19 31.35 86.56 82.40 82.74 55.00 38.14 57.21 54.82 70.94 22.48 37.32 73.17 75.44 24.79 24.12 33.27 62.32 89.32 12.64 20.95 33.71 18.02 20.44 59.43 29.04 52.90 47.96 3.04 67.21 51.95 24.31 51.30 27.09 12.52 6.52 14.78 43.81 20.27 54.91 56.33 66.94 8.44 60.20 63.48 74.14 7.05 83.40 65.08 6.95 75.94 68.01 33.28 52.79 23.04 66.40 77.57 55.76 79.04 49.95 99.59 17.89 71.73 34.97 80.96 97.75 24.85 47.48 71.42 63.15 71.89 54.40 30.09 35.42 30.23 -31.41 68.26 5.10 86.51 89.45 0.96 53.96 10.56 82.79 52.84 12.47 18.19 53.96 6.67 83.39 69.50 56.23 47.53 26.62 80.86 75.17 57.67 11.70 97.52 37.94 45.45 31.15 0.26 39.83 63.38 33.15 64.24 37.23 99.66 69.08 77.50 90.04 55.85 42.54 5.89 23.30 96.56 7.03 51.48 85.11 32.08 96.84 43.00 52.41 36.95 79.77 89.05 7.64 66.47 97.60 47.12 18.38 86.87 84.45 23.48 74.11 0.57 41.93 13.10 7.15 67.20 64.20 26.76 7.41 53.52 61.79 75.04 46.57 95.04 76.48 71.10 53.01 49.26 4.99 64.46 98.16 50.37 84.62 58.61 76.90 10.34 34.93 14.92 99.01 19.33 29.57 82.54 83.79 7.65 82.91 33.39 44.44 7.25 73.23 46.63 -22.25 67.48 11.02 10.08 9.52 23.59 73.52 28.46 39.97 89.50 68.82 13.57 90.14 72.05 20.36 96.70 5.65 0.79 35.42 35.06 35.44 2.96 62.24 64.00 43.03 76.14 47.72 67.66 2.84 32.12 81.42 51.28 52.16 66.27 44.24 97.36 84.26 19.78 28.66 40.49 23.89 70.94 97.17 34.93 87.07 21.19 66.27 70.00 11.03 73.54 20.79 55.10 56.41 52.75 6.25 36.23 49.63 89.34 28.27 50.81 13.71 88.87 47.54 24.44 19.76 87.35 85.62 59.57 52.59 17.64 55.11 49.19 32.19 98.29 67.07 62.67 35.34 98.96 38.98 78.98 8.32 78.46 56.32 38.90 38.05 50.98 83.11 37.89 41.80 97.17 0.17 97.25 6.58 32.27 24.01 46.78 66.31 2.71 6.56 33.44 -69.35 93.45 56.60 67.42 70.40 85.55 0.55 38.87 39.35 98.69 63.62 50.67 45.58 32.84 33.89 20.02 55.41 97.43 11.54 44.66 12.86 70.44 21.15 40.74 29.03 72.29 28.83 53.31 95.67 62.77 71.10 12.44 95.52 34.47 40.12 65.02 37.60 65.80 75.71 37.35 46.90 96.09 3.90 65.19 4.17 98.79 85.22 45.96 66.73 4.06 20.80 14.83 45.22 75.96 74.72 53.70 45.70 93.28 69.55 61.98 72.15 35.09 80.86 38.96 27.56 0.15 31.15 90.72 29.75 44.78 59.96 26.84 20.72 79.03 34.59 98.27 71.27 39.00 44.36 81.83 84.53 28.20 13.27 65.21 13.42 78.91 56.22 32.78 12.21 63.80 31.53 55.25 46.37 40.02 10.27 38.94 87.86 20.76 74.99 8.49 -83.97 9.51 1.96 62.13 86.51 32.89 13.48 57.11 17.26 94.57 36.80 21.16 81.61 4.52 97.60 47.85 14.62 49.64 62.46 53.96 33.73 97.99 28.10 62.25 12.40 56.12 13.65 86.57 74.61 8.83 11.59 26.59 67.29 70.47 44.77 80.55 59.15 73.75 11.94 80.57 65.27 84.30 64.34 97.98 44.17 90.32 58.64 41.79 41.67 19.76 67.11 66.77 71.00 7.78 17.48 49.02 92.13 51.43 31.37 65.67 7.88 38.12 31.77 1.21 97.69 52.86 31.28 51.34 68.17 33.71 98.54 52.04 61.96 82.36 78.98 40.76 15.86 61.74 54.57 50.16 26.45 94.10 61.23 28.40 78.47 94.56 7.68 97.97 51.72 20.66 73.25 38.68 13.78 17.07 35.65 32.73 66.04 66.26 88.62 52.77 -88.80 18.51 65.38 13.18 85.56 68.19 91.22 41.88 62.86 60.80 42.27 62.51 33.63 34.71 40.03 85.87 57.34 90.33 13.99 33.92 54.91 32.84 60.68 51.44 75.37 67.99 20.38 60.74 79.97 42.74 88.66 72.28 58.45 6.54 77.32 99.63 19.33 12.10 69.94 55.15 90.07 61.89 43.26 54.21 93.55 43.35 42.32 67.58 41.52 54.37 65.69 3.94 84.95 45.41 11.31 74.96 49.95 84.59 45.92 57.47 22.92 32.93 46.38 24.09 74.43 21.51 86.53 66.69 37.49 72.23 42.53 89.63 18.58 11.64 50.36 21.34 89.53 98.34 31.41 36.05 95.23 55.97 37.19 83.08 87.98 4.85 94.05 54.14 47.71 74.19 7.51 42.39 50.15 98.76 8.47 89.57 8.63 0.15 38.75 20.59 -65.58 24.22 14.17 30.18 0.74 66.51 18.24 40.89 29.33 75.75 61.26 41.93 14.19 49.25 22.93 7.72 98.69 17.57 3.74 68.59 83.58 80.21 21.02 47.21 16.86 19.19 58.24 29.40 18.61 28.70 25.73 60.24 69.84 60.57 70.80 2.13 59.47 81.31 90.82 94.26 25.00 56.79 3.83 7.47 65.04 79.24 99.95 77.21 14.32 27.86 64.23 0.53 85.12 88.91 82.69 75.95 51.07 73.18 61.23 11.43 43.72 80.92 95.73 22.77 41.58 81.15 80.12 50.11 41.85 84.37 17.79 30.45 1.98 58.04 11.81 99.61 95.55 54.05 9.07 93.84 93.48 10.19 9.11 52.84 31.73 23.76 4.50 75.60 23.10 27.12 80.67 43.81 40.71 35.59 94.15 24.52 66.58 83.35 68.04 16.47 -56.52 43.44 26.01 22.02 29.64 1.48 13.93 90.38 21.67 86.58 8.33 90.62 31.49 68.18 41.32 80.27 33.05 20.81 32.28 77.05 72.11 73.02 59.86 37.63 26.68 41.52 61.16 3.09 42.11 27.16 47.28 80.83 66.05 2.29 0.39 66.36 73.93 50.44 32.94 2.04 2.86 1.60 45.18 4.68 77.83 61.10 72.21 52.87 59.37 39.96 77.69 78.40 67.85 9.99 28.49 45.47 50.15 86.56 85.71 3.31 34.87 12.17 10.61 44.34 18.83 65.29 44.87 17.65 9.22 64.55 48.24 85.72 32.84 66.73 73.76 48.36 86.95 84.61 38.57 40.04 63.45 73.22 81.99 40.65 68.72 66.46 33.18 0.58 66.81 72.40 55.91 86.04 41.38 97.95 6.51 45.54 41.10 95.73 45.41 94.57 -86.80 4.57 31.65 57.88 20.66 85.84 71.17 84.20 67.79 15.29 4.02 28.69 90.26 95.62 97.30 44.51 2.22 5.83 45.40 12.77 30.95 84.16 18.61 13.10 76.40 43.27 99.39 22.75 10.54 24.19 91.72 52.77 76.09 76.88 7.49 38.91 31.22 60.46 45.97 11.05 45.66 88.54 5.46 75.56 1.29 43.65 41.22 18.21 78.60 95.91 35.46 66.33 38.91 68.79 39.74 91.77 58.93 12.67 73.55 73.90 48.82 60.47 75.21 14.48 95.26 93.17 7.93 78.20 96.77 99.70 47.03 81.77 80.76 21.23 48.97 53.89 94.37 85.01 79.74 29.18 80.35 20.41 50.77 69.39 38.62 57.91 1.03 27.88 21.22 72.77 80.83 25.72 7.41 36.01 46.33 90.83 95.87 2.90 25.57 41.62 -43.14 97.42 65.66 16.31 79.48 72.95 37.91 5.19 9.30 17.64 84.57 55.98 48.94 48.64 21.68 25.71 53.04 58.06 84.02 17.15 1.29 67.62 17.69 71.50 62.85 23.97 62.08 31.60 99.69 31.43 16.15 96.64 37.79 39.44 61.27 39.51 29.06 9.79 53.98 62.99 42.86 75.86 28.93 62.85 86.89 47.20 18.42 63.00 24.89 40.76 44.66 29.90 56.23 83.57 28.04 67.04 69.93 44.26 35.58 35.60 40.85 95.25 99.54 61.27 93.56 30.52 4.63 5.28 62.71 14.38 19.46 9.51 67.99 19.76 18.55 89.32 95.62 93.27 79.67 26.98 85.31 72.45 85.38 49.72 95.37 20.06 98.16 43.09 30.91 84.48 32.75 33.74 85.71 53.06 14.24 14.80 52.82 90.34 59.49 51.95 -52.10 31.11 52.48 68.26 86.32 53.15 6.26 22.00 23.68 39.91 97.42 41.02 65.25 39.30 73.34 59.79 17.20 12.22 89.12 39.36 36.01 33.58 48.93 18.55 15.76 54.82 42.98 71.78 9.76 21.43 84.20 0.87 98.02 20.70 40.51 90.56 52.61 10.10 45.89 53.28 54.26 49.59 80.04 71.43 94.06 20.80 81.33 93.01 16.86 33.32 89.33 74.21 91.91 89.09 69.58 56.67 81.56 55.55 92.63 46.29 6.00 55.11 92.64 50.11 78.19 94.11 82.73 91.03 66.47 41.29 85.44 29.93 2.86 45.37 60.70 13.96 55.80 73.42 50.89 90.49 29.95 27.47 63.09 41.03 11.46 59.96 76.53 85.99 61.33 7.52 31.30 67.95 93.84 36.94 24.10 34.08 14.11 59.78 57.13 89.70 -95.00 23.39 0.20 23.59 65.84 95.41 5.85 62.80 11.53 96.43 93.33 17.97 74.94 9.39 93.98 38.88 6.96 19.96 86.24 91.63 54.17 6.36 67.11 21.32 5.28 65.59 76.37 0.07 41.09 53.14 94.19 88.71 27.98 66.11 84.84 98.32 99.77 2.35 97.79 99.04 66.97 49.70 5.87 73.36 78.26 70.94 45.36 57.92 89.16 28.08 79.64 9.66 64.42 7.12 96.17 51.33 41.72 75.74 77.03 66.39 21.19 41.91 9.20 59.33 1.37 96.95 6.72 10.18 12.34 22.62 64.58 24.41 60.77 24.99 38.44 49.84 58.73 13.84 72.00 25.91 43.36 89.49 2.15 71.89 9.24 24.71 38.05 45.00 15.30 8.36 11.40 90.83 38.64 13.12 68.30 23.25 78.16 58.24 71.09 33.06 -2.93 92.95 36.47 70.45 19.81 72.55 19.37 72.21 3.09 27.32 51.59 39.30 91.19 60.07 38.14 0.32 1.28 53.57 25.06 89.97 21.32 33.16 76.90 82.40 88.81 69.60 67.63 61.19 72.93 63.05 13.71 61.12 19.26 90.25 53.52 78.74 96.99 12.06 35.40 46.08 78.15 44.14 41.81 75.03 37.46 88.23 73.06 87.12 29.77 53.44 30.47 18.72 66.63 85.26 39.26 30.98 55.18 14.28 62.87 53.19 43.12 87.86 80.35 41.25 60.87 69.76 87.97 80.07 37.04 55.86 44.22 56.86 74.09 47.50 94.83 28.24 51.70 49.30 70.07 96.98 25.26 3.46 69.33 38.27 13.88 45.22 72.77 20.40 96.10 93.71 0.39 49.36 45.61 29.70 40.93 70.04 0.01 37.05 34.74 1.63 -43.46 30.14 20.86 61.38 82.54 80.81 55.94 54.65 93.34 35.73 92.69 15.03 84.91 83.56 70.32 57.99 99.31 31.15 63.46 72.26 20.88 75.92 92.17 67.21 33.20 88.39 14.98 62.31 84.30 18.07 59.89 89.13 42.39 70.92 27.61 46.27 10.54 73.71 46.72 92.17 63.74 45.59 29.87 59.07 13.89 40.64 7.01 84.78 71.89 69.14 88.28 67.41 43.16 24.19 95.82 37.02 30.00 7.63 99.02 20.77 24.86 53.85 4.68 44.51 40.95 75.53 46.52 57.78 31.89 25.40 64.23 76.62 15.15 85.02 75.50 2.56 66.58 89.37 23.85 72.51 73.93 72.82 91.64 42.84 48.52 0.67 31.02 58.70 47.60 56.03 69.75 98.75 70.52 72.60 86.29 75.79 26.66 17.67 92.94 61.75 -17.32 75.38 3.58 94.74 65.49 12.38 5.02 61.68 1.49 53.91 37.03 84.54 13.59 51.73 26.46 3.12 26.60 61.34 33.21 25.09 70.04 9.68 3.51 54.81 71.37 85.56 85.77 34.37 31.99 70.06 73.79 70.61 76.84 82.07 63.63 71.18 11.01 66.74 40.10 21.00 90.42 40.52 15.29 51.62 12.87 39.24 43.44 58.81 5.67 26.73 63.36 29.01 22.82 51.67 51.46 35.40 74.25 38.31 99.81 10.63 81.51 67.56 94.85 73.97 5.04 25.32 21.47 42.62 41.77 41.16 81.45 75.90 38.28 23.02 48.18 9.48 98.63 83.86 19.79 20.95 53.10 5.09 4.20 16.40 61.79 97.46 80.56 49.51 91.92 52.98 51.29 92.35 92.52 95.13 76.19 92.31 15.99 86.30 41.65 45.95 -30.31 0.15 68.78 33.23 46.24 43.10 19.99 29.89 56.04 71.48 39.06 64.50 78.47 88.77 95.85 44.24 27.04 59.06 46.61 52.53 92.05 49.23 1.90 72.02 41.33 93.13 99.52 93.87 5.46 59.59 25.48 7.78 61.34 86.71 64.25 57.31 3.07 75.41 23.80 42.39 41.34 18.10 20.91 88.64 45.15 14.61 66.52 21.12 55.80 81.98 63.64 5.63 59.14 0.59 22.74 90.23 17.81 13.34 5.08 70.31 33.07 39.44 56.57 98.26 79.64 48.07 57.95 64.56 3.61 50.43 66.06 73.64 10.15 62.51 90.27 71.32 36.63 58.69 4.66 6.03 10.99 7.98 14.59 58.50 27.38 67.87 18.55 74.64 41.68 49.94 37.74 83.49 17.91 25.10 49.27 51.84 17.69 43.13 98.41 71.13 -78.36 70.71 44.05 10.45 93.14 10.61 97.96 16.24 20.12 88.56 87.71 99.45 31.86 73.69 42.47 81.05 89.73 0.98 41.97 49.06 83.15 18.61 36.13 34.35 45.86 46.71 80.10 85.93 29.55 38.80 54.99 53.13 73.31 96.80 50.60 86.68 58.44 60.34 44.37 95.88 97.50 34.15 23.57 11.92 12.63 1.17 16.70 46.58 31.52 48.61 41.96 49.08 58.12 21.00 71.89 85.56 6.36 52.74 72.77 60.61 39.01 0.97 46.71 67.81 32.06 41.84 11.87 80.76 10.24 7.67 17.94 60.20 36.79 71.63 64.42 4.53 10.02 10.72 94.58 9.59 65.90 33.81 29.20 28.04 22.17 93.20 86.90 66.49 71.77 37.36 83.05 26.37 68.87 35.99 73.82 16.83 28.86 80.86 81.75 18.29 -2.90 23.91 47.83 83.17 8.98 53.83 22.32 78.05 4.86 87.80 65.77 77.22 26.40 29.81 18.88 60.11 68.15 22.52 53.33 39.49 76.77 15.81 47.33 45.67 22.97 13.22 76.65 70.74 90.36 1.69 47.98 69.66 23.75 84.37 41.80 39.64 29.71 27.15 87.60 76.90 80.27 24.24 78.92 51.79 7.06 40.58 3.09 58.63 22.88 79.81 79.21 47.02 77.59 91.09 27.66 65.25 92.03 88.42 59.78 49.64 81.27 77.16 25.44 88.74 0.19 74.08 43.36 74.26 40.32 11.72 7.34 2.49 28.41 77.37 66.59 55.33 53.35 55.77 86.33 44.24 1.96 69.45 61.40 75.77 53.39 0.57 49.00 94.98 18.74 2.17 69.62 29.00 67.80 7.25 44.02 53.00 84.99 86.54 47.15 6.46 -84.31 88.83 39.00 95.68 78.75 13.12 36.99 83.32 96.31 24.95 38.50 78.20 98.55 2.00 45.06 36.98 20.90 40.75 45.03 20.38 9.51 20.69 60.56 74.73 78.31 61.29 37.96 40.93 67.99 4.64 35.21 20.21 45.98 73.55 60.03 51.11 40.52 58.98 66.19 30.78 49.71 98.48 96.86 67.97 49.07 62.35 79.20 31.37 3.16 81.34 66.50 64.58 18.25 38.40 64.21 71.11 49.41 19.75 94.27 7.24 78.72 68.39 85.67 26.55 15.68 15.30 89.59 57.09 73.40 1.12 38.41 74.96 34.48 44.97 31.55 66.79 70.16 96.01 78.32 70.67 55.08 99.07 4.39 94.96 56.01 45.98 72.56 21.63 42.47 95.08 30.56 57.27 80.74 11.11 7.42 98.45 48.36 41.59 81.70 80.23 -87.52 75.08 51.35 3.43 73.58 54.34 23.34 66.28 37.17 43.85 34.68 5.50 37.67 22.01 42.93 98.24 24.86 27.32 67.44 23.09 51.12 42.52 13.44 53.70 82.53 23.44 41.70 68.02 45.38 56.66 26.83 27.22 14.53 18.54 89.63 9.67 22.45 29.84 34.69 35.40 39.37 67.56 99.56 85.02 81.92 48.61 9.00 31.09 3.87 47.75 41.69 78.73 89.99 57.15 11.22 55.42 91.39 73.12 46.21 43.42 68.75 3.52 55.02 31.24 16.11 10.93 78.91 89.24 0.02 66.96 6.33 68.41 58.33 11.73 91.94 60.57 91.76 92.12 1.19 14.59 35.24 2.55 68.51 99.22 84.07 33.03 88.80 33.09 49.44 54.71 40.66 11.73 79.60 72.61 65.16 84.55 57.51 59.30 92.47 29.89 -86.99 4.27 33.01 57.51 12.10 40.30 62.25 69.24 91.77 34.85 91.72 88.64 62.37 50.45 90.17 25.91 77.00 76.32 55.21 76.38 77.00 92.43 43.59 58.73 4.20 15.00 89.68 27.31 47.79 11.79 35.38 16.11 42.73 39.02 32.33 99.68 7.45 27.22 69.19 41.11 69.12 86.82 96.34 41.84 54.09 45.52 1.14 8.09 11.49 44.46 44.57 94.54 75.93 50.47 1.76 46.82 88.60 84.65 29.33 23.06 32.54 61.41 91.44 36.99 71.39 8.67 56.88 57.92 73.44 52.25 78.74 34.14 29.87 72.86 76.23 55.24 85.47 86.52 20.15 44.23 44.57 31.48 48.61 39.27 53.34 14.13 78.14 32.07 50.40 16.36 98.92 70.41 50.48 73.21 81.54 12.81 29.72 59.51 82.13 58.02 -13.06 6.03 81.78 20.65 72.01 75.48 52.44 35.16 95.14 86.69 45.80 7.49 77.86 25.95 29.54 93.61 17.14 39.13 28.88 78.12 97.44 2.96 42.72 40.60 23.27 80.52 9.38 54.66 3.17 5.59 7.84 27.40 61.69 13.56 97.34 57.03 50.13 81.75 58.43 77.67 32.19 44.98 30.80 89.41 70.54 70.11 97.03 88.97 34.38 46.47 37.98 32.38 78.10 43.31 67.80 79.57 54.25 32.85 95.91 41.53 84.61 0.20 10.64 14.10 13.77 10.52 63.03 80.59 19.95 40.72 78.08 40.26 60.29 3.07 36.46 33.54 40.24 34.98 41.74 48.10 0.30 96.36 75.23 84.51 9.02 78.09 96.39 56.69 78.89 13.06 76.46 43.98 18.58 0.06 71.68 30.51 87.94 1.57 24.04 96.53 -73.12 24.88 50.12 81.21 67.72 92.21 86.14 52.90 61.84 90.76 49.21 33.02 0.36 2.69 82.27 45.84 27.78 28.64 71.88 89.82 67.32 96.12 12.16 59.27 74.87 30.83 7.31 34.87 12.37 91.66 78.74 71.41 4.15 78.68 0.29 57.35 68.61 57.58 62.20 13.00 84.24 46.20 1.19 30.92 29.54 36.62 43.19 59.84 15.02 37.11 36.33 42.88 79.99 68.78 88.79 5.08 99.30 59.35 73.42 55.49 91.93 54.31 82.89 13.22 2.48 4.59 23.21 74.13 95.85 57.29 33.49 26.33 96.22 54.94 23.33 66.76 92.42 16.20 2.61 67.24 96.78 24.53 38.03 7.29 16.19 57.32 63.50 3.69 44.37 95.46 92.66 22.59 7.61 86.62 10.14 65.47 77.58 32.76 85.88 84.94 -96.80 99.91 77.67 17.67 63.65 35.91 0.68 78.69 11.46 26.24 94.37 35.01 43.82 21.07 7.41 13.46 45.45 49.90 78.53 83.87 7.55 14.33 61.14 65.01 63.96 49.84 84.70 1.47 45.78 72.10 53.42 71.36 87.52 8.66 36.38 14.34 39.88 3.73 62.45 89.47 14.88 75.27 74.51 53.29 45.39 46.72 46.44 8.63 57.15 99.06 17.67 32.60 54.55 83.08 70.62 2.72 35.28 97.94 79.40 96.99 5.88 34.03 79.56 27.18 89.29 29.17 19.71 96.65 57.66 24.16 50.16 85.06 43.46 89.59 36.19 20.53 9.70 60.56 13.52 74.78 15.46 95.33 76.65 85.44 5.38 11.33 48.61 56.55 29.32 67.20 62.91 65.93 80.95 17.44 78.11 19.41 18.55 28.12 18.99 64.87 -18.43 50.25 93.50 86.16 47.30 94.93 94.33 38.25 33.03 97.17 81.67 94.34 22.11 31.21 39.11 18.02 88.84 10.55 46.33 3.03 76.20 50.67 79.96 87.89 28.86 8.60 16.15 39.72 96.86 70.21 19.96 73.35 70.29 25.90 64.91 64.76 22.21 54.16 59.84 93.62 96.12 22.40 32.20 44.86 9.61 88.31 97.04 37.57 10.23 26.73 52.94 44.69 29.94 77.68 88.20 5.94 97.30 6.50 5.18 77.78 71.94 86.57 14.42 99.21 97.96 83.69 17.88 6.48 80.85 72.40 39.97 41.16 88.53 62.27 75.05 87.70 50.28 70.87 14.28 98.97 95.07 0.28 73.31 16.15 41.60 21.21 98.89 58.48 52.98 79.20 83.13 43.10 47.32 89.56 89.41 73.00 19.53 20.04 58.47 13.19 -67.23 72.54 97.54 6.08 65.36 78.98 71.44 15.28 76.18 38.68 43.38 12.88 53.74 16.55 30.54 30.47 69.29 11.13 84.18 87.15 71.62 64.61 81.33 3.56 0.08 14.96 64.47 59.23 42.64 12.05 29.98 49.01 48.43 96.82 62.86 30.32 80.04 80.11 99.59 81.32 53.15 81.40 60.88 61.25 61.95 85.47 0.22 71.87 56.58 76.82 67.87 90.77 80.41 71.65 59.24 63.54 80.71 17.57 26.92 67.98 59.25 7.71 84.98 86.96 43.75 12.43 84.96 39.63 73.02 43.01 46.73 0.34 89.33 56.28 73.93 75.43 28.76 42.67 20.34 28.08 23.39 67.83 76.24 45.73 78.85 65.64 60.03 35.68 86.25 97.82 19.70 9.84 82.96 47.34 52.05 57.95 4.92 34.32 65.76 93.69 -89.96 73.27 66.35 81.85 92.10 61.22 61.73 56.16 13.15 0.49 18.55 13.19 57.40 13.99 50.99 22.03 32.42 26.59 64.64 65.30 13.26 20.03 48.00 24.85 92.79 10.91 17.32 79.65 3.48 99.74 1.59 93.56 88.19 4.28 14.97 84.05 0.01 85.57 92.43 81.41 58.33 14.38 72.92 50.45 63.07 98.18 71.30 95.80 39.81 1.65 82.77 41.59 2.17 6.56 57.91 55.99 4.04 0.72 63.23 31.94 76.62 97.28 98.79 31.33 24.43 27.98 46.97 69.72 92.65 67.82 1.21 76.71 53.85 29.73 13.95 54.99 52.80 37.20 27.97 89.47 10.06 80.40 91.13 32.88 30.06 79.28 58.84 77.65 33.43 0.59 26.47 63.25 35.61 37.87 55.29 75.45 90.43 16.57 78.89 13.64 -31.13 82.48 82.36 59.29 68.24 95.88 5.72 11.75 98.86 79.31 0.99 29.81 32.11 80.46 4.48 64.57 98.06 94.72 34.68 37.21 59.01 73.57 66.95 12.09 86.82 73.89 61.13 76.10 25.50 89.62 95.86 44.24 51.37 40.91 52.86 38.72 16.29 3.63 74.06 3.59 89.93 64.46 99.68 91.37 29.33 83.45 45.60 31.04 53.50 26.89 29.44 1.30 90.53 26.10 26.77 44.14 79.20 92.87 53.75 77.37 20.69 43.04 76.20 60.85 12.03 45.27 44.16 75.41 57.61 58.67 15.04 87.57 94.57 71.69 95.15 9.02 93.62 12.66 26.76 4.52 75.98 74.22 34.22 92.25 25.07 89.95 90.34 90.47 68.08 64.02 60.04 90.12 2.84 85.48 69.83 95.01 35.40 38.94 85.28 12.79 -79.22 48.82 28.74 8.36 1.00 63.67 31.56 63.96 41.85 57.61 81.16 2.99 23.87 28.82 69.71 89.47 9.98 7.80 88.66 47.42 44.42 80.02 13.97 27.24 9.71 29.33 0.45 44.33 95.57 59.15 97.93 38.62 35.90 33.94 92.25 67.92 82.03 26.22 82.89 8.85 94.38 55.23 54.29 90.26 42.32 67.48 41.58 85.98 80.66 98.07 70.18 8.10 5.61 23.33 51.82 36.35 86.69 40.89 67.35 82.21 72.34 27.62 22.87 51.52 75.24 30.35 27.54 60.26 96.60 65.30 4.47 67.81 64.80 70.58 86.04 22.06 38.73 44.07 32.96 73.55 37.79 91.43 32.63 29.89 24.03 87.61 83.58 7.19 48.84 80.46 68.55 71.96 81.96 20.92 41.67 64.41 81.89 53.76 81.93 75.48 -86.24 35.94 18.59 63.31 46.12 62.65 30.98 36.16 79.18 53.25 81.25 54.75 45.20 21.67 67.50 19.90 73.83 69.73 69.13 42.01 28.14 6.07 25.99 51.57 43.45 4.29 64.01 11.71 66.88 27.97 63.19 57.33 35.96 13.34 47.59 56.98 21.02 55.21 10.23 24.07 3.42 48.92 98.81 28.07 5.45 46.46 47.99 95.35 87.93 55.19 53.80 47.20 61.76 14.83 49.84 11.60 63.29 66.30 87.74 38.26 41.19 92.24 50.52 10.40 50.68 65.99 92.70 38.99 26.25 38.64 9.30 4.82 2.34 51.96 88.14 22.50 62.36 20.53 30.83 4.63 30.57 9.34 12.76 61.35 15.45 41.60 34.00 96.61 41.44 63.44 88.83 57.94 99.73 2.35 71.16 97.65 56.94 30.71 56.29 45.78 -72.99 78.51 29.87 46.83 67.58 25.93 82.62 36.46 11.45 33.60 95.31 7.53 24.82 66.43 35.39 88.28 43.88 10.94 60.13 95.41 0.21 88.66 71.45 27.04 85.45 94.68 40.41 72.05 84.68 10.31 16.62 18.36 89.12 78.16 38.89 37.49 65.33 63.89 21.24 57.12 77.52 4.19 4.44 71.66 2.73 64.79 41.73 83.29 36.90 18.84 88.39 19.72 49.97 14.45 61.95 15.73 81.04 68.68 30.90 93.73 37.09 37.98 16.32 4.07 92.50 94.67 36.89 0.27 12.15 97.52 32.58 56.26 75.18 71.25 6.42 24.21 16.71 67.65 82.03 21.61 43.73 75.74 28.54 92.92 22.82 17.71 51.29 37.89 96.75 59.71 93.10 23.17 37.16 89.79 92.32 93.46 31.45 63.87 32.55 74.68 -71.89 86.80 56.82 88.56 38.90 73.36 65.35 77.28 14.75 48.93 30.83 26.74 13.77 35.99 56.53 85.45 44.80 35.96 44.23 67.90 52.37 44.91 84.72 24.81 94.36 10.83 95.59 38.19 23.80 15.98 10.74 91.07 30.34 68.37 59.39 36.52 65.12 64.22 65.84 33.22 18.94 24.61 30.08 0.34 24.61 35.21 69.58 56.87 67.33 24.68 80.99 29.95 20.66 17.83 36.48 12.02 89.76 58.34 90.76 13.99 41.25 29.36 3.44 66.14 12.04 52.21 77.98 82.66 73.90 41.53 22.01 2.75 67.09 42.53 68.91 6.97 17.72 35.34 28.18 46.79 94.97 38.05 39.56 91.39 70.08 69.71 7.90 11.38 80.13 82.40 19.30 31.18 73.18 45.71 35.04 15.29 51.72 18.95 9.91 72.33 -0.33 13.61 93.35 17.57 56.47 59.93 41.55 95.60 75.96 79.53 28.08 40.25 94.92 2.28 44.50 16.83 9.39 86.07 76.70 77.08 95.52 55.93 57.89 40.02 14.15 18.25 98.85 92.82 3.32 77.25 58.30 7.72 73.91 51.34 52.77 14.74 73.49 33.45 59.82 56.68 30.63 88.61 0.46 18.40 84.39 19.51 69.16 26.85 92.21 55.78 28.82 6.17 23.69 20.02 44.23 13.48 74.97 97.26 38.45 1.18 54.96 1.40 26.33 22.72 56.78 71.91 20.94 38.72 26.65 48.00 15.80 14.03 92.20 83.26 22.02 78.10 67.49 2.16 76.85 88.95 73.01 15.69 20.16 2.26 80.27 97.51 3.09 90.03 80.09 46.91 58.11 86.17 6.32 95.63 8.49 42.12 26.95 12.37 4.29 95.11 -68.80 65.77 26.15 60.18 51.95 7.83 32.46 65.90 9.30 49.57 89.55 89.94 81.94 4.28 2.35 98.64 41.17 86.02 92.06 47.10 70.77 4.52 99.69 4.92 21.29 59.44 93.00 85.06 92.99 32.26 17.06 92.26 88.65 58.50 62.78 61.11 10.18 41.46 33.89 83.44 94.11 69.68 83.61 27.10 62.51 12.50 22.07 91.80 31.84 13.02 88.89 94.92 30.48 40.45 25.22 16.23 44.88 5.80 0.98 1.04 17.33 69.69 23.77 26.33 17.63 62.49 33.39 28.06 98.40 0.74 28.92 7.60 95.01 82.41 72.91 46.14 63.46 66.05 13.44 15.77 39.76 69.67 16.32 37.93 90.49 7.63 54.85 13.40 21.34 26.05 48.81 48.83 91.99 27.48 6.61 69.27 91.47 75.19 54.39 30.41 -44.26 11.31 81.08 26.37 75.68 58.53 95.83 52.85 77.58 48.94 96.32 76.11 67.21 35.12 77.35 64.79 80.73 56.59 12.53 5.07 46.48 26.49 78.83 16.84 37.72 22.55 36.10 48.69 16.28 36.18 44.37 0.15 7.31 2.37 40.46 64.18 64.67 84.69 75.68 6.44 77.58 92.70 16.13 5.56 30.35 11.51 97.39 70.85 41.71 6.01 83.50 27.85 99.75 80.64 80.26 50.99 64.13 63.86 52.24 85.78 83.74 76.59 61.74 83.36 9.13 3.19 74.95 91.97 89.03 3.44 2.16 30.96 89.42 74.92 27.68 49.09 89.99 58.63 69.19 41.46 16.35 25.51 79.76 98.91 13.45 9.72 59.45 23.87 89.14 4.25 9.68 83.12 23.89 96.04 88.80 89.12 92.14 5.22 10.90 77.98 -5.96 18.16 47.72 54.33 77.19 0.04 70.94 71.07 38.38 41.18 89.62 39.89 42.74 19.18 9.67 38.95 15.64 57.11 51.80 9.70 26.50 4.51 28.50 45.94 75.78 49.09 91.01 90.61 92.48 7.40 1.84 84.54 48.86 18.84 54.08 37.73 95.77 94.26 38.14 57.37 55.69 86.49 86.96 47.24 43.15 5.92 62.66 75.62 92.32 70.10 83.65 83.58 96.67 77.47 33.42 71.66 70.03 90.06 43.68 60.04 94.05 49.67 31.54 90.74 36.42 16.67 27.76 58.27 81.80 1.66 81.14 3.88 16.48 29.63 66.09 33.81 84.55 32.78 81.20 63.58 17.34 76.10 31.91 64.38 34.74 4.10 86.18 93.61 9.93 74.67 60.99 49.19 99.00 63.47 75.19 62.21 71.11 66.64 8.12 35.06 -18.60 89.87 57.95 85.81 63.25 67.79 89.08 93.31 11.01 77.49 18.34 56.96 1.84 36.46 68.87 22.37 15.80 76.41 96.18 36.76 39.58 22.69 17.85 82.03 94.51 99.34 78.57 17.45 90.40 17.36 75.05 13.61 54.35 87.28 78.25 94.75 53.51 33.63 89.47 77.67 5.19 30.85 41.15 83.00 1.24 34.56 36.47 29.93 24.66 86.66 14.74 59.78 35.84 27.85 57.73 60.91 91.39 69.50 22.67 89.41 68.21 3.41 91.74 63.15 78.31 11.09 97.30 61.83 72.17 49.36 84.76 45.92 29.36 19.40 15.12 85.54 76.34 70.67 89.40 84.67 54.66 26.08 34.27 89.22 41.83 82.98 22.10 46.06 70.03 88.51 73.66 7.79 24.79 46.16 73.24 10.48 14.56 5.01 99.59 86.15 -20.56 7.94 48.67 4.30 46.62 19.91 1.14 58.83 22.51 65.89 1.85 31.49 11.90 44.07 31.39 3.83 33.15 65.87 55.10 49.48 69.94 57.02 55.83 48.16 85.20 62.62 88.71 58.21 62.99 46.65 64.96 41.00 19.29 16.22 96.85 79.21 54.10 14.13 91.80 77.00 31.22 28.39 70.77 24.87 67.13 34.31 72.82 67.13 34.32 69.82 74.50 78.74 60.73 18.05 44.73 40.19 99.41 37.27 70.83 45.84 82.97 18.02 85.76 41.57 94.37 31.15 0.67 2.20 45.89 19.63 56.02 49.00 45.77 15.50 60.75 78.71 31.61 91.78 77.88 89.71 98.39 66.51 51.08 39.68 11.85 64.99 28.97 37.52 94.36 3.97 54.61 85.75 15.96 8.66 77.25 60.66 8.07 49.32 37.03 96.52 -2.98 20.13 71.39 54.17 22.86 16.50 14.21 0.60 39.30 60.87 40.18 53.97 50.74 42.54 10.32 7.83 34.05 98.93 70.24 69.85 30.71 52.78 69.36 49.93 53.96 49.28 62.60 76.48 21.82 74.73 35.33 75.90 37.17 67.17 37.85 1.15 56.15 20.24 46.15 4.84 63.69 72.89 50.09 78.44 70.70 34.16 44.33 10.39 18.89 35.40 8.73 35.99 98.76 98.99 94.61 87.78 24.81 12.14 73.12 68.64 78.00 57.53 92.42 58.94 46.59 74.98 92.31 4.79 61.54 14.19 28.18 50.37 77.66 67.48 44.02 5.55 13.31 16.25 35.77 7.35 8.73 73.35 44.51 47.65 64.02 65.36 22.52 3.70 8.10 34.87 31.73 17.55 24.45 67.39 23.32 85.75 66.21 15.07 41.39 77.66 -81.47 58.00 83.14 72.38 83.49 23.95 49.10 61.83 16.51 85.42 93.33 11.17 47.13 38.68 22.88 92.61 30.07 85.72 37.48 44.84 85.09 15.58 80.82 26.99 33.68 32.18 10.35 2.64 73.90 26.86 16.21 23.65 60.23 72.47 41.06 2.93 58.16 0.32 34.20 68.85 34.30 98.27 61.21 63.60 70.03 79.20 33.69 93.28 65.65 15.60 2.93 21.04 36.84 2.71 64.82 49.79 45.87 95.64 68.92 3.60 12.10 50.11 66.07 58.52 95.83 38.51 83.86 40.91 92.53 97.86 60.88 47.69 37.28 85.00 9.01 24.93 86.28 27.02 58.38 62.35 67.47 96.40 14.66 25.12 49.60 72.20 62.59 78.67 65.58 55.88 65.16 44.49 53.61 99.14 75.81 82.78 34.67 95.62 96.30 22.38 -11.00 23.28 93.09 98.94 20.97 86.32 22.02 25.63 66.72 41.68 67.28 47.28 72.44 34.47 3.91 9.23 36.53 95.94 64.95 13.52 45.85 32.84 80.78 46.37 23.12 43.61 93.62 41.88 38.11 44.89 28.68 8.04 0.73 69.84 44.69 94.36 0.54 68.58 43.77 5.31 83.63 94.93 36.31 12.98 59.02 93.87 14.03 87.36 1.00 1.34 97.24 51.37 23.34 65.77 24.01 74.34 69.59 71.63 73.31 38.38 39.08 2.70 99.66 11.92 41.68 41.61 94.76 14.62 12.57 29.43 49.11 76.33 17.14 13.12 46.95 44.94 38.16 15.06 79.05 15.83 96.16 92.54 45.34 6.68 75.89 49.07 13.68 67.18 37.09 89.63 15.94 60.27 96.74 91.98 63.13 0.80 88.88 73.26 6.61 72.17 -7.87 90.58 98.35 89.17 23.52 41.92 29.63 79.49 44.77 32.47 14.49 36.48 91.41 91.48 84.30 56.84 37.80 51.54 66.33 0.18 98.15 93.97 33.10 87.38 23.52 29.98 10.34 88.33 19.82 7.97 34.23 78.22 36.04 87.41 95.86 31.36 83.40 44.86 81.91 77.35 58.21 50.21 13.73 25.20 64.08 10.48 31.37 68.74 22.91 56.25 90.96 76.48 20.53 45.90 48.48 19.60 37.59 81.36 58.66 81.12 73.24 54.59 74.19 35.57 6.52 1.04 38.25 41.68 16.98 58.38 85.87 97.17 22.96 31.54 12.67 54.39 20.87 27.87 49.65 41.50 64.10 22.34 42.72 10.21 72.41 69.68 10.07 81.89 76.74 37.93 7.09 19.77 18.58 97.21 80.90 13.19 76.59 83.63 49.75 84.35 -70.86 61.11 46.01 32.66 96.34 9.06 78.61 81.41 22.59 87.85 42.38 14.52 33.19 44.29 33.80 42.56 35.58 92.00 91.88 58.33 36.76 97.29 38.33 39.91 79.76 38.35 95.53 23.53 77.62 3.91 53.04 19.38 96.74 44.35 5.54 82.16 44.45 13.86 5.17 88.75 84.04 19.35 8.91 13.15 57.37 61.14 28.59 25.19 74.03 72.97 30.61 83.41 80.55 5.53 55.91 32.53 90.40 52.92 73.37 30.00 70.37 64.11 32.87 64.52 44.28 83.09 91.89 82.08 22.79 78.27 32.60 85.93 45.81 18.26 10.85 69.26 8.80 86.15 60.20 85.06 23.39 44.51 9.76 13.26 80.29 36.86 0.68 46.70 21.65 73.08 90.46 49.87 0.45 86.98 90.22 2.36 49.24 23.46 9.28 94.95 -19.05 53.97 35.05 55.33 19.51 70.16 81.55 61.68 98.41 75.40 46.80 92.89 42.19 57.01 18.45 36.25 12.10 42.67 53.23 90.57 33.40 12.89 82.44 8.15 99.52 32.41 57.51 98.78 10.51 40.78 40.58 74.32 18.98 61.46 7.28 43.61 24.50 14.24 46.43 49.87 76.88 68.29 43.22 5.23 78.80 18.13 79.43 37.45 73.01 41.11 34.46 30.00 50.05 35.07 3.47 5.90 58.49 45.25 13.15 95.05 84.61 36.68 72.05 11.01 32.27 93.01 12.22 32.07 15.81 79.75 44.46 64.16 70.85 99.74 64.18 19.03 77.52 14.43 92.99 2.09 52.58 15.87 61.49 9.39 47.00 87.71 35.39 66.11 48.79 0.76 15.26 6.40 2.67 94.53 93.83 69.23 39.23 12.14 24.52 81.53 -78.31 18.72 3.02 46.38 38.26 66.49 92.50 8.79 21.28 23.00 10.14 47.03 72.26 99.03 63.19 27.94 98.31 26.68 54.20 60.55 14.93 3.65 26.65 93.83 42.22 19.62 12.94 87.17 25.00 28.12 1.89 39.21 6.20 15.03 74.94 76.82 75.52 78.66 14.75 18.07 25.85 1.25 87.46 77.70 81.34 48.20 96.85 88.43 83.77 86.77 20.19 83.03 12.69 74.08 99.02 70.36 48.47 30.04 17.25 60.38 86.35 25.57 87.32 6.33 13.87 95.90 9.92 28.47 93.24 62.97 75.11 54.50 87.63 51.66 85.42 31.25 50.35 79.07 82.11 36.39 87.41 67.82 86.87 43.15 77.19 22.52 29.79 3.39 16.60 8.82 37.99 3.23 97.69 94.99 87.06 27.31 37.47 17.42 36.02 74.62 -88.50 11.49 33.74 3.69 7.64 1.88 39.74 22.67 2.37 15.22 55.19 56.59 38.88 86.97 45.94 22.91 99.42 40.29 24.05 18.52 60.59 9.46 39.32 19.72 20.94 93.60 26.42 44.59 65.43 37.87 37.46 64.51 86.59 95.60 39.77 29.18 57.21 23.40 17.72 34.72 45.53 45.96 52.35 49.44 57.08 62.59 69.28 98.29 15.01 25.94 82.26 0.55 22.58 69.70 49.66 9.58 59.79 92.53 45.54 6.97 46.75 83.11 7.81 54.47 3.90 2.61 79.53 71.27 91.77 75.38 31.27 87.73 69.83 92.41 90.90 4.51 44.98 19.22 41.04 88.95 78.25 46.73 9.25 50.34 60.70 50.47 54.32 7.95 24.56 75.26 17.54 11.95 84.26 23.06 97.50 69.74 22.32 78.82 48.11 69.33 -44.87 87.75 47.86 56.23 34.51 39.22 30.08 38.82 29.64 92.90 3.97 29.62 39.41 6.39 80.76 14.48 88.35 49.40 85.20 0.47 47.02 59.89 32.71 9.04 64.79 58.12 51.97 89.01 64.84 52.44 66.12 60.30 79.50 2.45 67.56 97.61 95.17 42.28 76.20 26.03 41.05 12.94 31.83 1.34 78.86 39.79 88.94 99.70 80.82 89.96 33.94 45.36 1.42 28.79 85.94 34.41 12.86 0.21 50.25 80.91 28.59 64.92 79.64 73.41 73.79 44.25 69.89 43.68 41.58 89.91 76.39 39.35 93.38 11.78 99.75 95.08 84.75 84.92 18.13 64.33 48.92 71.41 15.24 5.53 39.30 98.23 36.95 81.50 60.63 63.78 47.11 46.76 8.45 48.18 68.19 76.45 46.10 74.32 30.36 50.30 -82.63 49.82 47.58 50.71 12.28 79.43 54.75 95.92 77.42 20.96 8.68 46.66 64.40 34.99 27.49 88.40 15.35 89.11 39.54 58.05 76.75 55.76 45.12 9.21 34.69 3.82 40.53 91.96 60.40 92.42 7.58 65.32 49.88 49.35 36.54 87.64 92.61 44.67 55.83 33.06 29.07 7.69 28.13 78.09 88.31 50.63 70.58 21.28 93.82 54.73 20.68 13.34 61.67 23.22 56.75 93.16 93.99 16.87 89.47 84.31 22.20 37.59 58.13 55.83 1.46 23.60 29.66 87.51 26.53 11.32 76.17 33.11 0.48 29.24 15.76 18.56 60.90 25.73 25.96 18.21 90.53 98.33 10.17 23.99 25.04 91.99 49.09 40.11 48.09 90.43 57.50 40.78 4.69 4.00 69.10 29.41 45.41 82.90 89.29 61.30 -45.37 97.71 40.90 68.98 20.95 23.12 18.78 88.60 63.66 80.20 50.54 83.67 21.70 38.85 79.15 22.77 26.69 42.15 41.96 4.27 44.66 32.50 35.06 25.84 71.99 19.12 46.36 4.86 72.75 94.67 11.26 2.47 62.67 55.07 75.08 32.68 17.36 50.83 42.00 5.40 55.84 78.10 28.12 44.34 98.34 43.37 66.94 98.25 48.01 10.18 19.96 66.51 64.16 35.57 18.06 87.80 56.97 93.71 80.49 68.55 96.73 18.44 9.08 36.07 2.73 99.58 22.62 43.50 63.56 53.14 26.47 99.76 88.87 78.86 36.11 16.48 66.50 75.74 84.73 5.04 65.05 33.16 51.62 12.22 67.69 88.34 67.66 12.03 34.42 69.48 86.04 65.53 5.99 36.06 55.74 14.98 50.08 6.47 60.34 24.33 -42.06 20.62 79.48 70.75 58.71 99.92 99.39 75.84 81.48 25.89 14.77 27.70 27.18 29.41 0.33 26.08 28.84 45.06 88.12 3.12 2.34 33.88 46.11 52.97 4.40 49.36 60.20 11.23 79.87 63.62 88.86 76.06 5.22 89.37 30.75 93.49 90.38 44.90 90.92 32.34 85.57 93.07 29.14 4.03 70.09 14.49 51.60 2.01 76.25 39.09 59.94 28.18 4.87 73.16 4.78 85.76 73.27 91.06 89.36 2.31 90.64 89.11 70.96 29.76 67.80 69.45 30.68 19.02 62.89 97.37 3.83 10.97 54.78 95.50 80.67 27.89 31.04 94.48 63.44 4.52 93.98 45.45 15.94 45.69 47.69 88.12 14.25 88.84 90.58 18.29 37.83 40.45 53.63 74.39 81.78 41.72 2.04 74.74 49.81 11.67 -44.67 31.48 88.72 21.26 27.42 72.47 58.50 86.01 75.86 56.17 70.43 16.85 43.29 11.31 99.64 95.81 48.95 43.06 86.16 58.60 43.15 46.18 81.77 78.68 97.65 64.45 56.61 41.56 85.83 91.92 44.32 91.04 61.56 35.51 77.94 9.84 31.92 9.23 77.03 21.86 84.07 26.86 1.36 70.22 80.96 67.24 2.85 21.65 82.89 30.53 21.74 34.40 54.73 99.83 93.10 72.84 1.05 47.34 94.42 18.79 64.66 19.60 74.42 0.92 74.96 52.19 97.20 42.47 23.33 11.08 41.57 66.96 69.14 40.68 10.84 21.70 95.56 20.31 22.25 67.64 0.56 42.98 72.50 92.83 27.66 30.05 6.86 36.69 75.51 11.92 46.09 14.70 22.93 13.96 50.31 25.89 84.39 24.99 96.72 88.74 -35.33 53.08 21.17 55.10 27.71 7.80 87.33 67.12 94.22 2.05 41.02 71.97 65.45 50.81 81.37 80.59 0.39 34.64 2.36 55.60 56.98 18.59 42.91 3.21 25.26 18.68 9.13 26.20 93.91 97.62 19.31 57.47 43.86 87.79 79.35 55.60 83.41 37.12 45.06 53.99 45.92 52.50 31.49 26.52 6.62 83.75 98.66 44.44 63.49 60.08 45.67 40.34 46.71 80.42 50.73 92.07 87.10 96.65 43.41 31.13 92.45 45.60 67.37 94.23 95.79 95.15 5.58 57.51 0.50 57.91 97.39 10.65 89.33 53.92 57.72 45.97 90.72 75.48 94.52 9.20 98.14 35.56 2.42 34.62 34.42 79.92 72.54 21.27 83.37 58.27 44.85 11.39 98.52 27.48 74.30 75.21 47.00 78.12 59.34 69.81 -94.98 53.69 60.51 0.30 29.79 70.37 16.49 30.09 0.08 69.91 45.90 68.38 4.56 14.51 56.57 80.50 58.40 41.05 12.60 74.15 98.76 88.45 49.05 76.54 97.57 1.71 29.81 23.15 74.01 69.75 23.13 43.83 57.87 0.45 67.00 83.32 48.45 22.25 66.42 53.82 14.00 82.92 22.58 40.18 43.58 4.83 74.69 55.34 92.04 22.38 96.63 31.02 43.67 50.83 30.24 58.11 60.45 21.69 84.45 67.75 93.10 94.20 7.62 59.10 43.26 11.82 84.02 83.44 2.18 18.70 50.78 40.87 72.69 26.83 35.36 66.45 0.58 93.50 96.33 34.12 92.09 95.73 86.95 21.91 0.70 46.76 4.08 1.25 30.00 34.50 14.18 85.68 2.01 64.71 57.80 81.06 64.07 28.70 22.45 31.16 -26.55 21.11 87.69 41.67 24.66 6.98 34.36 40.17 93.81 90.40 99.53 3.86 97.00 53.62 8.33 74.52 46.79 92.63 94.83 13.90 86.55 29.93 53.09 76.55 26.07 74.15 46.64 57.89 30.27 53.07 52.66 65.73 53.94 53.66 16.52 4.33 45.38 30.34 3.97 52.49 90.20 24.89 21.11 92.86 59.40 70.75 64.67 9.79 85.09 49.71 1.01 24.54 70.50 51.31 67.31 13.16 55.71 0.06 37.42 43.71 92.85 79.33 57.58 17.91 89.63 70.15 20.48 0.86 20.51 44.16 21.28 22.70 13.00 67.69 55.83 44.99 13.27 32.43 88.02 62.33 32.02 18.51 44.36 27.18 89.54 61.64 18.91 1.17 77.66 94.58 31.66 5.28 23.84 4.36 34.98 15.71 87.13 42.66 41.05 3.57 -97.08 29.68 59.58 29.45 53.36 3.07 49.95 63.25 34.04 40.44 65.70 14.19 36.98 98.66 24.70 62.20 53.20 21.91 80.93 11.00 48.83 28.91 58.67 14.63 91.98 57.76 20.51 48.46 19.47 51.67 24.48 10.15 92.21 82.34 68.13 43.73 86.89 81.01 25.70 0.52 95.89 87.64 9.85 70.28 20.76 44.29 71.12 74.33 6.62 39.33 52.31 88.00 82.06 65.18 52.88 8.04 42.74 66.73 34.12 69.32 9.08 67.90 38.16 13.46 83.36 64.23 23.24 48.27 89.49 73.68 73.14 38.18 92.46 53.33 96.15 8.32 67.50 74.43 32.23 78.59 13.10 83.53 9.44 67.57 68.56 79.97 38.62 85.79 45.93 92.80 97.48 86.66 14.82 57.07 32.13 10.23 45.12 31.97 37.66 96.23 -89.47 27.82 44.40 44.70 53.41 17.34 49.13 6.46 66.60 10.17 38.09 1.19 81.24 31.26 19.80 39.99 44.84 73.13 86.78 79.33 88.89 12.59 88.43 52.19 79.64 22.40 98.09 4.17 61.34 96.51 3.44 23.55 12.64 9.24 86.35 63.15 67.08 83.28 81.48 6.70 95.96 87.67 12.59 94.00 6.87 32.02 19.43 38.39 87.55 32.04 99.66 63.46 48.05 85.80 16.88 21.45 87.40 82.27 87.71 37.02 23.17 89.85 73.14 51.48 75.31 30.68 81.32 30.83 23.16 33.26 7.05 23.88 86.91 50.02 49.32 7.09 91.36 98.16 58.61 32.87 84.35 36.58 36.59 54.35 96.99 26.97 47.61 31.77 5.76 72.30 64.39 20.22 62.19 37.39 50.57 50.46 27.96 43.28 53.86 35.64 -64.27 34.47 0.40 66.04 72.53 18.19 11.73 33.02 92.18 50.53 98.38 33.31 28.26 83.24 40.43 4.96 68.08 47.73 33.18 20.45 32.92 73.86 19.02 20.52 77.51 81.17 99.64 11.77 16.38 84.11 26.30 20.70 89.09 94.84 30.93 46.62 5.80 2.13 56.76 65.65 65.02 96.05 54.15 15.69 22.75 23.79 66.47 63.79 44.53 90.54 65.20 41.20 41.92 33.04 74.85 4.07 89.02 11.28 68.49 27.06 1.76 65.88 83.05 78.22 56.76 7.24 10.16 65.03 44.00 23.49 54.41 39.99 48.45 4.41 55.82 95.21 98.82 58.09 11.97 73.22 37.00 77.21 53.41 34.99 74.38 32.35 20.35 96.86 76.62 50.72 48.61 76.11 12.94 67.20 51.81 86.51 35.43 92.90 64.36 12.69 -43.26 16.12 30.77 45.40 1.17 31.71 16.39 31.55 95.01 56.87 30.17 71.82 66.30 70.02 40.27 53.00 26.47 84.17 76.28 93.18 23.62 4.61 95.89 62.15 22.37 46.53 82.65 35.19 18.21 31.45 96.57 78.39 26.88 26.66 80.72 31.66 36.74 59.52 38.19 95.87 99.93 3.85 97.91 67.22 65.08 42.67 46.25 25.84 32.35 39.91 0.76 21.11 68.46 88.46 1.55 42.70 2.93 31.16 30.87 18.87 60.78 16.53 14.60 65.31 22.96 30.82 43.06 49.85 89.75 77.36 79.70 40.11 94.12 77.94 0.53 84.42 98.61 36.15 27.45 49.48 81.54 67.70 91.39 87.58 94.83 50.43 23.58 7.57 40.31 17.47 11.42 84.74 87.12 98.83 20.84 94.34 60.33 11.42 20.71 70.40 -38.53 79.18 76.18 0.32 78.59 7.69 21.65 19.79 94.08 56.56 11.91 17.73 88.92 4.68 10.21 71.26 62.49 47.60 94.40 21.67 57.44 87.58 78.49 59.01 35.36 57.29 63.92 66.88 18.87 85.50 43.11 59.78 62.67 70.68 85.42 85.29 68.06 61.12 78.16 62.38 66.53 15.13 44.52 72.05 61.15 39.39 35.75 70.88 17.91 32.88 44.27 96.97 36.66 2.44 73.61 27.63 72.77 9.86 55.94 9.00 10.76 36.80 7.66 1.17 25.23 8.25 66.17 25.32 31.98 30.43 81.17 56.00 5.45 97.93 76.37 5.81 37.51 26.63 93.82 6.81 58.86 67.86 83.11 26.11 60.49 56.24 10.69 20.31 52.57 0.73 5.22 0.86 31.64 74.12 2.51 26.11 76.82 1.59 77.14 37.23 -47.70 16.59 21.87 54.30 31.24 11.34 14.17 93.40 79.45 39.96 31.40 76.25 16.54 18.76 77.24 5.85 10.20 57.92 49.61 49.59 94.76 32.68 44.01 85.10 52.33 65.92 79.92 58.96 0.13 7.84 4.57 53.48 84.08 16.43 77.84 71.96 71.77 41.05 44.21 60.94 24.33 63.19 30.59 77.25 40.65 1.58 82.71 41.34 28.22 90.58 19.88 8.93 80.88 72.52 21.63 11.28 38.68 88.93 92.94 45.91 83.51 59.11 19.90 78.88 30.86 67.39 49.13 81.05 51.41 48.71 91.00 96.57 95.64 85.54 42.16 70.69 73.07 50.69 33.59 15.94 51.55 45.88 42.05 5.45 12.02 30.18 23.57 4.41 7.65 21.93 97.27 50.59 80.90 53.28 11.92 48.95 98.31 99.97 70.06 69.01 -32.49 12.01 84.91 79.59 84.25 3.73 12.99 27.29 96.23 67.92 96.53 18.36 51.57 10.38 93.77 99.69 31.46 33.75 46.33 41.23 43.89 69.92 81.19 91.02 21.40 6.09 32.36 19.34 31.40 96.62 68.31 4.59 78.88 74.43 97.07 18.48 68.51 60.41 26.90 25.59 29.55 26.20 40.30 25.98 83.65 13.68 3.55 43.18 26.79 52.90 41.21 46.35 18.29 97.95 22.31 34.00 97.57 65.32 5.65 95.35 52.99 35.03 16.15 76.76 34.83 80.61 38.71 75.92 24.26 66.63 0.14 64.74 31.66 57.80 75.26 96.66 86.82 71.73 43.70 21.09 0.70 51.03 64.91 99.86 64.68 13.36 28.77 78.66 74.14 62.56 48.27 57.08 88.55 99.90 5.05 45.90 33.72 97.60 2.55 63.12 -73.17 67.53 1.61 39.94 77.98 92.86 9.79 19.82 41.49 42.59 7.52 42.63 78.72 8.38 35.86 93.00 76.50 4.83 44.87 14.92 97.98 19.08 44.04 43.42 62.94 34.80 43.54 67.22 73.41 81.89 54.79 27.48 8.59 24.24 90.01 4.07 77.60 36.45 69.41 57.36 53.98 15.52 69.79 68.42 26.76 62.57 16.44 89.63 84.39 61.35 20.37 87.98 93.86 91.89 17.51 11.28 75.33 90.96 73.83 27.72 91.38 44.05 73.77 53.95 19.56 55.77 80.07 15.12 21.56 25.60 56.13 3.61 93.95 84.70 5.76 66.51 95.58 13.77 0.89 77.86 27.32 59.24 84.25 26.06 60.22 68.58 5.15 67.18 21.67 38.74 94.58 91.74 1.71 46.47 96.53 30.13 85.20 11.04 82.01 72.16 -16.32 33.49 78.02 32.38 85.54 98.05 75.15 22.11 0.67 61.72 58.31 81.28 48.72 58.49 73.22 55.54 76.69 51.98 3.27 17.13 24.74 49.97 80.82 94.74 83.15 78.23 49.77 87.04 75.32 37.19 75.40 94.48 40.63 17.37 70.50 56.98 76.45 12.43 73.91 95.25 78.34 60.18 48.06 34.62 80.47 94.25 16.45 41.57 15.72 16.46 47.24 4.52 83.21 78.00 6.29 86.05 47.54 23.63 84.89 47.92 90.22 59.96 15.10 8.37 85.97 48.34 43.38 22.66 47.79 52.49 16.06 98.78 54.85 51.80 85.09 28.88 26.29 13.06 95.96 26.16 82.55 56.16 17.81 81.92 26.67 2.65 13.70 11.57 21.93 38.43 78.20 62.50 90.64 76.75 96.12 63.47 88.82 92.15 81.74 98.60 -55.00 90.95 83.04 33.82 83.52 73.83 89.40 66.95 75.94 58.06 34.25 50.77 98.55 17.81 3.97 66.01 21.67 15.67 78.20 55.35 67.09 26.91 20.28 40.23 97.07 3.22 85.13 31.06 7.92 87.48 80.20 96.81 29.18 24.13 5.84 64.89 94.29 11.16 76.75 26.31 88.94 90.22 3.23 12.67 17.03 27.76 5.45 0.13 12.67 10.92 99.08 80.07 56.19 4.80 55.11 51.49 0.54 44.22 31.13 55.78 21.04 43.78 54.73 19.72 24.14 80.88 37.96 51.63 90.49 68.72 23.83 40.02 74.91 12.86 90.44 58.06 52.66 24.70 78.66 94.50 24.80 50.78 44.52 19.95 4.22 64.10 8.94 59.65 43.85 80.73 8.10 5.64 51.35 69.55 35.09 10.46 25.84 33.82 35.83 41.32 -48.71 16.02 49.79 7.00 32.73 17.43 83.17 27.85 86.47 34.30 74.82 82.34 70.65 6.04 95.12 68.56 1.75 24.67 52.61 58.10 68.56 57.97 14.55 2.04 62.37 12.82 95.46 51.50 10.76 91.65 51.01 86.79 47.34 19.33 71.41 85.15 25.07 57.67 18.68 58.50 25.79 63.12 96.35 21.76 53.31 7.57 95.57 7.09 39.53 37.67 34.82 66.04 87.55 44.89 79.99 20.67 57.86 26.47 75.23 97.80 20.38 43.13 78.14 1.67 61.25 32.32 29.97 14.06 78.07 3.81 61.77 22.11 30.76 10.65 12.96 58.26 29.17 34.04 14.00 47.37 48.45 76.59 39.16 35.59 11.57 52.60 98.74 27.96 67.20 60.85 13.43 98.52 38.13 3.23 66.79 69.75 64.91 17.77 45.55 25.30 -21.89 4.16 80.45 62.77 55.00 33.65 89.29 1.17 32.61 8.07 72.46 44.99 40.44 98.29 51.03 17.15 17.87 48.87 85.73 65.92 72.63 90.48 77.77 29.40 7.23 90.88 0.97 39.35 16.97 57.91 25.56 42.10 14.66 59.43 24.67 3.34 32.97 51.92 72.57 6.69 25.01 70.17 46.58 58.62 7.62 48.78 44.30 97.08 84.27 11.11 61.60 22.51 19.11 96.65 50.96 24.74 96.81 35.27 36.70 25.19 64.37 43.93 88.27 90.98 14.24 72.67 13.87 88.20 74.13 7.71 92.01 4.78 95.20 5.49 60.31 94.35 47.81 13.64 29.91 59.81 72.94 84.43 1.29 56.95 92.14 60.97 64.01 28.20 60.97 29.88 67.97 36.20 99.83 33.64 90.64 79.17 33.53 76.52 5.80 14.03 -99.70 10.38 67.40 97.85 10.35 38.07 49.59 73.86 92.58 41.20 76.95 78.06 24.05 4.26 97.70 42.65 11.72 41.46 79.76 37.90 44.13 7.32 40.20 27.02 9.37 57.52 12.12 47.70 57.31 2.87 95.53 51.12 8.99 61.48 76.54 96.11 67.61 15.45 82.89 57.36 1.22 77.34 87.04 5.36 53.94 43.56 48.63 32.86 75.36 61.35 74.25 2.43 21.54 21.80 87.84 25.14 3.49 16.00 35.44 71.21 92.45 85.81 40.86 36.27 21.85 32.69 19.97 70.17 96.01 39.28 39.36 20.13 31.09 7.21 45.41 81.04 50.22 67.33 48.18 61.90 55.19 15.57 19.18 7.45 91.39 81.55 78.61 83.35 4.52 52.50 88.87 63.14 21.65 78.15 74.71 18.67 65.79 98.16 24.13 67.46 -68.10 9.54 43.94 91.60 3.89 97.65 53.80 24.35 25.17 91.90 23.18 35.94 83.48 32.62 49.37 76.62 86.12 28.22 15.41 51.94 88.83 52.85 41.36 75.52 77.62 93.57 32.56 13.46 38.25 6.95 18.36 55.05 85.67 61.98 7.10 17.83 34.51 20.13 19.27 94.59 57.20 70.10 82.64 98.37 15.73 67.50 80.93 49.50 19.53 80.46 17.48 34.84 64.70 10.41 93.27 56.66 56.12 67.99 38.80 71.85 24.14 6.46 92.92 81.36 13.07 91.20 86.62 73.32 60.76 5.85 60.86 89.41 2.38 31.69 4.96 97.10 93.08 12.69 1.50 73.95 75.13 94.25 49.75 3.04 8.17 96.07 28.49 70.88 29.59 94.43 65.44 23.24 98.20 22.46 15.72 62.44 40.12 62.78 89.98 57.53 -69.10 33.86 34.41 8.09 2.46 52.37 10.84 82.73 84.90 87.20 42.45 7.13 1.64 25.11 55.27 69.35 28.55 51.42 48.45 23.22 10.18 95.29 48.56 22.10 67.61 15.00 44.74 85.74 72.56 74.82 33.78 59.74 81.34 20.43 92.66 32.61 88.04 50.74 71.43 80.11 49.86 18.55 23.89 48.91 47.50 27.96 54.22 65.02 37.26 84.73 58.31 35.55 83.47 8.05 35.46 58.12 71.39 4.70 96.53 34.14 88.27 67.67 23.05 90.96 36.57 0.22 21.93 80.06 66.29 45.30 1.69 53.76 72.65 6.34 47.21 22.60 2.05 27.51 68.89 15.07 41.83 67.31 8.71 92.27 35.83 33.62 73.87 55.49 39.46 18.94 5.98 75.38 93.37 97.22 34.50 23.18 17.42 75.64 50.74 49.94 -85.35 41.30 4.97 72.76 35.73 16.47 54.93 14.50 80.54 42.72 86.48 3.64 17.45 45.63 31.24 65.15 82.03 24.87 92.11 71.51 92.40 34.57 24.83 83.83 89.85 67.19 16.68 59.96 37.06 57.38 1.83 73.18 96.54 61.56 93.44 65.52 19.45 30.06 49.00 72.69 22.92 51.70 45.76 61.57 29.92 33.50 15.54 0.76 41.20 93.84 59.43 45.41 73.93 11.18 33.16 10.79 23.79 33.19 59.07 28.10 77.73 80.66 67.78 50.37 44.95 0.47 10.66 55.26 14.24 13.92 71.55 65.44 97.22 64.24 16.49 93.82 59.60 86.11 67.63 80.57 34.95 35.61 25.94 78.41 6.59 18.08 44.65 78.44 88.89 88.40 79.78 68.91 65.41 67.50 6.17 5.52 73.16 63.78 58.22 98.41 -38.40 68.16 36.19 26.47 91.80 6.35 28.44 38.60 90.12 42.57 15.10 13.12 38.81 68.48 58.09 41.58 78.56 72.84 42.75 72.33 10.12 17.63 14.35 58.16 28.94 15.89 19.94 14.12 29.52 55.55 6.38 16.54 67.75 36.57 94.48 69.24 97.10 81.23 42.84 76.56 65.26 50.56 23.96 88.12 99.99 74.35 95.37 85.46 31.51 73.51 6.56 95.28 95.68 59.50 74.93 81.05 67.86 49.50 15.22 71.43 72.90 57.60 73.36 92.70 55.23 88.65 0.58 96.80 69.54 31.10 30.91 29.75 51.90 48.29 77.20 12.35 73.27 10.83 70.61 1.53 33.19 84.98 23.21 58.93 82.58 62.41 83.91 15.93 99.40 88.42 70.98 37.76 79.91 49.73 94.91 61.46 21.94 76.19 93.79 45.97 -83.88 70.41 96.68 43.09 26.92 94.65 14.20 17.22 19.31 7.08 74.84 49.54 59.97 84.98 3.41 65.12 58.45 4.77 68.31 82.23 22.90 6.50 36.96 9.22 63.11 34.46 60.12 91.69 59.47 11.87 90.27 90.06 98.95 50.77 36.01 0.75 1.99 78.14 73.92 10.49 87.74 22.60 6.44 65.84 45.08 41.72 21.18 92.73 66.99 92.22 96.90 91.99 74.43 43.40 75.43 7.99 48.38 3.93 5.01 15.86 8.17 31.58 2.28 51.43 71.99 47.24 71.45 27.77 9.65 20.55 55.81 52.75 29.27 26.71 34.90 94.71 88.04 64.09 65.75 65.29 48.75 74.22 88.64 41.19 17.65 74.89 91.17 12.09 25.08 6.00 85.57 33.35 58.19 30.84 2.41 92.82 33.31 29.58 36.49 95.77 -11.32 34.57 56.79 6.48 80.81 28.43 24.43 44.86 55.00 44.51 26.97 98.17 12.17 74.74 23.37 70.70 55.61 46.57 47.41 29.79 41.41 70.79 55.62 57.58 33.11 90.72 46.64 71.46 55.77 54.77 98.98 90.05 29.12 62.79 17.64 21.34 80.10 78.23 94.64 71.71 73.76 72.81 79.59 86.20 31.85 84.16 86.04 14.14 32.14 30.48 87.92 9.46 29.44 20.21 25.80 9.66 53.79 26.51 36.48 1.79 41.38 55.65 44.04 46.31 12.51 49.77 3.87 26.16 0.77 86.24 29.16 35.15 66.93 28.83 72.17 56.64 2.06 26.98 43.87 78.58 34.67 56.20 38.27 64.88 74.46 31.00 30.63 91.85 10.52 63.24 52.66 7.33 82.45 75.27 62.67 2.36 34.46 77.04 81.63 29.63 -8.70 49.73 8.71 65.91 54.64 38.27 36.36 58.40 11.10 78.68 18.79 42.62 36.33 24.34 82.87 60.80 34.17 36.26 23.27 66.86 15.06 96.60 83.49 51.63 36.52 45.57 34.58 33.97 2.90 47.14 4.08 71.36 97.03 39.42 87.70 40.69 24.61 45.75 48.55 26.89 99.88 19.86 40.33 61.26 43.68 82.91 34.67 9.05 22.92 58.55 97.88 20.69 31.94 53.20 50.99 83.13 99.73 53.91 83.30 14.63 77.30 61.00 20.20 16.07 24.70 85.09 91.17 22.93 94.42 34.48 20.87 45.30 60.31 86.62 74.78 88.43 46.78 6.64 14.30 57.90 88.61 57.49 52.54 37.93 39.54 2.04 10.23 89.28 12.91 17.09 14.89 47.56 19.22 18.35 25.26 35.29 67.93 98.05 30.72 83.14 -24.14 7.69 47.05 63.19 26.00 68.88 49.07 74.14 3.12 79.33 87.12 50.89 49.97 47.74 51.64 7.49 87.54 81.39 86.41 87.75 69.46 94.02 21.92 34.08 27.06 2.87 40.60 6.57 50.90 85.59 22.19 39.81 14.24 54.97 55.00 88.55 30.98 23.29 94.03 1.60 56.37 58.87 18.40 18.34 51.19 60.36 27.79 75.75 40.15 22.69 66.20 64.64 4.97 92.41 16.30 9.69 42.73 56.64 89.28 28.85 81.39 7.18 5.02 28.14 43.11 42.59 95.08 93.79 46.43 13.94 11.67 69.70 15.89 88.41 98.59 49.25 30.10 6.53 11.95 28.01 53.34 90.79 87.55 82.85 30.94 84.61 88.68 67.70 25.68 93.16 23.78 92.11 22.93 47.12 45.88 94.05 66.56 23.97 11.39 73.77 -51.15 41.10 14.96 37.74 90.71 39.91 94.74 69.65 27.65 57.92 82.06 53.23 48.58 69.57 39.43 14.55 72.71 77.98 49.63 91.00 48.91 79.53 42.98 80.17 13.10 0.76 39.00 11.76 19.55 82.49 64.74 80.91 59.33 15.82 50.36 44.98 11.61 16.61 89.43 82.51 16.78 26.03 33.66 78.59 82.49 96.79 44.27 97.13 83.34 14.47 73.32 41.01 27.12 1.76 95.96 26.59 51.80 9.49 81.39 47.15 75.83 61.20 96.54 79.53 74.58 67.90 95.64 96.14 58.05 19.55 47.05 12.31 33.03 16.20 61.73 95.58 91.97 10.23 17.50 84.20 69.19 37.00 0.02 78.73 43.48 44.70 46.13 14.97 25.72 65.93 11.38 30.86 97.47 14.82 42.88 17.47 5.27 64.69 68.59 34.86 -30.47 77.40 24.65 3.36 28.24 68.37 46.76 36.44 6.34 25.13 52.86 44.31 9.65 92.57 53.65 63.32 15.24 1.90 20.70 78.60 49.49 39.38 92.97 5.66 54.54 62.26 71.12 33.60 6.15 12.25 40.62 84.92 50.61 18.02 15.81 28.32 47.57 79.99 93.56 28.87 11.38 10.53 13.66 31.17 90.40 3.28 38.39 71.03 71.11 28.34 80.54 77.01 44.31 20.12 70.24 33.00 86.62 87.30 69.81 15.86 89.36 44.15 20.88 55.71 63.73 94.11 46.02 66.86 39.12 46.52 13.92 41.98 79.24 58.07 60.60 13.33 25.90 81.33 34.63 17.78 21.38 89.25 35.40 96.25 15.04 7.85 27.37 81.82 80.00 9.70 98.87 37.12 34.98 52.21 40.84 14.54 50.44 96.60 31.40 48.53 -24.22 92.90 60.48 82.30 63.85 46.88 81.28 69.57 42.09 47.30 9.57 77.77 75.72 36.93 92.33 72.21 49.09 35.75 72.86 12.28 60.08 13.68 43.22 95.35 97.61 53.81 53.23 56.77 91.28 67.39 61.41 35.51 52.07 14.68 63.98 7.86 98.82 95.93 88.59 51.07 92.60 45.04 61.07 26.04 76.51 25.18 34.81 83.59 35.25 82.81 84.97 30.05 74.77 52.17 89.63 34.73 58.80 67.35 25.13 61.84 93.60 92.04 99.26 36.43 66.59 70.70 18.73 73.84 62.89 50.62 71.09 60.47 56.48 97.55 77.45 68.95 13.85 46.40 63.29 69.02 38.66 66.49 1.03 78.54 31.28 53.96 61.03 68.17 67.28 16.37 7.88 21.61 58.68 47.34 30.78 52.09 70.33 25.60 48.58 62.53 -41.55 88.59 75.49 47.67 4.76 79.54 91.68 58.28 49.48 13.46 60.80 84.79 15.44 57.40 48.98 87.67 80.92 63.70 86.41 42.24 61.28 91.07 45.50 99.16 84.58 27.89 81.64 5.26 56.27 14.83 46.43 97.29 30.70 14.69 68.73 76.16 65.80 51.23 91.17 64.07 36.33 83.00 30.13 36.15 15.15 70.89 46.49 42.50 41.85 50.64 83.05 55.77 17.00 96.96 85.03 18.55 29.94 40.58 79.04 63.82 19.48 66.81 92.50 12.43 32.13 90.78 22.57 59.48 81.81 6.44 35.23 20.03 0.38 8.77 82.17 88.97 32.18 24.31 21.16 52.82 20.28 84.88 28.62 83.72 67.87 53.59 72.09 46.37 62.69 45.41 17.61 30.08 85.82 56.60 21.13 48.02 20.44 64.44 26.73 78.75 -73.71 59.18 44.70 61.61 11.50 70.97 71.85 93.25 64.89 8.90 91.33 30.31 92.56 56.22 6.86 80.93 92.47 63.51 13.96 79.06 34.00 64.48 9.50 40.79 35.07 84.42 10.91 75.92 72.14 88.09 38.91 52.52 15.47 99.25 62.48 44.77 81.62 37.20 48.36 64.93 25.58 74.39 13.36 31.55 13.98 60.46 22.95 15.56 71.41 86.30 1.46 85.07 58.09 35.40 22.98 72.41 81.03 8.24 99.46 16.43 21.44 22.76 26.43 0.08 8.06 9.35 98.70 81.84 78.56 85.05 96.91 93.64 30.39 62.57 99.59 83.07 45.50 59.87 31.80 89.70 43.81 57.64 24.88 31.26 67.09 58.27 35.23 21.76 23.17 7.81 41.01 57.01 11.63 25.76 94.94 0.45 22.85 38.89 37.52 45.42 -40.48 16.37 69.20 43.59 15.49 87.67 29.93 66.64 44.69 55.65 58.59 51.82 3.69 64.45 22.44 66.27 60.59 90.16 43.28 3.09 65.40 26.80 60.32 92.89 45.32 76.65 54.73 83.28 92.89 19.10 96.84 41.97 21.64 38.10 75.71 41.49 32.64 25.53 30.87 79.27 71.02 58.64 59.81 18.01 83.40 84.31 27.04 43.06 4.54 15.49 27.27 48.99 79.73 77.65 22.62 81.52 73.68 41.94 41.11 16.48 61.60 81.82 85.81 53.09 63.48 59.91 45.20 2.72 20.21 80.00 26.89 17.69 87.99 34.79 40.35 67.11 67.30 6.61 4.61 50.01 47.54 1.47 23.86 74.95 85.63 40.10 52.98 44.54 12.89 11.11 42.10 55.27 63.88 92.68 15.96 66.41 18.96 78.62 21.33 78.73 -24.91 64.88 50.89 44.25 88.26 90.13 80.39 32.98 10.71 16.25 54.87 65.58 91.82 59.04 12.71 75.00 44.59 76.75 90.48 98.50 44.95 22.17 46.68 3.72 96.21 18.41 72.56 26.35 11.39 63.98 84.18 59.58 95.86 58.21 75.60 16.30 29.46 88.38 68.90 32.18 79.51 96.41 67.65 62.92 68.19 62.76 89.14 94.87 26.27 57.25 48.89 55.71 78.30 74.65 9.92 58.98 16.42 75.76 8.51 80.29 58.00 8.35 87.07 41.10 98.38 36.14 68.19 4.99 68.45 38.78 3.63 69.65 63.54 20.27 69.01 29.15 13.13 97.69 25.33 85.03 77.78 66.75 80.58 81.60 88.90 53.14 90.98 26.36 26.77 35.36 71.92 1.34 81.55 54.52 56.66 66.53 39.88 99.36 31.67 69.10 -27.91 98.24 52.80 11.22 98.36 94.15 3.94 74.37 50.31 79.21 75.47 5.39 91.65 68.78 97.32 28.46 7.42 14.69 18.40 26.40 75.95 56.28 28.09 2.08 37.72 17.46 39.03 0.16 95.27 68.22 32.38 52.06 91.20 65.19 63.85 55.91 92.01 22.75 47.87 6.02 51.36 28.72 35.95 80.72 8.29 9.50 25.46 56.50 14.11 61.33 47.32 53.49 73.65 97.67 28.86 52.47 80.73 15.58 9.68 6.63 49.06 26.03 79.67 65.06 0.58 4.88 98.78 15.44 20.50 70.41 97.28 32.52 43.22 13.07 20.58 49.60 93.14 51.40 51.75 91.00 61.02 41.05 88.49 15.34 57.29 48.94 36.27 13.23 69.59 0.70 11.38 28.19 88.47 12.50 65.96 66.13 35.03 86.53 57.73 97.88 -93.22 10.34 96.78 17.80 31.77 78.88 46.53 9.17 53.61 56.71 74.13 17.90 64.32 71.27 26.66 83.35 83.89 76.42 56.86 92.51 58.76 97.22 20.62 68.58 3.50 98.51 74.96 14.28 67.95 16.11 36.25 6.64 87.99 23.88 91.49 12.47 88.53 80.93 84.99 83.71 62.60 86.64 15.00 50.12 38.88 66.49 70.91 97.27 39.93 25.59 2.81 57.17 81.60 38.33 90.93 88.08 93.23 63.67 52.13 53.48 36.84 3.19 55.51 84.23 97.91 6.33 21.07 39.29 47.36 65.67 1.40 58.19 54.96 35.70 5.63 67.26 95.22 42.02 19.30 56.41 66.95 26.80 69.19 62.30 42.85 28.12 40.04 71.24 27.40 39.33 42.75 76.02 87.26 38.74 96.29 70.38 88.08 58.77 54.71 48.05 -24.14 23.21 35.30 20.53 82.36 6.01 31.03 87.27 57.97 81.22 27.92 27.49 58.69 16.02 8.85 37.43 8.76 45.34 82.29 4.32 58.89 60.21 46.66 82.23 25.81 7.79 59.07 3.78 80.20 88.41 80.13 25.61 85.41 4.09 86.49 22.77 46.76 77.54 19.11 45.16 29.57 23.21 5.47 52.51 23.03 69.22 48.92 24.84 70.90 85.43 7.22 57.18 45.09 38.52 34.82 40.14 1.38 31.87 85.96 83.00 71.63 63.87 65.08 99.08 76.78 58.34 85.46 55.40 72.45 61.86 48.23 87.39 89.46 99.74 98.91 80.07 80.63 19.52 56.49 50.17 17.77 1.79 21.75 82.38 88.43 10.11 69.27 66.11 43.02 75.73 21.21 8.15 66.64 93.23 8.72 14.53 48.27 22.22 69.06 50.52 -4.34 89.98 24.45 23.47 39.49 36.63 85.10 36.20 13.45 63.60 96.76 40.57 42.27 35.90 42.01 58.03 68.35 12.65 14.42 24.80 8.97 6.26 18.22 11.31 3.06 72.46 25.69 79.59 17.83 59.72 96.04 20.42 67.15 75.64 83.78 67.69 91.11 90.21 97.55 11.63 4.86 41.63 20.19 4.82 26.73 70.91 79.84 34.64 78.09 55.75 62.87 28.02 48.51 58.94 19.29 4.08 80.54 7.76 17.34 34.86 88.82 61.62 80.30 18.59 76.08 58.45 89.72 13.91 32.18 41.67 32.30 67.40 25.93 10.48 69.49 32.75 40.66 86.81 58.13 87.60 97.23 94.39 77.66 7.38 40.38 61.63 42.69 95.54 66.81 21.03 23.95 90.13 37.59 69.93 40.76 78.55 42.44 77.85 24.63 0.38 -81.16 53.54 19.36 23.15 92.36 85.40 0.25 64.65 48.36 56.93 88.47 64.00 31.53 53.56 63.92 67.12 41.16 62.56 2.04 90.75 97.97 90.43 30.28 58.27 13.05 70.80 98.42 53.16 77.59 39.33 36.69 21.50 72.42 96.67 9.67 22.30 69.68 20.12 98.36 68.11 85.34 87.40 62.14 71.67 62.00 67.23 9.00 10.22 46.22 12.68 25.05 74.98 93.25 26.97 57.25 48.97 35.94 11.55 40.13 19.32 31.95 70.39 55.09 16.84 94.39 51.82 10.73 6.91 89.26 83.57 61.34 96.96 27.99 11.80 72.04 40.46 26.48 18.69 18.40 60.08 44.09 89.86 88.26 30.42 66.86 68.34 99.63 89.44 93.00 10.01 1.36 32.02 77.39 30.37 10.80 49.63 2.35 4.12 12.98 10.31 -99.88 34.71 18.00 95.63 17.53 27.30 97.99 27.02 32.33 49.30 68.09 84.68 47.53 91.24 98.17 64.61 90.34 99.63 14.66 35.16 44.91 55.70 73.64 28.54 33.79 57.49 1.87 54.55 69.94 31.23 97.97 86.97 37.55 18.40 35.68 47.05 55.08 97.80 67.03 94.95 61.82 94.26 97.52 99.68 78.28 95.69 93.49 10.74 30.64 63.92 5.90 87.92 75.05 56.99 22.92 23.71 39.82 52.83 53.96 89.23 50.32 73.56 61.04 92.90 3.17 30.64 31.61 23.99 54.14 52.64 51.01 51.36 65.26 82.68 93.26 22.50 64.45 32.31 58.24 28.12 75.70 64.99 24.81 65.78 63.70 43.78 10.23 52.65 61.06 23.83 80.66 52.37 30.00 79.25 93.50 87.21 89.23 95.03 10.47 21.48 -56.78 98.27 41.46 65.29 99.71 27.12 3.22 82.00 44.35 53.53 55.50 86.01 30.52 49.99 48.69 88.56 65.04 56.42 60.38 58.60 57.46 94.40 96.18 1.90 44.91 99.73 64.19 97.70 52.64 66.75 19.00 28.04 6.77 68.70 55.96 35.63 73.03 25.12 57.94 57.71 64.35 71.61 88.45 83.30 48.86 99.52 1.24 79.14 86.72 79.19 0.31 44.82 87.83 34.51 75.65 52.43 33.89 56.56 96.90 21.26 40.06 37.57 39.13 0.11 44.83 5.91 63.45 30.64 65.70 56.74 28.73 68.62 71.01 81.59 59.87 76.37 63.14 70.18 96.95 90.82 20.46 9.00 38.14 50.44 2.05 3.67 46.36 44.75 60.51 22.25 25.78 1.61 83.96 14.98 38.87 22.88 77.32 26.05 71.04 3.13 -56.05 66.56 25.44 69.02 33.59 28.39 23.56 6.27 58.18 93.53 92.35 37.56 44.50 55.77 92.53 53.11 25.75 80.59 40.50 17.39 84.83 81.34 19.16 31.21 29.56 19.45 91.84 50.11 64.22 95.21 15.70 4.70 80.54 35.91 8.74 35.21 74.63 6.77 58.15 51.14 90.90 28.94 49.03 54.33 68.90 63.36 89.16 7.27 39.21 83.21 93.18 90.65 55.82 96.83 8.69 37.88 56.67 2.48 35.85 65.28 33.31 88.83 85.13 69.69 68.20 81.68 92.54 9.35 40.38 93.50 11.66 57.13 78.58 69.93 16.10 20.88 23.88 73.41 47.31 46.80 34.06 75.62 69.68 21.12 52.83 44.13 74.90 5.50 8.08 10.58 38.23 22.17 7.04 75.75 20.05 44.26 20.63 89.29 61.52 33.92 -49.22 31.01 53.83 11.80 83.43 40.58 32.31 83.58 81.45 61.17 73.17 34.17 47.44 5.61 66.59 8.63 79.19 77.05 2.20 59.00 28.41 92.57 80.77 14.19 72.13 26.21 6.25 31.63 50.83 10.86 39.47 35.66 48.43 85.63 48.52 67.76 77.51 15.71 64.35 17.64 86.59 98.16 44.56 26.21 30.60 34.64 27.89 79.02 19.69 77.68 62.68 89.78 60.05 63.46 23.33 41.63 66.03 57.53 13.17 44.21 98.52 59.17 2.97 5.65 25.18 25.92 73.21 53.74 70.61 51.99 6.17 98.06 68.46 0.70 39.50 93.85 61.44 78.35 48.82 80.52 26.14 23.19 1.27 11.65 98.06 99.96 46.12 35.10 5.56 22.69 7.72 73.05 95.10 84.36 92.61 50.12 15.21 86.62 55.15 10.83 -52.60 92.29 50.00 81.22 25.85 43.58 6.88 84.33 82.58 22.66 91.73 8.82 3.12 29.31 45.18 97.26 16.91 64.89 58.81 76.44 56.31 37.08 52.79 48.27 19.28 45.46 13.63 94.85 94.12 30.07 30.30 27.02 42.61 45.94 33.08 39.96 97.04 63.84 24.20 38.13 73.04 54.92 11.89 30.27 2.94 6.62 80.68 33.38 3.85 0.39 65.98 94.16 52.50 37.32 47.72 29.25 22.82 13.44 69.98 55.05 71.44 54.33 13.03 30.14 55.65 50.11 43.49 10.89 17.34 20.44 42.17 16.80 81.73 38.62 72.57 77.06 30.01 59.04 80.64 41.23 83.06 25.02 73.41 49.06 31.30 4.20 83.12 0.50 94.01 49.84 16.47 18.86 18.77 32.22 28.15 5.23 45.46 6.83 50.59 81.79 -55.20 24.31 71.26 18.06 22.44 66.10 10.01 7.73 32.21 7.55 52.20 82.28 94.88 40.50 35.46 22.86 40.63 55.74 75.87 5.92 3.35 45.47 25.56 20.75 43.94 80.97 70.96 53.41 16.52 18.76 79.84 56.41 89.13 76.66 34.84 85.68 63.25 15.33 49.26 76.70 96.94 95.68 22.88 2.81 84.84 11.08 86.99 48.99 3.38 71.69 35.65 7.50 53.65 29.09 10.40 97.14 55.60 48.14 55.69 57.11 19.19 95.64 94.13 49.94 96.65 66.95 26.09 26.26 77.71 5.23 87.69 84.69 40.43 77.46 38.53 48.69 40.88 17.40 92.66 65.21 90.74 57.96 11.49 24.96 5.58 68.61 72.86 19.56 1.02 80.47 79.69 83.27 76.07 38.71 60.80 37.90 79.74 38.15 13.14 75.59 -9.37 9.27 52.95 10.24 45.78 82.86 3.11 94.70 74.24 42.51 97.88 21.15 35.80 29.05 60.53 45.76 45.91 66.60 69.25 17.73 91.61 20.98 20.07 43.54 30.74 98.86 58.20 6.91 76.80 71.47 58.29 83.94 27.59 39.10 41.55 14.00 14.66 51.30 95.57 99.25 5.40 48.80 36.06 24.20 73.44 10.75 52.31 79.58 29.27 68.54 34.20 28.51 47.73 17.88 70.14 84.75 19.18 2.07 52.28 84.57 17.08 23.37 57.21 1.26 29.66 54.36 32.68 46.20 15.07 74.27 40.70 81.65 98.14 56.67 20.37 69.35 98.92 16.80 74.67 79.51 81.38 87.87 27.55 48.74 65.32 95.67 35.58 40.24 65.21 24.58 21.55 31.26 20.62 39.52 69.39 14.77 56.96 1.89 13.85 57.44 -3.43 23.59 72.74 66.59 62.58 46.26 11.81 82.95 21.63 84.27 43.16 30.08 49.25 77.98 94.44 81.41 98.03 59.18 18.35 71.23 34.51 77.33 46.69 81.79 67.43 67.74 5.33 76.26 73.41 34.15 4.15 61.54 86.32 19.28 93.69 17.98 50.05 45.31 60.02 76.46 63.69 50.23 89.97 17.93 22.17 89.48 59.31 35.96 7.46 41.36 93.64 23.35 82.97 70.65 54.23 33.48 59.98 11.78 66.44 43.23 98.24 15.44 92.28 48.46 79.74 30.72 43.08 96.36 68.62 94.00 17.64 44.54 58.76 18.69 59.52 88.14 49.90 54.71 18.22 20.32 71.96 77.76 69.10 11.10 46.32 68.03 72.52 43.09 20.30 74.68 15.76 32.70 86.98 43.50 72.94 32.02 76.00 20.44 29.79 27.27 -90.69 65.42 84.15 20.03 39.50 79.89 40.70 25.24 44.13 36.50 74.54 63.62 51.33 18.66 3.88 80.77 97.10 99.08 93.08 43.83 36.54 2.02 22.21 23.98 43.26 76.82 79.92 32.41 29.66 63.12 57.97 52.68 77.26 18.39 24.59 73.42 16.20 53.22 49.07 12.54 9.44 50.42 4.94 89.66 7.59 90.61 75.09 1.11 84.19 26.55 11.01 73.10 77.73 58.91 63.75 9.99 13.81 25.22 39.86 30.98 88.37 29.83 8.14 96.58 29.66 2.37 90.86 78.58 47.07 81.82 53.40 93.06 29.46 17.49 22.19 69.17 81.47 7.54 32.71 71.59 68.72 78.06 23.29 26.56 93.03 71.07 69.77 0.87 63.49 59.80 82.75 75.27 59.61 72.75 9.10 83.62 25.50 8.97 64.68 16.51 -12.50 90.52 48.55 59.75 67.31 37.72 21.64 96.58 79.24 95.35 66.81 27.67 19.16 82.89 50.05 68.55 38.40 6.28 31.83 8.18 86.13 16.15 94.88 47.69 93.78 58.04 76.51 62.40 10.88 73.61 77.21 93.13 14.37 64.11 26.74 93.54 92.59 71.82 36.78 42.47 16.44 77.11 89.41 35.69 43.48 47.93 96.55 5.29 8.04 74.49 95.12 25.07 6.78 17.82 67.49 99.34 93.50 53.61 1.88 46.83 8.50 46.18 64.42 36.61 38.45 9.15 31.12 82.43 51.16 88.46 91.17 33.96 98.90 62.10 22.64 98.54 57.25 96.27 26.96 20.02 57.41 0.09 29.88 15.45 35.17 58.95 2.52 84.81 55.75 4.07 10.75 41.17 17.44 23.80 35.82 14.46 96.40 31.89 1.06 2.90 -27.17 2.42 50.84 25.45 49.41 82.42 95.76 92.00 59.15 67.93 37.07 68.99 93.05 5.05 26.95 72.65 24.70 91.38 55.05 62.65 52.95 68.74 40.33 12.12 86.37 89.55 48.89 58.14 86.77 71.36 14.22 65.63 24.85 99.14 49.29 24.19 45.85 22.44 28.17 90.93 80.56 92.59 53.11 45.61 74.58 31.38 48.48 42.43 1.71 84.54 83.84 86.60 14.03 13.64 3.13 59.19 1.62 84.96 77.49 50.28 32.32 35.40 42.29 91.46 44.80 92.80 30.13 34.37 50.33 30.63 81.81 0.70 88.28 24.02 36.80 24.98 74.92 98.02 91.38 58.94 34.72 49.85 59.44 30.61 19.41 22.18 15.73 56.58 57.28 31.94 69.82 34.89 93.36 31.16 31.45 26.38 49.73 31.35 70.43 32.91 -32.89 96.52 89.22 35.35 9.55 26.49 64.24 61.33 13.85 35.02 34.97 5.99 75.99 82.39 18.29 50.91 73.03 29.80 47.89 73.44 44.64 99.60 53.38 87.24 64.06 96.06 75.89 45.29 86.77 92.69 28.42 26.24 73.51 69.88 46.82 4.27 28.71 12.93 71.78 65.22 67.01 36.39 70.67 96.22 37.35 72.33 10.74 58.80 96.65 99.96 49.10 41.55 25.80 49.40 86.93 60.26 32.18 20.71 45.05 7.80 42.95 82.92 91.34 81.89 56.45 0.51 41.94 19.73 51.48 65.99 99.19 21.73 3.96 53.80 51.26 77.27 37.11 44.85 85.21 72.58 34.68 20.74 95.99 61.05 55.56 16.07 42.05 12.17 0.21 64.37 32.73 35.53 0.21 3.80 92.72 72.10 86.44 95.27 27.09 66.41 -69.22 68.47 13.78 82.03 10.50 58.18 40.66 89.05 62.56 73.15 77.91 42.98 91.94 71.28 41.83 56.86 69.40 92.53 9.47 40.04 96.01 63.79 98.37 5.75 35.19 28.44 6.61 81.45 81.06 28.22 28.14 28.83 63.93 90.03 17.56 6.23 21.93 20.53 11.06 53.73 32.33 95.96 20.19 42.63 97.31 49.80 11.23 15.55 59.82 48.88 47.61 53.56 77.67 12.21 40.37 85.05 42.82 26.21 79.57 40.94 17.93 81.08 5.30 79.14 4.09 51.68 64.99 12.93 24.49 27.82 10.84 80.24 95.72 87.95 31.25 29.34 69.10 29.02 50.71 11.04 67.72 62.46 9.41 64.09 84.97 10.58 84.21 53.02 65.26 88.02 6.95 8.42 15.12 90.75 76.41 13.57 47.03 23.21 39.26 25.75 -94.53 9.78 58.81 48.51 15.45 12.68 34.82 11.37 10.61 15.32 97.52 67.51 2.47 0.16 76.40 83.24 76.44 74.54 69.67 81.35 8.39 81.37 23.87 84.55 28.21 7.17 6.99 0.46 41.35 97.34 55.78 65.27 41.05 97.44 68.62 15.15 25.03 74.85 50.45 98.45 98.42 74.86 61.71 94.29 45.63 99.17 76.88 59.13 76.21 99.03 70.19 12.98 27.55 67.51 87.97 36.51 37.91 13.81 94.32 37.43 44.86 80.93 48.98 70.69 16.56 0.76 28.51 1.04 6.95 44.10 24.82 88.30 43.00 15.88 66.22 67.86 11.66 21.96 66.60 69.93 80.75 91.84 35.69 72.53 6.68 11.13 68.97 70.27 62.15 23.51 44.19 97.52 72.77 96.78 69.86 7.23 45.94 56.42 36.46 6.24 -26.18 24.71 56.04 87.37 73.72 70.77 78.42 11.52 44.64 51.28 43.74 82.32 50.37 4.96 15.16 23.44 22.82 79.01 80.61 95.14 7.79 76.63 87.95 82.77 2.29 8.47 3.51 51.39 16.03 96.48 32.50 27.99 70.28 83.83 64.71 74.32 52.69 28.53 92.49 16.02 84.80 88.32 79.50 94.45 96.37 18.13 18.35 4.22 0.93 83.13 4.49 79.72 73.33 64.53 83.05 89.25 55.15 72.12 5.02 22.87 18.88 94.76 56.87 37.28 1.79 49.40 18.10 61.50 58.19 3.91 79.76 5.74 18.05 4.80 2.34 74.88 50.81 41.65 8.99 44.69 69.12 49.20 9.60 51.63 54.59 74.41 16.58 23.20 58.85 55.08 41.31 31.84 13.05 59.23 69.44 13.90 40.71 61.62 65.20 71.73 -50.36 15.89 6.78 8.68 16.71 82.21 55.62 12.98 60.88 67.46 43.84 8.66 34.34 87.59 45.16 53.96 38.58 92.60 66.12 29.65 51.28 70.53 72.22 25.19 62.71 28.45 55.21 52.71 8.95 55.43 19.29 31.24 92.28 59.55 0.16 24.41 63.85 2.91 50.23 17.88 42.37 2.62 70.15 26.21 35.27 78.31 67.24 13.28 48.35 7.40 0.16 71.85 37.44 13.84 69.03 39.59 66.48 41.38 54.44 9.64 46.82 5.00 39.34 97.41 28.10 57.36 68.46 4.07 5.42 94.90 6.95 7.30 90.58 88.58 54.13 37.64 80.12 2.87 19.21 91.08 8.22 84.68 10.62 31.76 91.70 39.81 20.96 69.95 68.52 31.72 96.27 20.74 62.05 40.03 77.85 76.31 53.22 70.91 92.45 38.84 -16.19 46.83 46.71 75.49 67.70 50.50 40.26 41.82 27.70 70.31 52.72 39.98 45.53 20.86 64.78 2.23 34.85 89.89 19.68 68.44 92.19 99.07 62.19 9.87 63.36 8.55 41.84 34.54 48.04 18.08 35.48 42.48 9.63 43.28 96.93 26.20 14.03 58.69 69.30 3.82 96.03 46.23 36.59 65.52 90.70 42.01 88.20 80.93 77.77 11.48 73.37 21.72 83.01 2.92 42.19 86.70 92.86 64.50 72.28 15.13 69.34 32.09 7.70 96.70 92.47 12.58 24.22 43.62 79.07 56.01 17.79 58.82 23.99 67.22 51.93 35.61 41.17 47.79 41.88 94.48 10.14 5.34 93.57 87.06 51.83 77.28 5.02 41.44 24.84 36.20 53.53 44.82 44.64 51.77 22.29 95.66 36.90 43.71 22.34 7.45 -88.16 57.14 61.68 66.92 34.18 75.59 88.23 50.31 12.41 62.22 53.90 66.41 67.37 22.38 93.57 90.78 75.28 14.86 59.93 45.83 91.78 51.56 41.02 69.16 69.10 9.42 82.04 51.53 2.90 59.25 1.11 35.24 76.74 7.35 96.18 45.87 72.19 93.96 44.14 52.13 12.63 82.77 28.76 24.05 41.96 48.00 90.48 88.02 52.13 54.02 35.62 47.34 91.66 99.94 94.60 39.43 98.14 4.50 77.26 85.69 8.19 9.26 83.77 86.45 4.11 48.43 41.10 23.62 11.81 48.50 75.82 66.94 90.74 74.05 35.50 5.92 50.38 94.83 87.84 99.98 28.33 79.58 36.72 36.02 32.66 55.32 83.59 51.55 35.70 38.78 40.60 92.97 46.06 33.46 39.37 14.12 11.63 14.28 97.23 36.80 -22.91 50.42 36.85 66.06 35.72 82.36 50.13 74.93 47.25 7.39 19.59 98.63 25.14 49.44 87.40 59.59 28.24 28.98 30.66 59.04 52.84 88.67 99.59 40.58 9.68 55.75 51.63 6.36 0.72 64.42 18.79 10.94 70.50 70.49 82.60 48.49 61.11 0.69 83.84 39.99 65.51 81.34 75.84 38.55 90.00 31.01 60.04 91.75 39.10 17.52 4.15 1.36 44.35 6.41 14.49 9.12 73.86 18.27 17.66 76.91 7.88 37.41 98.40 84.65 40.58 97.03 75.85 44.16 75.94 60.60 7.39 48.43 54.58 29.84 66.90 46.82 42.70 21.81 23.99 86.20 80.77 99.90 1.36 17.88 51.58 93.28 17.50 15.24 50.89 4.54 62.59 10.30 84.77 22.35 43.67 59.50 22.82 37.21 58.68 22.65 -35.73 74.48 29.45 29.48 94.00 71.55 6.53 61.02 39.78 46.03 24.96 13.51 36.31 89.06 87.29 25.33 26.63 93.46 30.41 17.29 85.76 44.42 35.89 47.91 9.18 45.92 88.01 23.29 84.38 65.09 64.34 62.08 30.29 61.34 77.00 72.37 59.07 63.25 34.38 93.64 67.80 1.38 6.63 4.50 72.69 96.78 77.29 73.66 42.93 49.00 4.77 31.93 17.42 1.03 80.05 81.82 42.93 85.15 5.38 52.88 44.35 37.41 16.47 33.65 89.84 58.47 57.20 83.31 22.43 46.96 37.17 74.14 39.94 8.75 58.47 20.55 5.26 2.32 76.48 52.34 74.97 62.33 85.99 7.96 87.83 13.87 80.59 23.43 81.68 11.25 57.54 45.20 82.60 20.50 13.21 97.18 16.68 20.86 38.96 6.97 -71.76 10.34 93.35 69.51 23.50 82.00 64.10 79.26 57.92 63.69 82.42 92.73 0.94 23.68 17.62 14.46 30.77 81.19 29.23 38.71 12.52 6.31 35.49 70.69 4.16 34.77 32.24 65.58 45.47 46.85 1.54 91.62 52.19 58.55 87.39 49.21 68.91 51.85 36.57 33.06 4.87 34.05 1.28 37.48 52.55 16.56 91.24 69.19 33.17 91.26 85.31 38.49 34.68 65.90 63.34 70.53 80.56 54.93 1.48 75.47 64.50 4.00 50.46 78.68 1.10 40.13 32.77 16.99 71.70 48.55 27.09 41.44 19.38 74.34 13.95 71.06 64.68 36.21 66.93 56.35 53.13 88.17 97.65 25.33 12.34 32.73 17.62 0.59 34.35 31.32 28.46 19.66 89.59 56.32 97.26 72.53 11.79 96.80 18.67 23.12 -97.24 41.75 51.15 93.02 12.70 33.09 38.12 16.12 0.12 73.37 28.99 35.93 72.67 52.50 60.24 48.34 90.87 86.23 48.44 7.24 39.33 86.96 93.03 29.79 78.17 66.90 52.56 10.90 82.11 40.32 90.18 13.35 43.02 81.30 77.70 63.46 87.00 23.37 7.99 30.78 77.68 10.51 83.98 33.56 27.89 68.61 48.75 90.25 40.17 35.97 3.47 45.11 99.87 99.56 79.81 9.28 77.82 11.04 51.32 82.29 63.91 54.30 98.97 83.21 62.95 89.86 97.27 89.37 82.98 73.22 97.40 7.65 8.81 76.50 57.60 32.71 58.31 45.40 6.03 31.88 0.08 60.62 35.21 95.13 28.30 98.52 79.86 57.23 8.00 80.41 39.86 53.71 47.18 18.87 25.26 11.80 14.39 48.84 61.61 95.33 -26.92 28.97 0.59 1.39 0.07 42.75 6.10 26.91 54.39 6.52 73.81 18.86 57.75 93.96 98.00 74.28 55.07 53.16 28.34 88.27 65.82 70.33 29.68 82.12 44.42 9.29 71.02 18.73 16.06 75.18 15.06 57.31 65.51 48.93 72.19 41.58 11.98 68.06 20.11 41.25 61.30 55.77 72.68 57.38 1.99 80.46 54.01 46.52 22.75 77.86 35.41 89.80 60.28 96.95 3.14 70.48 37.13 70.49 91.56 26.47 33.17 3.72 2.02 20.17 88.98 3.24 60.76 20.89 81.73 35.99 76.55 14.21 59.48 42.49 83.05 75.25 66.14 37.14 61.27 83.21 5.24 75.07 46.99 96.70 40.87 82.92 57.63 25.26 81.58 98.11 36.22 96.03 34.63 62.27 43.05 73.41 43.01 66.41 82.43 76.77 -67.24 86.81 15.67 5.24 93.31 46.19 61.07 72.08 30.77 37.09 75.70 69.09 29.25 10.29 6.33 32.22 74.74 11.33 76.68 18.18 29.66 16.51 19.72 26.63 57.49 41.92 10.11 47.79 24.32 13.61 20.80 1.67 22.27 48.61 21.36 74.13 60.02 66.95 54.26 25.09 82.06 11.22 80.95 22.82 32.93 75.09 18.08 98.15 87.35 2.97 14.68 16.84 83.82 13.53 77.77 80.67 60.23 3.40 56.72 0.45 85.42 94.90 62.31 53.68 35.09 36.04 22.83 10.74 26.77 22.07 73.25 1.81 78.15 16.52 65.31 73.78 80.53 51.47 52.56 46.74 96.78 31.38 12.05 55.38 48.55 95.28 79.48 38.80 29.04 40.64 43.99 49.51 72.17 69.88 42.84 47.14 79.40 62.60 92.20 86.61 -56.10 71.05 20.04 98.77 89.34 96.16 73.59 11.93 98.40 88.37 2.70 6.05 33.05 36.93 63.94 57.44 90.80 91.04 87.89 34.17 11.53 8.63 84.51 9.35 92.84 78.16 44.90 38.43 28.34 48.02 9.40 78.35 45.67 44.33 30.00 59.61 43.18 47.07 67.41 55.67 19.93 41.57 30.42 98.14 83.39 65.76 17.17 8.08 0.55 54.57 64.31 39.97 4.51 24.11 50.65 51.39 46.84 45.56 7.09 84.36 6.34 49.41 66.06 92.91 24.59 38.42 47.67 6.51 44.77 89.63 53.48 47.56 28.24 73.31 87.47 7.99 32.50 62.00 50.16 91.56 52.29 17.94 18.85 24.87 11.15 14.18 97.25 46.72 22.15 41.98 89.38 75.06 3.62 19.26 49.55 34.68 27.52 10.30 55.04 90.53 -4.39 96.12 31.42 63.78 22.81 38.70 25.82 36.23 81.98 51.13 72.11 22.54 31.23 47.29 12.86 28.47 83.70 43.52 74.76 20.86 31.86 83.22 50.16 12.14 71.79 50.69 11.61 86.27 53.82 38.87 44.63 73.38 99.35 4.06 82.15 57.21 27.23 72.55 50.97 89.46 30.48 75.38 83.45 83.27 13.59 2.80 75.99 63.50 10.48 32.62 22.77 15.21 11.18 21.60 69.20 59.97 59.92 90.45 12.96 33.28 61.75 54.58 82.05 52.94 57.80 19.66 3.98 40.09 24.13 94.99 57.43 44.23 95.32 5.96 4.16 83.43 62.93 71.38 29.66 5.50 38.58 4.99 50.39 59.81 72.34 63.29 53.00 61.55 0.18 78.58 39.34 73.54 63.29 21.10 11.43 46.43 43.73 12.11 11.28 56.91 -33.73 61.93 89.16 39.86 97.20 44.73 46.74 5.07 74.15 29.77 52.55 94.72 41.16 66.00 41.39 89.90 30.02 35.57 69.71 93.97 25.09 93.40 91.77 62.09 1.73 92.81 64.05 87.23 13.19 70.65 41.94 40.79 45.31 27.63 84.24 86.19 84.56 78.39 65.83 80.77 89.78 75.66 33.52 48.71 81.33 73.95 54.86 88.26 45.49 48.08 44.47 73.28 36.50 3.77 61.98 39.50 54.78 48.49 71.28 62.77 81.16 89.98 74.46 48.17 39.86 76.13 39.30 64.32 54.62 2.40 66.27 69.17 94.27 37.91 62.36 82.72 0.88 25.02 89.81 59.18 59.46 3.46 22.43 11.87 47.45 11.11 23.80 88.13 41.52 84.05 92.44 88.23 92.12 77.62 42.75 47.22 91.93 97.35 80.97 47.94 -91.85 37.89 10.17 43.97 32.46 34.01 41.66 6.22 75.46 36.89 71.98 17.59 92.26 44.89 13.89 11.24 18.38 50.78 14.97 29.56 32.48 33.67 52.74 20.42 32.21 28.23 66.52 12.17 61.03 46.61 19.62 66.56 72.23 11.98 30.64 25.95 0.95 76.97 60.50 73.78 26.64 93.99 93.99 56.83 84.52 83.99 95.26 96.72 69.63 83.17 21.78 17.18 58.23 11.68 16.18 83.51 88.46 87.42 42.89 41.25 87.29 15.82 92.02 40.89 15.44 79.26 61.17 34.43 80.17 8.15 58.13 52.04 99.36 11.56 24.85 50.17 76.31 11.69 63.54 71.50 90.60 96.83 29.06 91.21 0.15 96.35 59.54 93.84 83.23 0.47 36.87 56.32 85.01 66.26 14.86 26.73 23.62 10.48 37.02 44.24 -93.63 16.42 92.01 3.18 66.80 19.25 77.87 47.45 18.92 94.63 86.60 66.21 27.75 94.27 52.01 58.86 5.95 50.67 61.33 15.17 97.75 41.81 43.15 3.60 28.83 5.39 49.24 56.52 0.44 30.85 73.58 91.98 82.33 1.21 35.36 70.97 89.78 76.98 17.09 72.79 34.33 86.76 97.63 36.59 59.97 51.42 47.58 56.55 63.25 69.50 49.04 35.13 9.61 93.96 80.97 18.07 2.61 74.57 89.81 0.58 34.10 19.33 19.09 0.26 56.53 83.21 94.18 33.98 4.35 71.72 18.53 10.92 3.61 91.16 96.00 87.63 66.90 69.42 78.82 72.53 90.81 62.15 1.56 43.50 57.06 90.33 31.74 35.18 45.97 57.33 17.02 62.66 29.23 38.12 15.60 38.93 67.89 71.19 7.94 31.23 -78.79 99.57 5.46 23.16 31.66 78.96 55.75 50.19 89.08 9.72 22.13 20.03 32.61 26.35 65.30 33.13 14.07 79.98 38.19 40.83 4.38 60.89 10.39 38.66 27.54 89.17 94.73 26.83 61.39 54.55 75.69 30.43 27.23 67.84 54.28 66.89 98.98 85.08 90.98 98.10 51.32 35.93 42.38 26.03 56.32 5.22 2.63 20.13 6.84 70.22 7.71 94.73 80.84 22.35 87.31 63.76 67.70 44.68 18.95 93.31 39.86 85.32 2.58 66.85 94.20 36.35 73.62 47.68 86.15 99.90 37.49 55.97 41.98 53.73 69.10 95.16 74.72 41.63 24.26 78.54 86.97 64.74 78.90 54.35 8.12 48.79 15.48 68.26 88.06 46.00 43.61 64.67 63.83 98.15 12.64 97.26 79.71 49.00 14.57 38.45 -69.24 65.70 17.86 47.70 28.83 88.88 43.81 59.37 52.42 10.27 62.47 73.27 43.21 43.81 0.31 41.44 47.70 30.41 43.05 54.19 84.31 8.52 51.35 71.70 67.77 11.28 6.12 58.09 42.04 26.96 41.13 19.12 27.29 79.56 86.11 20.66 51.15 81.30 77.61 81.57 92.82 39.64 72.93 57.82 95.35 14.10 28.14 58.66 2.19 87.83 25.82 51.11 77.84 13.07 21.72 52.62 68.83 95.02 0.20 56.59 2.31 3.31 24.78 18.90 63.79 84.34 45.68 93.51 87.97 78.08 55.52 42.84 46.42 85.22 3.13 59.51 83.52 59.12 52.19 41.38 1.59 19.42 37.21 42.71 99.31 14.20 10.43 86.39 10.49 89.92 60.87 33.99 1.35 77.57 51.00 83.52 57.93 60.35 18.80 63.20 -27.94 6.35 64.86 23.55 22.83 45.08 54.23 45.28 39.82 91.60 20.78 40.35 74.60 80.15 99.54 0.57 61.19 46.23 64.60 90.45 98.80 4.69 37.98 13.52 18.81 68.38 88.21 60.75 38.45 78.95 23.40 88.45 65.03 32.66 57.34 90.60 99.66 37.25 80.64 92.97 32.19 62.59 20.37 19.26 0.10 39.31 68.24 90.38 75.62 81.23 90.61 88.40 48.15 1.60 12.55 84.14 47.92 38.65 41.46 15.36 90.70 89.67 46.34 39.00 41.62 72.09 72.58 51.22 62.48 15.76 93.12 32.87 51.18 64.08 46.04 45.81 97.33 8.75 88.05 41.79 3.72 27.69 16.33 77.32 8.30 36.50 10.65 1.81 56.60 52.96 14.88 86.98 43.69 75.06 55.11 99.41 57.67 21.55 41.42 32.75 -27.01 96.40 50.33 26.42 21.85 81.32 45.21 51.77 15.72 13.88 11.25 49.80 55.00 75.87 11.39 19.07 1.30 2.87 48.70 44.72 54.11 27.73 20.19 0.06 64.75 85.41 39.78 82.16 27.82 6.17 47.36 54.59 89.91 2.65 42.80 49.00 83.76 53.61 96.76 56.39 93.85 28.12 58.96 50.30 81.63 16.56 41.01 35.55 0.25 85.53 20.87 30.35 47.32 57.42 77.94 66.02 63.54 45.02 85.88 89.19 59.87 99.87 97.25 63.00 71.62 49.46 13.43 3.60 2.76 27.60 94.37 90.66 9.94 36.22 58.14 99.58 34.38 39.29 79.97 48.13 6.42 8.25 74.36 20.46 87.63 67.35 97.44 84.58 26.82 34.69 36.62 24.11 87.00 27.12 12.18 92.52 56.48 3.32 13.67 13.45 -53.12 68.87 35.64 1.89 23.49 87.52 44.28 13.39 70.90 20.28 88.31 8.24 90.46 33.88 0.21 81.23 23.88 27.38 45.60 49.50 91.94 49.25 62.56 14.87 71.14 1.48 9.32 64.65 9.23 15.79 54.79 51.72 8.02 82.84 75.13 40.85 42.50 50.60 71.05 24.96 73.78 31.43 1.41 69.09 11.68 72.98 29.06 70.40 22.53 66.34 68.14 85.33 73.03 64.37 50.34 10.62 69.54 23.35 47.11 57.79 58.23 62.04 42.20 13.59 40.94 94.03 72.53 59.91 26.89 24.91 50.08 74.86 77.36 67.42 95.46 32.66 23.52 2.06 97.94 35.83 39.92 65.40 28.47 36.19 34.31 86.11 98.87 96.48 0.31 44.47 53.07 71.18 3.72 84.97 67.87 33.10 7.10 97.01 73.76 76.13 -87.14 10.24 50.63 86.28 21.19 95.47 65.27 83.53 55.08 2.53 51.94 30.11 41.24 69.96 17.33 38.40 55.70 88.49 14.10 93.07 87.38 19.05 94.96 21.76 32.66 39.18 32.01 33.00 97.81 31.83 13.84 54.75 69.82 92.24 97.42 94.36 34.38 18.66 76.81 8.48 71.73 42.19 63.15 32.29 97.79 55.12 9.31 69.23 82.56 19.56 23.02 11.85 59.45 59.85 71.54 35.02 54.49 86.66 79.50 12.93 56.84 39.29 36.48 85.68 88.14 15.35 86.94 71.50 48.78 2.17 56.80 36.84 2.75 87.64 18.41 5.16 95.25 5.03 2.91 52.86 66.77 55.88 37.64 15.30 64.46 34.38 64.05 81.83 39.00 63.61 45.67 7.02 52.73 21.81 16.40 94.25 19.91 30.21 47.86 53.11 -2.24 41.13 77.50 60.53 72.32 87.29 99.88 80.75 37.37 71.91 65.47 42.91 40.18 63.94 62.66 75.20 50.21 89.51 70.01 31.93 54.84 10.52 78.26 24.29 34.90 5.15 20.51 48.21 90.75 91.63 22.71 1.09 22.95 99.21 18.56 81.83 0.25 80.99 61.59 60.40 24.33 57.71 7.39 87.08 53.10 36.34 56.92 58.51 64.29 44.71 21.93 13.81 71.51 17.01 15.75 99.61 64.71 5.32 31.10 85.94 43.19 65.82 82.99 46.73 11.99 69.42 96.42 51.06 97.28 84.22 17.56 38.62 15.78 12.69 62.96 11.69 91.51 51.45 15.94 83.84 50.29 29.94 9.99 67.00 29.75 72.69 8.50 21.74 72.26 41.69 59.83 44.26 60.28 74.42 84.19 52.56 51.30 68.58 48.02 52.38 -56.02 76.51 65.18 86.75 90.83 30.65 44.79 98.98 11.83 68.65 34.85 36.35 13.36 75.53 86.08 5.44 50.15 27.45 37.76 49.42 51.23 87.38 93.54 25.43 54.50 98.11 34.88 21.16 15.51 86.56 20.32 26.85 12.60 73.06 59.81 35.57 14.76 60.91 97.81 79.70 54.15 88.57 36.71 84.00 67.81 5.73 90.20 97.90 85.47 27.93 65.69 57.44 39.03 99.99 91.74 62.28 99.27 28.69 24.94 31.38 32.61 51.40 23.95 21.25 57.78 97.71 90.37 19.40 6.36 94.39 33.70 34.61 69.77 21.68 94.07 74.62 38.33 46.76 56.05 85.97 53.28 96.44 93.23 59.02 41.63 78.76 25.41 87.33 21.87 55.27 28.52 77.37 25.17 59.73 34.54 8.96 78.09 4.62 79.19 80.94 -1.45 43.23 67.44 8.09 56.74 66.47 62.38 53.08 3.64 55.20 46.64 80.66 24.89 26.45 42.87 48.06 34.77 47.88 51.35 60.47 41.38 13.56 13.50 43.88 80.45 91.15 2.20 51.61 33.89 3.69 50.83 94.45 21.66 2.45 33.13 53.35 51.28 90.86 61.12 77.14 97.00 55.27 11.88 33.00 56.84 10.13 91.92 82.48 57.09 50.52 80.34 18.56 31.21 82.71 20.77 77.25 10.48 89.79 82.94 81.63 31.59 42.00 71.55 3.42 31.34 25.07 22.86 56.71 90.14 47.27 80.61 11.99 53.44 86.62 96.28 66.74 13.57 76.62 4.60 30.23 37.29 35.71 35.12 70.29 21.69 63.19 94.06 22.95 41.51 90.40 37.41 98.86 94.58 81.18 84.03 17.63 47.59 32.89 24.45 68.21 -99.87 84.88 35.96 50.57 25.29 73.52 27.63 80.67 33.48 4.96 46.67 98.39 46.64 11.73 50.56 25.53 81.74 24.05 19.05 16.89 68.16 11.92 28.94 56.83 37.64 35.23 38.95 73.32 89.48 43.44 52.89 17.67 44.47 31.42 97.19 58.78 84.29 89.02 78.61 52.81 36.58 66.58 42.36 20.37 30.70 31.17 42.01 59.07 74.59 26.26 11.64 34.44 10.67 12.91 7.19 59.51 83.79 62.08 73.37 52.01 46.19 18.51 21.74 51.89 54.36 34.02 62.08 53.11 25.40 50.23 77.25 3.32 88.72 14.25 67.78 62.69 37.54 36.77 82.31 79.40 29.36 59.85 68.60 58.69 89.76 12.78 51.71 77.74 98.63 8.88 56.45 43.59 22.22 72.45 58.24 92.87 69.68 29.42 64.33 58.11 -58.21 4.22 85.48 98.46 90.62 50.38 38.61 94.89 35.94 24.88 82.75 13.24 37.86 65.26 74.36 48.78 0.06 67.83 66.36 85.29 67.10 78.60 48.60 79.33 15.60 98.72 8.91 27.70 17.75 88.30 64.02 99.30 78.94 6.59 80.40 66.23 61.30 91.98 8.60 17.09 53.12 26.34 99.80 81.54 86.97 84.28 19.99 59.99 98.50 19.95 66.54 52.44 14.59 69.70 86.76 98.28 80.21 88.33 72.17 31.50 92.86 37.85 2.96 29.01 97.85 55.76 92.91 29.72 28.76 58.91 99.10 10.16 59.36 11.08 15.21 82.65 43.86 20.15 92.34 23.68 34.46 99.23 73.65 83.56 63.90 73.12 76.77 44.13 30.41 57.94 46.60 74.38 12.58 69.92 28.20 87.62 63.53 79.06 80.30 25.85 -97.30 46.64 58.18 45.04 30.32 43.82 68.51 61.12 79.75 6.26 60.10 99.73 19.07 36.96 17.00 16.61 17.17 23.43 74.84 55.01 60.91 95.47 77.29 89.27 59.11 49.22 63.25 55.32 54.62 31.91 48.83 71.62 46.92 1.89 17.98 32.19 3.11 12.66 2.40 62.91 82.04 28.98 97.93 95.42 98.67 81.13 1.89 83.01 72.88 18.05 85.32 28.20 3.36 94.83 88.10 23.04 31.77 0.05 50.08 95.74 46.77 46.25 35.30 97.66 24.32 50.11 77.62 2.94 37.59 15.25 65.46 97.63 18.85 96.45 68.89 97.20 9.58 78.04 98.83 20.88 43.70 36.26 96.03 53.84 52.32 11.80 83.94 39.81 21.46 40.15 60.39 72.89 37.08 84.82 97.13 53.55 45.27 94.53 27.51 67.70 -58.43 43.46 97.83 6.70 13.95 57.74 23.77 91.79 12.35 88.72 65.92 49.33 11.26 31.12 38.93 88.44 62.40 11.78 81.16 75.59 46.51 75.94 94.55 52.40 93.57 98.44 15.79 37.83 94.13 52.86 22.07 38.23 81.26 3.95 87.21 78.75 16.70 80.11 38.44 82.77 52.29 29.84 45.06 11.27 6.12 57.82 86.49 12.12 32.54 69.44 33.97 56.14 26.50 2.58 44.69 95.94 73.30 85.60 33.37 98.66 89.25 81.85 5.78 41.35 62.75 77.26 13.46 88.13 91.68 98.86 6.79 36.21 76.34 9.03 84.84 38.63 11.26 35.99 2.24 7.44 45.81 82.97 85.34 61.67 71.39 28.77 96.18 93.63 42.89 91.44 90.79 33.53 68.01 12.69 9.11 40.69 10.39 11.39 93.37 17.14 -54.32 67.24 77.04 5.89 13.47 12.11 46.19 30.11 25.75 3.48 0.39 44.85 86.77 44.16 11.12 50.80 24.10 26.08 49.91 35.28 12.20 34.44 46.73 26.97 27.23 82.05 72.11 56.83 94.54 84.77 96.58 50.91 58.65 82.06 56.45 32.97 80.84 68.05 59.90 74.24 31.15 68.82 68.26 62.48 18.77 23.54 87.61 93.26 47.22 37.58 87.87 5.69 33.71 94.19 87.76 59.69 23.96 15.36 67.00 84.11 45.80 10.23 64.32 3.13 45.26 25.44 27.60 79.06 41.38 24.92 86.73 19.29 66.75 44.54 28.17 31.39 1.85 4.09 38.19 40.63 0.75 21.93 44.78 92.63 36.93 35.28 42.62 90.33 19.07 17.91 26.49 5.82 77.92 13.77 12.71 14.71 25.14 60.64 11.10 59.82 -67.84 24.08 65.70 4.90 37.32 22.93 3.87 79.54 83.06 10.27 13.10 98.31 19.70 47.75 24.51 17.72 5.46 2.75 42.52 42.84 77.19 97.22 87.80 60.10 8.76 47.66 21.40 62.42 96.50 32.75 34.71 31.52 45.63 73.79 36.76 12.26 95.44 97.35 1.87 64.03 60.59 38.67 27.86 39.65 75.84 79.24 68.71 70.24 30.62 10.77 24.84 62.74 16.61 63.21 56.14 54.09 15.98 28.15 20.11 38.10 27.04 73.30 55.31 5.65 54.38 0.69 71.84 62.17 70.54 29.73 93.05 79.70 32.62 58.44 5.55 11.03 83.50 10.98 84.28 59.83 92.81 83.84 30.37 69.53 86.91 16.04 19.68 53.66 88.59 72.49 85.24 84.91 18.97 97.09 84.87 51.97 63.78 59.53 30.82 44.50 -63.62 96.94 92.95 8.79 45.64 75.92 83.77 68.84 39.15 81.06 90.60 14.01 35.72 44.14 50.04 23.37 86.51 55.58 83.13 29.32 97.28 0.80 59.51 88.81 74.61 20.98 88.68 80.04 12.49 21.94 1.92 95.36 63.52 41.19 22.92 40.88 83.14 48.94 75.50 52.82 45.94 6.76 28.23 67.92 94.78 35.65 6.02 32.03 61.59 60.86 72.81 4.05 23.21 97.65 90.10 93.47 73.99 29.33 25.43 99.25 10.78 65.65 25.76 5.03 74.29 81.83 63.98 86.13 19.16 26.61 16.59 71.27 73.12 38.30 27.97 27.88 72.84 36.38 25.85 28.93 86.96 51.27 68.07 34.88 64.96 77.95 32.94 34.11 33.12 29.28 50.13 20.36 89.67 86.13 63.32 20.23 69.49 54.96 94.58 21.30 -52.46 31.00 12.43 91.42 27.66 46.47 93.94 18.92 7.44 69.40 9.22 9.00 93.25 90.39 73.42 70.33 47.63 34.85 45.47 98.86 71.48 9.63 57.63 60.56 18.35 66.22 15.11 16.54 79.66 33.83 42.02 62.37 15.12 70.63 36.75 48.55 45.47 42.06 83.90 55.30 28.14 32.51 75.26 5.88 92.57 38.28 14.43 28.27 58.02 16.92 21.54 77.34 0.93 66.17 28.61 92.81 59.21 28.83 26.27 33.18 89.07 81.42 21.55 75.96 32.30 22.95 56.32 77.17 71.30 28.82 39.83 7.80 43.72 99.12 60.93 68.39 66.76 37.11 13.88 72.04 54.72 75.58 56.52 55.51 1.42 16.08 87.48 41.53 75.33 28.58 11.96 68.21 66.84 42.10 87.46 9.39 33.35 79.20 29.89 29.55 -59.35 88.32 95.65 77.41 30.23 97.33 80.32 85.94 83.49 48.16 7.81 89.46 29.84 15.58 76.92 90.88 72.81 35.24 9.96 53.70 69.82 32.37 60.59 31.02 47.78 55.00 37.47 54.56 93.05 58.74 5.71 88.02 11.82 82.25 55.15 83.71 22.12 27.57 82.23 6.22 29.87 99.20 57.53 0.39 87.71 62.50 55.40 81.34 58.40 7.95 45.20 31.74 66.96 78.39 24.94 5.18 4.06 74.78 47.12 30.62 29.25 27.72 47.58 41.70 96.62 71.48 79.20 17.08 24.71 85.62 45.93 74.24 43.82 39.40 55.76 92.64 92.22 25.06 40.88 12.59 13.50 83.12 23.62 46.56 52.47 79.26 79.40 92.64 64.57 3.69 10.29 25.49 65.82 33.34 87.27 99.48 11.50 44.47 94.78 71.24 -38.34 5.06 49.40 78.48 30.82 98.01 6.05 77.68 36.83 20.00 23.08 81.77 3.58 50.18 86.27 20.96 1.62 87.16 54.40 8.92 0.91 13.51 60.70 80.56 85.79 38.63 67.48 66.51 88.54 9.75 37.39 89.02 56.70 91.69 80.74 17.22 62.35 97.50 8.87 6.60 80.66 12.15 40.72 99.60 56.51 38.42 59.28 77.41 85.01 93.51 31.61 93.71 5.00 16.85 99.58 29.35 77.15 13.93 7.57 56.84 60.71 57.99 12.02 28.84 18.53 22.82 52.69 73.51 43.84 1.82 66.91 8.30 84.94 63.56 13.73 16.79 69.25 76.36 68.63 88.40 13.11 58.70 76.55 46.02 34.57 44.10 83.10 11.45 42.19 24.67 43.09 86.15 44.11 31.10 90.19 58.45 27.49 49.32 10.63 85.16 -8.17 60.53 50.40 46.74 43.95 60.58 38.56 4.69 15.99 95.70 49.72 15.31 1.82 51.89 12.49 2.60 66.35 88.11 69.57 13.30 7.56 74.21 64.86 10.44 49.16 25.43 53.08 97.95 57.70 78.31 53.79 40.51 12.06 86.87 3.56 29.50 53.69 99.39 40.76 61.89 61.73 65.07 53.48 31.68 46.50 12.38 81.00 66.03 2.14 56.07 76.07 0.68 3.25 37.28 58.29 39.61 94.61 69.55 22.97 27.43 45.37 2.93 50.23 77.13 3.56 4.42 65.03 4.26 56.29 66.02 28.06 60.08 91.18 35.89 86.29 75.52 85.19 12.80 5.15 10.53 53.71 93.41 60.46 56.46 29.70 18.53 77.27 63.87 40.68 20.28 50.43 18.55 60.24 21.31 96.71 92.70 8.02 43.58 61.23 7.38 -19.58 30.31 92.32 33.81 11.01 42.96 70.37 27.80 66.49 64.20 21.77 21.45 24.55 92.25 51.93 66.19 58.28 12.22 26.01 37.48 0.24 91.27 97.66 40.51 82.19 17.40 2.63 72.26 72.62 15.70 98.41 66.94 74.56 64.40 84.06 35.35 99.49 37.42 40.06 69.43 34.49 27.47 57.66 90.09 76.99 69.88 37.46 82.41 54.42 65.50 19.35 65.86 44.11 85.67 64.15 20.55 92.39 16.06 47.24 10.26 88.86 66.10 25.85 84.76 32.66 80.10 26.60 9.70 14.57 98.79 57.37 38.09 71.12 28.24 3.68 66.41 82.00 74.95 89.43 19.00 68.60 97.75 87.56 68.24 84.36 33.82 19.15 42.88 42.20 50.16 15.71 17.66 19.07 78.88 43.84 61.82 6.27 33.58 27.98 47.54 -92.14 18.65 43.58 24.19 40.02 93.68 99.99 94.82 66.27 43.70 72.83 98.60 55.87 30.88 61.68 71.52 38.78 15.91 63.31 29.46 20.41 15.40 34.97 8.64 16.33 48.30 10.62 13.07 82.18 48.67 20.60 38.32 49.05 20.38 35.94 65.41 87.95 2.09 63.26 18.77 73.55 76.43 47.06 79.16 78.84 64.73 58.89 4.62 27.03 70.44 63.38 0.02 49.75 98.79 13.83 88.64 69.91 66.56 75.35 94.77 78.66 31.90 30.54 35.23 16.87 96.15 46.88 98.87 33.88 74.29 9.48 61.71 73.39 90.84 69.67 2.70 41.05 4.04 7.47 79.91 34.55 83.92 69.43 30.82 86.43 71.51 1.01 77.28 46.00 13.77 6.63 57.21 97.90 40.10 93.69 47.44 67.38 64.58 42.73 92.32 -53.87 94.82 84.13 98.13 74.45 94.40 97.85 4.70 80.04 99.92 35.91 94.61 93.25 91.62 25.05 45.53 61.89 67.66 95.36 32.31 38.63 49.78 44.19 27.15 61.11 65.46 48.07 76.06 52.77 11.38 16.37 10.37 67.59 60.48 55.02 40.68 77.45 34.67 8.25 6.39 41.65 84.75 92.54 22.49 53.19 49.88 70.81 2.89 64.80 85.20 92.90 77.40 58.04 55.94 55.70 60.04 2.04 31.93 84.91 79.38 88.35 3.56 27.12 16.34 80.69 88.73 33.54 54.23 70.51 15.85 96.40 72.17 4.90 96.44 85.60 27.15 25.08 28.59 38.71 92.52 59.60 10.90 21.14 62.96 1.52 81.11 67.83 9.37 16.08 53.38 68.60 37.48 6.43 86.76 19.79 54.50 60.18 22.90 56.53 36.81 -12.26 58.50 10.05 5.66 34.62 50.97 4.39 29.36 41.31 30.56 42.56 14.84 81.48 74.30 68.59 0.21 65.13 70.71 74.44 19.87 10.31 33.88 91.33 91.84 92.36 46.77 30.32 21.13 27.63 85.45 54.02 64.45 83.64 7.29 16.10 37.07 88.86 44.83 27.49 82.77 17.15 24.62 41.56 74.81 20.14 70.05 96.09 24.28 25.69 62.28 33.84 73.79 99.92 47.57 54.25 48.18 82.00 71.29 11.01 86.93 43.59 74.84 78.98 68.45 17.81 41.85 94.05 68.26 93.01 40.05 66.82 46.75 56.06 1.86 96.59 1.57 1.11 27.86 13.98 15.65 41.78 59.22 38.33 65.04 14.04 66.65 92.18 96.77 17.89 72.81 78.16 94.82 23.96 92.16 20.64 83.11 0.26 54.01 14.63 18.34 -18.67 42.77 12.03 60.90 42.76 68.78 19.52 2.02 51.26 48.50 32.28 49.79 6.29 75.19 85.52 35.56 77.79 69.91 20.96 21.27 88.86 54.69 91.07 27.92 73.00 24.80 33.99 35.51 66.87 4.81 98.86 26.00 63.27 76.02 52.43 89.99 12.64 17.62 35.14 36.03 77.48 92.88 65.05 8.27 43.51 39.68 12.45 89.56 73.75 19.65 84.18 46.31 31.37 3.87 69.10 72.91 51.72 6.59 4.77 28.66 52.19 75.89 93.18 25.35 99.21 60.78 94.69 13.36 21.52 1.74 24.80 6.97 67.96 30.36 17.49 83.50 90.92 68.07 12.25 96.23 74.13 71.25 37.09 34.44 12.45 73.85 95.34 33.10 84.62 44.59 2.42 3.04 86.96 73.72 70.77 37.72 16.13 55.49 45.04 6.37 -91.31 28.37 74.08 28.47 59.61 86.58 85.28 21.41 63.25 53.05 89.71 78.12 86.85 53.89 88.51 49.00 70.24 47.76 19.89 45.58 9.27 76.38 18.98 66.69 73.44 52.57 95.34 52.61 35.01 56.02 67.65 71.81 23.87 42.34 77.12 41.43 87.71 5.56 3.47 71.06 42.00 29.40 88.16 35.79 46.82 50.63 27.43 91.77 43.32 32.46 17.83 37.66 57.26 47.31 10.54 27.78 58.50 15.27 46.87 95.73 51.05 63.16 76.75 52.32 45.69 66.06 2.22 52.26 61.30 89.49 55.40 85.68 15.17 76.79 51.21 7.28 91.62 83.37 38.45 83.22 60.53 84.67 8.45 61.30 29.66 87.27 22.27 17.47 3.00 84.09 16.98 9.33 91.99 43.85 19.11 24.14 76.68 17.89 68.82 19.46 -46.46 19.83 79.83 47.87 84.35 88.83 18.02 38.40 97.74 20.91 70.57 97.36 52.90 3.51 62.84 39.14 36.70 86.98 62.28 3.41 19.76 74.71 20.37 37.62 85.02 34.34 22.95 36.24 42.94 39.71 77.48 10.55 1.62 64.31 82.57 55.74 69.41 18.26 97.46 34.84 4.75 89.64 27.52 64.90 2.94 0.05 27.84 78.33 3.31 75.38 76.18 95.81 41.27 88.33 92.16 66.77 21.01 40.39 56.14 14.45 86.30 85.69 72.84 32.85 11.76 66.40 98.94 37.60 21.01 43.05 10.19 93.14 5.36 43.49 62.58 52.25 7.49 10.45 69.09 22.35 55.90 28.18 17.63 64.09 10.48 25.02 74.28 76.41 83.27 42.50 38.00 18.43 85.27 0.05 82.97 8.75 96.56 19.74 30.95 56.65 -95.98 35.45 47.92 98.29 46.79 95.35 57.54 96.13 4.67 70.45 43.96 30.51 86.21 93.32 1.33 80.50 37.04 17.96 49.99 54.78 0.94 16.39 97.37 92.33 25.30 32.66 87.41 80.78 45.79 71.83 91.02 90.04 93.36 73.39 39.09 97.01 96.76 7.00 96.34 54.86 33.58 35.15 50.06 88.73 67.18 48.71 22.51 36.13 20.74 92.63 55.67 67.97 6.14 79.92 93.37 64.18 49.55 57.63 57.23 16.17 12.22 0.28 33.12 54.30 59.65 75.90 9.09 94.82 74.74 50.44 59.17 71.86 53.46 88.49 71.54 79.82 36.02 12.39 3.18 19.75 61.93 27.51 87.30 43.90 52.09 23.49 68.98 22.44 47.97 9.40 27.59 60.46 5.34 78.17 81.09 79.97 40.58 33.13 10.87 72.35 -78.06 23.39 8.61 41.81 42.51 64.19 21.64 99.36 25.98 71.69 24.08 39.47 31.09 72.47 92.52 16.51 22.18 87.69 58.09 76.11 12.97 15.57 85.74 67.52 60.96 58.84 69.78 22.45 3.83 84.32 51.06 80.50 99.61 37.00 38.66 5.14 41.66 92.72 95.01 26.33 61.45 19.71 58.63 6.76 79.43 13.66 62.00 82.32 53.26 91.94 61.06 13.89 35.09 90.60 59.93 81.31 44.78 38.36 98.82 59.61 67.62 9.08 83.42 37.26 94.39 1.71 71.68 12.87 19.45 97.99 97.75 83.20 26.02 30.37 95.94 81.70 85.84 37.52 35.84 40.14 86.88 47.64 31.08 8.04 50.50 70.71 7.23 36.62 7.31 50.46 91.47 98.93 9.16 59.89 11.80 86.99 2.24 95.42 74.61 83.75 -15.48 96.00 9.22 81.35 83.90 0.90 25.43 32.59 69.17 61.31 80.32 25.58 74.78 96.40 76.54 87.34 37.07 26.11 41.77 21.23 94.61 70.22 16.15 32.40 3.80 19.02 14.52 67.40 75.75 7.50 37.76 35.13 33.88 29.61 33.36 55.86 75.06 68.88 58.47 70.31 51.81 4.31 47.46 27.69 30.51 76.01 56.13 77.09 31.38 73.70 95.49 64.95 7.51 36.83 9.65 48.73 93.65 54.44 96.76 14.92 52.68 79.02 94.90 30.27 80.83 58.77 21.35 92.67 67.41 70.24 99.27 71.39 69.20 48.26 11.09 92.77 62.34 77.86 48.12 44.55 1.88 15.37 66.51 10.11 49.14 71.05 15.16 87.15 92.60 19.95 51.52 65.09 46.43 18.43 67.23 43.85 93.12 66.45 2.53 57.15 -68.01 49.46 78.00 31.57 26.29 45.95 68.94 78.15 85.51 93.61 89.34 64.12 37.99 2.08 90.52 6.78 66.56 71.24 68.38 86.59 39.81 36.59 15.94 51.01 95.33 18.00 31.71 55.26 13.05 1.49 67.30 68.96 75.36 83.32 21.93 72.99 78.85 93.92 43.91 90.81 15.54 31.63 62.28 12.57 12.18 14.22 73.26 72.35 70.66 51.14 42.28 89.49 45.38 26.26 8.65 67.02 5.53 70.90 48.16 53.61 41.56 27.43 69.52 20.10 14.01 84.19 53.27 1.82 81.25 40.11 85.74 57.12 73.09 20.85 64.66 74.55 0.28 60.54 11.26 47.06 73.26 65.89 63.09 6.42 85.06 64.04 58.13 35.50 41.18 84.58 39.82 92.39 89.57 61.21 32.71 37.22 67.57 35.36 3.83 51.61 -44.15 99.72 43.19 9.70 1.56 98.24 23.10 84.88 96.61 1.82 72.87 21.55 84.43 36.19 31.01 19.62 98.01 93.01 20.81 38.34 58.65 74.32 7.37 86.21 13.20 23.33 90.45 74.95 77.61 99.09 90.69 39.59 65.20 13.84 79.76 54.60 15.24 27.46 20.58 50.61 2.08 63.30 94.19 91.85 67.10 39.43 51.77 61.75 99.79 75.96 49.81 13.01 44.25 13.51 32.44 51.49 38.69 44.24 81.13 3.55 9.83 68.39 68.08 87.69 73.29 10.81 6.86 24.03 36.28 81.86 95.59 91.18 81.34 90.54 27.06 93.46 5.41 77.39 66.44 30.44 5.03 65.89 94.53 69.69 96.02 91.36 18.57 29.58 81.57 62.56 69.15 15.61 41.39 54.63 48.58 74.98 82.89 23.80 0.11 70.35 -68.67 24.70 93.96 11.90 23.15 60.10 92.46 89.16 51.07 88.24 41.60 78.83 95.92 41.62 58.96 62.63 91.89 93.37 49.20 51.30 15.06 14.93 73.20 80.90 93.62 74.27 50.53 0.70 64.06 82.88 52.84 65.04 93.02 32.18 5.58 44.87 7.22 89.96 87.99 44.97 16.12 19.56 17.45 63.05 92.08 68.11 29.96 11.81 89.30 36.96 54.64 35.99 63.87 11.99 18.90 37.57 21.96 27.77 74.99 39.84 51.84 17.52 84.67 61.86 34.06 47.79 79.21 45.18 23.83 74.75 92.31 64.63 57.14 52.76 21.32 72.76 87.11 7.02 72.21 26.41 63.30 20.28 6.12 35.51 47.63 60.53 74.54 95.85 73.17 10.39 31.47 28.36 43.58 42.95 95.17 52.07 8.36 94.73 1.44 60.86 -3.60 71.99 51.05 14.11 73.32 76.85 29.54 69.77 99.96 26.40 85.74 8.59 74.68 62.17 71.24 73.69 27.00 99.69 12.07 68.27 83.17 62.23 84.88 66.37 48.84 92.36 71.71 94.76 93.30 54.21 82.17 53.91 55.67 61.94 36.19 56.48 36.93 27.32 66.01 95.25 28.35 95.36 35.76 12.93 10.36 86.68 93.72 81.65 52.92 88.44 5.59 53.42 49.17 38.40 9.26 43.22 81.95 39.86 38.78 97.57 23.38 69.09 93.99 82.62 58.70 72.83 2.99 70.77 6.62 95.71 4.02 66.15 41.17 53.66 55.82 19.01 18.32 18.01 89.00 87.79 56.44 89.66 97.54 94.94 57.69 39.32 6.46 96.67 10.14 31.43 21.26 52.70 58.77 90.02 11.27 99.86 70.97 86.46 24.38 98.69 -39.62 7.86 5.50 80.75 67.75 25.69 38.87 37.99 10.05 24.13 94.41 48.00 81.88 41.62 17.38 0.36 12.86 53.44 92.89 39.54 94.40 24.71 80.38 36.82 50.54 40.66 21.84 21.21 54.80 12.37 45.55 40.42 56.06 77.81 94.50 25.87 92.20 25.71 78.61 73.74 97.46 21.30 21.33 59.03 47.26 86.61 89.76 39.67 5.86 6.86 34.43 51.46 50.17 58.92 31.27 12.97 34.71 27.48 78.78 54.97 63.71 75.90 2.87 17.73 88.75 52.95 89.28 61.50 74.25 62.84 31.89 13.53 90.73 10.24 0.67 71.98 61.53 19.32 65.52 83.15 94.82 18.57 68.26 89.39 10.21 24.12 99.61 52.80 39.26 81.02 97.63 43.52 44.85 16.87 71.45 67.00 94.74 32.61 37.13 50.99 -11.70 88.03 48.43 13.71 70.18 93.97 6.78 16.19 57.89 33.34 42.49 17.84 45.47 75.28 10.01 3.84 11.26 5.74 91.53 7.90 42.40 50.30 66.39 78.92 31.95 56.42 44.54 63.97 71.77 65.31 51.06 1.36 22.03 27.03 76.10 25.01 92.32 83.95 50.29 37.51 45.83 55.88 52.05 80.86 81.16 48.29 87.54 14.71 51.13 30.84 61.12 35.90 94.26 70.08 96.93 86.26 20.21 1.64 80.34 41.71 29.79 53.15 38.09 74.71 51.22 47.62 5.09 50.21 58.13 85.75 70.75 22.76 15.96 87.30 63.22 98.80 77.45 88.97 66.54 73.28 41.17 87.19 36.07 74.22 3.95 13.32 32.01 93.73 51.99 71.60 19.42 71.36 90.18 15.41 99.43 12.45 89.14 25.96 34.73 76.11 -67.52 92.13 94.17 74.86 3.03 11.56 52.13 71.95 41.47 73.01 18.34 3.58 19.36 29.53 53.56 64.34 5.21 1.20 58.63 75.30 2.46 76.13 50.96 58.74 97.14 41.96 42.60 14.32 87.93 13.47 24.99 39.50 70.88 12.45 77.97 79.91 95.65 37.76 66.98 63.78 46.00 85.36 35.52 96.90 25.02 29.13 51.12 79.80 21.38 61.64 78.48 54.15 48.17 84.32 74.54 39.63 89.09 3.46 86.07 21.22 32.68 57.46 31.74 80.27 73.20 85.58 77.70 29.92 9.22 89.67 27.79 64.39 31.23 83.15 2.63 86.91 91.34 15.52 73.48 15.57 64.36 96.76 88.13 8.33 66.02 14.85 15.73 90.95 23.43 19.02 20.89 24.03 57.28 30.55 58.34 74.43 47.58 72.57 58.78 7.60 -64.16 64.64 96.92 26.23 97.60 49.39 44.64 90.22 79.08 8.01 14.15 33.47 74.31 12.29 95.54 89.87 97.04 30.14 89.31 74.51 73.33 48.22 26.74 53.57 29.05 70.08 91.04 29.73 89.70 74.34 93.92 84.26 65.72 41.92 98.44 79.50 29.35 1.02 53.04 84.13 29.86 53.83 53.25 66.09 73.15 50.17 12.60 6.90 14.82 1.30 17.91 25.27 15.00 54.56 68.66 23.27 61.70 85.74 3.96 52.89 80.39 51.57 29.91 16.01 53.59 96.70 96.24 59.76 0.22 50.22 98.38 57.73 64.60 38.92 13.61 28.24 31.21 41.97 21.63 93.22 28.02 9.98 78.54 22.66 83.40 47.06 60.67 76.73 58.15 63.45 5.02 66.07 10.26 27.71 66.27 60.59 3.26 56.01 13.97 68.77 -16.11 59.33 79.98 85.97 63.47 88.01 29.65 49.20 70.94 39.55 24.85 2.01 12.45 0.45 97.77 41.48 65.49 92.63 7.42 36.77 35.38 76.02 41.80 17.51 83.17 59.40 25.97 49.61 93.92 80.01 6.31 18.65 98.41 77.39 75.69 58.66 14.56 9.46 8.86 0.85 7.56 13.51 79.22 25.08 56.32 44.15 10.54 74.37 15.27 16.37 2.04 65.50 15.18 61.28 74.51 59.46 14.79 35.93 69.10 81.12 40.09 59.52 53.59 14.08 85.31 48.50 61.53 67.07 34.75 93.58 10.40 33.08 78.89 93.72 25.52 3.60 68.56 53.90 84.50 48.74 63.71 38.43 45.95 45.69 18.23 47.98 60.56 48.08 59.60 76.68 47.43 49.30 81.83 35.67 10.22 67.75 43.19 88.12 34.00 41.01 -37.59 40.75 79.93 86.04 59.80 23.28 37.01 58.20 83.34 88.68 13.04 34.65 25.59 48.56 17.12 51.06 92.23 4.15 89.48 81.95 53.02 45.01 10.02 43.63 8.36 20.31 25.59 55.97 3.13 52.66 9.39 49.92 67.08 91.01 4.94 44.08 79.67 13.99 68.57 72.50 6.87 92.75 56.08 40.73 4.93 74.63 67.05 5.19 8.59 55.22 55.94 75.23 13.48 84.66 51.23 28.05 41.55 89.69 47.18 33.99 84.42 42.86 22.54 53.83 77.64 74.45 12.66 30.98 54.55 29.42 42.76 84.57 86.57 33.91 17.85 48.07 30.99 70.46 77.04 70.08 81.60 39.42 7.80 50.39 5.02 78.84 82.72 63.07 82.90 82.13 32.94 17.40 48.50 99.90 90.56 34.26 0.12 51.47 66.33 15.12 -72.86 38.33 9.11 54.51 93.84 23.48 50.79 36.64 81.14 98.09 74.40 30.30 95.87 11.88 58.90 7.71 12.59 21.75 66.11 80.31 84.13 81.75 5.73 37.21 83.24 32.88 78.99 29.76 91.84 77.21 11.87 65.32 47.05 28.10 51.35 99.68 7.43 49.57 6.47 38.07 66.88 17.72 37.32 95.35 68.66 8.99 82.66 90.80 45.62 95.33 85.70 8.75 68.44 7.14 13.40 44.39 93.68 75.19 71.58 77.75 29.29 50.00 92.77 35.91 9.48 44.62 65.96 94.54 69.95 91.97 57.18 61.90 23.83 64.27 96.33 25.72 30.00 71.33 42.10 99.76 38.61 23.17 80.35 48.53 56.96 87.43 61.81 46.14 29.48 57.80 85.18 72.55 18.64 9.63 52.46 17.29 56.40 79.99 6.70 54.23 -0.50 6.08 67.33 36.16 76.74 23.59 82.29 64.34 51.51 6.22 9.79 77.06 49.89 61.65 20.64 87.73 43.37 26.29 84.67 90.70 35.56 41.95 58.39 95.04 86.80 56.54 31.67 17.41 11.33 13.74 63.39 25.15 28.41 14.65 91.29 26.42 62.89 76.18 25.89 86.41 58.63 39.83 43.26 46.19 33.42 13.24 64.51 54.36 2.57 5.69 65.97 14.68 66.89 8.16 46.57 95.61 38.99 92.49 17.39 24.67 26.23 47.53 54.78 90.74 12.49 40.88 60.74 58.34 35.00 32.94 89.41 22.41 75.19 68.71 63.56 4.38 86.96 62.27 76.93 67.10 68.40 30.85 11.62 64.79 79.36 80.31 82.85 30.06 9.48 27.85 80.78 63.19 17.42 1.49 78.42 61.99 98.58 64.00 66.15 51.51 -40.72 64.44 47.27 74.91 89.57 77.68 13.36 23.47 58.04 51.70 48.76 41.21 21.48 61.29 65.16 21.84 99.42 21.85 31.82 70.71 15.07 19.37 39.73 37.83 90.02 38.24 23.77 46.23 36.17 22.54 26.47 83.60 11.01 16.96 61.53 25.38 32.78 10.43 17.87 42.75 11.89 35.88 99.47 62.98 87.94 67.66 80.90 4.16 88.60 42.23 3.26 74.69 58.35 22.67 80.66 69.58 75.16 30.59 53.97 70.83 61.55 96.97 10.44 16.07 29.36 19.83 72.24 60.69 66.97 73.31 72.91 85.30 87.20 90.87 31.80 29.79 2.94 31.00 24.82 71.99 41.89 91.73 6.12 17.42 36.53 93.51 82.18 96.93 72.93 24.43 17.89 53.66 28.49 59.84 19.95 16.66 79.82 66.73 42.51 41.33 -91.91 76.96 12.99 35.64 49.02 49.55 16.23 5.59 88.50 37.27 29.50 60.13 43.57 33.96 76.57 60.93 39.40 27.55 82.17 81.06 58.32 63.24 99.72 69.24 27.49 14.40 88.64 82.50 68.12 9.50 14.98 73.50 71.67 43.04 22.07 36.62 47.81 90.49 2.13 98.78 71.19 97.19 23.42 54.13 16.61 16.95 42.32 88.37 62.80 32.86 82.47 47.19 57.73 5.01 89.76 23.08 93.27 22.53 99.64 94.55 52.59 90.25 64.86 33.80 4.47 47.61 29.17 5.64 54.60 64.80 4.75 93.78 58.80 28.13 86.39 68.91 89.08 32.25 75.80 52.44 84.00 68.07 9.71 79.10 43.71 36.34 73.03 32.68 88.69 76.74 61.57 0.15 33.19 45.80 75.03 66.27 65.39 44.65 86.09 46.56 -28.30 90.44 91.87 48.50 28.76 14.43 15.80 56.99 22.57 72.32 88.32 95.94 89.21 41.86 82.40 85.61 24.60 56.08 64.43 61.37 84.36 95.56 32.27 51.20 0.92 46.79 71.94 70.50 21.40 27.08 34.42 17.68 38.89 4.77 89.13 20.00 65.55 49.68 76.45 88.21 61.18 91.34 40.04 9.82 17.26 75.11 60.26 26.84 39.14 3.96 45.47 60.20 39.55 14.28 32.82 41.52 66.60 55.60 61.80 56.41 29.69 79.32 9.59 34.50 0.61 47.56 58.81 50.62 42.45 1.93 35.52 93.47 89.35 11.95 84.60 74.16 81.98 85.02 36.31 4.62 50.62 96.99 69.23 68.33 4.56 74.76 28.79 15.84 55.58 53.47 68.11 1.65 94.48 85.29 61.03 58.45 0.54 99.44 84.41 81.87 -12.46 53.03 78.46 25.86 31.78 94.35 74.22 12.98 73.36 20.30 18.83 11.20 71.17 88.02 36.86 86.22 0.78 19.33 30.69 51.26 5.62 50.61 5.27 21.47 75.37 62.04 1.35 0.71 45.36 78.37 0.65 30.11 67.78 53.80 4.29 39.47 72.20 7.67 47.82 67.86 39.84 41.33 95.77 62.22 92.94 47.28 93.49 7.13 88.55 5.92 4.46 6.04 22.08 20.81 87.91 56.57 65.44 93.12 14.02 58.18 52.01 21.50 85.17 44.66 10.47 17.50 33.12 69.00 21.47 59.44 5.66 61.09 37.54 71.96 70.73 2.81 10.88 6.26 39.78 24.43 93.18 58.92 99.30 39.97 93.87 77.53 55.25 49.46 5.68 29.64 52.95 71.05 33.02 52.93 66.79 4.25 55.02 79.72 4.88 19.51 -22.45 67.05 37.36 80.22 2.92 81.86 29.53 40.96 48.79 72.59 54.95 15.33 43.80 75.40 4.60 50.68 81.20 63.00 3.32 71.44 99.24 63.33 91.93 8.68 38.64 48.63 71.99 21.72 27.72 2.77 79.17 68.93 83.56 41.09 44.44 77.27 20.45 36.58 5.43 41.54 47.64 19.41 52.62 28.32 31.54 67.22 12.61 97.46 51.73 66.95 7.41 35.49 5.95 30.33 78.79 56.58 41.46 58.60 25.15 55.70 27.77 29.49 74.17 3.78 69.63 8.00 97.77 87.93 92.46 43.59 31.70 47.91 39.01 51.05 34.02 31.51 34.58 60.81 70.21 11.05 61.26 68.03 28.57 47.50 96.91 89.64 79.88 11.30 17.90 90.45 30.23 81.47 80.12 2.90 34.88 86.81 54.57 24.29 70.64 82.32 -35.95 70.49 36.93 2.24 79.83 45.72 39.89 94.96 69.33 92.93 64.51 20.74 68.99 65.66 52.02 8.46 70.08 69.74 81.51 23.01 83.76 66.88 97.69 82.67 20.69 73.68 40.98 78.44 75.51 37.29 0.25 54.99 83.85 5.02 60.57 3.60 1.89 91.29 44.54 6.99 25.18 26.44 61.96 60.94 62.84 63.24 87.39 92.24 89.77 32.39 94.73 70.06 27.76 94.35 87.63 63.95 79.12 19.87 33.37 24.49 5.16 9.23 52.01 26.09 12.06 69.89 30.25 33.33 89.42 2.51 47.47 55.62 47.67 17.74 10.61 27.79 47.28 99.75 41.28 7.20 20.59 75.38 44.77 72.35 25.78 48.62 95.37 61.51 9.43 49.87 6.17 6.33 24.67 97.91 96.22 60.18 48.56 1.50 99.56 32.15 -72.51 78.14 92.46 75.78 31.95 44.95 29.82 48.16 46.61 69.90 51.64 86.50 46.85 85.00 70.10 50.31 75.22 78.75 36.11 72.87 20.25 10.37 18.62 45.69 27.09 49.39 64.79 0.32 0.39 64.65 34.43 17.84 26.27 96.62 85.76 86.17 1.83 21.60 57.19 24.64 42.98 69.96 55.07 78.13 52.34 4.71 3.54 21.00 84.49 35.75 82.39 16.21 79.00 84.22 99.34 35.12 30.60 90.94 3.92 22.65 1.06 69.90 68.41 33.49 77.76 41.50 96.76 33.30 75.34 51.35 21.14 3.82 3.63 34.09 43.69 47.88 37.87 6.98 36.06 42.04 65.87 26.73 23.57 87.63 5.53 83.12 3.96 78.02 53.56 96.52 0.41 89.43 88.20 21.35 2.48 32.49 42.00 22.25 88.23 65.72 -76.93 60.62 23.00 2.47 56.65 61.73 54.18 38.43 50.41 34.01 30.78 15.26 89.21 98.69 11.59 62.43 72.99 39.55 1.15 86.80 41.26 37.35 24.58 38.32 87.58 39.52 13.50 44.99 79.28 77.80 40.88 17.60 89.86 50.13 62.01 57.68 67.44 0.70 53.05 14.91 91.92 5.16 81.70 66.30 10.27 14.97 28.74 76.81 68.78 7.56 21.60 51.57 96.86 10.10 93.87 51.67 98.98 15.92 87.26 64.73 34.32 45.30 59.07 75.50 56.97 33.67 65.36 55.99 77.93 90.90 25.07 79.56 94.41 50.15 68.68 62.36 45.57 70.60 55.01 2.17 50.37 59.00 97.98 24.52 94.93 6.54 74.94 72.26 92.34 4.83 33.32 91.72 78.18 73.41 80.65 93.10 35.50 74.77 85.40 46.02 -24.24 54.21 84.34 93.63 61.43 48.25 79.73 20.28 84.73 98.18 0.65 72.09 26.56 80.26 29.20 87.87 78.93 63.23 80.75 31.61 25.80 16.41 20.38 21.10 91.48 93.15 96.75 40.76 51.32 46.13 65.07 82.03 39.11 31.72 80.89 37.50 20.78 39.24 70.57 35.34 9.15 31.18 21.96 20.73 27.38 96.56 85.60 45.01 28.70 80.12 95.32 73.92 39.55 7.66 12.25 12.06 43.54 26.77 73.42 75.87 13.48 98.41 57.02 97.06 93.42 2.91 90.87 79.33 94.71 11.70 41.08 37.85 35.01 97.43 82.01 35.54 57.13 45.86 19.95 54.31 35.81 75.42 57.36 55.32 15.18 44.26 58.56 53.78 27.84 89.60 96.18 19.31 1.14 29.01 9.13 19.40 61.64 37.75 75.74 66.66 -14.77 58.80 45.71 69.21 67.13 59.33 1.36 70.68 15.22 79.48 37.66 65.27 61.26 59.04 66.03 77.35 49.19 43.70 17.63 58.71 5.18 72.23 52.54 74.81 4.96 63.71 95.16 10.31 92.21 46.21 29.49 21.66 86.23 2.73 94.35 33.92 32.35 56.44 88.47 57.78 92.55 28.64 82.72 14.53 26.03 36.00 41.86 96.86 92.12 83.05 84.22 80.06 23.91 44.86 22.15 1.94 81.19 6.78 48.32 31.52 3.38 88.29 84.37 50.61 25.24 92.03 73.63 88.13 77.19 56.77 98.29 63.53 48.49 32.53 46.50 75.89 70.56 69.66 50.64 18.80 1.59 12.63 90.50 48.70 12.50 67.06 28.55 1.00 41.33 71.71 16.67 9.55 51.34 31.65 22.01 11.86 61.79 36.23 45.83 69.30 -16.11 11.19 94.44 17.54 62.58 28.62 58.35 79.77 24.25 30.84 54.96 37.66 72.31 35.93 64.53 5.73 45.23 36.63 53.52 48.84 81.53 13.44 87.38 79.59 95.76 62.00 43.59 89.64 40.74 86.71 7.67 76.62 19.54 28.84 20.53 62.81 69.92 20.61 11.18 3.04 15.63 78.75 9.29 38.41 8.90 67.78 55.90 18.52 56.85 46.51 48.64 38.73 89.36 5.55 24.00 29.93 22.88 84.89 15.82 71.99 40.43 83.56 74.52 43.82 48.12 68.11 79.91 29.08 59.83 56.93 81.27 32.02 24.71 78.53 12.18 60.14 65.09 88.44 39.61 34.30 69.13 91.00 54.68 62.45 93.39 23.73 93.19 35.22 72.95 83.61 17.26 51.57 59.86 47.56 81.34 29.28 42.52 20.75 78.21 56.01 -96.23 7.79 76.19 41.79 99.33 29.79 49.70 43.87 34.29 35.17 2.30 11.95 11.50 26.48 65.03 21.68 54.99 1.30 31.36 56.40 46.90 61.39 67.82 29.11 14.19 80.35 99.56 10.59 2.82 91.72 43.27 16.26 15.46 80.95 61.57 74.29 18.67 72.69 12.54 8.67 44.42 20.58 8.54 59.03 34.98 32.79 89.42 85.58 45.87 50.81 78.87 85.35 76.30 89.39 10.80 30.04 6.50 49.72 25.37 68.74 38.55 82.27 23.98 74.66 34.58 71.99 75.11 85.46 66.19 5.21 99.90 19.02 20.69 37.96 14.72 89.02 72.59 7.93 10.16 54.48 24.84 98.32 88.64 85.16 84.48 85.74 33.91 57.07 83.39 74.58 4.38 73.72 89.71 85.96 18.13 34.99 27.78 81.20 61.91 68.64 -54.21 75.57 70.27 18.51 84.06 78.24 32.65 85.21 79.63 86.15 94.27 35.77 8.03 7.83 15.06 13.31 47.50 8.28 7.82 49.11 57.14 91.80 20.37 19.49 60.03 14.16 7.87 88.65 70.14 5.99 55.85 8.07 76.72 92.45 85.39 50.03 18.20 49.76 98.22 81.83 0.15 35.56 5.21 79.65 93.83 6.04 60.98 18.93 49.53 90.77 94.29 23.48 71.28 33.27 71.95 88.51 87.92 85.64 79.91 95.77 25.82 88.84 29.94 67.69 4.35 82.03 31.65 17.20 96.11 87.14 12.56 86.62 34.21 99.41 83.27 69.59 6.16 31.46 65.09 47.36 49.77 57.80 96.71 43.59 25.97 81.61 75.34 55.92 78.07 16.10 91.04 77.32 92.31 81.73 98.18 91.33 38.61 3.62 35.63 27.64 -19.86 31.83 80.24 86.29 81.52 58.54 87.26 57.55 83.64 90.39 74.65 29.62 22.06 77.62 84.60 58.60 69.09 13.77 9.86 11.62 81.21 38.44 30.03 84.28 94.90 8.49 97.72 92.15 82.66 13.39 56.82 5.43 74.19 77.65 9.32 70.40 66.79 52.69 93.10 72.14 65.36 84.22 3.15 4.03 7.17 86.05 22.63 54.47 68.90 10.12 85.04 99.13 61.31 50.27 2.18 23.53 85.61 58.01 52.58 1.97 89.13 59.04 98.93 71.96 94.30 46.22 27.36 26.88 50.79 49.29 24.58 0.90 4.61 87.79 62.05 93.52 31.35 16.84 16.89 94.78 13.87 65.02 95.42 18.69 95.36 16.58 68.21 79.14 67.73 52.07 3.30 35.23 10.19 69.09 93.92 5.83 19.20 86.30 58.18 53.89 -45.49 78.89 90.24 74.12 12.05 19.29 84.37 90.32 61.27 62.93 94.46 93.20 31.71 51.70 50.64 2.76 34.95 4.39 16.27 7.82 68.30 39.24 13.61 79.06 5.55 39.62 63.80 61.39 96.69 21.90 61.01 73.01 33.70 19.57 64.17 86.37 84.44 84.81 97.86 47.06 74.81 48.70 5.48 31.41 49.97 51.12 68.23 43.23 9.66 97.53 15.03 68.48 28.01 59.44 88.34 44.71 92.85 38.72 79.25 42.93 8.95 83.53 9.72 7.25 16.90 67.69 98.63 95.33 19.30 77.75 99.11 23.10 30.40 92.94 66.05 76.38 16.26 20.77 11.11 75.99 55.15 9.02 6.01 60.55 70.58 91.83 92.25 5.59 60.76 77.88 42.89 41.78 93.04 89.06 67.47 53.03 59.87 68.41 58.31 35.07 -59.73 90.18 19.21 18.02 56.10 80.55 41.29 77.26 80.85 65.87 74.59 57.02 14.50 30.99 68.49 23.70 50.05 13.45 4.22 0.65 97.70 71.41 85.20 69.04 27.18 83.29 69.56 34.24 99.24 78.98 54.24 79.26 78.73 86.11 20.27 16.78 79.72 85.56 26.39 55.05 0.78 62.84 35.68 23.12 17.72 21.05 36.61 26.65 95.49 66.50 87.39 83.08 6.75 24.57 99.75 84.92 35.93 27.66 25.52 79.02 96.73 11.56 72.66 54.17 81.31 39.76 44.69 20.79 51.05 84.03 44.09 26.49 61.30 75.56 30.86 98.26 52.85 83.18 46.32 46.26 89.02 63.97 63.10 2.73 97.36 8.87 88.11 27.12 40.73 9.74 96.87 36.35 73.60 69.33 79.48 90.36 55.53 9.14 98.77 47.63 -59.66 22.45 64.90 97.07 41.75 24.88 39.49 6.76 82.18 91.58 30.71 10.23 86.66 10.17 27.90 5.19 83.81 25.83 85.50 41.50 75.10 98.07 56.85 59.49 73.18 54.19 39.11 63.70 43.45 15.25 30.94 23.40 9.51 16.57 94.65 43.04 95.39 15.71 90.87 25.58 37.54 93.86 99.59 94.44 75.58 47.71 94.69 89.40 63.75 93.73 95.77 34.26 49.89 96.00 99.81 91.66 14.08 62.55 92.67 49.37 1.24 51.77 42.22 4.68 8.53 46.72 51.59 8.93 66.05 35.99 52.67 60.32 0.22 84.65 6.08 72.42 66.28 31.54 9.18 63.20 24.76 33.68 72.90 88.62 0.01 9.37 99.94 73.40 89.41 66.03 9.56 4.70 94.62 56.46 85.78 75.47 21.16 31.84 72.61 84.77 -91.75 64.36 81.66 4.41 28.86 96.59 2.01 79.50 80.76 53.84 24.94 33.51 39.36 80.56 71.50 16.62 80.33 43.27 89.81 24.61 93.44 53.36 44.34 40.87 51.42 18.64 33.17 18.75 43.51 21.94 45.71 86.67 24.69 12.56 36.90 24.49 45.89 85.66 34.56 15.13 48.22 60.91 61.25 16.38 73.09 37.18 14.80 27.19 45.91 21.51 76.78 75.57 79.88 41.48 62.92 17.51 35.94 91.48 40.10 29.44 74.28 44.33 9.05 92.49 87.91 11.38 76.51 1.82 19.82 8.59 78.77 47.13 49.64 15.65 79.69 77.14 17.60 61.71 5.03 16.35 3.70 53.51 10.78 0.52 98.14 83.66 43.26 16.06 40.97 30.20 21.43 70.65 86.32 45.02 6.08 51.87 39.65 76.61 25.86 64.56 -78.91 56.73 78.92 76.89 19.11 65.24 96.25 35.78 23.33 48.57 82.70 47.26 4.49 7.58 82.85 74.26 55.02 7.24 76.10 12.60 11.01 67.12 66.06 66.81 93.40 2.04 22.89 48.38 74.98 77.64 30.33 85.16 46.14 28.22 65.02 51.22 46.35 98.59 12.44 60.77 70.89 87.65 24.05 33.36 49.74 32.62 59.59 39.07 49.72 98.48 8.30 95.05 82.10 33.91 52.17 19.83 83.49 27.99 26.11 81.93 30.31 80.78 26.80 5.62 16.74 64.08 83.14 53.65 26.82 11.27 38.55 70.18 34.75 11.58 36.85 62.34 33.06 90.82 62.99 1.55 45.55 8.72 17.12 54.14 99.49 96.10 47.90 12.91 23.03 8.21 25.28 14.07 31.34 91.85 17.88 69.15 55.56 47.41 66.49 24.25 -1.14 98.16 11.42 43.44 12.06 91.58 52.53 54.99 98.99 18.11 61.54 95.91 51.63 58.40 12.53 40.51 99.92 0.96 98.52 48.33 8.98 78.00 7.76 52.77 0.31 77.42 31.87 82.14 55.64 86.55 15.92 79.94 73.29 55.72 55.28 35.71 42.08 97.34 90.50 21.56 57.31 40.40 56.67 49.42 67.72 44.09 38.29 1.49 73.86 68.61 78.02 60.99 65.41 66.35 67.72 36.91 23.98 71.65 33.09 21.08 38.64 85.65 27.43 44.06 30.47 50.56 98.30 5.71 39.06 5.80 63.17 2.24 1.48 30.07 27.65 82.73 4.99 68.34 72.73 6.31 23.33 33.88 44.92 68.15 35.82 14.87 49.57 13.09 83.80 17.33 5.18 98.04 4.41 33.65 29.92 86.87 68.44 56.49 65.40 27.73 -60.03 62.06 63.10 48.95 82.42 62.32 75.28 81.87 55.62 92.16 82.66 82.06 1.57 93.15 95.95 8.88 96.09 96.31 1.84 25.73 53.11 17.52 9.62 53.39 11.70 65.21 31.01 68.66 28.27 83.05 48.22 75.90 45.34 62.18 48.36 92.82 58.31 34.39 47.34 71.10 12.15 92.53 4.23 23.64 36.24 26.02 26.90 78.96 44.51 78.53 30.78 54.25 15.71 4.05 58.63 76.33 24.76 15.72 55.91 44.48 59.50 76.57 85.46 8.53 30.80 23.09 18.71 52.17 76.27 7.46 43.78 15.30 26.46 38.15 21.07 30.92 32.83 23.11 16.75 82.55 56.70 41.10 15.51 78.02 76.58 36.29 59.73 43.48 39.52 63.45 71.79 95.16 99.01 10.83 48.31 41.35 37.27 10.24 37.71 2.68 -6.65 17.61 91.30 58.36 62.23 3.21 71.04 68.20 82.19 32.17 5.46 13.94 40.20 56.92 84.02 29.61 85.89 15.66 54.68 63.28 79.11 64.83 84.90 13.64 84.00 79.76 26.54 67.12 57.86 89.68 47.54 31.51 3.91 29.68 82.02 62.84 74.26 97.80 59.96 5.16 95.18 47.87 95.11 43.24 56.19 95.75 0.28 79.34 24.31 46.21 74.86 71.07 8.04 39.48 25.11 18.56 65.19 60.01 33.76 37.83 43.51 93.89 23.75 25.75 25.86 24.11 36.50 19.98 99.08 90.78 61.38 89.93 94.71 17.92 53.73 42.03 33.32 98.07 54.72 8.59 53.70 58.52 97.40 0.10 11.22 50.40 4.20 77.61 62.71 36.22 84.07 98.06 46.80 28.54 27.06 72.64 25.61 49.14 8.55 22.49 -82.72 40.08 38.60 26.04 39.69 33.73 82.23 19.08 26.98 64.35 95.57 43.70 5.92 4.27 47.49 27.62 31.58 29.75 36.92 74.46 72.94 82.95 87.10 71.69 69.44 47.82 71.76 6.91 9.58 36.34 2.49 33.97 28.65 65.56 32.13 31.12 86.14 24.77 38.31 53.15 34.33 83.37 28.71 50.25 0.14 70.60 31.69 98.34 62.24 45.19 27.46 95.59 21.19 78.52 4.68 12.15 63.01 58.10 8.15 28.59 45.67 35.73 38.20 91.72 63.20 71.72 82.57 63.79 67.34 36.93 36.90 16.19 15.48 91.35 67.05 14.38 56.36 46.11 56.56 6.35 16.27 98.08 79.47 66.22 20.81 38.06 71.98 93.80 96.88 35.56 72.96 94.63 65.38 81.96 85.15 56.86 66.92 31.54 96.66 31.26 -17.55 0.78 44.16 44.28 69.82 62.31 62.89 81.26 43.30 63.06 34.04 27.58 57.18 84.08 15.69 47.03 40.82 69.21 12.41 12.63 76.47 16.15 49.65 48.39 92.39 10.15 38.99 65.48 95.78 12.30 70.81 0.67 13.19 5.01 28.71 93.27 64.35 65.38 64.25 48.09 6.37 35.88 13.33 85.29 35.64 92.26 1.52 64.04 5.30 60.94 45.11 33.53 52.26 54.88 1.71 47.94 11.67 60.79 42.75 67.21 29.09 11.98 48.00 86.78 88.19 42.83 40.21 49.22 73.93 20.51 18.68 9.97 46.86 97.77 81.25 34.66 8.25 9.19 24.45 11.23 46.15 76.44 0.19 21.19 67.06 16.58 73.42 80.74 66.22 25.13 49.00 23.14 5.55 14.80 4.46 1.29 54.28 3.06 62.79 37.67 -51.61 80.77 4.25 44.68 47.70 63.40 40.07 59.38 78.00 18.46 19.96 88.56 37.77 3.04 52.86 98.17 92.55 0.28 68.51 2.09 91.25 14.03 65.61 69.78 15.33 42.56 34.41 66.42 26.03 26.98 94.60 74.24 61.96 28.27 45.27 16.77 20.14 31.49 25.00 38.51 58.80 55.50 74.06 56.10 27.94 69.69 54.82 9.44 87.98 38.76 26.61 62.31 22.13 39.50 13.97 96.79 34.53 40.38 21.57 4.45 78.95 9.57 97.32 64.62 22.34 29.62 13.50 61.58 49.15 66.64 28.86 37.38 80.15 5.87 51.88 77.56 16.46 11.75 34.20 56.43 60.32 75.49 71.12 35.63 71.81 82.21 74.64 22.33 15.56 39.60 50.28 96.11 93.53 28.22 38.77 49.92 21.88 68.77 68.81 31.90 -55.00 31.36 56.19 0.23 19.53 53.39 78.37 24.69 21.66 88.87 87.05 78.43 65.45 69.61 16.97 40.21 11.12 39.60 64.31 87.09 86.96 90.51 41.90 0.57 45.80 42.55 49.86 78.00 25.50 85.29 91.03 87.70 17.48 29.14 52.33 37.48 40.96 13.75 85.89 72.24 36.83 21.96 5.51 50.60 96.75 91.96 52.19 15.55 19.00 82.38 49.15 44.52 65.40 78.81 52.46 46.30 16.93 54.68 44.96 97.92 60.21 1.31 81.55 52.81 36.76 4.07 19.02 41.32 50.32 16.12 44.64 26.20 71.29 68.86 94.18 34.36 99.33 45.27 63.76 37.83 70.65 1.87 69.37 76.02 12.29 18.22 62.83 10.68 58.63 63.55 6.12 98.25 39.04 28.41 82.55 86.92 40.06 34.19 34.26 30.64 -36.85 26.16 79.87 8.36 8.76 10.89 22.46 12.95 78.03 31.66 2.46 85.02 98.98 39.13 14.15 81.96 71.89 80.81 47.11 81.87 40.75 60.05 82.03 62.99 76.71 78.60 86.68 82.15 45.01 94.42 41.09 22.39 84.87 95.75 88.27 92.66 33.61 25.34 69.28 12.64 23.85 27.54 97.54 48.98 19.89 75.92 10.60 10.68 29.70 74.47 54.61 24.82 79.48 84.89 99.97 74.04 55.89 40.33 34.37 81.03 35.49 29.59 52.30 45.48 27.97 26.72 4.24 98.09 11.81 71.20 7.01 45.65 64.37 20.63 12.47 72.06 75.18 21.82 42.35 59.70 56.40 12.30 2.28 7.80 79.98 58.88 63.41 13.19 54.49 40.91 58.27 92.57 38.05 39.48 73.03 74.64 68.57 14.03 80.03 30.75 -91.19 87.62 83.85 77.71 36.25 59.63 60.08 62.47 52.41 26.91 91.18 33.47 26.29 48.79 36.67 65.66 62.56 67.33 57.71 20.35 96.78 78.59 55.83 48.19 46.13 3.57 42.66 24.49 85.40 53.91 37.89 25.98 83.19 90.87 84.07 18.05 35.60 38.44 72.33 10.18 36.36 80.24 80.20 55.69 25.88 66.11 21.67 73.14 0.57 66.48 39.61 1.71 37.09 26.03 22.21 3.66 88.59 23.36 53.44 44.62 2.52 8.64 65.80 55.10 54.72 80.44 78.15 8.04 46.12 48.24 26.08 67.15 88.29 15.58 31.54 18.64 27.47 81.51 94.14 79.55 86.81 78.30 54.11 76.51 36.72 81.40 74.08 98.12 34.34 73.91 15.44 13.99 10.58 21.36 64.97 99.40 91.43 80.27 55.62 89.41 -53.25 75.52 9.57 40.31 47.51 26.91 83.39 53.96 95.23 99.96 39.99 95.99 53.77 81.07 26.60 37.34 0.35 88.41 58.56 26.50 1.54 30.88 58.47 71.31 92.39 59.67 59.78 64.06 91.22 97.44 66.22 22.50 90.21 11.09 59.59 68.65 13.49 35.80 10.61 19.32 65.59 74.14 93.24 57.77 2.26 40.85 34.75 21.89 79.06 61.73 63.53 50.61 98.48 7.45 28.31 95.00 66.01 16.44 75.98 32.79 65.40 77.30 7.28 17.56 74.10 98.10 67.29 51.54 10.04 28.66 32.34 0.50 66.34 26.41 25.17 96.25 93.98 34.38 38.17 61.49 75.87 71.76 96.04 8.91 59.44 47.90 36.05 69.07 22.84 62.19 62.60 18.01 22.98 55.03 22.82 51.10 63.37 8.46 80.98 42.81 -25.18 47.58 31.95 18.91 26.23 84.84 61.43 54.64 18.47 96.15 76.48 48.52 92.97 19.70 96.34 65.73 50.88 70.66 2.80 60.03 68.99 94.85 87.01 51.63 31.40 28.28 78.33 64.45 81.70 11.24 24.53 3.26 12.35 6.01 10.70 29.47 42.08 1.28 22.87 61.59 47.79 4.29 22.71 14.47 84.31 22.35 61.96 7.55 14.66 55.45 37.85 98.51 73.00 51.65 81.72 51.55 6.22 75.88 72.28 33.30 37.35 17.62 96.76 25.31 87.91 31.56 80.79 23.68 42.58 95.18 63.51 23.79 85.16 41.64 11.76 95.17 6.03 74.16 61.49 22.94 67.75 66.96 88.82 62.52 69.19 40.54 35.50 81.14 65.16 57.69 53.35 84.59 2.54 73.75 7.55 85.68 67.34 18.30 45.01 66.09 -10.01 7.29 1.52 31.99 82.10 30.02 85.24 74.71 83.54 17.47 70.99 34.94 26.61 34.29 38.44 57.45 76.74 96.60 83.28 60.15 68.79 37.13 52.98 83.45 0.44 52.46 89.98 7.18 4.34 5.25 15.84 80.66 11.87 97.54 92.22 21.37 26.20 90.19 14.47 39.61 56.10 40.54 81.76 1.70 51.91 96.47 53.30 82.98 38.04 25.06 96.27 87.82 44.05 80.45 80.84 46.13 87.05 21.84 82.17 70.01 67.24 77.27 90.27 91.15 64.64 32.53 36.73 45.14 77.56 85.74 36.42 8.28 42.60 89.76 99.52 80.71 46.55 95.44 93.95 31.90 36.35 15.32 55.66 33.60 54.53 4.15 21.45 13.22 34.85 63.95 24.46 92.19 5.07 71.72 66.82 58.90 93.15 10.77 74.70 27.77 -54.71 32.46 77.25 0.86 60.90 57.88 95.60 71.29 10.21 91.38 96.25 80.07 47.27 42.05 86.08 37.08 79.24 88.27 73.74 99.43 82.65 62.24 68.66 66.77 97.55 86.61 81.85 44.05 3.73 2.51 41.62 59.17 19.93 17.16 48.50 72.70 36.83 12.98 21.03 97.73 11.29 88.40 21.42 11.01 0.66 6.98 92.49 46.68 95.14 46.71 8.60 87.35 86.09 5.74 65.96 16.32 56.73 48.41 43.29 86.59 60.13 32.85 54.02 66.53 56.16 47.57 42.68 77.87 64.34 56.29 40.12 79.93 43.55 33.00 84.71 79.25 14.72 51.83 37.69 93.95 25.47 56.36 41.00 69.07 66.83 75.96 28.46 75.76 15.20 62.81 69.96 52.35 66.08 83.77 8.71 31.21 77.42 19.39 33.42 56.16 -98.12 12.47 98.76 3.74 81.20 42.67 97.95 30.98 58.75 4.24 96.29 37.22 59.53 87.63 42.50 89.24 42.79 19.35 32.47 52.96 53.14 14.23 44.25 26.11 96.90 33.83 55.30 45.52 19.36 44.75 85.11 86.37 4.77 44.05 49.68 70.82 48.16 98.62 13.97 49.78 83.80 33.88 70.37 35.29 73.52 4.95 21.07 98.17 49.48 29.94 0.84 98.39 31.97 13.98 83.39 8.13 80.44 93.16 13.46 61.00 76.37 19.07 32.54 73.77 43.29 94.09 93.57 85.93 87.15 37.33 63.90 77.79 31.19 10.63 67.25 0.64 86.27 14.31 51.57 36.60 35.99 99.29 24.76 25.74 75.02 98.35 43.74 88.75 8.01 4.99 98.89 57.45 78.29 35.31 18.65 26.79 72.58 11.26 61.70 22.28 -73.59 7.20 14.90 31.19 36.48 34.40 92.57 75.34 54.84 59.79 80.53 84.67 75.29 11.11 27.46 61.39 61.95 57.17 68.41 24.03 1.04 1.34 49.79 44.58 21.82 69.40 6.48 67.24 44.96 41.79 14.79 51.94 65.66 91.92 43.14 56.16 97.61 25.21 29.85 67.61 84.86 43.11 70.86 58.13 38.42 67.25 0.80 73.77 60.69 12.48 35.78 36.18 24.89 9.68 96.10 11.54 2.92 11.19 50.50 19.20 19.80 44.78 36.37 29.69 69.75 90.97 85.37 48.20 48.40 88.35 40.51 15.57 58.61 78.45 36.90 38.98 0.43 80.28 52.41 76.53 21.48 28.47 43.50 28.01 74.58 17.83 19.71 19.36 89.92 73.74 81.14 79.09 58.69 70.20 85.25 0.06 8.50 81.11 91.60 66.79 -96.56 31.49 12.83 22.60 9.84 45.79 29.04 35.21 56.10 17.40 72.21 76.62 74.84 32.86 6.88 17.66 65.08 18.00 58.78 16.34 19.24 51.10 27.93 64.44 71.11 2.78 19.05 3.21 40.04 19.09 55.90 94.77 89.21 72.57 82.69 69.64 28.40 53.45 18.33 48.41 34.28 66.46 83.44 85.37 10.25 4.98 66.60 79.30 49.92 75.45 70.27 88.32 73.86 63.95 93.88 65.41 33.29 58.05 63.38 75.86 80.51 73.07 75.61 76.82 43.51 46.19 9.11 18.73 64.67 59.75 38.28 79.25 28.58 16.65 15.33 1.63 59.87 2.99 89.95 24.95 32.36 4.31 19.89 40.25 26.37 20.06 36.36 99.17 60.52 1.01 65.95 38.18 63.38 26.59 40.90 47.08 6.61 55.43 76.64 84.31 -7.00 33.95 64.36 3.04 81.72 3.33 6.89 36.11 36.44 52.96 85.81 39.40 22.28 86.83 11.13 35.86 16.46 76.53 90.97 23.92 0.82 3.19 93.54 65.63 11.28 40.80 10.19 65.45 18.06 75.40 41.88 7.30 78.61 66.01 23.78 24.06 47.43 75.11 1.89 60.87 87.67 54.24 60.31 53.03 24.34 74.15 33.54 19.05 23.06 56.42 44.26 97.52 99.11 50.59 30.09 85.36 71.92 63.07 58.86 83.67 12.95 38.87 21.36 78.98 8.85 29.77 92.74 80.45 29.70 72.31 60.52 60.49 33.54 26.26 34.91 21.70 55.56 69.20 26.52 13.00 58.24 37.59 47.66 54.56 80.59 38.33 65.14 74.23 56.46 56.31 86.22 28.50 20.37 67.27 58.65 44.75 82.56 11.88 98.57 14.47 -61.28 62.01 73.16 25.51 46.60 79.22 22.87 94.20 93.22 39.37 99.78 80.16 32.32 17.24 21.39 53.18 75.30 5.85 48.91 8.72 71.44 13.60 32.61 32.67 50.92 22.32 57.91 81.20 17.78 45.05 13.11 68.75 15.28 46.87 76.37 41.24 83.73 65.64 22.35 72.93 20.17 83.49 98.32 53.65 39.56 72.68 26.81 36.74 6.94 62.17 72.19 74.69 64.40 49.27 21.26 31.22 19.61 69.62 28.40 5.68 73.33 32.48 52.86 34.30 85.21 48.84 32.60 45.23 96.55 41.75 99.27 68.47 47.37 2.25 19.91 47.31 43.34 31.10 30.89 59.00 45.77 53.49 53.36 28.04 43.33 44.41 20.52 29.50 70.69 34.01 97.08 4.42 80.82 41.91 14.80 21.43 11.58 96.84 41.34 52.50 -53.20 55.90 78.08 22.04 38.57 33.67 80.47 48.36 78.38 15.33 10.16 99.95 68.20 41.56 56.65 76.68 17.36 65.12 50.82 43.73 27.53 97.44 65.16 95.81 4.46 46.03 89.43 66.94 70.61 25.48 59.64 12.47 11.28 40.61 17.15 0.16 51.24 97.19 43.83 66.61 15.40 14.50 89.46 59.83 3.05 89.61 61.96 78.04 50.92 54.05 10.19 87.41 89.12 84.18 32.11 57.31 58.63 72.90 95.99 40.02 62.54 86.47 62.18 84.58 83.57 28.56 62.71 69.51 97.36 54.29 76.57 94.57 80.05 62.60 74.89 57.41 54.18 25.34 8.27 10.54 10.41 4.67 76.54 92.81 18.18 21.77 58.21 49.44 67.47 52.74 80.21 31.32 45.52 26.19 43.74 22.70 58.90 73.25 56.00 32.00 -41.81 83.36 18.39 26.47 32.08 58.64 45.54 59.19 40.46 76.74 48.59 64.20 25.89 90.23 5.67 99.87 61.71 94.40 66.99 89.56 41.08 5.50 6.33 0.20 8.63 22.97 57.82 55.81 75.13 22.54 33.27 50.16 13.28 82.08 67.43 85.03 96.99 70.72 19.07 62.90 12.76 53.08 86.28 81.61 70.89 33.08 14.43 31.11 75.91 45.05 13.08 70.82 1.48 97.20 88.94 1.44 92.92 70.62 62.47 17.83 83.32 70.58 52.43 20.89 33.77 81.92 91.89 80.23 81.88 57.86 11.55 87.83 35.80 39.28 94.41 46.44 48.96 44.70 8.60 20.68 16.88 26.35 99.86 92.16 59.24 59.99 4.29 61.38 92.10 57.14 89.86 25.73 44.86 55.49 30.17 52.01 52.57 19.14 34.88 97.18 -93.31 93.27 68.68 67.87 96.42 94.22 97.89 54.62 38.59 20.44 66.11 62.13 23.28 4.81 79.71 49.19 30.58 38.29 3.06 58.99 20.10 1.22 28.79 91.94 1.23 95.05 38.88 13.52 82.09 29.21 47.72 10.46 25.27 54.68 80.25 54.50 60.32 47.81 73.72 67.61 46.67 85.41 81.97 81.00 75.52 73.03 91.08 63.15 33.45 83.54 12.04 40.45 88.62 71.70 10.23 97.18 38.60 48.39 31.20 27.44 23.51 62.97 78.48 27.11 59.94 44.84 94.75 74.29 0.15 73.92 56.40 6.04 71.40 98.50 96.11 0.15 99.68 10.62 97.92 40.09 22.87 57.41 5.06 9.81 12.39 3.92 49.81 39.32 97.91 22.28 34.04 24.25 41.51 6.44 12.30 63.15 55.86 26.38 70.03 84.11 -6.77 48.91 32.37 34.38 59.78 26.55 55.64 42.61 34.43 65.44 25.68 42.52 19.89 97.59 58.22 56.50 13.66 77.89 79.61 30.70 4.92 89.59 80.20 42.26 70.97 50.91 3.43 48.05 35.41 0.61 65.40 91.97 88.01 96.59 3.61 89.23 68.42 81.58 96.10 35.21 52.01 5.04 1.39 51.31 56.86 83.50 68.94 28.36 56.66 29.63 37.61 60.49 47.88 69.69 49.93 77.31 46.43 69.84 56.06 85.01 57.13 61.20 74.88 44.80 54.30 72.91 81.71 82.04 51.53 55.45 54.04 7.62 5.29 40.06 50.35 55.22 31.74 83.89 52.92 67.85 63.72 13.29 42.35 87.94 28.13 51.40 71.73 24.24 68.67 86.09 37.25 33.16 51.21 81.29 86.92 65.57 2.05 95.86 92.45 27.19 -8.12 28.58 45.80 31.50 89.26 29.36 88.33 70.71 33.74 47.96 86.71 2.12 2.21 78.97 37.15 73.14 27.27 57.22 97.16 80.98 13.93 70.67 60.96 9.79 38.30 20.27 68.14 11.30 89.35 10.45 31.45 93.17 79.69 39.02 43.51 98.22 84.53 45.12 39.11 41.87 79.03 46.29 82.30 14.43 88.69 83.84 26.66 51.54 23.00 71.59 33.67 88.18 1.30 28.76 39.64 79.09 8.35 89.07 40.24 9.53 18.16 61.68 59.22 22.36 52.68 28.55 35.87 96.60 9.81 89.39 0.77 9.65 46.59 69.25 91.55 69.18 26.81 38.56 98.53 26.71 94.18 92.61 29.56 21.77 63.50 27.41 10.94 86.68 73.24 54.14 93.00 38.87 87.47 53.25 53.83 75.75 40.86 10.78 36.67 56.13 -2.41 36.41 37.87 82.97 57.33 46.79 49.31 62.68 43.40 59.92 84.37 40.86 7.20 58.38 86.89 46.68 9.76 8.50 45.00 78.93 18.08 73.79 17.93 37.50 98.77 98.90 48.17 89.27 60.67 59.04 14.67 82.13 78.05 90.82 72.55 70.00 35.76 3.03 36.37 60.35 1.63 37.77 60.18 69.40 2.83 68.22 2.25 80.71 45.66 42.79 89.84 52.49 65.06 63.01 25.69 84.13 79.50 30.20 22.19 65.30 18.23 32.20 73.69 21.97 58.44 17.43 20.20 44.17 12.24 71.80 10.13 54.67 13.28 87.09 92.00 42.45 94.18 83.10 23.83 67.35 55.29 36.51 19.83 70.22 64.90 39.78 22.95 72.30 80.79 98.72 33.26 70.33 26.52 19.52 48.30 57.57 44.93 48.30 20.65 73.82 -59.05 98.19 18.00 41.36 70.97 51.69 45.86 80.28 58.28 71.73 69.58 4.86 19.76 36.01 77.13 28.06 80.45 27.87 31.44 75.28 93.35 81.30 49.17 8.42 52.40 90.98 64.86 72.91 19.67 0.54 69.12 47.76 58.71 98.62 98.26 83.59 69.16 20.02 36.94 87.82 35.33 20.82 68.78 18.05 33.99 26.27 88.25 4.57 52.63 42.87 68.87 88.22 9.55 8.53 28.09 74.96 97.38 45.60 15.04 4.03 91.77 54.04 97.60 95.96 76.09 74.60 2.52 55.78 2.18 20.24 33.38 60.87 60.45 89.19 35.36 70.09 26.14 82.80 19.57 41.62 9.90 51.13 79.79 58.84 96.34 31.41 36.89 23.38 87.84 33.59 81.43 18.82 82.15 84.28 68.66 85.48 71.92 4.03 77.30 48.28 -72.75 64.63 11.64 95.63 57.86 26.68 85.54 87.52 77.24 22.19 92.82 67.08 72.84 27.71 11.82 88.14 87.44 90.11 28.78 24.52 85.93 0.05 24.01 95.35 25.46 7.78 17.33 87.61 49.15 75.26 14.96 60.46 30.65 59.45 6.00 48.49 97.30 77.47 91.17 53.69 44.94 78.68 50.77 81.47 38.62 69.41 83.59 7.31 96.35 5.82 96.39 66.45 84.94 9.08 27.12 98.01 19.34 0.68 72.61 22.37 60.87 40.18 76.03 73.18 87.19 71.11 28.41 40.73 84.57 77.71 45.23 83.69 70.78 28.12 55.39 78.65 5.70 73.34 59.19 9.87 52.91 6.51 59.38 66.47 91.38 16.66 43.79 33.14 62.53 54.39 62.66 53.39 85.50 30.53 99.12 29.83 47.19 15.58 37.32 62.73 -36.58 98.54 74.06 67.66 93.03 70.44 69.64 54.76 66.55 63.34 52.21 86.24 48.31 84.55 53.27 62.07 16.58 44.79 73.95 87.57 24.75 79.79 43.39 30.34 61.42 44.75 56.87 42.50 7.56 98.26 31.43 23.70 91.79 4.71 30.93 29.72 83.27 77.79 31.62 36.59 68.99 14.84 70.90 14.39 34.39 87.07 38.59 47.24 30.09 87.04 70.79 7.82 50.57 43.09 89.40 13.79 36.54 65.28 46.88 86.36 42.06 63.39 53.65 79.35 50.94 19.50 84.96 47.21 5.91 51.83 4.90 21.91 38.32 10.83 5.77 27.56 77.31 56.00 50.75 3.14 88.48 59.50 19.17 61.51 34.71 90.41 91.62 80.72 8.33 53.63 24.32 38.01 72.57 33.77 68.53 76.38 30.53 31.20 64.28 20.10 -50.48 83.22 45.00 58.97 74.87 45.21 62.59 44.94 23.57 15.00 43.07 88.42 52.77 39.58 71.92 9.08 90.95 2.63 47.62 8.16 31.00 28.89 47.40 74.15 23.01 84.40 10.24 97.30 96.67 45.35 92.33 91.51 1.59 5.80 49.72 69.05 85.45 65.24 84.76 26.89 22.09 33.05 92.33 95.82 94.16 63.22 13.58 87.41 47.82 26.15 12.00 33.76 3.85 76.51 28.68 68.99 41.23 15.16 81.95 36.10 36.83 87.07 55.36 51.77 72.33 56.39 24.87 37.14 4.86 84.41 57.90 79.33 68.93 73.13 46.93 12.21 63.94 74.48 7.87 30.63 3.31 71.54 83.38 55.27 84.74 87.68 8.22 75.90 47.00 45.37 9.20 72.70 86.23 34.56 12.60 4.42 44.50 86.12 82.31 16.78 -33.87 42.99 52.81 4.11 71.93 90.94 76.52 41.21 22.69 68.14 31.25 93.26 62.26 80.97 52.38 80.67 88.82 52.70 61.42 68.12 5.89 21.09 89.87 97.32 12.52 87.14 87.88 31.64 15.27 36.19 28.32 47.78 20.31 59.85 55.97 40.06 35.87 32.78 25.31 5.24 49.30 8.73 24.08 60.17 95.11 7.39 79.28 92.88 73.23 6.47 94.22 69.95 59.56 53.38 96.92 69.09 9.67 55.22 48.04 56.75 52.31 46.34 35.85 78.71 80.86 60.28 98.53 52.31 54.22 99.92 5.25 99.84 66.10 23.42 72.47 5.58 14.62 43.95 54.09 85.57 42.90 42.66 33.62 1.78 9.21 47.68 42.83 96.82 47.98 94.83 95.71 50.10 61.44 10.08 23.34 46.40 30.64 84.91 43.57 34.26 -31.54 41.88 35.23 4.76 93.88 52.11 4.88 68.16 50.93 11.84 99.06 80.54 16.97 83.40 16.19 47.41 32.89 10.89 8.51 39.07 39.49 91.04 91.55 12.02 47.12 51.56 26.46 29.94 17.49 47.84 96.24 39.57 49.57 48.45 88.52 98.83 66.34 39.85 53.98 63.91 57.65 43.49 41.93 50.29 1.27 31.60 72.91 79.66 29.40 57.06 2.81 63.95 26.52 61.18 24.98 93.94 45.66 71.17 59.29 52.17 62.75 37.37 74.89 61.27 91.18 78.66 37.19 12.88 41.63 57.73 98.91 1.80 4.28 42.02 96.12 65.77 3.53 45.52 37.25 56.95 15.97 31.40 29.43 46.50 0.10 44.03 74.54 39.69 77.20 52.92 60.91 70.73 48.42 96.46 17.85 42.95 26.58 54.19 55.00 39.31 -73.04 84.04 70.48 92.13 66.71 96.03 62.23 60.85 91.13 98.03 33.96 48.88 99.21 71.26 63.37 74.05 85.13 0.97 49.55 37.22 45.25 39.85 68.49 49.84 71.34 26.37 22.09 55.95 95.40 25.50 7.12 86.49 2.65 88.87 26.60 59.69 78.90 34.29 75.45 17.10 96.94 11.01 61.63 10.81 11.89 57.40 8.93 34.34 83.08 11.09 32.37 19.02 97.06 16.49 2.09 96.99 16.73 75.56 99.28 61.20 62.78 74.17 37.82 26.97 17.59 60.13 53.60 8.08 38.70 65.45 48.98 95.06 62.08 79.31 67.56 3.55 80.86 84.55 19.80 24.28 81.27 1.27 9.98 34.57 83.11 96.93 26.31 18.40 3.07 27.05 22.90 29.80 49.00 13.34 14.28 23.84 60.74 76.70 55.19 45.37 -45.67 33.27 71.84 44.50 34.94 69.60 58.92 1.36 64.52 78.11 94.96 96.10 29.93 84.27 34.45 20.38 61.95 31.79 59.70 43.49 72.33 18.34 31.91 32.77 42.84 0.03 38.38 78.13 51.97 87.40 74.01 13.18 11.69 17.40 98.58 22.77 56.49 91.78 63.59 45.88 8.33 95.24 82.77 74.87 49.37 14.05 42.79 78.22 22.52 69.22 40.87 99.14 90.42 69.78 4.37 32.56 15.67 67.03 30.58 20.61 41.23 64.11 2.99 34.48 4.24 62.05 74.10 28.89 0.67 30.31 98.75 87.13 89.33 30.41 13.30 62.47 44.27 34.31 43.60 72.38 10.35 99.19 67.47 78.32 39.67 18.00 14.13 49.55 89.12 7.03 12.54 7.02 46.58 59.07 22.24 70.34 72.50 6.60 48.99 24.98 -15.15 29.45 37.60 27.58 12.01 13.29 54.01 90.05 95.25 96.18 94.31 56.67 69.87 17.44 94.57 43.26 27.86 76.19 81.34 50.34 39.46 37.30 20.00 95.27 24.02 77.45 35.77 13.61 27.33 24.52 56.45 29.10 88.06 27.10 60.31 99.74 26.58 86.10 63.67 14.89 69.65 75.89 90.21 18.01 42.59 14.01 4.12 4.70 13.32 24.39 82.62 7.75 15.88 52.82 87.79 54.93 53.00 76.60 9.92 92.81 27.05 52.03 44.70 89.50 63.65 74.23 76.52 1.85 13.07 0.79 60.34 75.94 88.42 46.15 41.44 85.59 7.44 70.70 92.13 31.99 87.41 19.90 53.92 95.34 89.14 73.64 15.13 48.56 84.72 37.98 23.69 22.81 64.69 96.68 29.80 96.91 44.98 95.40 36.28 39.21 -46.22 53.42 28.75 80.70 16.72 26.89 3.71 1.20 42.66 18.06 63.67 24.90 19.60 90.85 93.98 57.67 28.73 96.19 82.27 81.71 86.74 51.45 58.60 70.70 61.33 51.48 41.20 93.09 23.60 13.76 62.58 25.38 32.79 91.84 57.97 69.35 65.49 29.86 43.45 40.00 77.34 33.98 33.28 13.73 56.88 39.88 96.90 84.10 90.35 84.87 34.37 16.26 81.50 14.10 51.92 52.95 43.91 93.97 12.91 17.45 41.68 47.85 53.32 35.58 66.40 56.38 17.71 30.40 53.63 65.64 66.41 54.73 98.73 69.92 22.90 86.49 45.31 85.87 69.06 90.10 11.09 21.63 61.30 40.40 53.46 39.25 54.13 98.72 68.43 54.98 39.65 37.35 57.43 44.13 56.35 59.09 67.99 47.21 81.78 74.49 -9.53 83.40 64.38 78.87 96.69 7.09 76.51 82.55 48.42 69.55 95.81 16.56 84.98 18.10 57.13 55.84 21.35 51.53 54.56 24.04 82.86 16.02 39.94 75.32 13.66 97.27 79.77 42.89 67.53 2.15 25.84 53.63 41.85 28.39 51.55 51.17 90.51 74.45 47.07 60.09 76.74 6.01 57.65 23.07 20.45 1.77 32.37 87.88 27.42 80.03 75.26 18.80 70.17 90.77 51.73 12.30 46.29 40.80 81.48 26.77 66.97 55.88 76.32 44.33 8.64 41.83 61.04 30.51 68.75 48.59 11.78 18.65 9.49 72.51 63.73 37.32 90.20 94.70 16.25 39.73 63.60 33.51 27.79 64.62 65.44 92.01 98.97 12.96 97.77 97.56 40.23 88.66 48.13 19.99 61.02 31.69 47.71 53.53 93.40 97.11 -95.63 61.70 30.96 84.43 36.26 11.79 29.19 96.93 67.19 61.71 58.50 12.80 85.73 2.59 12.31 96.20 46.17 22.06 40.39 34.38 2.66 88.78 77.51 98.00 95.42 80.82 14.19 62.55 93.26 4.92 79.56 69.14 67.84 21.54 79.82 77.24 25.60 67.37 17.40 17.84 51.19 73.30 51.60 72.15 65.86 92.47 31.36 36.48 62.64 5.71 82.91 78.20 82.80 42.53 65.87 39.51 5.25 22.40 99.94 49.69 42.35 77.32 35.65 53.46 2.19 95.00 11.61 63.33 99.71 33.44 67.96 68.67 94.96 6.53 35.51 26.66 43.36 5.07 11.23 85.95 64.17 56.94 79.18 34.26 69.22 0.97 50.28 75.82 89.51 8.83 9.03 41.23 56.15 27.18 71.35 7.70 50.50 74.34 61.68 62.89 -22.25 75.28 88.13 20.26 31.99 76.43 58.74 10.36 88.49 78.16 91.31 47.85 47.03 65.53 20.74 13.07 24.01 81.37 71.17 26.66 6.28 51.43 79.01 60.30 54.93 14.94 70.09 2.08 51.69 25.09 36.98 65.62 52.96 9.07 13.74 24.33 96.14 20.15 39.32 70.83 98.24 57.69 63.43 15.60 22.52 67.32 55.95 22.68 33.72 29.54 62.52 98.08 20.93 76.77 71.67 11.27 35.12 27.01 63.94 23.31 41.48 37.77 91.58 70.71 15.34 90.02 41.30 80.24 32.70 7.96 54.17 2.00 92.42 12.75 79.20 20.35 58.88 1.19 17.34 6.54 26.01 32.01 9.66 66.50 15.61 84.60 84.20 83.57 86.38 41.29 89.19 19.35 85.66 0.65 2.68 22.26 65.41 29.72 22.69 33.14 -26.57 46.32 0.26 13.35 8.96 56.75 67.44 22.76 78.37 3.35 42.58 25.36 69.91 80.96 76.75 37.39 49.57 88.39 39.37 28.83 27.80 47.31 57.21 12.91 68.84 56.63 98.11 46.98 10.57 62.48 5.57 90.07 43.77 18.23 48.77 1.15 1.52 17.08 7.66 97.16 43.49 48.35 56.01 81.69 88.71 76.24 58.57 70.73 91.19 32.26 24.60 60.84 89.34 66.39 65.42 9.46 65.74 82.33 60.77 48.40 80.92 63.91 30.64 44.35 55.48 56.12 63.55 70.34 88.74 55.65 67.75 6.39 82.80 50.81 85.93 23.53 73.73 12.61 71.85 70.76 31.45 57.14 71.51 88.03 92.97 16.94 9.35 70.20 9.10 92.91 90.29 6.13 67.88 13.65 82.36 84.24 37.32 66.13 20.10 69.15 -33.15 82.63 90.98 87.21 97.04 2.64 74.04 5.73 54.07 40.33 53.46 67.82 37.78 38.10 20.78 37.11 65.69 0.17 96.96 90.85 88.18 57.74 54.92 34.38 41.84 0.65 92.44 53.51 47.00 95.74 7.32 69.29 85.94 98.78 67.29 69.97 75.86 63.44 47.33 95.40 91.35 1.25 1.54 77.42 97.06 53.15 34.83 43.63 64.26 14.58 97.33 36.43 72.86 61.42 84.33 44.20 57.71 91.86 89.96 36.34 29.54 88.06 42.02 24.22 65.92 66.91 82.93 3.52 81.69 38.30 0.81 19.99 84.83 89.12 31.81 70.78 43.78 72.37 56.09 20.01 5.15 8.82 12.36 67.94 6.57 96.31 63.30 32.58 73.52 71.97 68.06 92.99 93.83 73.48 77.08 96.55 79.23 80.01 3.44 7.23 -34.84 83.44 64.59 1.27 9.83 36.48 37.19 23.23 53.98 50.76 42.50 27.82 74.03 27.58 60.78 53.25 52.59 49.07 35.51 37.56 73.44 75.91 68.17 41.93 95.77 44.35 58.88 71.33 38.03 80.64 17.28 16.91 3.87 55.27 89.61 70.85 30.86 7.10 62.44 43.37 22.24 73.94 34.95 18.56 16.34 49.54 91.27 13.45 42.96 63.74 64.10 43.87 55.22 44.45 37.31 1.93 82.41 45.45 83.21 91.57 74.17 61.43 31.18 78.00 40.72 53.29 84.98 46.07 90.67 58.60 29.52 29.09 43.95 36.29 46.06 50.02 20.46 8.61 77.65 2.07 49.97 32.59 60.56 57.15 23.07 86.56 49.24 1.00 80.63 83.45 60.48 36.67 50.20 15.37 87.28 43.08 17.44 79.93 32.79 39.62 -85.41 8.23 19.96 12.16 75.19 78.90 23.00 35.04 91.71 34.35 71.56 83.36 68.20 55.68 20.98 41.44 74.24 69.50 51.68 41.34 33.71 12.33 58.48 3.34 42.39 98.86 34.11 30.06 64.72 63.40 89.88 23.13 17.55 48.96 70.37 97.43 77.41 14.65 77.17 45.23 57.10 67.84 25.35 59.02 32.07 34.27 46.83 87.11 84.69 74.89 57.58 63.47 13.49 33.87 79.09 16.61 37.64 58.53 54.31 4.72 43.38 38.00 18.84 33.53 61.13 93.62 96.65 73.15 22.22 5.92 63.39 90.43 48.13 73.17 92.70 63.76 78.40 80.20 78.09 7.74 72.04 22.45 3.30 77.25 10.47 83.47 46.97 9.06 85.59 47.40 25.11 60.43 64.90 36.81 50.75 89.59 72.91 91.93 83.50 33.61 -82.26 45.55 67.06 82.14 51.02 45.12 18.64 31.59 78.03 83.90 11.62 77.03 39.64 3.32 96.88 96.37 61.09 73.61 73.45 52.74 77.64 65.29 86.19 10.37 11.40 17.15 32.00 83.33 9.92 39.93 81.85 41.11 13.03 3.60 14.84 36.72 76.84 74.34 56.00 67.17 88.59 68.78 59.13 9.02 78.26 14.55 49.24 7.53 30.05 16.24 42.46 33.15 25.35 17.68 27.40 86.70 17.10 36.84 8.63 5.83 5.71 58.93 7.47 72.67 10.55 55.70 82.63 0.44 29.83 32.52 64.40 49.97 51.78 34.36 37.45 94.35 35.96 32.88 88.99 22.75 83.84 75.51 82.00 1.48 65.84 92.16 23.61 23.02 73.97 15.29 36.29 95.36 51.78 66.83 52.42 28.96 3.04 87.57 87.45 21.29 -59.83 56.23 22.21 74.66 47.49 58.21 33.02 35.73 81.46 47.03 64.81 9.76 77.37 66.96 69.58 87.53 60.69 13.32 2.42 66.63 14.90 52.54 49.64 2.12 3.23 68.16 61.78 83.29 97.78 67.49 95.40 28.99 23.13 83.31 22.31 65.15 93.59 2.97 47.72 23.39 91.66 54.28 30.45 13.12 49.00 48.84 47.51 25.41 56.95 57.53 88.42 8.15 49.26 40.43 99.00 63.33 66.09 19.21 82.94 88.00 51.15 43.26 84.46 63.12 56.84 94.85 80.63 83.92 58.42 64.77 42.28 80.96 42.16 87.77 87.02 11.53 54.19 72.08 32.55 94.69 79.22 96.61 47.59 38.50 22.88 52.25 42.74 48.39 89.43 58.95 63.94 53.22 77.93 56.80 23.34 16.60 83.46 56.80 22.18 49.83 -82.42 96.59 89.50 71.20 71.85 66.79 34.79 39.86 4.58 44.21 94.26 69.18 98.54 88.22 84.66 72.58 50.90 90.25 62.58 25.57 60.09 92.05 4.60 47.03 77.09 71.35 81.54 11.73 86.34 78.94 86.19 8.59 0.36 65.61 38.26 63.55 78.04 61.51 8.33 43.06 5.55 41.20 83.01 56.96 71.38 16.71 75.63 47.76 70.33 27.03 81.90 68.15 70.29 29.82 84.45 19.92 49.98 46.75 1.82 85.21 74.34 1.02 70.59 18.24 77.76 18.01 68.91 10.37 91.17 34.05 37.14 76.25 21.39 42.51 45.92 5.86 41.96 21.29 68.43 99.03 36.53 96.79 30.74 18.23 82.21 76.22 42.67 49.77 54.88 49.31 88.19 92.66 47.65 18.48 94.04 66.40 37.34 17.63 27.41 4.93 -54.32 70.04 39.83 81.88 16.74 10.09 49.27 82.78 47.91 16.74 99.33 60.26 47.53 93.74 76.40 96.02 75.27 7.90 91.36 12.45 15.09 58.94 9.42 64.31 29.67 45.15 59.72 65.40 22.10 73.01 90.32 42.92 39.26 83.86 80.37 42.60 34.45 45.69 76.97 90.02 68.51 7.67 12.39 45.14 73.65 39.28 47.24 62.53 41.02 42.84 23.91 38.93 63.47 46.04 72.79 39.25 79.53 53.04 82.66 31.84 46.38 34.25 54.39 70.75 50.67 23.80 18.83 63.67 23.23 46.31 67.51 50.77 54.83 52.32 17.61 99.87 43.91 52.39 33.35 49.19 55.24 53.41 43.73 87.87 76.45 90.45 23.70 16.59 69.78 7.62 10.36 26.78 82.87 18.78 22.05 22.35 16.61 3.46 22.25 64.55 -30.46 18.51 50.10 91.94 56.35 48.93 94.56 55.39 24.07 46.67 48.13 50.38 50.78 72.10 36.53 84.85 85.84 73.17 84.02 65.33 94.59 80.33 49.65 97.53 18.35 47.65 0.94 80.49 59.09 93.99 6.92 42.39 34.55 89.26 99.50 56.86 20.52 38.19 20.69 86.49 0.64 72.45 13.52 28.43 4.08 59.35 36.02 78.53 3.56 14.34 48.29 77.71 72.94 30.65 7.34 89.01 68.86 35.87 41.99 37.39 79.80 3.23 57.88 51.26 81.16 94.52 51.80 67.10 46.08 12.35 97.73 75.07 17.63 92.77 82.63 52.95 56.77 43.45 93.97 41.36 37.21 38.78 59.87 66.22 46.28 24.29 56.13 27.35 9.74 84.83 7.45 71.07 41.54 16.68 35.18 59.52 98.66 30.53 50.33 13.84 -10.59 13.77 14.81 40.05 27.49 13.22 35.26 86.33 28.26 14.03 3.49 66.76 51.31 21.95 2.19 56.29 3.20 79.23 27.33 7.56 92.78 65.69 37.59 90.44 75.68 98.94 4.76 97.95 32.81 7.38 36.40 10.03 56.18 32.48 58.70 42.71 62.09 50.21 29.92 33.85 25.37 64.99 11.50 11.35 24.17 67.16 45.70 89.46 47.92 30.50 3.49 15.84 83.61 31.51 73.70 22.68 24.25 54.15 54.32 13.38 38.62 63.47 62.85 31.27 79.57 15.09 72.56 42.99 54.96 36.58 68.15 22.57 86.90 1.13 39.09 86.77 57.71 75.60 65.02 69.68 1.40 57.00 0.77 99.43 44.07 22.05 39.02 26.36 69.22 27.16 18.44 8.22 5.86 57.00 27.81 87.99 14.49 54.61 22.79 9.56 -9.20 49.94 59.27 48.40 45.09 95.19 83.41 60.81 55.94 17.59 53.38 78.92 53.02 83.54 79.68 5.08 8.52 96.27 16.47 42.58 59.15 71.01 33.08 32.81 56.43 69.86 52.51 3.40 44.68 5.59 15.09 1.46 88.02 23.20 10.71 0.83 19.42 85.67 82.79 34.13 36.39 6.04 38.25 3.28 80.56 60.60 41.71 42.31 96.50 41.78 23.04 76.53 17.00 68.06 63.72 44.95 32.01 81.50 28.76 6.50 72.57 90.25 33.84 56.81 25.77 75.77 35.37 40.24 2.53 42.33 46.57 24.21 26.74 55.92 62.64 63.20 19.60 49.06 67.41 30.18 92.27 17.80 74.37 37.80 20.36 56.23 45.93 34.12 57.51 25.02 41.87 41.62 15.63 97.74 6.65 85.07 34.79 68.49 37.64 11.77 -29.43 65.65 87.88 66.06 14.23 69.20 94.62 24.54 22.76 81.61 11.84 37.20 98.56 77.19 54.11 76.49 11.76 17.34 30.57 57.83 33.67 87.82 94.31 69.99 34.21 63.89 84.02 32.12 71.92 74.98 67.82 19.05 77.06 56.13 68.15 87.45 1.93 80.31 55.51 18.57 75.28 95.50 25.02 51.00 37.40 69.21 74.17 2.15 46.30 67.15 78.40 76.52 45.66 83.89 69.34 1.56 8.76 6.71 97.06 72.82 48.07 61.87 95.73 24.96 14.27 61.72 44.90 33.50 72.80 1.50 42.20 77.61 22.63 14.12 45.97 5.36 98.83 34.87 19.51 88.56 48.55 88.81 63.99 17.71 4.30 37.84 83.12 80.28 85.93 82.44 26.07 29.39 49.12 57.64 72.18 22.18 5.21 59.42 81.67 46.65 -1.40 48.48 77.57 48.15 36.43 16.88 65.88 62.65 96.07 49.25 83.07 31.35 18.91 26.36 79.52 1.06 3.00 23.54 3.76 46.62 94.41 93.60 11.56 11.09 6.23 91.62 74.17 16.01 47.04 43.79 72.49 82.28 6.53 84.68 60.44 57.66 18.60 51.35 58.25 96.32 13.14 61.05 0.18 80.59 34.89 66.32 85.67 91.01 9.87 32.28 27.10 81.67 59.77 8.95 7.67 91.06 82.43 40.18 92.13 6.06 92.68 43.89 46.91 41.61 35.30 94.48 18.27 25.56 59.64 9.70 24.54 3.78 6.96 11.35 66.97 86.25 15.91 78.64 29.01 60.24 2.13 76.37 6.28 49.26 31.25 72.36 56.77 57.45 13.13 49.82 88.67 96.49 84.72 73.83 87.29 67.62 24.42 45.42 38.01 66.19 -9.50 84.85 30.86 60.59 27.34 54.77 90.43 73.48 87.77 71.44 91.76 24.35 24.39 9.24 79.67 75.80 12.41 19.44 76.72 89.05 47.72 50.46 3.19 31.20 88.28 60.64 75.30 96.28 70.29 12.05 86.88 23.44 95.20 81.09 94.74 16.59 20.75 81.00 97.04 15.73 64.10 68.53 12.38 69.08 52.52 22.23 52.66 58.23 33.96 97.14 31.06 44.49 56.78 30.42 92.51 47.52 47.40 53.61 78.87 46.83 26.84 55.40 58.63 41.94 23.87 26.91 85.79 94.84 52.41 5.38 56.68 36.74 24.91 54.04 79.78 85.86 19.51 95.46 89.14 38.70 15.90 86.02 86.32 67.87 82.25 0.74 48.46 77.88 0.75 14.41 54.09 97.66 26.86 26.23 32.58 76.73 23.02 49.45 60.54 44.94 -91.50 94.40 24.92 93.02 25.42 58.54 4.96 94.77 19.36 94.18 74.18 59.57 88.31 32.24 25.34 17.07 50.14 31.62 38.17 57.88 19.94 53.40 83.64 62.90 86.43 3.78 83.88 33.72 48.54 57.23 46.94 43.45 72.38 98.48 63.44 57.93 2.38 90.59 75.45 74.79 84.81 71.12 97.93 21.52 7.21 90.96 5.21 54.79 43.97 64.46 3.57 84.46 89.75 71.14 85.50 18.71 17.61 83.01 40.09 48.91 79.08 39.62 15.78 28.61 69.11 5.38 68.48 42.71 77.08 37.11 85.04 4.69 28.25 86.84 93.63 31.31 19.93 28.68 77.64 71.58 38.34 19.19 72.94 70.57 63.07 31.69 56.47 43.98 66.01 1.23 98.53 3.86 6.19 21.15 74.65 86.75 14.55 65.80 80.04 10.32 -31.26 19.58 62.48 36.32 65.12 4.26 23.50 13.48 89.45 3.78 16.06 13.78 21.64 40.94 28.16 36.13 12.20 62.63 61.76 8.61 83.58 85.54 38.91 43.56 68.67 49.52 92.70 57.82 59.07 88.76 68.11 28.63 60.18 95.66 24.42 22.94 89.49 54.30 94.21 42.19 62.48 98.61 72.25 40.21 71.03 39.14 20.87 69.77 56.68 85.31 77.78 2.44 51.77 6.40 93.43 64.88 27.21 64.29 78.54 21.23 13.14 66.63 3.85 8.67 45.46 12.93 97.76 80.71 37.84 8.45 19.30 22.54 50.09 32.32 41.77 95.09 35.76 2.49 50.13 71.44 64.97 26.14 24.16 3.43 49.52 24.45 13.45 11.40 17.94 50.25 95.05 10.64 15.05 46.31 16.87 76.39 64.72 27.11 97.92 56.02 -89.16 7.71 3.88 4.23 1.51 71.72 93.56 83.72 0.28 63.13 5.28 23.06 58.74 32.71 84.69 11.52 70.73 27.01 35.10 62.70 39.57 13.71 0.93 81.21 24.49 54.72 65.60 94.63 17.63 42.64 49.24 47.18 42.23 56.89 92.40 46.15 88.12 93.41 7.49 31.92 65.04 3.22 7.70 39.82 86.02 12.89 16.54 28.30 12.98 0.27 45.86 4.13 39.44 83.46 61.34 79.44 82.36 47.71 72.02 11.80 27.21 6.08 68.45 9.52 7.29 12.26 14.26 70.38 15.98 83.43 43.40 56.32 67.01 85.51 60.41 99.94 9.06 10.24 76.03 84.76 14.87 90.26 27.09 79.71 92.71 12.11 65.54 64.12 59.17 39.16 29.17 14.12 45.82 45.85 27.91 90.64 10.61 28.73 19.90 54.02 -52.55 54.01 24.26 81.07 72.35 25.96 46.86 46.41 9.72 85.47 97.54 24.51 30.27 60.63 82.97 53.01 99.23 38.09 35.12 44.58 48.73 97.27 32.63 27.81 31.17 78.76 13.06 80.83 57.86 74.82 27.98 69.34 93.47 64.35 23.92 69.30 8.38 66.40 44.92 82.68 56.98 39.65 46.11 78.75 60.67 77.82 6.52 74.43 61.78 53.27 39.44 14.95 2.31 17.22 60.02 66.48 46.86 61.78 5.08 49.53 30.41 51.60 17.30 34.92 51.83 14.76 3.73 81.80 87.08 2.98 0.26 4.58 72.60 96.31 43.09 42.18 54.61 98.95 43.13 71.59 19.97 79.52 63.19 22.24 44.61 24.66 71.69 56.59 32.19 15.21 40.92 0.21 64.58 46.29 80.11 92.18 44.77 44.97 66.10 11.95 -27.04 74.41 4.89 71.01 43.09 6.03 38.46 25.00 73.29 3.41 82.80 77.53 57.83 31.26 3.12 62.70 35.04 31.79 8.63 12.75 23.99 54.89 81.86 82.22 24.92 15.93 68.20 95.33 5.42 7.65 87.89 84.00 52.45 9.83 35.22 2.44 79.15 57.07 55.93 66.72 66.97 56.79 34.58 72.22 66.80 22.78 52.15 53.30 24.40 49.48 62.61 36.07 20.26 84.65 89.00 4.00 75.90 94.27 47.87 81.20 94.59 29.16 44.91 55.01 92.99 9.34 87.69 33.78 52.96 64.15 13.92 56.94 68.36 34.19 47.68 70.26 59.60 41.44 94.24 3.01 4.30 18.35 9.46 12.28 71.05 71.04 31.73 44.49 58.33 85.07 10.33 77.51 70.89 53.13 60.10 13.41 22.91 50.02 22.54 5.74 -44.33 63.65 0.89 60.94 11.90 80.09 44.57 92.01 26.14 89.34 4.06 11.19 62.82 96.98 74.58 63.90 21.16 93.08 93.38 60.84 8.63 28.16 11.67 50.09 96.97 20.65 40.03 57.57 8.10 20.44 95.96 27.38 71.11 68.34 30.27 96.63 90.92 79.43 5.81 3.26 69.13 80.94 62.67 97.78 1.78 98.40 44.39 74.12 67.73 93.05 82.39 31.50 96.73 20.43 52.71 39.96 48.40 7.40 67.64 42.47 86.04 43.97 92.24 67.85 43.02 82.82 43.94 46.59 20.84 43.00 26.03 74.99 93.25 11.69 40.01 73.02 26.17 54.82 52.97 17.15 90.80 11.49 37.10 9.26 79.60 56.57 5.41 88.42 69.22 83.58 7.83 72.46 34.56 28.68 24.06 68.06 7.51 70.82 35.79 67.14 -10.76 9.25 15.92 53.59 46.55 8.29 50.14 15.29 78.70 43.83 32.11 51.50 92.95 37.10 14.37 15.80 1.02 8.72 12.34 0.98 71.77 40.87 43.07 88.39 5.17 76.89 89.49 38.12 40.64 90.33 64.06 30.84 50.83 36.12 11.85 46.46 22.79 45.50 96.91 39.96 50.16 88.11 11.22 58.00 36.36 98.93 72.14 38.87 65.11 91.62 28.13 32.08 37.74 54.02 10.18 54.94 72.73 84.35 22.45 44.94 38.01 8.37 0.91 4.35 23.18 70.47 75.28 47.12 57.37 39.10 44.19 2.95 67.26 0.21 3.51 97.87 12.62 78.69 98.49 5.30 76.92 18.91 88.84 47.34 65.91 61.91 60.80 44.23 86.48 32.37 54.06 94.17 51.04 24.77 22.73 67.49 15.57 68.68 0.20 18.95 -17.56 65.14 23.18 74.04 89.16 16.44 65.90 76.77 50.83 27.80 76.84 58.09 57.03 18.30 96.44 63.03 48.92 16.53 29.33 12.38 86.76 10.97 45.06 92.31 73.68 1.81 36.42 90.82 90.03 71.99 2.69 11.00 14.19 79.78 75.49 95.15 84.41 73.55 48.34 26.90 41.35 38.17 67.79 46.31 67.83 10.62 47.55 51.32 59.83 39.30 66.60 31.43 33.21 37.33 63.50 97.90 55.79 74.17 83.50 89.87 61.52 56.22 8.15 84.37 86.09 54.18 10.38 62.09 37.36 17.69 4.32 84.05 50.87 35.96 33.13 26.35 25.51 26.64 23.75 80.54 46.72 33.96 33.83 47.90 68.02 61.45 69.20 51.53 76.48 23.62 88.10 65.15 22.25 84.25 65.43 33.34 37.14 27.52 78.37 57.58 -9.84 17.14 14.95 65.39 89.66 39.11 21.62 24.53 64.72 58.63 38.26 30.21 49.58 17.21 26.55 46.10 97.59 67.59 74.88 91.71 37.13 89.98 25.74 63.93 56.65 76.96 15.13 65.68 52.82 34.99 37.75 7.91 0.07 53.43 51.12 16.30 46.07 71.42 97.03 65.57 33.21 50.44 52.93 62.56 77.90 5.74 12.43 88.16 13.74 23.28 30.97 28.67 94.55 42.51 13.06 44.26 52.68 80.12 10.25 64.81 73.70 93.16 96.44 75.95 88.47 30.94 56.43 94.36 48.78 84.96 51.25 54.93 0.63 62.96 67.01 96.12 76.70 13.43 23.81 90.74 22.17 27.45 42.99 51.86 74.64 80.96 81.81 54.76 0.38 0.71 25.98 47.81 69.30 36.47 61.06 65.35 65.70 21.47 23.41 65.21 -46.49 28.99 36.77 75.14 47.03 83.43 73.81 91.31 99.64 10.66 97.90 26.77 23.45 56.37 66.87 56.41 83.23 95.29 3.55 11.11 54.35 35.58 6.12 68.67 48.69 31.37 57.63 34.16 34.04 16.57 24.22 11.14 97.68 81.02 62.31 68.69 20.23 28.78 47.62 98.23 13.41 58.36 75.51 13.70 83.63 10.73 29.48 41.92 84.40 80.61 38.80 26.97 33.58 99.15 78.62 56.64 99.36 68.94 36.47 55.24 0.82 56.11 96.47 54.23 33.01 15.95 24.87 44.36 44.92 73.55 96.63 98.50 82.48 47.33 20.39 30.76 73.09 10.23 89.86 69.82 34.19 82.67 54.44 87.70 34.12 24.97 56.11 70.28 4.83 47.09 31.54 82.56 47.34 17.30 39.80 62.45 21.56 26.28 72.78 37.37 -54.86 36.25 26.82 98.12 32.45 54.18 41.81 51.86 42.83 70.02 39.72 43.56 65.38 88.85 30.90 71.95 19.85 14.75 91.07 77.12 18.22 27.00 57.42 31.69 1.32 42.69 51.26 94.10 3.80 60.65 79.19 33.13 5.75 38.47 42.89 40.50 67.04 45.54 30.34 36.59 89.65 92.70 1.66 61.10 82.35 82.29 71.24 58.31 5.95 58.94 47.86 96.85 15.05 83.90 49.07 34.33 29.52 57.48 79.62 46.44 70.80 49.53 14.38 42.71 90.88 39.05 80.99 42.20 87.82 42.98 94.44 93.32 95.02 8.68 11.36 34.39 84.90 86.45 94.70 12.09 54.51 38.57 69.55 44.30 42.18 55.80 3.99 29.73 73.33 12.42 13.90 56.20 22.51 35.83 50.83 41.39 1.65 88.54 89.61 42.05 -61.24 42.86 67.80 43.23 13.00 63.50 15.32 65.38 50.19 4.51 41.51 77.01 19.27 25.12 94.35 49.16 68.76 17.47 7.33 0.32 77.74 55.15 65.90 62.35 4.62 58.19 19.61 72.05 24.30 65.00 15.60 22.96 90.20 96.50 11.98 25.87 38.10 64.54 2.18 14.32 31.74 87.73 64.56 64.28 34.73 65.40 81.61 25.90 86.93 86.56 13.75 82.26 41.92 71.04 99.66 38.13 82.54 81.85 41.74 40.22 43.27 97.47 49.10 29.74 89.73 50.40 37.97 40.89 55.98 83.00 71.41 59.56 44.87 28.59 68.73 37.53 74.28 68.46 79.15 89.95 29.03 96.84 50.68 34.13 85.24 34.77 22.65 68.91 81.53 65.19 86.87 77.63 73.46 69.27 93.22 87.35 59.08 48.47 48.61 56.70 -71.99 98.51 30.26 82.66 13.02 56.69 82.07 17.53 18.75 11.66 79.30 27.32 33.58 64.69 31.86 92.72 44.21 15.66 86.41 16.05 59.06 53.61 73.31 48.32 90.30 73.18 92.69 91.39 66.51 5.85 91.45 37.27 48.15 15.68 17.18 1.63 57.78 48.51 55.12 76.67 54.06 53.08 51.45 25.70 57.42 38.92 27.94 82.95 70.67 95.02 75.53 38.85 40.53 46.11 22.00 68.21 55.79 8.17 11.80 81.38 26.86 69.35 72.42 25.05 36.79 48.06 42.93 88.89 92.22 79.43 8.13 49.74 54.37 24.63 65.44 78.93 22.72 76.46 98.28 77.08 37.25 52.79 63.84 89.79 29.78 13.97 96.15 61.13 64.36 8.44 94.38 54.55 39.76 58.24 17.78 82.54 63.99 62.05 85.43 44.55 -2.18 34.53 52.04 83.16 11.04 73.92 66.97 88.94 4.21 22.79 97.00 29.34 21.01 36.02 57.95 38.94 72.75 44.83 4.18 5.16 21.17 58.16 87.94 85.05 77.52 87.45 53.93 4.52 84.22 91.32 11.48 14.66 9.60 10.55 71.36 41.27 3.32 89.80 32.16 92.72 57.70 31.09 75.51 38.09 71.26 82.25 66.21 35.41 35.52 86.11 67.60 47.66 91.34 6.67 33.37 45.20 47.51 40.40 28.85 84.99 90.89 24.54 30.64 89.53 34.75 18.81 31.73 8.63 43.37 36.25 32.22 8.91 11.94 81.17 2.56 4.94 57.67 15.01 34.89 45.90 84.14 38.27 92.53 19.68 2.79 16.25 40.11 90.33 3.24 62.55 70.73 86.14 15.09 3.53 81.73 33.28 37.45 44.25 4.54 14.50 -18.75 48.64 33.98 11.21 29.51 4.02 85.80 68.28 67.56 42.12 26.47 44.59 74.46 93.07 44.38 85.43 21.31 66.21 88.85 40.97 68.17 27.08 73.72 0.97 40.27 59.63 14.11 49.01 32.13 82.01 78.75 27.61 29.58 90.87 48.42 50.44 83.64 45.70 12.31 3.37 17.95 26.52 40.84 68.67 54.85 16.93 77.08 0.49 58.95 11.60 59.88 87.80 81.76 17.26 54.72 83.92 84.81 21.90 46.68 58.26 86.47 18.03 17.25 41.74 99.12 54.14 5.93 88.75 36.36 96.95 10.74 0.07 92.44 37.91 62.41 92.88 56.81 33.95 96.10 48.48 96.15 31.19 90.78 10.69 86.64 51.79 34.98 96.08 65.67 5.34 67.28 37.98 19.75 21.47 53.37 34.25 64.88 75.81 19.91 97.47 -93.60 60.86 53.95 99.05 95.10 41.02 88.61 61.20 81.80 68.59 15.27 7.77 25.21 83.71 0.67 64.55 8.88 27.04 66.29 36.29 43.95 72.36 61.83 43.60 79.57 95.12 3.79 67.72 7.32 49.61 54.81 69.79 78.95 56.41 88.35 60.34 10.97 16.49 26.97 9.04 72.66 29.40 63.01 25.20 67.76 88.73 34.48 51.67 10.97 83.15 83.31 19.18 20.38 90.56 36.26 34.71 47.33 57.17 80.37 16.04 97.37 47.44 1.58 38.28 75.61 88.27 59.53 83.05 46.34 61.62 13.60 38.10 97.29 44.76 67.59 30.05 96.22 23.17 24.72 99.85 96.69 84.18 85.51 64.55 5.45 27.86 58.65 47.53 42.98 73.62 1.09 79.61 47.27 2.12 69.25 17.05 27.11 63.06 61.24 2.55 -44.87 63.99 98.72 74.59 66.06 91.25 47.19 88.82 13.39 19.55 62.92 46.50 21.85 79.98 81.01 35.43 14.58 82.34 83.14 39.56 46.02 19.40 82.56 41.67 28.45 99.85 84.81 54.37 77.04 35.97 15.00 96.80 20.91 12.85 46.02 16.32 9.83 31.32 28.27 2.92 69.39 33.21 80.90 1.26 32.04 97.62 43.47 49.29 79.29 85.05 48.28 62.78 84.12 38.07 71.20 63.20 40.43 31.43 68.28 3.02 58.58 78.37 87.03 59.56 65.95 45.15 86.36 4.08 10.67 1.91 29.94 58.69 74.26 62.76 24.86 84.21 64.77 93.30 50.31 48.04 22.94 3.41 41.49 58.33 78.92 25.53 5.29 33.20 0.74 36.55 90.02 78.15 94.86 2.35 99.55 39.20 33.98 42.25 46.91 23.83 -85.45 24.10 86.87 79.40 94.62 61.14 70.70 13.71 55.27 65.32 4.58 53.25 14.14 91.68 85.61 71.22 9.63 16.53 91.25 18.22 68.53 55.11 42.65 60.26 43.11 86.95 29.91 22.19 89.82 96.93 32.16 18.02 24.12 32.87 44.02 79.93 98.77 35.29 56.69 87.41 15.62 13.99 35.86 64.82 61.92 88.23 75.39 24.22 28.40 66.89 24.71 89.14 82.60 76.85 44.90 63.98 20.20 22.38 4.71 89.05 37.63 91.49 76.94 2.10 41.71 29.93 26.99 26.54 96.91 83.01 28.74 68.85 5.61 56.05 67.37 44.77 70.61 75.14 95.56 80.17 28.39 39.99 48.00 98.96 7.83 42.96 98.19 85.10 42.52 31.38 34.95 39.90 86.34 29.19 59.72 91.42 19.89 33.08 31.81 38.73 -94.53 17.65 3.98 33.39 52.22 74.87 36.04 27.80 61.17 10.43 83.34 5.80 36.91 66.74 10.31 46.83 5.34 96.68 61.54 44.72 73.31 22.96 34.43 11.97 11.58 45.21 63.34 75.78 49.33 71.26 97.97 40.42 53.26 94.97 19.16 96.36 68.97 66.86 50.66 85.67 52.26 29.01 84.92 80.92 84.81 6.60 89.54 4.19 33.62 73.18 74.07 47.92 33.31 72.38 26.28 64.62 99.77 49.33 1.34 66.35 10.41 51.19 75.53 95.56 77.46 0.57 67.01 45.72 70.43 56.80 32.75 83.28 68.49 50.38 18.29 28.10 83.79 38.17 92.28 38.12 71.17 10.38 33.66 53.32 89.26 7.73 83.59 98.02 28.27 93.80 42.93 29.01 3.97 11.02 43.62 58.79 82.66 29.04 12.59 71.22 -46.21 69.94 52.15 24.40 2.71 62.13 27.24 4.68 44.67 67.21 45.55 69.93 51.93 23.44 36.04 23.93 80.18 6.46 11.08 18.58 82.87 88.49 91.82 82.37 8.43 59.19 51.12 19.31 52.86 15.58 35.25 70.79 80.69 35.45 0.09 46.81 49.27 52.07 45.05 77.07 64.34 50.73 15.14 96.36 1.78 1.26 7.46 30.81 34.84 64.94 33.92 26.78 86.29 78.69 2.40 55.69 4.66 79.53 74.17 75.72 75.82 44.81 32.88 82.73 10.78 56.28 17.03 86.38 86.39 93.24 60.47 73.40 77.28 99.89 97.13 15.80 46.34 78.81 85.54 46.21 3.50 26.25 37.66 2.66 67.92 30.37 43.40 63.50 25.09 44.52 41.94 85.08 52.17 84.59 28.67 6.45 45.86 85.20 0.79 88.74 -2.43 60.06 68.10 81.37 77.30 66.77 39.73 64.73 35.29 50.15 65.52 37.11 58.13 16.14 93.82 37.47 84.32 73.14 97.98 59.53 63.52 3.37 76.96 20.48 0.28 62.21 70.23 97.40 22.87 76.91 38.24 98.70 14.21 33.59 54.85 20.05 69.22 60.44 2.20 27.27 51.65 20.81 98.68 39.41 98.02 76.63 69.29 12.34 58.69 70.03 6.01 84.53 44.08 37.30 32.18 51.79 37.88 67.12 94.37 65.48 67.13 73.33 93.06 97.73 16.38 34.05 7.61 7.33 72.54 27.09 15.02 6.24 13.64 51.16 5.00 21.00 47.76 40.96 92.34 69.44 29.58 6.96 15.81 66.41 51.43 70.88 74.72 14.08 81.66 52.04 3.36 30.02 61.61 7.95 1.54 42.96 52.57 52.87 60.05 2.75 -30.82 45.94 29.62 1.42 49.76 46.23 94.75 22.22 76.48 6.00 12.42 51.36 28.45 9.90 10.93 96.90 51.31 46.82 15.18 96.06 46.92 19.97 22.09 99.89 11.42 16.28 13.33 28.64 50.03 28.54 36.47 80.95 80.16 61.81 94.45 14.14 66.17 59.26 4.40 39.26 36.37 89.85 72.22 77.65 63.21 84.45 28.34 46.16 10.46 37.61 40.50 90.12 6.48 42.68 44.66 7.21 9.70 69.14 55.52 89.28 98.51 71.78 56.11 81.42 31.05 81.31 98.91 17.91 19.19 92.64 89.01 31.84 25.87 47.47 40.03 50.83 83.17 78.28 73.90 52.46 18.97 29.03 10.40 48.62 57.56 74.70 29.77 8.08 64.52 31.90 23.61 18.53 76.17 4.55 3.81 85.59 20.83 27.69 64.39 80.07 -0.28 70.33 2.79 48.61 99.71 56.57 90.68 40.76 12.37 16.54 82.50 79.12 52.42 78.66 93.07 33.85 51.11 42.19 35.12 50.42 40.40 52.56 32.68 85.52 65.51 78.86 79.90 14.47 34.26 26.70 28.68 52.52 54.64 49.59 91.65 74.44 78.70 39.04 81.50 61.37 1.42 73.47 7.96 59.96 20.50 21.05 15.91 97.42 70.38 27.06 1.25 74.32 95.15 51.64 11.59 67.90 9.18 63.56 31.46 18.01 38.26 2.03 85.70 29.64 88.55 84.00 88.85 93.37 4.02 14.61 54.85 54.54 19.69 52.10 31.29 97.85 8.33 42.06 96.39 47.30 87.49 78.12 16.23 28.82 79.64 5.33 12.95 41.43 85.08 20.52 12.33 85.42 93.59 5.10 12.15 25.86 10.97 50.15 47.54 67.50 -77.90 46.07 61.55 28.75 54.20 26.04 57.04 7.88 6.62 2.75 18.93 48.13 70.31 3.59 27.16 94.71 44.18 36.82 37.23 14.28 7.18 6.93 63.71 23.00 2.40 64.08 89.02 98.47 52.49 82.20 69.72 14.78 79.43 12.13 43.78 92.40 25.72 60.95 8.89 79.53 32.06 54.46 91.81 98.09 27.17 30.66 95.12 87.68 93.73 9.92 38.17 36.87 84.14 93.44 73.19 46.80 69.83 51.31 41.09 93.83 12.35 72.63 87.87 60.92 28.51 50.34 46.79 9.24 56.91 42.98 0.91 37.36 60.86 73.46 99.88 45.40 94.69 39.09 39.45 52.46 86.31 77.77 12.71 51.34 19.85 87.02 42.14 77.45 99.04 62.47 67.38 29.42 54.09 92.18 82.99 83.42 85.02 21.53 19.85 54.73 -30.92 21.64 79.50 43.86 1.67 29.30 34.45 7.89 83.29 24.74 98.73 23.08 95.08 71.65 51.18 8.46 89.50 87.86 68.40 69.36 68.42 43.67 22.03 33.46 55.73 47.02 15.34 9.53 85.60 46.68 20.11 81.44 99.59 24.09 39.80 44.57 75.27 38.36 92.81 61.00 96.68 54.95 9.30 37.00 19.39 15.89 35.85 86.33 13.01 51.12 71.46 22.60 71.84 37.35 90.18 45.30 89.11 41.31 67.07 54.56 56.92 25.21 51.61 16.19 36.24 81.85 68.15 85.44 66.92 13.28 7.82 3.78 81.92 44.08 86.85 46.29 36.35 26.40 75.74 91.21 36.02 20.30 29.75 73.06 59.28 42.95 92.75 57.21 76.54 76.20 85.80 96.08 35.34 74.73 59.03 87.62 0.21 5.56 39.00 58.89 -97.36 80.99 56.95 5.18 1.80 52.69 18.34 54.51 27.58 23.31 94.01 51.19 30.07 21.56 52.58 58.45 67.75 36.43 8.29 50.99 4.21 30.78 0.11 62.37 61.30 29.68 99.05 93.86 45.12 78.27 70.48 83.77 60.95 6.78 3.82 64.63 76.00 26.94 26.80 0.32 91.25 44.68 82.96 78.76 14.80 70.66 49.01 47.88 19.03 53.82 44.10 16.79 68.56 72.54 74.76 70.88 94.76 19.61 49.26 51.74 18.41 0.34 56.02 83.59 66.70 59.68 59.43 16.91 45.70 79.86 56.99 60.41 10.13 30.30 6.07 9.35 43.78 88.07 27.23 44.21 79.34 26.74 63.78 41.05 47.98 54.43 23.45 88.35 57.10 68.77 72.31 19.69 53.21 41.78 10.31 35.75 74.83 8.61 27.59 6.15 -39.72 47.71 17.87 22.20 2.03 83.82 0.46 41.47 78.18 14.34 53.61 73.88 4.83 2.53 54.59 22.72 92.16 39.37 81.93 56.39 76.14 41.80 17.59 12.78 50.82 68.95 82.48 8.62 77.03 48.82 18.88 93.59 28.24 92.96 70.87 48.16 58.05 73.35 32.09 90.65 94.71 41.81 11.65 29.79 42.33 13.92 88.04 43.41 18.57 29.13 16.02 56.74 70.83 54.60 15.95 9.42 99.01 88.16 35.73 46.67 73.60 73.23 81.71 3.91 74.69 53.15 19.73 15.96 94.56 88.19 21.60 23.63 69.35 32.90 94.39 39.00 26.60 42.64 35.73 70.83 85.75 70.76 24.32 14.33 27.25 46.28 59.70 70.61 16.21 83.49 19.70 93.39 64.71 57.89 53.26 9.58 11.69 62.62 67.38 68.44 -98.48 79.54 45.53 30.29 15.83 45.64 20.45 24.64 65.85 55.95 23.73 18.68 93.45 17.34 16.89 54.27 36.30 80.24 75.06 68.87 31.44 57.84 53.65 47.53 73.35 12.22 37.71 89.82 90.89 84.97 1.01 17.19 8.27 42.36 57.62 69.51 85.62 24.71 99.42 25.93 21.69 15.55 99.02 62.42 91.05 18.14 29.30 72.47 65.55 6.16 90.17 2.81 98.29 83.35 5.94 45.35 30.17 77.47 62.52 74.25 39.05 18.83 4.44 5.38 30.61 81.54 72.77 8.73 22.06 19.89 32.97 51.24 36.34 76.05 31.11 25.87 24.51 54.66 41.16 51.37 20.93 26.06 39.91 30.32 36.11 2.75 49.66 90.21 38.64 81.84 56.42 80.70 65.95 62.76 52.37 83.88 58.71 70.55 28.14 16.85 -6.20 70.62 80.79 98.47 91.57 55.47 51.69 34.25 31.66 31.89 52.35 7.50 10.40 89.46 50.46 30.45 54.08 62.52 93.65 20.19 73.22 53.22 47.58 32.57 61.29 84.18 38.70 78.53 83.14 98.15 27.04 1.25 38.59 30.94 39.54 95.06 13.67 43.42 25.40 54.78 72.10 14.21 26.51 37.06 17.38 22.52 26.61 34.12 54.46 22.82 52.69 39.78 4.37 34.62 71.37 60.50 20.24 9.67 39.48 56.57 82.76 19.73 83.59 62.68 11.03 67.51 18.59 13.53 88.77 18.66 14.52 98.98 63.89 21.99 70.52 76.42 14.37 53.14 9.43 41.86 18.02 45.14 86.38 20.79 96.98 29.05 22.91 28.65 14.16 97.25 54.57 61.67 68.75 81.61 52.11 18.50 44.78 91.79 12.55 11.08 -11.51 32.71 56.15 28.97 50.14 52.33 55.43 58.82 6.14 17.35 91.35 89.06 37.15 46.92 88.88 44.17 28.47 12.75 60.73 24.21 55.63 40.89 20.19 84.52 93.07 59.04 52.95 49.79 38.60 43.27 66.41 13.77 9.35 20.27 76.27 32.40 95.38 86.46 61.75 29.40 82.56 14.48 92.27 80.11 34.37 67.05 89.88 89.63 49.79 48.98 97.76 87.45 36.78 46.03 84.27 87.84 14.00 44.44 13.53 69.70 76.19 80.82 90.73 58.91 29.34 66.45 90.69 52.34 29.14 50.43 95.71 99.13 31.37 40.85 51.69 77.11 82.54 63.73 59.05 95.21 0.45 64.63 20.18 98.47 3.22 54.50 28.21 42.16 74.10 28.38 76.21 85.83 71.87 2.91 69.07 36.75 17.64 88.96 41.85 47.45 -2.66 56.71 6.77 25.55 41.62 34.11 43.28 91.83 25.08 23.89 75.35 6.78 66.55 59.19 19.56 76.04 90.36 39.84 45.19 72.60 78.91 29.97 34.43 93.35 78.40 54.65 31.76 36.46 58.12 62.96 70.87 33.09 33.31 86.61 40.37 48.21 30.05 74.70 95.25 50.83 7.89 93.21 26.35 9.37 3.39 36.53 80.62 48.43 45.21 80.89 95.14 66.08 73.36 55.06 97.34 97.40 59.14 3.80 60.92 29.05 99.53 47.65 11.83 64.77 98.70 91.67 37.11 84.21 95.02 93.61 94.94 50.63 89.33 25.54 32.04 87.81 6.78 92.64 0.40 53.83 97.03 79.39 97.68 64.93 42.65 8.88 41.24 94.22 76.18 93.35 44.95 50.87 98.50 24.55 40.20 79.29 67.22 8.51 48.27 50.56 -8.59 79.67 75.68 23.96 13.30 60.69 82.39 73.12 2.37 2.80 93.36 68.93 29.00 81.68 7.27 39.21 95.49 71.25 9.58 71.84 95.53 95.50 22.39 8.40 61.94 70.84 54.42 69.73 29.30 8.87 63.82 46.19 10.45 0.20 57.41 35.62 65.72 13.06 99.82 42.25 27.71 63.63 23.65 23.29 64.13 41.39 20.28 48.12 40.43 13.02 59.05 33.42 98.33 28.64 20.53 70.21 90.80 95.30 36.41 93.32 11.22 79.66 61.25 9.40 65.92 29.04 44.72 75.61 82.82 85.18 8.05 5.41 99.62 20.77 62.60 64.21 42.07 15.76 26.64 58.80 50.01 93.91 1.80 63.30 86.96 30.61 56.54 5.00 59.97 70.70 27.59 76.94 68.73 19.17 42.66 37.24 40.94 75.51 33.53 15.63 -89.11 9.30 73.51 32.81 95.43 1.31 80.75 85.51 74.19 35.81 86.68 43.49 5.25 67.35 30.99 46.29 24.35 7.90 13.18 50.36 77.53 31.73 17.80 51.37 44.15 19.59 63.41 5.84 8.56 30.33 33.54 60.80 72.56 32.65 82.55 27.78 32.69 67.72 58.90 25.43 55.38 92.97 83.16 16.37 80.59 32.07 69.71 30.32 42.54 30.62 54.78 50.39 10.69 44.87 9.07 39.61 12.78 43.33 67.51 74.64 68.66 25.03 39.36 64.22 55.19 47.23 94.13 64.02 84.22 13.68 79.68 40.11 8.73 30.95 54.93 6.46 54.23 39.34 23.94 74.49 15.68 84.91 74.48 31.82 84.11 51.49 26.19 55.21 21.78 63.72 53.44 38.69 1.60 20.19 71.35 89.03 51.02 22.08 53.61 38.55 -25.77 38.04 87.32 67.74 8.26 28.33 49.01 77.92 20.49 1.94 47.78 59.40 26.34 9.16 27.70 85.16 6.61 58.73 65.23 9.17 51.20 51.40 50.08 81.52 85.54 73.59 15.06 96.50 26.85 88.20 61.58 36.40 40.57 34.63 65.23 60.43 30.83 31.94 39.64 30.13 57.11 34.12 13.91 9.35 92.86 91.02 32.55 39.06 41.02 43.63 45.38 8.05 31.69 91.84 34.64 6.83 78.17 2.67 96.80 85.79 99.38 72.85 96.83 65.22 48.20 54.42 11.38 44.81 59.39 82.55 96.83 16.38 83.27 72.33 71.09 27.12 63.66 90.92 61.15 65.72 27.68 12.47 78.56 69.15 13.19 46.79 21.63 63.50 45.55 60.24 48.93 85.05 17.97 52.24 73.85 68.39 80.73 75.97 94.98 56.60 -99.56 95.69 45.92 74.57 2.07 53.00 65.00 15.54 54.67 56.84 77.68 31.63 44.19 89.77 74.82 6.80 85.59 23.13 55.43 85.69 18.50 59.45 57.80 50.78 87.53 12.17 80.01 22.89 17.84 7.75 11.80 83.65 10.61 51.08 95.02 11.11 78.76 69.47 13.69 2.95 47.24 71.51 88.74 58.98 60.17 38.28 75.34 31.34 7.31 20.01 34.25 12.95 94.42 93.04 47.21 57.46 55.43 53.86 39.66 92.55 68.36 37.59 12.13 61.82 75.19 60.25 6.58 20.86 52.74 58.76 27.57 92.75 15.35 7.90 55.06 2.86 78.02 48.60 49.20 23.25 37.83 86.03 61.13 42.89 32.23 26.91 37.41 60.27 65.40 48.15 62.64 30.07 71.16 66.05 92.50 33.60 68.89 3.64 49.79 90.39 -67.17 67.03 46.56 44.19 55.22 38.42 13.57 76.62 69.09 25.79 46.38 88.63 22.63 93.34 16.69 18.62 88.88 1.41 28.19 35.77 85.82 43.09 60.92 15.32 62.64 92.22 45.31 3.52 17.99 47.37 78.97 46.79 90.19 36.78 22.30 36.08 63.29 8.97 67.70 22.91 31.24 44.30 84.86 43.44 75.65 86.35 25.33 30.89 65.57 91.43 65.75 22.09 92.52 2.87 90.83 25.78 19.76 76.83 31.38 19.21 63.72 19.07 57.09 40.03 75.63 66.69 49.59 89.99 16.64 0.89 88.01 28.96 87.14 49.25 25.07 38.52 80.27 82.25 67.17 50.37 58.58 36.22 94.75 56.47 72.47 73.84 86.38 50.29 24.72 72.83 63.65 57.57 88.73 14.47 14.75 7.31 12.05 14.95 12.77 73.57 -43.25 6.16 33.67 5.29 48.69 1.66 34.36 83.54 13.86 39.95 63.71 76.88 23.37 71.28 3.46 45.36 44.49 6.60 18.73 60.04 18.54 4.99 51.65 44.58 26.51 10.15 99.21 76.35 52.97 76.98 40.45 73.86 34.41 90.54 33.81 30.43 40.34 67.70 53.96 11.55 53.02 68.48 44.28 17.27 22.89 22.56 11.04 6.75 3.61 74.73 88.37 88.90 65.30 86.35 30.37 92.73 82.99 5.04 87.26 97.38 93.42 91.54 75.28 53.85 51.17 83.51 39.27 63.30 97.81 72.50 75.17 87.04 10.76 31.87 57.73 44.14 19.38 21.53 53.15 93.48 32.96 49.55 16.90 91.94 74.57 59.01 61.52 56.88 27.75 11.83 36.79 97.51 12.03 41.29 89.66 77.04 77.61 75.18 1.98 93.35 -8.95 90.60 88.66 30.59 3.12 98.49 31.89 81.31 67.57 94.57 59.14 17.43 89.97 93.29 80.05 61.29 5.94 54.98 87.49 72.63 78.50 84.35 15.81 33.77 36.62 94.54 31.77 76.36 52.15 93.94 84.19 95.95 92.00 19.59 80.49 56.37 25.15 70.79 43.53 84.89 75.63 69.74 25.02 14.04 63.63 52.66 81.36 87.91 40.40 1.34 49.88 13.80 35.53 19.63 39.52 34.69 39.06 84.58 32.93 80.48 29.96 98.36 18.75 84.19 42.58 94.08 24.46 22.04 87.74 60.95 18.33 54.02 44.22 66.96 46.84 43.45 46.81 77.10 37.90 22.72 55.56 36.77 79.03 76.84 58.29 55.78 15.66 89.32 3.92 5.87 54.41 56.44 75.00 12.86 36.69 67.50 26.22 21.13 27.20 75.24 -62.07 27.77 68.37 33.41 43.84 95.18 53.68 28.01 55.01 36.47 47.25 62.89 98.52 81.09 81.12 35.73 99.93 25.49 37.22 32.35 0.94 95.51 40.40 53.24 69.63 65.85 37.56 83.05 71.58 77.52 30.20 54.09 96.00 22.67 89.67 49.51 21.08 54.26 46.06 20.78 69.23 28.02 57.24 10.92 66.25 76.02 16.80 63.89 49.30 27.90 77.61 32.69 50.29 57.29 81.29 37.56 57.93 51.67 26.29 29.19 93.24 72.25 74.48 54.73 40.57 53.28 58.69 37.67 71.10 23.23 69.01 21.47 38.03 73.80 56.47 46.54 5.07 86.09 97.78 93.36 80.45 43.72 87.89 74.59 77.88 87.61 10.04 0.47 27.43 18.20 49.10 23.32 41.16 81.26 57.41 95.00 59.46 8.47 88.69 41.11 -72.20 84.11 75.05 25.59 42.54 88.10 91.82 56.82 34.24 11.88 34.80 1.72 41.23 25.45 21.78 28.36 63.21 63.18 31.49 89.10 57.80 34.30 23.76 25.54 27.60 35.91 53.49 98.04 70.12 64.07 27.30 40.38 42.43 84.93 62.86 46.64 43.61 28.86 14.31 65.61 72.26 33.52 50.47 67.51 81.56 34.42 36.24 82.77 60.61 63.46 36.03 68.57 52.81 29.56 30.97 2.43 92.02 17.74 12.86 70.54 67.43 96.21 77.57 11.81 18.66 61.76 66.25 32.92 45.41 53.20 21.49 1.50 57.74 59.77 45.31 80.01 7.65 11.17 87.72 28.27 83.18 44.86 92.58 85.55 8.31 39.21 77.55 61.11 41.02 87.35 85.07 0.20 84.98 40.46 64.85 16.51 0.46 79.98 81.32 91.09 -17.11 64.70 80.18 87.79 23.61 43.29 46.55 22.08 57.43 39.64 83.96 12.11 8.83 90.46 77.01 32.20 36.73 96.53 20.77 61.42 18.81 60.38 50.92 42.76 58.08 90.08 11.71 68.67 24.97 25.69 82.75 25.68 19.30 32.55 83.13 15.62 18.82 47.23 78.91 10.91 68.14 85.52 55.65 63.37 88.77 14.82 70.58 51.89 72.61 62.95 76.86 5.47 15.06 70.14 94.66 78.98 33.04 29.43 89.72 78.40 11.02 62.99 10.42 18.01 67.96 26.01 78.23 38.36 82.74 25.89 67.41 41.26 98.73 69.89 1.09 23.40 48.90 35.38 82.22 24.50 60.78 96.70 85.72 30.13 25.62 38.16 11.60 48.60 16.98 98.26 13.87 25.03 55.77 25.06 75.22 63.51 83.62 11.27 46.03 31.38 -30.55 53.12 61.69 49.67 59.78 69.46 59.96 37.52 82.40 1.97 57.53 7.49 19.32 23.30 36.49 39.76 63.76 61.99 62.84 42.32 87.43 68.85 66.24 56.74 90.73 35.11 35.18 88.53 12.48 10.10 29.64 39.56 25.06 24.80 74.65 6.88 47.69 14.14 88.71 39.94 59.66 99.11 63.19 62.43 51.52 62.65 60.13 93.92 77.62 4.94 16.59 97.22 33.60 41.09 64.69 58.08 32.43 84.12 27.27 82.38 17.97 55.23 75.96 68.71 86.69 81.70 81.66 33.99 0.36 22.08 19.00 56.17 9.40 96.20 28.23 98.67 25.48 97.58 42.01 78.99 59.20 37.79 13.49 38.94 36.60 89.62 10.34 61.80 51.74 29.08 14.30 73.46 51.81 37.98 8.57 63.51 45.83 37.90 67.13 47.47 -62.46 12.54 18.59 38.99 49.10 14.66 15.10 56.76 90.06 4.47 86.62 11.34 14.13 99.73 14.65 35.72 98.74 2.02 50.88 15.41 7.58 6.06 86.71 92.21 2.07 41.86 52.35 92.40 69.79 1.88 34.78 13.15 5.78 87.37 72.68 67.35 30.41 89.16 1.78 52.94 90.02 36.49 57.53 78.61 5.21 13.04 42.60 41.39 10.49 72.64 40.86 12.96 7.95 14.19 11.71 30.53 1.36 64.84 27.18 31.07 95.28 36.09 50.76 38.56 56.05 27.94 60.56 5.75 12.86 48.86 66.37 99.98 6.46 99.15 43.87 61.74 66.10 28.80 61.08 55.02 62.75 51.26 55.94 45.41 38.31 6.24 9.56 45.87 8.14 95.12 5.96 70.34 68.76 5.38 56.83 97.68 60.77 83.12 54.79 9.63 -66.23 41.25 69.49 58.18 63.80 12.62 0.92 86.35 32.39 52.97 0.10 7.15 73.61 84.90 59.33 96.84 46.75 13.05 23.31 36.97 90.34 92.07 46.55 23.58 50.82 28.80 91.99 36.41 18.70 74.48 21.04 27.74 79.25 88.92 51.60 0.20 64.92 62.19 34.61 84.74 91.28 33.64 5.68 18.99 35.39 5.09 96.55 38.25 55.87 36.03 71.34 70.40 56.76 78.74 82.75 54.51 40.16 45.18 19.59 89.03 88.07 39.10 12.93 81.51 70.03 51.30 29.71 22.95 51.04 29.87 47.76 43.72 48.78 44.48 49.43 21.31 57.00 17.01 67.55 60.28 6.63 41.76 67.41 60.35 86.27 37.18 51.05 8.17 46.54 60.23 23.91 35.54 52.85 5.88 83.06 99.24 7.14 46.52 16.14 64.16 -9.40 12.50 41.57 18.79 48.07 9.44 56.61 56.33 23.54 2.09 22.23 2.60 37.35 8.86 26.05 8.38 55.58 67.24 95.34 73.09 53.36 18.87 72.72 92.25 1.29 80.88 97.67 31.99 57.04 23.51 40.83 14.03 59.33 6.79 9.15 0.42 4.19 41.24 63.65 20.69 62.79 54.45 51.96 8.13 36.18 48.41 40.22 63.16 28.32 11.68 70.60 99.83 50.18 72.16 76.75 53.96 11.16 93.59 12.06 94.01 15.89 80.74 1.23 23.12 40.34 53.71 63.20 66.58 92.88 61.15 95.60 0.19 19.21 19.81 95.43 0.07 17.41 85.28 10.36 5.48 92.44 66.74 46.90 84.80 72.16 71.85 33.03 82.85 39.49 7.86 50.84 31.48 42.16 92.66 22.77 56.20 60.41 50.24 0.48 84.81 -22.06 59.07 55.79 77.02 61.83 67.44 71.83 34.46 2.84 19.78 32.10 95.94 19.33 13.70 56.57 73.38 86.37 25.13 14.56 80.80 20.79 49.34 21.22 59.59 21.15 36.00 90.83 2.65 18.80 18.17 82.02 95.87 55.56 64.79 44.58 34.47 27.27 86.42 6.33 94.67 63.57 87.16 96.08 50.00 32.29 9.08 59.68 43.82 64.72 21.40 29.01 99.46 5.00 3.18 38.37 29.64 1.74 31.70 3.24 10.28 59.00 49.93 91.51 50.75 93.69 22.36 66.10 72.43 69.27 17.01 19.51 39.80 81.04 84.94 60.12 48.89 10.55 3.33 51.05 84.18 27.19 85.33 25.55 75.05 86.19 79.98 36.21 45.23 79.99 16.20 84.94 95.15 16.23 66.94 31.22 17.38 76.19 20.17 46.63 55.87 -18.93 46.34 95.70 90.53 38.26 25.70 51.79 53.18 51.68 91.08 11.99 88.85 71.73 67.57 52.31 76.58 96.53 8.15 16.23 46.31 5.72 86.51 4.68 67.92 43.70 54.09 82.51 9.03 22.53 40.40 12.90 80.72 62.90 23.56 43.83 6.39 65.00 79.22 87.82 9.65 40.46 13.47 67.73 4.86 28.58 53.24 29.15 15.71 72.77 95.68 80.32 3.52 93.33 49.24 26.33 59.26 3.51 21.07 7.59 4.69 89.52 16.53 31.11 11.21 5.32 97.81 5.27 5.70 91.58 96.02 62.18 98.43 24.98 81.16 4.55 48.55 65.96 66.35 62.68 32.36 91.30 69.54 70.93 20.92 58.88 82.91 1.95 91.73 71.74 13.97 74.54 81.71 4.94 7.08 63.95 40.19 59.06 34.13 50.26 16.56 -10.76 93.29 59.43 6.99 36.96 12.04 41.76 99.14 12.55 91.17 87.38 61.78 90.42 99.60 34.12 7.30 65.56 37.29 27.02 80.29 61.81 30.46 40.83 63.41 17.35 13.08 8.93 39.32 0.56 66.64 67.83 52.32 64.79 51.95 83.36 59.36 61.10 59.60 56.32 6.51 95.44 76.23 23.98 55.06 77.74 46.08 75.75 84.14 1.12 89.50 59.60 11.51 57.01 4.94 92.64 51.60 83.13 88.94 16.56 9.12 49.45 42.91 67.77 94.52 99.09 81.50 24.58 29.84 72.76 0.34 2.82 45.82 48.91 97.94 90.92 43.29 61.69 24.88 98.34 12.68 22.76 85.71 74.32 89.85 23.09 13.99 88.27 51.33 79.58 51.99 16.63 53.36 73.45 47.97 80.03 23.15 37.25 73.75 53.02 16.87 -6.58 15.21 41.19 0.11 9.40 71.60 44.70 58.43 91.75 58.70 12.29 22.02 20.92 58.00 21.88 72.04 30.82 95.66 92.72 12.76 35.27 79.54 80.09 48.32 11.45 85.68 38.98 63.10 39.34 23.29 74.25 51.12 86.96 16.48 34.39 54.90 8.80 90.07 86.45 65.80 90.72 2.26 47.18 15.84 0.72 49.52 90.11 8.00 31.57 85.20 10.44 84.02 82.91 93.04 10.79 26.73 42.97 90.27 34.81 80.56 34.62 14.79 78.57 52.78 87.89 56.50 10.33 18.18 19.05 30.26 5.23 70.90 6.15 93.20 97.48 12.37 5.74 54.83 25.76 97.43 79.68 51.10 25.03 96.12 99.57 50.38 52.50 36.95 45.08 32.31 80.83 19.82 48.76 93.32 53.88 30.98 51.91 23.14 14.80 12.12 -92.94 26.26 64.63 16.08 69.44 49.96 7.38 46.77 50.07 23.54 49.91 41.13 77.20 67.10 28.67 73.05 99.12 28.00 56.67 19.07 86.49 91.76 15.49 92.84 82.05 94.22 7.60 0.70 38.57 81.53 84.57 53.62 58.79 74.09 59.23 12.51 86.06 62.87 29.15 82.33 1.30 11.89 77.78 6.20 84.08 82.17 83.12 8.71 45.18 23.81 45.94 47.10 72.97 3.50 5.01 6.23 98.01 62.93 17.64 77.02 88.36 9.85 29.02 62.65 57.78 41.68 35.51 67.25 99.20 42.96 63.13 57.38 74.47 8.88 64.26 92.81 15.93 84.81 41.24 27.71 44.01 55.94 33.80 9.93 72.43 35.05 80.73 91.90 79.34 53.99 77.74 5.29 7.43 27.51 19.10 78.50 23.86 60.39 15.27 39.16 -6.76 42.14 61.17 78.14 49.28 83.30 37.42 42.45 53.38 15.65 45.13 48.21 72.22 79.34 25.99 90.91 49.23 50.06 4.01 73.55 39.32 60.34 77.17 46.10 24.62 1.39 21.09 40.49 66.20 10.18 39.27 28.92 25.40 6.73 47.08 41.41 45.19 47.30 82.70 55.90 26.03 8.91 81.84 49.72 96.97 37.93 38.27 37.46 70.52 95.37 62.44 72.47 67.59 73.78 85.99 3.34 83.27 93.68 76.78 57.72 4.14 97.74 40.25 97.31 15.73 96.72 36.99 88.16 60.40 98.72 14.61 92.50 45.79 48.08 48.81 26.40 50.03 17.72 18.14 25.74 73.77 11.33 39.46 0.29 64.20 3.31 75.32 61.02 45.55 93.58 35.04 33.89 83.21 63.22 92.78 46.19 55.03 47.83 62.12 35.71 -77.46 84.77 47.95 29.60 87.99 23.04 47.56 84.22 98.44 12.32 72.96 7.48 56.98 79.48 98.33 15.22 84.90 91.49 30.19 97.94 25.29 34.69 5.36 71.04 41.45 34.28 0.78 8.77 99.40 80.16 29.41 37.80 97.20 5.74 2.11 72.72 27.41 71.57 98.81 35.34 85.56 74.75 11.43 13.90 22.14 36.47 88.13 58.26 64.68 84.83 47.48 32.90 36.31 58.79 36.39 11.58 20.61 4.21 21.66 1.36 32.21 45.75 74.92 90.39 45.60 59.12 88.99 77.52 99.98 69.48 66.51 35.87 57.00 52.55 76.21 22.89 63.44 41.39 35.54 80.06 13.73 91.00 64.66 64.16 91.60 32.88 77.46 5.94 4.69 1.49 78.62 91.82 77.05 42.52 51.72 8.86 78.55 88.71 42.94 54.32 -5.37 78.73 9.91 51.25 0.15 98.28 47.45 65.70 64.51 73.48 27.31 33.92 36.68 92.43 89.81 22.03 13.16 10.99 64.27 96.55 12.26 50.67 30.70 83.29 58.74 3.51 83.48 29.14 81.56 4.73 3.30 78.37 68.50 15.38 69.04 37.23 57.29 45.56 12.68 68.97 35.93 41.08 90.31 25.24 90.48 90.31 30.46 4.94 10.79 6.00 33.42 90.00 7.21 13.24 89.85 36.04 12.86 42.77 32.64 29.27 28.13 38.82 36.10 93.07 40.21 57.48 86.41 20.38 91.33 47.70 79.67 2.16 45.71 39.69 80.05 21.28 41.32 73.09 57.61 1.11 91.63 57.79 67.44 58.19 70.83 10.99 51.32 0.51 53.38 91.40 50.43 46.69 22.65 19.29 59.77 0.98 8.50 37.34 58.21 32.54 -41.76 20.97 49.28 34.24 69.57 87.86 36.05 98.27 20.51 69.44 10.88 4.00 48.31 89.47 42.07 2.09 59.89 80.91 16.67 47.30 8.04 34.98 52.70 95.74 31.13 35.07 84.17 16.35 61.73 41.35 89.91 92.57 0.34 46.27 70.79 70.43 89.26 36.69 45.75 40.49 92.96 19.79 1.30 3.50 73.00 89.90 22.97 68.49 5.16 36.72 31.10 62.34 90.94 30.64 53.15 25.53 60.00 95.87 80.98 39.13 20.33 21.25 31.91 89.38 24.51 61.84 41.54 53.37 90.69 63.90 52.68 28.67 48.64 73.40 26.81 0.18 71.23 76.24 68.93 11.16 62.96 82.97 5.57 97.76 21.54 59.14 80.32 39.47 10.02 10.62 34.85 73.56 83.91 85.71 98.56 90.63 58.50 85.68 14.74 68.19 -24.58 85.64 76.20 77.76 92.91 70.55 10.45 72.12 23.35 44.41 96.58 87.91 63.00 35.27 93.14 48.62 11.54 37.59 76.47 60.16 19.53 51.28 66.37 22.45 77.80 71.74 22.72 86.78 91.78 47.12 58.79 93.89 95.43 75.06 27.62 24.53 40.06 68.38 26.00 55.49 46.96 64.60 88.49 92.55 47.44 33.79 49.19 11.14 6.83 0.29 74.50 87.40 23.30 96.69 40.86 66.79 18.22 51.32 34.91 1.67 5.36 9.10 72.27 41.56 62.09 39.71 68.65 11.17 94.89 79.33 14.94 56.27 36.97 42.07 41.33 11.46 27.47 91.29 0.83 3.70 12.11 91.01 65.89 27.98 73.53 45.84 47.42 78.66 90.04 79.54 29.49 14.52 41.73 57.29 57.13 12.28 67.68 90.94 84.19 63.49 -20.50 76.94 49.20 77.87 47.36 32.10 92.51 97.53 52.18 17.04 53.02 56.00 52.77 37.44 9.77 14.38 54.42 23.80 21.85 37.43 2.04 9.20 33.01 0.33 3.35 59.92 55.04 62.35 10.82 25.48 66.52 88.56 4.89 8.46 96.42 18.20 22.17 5.76 2.14 82.53 3.66 83.31 64.09 18.45 77.98 9.19 48.94 51.94 81.30 32.67 93.88 73.57 75.19 3.81 71.78 2.18 23.63 64.42 28.87 99.14 48.82 89.64 34.29 59.86 12.13 86.81 62.66 66.29 89.22 95.49 96.01 3.34 14.00 87.24 36.97 48.11 42.07 17.90 0.95 1.77 28.11 31.55 60.80 21.95 79.21 89.66 8.05 83.17 14.19 21.17 97.16 37.60 93.73 44.91 85.22 62.66 21.24 47.02 92.53 92.42 -48.01 58.04 10.01 15.25 95.32 52.49 22.69 73.30 85.59 76.05 60.49 6.37 99.50 46.96 38.33 5.57 15.20 81.69 67.32 60.67 85.79 17.78 25.39 42.22 16.38 95.05 44.16 45.14 39.13 29.55 25.95 1.63 42.95 32.44 33.61 87.25 51.35 42.74 12.41 81.02 4.15 1.24 59.69 71.34 76.41 21.40 17.42 1.73 31.01 93.05 34.98 30.57 12.14 68.64 71.33 42.99 29.03 54.72 79.52 77.91 57.79 85.65 81.17 21.02 19.70 52.70 6.81 93.46 90.20 0.92 36.34 62.45 43.83 94.07 67.33 55.07 20.46 65.20 45.53 59.52 53.68 82.93 6.23 5.29 61.76 30.71 21.81 21.82 93.26 49.29 89.37 58.75 46.43 89.90 84.77 95.50 12.79 11.75 36.55 86.05 -28.93 43.49 29.63 95.76 40.54 82.25 52.99 12.70 10.64 34.78 65.87 57.41 43.58 96.52 80.98 90.89 73.42 67.69 30.73 36.81 18.28 35.35 13.64 70.99 84.22 51.65 48.24 35.28 11.86 73.89 51.78 8.57 5.88 2.53 42.26 22.62 23.21 23.09 18.16 84.54 71.67 31.06 11.40 26.27 7.80 98.66 44.77 35.28 80.47 72.74 43.08 24.13 83.04 26.90 12.21 46.34 53.23 46.27 53.41 14.10 76.94 67.62 14.67 85.70 80.96 3.57 3.34 3.88 79.66 12.16 24.65 48.10 38.55 89.55 73.61 18.21 45.72 2.93 5.51 39.42 20.05 52.54 22.72 13.22 19.23 72.74 24.68 57.80 66.13 81.77 15.29 55.22 84.49 15.74 14.96 23.91 7.96 60.94 77.64 34.23 -28.83 45.90 62.12 9.96 60.26 80.78 9.73 54.83 7.42 25.58 30.97 21.76 26.00 71.43 3.87 87.47 14.85 43.95 27.61 26.18 3.49 98.32 17.12 17.60 59.19 98.68 15.49 17.78 91.30 36.37 44.80 38.28 35.48 28.79 69.08 72.29 85.82 55.33 73.45 4.88 36.08 7.16 97.74 93.20 44.53 79.13 29.09 72.71 56.62 0.80 55.37 76.45 13.61 29.81 55.01 4.41 41.63 65.41 93.36 31.95 19.57 17.45 66.27 2.03 49.16 12.20 80.83 33.06 86.63 64.14 30.90 33.38 11.75 71.16 2.62 88.54 76.21 37.72 74.63 72.13 76.17 67.78 53.60 69.12 8.20 46.05 93.55 73.34 62.94 76.25 61.78 94.55 28.59 71.91 6.86 60.36 87.34 95.11 33.75 50.61 -80.90 10.43 88.01 95.50 83.22 61.14 94.17 68.41 60.83 53.46 91.08 76.29 26.03 5.62 28.75 5.86 67.31 1.42 88.64 77.14 45.75 28.12 41.12 72.64 54.89 80.69 28.33 61.08 70.78 65.71 24.88 98.01 32.30 11.17 92.60 65.65 99.78 4.79 90.93 36.47 86.52 41.02 38.36 74.63 68.31 79.11 93.32 34.53 68.83 41.15 54.42 95.12 22.10 46.42 81.02 76.67 88.10 67.23 97.84 63.58 58.97 14.51 96.35 50.99 43.24 17.92 86.59 22.36 33.75 47.80 11.52 27.64 37.75 58.29 28.10 6.98 31.36 87.02 90.53 67.15 10.39 89.53 84.10 42.33 63.50 39.72 85.62 98.47 90.49 41.56 27.14 87.09 47.39 83.82 30.09 76.74 8.85 76.28 1.50 79.50 -80.89 1.47 95.80 39.98 2.43 42.85 25.37 65.65 87.33 96.12 86.56 80.59 43.01 76.39 73.32 74.08 28.92 21.67 26.10 4.89 46.88 8.40 18.32 64.12 68.00 25.11 5.76 86.07 15.95 38.27 70.18 21.11 19.84 61.08 28.63 78.34 31.22 68.64 29.10 75.36 70.39 99.67 59.73 8.03 61.51 72.47 88.90 0.46 8.00 34.48 94.48 79.22 73.75 70.58 42.22 81.01 2.22 94.23 67.22 18.09 95.46 47.13 90.15 4.10 46.79 55.02 40.05 87.98 8.83 21.13 19.80 16.66 7.44 70.10 74.12 62.43 47.13 47.80 93.87 18.20 91.94 44.35 6.57 39.08 74.91 62.53 36.14 35.56 97.90 72.54 6.98 91.56 52.50 58.21 96.01 60.56 33.99 17.53 96.99 25.74 -31.48 15.61 38.40 0.43 65.37 25.45 73.40 34.95 87.39 16.71 80.72 47.80 49.71 8.86 46.43 46.75 97.32 27.72 74.12 1.77 59.68 55.86 82.49 29.06 77.93 33.53 51.71 33.20 72.63 3.43 17.53 94.24 61.17 6.13 23.92 67.42 48.47 70.21 17.63 71.68 9.09 58.00 67.96 61.66 46.73 58.57 12.64 5.55 52.96 86.92 53.55 52.14 20.65 17.53 99.39 87.22 77.76 8.07 15.65 92.05 89.75 83.80 62.59 68.15 74.43 92.02 86.19 86.44 93.98 25.07 51.86 60.91 70.02 60.04 9.20 92.45 93.20 37.69 34.79 29.65 70.22 5.86 7.46 90.82 99.38 91.68 12.48 3.57 19.36 78.05 53.47 13.09 15.29 38.35 27.35 71.03 99.40 12.61 47.01 46.52 -25.71 19.02 48.10 91.25 96.78 25.67 6.76 73.48 24.27 48.78 79.37 75.48 68.98 52.82 28.83 85.74 12.25 55.18 53.02 26.35 47.20 88.63 8.57 22.38 87.19 89.84 94.93 20.01 74.80 3.48 6.52 66.91 30.30 36.29 54.97 7.98 79.23 42.93 51.40 46.86 56.51 18.41 48.01 85.07 93.53 70.16 87.96 3.99 51.81 23.28 48.95 18.51 98.04 24.41 52.02 18.83 34.54 22.79 20.04 38.59 53.91 73.66 3.74 1.95 22.98 2.22 72.43 56.66 10.39 58.30 56.17 13.72 21.26 48.51 79.48 20.06 68.35 85.18 47.19 89.53 3.31 27.34 29.16 38.15 93.33 1.95 0.80 81.23 20.59 28.31 52.99 27.97 29.00 22.83 74.87 93.11 55.91 78.12 94.86 56.92 -69.65 0.98 38.64 7.16 34.49 39.38 65.72 1.76 69.34 27.69 74.02 87.65 50.60 86.27 78.61 71.37 36.68 5.68 8.17 58.44 89.85 99.56 72.68 75.16 23.14 47.67 64.33 82.98 5.53 59.99 56.00 55.38 8.70 16.01 25.31 49.95 41.78 79.37 96.47 70.35 6.33 21.77 92.24 42.87 45.31 99.92 26.65 8.78 43.52 20.48 55.38 80.29 56.51 10.97 5.77 15.16 75.22 43.02 74.04 90.78 59.50 34.59 84.34 27.05 9.31 5.87 64.79 60.30 56.10 76.84 39.17 30.85 0.28 95.82 37.21 73.15 67.45 94.70 3.93 93.57 16.75 16.65 40.71 29.88 26.36 71.83 42.50 87.19 80.85 83.92 2.59 99.93 80.79 10.64 78.09 6.60 2.28 40.47 98.14 1.83 -92.37 60.87 47.41 46.62 80.97 67.41 89.07 43.03 48.24 22.60 29.95 15.81 79.57 64.48 4.35 8.07 46.92 47.94 68.31 90.15 59.15 44.90 91.26 39.32 86.64 58.89 61.23 67.46 24.26 48.05 1.00 6.43 57.25 26.78 47.09 81.25 25.63 10.57 88.06 73.23 34.76 56.44 26.98 40.44 87.35 97.60 10.09 73.28 49.63 13.46 43.76 4.16 86.78 86.33 29.67 12.52 99.61 84.58 55.15 8.42 49.91 7.41 60.00 2.74 63.13 10.97 65.58 31.73 7.41 23.55 14.70 3.64 18.78 82.73 9.04 44.63 7.83 74.97 58.63 45.40 19.77 78.54 92.10 18.25 8.69 23.84 84.85 78.89 23.65 15.18 74.86 27.51 16.32 72.53 49.24 66.73 4.21 63.67 95.30 74.06 -86.86 76.74 75.06 75.02 25.68 9.13 64.13 2.79 11.87 91.55 22.19 9.85 39.82 58.51 25.62 9.78 12.94 44.60 73.21 45.92 76.75 76.95 43.14 68.69 97.68 96.59 29.72 21.17 66.24 90.22 19.78 27.47 35.25 70.46 95.27 49.65 85.04 28.29 85.87 97.33 24.69 73.43 94.85 29.42 55.52 62.63 95.47 35.87 98.71 67.49 81.65 90.27 53.31 35.63 73.50 3.29 97.88 89.43 90.75 8.89 51.77 7.79 58.48 71.80 5.93 90.77 52.69 9.76 52.57 76.40 49.60 76.67 10.88 7.51 54.97 16.93 24.46 85.67 64.25 6.86 85.86 43.81 11.40 41.90 96.15 13.58 45.83 37.02 1.34 38.33 78.09 8.49 54.63 41.22 2.59 74.97 14.21 14.42 34.03 18.56 -46.15 63.73 31.65 98.35 42.50 68.65 64.60 47.16 85.04 64.61 5.64 89.60 15.86 29.35 75.64 48.78 71.81 50.49 74.82 31.46 85.14 61.36 17.19 81.62 77.38 25.92 94.81 42.77 67.06 17.42 28.45 52.82 78.88 71.11 8.91 93.09 15.35 5.51 24.86 36.36 74.41 84.12 54.04 40.99 47.74 13.30 53.42 22.86 92.31 67.78 6.85 28.26 53.07 39.51 55.13 83.38 1.75 57.24 86.58 19.82 3.83 97.80 71.97 53.30 67.94 60.37 45.07 95.37 77.74 15.49 87.39 69.44 33.30 65.89 39.71 41.00 44.69 59.69 34.94 88.70 91.06 41.55 74.08 27.11 80.05 69.77 5.16 12.75 45.70 25.23 79.50 27.54 27.18 35.45 66.84 27.62 28.79 66.22 7.93 63.38 -84.98 96.08 81.95 38.07 21.63 98.64 41.34 2.12 98.14 79.90 18.10 5.02 14.43 68.04 60.56 72.81 38.61 17.72 79.78 27.54 20.04 14.30 75.95 86.53 80.81 11.76 71.41 79.66 20.09 57.90 84.94 25.86 86.82 17.18 2.57 39.56 30.03 69.92 13.71 1.83 31.52 20.61 50.86 13.61 99.73 41.02 11.66 67.78 43.42 13.54 20.23 1.23 5.94 46.22 6.34 78.41 21.76 31.33 80.56 40.63 83.45 56.87 70.29 64.23 38.28 45.24 32.55 29.94 48.18 63.63 23.33 56.06 28.42 22.02 89.47 72.72 9.66 81.97 11.20 9.20 74.02 41.97 66.44 3.73 48.40 22.32 0.21 84.87 58.03 86.20 27.01 53.83 69.00 49.44 79.20 94.69 11.64 38.94 43.56 13.36 -65.54 38.64 23.52 46.39 2.47 95.00 76.67 6.56 90.43 85.18 47.33 97.72 52.69 20.39 0.93 81.72 14.83 35.30 80.99 47.22 87.52 8.58 38.62 81.98 52.38 41.94 18.01 73.89 44.31 74.05 3.98 93.81 32.50 90.34 83.75 14.88 3.89 5.04 50.60 82.03 96.07 21.78 12.28 17.77 33.05 34.64 76.65 44.59 91.42 65.56 17.32 99.30 81.34 66.08 0.92 60.86 75.12 1.37 92.97 6.74 48.89 76.74 34.71 25.10 98.26 33.85 82.98 85.85 44.49 80.05 73.80 4.73 93.89 88.62 42.71 67.53 19.09 91.45 86.30 57.80 17.49 58.30 81.51 10.96 82.60 33.47 87.93 74.35 25.34 17.44 93.16 67.94 19.24 26.08 48.83 17.48 60.21 9.05 10.21 87.41 -73.78 26.93 46.99 91.10 55.69 16.91 4.53 68.32 53.88 11.25 91.84 29.76 74.73 75.68 27.90 80.43 25.46 3.10 47.39 85.27 61.93 41.37 69.76 46.58 53.98 2.93 36.12 89.67 84.57 1.11 71.09 76.11 92.05 28.91 61.77 52.15 75.44 53.99 4.65 32.93 7.98 40.53 15.13 93.91 38.17 15.64 23.98 83.77 84.19 82.76 54.25 21.55 92.66 32.28 99.09 49.81 26.19 14.57 35.44 8.40 80.66 97.54 19.86 53.65 76.65 38.99 26.78 16.81 27.47 67.98 84.59 79.26 26.72 80.21 3.24 51.98 1.44 16.40 46.04 71.31 21.11 54.24 44.32 31.98 35.27 49.05 51.90 73.27 53.76 26.77 69.68 14.20 35.02 43.10 95.11 27.36 26.41 87.19 4.52 36.62 -98.31 84.94 2.42 26.89 98.02 30.81 29.08 47.15 77.83 81.43 70.20 51.66 47.32 96.15 84.18 64.85 12.32 16.39 38.11 18.95 74.03 98.26 25.16 99.65 88.73 89.70 98.97 95.91 6.87 66.26 56.08 7.77 85.29 27.80 46.53 73.00 30.26 61.77 3.29 53.02 90.96 87.28 35.15 7.56 3.73 31.49 51.58 55.22 63.81 29.24 54.22 42.92 21.15 31.40 35.65 14.51 53.27 8.42 98.47 8.28 45.41 47.66 80.66 98.76 41.43 59.20 75.83 82.55 71.12 12.01 12.59 59.25 62.76 86.22 51.83 20.20 5.28 37.15 16.71 60.64 20.01 91.08 19.58 12.98 91.35 52.00 26.65 54.05 55.43 6.97 56.74 64.93 67.63 48.39 57.21 12.67 95.88 85.71 83.88 59.87 -19.53 98.58 11.31 92.79 12.50 85.83 27.21 78.10 4.61 34.61 70.49 60.73 42.62 59.29 33.01 48.37 28.79 59.57 18.48 77.13 0.29 27.74 63.94 13.47 61.84 33.53 3.73 80.97 79.99 63.58 13.30 60.99 47.95 69.72 60.23 23.13 83.15 19.74 98.54 51.86 82.21 54.84 91.35 32.48 65.15 89.73 69.02 70.72 26.82 98.06 57.06 5.36 52.74 24.71 52.03 14.37 41.58 52.89 26.67 45.14 52.29 13.37 39.89 33.07 24.08 35.96 84.15 0.17 30.45 15.35 45.87 3.84 92.70 19.70 64.28 9.19 97.36 26.77 75.02 38.03 7.36 95.46 80.37 44.74 60.63 55.02 61.60 38.15 48.15 57.32 51.77 65.57 50.00 32.16 48.00 82.50 10.61 8.67 29.87 34.22 -33.76 37.79 31.73 60.68 13.22 51.55 65.68 3.92 57.86 94.69 58.96 66.43 35.47 67.69 24.10 80.58 46.28 43.64 45.32 27.17 59.54 45.06 60.16 52.88 17.43 48.19 52.91 70.51 67.39 32.99 26.86 81.96 40.70 49.21 25.58 13.00 39.25 20.20 28.08 87.94 5.55 76.16 62.85 72.72 51.27 6.32 3.74 20.99 67.20 2.05 14.54 12.73 45.30 66.54 84.40 32.27 68.76 47.36 40.17 40.37 28.51 34.70 25.07 20.93 76.46 27.81 22.06 54.17 83.99 59.71 63.38 8.11 6.50 99.64 47.30 4.61 87.42 97.26 32.04 1.09 64.12 95.87 46.94 10.33 43.43 83.06 92.89 13.86 94.81 73.00 86.79 23.07 58.20 38.80 42.67 1.78 68.10 55.75 56.29 51.51 -67.67 34.74 48.37 41.24 59.59 52.21 71.16 40.87 29.48 94.81 1.00 18.99 39.24 22.81 89.70 27.27 7.46 14.29 77.53 88.62 37.90 75.76 20.12 3.71 74.99 51.95 42.70 51.96 96.08 28.34 76.39 64.44 28.80 94.51 72.29 59.84 74.18 2.32 60.85 53.14 51.64 75.45 40.33 91.72 39.57 7.08 0.53 33.04 89.33 39.19 52.72 11.67 10.42 83.97 38.94 23.25 94.68 34.71 96.36 24.36 90.87 94.92 61.76 42.29 37.89 85.56 10.81 25.15 54.97 66.84 63.33 44.47 58.89 64.59 30.27 2.07 47.20 45.04 4.09 79.22 20.51 30.48 80.24 47.83 13.74 81.12 17.62 83.81 71.31 68.93 46.79 91.24 46.08 32.30 92.28 26.73 82.51 32.76 85.50 11.75 -83.68 84.33 59.00 20.43 9.74 82.42 53.01 38.98 80.62 27.43 6.46 11.03 15.06 14.98 45.77 85.05 91.68 22.68 32.79 32.67 88.09 80.59 59.14 3.22 27.17 35.80 13.93 73.33 33.77 74.03 9.96 91.00 39.67 66.49 7.58 58.47 81.29 82.71 39.44 52.54 43.80 66.20 45.91 28.88 27.17 67.83 61.16 82.89 68.44 24.12 41.82 50.60 19.07 10.16 15.07 78.10 38.78 87.09 48.73 23.11 30.47 36.01 93.73 49.12 31.05 53.16 54.79 95.77 26.69 47.21 50.01 79.20 12.63 39.82 19.63 42.15 98.93 61.19 82.46 29.06 77.71 62.46 48.35 30.93 32.14 90.99 60.51 1.12 62.34 14.94 61.10 28.32 38.70 69.48 84.59 11.92 25.39 59.44 81.44 54.90 -65.22 4.72 33.29 13.24 96.41 52.60 56.95 76.68 20.06 92.87 89.15 38.09 57.63 63.50 65.90 62.48 90.17 18.96 65.91 21.62 41.51 39.03 86.92 61.69 61.70 99.84 74.00 74.22 26.85 44.01 25.78 6.87 9.71 72.61 20.15 89.43 47.72 15.90 82.65 98.16 40.97 44.52 77.52 25.39 85.67 67.91 31.14 18.43 51.00 78.36 90.10 86.23 22.41 28.05 26.81 10.58 12.93 79.27 24.57 37.38 91.21 42.97 62.40 50.34 57.38 53.35 98.68 74.45 8.38 77.49 7.95 23.09 9.34 45.06 66.25 68.46 67.00 6.32 48.96 5.47 84.18 6.22 35.07 84.02 22.66 48.21 54.00 88.73 53.27 41.55 44.04 81.58 84.00 3.81 28.36 66.16 55.32 23.78 22.67 59.24 -69.87 57.90 9.54 54.75 82.15 16.41 18.83 75.53 72.10 39.00 20.54 29.27 31.40 58.91 11.38 61.26 0.46 61.88 68.05 57.84 97.09 11.70 48.52 47.88 76.56 5.44 19.39 72.05 97.49 69.10 81.58 30.82 54.65 81.35 87.95 55.71 9.10 36.03 56.74 54.34 77.01 51.16 55.13 62.37 90.99 62.52 44.36 74.97 9.07 54.41 55.08 83.11 85.48 85.54 65.09 43.94 89.55 60.84 68.66 86.58 10.49 53.35 31.67 58.66 13.08 36.14 15.80 65.41 24.45 78.46 58.65 23.88 2.23 66.09 46.21 84.64 11.67 63.32 59.38 11.48 78.02 20.38 91.60 62.22 7.51 78.97 21.44 47.56 4.15 19.88 99.01 35.13 4.43 63.19 91.11 93.14 98.12 26.82 35.00 46.72 -81.21 87.92 64.54 86.10 47.30 61.36 85.68 79.86 62.18 43.73 32.66 72.00 5.64 8.87 35.29 36.43 30.07 32.37 45.70 72.85 6.42 25.04 20.36 76.14 82.10 88.75 50.95 9.27 77.66 20.58 11.27 39.85 3.22 46.48 85.97 2.32 74.24 7.31 68.62 5.84 10.38 83.59 37.10 91.96 5.42 63.02 29.63 69.51 14.51 91.77 94.08 23.78 61.10 80.25 46.05 87.35 60.99 19.19 55.91 75.64 63.54 86.94 90.07 83.88 5.21 40.54 41.85 33.22 77.69 38.98 21.50 29.44 11.57 6.79 98.41 80.63 58.72 88.01 37.68 18.14 25.77 6.70 2.88 13.86 25.60 11.65 38.39 10.04 94.56 45.04 61.43 17.57 57.99 6.72 58.01 4.77 93.44 20.26 91.25 38.91 -95.60 28.86 62.61 89.83 70.65 44.31 65.40 67.61 26.41 31.12 18.86 91.72 17.74 32.28 1.30 90.63 44.55 95.74 81.64 68.10 98.64 90.39 4.82 64.65 76.39 22.48 34.45 63.76 82.70 87.52 4.99 53.10 39.16 41.36 61.01 6.79 1.76 74.66 19.89 19.93 88.34 71.96 53.47 44.80 83.07 63.44 59.38 80.75 10.23 42.31 56.39 16.79 37.03 39.76 36.57 57.11 97.04 81.68 79.37 62.43 22.62 70.33 71.72 26.42 69.07 86.56 70.21 36.26 79.56 58.30 78.46 26.67 65.70 9.33 94.24 92.32 1.49 26.50 94.59 20.14 42.87 80.09 20.17 58.38 39.63 35.32 50.07 89.08 84.06 76.54 60.72 17.93 83.59 78.24 47.42 12.34 79.96 45.26 17.74 30.68 -18.32 89.22 87.42 47.32 44.54 53.16 63.11 62.19 29.19 49.55 18.25 46.65 13.87 35.77 12.24 90.56 3.18 3.37 15.88 82.12 7.72 47.29 90.05 86.20 76.57 54.95 87.25 52.23 94.66 20.38 31.18 22.00 93.60 27.26 26.54 18.73 6.56 94.55 27.21 41.56 13.26 3.64 36.96 87.04 52.76 26.71 40.06 21.80 19.37 12.55 8.60 30.82 84.49 3.36 37.10 83.07 64.85 59.77 34.16 57.47 86.14 20.12 22.05 62.52 81.69 59.90 41.87 35.96 13.46 23.32 95.65 24.81 23.42 93.77 33.13 10.91 56.21 91.00 44.51 15.10 6.74 43.83 49.52 47.85 73.86 46.49 87.36 80.77 78.89 20.69 1.41 32.87 48.41 72.50 12.07 95.19 29.30 21.19 46.79 91.19 -72.75 67.96 13.02 65.10 86.37 83.92 64.35 34.80 92.90 34.47 16.61 13.80 56.62 9.11 93.78 1.28 88.45 16.69 75.40 94.47 39.83 46.21 65.85 50.56 71.75 47.55 80.51 91.97 35.78 2.59 39.95 92.64 8.76 27.69 17.81 31.61 97.63 61.68 31.84 61.31 23.15 27.76 42.69 73.45 30.98 30.62 24.84 93.80 2.50 25.72 51.59 63.67 92.91 91.24 23.56 98.43 91.62 96.61 60.45 9.23 99.71 60.26 55.50 72.22 51.10 22.22 55.69 57.48 68.71 10.45 95.43 59.91 18.27 42.31 72.85 65.24 99.90 7.68 93.39 43.07 19.10 75.22 98.23 62.79 20.70 32.11 80.72 88.32 78.08 9.59 36.04 63.59 40.51 28.82 98.62 38.79 20.03 59.37 46.93 54.01 -40.04 9.99 50.40 89.52 35.22 25.66 3.37 5.20 45.03 59.29 56.16 51.01 74.35 68.86 36.71 77.23 54.60 61.42 90.93 50.32 98.31 77.49 70.56 27.40 2.44 23.50 70.13 3.41 71.05 81.64 3.27 89.55 1.22 20.18 17.30 55.45 35.55 28.02 32.09 32.81 7.96 43.32 42.46 87.75 22.15 75.95 24.56 7.52 53.11 36.58 62.24 35.97 43.00 41.25 64.73 65.42 4.45 78.63 3.28 12.04 19.57 87.90 76.60 57.75 39.20 83.94 35.17 82.82 29.80 28.74 59.20 43.72 14.81 53.63 28.22 61.70 7.72 39.85 89.89 96.91 67.67 32.31 57.93 74.05 69.98 27.05 32.32 17.50 76.52 10.27 22.82 1.51 17.72 27.42 39.62 22.72 12.78 89.37 51.10 28.47 -10.63 9.42 81.84 87.97 48.53 21.42 79.88 12.95 72.21 71.57 70.34 31.20 9.38 70.51 98.24 53.76 93.71 97.42 51.84 6.21 47.87 60.62 86.28 0.84 78.64 67.87 65.95 77.19 71.95 86.16 2.89 71.22 28.35 10.24 11.96 45.95 96.90 78.58 29.90 59.98 28.01 25.10 43.00 58.38 57.57 7.12 48.87 34.77 74.25 56.92 66.41 15.37 41.76 52.36 45.83 86.65 11.86 92.24 32.42 96.01 70.62 44.98 6.30 62.21 1.17 72.34 23.28 0.31 34.04 58.42 2.51 91.95 99.63 48.42 10.61 16.40 76.26 89.62 83.09 61.78 74.45 77.78 96.24 67.85 54.35 20.19 55.76 89.33 58.74 94.96 69.19 43.39 0.32 2.26 49.78 71.04 74.96 63.75 0.32 46.93 -98.15 48.32 72.54 55.30 2.18 29.59 22.35 28.05 44.70 59.79 7.08 67.99 59.30 99.75 29.27 28.31 10.64 18.95 42.87 42.62 42.89 41.54 80.38 26.52 41.64 7.25 11.58 47.08 71.91 30.79 83.31 76.39 83.23 10.84 44.65 95.29 57.48 31.38 66.37 25.36 73.02 98.11 4.96 26.56 42.90 91.78 51.07 31.63 72.73 71.97 63.45 20.21 81.61 6.89 1.00 62.90 74.50 43.89 51.11 10.40 3.79 20.13 0.32 79.50 32.11 35.28 3.75 63.70 66.79 92.86 62.13 94.80 50.84 9.35 39.19 15.79 70.74 83.30 75.55 88.48 41.43 99.28 88.85 13.53 6.22 7.82 45.91 73.64 8.87 46.11 97.67 56.06 45.00 65.81 47.12 21.87 69.59 59.62 67.10 11.32 -36.13 86.55 11.87 89.46 11.71 74.38 69.37 57.73 39.00 54.74 37.02 61.87 14.58 18.28 70.24 70.41 60.94 49.28 2.59 58.19 84.62 32.94 83.65 60.58 0.46 19.68 79.83 39.19 90.22 94.58 32.43 64.95 60.56 81.67 40.12 98.44 44.57 82.56 49.08 1.52 60.30 78.74 58.74 32.67 25.60 52.44 49.30 11.82 12.73 75.10 52.63 73.48 41.71 14.48 45.15 65.04 2.43 46.59 39.50 82.01 34.57 66.91 40.50 88.07 82.25 29.41 34.23 49.29 51.01 2.25 96.43 42.68 6.80 76.87 72.70 50.05 34.85 21.27 91.33 43.14 88.92 69.13 10.54 58.54 69.65 26.53 70.71 40.73 82.14 32.60 18.95 28.86 94.06 50.17 42.67 26.71 13.79 77.43 77.11 54.89 -59.10 95.27 59.82 74.88 61.94 52.02 32.75 95.95 43.43 25.49 79.34 48.11 86.22 53.79 11.39 34.39 58.38 88.85 52.02 37.22 2.04 30.16 44.66 92.02 77.85 29.51 19.06 13.87 73.14 1.90 80.61 96.77 19.78 23.84 23.45 17.52 72.27 27.98 13.97 85.25 65.71 23.03 85.54 33.17 1.99 22.98 10.53 64.58 30.06 0.57 17.71 52.04 7.80 81.83 61.66 10.42 93.20 16.78 87.71 1.47 61.28 29.52 97.14 8.57 23.36 38.85 27.89 6.36 79.70 17.58 54.68 47.52 70.05 61.98 10.07 20.75 25.56 21.25 13.32 37.33 71.70 35.18 65.58 86.50 96.80 0.22 4.51 7.10 75.41 93.18 99.62 13.63 5.23 59.88 44.60 12.54 38.27 85.94 68.58 7.14 -87.47 8.55 72.25 50.09 66.78 15.64 44.77 72.75 0.55 88.94 57.98 83.91 29.10 6.18 5.43 9.71 84.53 93.12 13.19 83.38 12.88 87.37 70.33 2.03 14.76 25.26 90.57 35.39 48.50 64.91 0.31 58.14 88.95 65.01 31.74 42.63 65.63 64.57 93.04 35.99 6.90 12.89 89.64 86.12 85.04 37.91 71.72 87.11 37.96 59.79 62.33 2.36 56.16 93.51 15.24 28.54 57.12 56.69 42.72 97.54 71.39 69.12 96.87 11.11 40.22 52.05 60.12 95.40 25.71 30.36 80.62 71.74 77.54 39.23 25.00 28.49 8.13 49.45 88.72 27.35 15.89 97.19 79.08 70.67 14.57 69.37 8.10 25.63 13.45 40.65 66.81 76.05 16.77 54.59 98.90 90.76 32.07 1.67 12.22 36.35 -70.77 13.13 50.57 65.08 54.94 63.64 89.88 22.92 38.22 71.68 47.41 39.45 8.46 50.35 52.06 39.93 40.68 31.12 69.89 6.82 19.29 15.87 82.11 71.43 5.23 2.56 35.63 89.91 98.04 66.51 78.09 41.97 27.35 53.67 49.08 37.04 20.78 70.97 85.27 56.89 59.13 47.80 9.48 41.25 77.68 8.39 7.07 66.22 13.95 38.73 29.03 88.13 57.22 44.79 96.82 41.99 72.98 76.21 15.73 57.09 88.65 60.91 71.54 72.22 76.31 64.99 84.07 19.67 6.75 63.28 49.20 24.18 44.74 91.24 38.52 39.38 34.85 5.52 57.63 33.53 97.63 51.37 14.79 18.99 92.58 87.94 7.58 79.80 13.64 86.05 65.64 90.12 84.12 37.75 58.06 69.45 64.29 76.43 20.85 43.79 -26.67 68.91 39.83 46.33 19.15 40.87 14.09 61.39 3.24 59.75 45.93 85.38 38.87 8.81 82.15 93.27 26.02 58.26 57.32 71.79 38.48 12.19 34.77 17.39 42.55 57.69 21.43 61.51 93.79 29.49 62.96 96.56 60.78 32.34 30.71 63.59 6.95 28.48 9.62 27.50 73.90 11.97 99.99 69.69 86.50 44.06 5.37 11.97 37.04 75.67 60.71 24.48 58.51 88.02 66.31 88.12 45.82 67.17 86.76 48.76 98.96 28.68 17.87 64.19 83.12 78.27 29.53 8.21 58.70 28.89 63.92 9.21 34.33 5.41 37.00 70.50 16.58 7.18 80.76 92.87 3.56 46.02 77.45 56.37 88.35 1.28 63.98 71.81 9.55 45.14 61.56 84.59 78.61 31.82 87.94 40.09 42.29 26.06 78.97 6.93 -65.89 89.86 48.92 2.30 96.00 64.81 90.47 62.21 39.87 51.04 99.03 87.55 49.50 52.06 79.28 47.30 52.04 96.01 84.70 29.82 54.53 74.97 3.57 18.96 97.63 39.07 68.84 16.39 63.81 10.30 85.31 55.25 44.35 90.51 60.24 2.08 75.37 74.36 52.15 11.46 80.49 93.79 79.67 62.56 48.85 83.62 98.65 69.92 74.23 47.13 83.55 5.89 9.33 30.65 28.15 12.91 10.36 44.09 55.65 59.71 42.10 73.86 14.38 13.23 72.91 31.44 99.71 34.43 91.42 15.26 77.75 69.54 52.51 57.23 58.76 37.12 1.47 78.25 67.90 52.69 58.58 15.64 47.44 4.54 0.70 14.38 80.27 90.48 12.78 93.04 38.38 28.27 57.73 24.19 70.97 69.69 32.80 87.73 13.64 83.77 -23.77 86.33 7.82 81.67 26.72 58.54 56.59 96.32 90.66 96.35 88.10 60.21 45.70 78.93 84.82 83.57 70.32 99.89 96.95 48.47 27.81 29.54 94.99 33.83 75.60 27.77 54.23 88.53 1.74 29.86 90.65 71.57 41.07 40.43 70.39 30.40 74.23 69.11 74.43 46.64 38.47 64.41 67.10 55.72 74.59 10.80 53.59 86.11 7.32 92.74 65.43 79.87 95.53 81.11 65.57 14.25 46.21 10.55 62.18 64.24 7.30 20.50 16.00 84.30 30.37 22.71 80.35 77.13 35.81 46.37 49.45 91.25 68.11 12.79 74.00 98.85 77.74 50.59 92.67 74.10 70.33 65.66 29.89 66.97 42.16 42.93 3.14 77.75 5.09 77.15 49.46 75.64 94.93 30.52 65.79 84.85 42.91 45.65 69.28 9.66 -5.91 71.62 94.60 93.52 19.76 12.66 42.79 44.32 2.25 73.69 77.58 30.16 10.05 46.46 59.98 45.79 80.01 86.38 67.46 9.72 9.08 74.61 85.64 45.16 66.36 23.60 70.09 26.98 49.85 28.84 5.18 52.05 84.14 77.33 72.11 52.16 87.39 27.77 86.85 83.21 57.71 2.93 94.44 9.69 18.39 62.17 11.48 48.48 24.10 4.00 88.02 36.47 87.80 32.16 63.60 64.37 84.63 6.45 18.53 43.58 97.33 63.61 27.87 79.04 99.58 35.45 53.74 58.82 82.43 33.80 39.25 29.30 42.51 8.27 78.73 56.68 70.39 84.52 88.38 60.42 86.60 94.33 40.09 10.46 46.87 95.79 72.99 97.01 76.21 44.78 41.05 5.67 3.09 48.37 24.02 44.20 92.63 96.69 26.79 85.20 -79.08 51.07 16.81 94.17 62.91 36.53 77.11 37.50 59.73 77.40 97.98 15.76 43.91 91.87 92.51 35.21 9.00 72.18 41.17 16.02 53.39 73.36 20.92 23.10 22.36 95.21 70.68 14.49 94.02 24.92 46.74 17.37 18.05 22.02 94.71 50.51 37.61 63.92 79.06 68.79 70.78 37.84 16.72 10.22 28.88 80.73 4.47 7.95 0.00 84.68 31.59 39.83 57.39 17.86 7.39 28.26 0.97 27.39 88.97 50.80 87.46 72.94 58.89 29.31 69.76 64.52 46.45 93.09 20.45 44.79 80.28 37.17 81.43 3.46 73.58 79.84 75.98 4.26 43.92 22.50 56.73 61.41 44.59 21.27 54.24 8.23 34.68 0.23 49.48 26.34 26.88 42.84 99.43 23.57 12.75 56.11 92.46 4.89 27.42 63.55 -82.58 60.66 43.79 76.11 55.86 36.51 46.67 4.70 82.46 92.63 47.36 92.33 16.11 92.76 29.48 76.07 74.81 31.34 1.65 52.22 83.78 7.85 12.67 83.97 60.38 45.85 28.01 27.91 56.51 23.55 19.49 79.92 94.70 64.13 66.09 23.19 59.78 67.99 90.93 16.36 72.96 72.54 20.65 3.38 33.21 62.68 0.70 67.04 13.33 3.50 9.76 91.87 19.01 44.89 73.28 5.17 71.41 24.02 23.50 75.04 64.12 26.22 44.59 96.21 99.89 76.00 4.32 98.61 11.56 37.55 13.35 49.09 69.01 31.78 71.73 95.73 78.06 17.77 5.79 78.14 27.91 12.85 92.27 77.69 36.17 18.55 60.88 27.92 26.19 31.63 74.07 2.09 16.02 55.24 9.09 26.84 7.37 43.39 69.72 2.56 -98.29 48.75 30.93 54.86 51.38 38.52 69.16 53.00 12.14 79.09 56.29 75.36 86.64 13.71 57.84 46.03 12.93 41.06 13.74 63.77 78.46 42.34 22.19 63.90 90.21 62.56 15.56 83.25 21.96 40.04 31.93 53.94 69.97 8.91 59.51 80.55 17.04 87.94 38.43 74.60 77.10 37.44 39.70 43.93 1.71 43.29 38.89 6.31 69.53 71.38 60.21 43.55 83.39 68.50 15.06 39.51 41.56 69.84 22.33 24.69 29.81 73.93 9.61 70.19 19.58 29.09 3.95 58.70 28.14 48.35 78.08 99.20 83.38 95.48 13.97 15.48 23.38 19.25 66.24 84.67 7.66 92.16 84.92 76.49 61.10 82.12 89.00 2.43 64.66 74.21 60.84 93.07 11.51 5.81 50.42 84.32 23.71 36.92 7.58 10.19 -91.54 87.95 70.75 21.34 86.52 4.52 28.22 45.67 18.16 31.78 25.26 73.14 85.83 76.70 14.69 57.06 23.73 44.97 18.44 51.00 69.93 15.39 52.44 41.08 27.25 39.73 4.34 37.87 17.75 64.77 42.87 76.47 55.46 88.63 87.90 5.07 76.74 48.63 19.13 56.56 79.46 21.83 58.96 56.79 64.90 5.32 52.93 16.39 93.82 95.06 94.44 14.06 91.67 68.03 73.85 56.07 76.44 28.46 19.55 47.63 26.79 69.73 17.22 65.88 92.86 0.18 98.87 6.85 80.66 8.03 78.30 0.47 60.94 75.54 16.75 49.39 38.19 33.30 47.05 86.56 93.99 4.86 50.15 59.36 44.71 19.25 75.55 79.50 39.52 8.15 95.46 29.89 91.86 26.90 95.52 18.00 58.36 7.43 47.53 75.50 -18.36 13.33 80.98 4.51 82.55 47.54 3.78 69.02 87.98 45.47 79.45 94.65 84.53 74.23 76.45 83.22 75.60 36.06 35.82 69.24 20.81 66.86 19.22 44.64 1.39 51.11 26.09 61.01 54.21 6.98 34.02 49.53 13.05 31.88 16.15 4.16 16.15 72.67 89.27 87.00 100.00 98.14 11.03 90.36 27.61 37.11 43.83 67.80 8.91 11.79 31.24 57.95 32.13 52.93 82.51 40.33 85.95 37.34 33.57 94.80 72.20 3.27 5.49 67.06 37.22 25.84 71.97 66.53 93.60 66.55 0.87 1.64 32.52 28.38 29.98 7.18 45.21 61.42 70.21 2.10 43.26 55.95 14.30 74.08 37.03 46.34 69.09 68.06 81.09 59.04 60.17 27.06 10.56 91.27 86.74 31.20 70.66 59.05 84.32 32.89 -24.74 52.15 64.05 89.09 8.87 43.45 39.67 23.07 18.66 87.33 97.02 94.12 48.30 58.12 8.38 96.46 8.03 0.01 65.31 10.81 31.25 60.92 91.52 84.91 1.62 84.49 84.39 70.73 55.77 18.57 92.79 52.41 9.21 87.40 51.18 33.81 42.03 40.48 72.62 67.19 91.80 22.00 79.36 72.90 32.74 41.69 9.03 0.08 29.30 85.83 19.81 85.61 69.52 68.86 24.28 19.49 89.95 16.21 94.58 75.46 3.09 33.51 56.70 44.52 41.44 49.11 89.12 32.49 32.14 43.69 3.99 46.32 51.45 62.14 54.14 6.21 62.54 22.03 67.71 77.48 89.62 36.04 74.70 51.15 24.14 80.32 56.74 44.20 35.35 7.47 12.12 3.85 7.80 91.41 28.75 84.17 32.77 80.13 49.77 59.67 -1.95 62.24 30.51 49.31 66.72 86.87 34.71 19.64 95.36 6.02 76.82 78.87 97.48 10.40 12.98 73.02 41.10 38.17 8.59 42.95 41.06 46.40 35.45 28.27 33.81 28.70 78.12 35.23 39.51 69.66 94.46 38.77 76.43 66.88 79.78 21.06 94.26 57.09 48.99 20.83 80.90 24.15 24.76 85.49 60.17 60.32 54.59 50.29 19.84 88.48 64.19 32.16 86.21 89.19 44.86 82.19 37.76 74.05 52.76 99.39 30.50 99.55 28.44 50.71 63.68 19.12 47.75 35.23 3.45 27.00 93.98 28.20 86.05 40.37 62.78 18.84 68.20 62.19 16.91 34.00 90.20 27.27 41.37 72.92 55.15 78.59 16.94 33.06 81.30 3.50 11.70 13.59 31.12 98.09 23.18 34.84 61.06 40.81 37.36 63.11 -34.53 67.65 87.22 15.87 14.17 99.51 43.97 59.80 46.00 46.82 45.93 9.60 24.46 37.25 64.38 76.39 43.83 89.81 35.92 78.81 85.37 33.14 1.06 59.62 59.57 69.02 85.32 47.88 52.53 68.10 5.96 96.93 53.63 55.20 46.67 43.63 50.55 48.23 36.84 99.45 57.92 22.91 73.02 48.03 77.75 42.76 82.06 85.48 38.90 74.28 80.65 11.99 15.77 32.59 6.47 7.05 32.25 67.17 78.83 27.91 13.95 50.87 87.59 62.83 6.79 1.13 67.18 87.92 3.73 20.98 77.34 19.60 84.70 48.83 18.25 84.34 91.02 37.96 89.73 38.73 67.99 72.40 95.09 28.34 94.69 68.02 65.21 11.68 28.79 21.41 52.85 99.10 76.93 45.49 42.45 35.66 97.24 62.07 53.60 17.79 -47.13 98.33 67.54 44.23 32.35 91.77 21.04 96.13 84.67 47.40 99.23 28.72 63.54 33.60 47.61 85.96 71.01 85.47 18.75 61.00 46.83 65.08 91.42 31.11 79.51 71.29 16.82 16.68 30.88 15.48 77.84 95.07 83.38 98.57 22.49 38.47 77.44 8.18 61.18 48.32 80.12 9.47 59.59 81.18 54.87 8.28 47.90 20.50 50.86 28.76 3.70 17.39 77.42 50.04 88.92 92.25 74.47 64.98 25.48 6.22 35.65 80.62 76.51 28.19 55.84 20.46 69.69 88.58 59.23 31.81 63.19 46.59 76.33 21.07 62.60 37.20 78.29 12.85 30.51 29.86 98.24 18.80 6.47 68.65 20.73 24.13 17.02 79.74 45.87 30.12 85.17 71.25 96.96 63.40 97.42 25.34 89.50 48.28 1.50 43.35 -31.61 6.36 54.25 90.75 89.94 14.84 65.54 34.14 40.82 31.84 30.64 1.72 3.12 2.10 11.37 50.10 73.76 77.80 91.84 4.53 76.97 0.07 93.15 13.62 4.02 61.96 38.21 1.21 89.58 75.33 0.84 1.55 7.63 12.13 44.77 91.11 41.07 88.82 77.41 15.69 42.92 82.77 63.17 94.10 13.55 4.49 33.40 32.01 84.65 38.75 98.40 34.52 99.77 49.16 32.29 98.41 77.86 11.75 15.68 9.27 3.70 67.56 20.91 10.79 71.71 0.24 0.59 63.16 59.08 49.78 45.16 83.74 65.42 60.09 5.09 38.59 89.36 61.78 1.97 29.29 78.94 30.13 43.89 56.18 71.14 22.39 32.29 67.46 84.01 34.45 21.28 63.06 76.71 97.99 28.12 36.30 65.17 41.01 50.09 21.71 -86.00 73.99 22.34 7.18 17.70 71.14 83.37 93.86 34.87 68.92 51.16 7.75 49.97 40.59 57.95 79.71 15.34 64.29 30.09 71.94 63.21 23.13 31.67 31.77 75.00 70.14 78.48 2.88 95.01 18.98 92.86 21.48 45.56 32.89 69.21 44.26 25.28 73.26 61.29 32.00 83.60 40.38 40.14 0.10 69.29 40.27 79.93 12.00 78.37 21.61 55.53 50.61 94.96 96.89 59.38 86.47 64.25 24.51 50.78 19.29 70.84 91.81 79.64 32.89 95.60 40.20 72.43 41.59 79.53 33.40 34.48 11.31 39.35 75.71 50.44 84.49 38.90 95.57 44.55 99.32 9.57 86.42 94.04 28.21 59.62 69.13 21.12 87.40 76.55 54.68 23.29 58.24 3.28 79.28 34.99 65.43 60.93 61.02 95.42 69.77 -90.72 95.11 57.62 32.88 4.87 13.76 52.16 77.15 6.87 76.82 49.24 4.99 79.45 33.16 71.81 98.42 19.43 44.92 21.05 83.38 40.90 1.41 76.03 24.60 7.98 25.02 88.77 12.66 94.76 61.37 1.65 37.39 87.16 25.04 57.40 9.11 85.39 13.27 66.07 1.61 19.90 17.83 81.09 37.81 67.51 60.99 60.30 74.24 83.76 41.63 10.39 16.21 25.38 96.73 33.29 96.98 64.14 71.35 40.57 11.11 73.77 27.98 40.46 3.09 45.85 57.86 66.30 91.72 94.61 60.13 3.08 54.49 36.41 42.91 27.52 81.49 55.71 17.70 25.95 22.54 75.52 70.58 7.66 85.65 99.30 58.63 15.04 64.69 32.85 47.08 77.51 0.28 68.26 91.64 51.66 8.10 86.34 98.35 69.32 43.65 -9.21 14.33 61.86 77.71 93.51 3.43 71.25 62.07 73.68 74.76 68.07 45.69 37.49 19.90 10.93 22.42 45.94 36.40 39.01 55.57 75.25 51.18 51.29 47.08 98.24 76.71 4.91 17.47 48.10 68.06 44.61 20.34 95.84 4.42 22.88 27.79 15.90 61.80 39.57 34.46 1.15 63.12 45.17 99.87 43.30 78.42 68.82 9.21 17.03 82.22 52.73 81.67 2.42 30.51 57.82 98.61 68.10 33.36 33.26 58.58 34.47 71.34 33.31 11.67 94.35 59.35 7.63 7.39 41.20 56.24 7.91 53.96 18.44 61.04 57.67 68.52 57.74 22.21 36.05 83.75 67.51 21.58 38.16 68.51 90.94 84.52 1.23 10.96 26.58 94.98 87.28 28.62 36.65 30.52 17.08 64.12 40.69 3.55 61.35 62.81 -18.62 90.82 98.70 47.75 29.14 3.76 83.67 80.93 44.65 10.75 36.80 38.32 56.97 26.29 5.93 28.05 81.29 74.38 45.34 48.26 23.61 77.70 36.03 47.94 23.93 92.08 77.30 63.99 87.82 42.34 69.01 37.36 27.85 69.77 9.46 90.50 59.79 57.58 31.63 5.75 97.14 1.46 91.58 21.38 52.24 85.91 62.41 94.44 47.02 25.83 19.03 45.09 44.52 49.19 76.15 57.60 39.66 61.36 79.31 40.18 64.77 24.34 62.01 73.43 7.58 79.57 31.60 23.62 74.94 63.60 98.47 32.36 87.60 70.62 48.39 1.84 37.80 34.15 66.55 24.43 18.70 95.21 14.77 57.67 70.67 32.15 48.66 15.65 54.52 77.46 74.12 80.57 97.07 12.86 62.06 94.72 98.72 14.35 98.15 51.56 -88.85 6.10 58.70 3.67 12.98 84.91 99.30 58.28 77.54 44.58 24.08 73.71 22.61 2.41 78.85 74.53 93.64 89.16 61.00 16.09 81.23 19.78 72.85 16.48 16.88 46.31 79.80 63.51 2.13 59.83 33.79 45.00 44.10 55.34 99.27 27.08 38.62 73.43 80.87 35.86 7.14 82.08 40.32 46.60 11.26 48.97 95.18 3.83 61.73 13.54 40.81 54.23 43.68 25.84 28.63 44.17 46.71 89.81 97.80 64.44 9.29 69.48 16.22 76.27 67.91 54.53 15.80 64.50 4.11 32.65 77.80 88.70 67.15 89.63 64.91 95.56 64.63 80.76 66.30 83.20 40.42 78.26 60.82 33.96 0.69 97.26 6.30 13.67 87.43 57.01 57.35 55.32 4.43 23.35 27.53 65.20 60.79 22.59 70.12 81.50 -14.07 5.86 99.42 17.79 87.58 96.52 93.56 60.72 84.85 39.32 48.35 95.00 92.01 40.81 33.54 54.50 58.01 11.65 95.58 43.37 78.34 14.07 32.51 13.45 67.57 11.67 41.08 22.06 14.45 72.99 37.81 14.04 40.22 66.99 12.83 19.01 78.49 32.38 2.96 16.01 74.85 67.58 58.03 76.46 20.54 13.35 26.03 63.70 5.84 54.25 5.94 27.31 36.21 0.26 44.48 10.25 95.55 75.51 51.57 4.66 62.04 54.39 57.91 46.27 44.15 9.41 25.04 97.79 62.58 21.06 29.51 1.07 45.20 95.62 41.30 37.08 66.41 56.01 74.13 45.94 90.48 72.16 43.42 27.44 50.72 73.85 29.55 65.42 19.71 51.53 69.03 66.93 45.30 54.65 4.14 30.88 62.50 72.99 12.57 77.08 -59.52 74.79 35.42 67.27 29.47 43.68 21.07 74.40 41.74 65.13 37.47 4.28 92.37 86.24 63.62 11.55 73.06 38.42 19.43 52.50 28.49 22.84 42.90 63.93 68.95 10.23 95.55 56.69 51.74 82.34 19.70 74.72 13.79 82.44 8.85 33.64 45.63 58.78 82.57 63.76 24.33 35.97 40.77 37.92 52.56 92.06 32.36 75.61 14.53 84.34 72.35 71.93 33.98 32.48 85.11 95.77 30.97 6.28 65.26 56.36 83.66 32.80 16.48 74.87 34.03 29.82 66.38 45.40 63.34 62.12 98.83 12.99 65.98 65.55 31.04 13.11 69.51 22.73 54.05 90.02 67.06 64.28 18.20 76.67 55.18 14.47 67.48 85.70 46.68 87.29 30.47 72.05 42.91 87.52 44.27 25.59 80.18 30.70 14.65 4.68 -60.14 35.11 3.06 71.77 64.75 25.34 70.03 41.28 52.68 53.00 24.34 16.05 27.16 29.32 3.23 63.84 36.59 95.81 77.53 96.06 59.92 80.40 2.97 77.65 97.57 97.33 12.89 32.00 8.14 25.62 10.41 33.34 21.32 56.13 99.92 65.16 82.86 91.99 3.35 18.91 26.94 63.45 70.89 88.62 85.52 55.00 26.77 67.87 55.30 61.22 28.95 14.92 89.92 45.11 77.22 79.40 11.96 28.74 13.08 63.02 54.26 32.77 80.26 71.11 97.14 89.99 98.46 86.01 89.01 64.28 99.93 6.58 0.61 3.55 33.69 65.77 72.60 95.66 16.13 69.96 10.31 93.14 5.76 84.75 38.55 56.43 30.96 72.18 32.25 75.32 90.95 86.35 28.15 24.96 87.00 82.50 88.11 11.83 79.55 37.55 -91.37 17.95 65.05 6.88 42.23 12.27 17.14 45.81 54.28 26.87 53.42 68.78 86.94 79.99 99.52 54.44 66.71 98.25 71.02 88.33 35.93 59.63 40.10 78.60 43.09 62.06 96.48 13.48 18.30 37.25 43.05 3.78 60.23 22.06 17.85 25.68 78.60 54.01 45.21 21.08 4.21 94.88 83.06 53.82 94.28 99.87 31.98 14.76 15.70 97.12 5.38 40.93 0.88 60.72 84.49 77.36 36.46 37.77 73.56 87.36 25.89 56.98 51.94 67.01 37.15 27.63 75.02 68.96 87.30 2.93 57.94 11.09 38.81 32.71 51.84 87.60 63.84 23.32 31.93 71.11 13.69 63.79 11.18 54.89 44.15 94.20 31.25 26.51 61.74 99.96 5.14 91.35 59.95 7.52 7.27 3.96 12.83 64.33 3.98 8.14 -51.05 66.73 62.05 75.40 48.10 24.68 24.05 69.50 20.65 20.04 3.79 60.74 69.32 66.90 36.78 6.69 71.26 78.05 60.57 21.63 80.64 77.61 49.23 68.77 79.02 69.37 41.72 35.28 2.24 28.44 15.31 88.76 37.17 98.37 66.68 28.02 92.57 93.82 84.86 72.97 74.32 90.40 54.90 23.62 41.93 75.34 47.48 46.44 92.29 5.81 29.41 20.13 31.94 89.67 95.86 7.99 85.58 66.81 73.13 43.28 76.43 50.42 4.96 91.21 73.28 33.84 99.66 22.57 74.11 45.00 80.37 58.82 62.31 96.78 26.93 51.36 23.10 88.93 46.76 9.47 33.20 39.17 79.29 91.76 40.46 48.89 69.44 21.33 74.07 66.82 49.38 0.49 17.92 55.46 72.13 94.65 31.55 3.44 47.51 37.51 -27.93 94.17 39.34 83.92 55.52 22.22 41.75 91.35 94.79 25.23 73.60 31.21 70.46 84.91 63.55 0.03 59.49 37.34 96.45 80.47 39.28 40.12 77.03 22.69 16.70 43.58 80.77 73.18 51.19 73.17 48.56 33.91 29.19 15.40 8.44 50.71 24.98 78.62 91.58 7.92 21.25 25.57 52.67 12.47 17.47 11.09 23.63 54.74 29.09 43.77 91.86 82.96 27.70 25.29 87.77 90.61 81.18 92.84 4.66 28.65 92.98 55.87 22.83 87.66 3.48 92.87 62.89 42.11 53.43 26.94 84.21 39.50 4.39 50.55 29.58 46.94 80.71 78.77 85.72 94.40 70.70 12.96 33.48 78.10 92.03 52.65 8.10 15.73 61.09 3.94 74.17 49.25 34.36 19.14 39.58 35.85 31.25 47.92 78.26 32.97 -80.03 22.11 31.12 83.13 14.96 79.42 23.33 10.30 81.37 12.75 98.81 80.74 48.80 98.62 68.93 27.47 65.43 86.53 90.37 2.73 87.44 96.50 61.64 72.90 82.35 79.23 5.79 68.39 16.95 53.88 68.86 79.41 37.34 80.87 45.78 24.78 36.28 26.72 85.27 3.23 74.23 97.26 34.41 29.57 4.12 29.45 0.30 78.48 30.63 38.40 7.60 53.03 1.68 42.48 65.94 43.06 68.70 20.27 74.65 32.21 88.54 24.60 64.82 64.48 30.29 57.96 41.45 10.93 86.10 56.53 59.30 20.91 31.44 41.24 58.42 54.55 73.70 68.81 99.85 40.33 17.79 4.19 78.96 83.28 87.07 77.21 62.40 15.93 71.67 68.85 85.92 23.01 36.96 44.07 66.46 38.66 70.75 14.45 38.28 67.77 -27.68 52.87 13.04 89.51 98.51 6.00 35.11 94.82 13.42 52.40 78.09 4.28 5.37 96.38 94.79 63.61 4.82 64.43 92.77 98.16 56.53 99.80 29.49 8.41 0.70 54.90 83.88 99.41 56.50 81.85 87.49 28.74 3.97 29.07 16.01 49.05 62.08 4.05 67.31 27.85 16.71 20.37 27.28 52.28 84.31 48.12 69.11 85.75 31.67 81.66 84.81 61.00 30.77 44.54 62.54 75.14 83.53 89.74 82.97 53.96 36.89 61.54 10.92 0.05 73.80 54.55 48.40 38.28 2.59 25.46 48.80 49.67 75.03 20.05 48.92 43.64 50.76 42.46 52.93 85.50 35.95 72.34 22.33 63.38 15.64 43.95 23.89 94.23 31.53 33.03 30.58 60.44 73.78 41.56 12.85 28.25 74.45 24.32 21.69 87.84 -51.81 62.76 10.01 71.88 26.38 26.95 18.80 48.22 97.36 61.16 27.07 27.58 23.86 10.01 81.71 79.52 83.59 2.66 97.53 15.32 55.90 98.03 81.12 42.70 1.97 2.21 20.49 43.48 70.32 0.56 93.54 85.06 61.80 43.71 68.18 68.67 69.10 18.24 87.55 20.42 90.07 8.25 17.07 35.57 56.39 94.12 23.32 98.35 51.54 46.78 83.99 31.76 55.01 40.40 91.40 9.50 34.98 90.23 77.26 57.38 10.73 79.26 14.01 96.36 80.39 5.90 71.95 37.28 12.28 31.69 87.23 25.83 59.97 93.68 35.68 51.91 0.57 23.80 37.49 15.96 10.82 15.71 0.63 59.29 10.64 41.14 27.76 91.36 13.28 34.31 12.46 1.57 70.69 98.22 67.61 29.36 16.46 11.98 51.46 99.25 -24.00 95.25 5.88 45.50 93.23 35.01 20.54 45.22 41.94 17.43 5.29 3.07 7.04 85.11 46.97 88.31 48.89 16.97 36.68 33.88 78.29 53.37 29.77 44.63 19.71 25.31 58.36 30.21 61.94 26.45 0.08 89.00 55.89 67.96 28.81 0.47 78.75 24.47 81.76 72.45 82.38 21.03 50.07 94.78 7.22 75.48 44.76 0.41 27.78 90.46 65.68 30.98 22.27 97.25 32.10 5.98 93.27 5.48 14.42 36.67 45.16 58.87 8.55 23.61 85.55 86.10 6.18 68.26 7.70 79.20 86.02 73.67 42.96 61.35 20.85 25.54 1.24 72.50 53.68 27.38 73.75 93.77 52.29 18.89 51.02 96.90 5.93 54.47 52.67 84.10 31.76 44.96 52.10 81.42 59.79 83.48 78.86 12.43 37.00 12.65 -12.48 14.84 90.64 41.13 46.12 78.66 11.91 46.49 36.16 6.38 60.49 0.72 27.13 57.65 16.19 19.91 50.87 15.36 20.96 75.95 42.08 30.41 43.81 6.42 65.45 86.41 87.74 41.83 87.08 57.89 3.79 29.06 20.76 33.65 72.46 48.52 29.61 70.53 40.08 68.52 14.19 53.00 67.15 51.55 83.98 20.59 48.46 68.97 0.09 80.36 84.89 36.75 89.27 21.44 28.96 15.71 55.38 83.57 91.97 6.12 27.26 42.93 53.93 52.29 56.77 10.36 92.45 73.81 62.22 77.47 76.90 66.82 88.02 63.60 6.30 31.39 34.28 69.82 29.82 57.63 49.92 39.05 96.32 51.06 4.85 92.26 28.14 70.64 14.48 54.53 55.30 78.27 96.27 7.38 94.48 71.40 36.48 78.03 39.69 22.35 -54.21 53.08 17.72 69.92 11.55 67.23 12.45 86.14 82.94 83.60 54.51 69.04 25.87 26.90 28.88 63.05 84.43 32.20 39.05 80.34 29.89 31.91 36.77 7.13 10.20 8.26 92.09 34.56 43.91 69.76 45.77 14.42 71.65 62.55 6.95 14.24 3.59 48.91 58.78 6.42 58.63 30.16 80.62 58.94 50.14 78.52 88.50 5.79 1.81 38.45 57.68 24.05 22.67 54.02 12.24 87.02 42.82 66.51 51.85 86.69 64.70 83.39 79.55 80.62 27.82 33.56 47.83 23.84 13.52 62.88 67.03 11.94 81.24 17.07 61.47 38.88 13.08 69.97 69.05 26.42 42.94 89.55 73.92 25.79 86.98 8.18 40.54 50.62 1.67 14.93 47.94 1.39 50.04 81.14 49.09 74.27 46.93 67.90 66.94 93.86 -67.87 16.74 38.39 2.66 4.02 9.87 81.29 85.53 3.03 91.65 70.96 15.36 19.93 39.63 96.94 85.79 92.36 55.59 2.97 83.38 81.31 60.33 67.10 99.28 64.22 50.50 96.41 66.07 59.85 3.20 90.08 69.26 95.11 17.55 59.19 4.40 94.78 26.40 73.74 95.37 57.26 30.39 31.76 72.82 2.71 11.13 1.86 86.62 60.73 99.94 98.89 18.53 5.56 7.38 5.59 39.20 77.00 29.89 85.83 18.68 42.22 36.30 60.92 30.79 48.94 90.46 11.04 65.68 70.46 50.96 36.88 22.38 60.78 48.92 0.00 5.48 58.33 16.32 97.67 99.93 73.49 89.32 71.54 82.97 81.50 23.93 33.03 43.63 3.78 81.47 67.74 34.62 2.27 61.88 20.73 20.05 81.24 61.39 13.44 99.83 -92.20 44.29 57.38 88.09 68.47 11.70 45.18 46.08 85.70 58.83 31.76 73.19 76.90 50.42 6.93 18.62 79.80 98.59 56.57 92.71 80.96 31.27 97.96 11.97 53.48 80.70 11.48 7.20 32.90 88.39 1.23 49.52 87.44 3.11 11.44 50.03 24.18 52.17 24.93 88.85 33.52 40.45 88.33 37.13 72.67 81.73 44.37 52.03 11.33 22.20 89.99 12.56 65.80 48.41 75.78 74.20 67.00 10.75 60.50 33.25 87.19 71.51 9.93 89.85 36.34 14.64 2.12 81.47 98.21 56.37 23.52 67.98 10.89 55.35 71.12 25.64 18.27 7.42 11.52 90.64 80.45 15.99 15.97 9.55 21.85 1.93 49.04 64.14 28.91 1.18 90.70 86.14 81.56 49.57 48.82 58.34 5.51 13.91 98.87 28.93 -64.01 47.99 87.28 34.83 1.31 60.37 36.28 5.11 59.38 31.22 27.18 75.78 24.49 24.02 72.27 84.42 59.99 49.48 92.01 39.95 77.77 42.58 54.03 34.32 88.02 36.93 48.59 50.40 39.11 62.41 30.02 37.75 15.07 48.69 34.04 28.44 39.10 97.83 15.37 49.64 48.64 73.71 98.57 22.72 52.69 4.46 57.84 56.95 59.95 70.56 1.33 21.97 92.46 58.92 58.28 0.21 39.40 39.55 59.73 54.73 52.02 19.77 85.19 92.75 44.32 61.03 81.05 41.52 97.54 59.91 44.34 7.97 8.30 80.26 51.23 93.81 22.67 41.00 82.79 88.44 53.57 39.77 44.61 30.97 57.69 44.09 85.32 49.06 84.67 17.21 9.41 24.82 93.28 66.52 48.30 57.34 76.44 63.76 93.08 39.57 diff --git a/docs/examples/data/mfarray/internal_layered.txt b/docs/examples/data/mfarray/internal_layered.txt deleted file mode 100644 index 5c1ce1c8..00000000 --- a/docs/examples/data/mfarray/internal_layered.txt +++ /dev/null @@ -1,3003 +0,0 @@ -INTERNAL -30.73 17.56 90.94 40.10 39.79 66.50 50.41 70.49 27.02 14.79 86.42 10.84 26.74 40.46 85.88 86.46 4.01 95.67 32.49 24.15 59.53 3.31 54.98 4.35 50.20 13.81 8.55 59.49 61.45 97.03 44.54 70.73 71.46 75.65 56.24 9.15 77.01 5.76 7.32 40.99 82.18 61.63 11.54 36.21 74.98 57.22 95.27 72.40 90.89 93.96 37.97 3.08 95.61 16.73 83.79 97.78 50.96 29.37 11.37 40.70 85.82 99.21 74.54 83.46 64.42 67.21 18.29 12.44 79.63 88.91 78.32 66.25 10.09 65.21 26.83 95.47 68.79 52.83 33.87 45.36 89.63 5.87 28.56 79.07 37.93 68.46 70.60 41.79 45.40 14.51 71.86 56.24 55.27 69.06 39.03 6.71 89.37 10.51 96.21 74.58 -85.56 80.05 96.06 57.25 6.98 19.79 91.91 53.75 44.70 3.77 81.83 50.43 84.98 81.33 37.73 46.62 41.63 69.79 99.12 7.01 15.02 11.17 16.89 74.82 62.53 49.19 64.14 85.46 67.11 90.31 84.75 32.47 85.24 87.80 85.06 13.91 39.90 55.10 86.63 83.35 91.81 34.02 39.01 87.34 38.66 96.71 68.73 87.63 76.38 92.68 23.93 3.31 51.81 31.46 18.71 13.91 89.96 30.49 33.28 29.27 69.76 42.10 74.71 19.76 84.07 17.80 32.02 6.26 89.61 7.52 29.98 62.17 41.09 65.29 97.18 20.61 99.47 98.15 0.60 22.75 50.37 80.33 32.11 20.36 12.12 43.85 15.43 59.56 75.41 67.77 78.28 51.92 64.51 9.49 69.33 39.09 56.70 75.12 27.62 71.45 -71.08 94.16 37.75 3.74 43.48 54.02 85.67 57.35 61.58 31.27 0.69 28.60 68.94 11.67 59.26 83.63 9.04 5.50 15.65 13.36 63.02 39.04 86.31 27.18 85.43 56.30 46.88 14.61 43.34 42.09 31.28 28.43 80.10 3.83 13.81 7.88 34.23 88.02 69.54 86.15 58.09 48.36 20.65 23.54 19.87 14.55 13.38 4.85 53.04 3.18 29.73 54.24 87.82 56.47 75.87 27.31 3.72 49.88 27.05 59.12 30.43 36.59 60.84 25.71 37.07 12.47 51.87 29.05 98.95 62.60 10.88 17.09 3.87 16.00 80.87 53.88 1.49 86.36 35.75 93.49 15.29 62.72 1.96 96.91 34.73 64.01 32.77 91.62 50.12 55.41 85.89 25.25 37.68 3.86 63.52 86.66 53.03 7.80 27.45 33.68 -41.21 57.95 44.47 82.76 61.62 46.38 8.35 99.87 42.26 97.85 2.61 58.07 44.50 23.53 35.80 59.85 79.54 79.73 97.20 34.26 90.49 20.75 88.01 55.89 95.50 38.88 57.84 5.83 86.67 39.02 92.51 94.28 15.83 8.04 27.43 29.69 51.74 5.96 37.03 64.05 90.73 16.64 41.19 7.39 17.61 40.04 91.10 87.74 68.30 90.02 34.80 2.17 42.13 24.86 4.58 80.19 52.50 43.07 56.12 96.63 55.87 75.98 25.54 74.04 53.37 12.30 84.08 11.30 7.23 95.70 94.10 62.52 1.52 6.35 46.66 42.19 4.42 4.31 95.55 51.65 30.51 94.57 79.92 62.61 67.47 38.19 16.86 96.40 55.21 4.57 4.87 14.05 51.31 36.88 27.30 69.97 61.35 3.79 55.39 67.22 -43.84 85.08 89.66 71.79 90.82 55.92 49.11 35.54 13.51 36.89 26.05 33.77 51.11 71.79 74.93 48.45 73.61 48.41 16.11 41.82 26.44 49.75 61.03 17.04 17.65 40.98 46.06 31.87 98.97 98.33 89.83 89.03 18.36 52.08 93.32 51.93 70.49 91.04 56.74 52.41 8.33 53.50 34.04 25.59 98.77 26.04 87.51 81.52 87.28 6.85 16.81 92.29 64.26 20.65 73.44 54.97 71.43 60.29 65.52 96.22 61.32 57.77 45.97 66.20 90.99 64.30 84.97 62.99 42.68 76.50 75.44 3.12 98.78 63.41 90.76 75.31 68.61 33.46 66.62 97.92 72.26 74.91 40.86 19.05 55.86 75.92 59.02 78.33 27.97 44.82 40.00 89.53 14.33 78.81 34.76 53.66 32.55 60.22 47.67 57.29 -79.78 51.61 80.57 91.37 81.93 10.42 81.57 91.38 5.68 62.82 23.24 9.08 82.89 72.98 39.13 8.32 39.54 23.41 17.07 31.80 83.22 28.19 87.40 49.81 16.85 55.21 30.16 63.63 22.38 34.00 87.58 47.84 3.36 3.88 30.73 90.49 34.53 66.16 96.33 44.59 15.83 50.85 60.24 61.04 9.13 76.15 65.99 27.05 95.67 75.91 97.56 27.25 68.45 13.36 35.48 38.10 61.83 43.88 20.85 18.71 90.54 85.57 91.61 12.92 97.85 17.03 26.76 4.72 65.86 5.12 66.93 2.91 28.81 61.75 29.49 18.01 68.85 5.32 7.24 49.80 84.13 39.04 78.12 61.01 95.59 73.95 48.96 92.22 65.29 98.42 48.24 24.07 71.42 73.27 98.76 8.73 26.00 19.80 0.45 31.17 -14.17 75.89 58.99 61.88 24.00 51.71 69.98 44.62 23.21 80.18 15.76 45.50 93.88 90.94 3.20 11.05 49.78 37.58 14.89 86.07 16.60 32.84 8.72 86.11 20.79 53.85 94.53 82.15 8.69 77.40 71.27 89.76 93.54 45.12 22.15 22.66 60.56 67.71 35.32 33.20 30.67 97.80 64.60 77.21 9.21 28.41 27.00 96.55 51.64 42.46 30.11 84.20 61.12 74.86 44.89 40.27 48.90 17.70 0.85 37.02 90.23 92.78 38.72 2.64 65.75 85.70 81.76 23.00 74.15 10.70 77.43 11.10 15.37 99.48 28.31 43.13 45.58 22.66 88.93 96.82 47.37 86.45 17.01 49.19 71.78 26.42 40.69 98.34 34.68 1.22 56.18 2.14 21.65 36.73 2.60 51.80 18.06 5.78 78.81 72.68 -17.15 73.47 82.76 17.12 90.05 60.07 5.92 95.26 86.57 3.02 63.32 40.47 94.16 72.21 58.09 7.46 90.25 52.37 39.85 18.01 35.86 91.02 6.31 24.97 8.97 97.90 30.50 18.41 76.17 83.40 26.98 26.62 82.89 6.18 41.91 33.63 47.38 6.87 56.67 72.67 48.20 60.23 83.80 44.39 80.53 66.41 19.62 46.42 85.04 1.88 25.14 56.43 35.16 30.21 19.20 65.84 43.37 53.07 38.42 29.31 24.02 95.70 90.34 34.10 45.23 59.81 69.58 47.51 48.59 83.69 9.20 3.48 6.97 71.96 29.69 21.35 74.92 45.59 27.76 98.50 97.17 58.02 11.65 19.11 97.39 29.06 90.86 7.08 32.83 42.39 55.20 75.11 86.01 99.92 5.69 55.33 4.35 7.37 52.75 53.90 -26.78 14.03 11.78 98.66 53.85 34.00 55.35 64.40 80.31 80.99 86.51 74.91 1.69 13.49 15.58 47.76 96.15 19.23 8.28 42.26 45.52 45.33 83.27 38.86 81.98 57.75 84.27 13.16 17.66 57.87 85.74 3.40 5.19 29.58 59.17 67.28 71.82 27.85 41.16 91.62 47.73 87.09 97.36 94.37 12.35 39.68 74.22 84.30 28.07 47.55 99.70 14.86 3.06 10.99 82.09 68.01 54.88 49.69 11.71 46.63 39.30 56.72 33.74 99.62 36.97 54.18 11.51 93.80 90.79 11.40 57.19 67.06 43.05 84.68 55.20 5.69 19.50 6.31 40.26 99.31 45.22 98.97 16.07 55.03 72.66 5.22 18.72 19.28 15.22 16.16 11.73 76.90 62.60 14.12 31.01 82.68 35.87 15.56 99.17 61.43 -27.81 71.79 88.29 93.21 44.85 21.12 92.81 60.99 93.67 14.44 46.59 23.69 55.37 34.12 23.11 28.16 89.45 92.35 61.43 33.07 91.36 79.04 3.11 59.69 7.74 98.89 48.37 28.71 65.22 70.85 1.61 4.32 82.92 90.46 55.14 65.48 30.60 78.29 54.95 93.34 33.50 32.62 29.95 13.55 21.92 77.23 89.76 52.76 79.87 74.31 83.96 55.03 28.33 42.49 15.79 94.66 10.64 23.65 61.21 20.06 66.20 65.63 35.96 59.85 99.49 14.08 27.48 70.03 63.78 71.82 97.97 42.46 99.35 48.94 85.76 81.18 46.54 55.14 87.45 70.80 27.43 28.74 36.36 93.33 70.83 37.83 65.81 92.51 76.49 34.30 58.12 25.69 0.49 87.28 57.71 21.94 25.62 51.00 58.76 73.79 -75.98 43.86 95.53 87.58 53.59 89.78 81.05 3.17 95.58 13.03 37.87 38.10 23.78 85.01 48.30 22.41 23.65 14.49 42.85 0.69 86.73 97.30 62.28 78.27 7.69 14.44 68.56 76.58 62.43 47.07 2.56 8.10 57.43 51.15 60.85 14.12 2.77 26.74 61.11 83.47 18.87 73.63 23.48 65.15 77.35 28.23 42.04 22.42 86.97 70.29 87.17 24.17 10.34 19.34 39.21 89.54 4.58 60.78 40.16 4.34 75.04 78.28 70.27 98.40 91.69 87.74 66.22 13.96 79.58 66.62 33.82 19.60 82.56 42.60 82.55 24.40 75.52 54.02 42.65 90.38 41.32 76.20 2.19 75.64 70.08 77.28 74.97 62.48 15.72 66.86 90.66 40.49 32.33 31.09 35.30 61.17 7.33 62.08 51.35 59.18 -89.98 18.43 69.67 9.53 29.51 46.65 52.49 60.39 60.64 86.68 88.94 7.25 71.66 20.37 22.30 46.69 14.86 70.11 78.58 52.25 49.44 10.64 34.65 24.70 12.12 33.54 31.94 74.28 58.25 90.59 18.18 83.36 94.42 52.91 37.64 28.87 5.95 90.94 25.08 3.88 60.98 46.65 53.94 59.93 36.34 75.42 39.16 80.56 20.91 20.83 15.91 39.89 25.61 23.05 62.15 94.24 79.99 30.20 52.50 46.91 63.59 59.40 54.64 5.00 98.24 80.34 14.70 99.40 78.27 57.87 6.13 51.01 93.41 40.87 75.36 82.81 20.09 49.02 16.40 7.84 41.09 55.90 17.61 2.93 81.83 11.34 88.98 23.54 80.76 96.31 62.67 75.51 91.98 62.00 7.28 69.11 5.91 52.18 59.32 34.78 -44.76 36.25 44.98 64.62 38.29 71.53 16.42 70.23 40.62 38.36 5.11 60.09 71.39 73.07 50.48 6.61 35.90 93.48 45.76 13.61 27.84 17.99 2.18 92.53 96.53 72.10 63.94 97.41 79.39 4.45 9.75 12.74 0.61 84.64 24.97 29.86 78.61 36.05 99.88 35.48 0.58 42.65 9.45 27.21 64.83 42.59 71.21 87.09 82.83 24.42 93.74 31.47 12.13 8.07 52.81 60.31 44.91 47.46 89.80 56.04 55.50 10.51 34.95 69.27 37.66 14.88 45.41 78.83 10.71 14.21 25.33 52.26 40.35 9.29 15.62 73.02 99.40 88.14 99.73 41.41 96.62 0.15 68.08 82.64 63.17 88.67 13.49 97.06 98.75 60.78 81.23 53.44 47.67 38.02 16.90 0.23 76.54 62.47 14.89 82.42 -3.25 55.54 31.68 7.30 2.38 86.78 56.52 64.47 48.89 75.45 98.15 60.88 4.51 99.22 2.31 76.64 3.47 89.42 58.99 85.28 36.16 21.64 95.25 65.65 15.86 38.86 36.26 68.73 98.54 12.83 31.89 45.94 41.53 78.89 67.43 74.34 63.55 41.84 79.06 58.03 58.22 94.38 42.29 37.06 2.30 45.59 12.68 7.68 38.62 94.94 31.28 24.67 89.82 27.16 34.83 46.65 24.88 51.88 75.69 74.89 9.30 85.50 53.04 69.42 21.07 62.68 59.14 51.53 29.32 83.14 54.05 26.78 51.59 28.13 72.51 85.93 93.84 56.68 61.20 44.15 50.68 78.88 6.64 17.80 87.49 59.26 52.40 26.51 13.64 67.94 18.31 72.26 30.30 5.45 75.95 57.04 9.32 64.73 75.56 84.35 -19.89 54.78 43.69 25.44 33.92 68.76 44.68 89.35 37.61 64.40 70.05 35.70 28.44 21.00 31.63 5.03 87.57 93.82 64.98 56.46 96.55 80.13 44.35 76.69 22.61 68.62 69.59 10.06 58.97 17.71 41.81 42.86 70.01 50.78 44.22 86.14 15.53 35.86 90.50 50.44 72.89 93.27 42.29 27.45 34.89 44.60 59.14 52.06 75.96 77.44 18.89 73.08 76.47 8.06 59.37 8.11 91.52 67.32 70.31 65.25 59.01 85.38 67.49 50.32 87.88 70.65 93.27 99.87 9.87 10.02 69.78 41.76 33.86 19.18 36.44 75.26 16.96 51.82 46.36 6.38 34.27 86.93 49.41 85.34 91.03 89.61 60.70 7.97 73.78 85.69 22.35 13.27 53.18 46.24 8.12 12.55 79.48 90.02 26.23 44.47 -26.05 30.99 96.73 72.04 37.54 32.10 76.12 66.48 23.17 21.39 83.80 97.17 50.98 66.55 72.17 88.78 25.04 14.99 33.29 32.17 19.39 71.00 38.02 92.41 93.63 63.89 88.36 66.61 5.52 31.15 51.43 53.66 49.70 81.26 28.76 93.87 22.55 59.33 30.95 81.40 11.08 13.59 73.64 99.45 71.49 92.82 90.99 3.75 69.04 7.25 90.13 26.16 66.73 25.16 76.67 92.73 19.80 8.61 39.75 23.87 43.96 24.37 35.54 46.01 89.32 84.08 69.43 74.13 34.53 53.45 85.92 20.62 33.84 87.63 48.43 47.07 55.54 76.92 75.80 90.93 27.03 59.67 62.32 31.82 45.79 74.99 97.89 49.78 85.59 28.85 31.41 32.48 32.18 65.23 43.61 49.65 56.24 16.11 39.34 33.85 -53.38 3.79 29.26 34.37 47.09 26.89 86.50 10.88 64.76 87.94 38.90 45.87 58.77 46.96 38.99 56.70 9.91 70.32 70.78 2.34 40.72 69.89 79.40 26.64 28.85 62.98 96.33 77.95 40.88 48.19 55.69 35.97 69.52 67.10 24.64 62.38 31.28 78.35 7.82 4.02 24.91 26.67 3.84 14.40 34.16 12.07 97.75 20.76 88.55 65.47 49.67 38.77 2.12 33.57 33.63 61.67 3.04 25.03 85.36 98.15 51.59 72.08 51.80 60.47 71.73 23.63 37.51 17.18 78.19 44.34 47.47 46.74 67.89 91.01 25.09 77.97 79.98 1.63 31.34 71.60 6.67 77.89 62.20 97.27 32.15 54.32 0.37 48.04 45.79 32.64 1.48 42.99 15.55 40.43 89.36 56.69 18.73 29.42 58.37 31.65 -47.33 6.00 8.72 56.94 31.66 97.79 4.16 69.09 61.59 10.03 33.61 38.62 9.03 66.64 89.00 80.57 47.94 10.10 62.97 31.06 77.76 11.90 33.90 49.90 16.97 7.41 92.87 88.10 36.58 44.94 29.83 95.15 78.30 80.06 80.45 64.38 97.43 69.07 39.68 85.76 44.12 73.47 68.35 80.18 39.66 47.95 61.60 76.71 98.66 74.38 75.04 89.32 39.62 59.89 47.81 23.34 42.87 24.86 47.45 50.69 46.86 7.61 19.32 54.24 98.89 69.89 4.49 77.99 21.84 91.98 37.94 38.89 1.07 11.77 60.23 89.25 27.68 4.21 70.63 0.66 50.65 99.10 80.17 2.03 2.27 58.71 60.04 29.99 98.94 59.03 54.01 33.07 30.78 45.31 21.22 6.84 89.83 35.49 92.61 99.14 -16.92 19.02 82.45 38.73 56.31 30.38 68.36 31.11 43.62 81.23 68.76 96.87 9.07 15.36 31.56 90.28 9.25 98.51 65.38 54.53 74.42 92.64 45.07 79.55 93.74 52.74 66.13 42.07 8.20 65.30 32.77 75.32 69.38 75.98 35.50 93.93 95.70 15.62 31.35 13.95 82.89 14.96 97.08 29.66 90.36 53.57 57.69 7.52 31.91 86.31 0.17 63.15 16.87 31.07 19.86 31.39 26.43 91.12 86.56 22.61 96.37 25.77 3.72 44.95 58.57 71.05 13.42 4.88 7.46 83.19 71.94 91.71 73.38 24.62 46.39 25.13 82.02 95.05 93.14 10.50 55.30 97.35 23.46 70.04 27.63 22.19 78.54 86.52 29.28 75.64 21.67 20.42 94.57 8.32 15.70 88.45 91.05 25.76 26.36 27.80 -69.73 51.19 95.61 99.81 6.65 56.32 22.55 81.69 57.42 22.91 30.01 44.86 65.12 53.82 47.84 22.98 30.25 32.17 98.05 29.09 15.23 6.92 14.78 44.25 55.95 7.73 65.30 75.23 26.96 4.40 6.59 58.73 86.47 78.74 5.07 74.73 66.59 12.52 38.38 68.26 21.51 58.20 52.71 49.31 28.78 87.34 91.89 33.00 37.63 68.16 44.64 98.75 30.25 80.43 78.72 89.31 7.42 3.70 34.29 79.12 67.92 25.55 40.94 7.35 79.91 17.72 11.15 85.32 90.51 46.03 44.01 63.62 88.54 94.68 92.36 4.51 10.95 88.02 71.33 99.95 79.63 94.61 20.84 7.87 37.93 88.29 82.45 20.77 86.16 30.00 15.67 41.96 32.29 18.74 49.89 0.20 28.36 90.78 16.70 75.10 -11.81 94.07 50.51 64.82 32.12 47.20 34.44 13.23 63.78 85.67 21.14 45.74 39.55 70.16 90.59 23.97 32.65 0.43 35.00 4.80 15.67 72.76 75.16 39.96 89.70 48.02 50.43 24.40 99.11 40.53 36.68 79.79 52.79 94.20 62.16 47.43 1.07 1.68 12.38 66.45 78.70 35.27 65.38 68.07 19.34 38.68 43.45 47.36 48.46 41.60 13.80 44.24 18.07 41.15 34.47 17.75 17.28 33.78 86.23 0.09 20.50 24.18 47.71 41.15 62.85 24.77 75.62 24.24 8.96 26.49 53.47 8.78 57.60 45.64 99.26 27.00 58.65 56.05 26.44 19.78 67.18 70.22 15.54 2.64 69.17 93.46 58.08 13.63 32.42 45.32 38.93 34.57 88.53 36.03 64.25 47.19 98.86 3.43 65.52 40.53 -94.27 47.17 53.58 45.11 59.16 78.87 70.36 21.35 30.73 71.88 83.61 38.35 92.94 20.69 11.93 36.32 76.80 54.35 53.20 42.24 9.88 7.92 89.69 72.20 75.95 58.81 91.70 75.54 68.05 74.30 58.76 52.48 60.71 77.41 75.29 59.40 34.23 47.47 41.19 31.57 27.94 1.14 57.88 8.55 7.58 42.82 65.46 4.64 11.60 62.66 70.30 67.77 37.10 70.86 41.57 64.16 60.18 37.88 98.53 89.20 66.68 79.24 53.14 34.41 43.12 51.84 72.16 51.08 55.32 82.28 38.99 3.40 96.26 10.86 79.45 70.87 83.31 32.58 37.72 31.28 59.11 14.86 0.04 12.93 14.89 87.71 51.19 17.61 33.95 17.72 0.11 5.86 76.48 19.61 56.03 64.06 46.58 71.77 4.34 50.20 -91.25 31.12 14.96 24.09 47.38 52.91 12.57 63.27 45.57 79.24 13.08 34.67 26.68 24.85 98.14 54.66 32.81 96.56 6.90 21.58 83.77 43.78 29.83 3.61 99.73 53.33 14.89 27.67 53.12 60.06 51.64 84.70 73.88 85.29 86.98 17.17 11.73 63.55 82.27 15.12 5.11 67.19 95.99 61.94 13.69 97.68 37.98 37.39 11.12 24.13 8.27 78.68 77.81 25.53 89.23 74.42 51.51 77.01 77.47 48.81 49.60 27.67 89.87 77.05 17.96 91.95 16.99 70.87 44.03 27.93 47.55 2.14 61.53 33.33 79.89 10.82 64.59 71.95 28.27 92.14 0.46 34.38 86.58 78.61 50.50 11.42 27.25 63.05 23.58 59.28 78.37 38.05 8.56 84.91 20.02 67.08 94.48 95.97 8.33 4.11 -21.53 90.06 84.52 13.28 63.83 16.34 80.24 34.52 2.36 27.54 74.38 41.45 97.71 82.32 58.14 47.43 19.22 44.17 55.97 13.99 26.87 13.91 22.28 13.46 52.71 94.37 59.49 64.16 55.64 46.58 95.14 11.67 86.30 82.51 65.56 38.90 37.49 11.10 79.44 37.33 15.08 78.32 72.79 65.03 19.36 50.37 13.40 10.20 84.29 34.34 83.38 70.38 2.82 45.79 24.28 62.67 36.06 83.89 28.17 3.74 9.68 38.45 23.06 65.13 49.84 93.79 55.19 67.34 56.77 48.86 35.42 23.21 98.41 16.42 54.25 87.18 3.69 49.51 17.44 11.30 91.82 95.47 91.46 29.83 3.13 61.29 51.37 7.16 71.62 87.88 28.50 30.71 28.25 90.38 94.12 46.06 87.52 38.60 7.21 4.68 -64.48 6.00 78.98 64.18 97.57 91.31 42.40 15.88 4.23 85.91 49.47 5.57 24.06 60.78 88.83 81.24 70.98 66.66 8.45 85.42 70.12 97.04 94.60 0.57 32.83 15.66 78.48 66.38 78.93 95.39 13.79 58.40 45.55 38.08 42.13 67.31 10.61 14.33 13.20 93.10 15.96 30.39 23.13 17.90 17.82 4.02 12.66 23.24 55.62 62.43 44.77 85.47 37.19 62.29 55.38 53.84 4.52 49.58 75.52 52.32 80.00 10.03 92.44 5.73 53.68 54.33 67.83 21.53 39.40 43.09 24.21 57.67 29.39 64.49 92.87 44.51 91.66 28.77 21.61 47.22 21.60 96.40 28.21 64.22 15.97 78.13 48.06 37.05 60.69 90.30 74.55 79.29 7.86 76.88 62.79 24.16 46.17 23.60 92.50 50.81 -91.31 37.49 76.28 23.56 14.75 12.92 85.69 99.74 36.95 17.69 45.92 44.01 21.15 14.28 41.72 80.05 21.64 19.75 90.09 19.68 89.18 46.51 11.66 57.80 2.10 57.92 32.98 86.25 36.80 45.65 74.36 62.25 65.51 76.64 13.57 17.74 86.57 90.01 28.24 7.85 48.70 18.81 75.37 0.16 41.12 48.52 4.86 26.81 49.82 10.45 40.47 50.51 41.81 72.18 12.64 86.72 74.32 73.34 73.43 55.52 59.75 90.44 48.43 26.25 29.61 83.60 10.51 92.19 62.86 58.67 98.56 90.39 1.76 57.06 94.71 59.65 84.64 21.81 12.27 23.07 20.94 54.80 31.19 58.06 87.48 5.04 19.98 42.60 80.13 64.04 62.88 63.91 17.51 47.89 62.70 80.06 1.70 73.35 20.00 54.35 -50.75 48.58 79.48 47.73 20.75 31.20 0.48 91.09 18.62 77.48 95.39 24.96 72.43 92.42 87.51 91.61 5.80 53.11 84.90 52.00 1.38 66.79 67.66 29.62 4.79 61.63 84.31 99.97 38.32 86.94 88.66 25.78 3.05 50.30 94.00 0.24 39.52 79.33 36.29 44.09 31.26 58.61 2.51 54.04 43.96 7.14 48.52 32.00 11.57 41.45 26.82 79.26 91.22 11.48 27.06 88.66 85.67 97.27 9.37 10.56 62.32 89.75 53.34 92.53 80.20 52.83 36.43 83.48 72.94 10.75 39.21 41.48 82.39 97.67 2.18 11.95 70.13 68.37 40.29 69.76 75.75 95.63 33.01 72.02 73.39 40.71 96.61 30.80 11.51 44.48 85.25 16.62 45.97 31.29 79.49 44.92 29.88 96.13 86.55 76.63 -57.07 57.60 64.36 48.33 86.22 46.16 1.67 82.32 8.48 4.38 50.91 17.47 18.16 65.66 79.82 16.32 94.98 98.63 35.17 37.99 16.05 72.41 85.75 94.36 57.15 54.12 37.10 51.64 42.33 71.33 91.40 92.91 40.70 83.30 89.30 86.83 7.25 73.56 38.25 61.36 57.38 54.93 46.31 49.34 34.66 54.18 59.95 16.45 8.11 61.55 36.83 88.39 41.03 67.42 6.12 96.78 56.79 62.30 22.40 81.72 17.81 20.43 76.21 30.99 46.11 57.66 9.98 64.20 62.12 71.75 89.42 90.50 48.05 91.23 69.12 20.06 78.77 57.73 88.39 26.66 14.85 19.89 88.67 9.66 77.06 80.12 22.90 23.17 76.91 50.86 44.32 64.88 39.86 59.85 53.64 68.09 57.61 34.72 21.94 4.57 -10.16 29.08 44.20 16.44 50.25 62.87 97.31 59.79 46.95 73.47 34.90 57.98 81.31 17.95 94.77 23.31 3.85 77.57 79.62 85.27 75.97 52.17 91.88 11.45 17.04 76.47 78.44 89.99 58.21 49.19 12.93 38.49 4.03 12.62 76.34 27.76 51.86 22.35 2.72 2.83 90.43 88.97 33.70 85.13 3.84 67.67 66.24 12.27 50.93 13.37 35.30 68.78 83.77 3.82 15.13 54.92 98.43 73.80 80.15 96.60 48.85 52.76 56.60 44.79 43.51 32.54 43.55 98.46 14.97 94.04 10.74 20.57 95.54 72.93 36.11 1.86 46.44 35.06 12.06 15.46 77.97 15.29 87.24 96.71 70.74 41.99 97.27 33.90 50.81 70.58 51.82 16.05 28.98 7.97 1.75 91.20 42.98 18.50 21.37 39.74 -18.39 98.40 76.80 80.55 6.96 62.80 55.59 30.50 67.38 77.10 16.63 60.28 66.88 42.99 46.62 94.41 39.06 75.04 90.76 2.83 17.94 87.74 51.61 51.12 53.15 40.49 3.57 98.63 0.74 13.83 15.55 88.34 60.68 30.76 38.59 42.14 30.74 85.57 50.19 39.73 63.16 0.11 23.58 47.39 87.29 43.45 12.83 23.33 42.11 70.88 7.21 66.84 45.27 67.64 45.33 71.14 27.83 24.12 44.71 47.50 36.42 87.06 12.32 60.36 22.95 40.98 31.38 29.35 26.93 27.87 16.44 66.11 38.74 49.64 27.18 16.69 8.56 59.99 7.55 67.58 61.32 55.82 48.43 78.29 37.03 88.50 37.51 63.51 41.47 3.62 19.91 66.25 66.99 80.63 6.74 84.64 75.39 51.23 14.24 72.27 -38.30 53.50 65.27 17.37 47.48 91.22 36.01 23.67 17.48 43.62 91.30 32.94 22.13 43.91 54.60 21.95 20.33 59.60 20.91 4.16 75.67 75.86 97.67 2.39 28.67 15.17 94.41 47.95 20.11 72.08 77.14 28.88 34.37 22.92 95.43 31.77 35.28 36.20 27.11 28.49 23.02 64.74 74.83 93.65 11.22 43.56 65.97 10.37 75.28 32.20 59.59 96.03 6.97 30.98 64.49 85.81 12.94 37.19 68.66 59.15 36.09 57.80 22.15 62.68 26.44 71.25 44.25 41.53 29.29 23.83 9.35 91.45 80.70 32.95 11.59 95.29 18.63 16.89 86.39 0.43 11.27 57.35 69.68 80.79 68.88 20.95 40.80 60.17 25.76 45.06 48.15 98.12 66.81 1.35 47.18 96.82 51.92 19.76 19.37 90.77 -22.49 48.85 67.40 44.52 48.81 26.23 20.27 40.33 19.60 57.08 40.03 36.98 41.23 11.80 19.00 26.56 15.87 38.70 78.28 97.07 68.51 14.72 62.11 81.23 55.85 0.78 15.04 93.52 4.77 41.67 11.93 1.01 15.32 43.30 49.32 68.96 31.06 29.46 65.31 49.24 75.71 91.54 10.32 45.33 38.77 60.00 44.14 13.15 87.68 12.41 95.88 71.10 83.10 3.50 17.77 43.52 79.52 90.08 37.11 87.29 29.44 58.56 59.67 29.98 95.04 53.58 9.39 27.71 58.43 43.14 0.54 48.83 76.53 69.34 83.71 55.60 3.40 91.40 2.44 91.57 62.80 41.36 43.54 92.05 66.59 54.68 79.68 1.82 39.10 90.51 47.50 65.57 42.15 84.65 25.74 62.46 55.39 59.32 55.35 54.34 -37.22 34.32 20.70 8.20 24.45 34.08 67.46 0.01 52.09 58.09 51.66 81.78 53.69 74.23 12.76 53.17 53.44 99.05 16.58 3.46 21.06 99.09 17.66 62.43 36.14 94.82 97.69 34.73 20.91 52.88 68.97 79.72 40.31 29.38 8.93 17.83 71.26 95.44 57.28 62.17 20.13 90.27 30.61 88.11 7.75 37.41 68.31 59.12 45.49 61.29 65.02 45.12 35.03 12.96 51.29 0.23 27.92 86.03 45.22 70.13 19.76 57.20 94.60 74.36 61.93 82.73 47.43 80.21 75.66 10.82 38.03 74.94 49.80 13.76 58.83 7.34 7.40 41.66 2.84 76.51 2.15 94.57 25.78 0.75 85.46 81.64 93.51 71.66 23.00 33.70 21.58 58.58 38.19 13.86 43.27 67.67 52.35 60.17 76.53 30.37 -21.35 45.07 86.94 18.04 18.88 42.69 33.55 40.22 33.86 71.58 36.55 72.33 16.62 0.74 54.77 24.18 51.44 59.44 93.13 39.11 7.84 79.80 16.65 66.82 92.00 14.56 33.43 73.68 71.69 75.53 31.34 61.70 0.31 9.15 90.18 66.96 9.09 44.95 54.44 43.55 73.44 27.99 28.90 24.19 29.08 16.33 35.79 73.20 24.59 83.03 87.80 29.20 57.48 48.49 79.39 15.22 10.81 60.33 29.35 13.22 30.03 5.94 80.89 50.24 56.07 8.27 46.84 95.03 87.05 80.39 34.07 84.46 82.93 43.87 67.64 5.79 14.62 9.01 92.34 93.88 79.57 80.73 77.44 63.67 68.39 7.16 58.22 99.97 68.76 48.09 48.13 1.38 17.66 60.53 52.77 61.40 65.64 40.52 68.44 1.97 -0.99 80.34 11.47 48.70 59.12 75.56 62.87 72.10 34.49 71.98 10.59 51.49 50.54 45.29 45.84 11.11 42.26 74.90 35.00 86.43 83.56 78.72 67.55 14.77 36.89 20.78 36.54 73.78 45.81 44.11 46.33 63.11 50.15 45.15 69.21 45.54 76.04 30.86 90.80 55.65 66.56 20.09 27.26 53.41 95.12 39.11 61.07 92.30 15.83 69.64 13.69 89.54 68.26 81.92 44.34 88.60 84.41 24.08 45.48 47.29 28.92 9.18 74.67 22.58 99.34 39.61 26.36 8.22 60.78 89.48 43.54 90.89 63.40 73.20 98.04 32.01 84.58 38.39 92.43 67.80 47.13 76.48 37.48 7.93 97.78 32.20 89.93 20.02 8.26 69.32 29.36 27.69 72.03 67.45 86.01 25.06 80.67 49.18 85.11 71.94 -39.44 3.71 70.44 54.97 79.05 40.10 19.35 44.12 97.36 76.73 96.10 28.97 58.66 71.47 95.37 96.71 37.75 42.79 71.78 33.88 35.01 93.21 29.30 87.03 92.41 2.99 36.74 75.85 91.07 68.78 76.85 4.42 51.01 48.45 15.68 62.36 83.21 1.20 63.84 80.79 28.26 75.09 67.50 74.30 8.18 51.44 6.03 9.47 90.82 7.15 75.18 89.58 44.67 70.48 62.64 80.16 82.17 27.31 64.05 78.90 37.62 11.19 24.90 78.77 92.93 19.07 2.42 71.77 68.09 36.29 42.95 16.31 11.91 92.45 28.90 16.56 90.47 72.73 93.35 62.20 85.83 4.60 15.39 40.23 40.86 50.96 23.75 66.15 98.01 62.25 45.63 32.85 61.06 13.13 92.15 9.88 61.21 80.58 60.12 80.16 -71.32 85.65 84.12 50.46 90.22 37.06 75.57 10.19 32.39 67.37 87.99 85.70 4.21 9.68 60.13 45.06 87.35 16.40 77.80 0.70 48.18 62.71 4.70 32.69 60.30 31.53 59.35 38.03 47.31 89.90 7.53 62.10 69.16 83.40 8.08 79.88 92.62 13.82 40.51 32.41 22.66 22.41 28.08 36.14 13.77 7.57 8.87 94.24 88.38 1.91 30.40 25.99 46.51 23.29 57.36 5.12 88.17 94.60 17.19 42.57 1.64 16.88 7.61 30.30 96.90 66.37 58.63 65.69 14.39 17.06 35.09 2.94 32.75 72.49 47.84 45.51 11.21 23.01 40.74 63.46 58.39 50.63 13.49 61.95 2.54 0.08 99.11 82.01 18.75 48.81 55.46 87.34 78.77 4.84 73.90 80.74 84.59 57.13 76.34 23.20 -71.96 8.61 27.93 20.35 17.19 38.46 71.39 58.89 42.84 69.17 12.57 80.90 17.19 53.30 40.42 72.27 87.87 14.71 72.97 86.35 34.30 90.92 78.23 7.34 43.00 87.83 52.88 11.37 68.18 94.54 87.16 59.06 66.70 67.98 98.35 3.68 11.12 26.07 22.91 31.11 45.96 29.27 78.27 83.63 62.48 28.90 64.98 95.52 6.50 8.46 9.55 57.73 85.91 30.38 85.34 43.43 6.89 22.00 62.07 1.65 10.21 83.32 98.48 18.35 37.23 88.30 73.59 34.93 54.22 75.40 21.52 96.03 99.33 79.52 11.48 65.75 40.52 94.98 91.78 9.64 38.16 67.55 94.40 24.12 30.06 50.68 33.95 97.17 3.34 15.48 97.82 29.49 17.61 42.83 24.31 57.94 82.72 59.76 33.59 48.54 -34.23 3.42 53.55 51.33 37.90 95.11 79.20 88.86 1.80 76.17 4.79 87.21 43.54 55.06 99.08 53.09 30.46 96.37 9.13 36.08 40.32 63.08 26.22 41.00 46.87 81.26 72.00 49.26 93.08 71.75 44.00 38.76 3.04 7.60 8.27 61.60 11.00 16.16 71.56 94.42 92.62 52.04 74.08 87.46 74.58 11.73 73.63 41.40 54.99 60.73 36.36 98.13 7.46 66.88 88.99 12.93 95.42 56.27 40.38 43.48 28.12 98.57 86.22 27.72 2.63 31.88 51.62 69.62 63.94 71.51 43.37 85.79 43.98 93.80 84.93 64.86 98.35 25.93 36.26 24.66 42.34 60.83 5.93 2.80 28.84 99.79 70.75 21.68 51.38 30.94 6.93 33.35 35.66 82.88 29.77 17.95 12.06 37.09 69.68 23.69 -59.58 93.82 47.95 44.68 49.70 5.54 51.02 11.93 25.61 59.68 87.62 73.04 69.28 88.57 7.17 26.35 1.89 81.68 29.30 31.20 7.20 29.65 48.48 31.89 74.03 47.34 48.13 97.92 70.40 15.42 22.24 88.24 22.02 66.39 41.47 23.68 36.68 30.50 67.35 47.04 76.08 79.24 9.10 41.31 13.69 26.57 20.38 56.83 50.29 53.06 83.63 73.54 80.58 20.18 78.90 15.09 18.55 20.29 77.93 85.92 89.61 3.28 94.93 42.35 12.98 29.69 83.66 69.54 36.94 69.80 77.88 62.55 64.90 14.80 41.55 11.89 9.49 31.95 79.90 32.60 62.17 86.61 17.24 78.70 21.41 14.31 33.38 87.58 18.35 50.47 91.18 90.82 89.07 61.10 17.55 23.93 66.47 48.57 43.16 45.02 -49.06 79.92 11.50 29.94 15.19 27.45 67.23 94.25 11.24 73.92 60.48 42.26 80.86 27.43 96.27 34.79 96.74 50.66 98.16 43.27 52.60 57.60 14.21 85.44 62.99 43.28 78.96 0.75 72.83 28.54 96.88 92.81 18.39 91.31 86.88 12.79 75.03 88.89 94.56 51.25 56.42 16.22 58.37 92.67 72.32 18.24 67.79 76.16 15.44 74.43 56.78 59.04 93.13 98.65 16.31 32.66 27.93 83.97 10.79 0.06 91.61 28.08 73.38 38.40 50.55 8.89 43.71 35.45 14.80 44.86 73.22 16.98 72.58 60.74 69.77 8.95 30.91 65.88 64.18 13.26 19.36 99.15 97.15 3.70 68.01 56.54 28.84 54.08 36.78 98.97 36.48 49.29 39.17 90.23 67.76 58.08 57.38 88.87 41.42 16.51 -76.84 93.10 38.41 66.60 15.25 67.38 17.22 68.64 39.76 97.73 29.50 68.26 93.47 21.92 19.76 68.12 53.93 95.45 37.23 22.22 56.93 85.33 45.78 41.70 17.08 94.76 38.77 97.03 26.11 91.99 58.25 60.86 94.62 83.85 5.57 47.23 96.50 56.00 49.71 98.37 57.92 37.25 52.48 79.66 78.59 1.99 16.33 85.19 52.68 1.17 88.05 40.11 22.04 46.21 59.82 13.61 88.83 96.33 65.01 37.86 6.20 22.11 46.39 13.38 80.50 15.94 56.41 69.45 3.98 7.69 13.70 41.75 47.74 41.09 82.68 54.23 69.90 78.89 3.67 44.70 56.23 91.28 32.50 95.01 38.93 6.28 92.48 93.27 21.16 90.95 54.62 62.09 16.28 21.87 26.22 38.26 89.87 90.53 84.56 19.76 -53.92 37.69 37.25 29.79 69.10 57.78 33.74 58.56 72.39 94.79 85.23 31.68 2.03 14.32 42.34 36.16 16.64 39.96 55.61 86.99 60.12 61.20 34.49 13.54 7.93 20.98 88.30 98.84 36.47 31.39 36.53 57.73 8.34 87.94 19.35 43.53 53.60 80.40 77.17 76.38 65.53 38.72 71.16 88.84 61.17 77.82 74.38 4.96 41.52 42.78 65.73 92.48 94.54 20.35 43.41 37.88 94.58 27.48 67.82 40.51 88.28 58.52 78.17 59.85 76.17 21.22 38.66 85.43 58.54 66.16 32.08 97.59 49.06 7.66 10.27 0.28 31.47 54.55 66.16 28.41 13.92 10.10 95.86 78.59 6.47 32.72 2.40 75.26 65.71 41.88 52.33 75.44 5.26 80.86 5.25 51.18 34.45 16.23 25.29 2.80 -52.79 35.19 44.08 11.96 69.82 99.50 93.12 65.22 5.42 92.74 2.31 54.20 87.63 34.24 87.62 0.29 41.93 19.70 22.72 73.53 74.63 48.90 46.64 54.02 18.40 95.55 96.35 56.47 80.09 23.53 29.58 36.49 88.22 32.89 19.10 93.71 85.97 52.01 26.69 46.60 16.69 16.63 23.39 58.33 90.95 45.77 18.71 27.50 5.68 70.94 22.19 52.82 32.33 53.53 44.81 5.51 84.43 93.29 97.66 80.97 91.39 25.60 99.32 39.73 24.90 90.74 52.56 18.91 7.33 91.44 67.33 19.20 45.00 30.33 25.79 25.52 8.42 97.46 54.90 27.38 57.16 53.83 15.56 51.86 63.52 76.60 93.33 32.84 55.42 15.26 97.73 20.47 8.31 77.00 28.62 47.22 57.59 45.60 61.03 25.33 -43.94 58.44 99.50 83.87 15.21 23.28 89.86 32.29 31.12 34.31 41.94 74.59 92.36 76.39 97.67 35.18 88.79 96.77 64.76 81.77 16.81 5.49 81.95 90.06 58.89 14.91 31.16 87.10 13.58 35.44 75.85 45.58 34.60 97.51 78.80 31.44 37.90 72.70 33.48 26.32 61.73 47.22 61.12 79.12 50.04 90.58 61.35 76.91 15.31 44.99 41.08 34.43 2.36 95.56 78.52 13.39 71.41 70.83 67.37 17.55 21.40 40.23 12.91 88.37 28.54 40.48 99.60 33.93 16.27 79.40 52.06 88.89 91.89 6.87 2.77 68.13 66.68 81.26 7.58 40.32 95.54 28.87 36.61 48.36 35.98 23.90 55.44 28.36 97.68 92.84 5.68 62.66 85.43 20.02 6.31 43.49 22.83 91.86 61.19 91.92 -14.78 94.71 14.16 9.35 0.24 9.42 43.44 79.37 72.58 74.68 67.51 15.85 43.34 74.94 93.05 11.07 14.81 88.84 30.01 20.12 16.03 73.92 42.63 90.29 77.06 88.54 97.92 23.46 82.57 89.64 64.71 36.48 70.32 0.40 43.34 39.16 98.86 74.64 61.83 20.94 53.40 63.34 63.65 7.23 70.37 22.41 49.65 75.40 29.94 67.41 32.63 20.93 93.49 54.85 13.81 19.43 93.62 0.57 95.48 13.81 55.72 79.86 90.05 2.25 42.51 61.35 84.45 3.39 64.08 1.66 12.97 73.36 6.61 36.15 77.93 30.08 38.82 51.46 0.02 70.26 78.84 2.18 41.44 96.44 85.72 38.30 36.11 11.84 72.50 0.08 21.10 41.04 18.10 4.72 35.47 41.48 19.62 2.91 73.96 60.86 -49.53 65.76 39.49 49.64 13.15 30.79 51.15 77.17 57.34 94.97 28.10 79.96 67.75 13.53 78.88 42.41 30.20 31.56 2.19 1.41 12.81 84.46 46.11 75.77 3.76 39.27 44.02 15.05 82.27 55.76 17.36 73.55 35.37 33.94 32.70 67.59 66.97 89.43 72.11 53.02 48.63 10.62 96.49 37.11 17.83 36.34 14.38 8.11 2.02 54.73 70.20 60.03 91.88 80.32 75.15 82.66 63.61 37.86 34.53 27.10 84.16 31.82 26.65 4.83 79.90 88.33 54.66 95.33 79.20 85.76 85.46 40.29 82.70 20.94 76.77 23.49 95.26 83.03 54.84 10.35 60.51 45.61 85.25 18.31 83.47 1.95 28.22 90.54 7.52 19.03 77.24 71.76 52.49 28.12 64.42 15.95 20.26 33.67 17.27 89.35 -15.20 19.01 66.60 88.72 52.18 17.21 85.45 88.30 42.09 15.45 0.29 67.52 66.04 68.85 49.13 21.85 68.74 14.18 26.97 91.53 44.90 26.51 40.12 76.35 95.41 96.51 56.91 36.50 61.13 78.88 30.32 88.33 39.50 88.48 96.42 7.00 80.12 38.95 85.71 67.85 38.27 65.92 71.37 87.57 99.28 25.07 37.16 33.95 91.31 45.67 65.02 41.50 89.60 93.07 98.06 7.70 36.55 31.09 56.75 29.12 43.09 31.53 23.19 91.05 79.68 35.32 96.07 56.31 23.72 3.71 39.37 98.33 28.71 72.91 71.08 47.78 75.05 17.37 77.12 59.87 4.52 50.93 12.92 54.31 68.74 57.31 90.81 78.24 6.25 59.81 93.84 15.01 49.82 97.01 92.46 36.78 69.61 86.63 60.78 35.23 -26.32 69.08 88.44 82.52 90.45 10.87 58.52 78.15 56.22 42.59 17.70 54.32 87.69 75.06 10.99 62.78 68.90 43.68 23.60 92.30 38.07 80.43 98.68 85.18 30.40 66.89 10.57 16.87 1.92 58.88 82.04 59.77 95.83 44.56 63.97 97.39 39.41 85.53 57.48 44.92 45.59 29.40 86.45 37.41 54.63 16.47 76.88 12.20 41.12 73.24 86.99 5.58 10.49 91.51 9.85 29.32 64.47 55.00 72.21 52.82 52.06 18.82 92.55 3.75 55.84 9.58 43.73 92.35 7.05 25.29 40.09 90.81 21.44 39.13 29.50 82.52 61.53 82.68 46.31 26.30 81.49 71.91 6.64 14.60 45.38 48.84 18.60 76.11 0.79 90.95 90.58 73.55 26.34 52.89 55.63 84.48 48.64 94.27 76.54 10.89 -84.64 89.88 73.63 67.46 93.87 46.20 26.83 8.77 33.56 17.03 16.59 94.24 3.31 54.09 47.75 47.66 64.59 65.89 97.72 63.65 89.96 56.37 51.91 96.22 68.95 34.08 1.16 42.05 13.41 34.77 40.26 23.54 11.71 18.48 64.07 50.45 49.06 42.57 31.85 41.31 58.21 71.96 73.87 11.52 88.51 89.50 16.09 39.84 21.54 20.23 21.56 43.90 60.56 8.71 10.77 90.38 28.52 6.68 3.38 53.29 63.63 56.64 20.35 25.91 33.41 72.36 42.62 41.89 31.78 90.24 16.55 96.81 25.70 71.14 59.20 40.93 36.46 48.48 21.60 4.46 78.00 13.20 48.00 15.65 48.71 63.90 8.56 42.75 53.46 62.76 53.18 88.19 31.60 85.13 77.28 27.49 33.17 38.97 7.14 57.33 -1.09 40.18 85.69 23.97 79.48 88.85 90.99 77.57 3.69 56.15 76.80 49.20 31.89 59.72 96.41 43.64 64.60 71.13 68.53 58.30 55.49 40.20 54.11 96.50 65.22 69.72 19.42 38.34 17.66 2.00 50.00 9.56 98.18 8.74 41.93 47.79 25.42 2.25 38.17 59.70 2.82 13.59 81.02 47.23 45.81 96.61 91.59 66.37 98.27 18.14 73.00 14.21 21.15 19.56 86.62 80.45 33.80 68.95 84.83 70.53 13.58 91.65 18.15 88.82 79.06 9.20 58.80 75.13 51.91 6.25 99.82 31.49 59.00 2.33 82.73 74.43 42.95 15.91 40.66 4.80 18.69 73.06 72.39 29.07 51.56 53.23 84.76 16.25 4.77 65.81 51.03 60.02 50.96 97.85 45.77 40.92 36.72 34.43 12.99 31.59 -13.05 91.72 96.05 97.01 88.48 25.40 72.36 54.73 84.39 62.19 21.79 92.25 21.41 22.19 73.42 50.75 95.10 13.35 11.42 65.41 97.82 59.01 39.52 53.45 37.72 74.63 20.84 15.52 22.53 20.25 25.10 36.14 43.79 15.68 69.68 17.78 55.15 42.63 3.95 68.94 44.91 29.96 35.87 73.13 8.22 10.73 68.67 79.00 63.75 54.66 14.32 40.51 13.74 15.14 34.50 10.92 53.77 13.52 44.93 44.13 3.16 9.46 77.93 50.65 62.77 67.74 44.59 2.43 35.51 68.51 39.40 56.01 85.92 47.78 16.37 96.94 62.90 9.86 29.31 70.85 47.40 36.15 91.19 49.29 96.85 61.22 41.27 56.68 85.52 34.62 82.03 94.23 27.89 21.95 37.28 32.90 6.46 66.05 64.19 29.17 -33.08 44.16 38.98 86.96 13.93 96.39 20.51 78.27 96.32 81.87 87.48 6.98 99.51 30.09 90.15 87.74 84.25 47.46 68.03 44.32 86.85 68.90 46.89 98.70 81.33 63.70 94.22 47.46 0.91 78.22 68.77 27.10 14.96 87.27 28.57 5.88 22.47 72.62 54.56 93.45 13.86 80.12 20.87 65.97 78.57 99.39 14.64 0.86 65.68 4.63 84.11 22.41 7.21 16.21 93.93 65.54 3.97 80.41 94.13 31.64 71.69 98.35 80.27 82.96 61.57 94.41 91.65 66.00 19.53 71.10 29.45 58.85 5.91 9.91 38.31 50.38 22.80 89.79 7.60 70.24 13.14 91.46 37.79 75.74 7.23 28.11 86.27 94.80 96.82 75.84 72.71 0.73 14.02 64.31 1.82 29.78 10.65 33.83 25.30 77.68 -55.00 53.54 99.82 56.41 83.84 55.46 90.86 1.62 67.39 11.12 13.29 38.78 78.46 20.90 89.15 3.30 74.01 64.29 34.71 95.81 81.36 35.75 62.74 43.74 19.60 23.42 54.63 42.02 29.14 5.01 52.27 55.13 81.23 25.12 41.62 95.37 6.17 81.39 43.15 87.13 67.35 41.93 57.21 47.16 38.68 97.95 0.52 47.84 76.71 82.73 82.71 49.90 17.26 2.91 55.22 26.68 95.13 59.59 78.02 15.73 42.85 42.96 28.36 93.81 79.78 55.68 28.20 70.51 8.41 7.00 90.39 89.84 47.61 12.65 77.57 92.91 54.15 86.73 61.29 33.85 51.82 54.60 68.77 51.62 33.87 40.46 10.72 7.37 14.96 43.15 16.09 4.10 84.87 43.56 49.10 63.61 32.20 38.15 78.69 35.30 -24.13 75.32 82.18 92.23 57.82 54.24 22.24 82.76 9.97 59.63 91.80 52.08 74.05 66.75 13.73 12.86 17.07 97.11 66.76 19.47 62.16 73.40 28.96 91.53 80.33 75.16 50.23 84.23 16.34 18.50 20.03 19.01 49.11 14.20 67.67 70.62 96.04 21.65 91.68 57.92 25.45 20.16 27.76 23.69 38.67 73.91 13.95 30.50 41.90 10.76 4.58 36.24 4.07 51.31 50.44 96.49 30.24 71.22 10.32 43.22 93.07 79.31 8.90 68.25 13.17 70.30 7.54 4.74 30.83 80.01 14.98 46.30 62.23 9.72 9.73 72.18 54.70 45.79 55.37 86.08 78.50 68.77 68.14 20.64 5.04 85.74 99.43 9.28 62.69 76.15 77.72 5.50 36.75 67.78 44.51 37.03 23.11 31.78 21.01 4.99 -69.18 58.89 79.90 74.31 96.45 63.48 24.10 8.92 29.09 11.05 46.64 91.40 11.95 86.53 65.56 23.83 29.57 78.18 36.18 55.42 32.64 69.74 6.85 38.47 8.13 27.58 44.55 66.45 76.89 42.25 46.26 62.12 74.43 66.23 8.87 17.20 27.41 88.76 26.80 18.52 97.82 21.90 44.07 8.62 98.51 94.54 7.17 35.96 61.58 40.91 10.62 16.22 96.30 4.75 73.45 9.35 83.69 67.68 49.57 84.40 37.36 61.53 79.22 6.63 97.51 12.21 6.88 31.99 62.98 68.73 89.45 93.22 5.47 49.36 90.41 29.57 91.83 87.39 16.96 77.47 7.46 10.20 8.80 31.58 26.22 28.64 91.03 0.89 11.67 86.64 65.93 63.14 32.81 82.85 71.18 56.84 43.31 14.86 10.28 73.29 -95.97 7.28 85.88 19.25 24.29 34.14 36.72 29.30 62.70 84.29 11.34 47.09 84.84 83.08 24.46 69.88 17.13 92.37 77.21 2.04 11.80 64.12 47.47 30.81 51.00 14.96 5.38 34.79 38.35 89.21 42.22 89.67 26.95 89.56 51.43 72.95 81.52 48.04 57.84 99.04 50.78 27.13 28.70 39.67 28.72 38.22 99.89 97.34 15.72 58.22 78.15 68.77 31.60 10.97 44.27 93.21 51.81 6.73 69.75 64.03 9.68 20.78 34.15 78.54 91.13 24.45 78.38 63.37 81.25 40.03 13.92 57.20 75.19 31.10 35.61 60.33 16.80 58.69 87.31 74.28 45.14 14.44 21.66 62.06 96.69 71.44 3.32 47.32 98.54 62.71 66.89 80.29 40.94 11.20 39.72 58.87 53.17 36.28 35.12 19.54 -40.24 23.42 32.31 2.66 21.69 12.40 62.84 81.65 5.26 71.73 32.59 45.19 54.95 38.08 71.50 89.24 38.10 77.99 94.72 1.18 85.28 21.79 56.63 46.49 95.33 18.36 57.20 65.80 42.46 70.14 28.05 47.45 65.72 78.13 41.35 29.75 37.10 36.25 62.91 35.76 70.90 0.62 5.17 63.37 86.05 26.27 57.99 8.90 11.64 9.67 25.56 92.05 84.96 82.00 94.94 18.11 99.55 41.76 95.37 61.18 17.72 1.55 19.44 20.55 98.00 39.64 14.72 73.65 47.24 20.22 89.92 72.16 93.21 39.41 63.48 17.91 66.17 80.88 66.08 11.03 55.89 72.46 42.38 61.92 63.14 26.75 31.15 86.95 5.61 42.77 89.99 67.72 36.76 13.50 94.79 46.66 70.39 35.98 71.36 30.53 -36.94 27.58 52.64 35.95 95.07 93.15 63.29 71.46 12.44 98.10 74.42 67.15 59.75 72.28 66.52 61.89 67.90 94.14 64.23 44.83 38.23 8.79 22.54 91.16 80.20 32.75 25.03 26.82 98.95 73.06 87.57 37.17 94.34 1.10 6.01 97.43 70.42 50.99 8.65 63.53 45.36 36.02 42.31 25.39 96.33 44.03 68.77 61.51 44.70 37.38 97.17 56.78 75.41 40.19 11.64 48.64 5.61 52.60 2.56 54.84 26.30 37.23 81.40 1.08 5.55 38.61 84.86 27.67 70.53 71.46 28.50 42.26 60.02 24.51 77.33 31.57 80.81 87.25 91.28 66.00 54.58 35.18 69.36 17.40 83.20 36.82 25.55 61.14 22.15 82.56 3.41 79.88 18.72 27.47 92.70 50.65 70.31 13.52 68.05 69.29 -99.63 90.84 55.05 63.70 69.28 89.72 69.51 48.09 97.87 29.76 6.39 17.99 52.02 42.48 44.17 23.29 7.03 73.08 52.27 82.66 60.26 14.69 24.96 0.16 73.30 30.66 82.23 23.57 44.70 6.32 46.26 54.25 71.30 78.37 57.21 91.64 29.42 34.13 66.57 2.65 18.06 62.60 68.24 16.35 4.28 58.11 66.16 95.86 74.61 82.85 13.66 25.02 5.37 9.30 43.05 0.71 97.19 26.34 65.98 24.47 89.24 61.88 53.14 18.93 44.59 43.87 4.08 8.25 3.69 77.41 96.16 70.84 6.50 74.63 96.23 87.19 50.18 38.92 44.63 12.18 98.43 28.81 43.02 44.61 98.09 97.26 99.51 66.74 53.92 74.02 19.10 71.53 64.01 15.62 68.65 31.39 92.59 41.90 6.72 73.08 -43.60 96.55 50.46 15.69 78.29 28.74 28.94 27.07 60.02 46.27 88.51 90.46 50.17 94.71 75.44 33.75 2.57 77.35 61.97 94.21 54.12 24.64 98.61 92.95 50.84 94.14 26.43 25.61 79.51 60.34 99.96 5.80 86.95 49.62 43.01 19.90 21.35 6.52 25.78 68.66 39.31 40.65 23.76 54.43 69.34 66.89 61.40 82.63 55.08 79.33 1.35 73.58 81.08 96.26 65.21 47.60 55.01 38.75 67.41 71.18 37.05 97.70 4.79 59.18 11.05 22.26 66.99 8.70 28.77 80.86 31.65 98.52 38.65 93.87 59.64 65.47 47.93 56.44 66.14 21.01 29.61 39.30 84.51 25.97 81.47 66.09 17.61 39.85 56.91 76.32 2.36 25.20 84.54 54.02 84.76 35.04 45.36 64.57 54.85 47.08 -77.03 92.20 98.97 9.63 36.24 46.24 83.19 8.47 10.44 46.02 53.18 70.83 51.50 19.88 82.70 89.90 55.95 65.33 88.40 57.58 38.46 64.65 35.13 20.57 51.10 99.07 2.52 16.50 35.63 5.35 85.35 41.82 60.38 3.31 20.15 31.83 98.69 19.15 87.96 77.75 59.96 23.02 6.19 26.85 75.91 3.68 88.69 13.37 24.95 55.26 94.61 92.88 45.99 16.91 47.65 41.07 93.66 72.41 41.69 1.20 31.27 94.17 23.90 60.87 71.84 12.16 12.95 90.18 73.98 50.93 21.26 85.67 81.22 60.57 56.17 95.03 43.17 80.66 21.44 12.67 18.02 58.23 23.71 0.34 41.33 32.01 53.53 53.44 2.67 10.31 26.78 52.57 38.37 39.19 79.62 29.34 1.56 39.99 69.71 73.46 -51.54 50.26 32.57 18.66 56.24 43.23 62.74 34.70 83.41 64.07 33.37 67.22 84.91 36.29 57.90 0.38 21.79 82.89 19.67 63.19 4.13 95.80 95.97 63.00 52.04 87.26 18.94 16.66 43.20 39.08 17.26 72.93 28.17 28.36 66.47 71.80 37.42 19.99 75.11 59.92 44.70 10.77 89.71 12.13 14.30 91.05 24.02 27.62 90.08 78.17 84.04 56.78 82.51 73.70 89.79 81.96 15.94 22.08 43.13 18.59 71.59 36.47 22.41 2.85 99.95 30.01 3.61 55.01 31.21 78.88 49.66 7.70 99.73 60.41 28.71 64.52 95.03 63.38 95.94 7.97 6.99 76.08 42.31 17.12 23.04 65.11 49.57 15.63 4.22 57.22 0.52 31.12 96.63 63.11 84.80 26.64 46.39 6.69 99.15 91.20 -94.19 67.92 24.83 75.91 47.36 3.05 89.62 95.67 45.56 72.21 68.31 52.93 1.29 49.67 96.69 4.49 62.30 17.80 38.30 40.60 26.41 79.86 2.27 25.85 65.56 56.47 54.11 0.80 66.76 63.76 24.27 21.85 69.76 63.31 72.23 4.53 37.55 77.60 47.06 77.51 92.87 25.11 36.71 87.81 99.45 19.94 65.84 0.06 91.52 85.20 4.59 18.05 74.73 66.17 48.51 15.03 79.58 83.62 13.75 89.33 44.98 8.57 13.71 35.97 69.50 29.05 4.90 63.32 35.51 81.95 68.12 60.47 6.77 70.09 8.27 43.99 3.85 6.79 42.07 50.59 84.60 17.15 80.93 91.88 68.44 16.67 32.89 19.34 85.24 81.50 76.54 20.06 79.59 62.89 95.62 73.48 9.37 63.56 97.17 66.60 -59.49 29.37 11.56 96.93 20.65 32.89 89.30 15.44 68.18 17.52 76.72 33.15 14.62 87.19 99.23 71.04 27.70 89.16 61.17 61.86 97.14 38.22 33.06 11.35 7.80 43.93 34.17 52.75 69.97 59.37 50.90 88.63 43.24 35.54 14.35 18.02 57.36 4.37 21.79 53.48 10.59 5.90 30.01 24.72 80.57 50.74 23.69 52.90 93.96 98.62 68.90 84.23 64.41 88.78 55.58 59.93 2.25 35.55 33.18 11.74 46.65 9.01 79.59 59.61 35.04 29.31 99.97 71.18 85.65 43.93 72.08 95.32 92.08 32.20 6.97 21.72 48.18 41.30 8.16 2.44 49.34 42.35 98.71 89.00 12.64 29.16 62.06 56.13 85.66 19.80 18.45 15.02 72.63 11.66 51.78 63.46 12.09 62.79 45.78 14.96 -62.23 63.82 40.22 92.77 3.70 95.13 57.89 61.96 27.84 65.46 86.60 94.67 11.76 64.09 19.47 79.13 10.25 76.92 58.73 90.19 79.79 17.06 55.66 16.28 58.05 32.88 63.08 56.57 38.31 74.76 53.70 29.55 9.08 70.82 58.63 53.41 77.18 38.12 56.89 43.71 51.53 84.61 55.45 43.70 78.40 14.45 16.33 12.55 16.39 15.03 8.13 69.70 84.16 61.47 35.24 66.69 11.69 24.81 9.41 87.69 79.85 13.20 64.46 94.06 25.78 64.09 52.32 56.66 64.12 17.06 0.32 80.39 55.40 0.16 14.27 56.33 41.88 49.10 7.52 99.30 76.94 10.91 36.27 23.35 44.00 14.78 33.45 94.22 6.53 93.84 46.30 93.55 4.64 38.00 6.85 31.28 89.79 63.79 16.96 37.17 -43.43 51.55 67.85 44.08 20.13 99.09 36.96 80.83 29.20 10.10 93.79 10.33 48.56 43.75 64.26 81.49 44.47 62.91 76.93 77.20 4.47 7.04 97.67 44.97 20.17 93.92 78.18 81.38 52.54 3.65 49.12 48.19 66.48 83.75 36.05 23.66 84.07 75.85 66.18 55.50 78.44 81.11 54.76 43.34 18.02 38.37 20.49 5.83 88.74 32.30 57.12 83.40 37.72 49.73 68.68 21.04 96.02 2.73 1.39 48.45 89.12 69.91 86.05 72.93 84.77 36.88 55.10 79.45 27.87 9.04 65.02 44.61 12.94 35.65 98.95 7.68 9.16 95.70 67.16 94.69 36.48 67.90 92.95 10.93 39.56 44.29 18.28 90.81 79.68 71.76 38.44 47.56 79.56 61.09 65.34 29.38 29.38 58.10 24.33 54.36 -84.27 41.68 26.33 56.61 26.84 80.84 24.83 49.28 82.98 0.34 49.24 77.52 10.32 10.54 65.43 61.00 18.55 81.84 3.92 12.80 27.72 13.27 10.63 84.91 17.17 80.55 33.70 39.98 79.86 43.52 44.64 27.36 34.03 2.47 4.94 96.05 47.63 72.40 36.95 89.47 17.81 85.92 97.80 99.56 39.92 63.61 69.36 83.53 17.86 22.11 43.39 65.77 56.65 96.38 72.45 99.17 78.05 77.42 6.52 35.19 48.00 17.53 37.44 7.17 66.48 58.80 55.35 62.86 53.89 2.44 55.13 46.32 50.58 59.76 4.45 50.78 3.89 94.20 99.97 84.65 98.75 41.26 2.50 44.32 82.30 75.08 32.17 16.94 2.93 99.81 78.20 23.33 78.53 14.18 25.45 40.70 66.19 81.83 88.11 45.06 -86.22 25.86 84.94 5.62 65.09 18.42 50.65 74.17 65.01 3.84 50.09 34.18 6.78 49.48 9.97 74.78 79.72 64.94 85.87 34.34 28.92 81.59 20.31 67.24 64.66 59.37 17.28 40.17 12.50 17.03 3.33 25.66 84.03 34.73 50.80 41.11 1.68 50.58 9.33 26.64 52.50 22.71 77.21 50.95 29.41 55.27 42.49 33.21 51.37 36.61 7.03 89.34 0.36 31.46 42.58 11.86 33.76 31.74 57.03 4.05 70.11 22.34 87.88 48.42 83.30 76.09 62.99 36.73 78.74 5.58 63.60 74.45 97.14 51.40 48.75 76.28 60.79 63.97 35.94 46.80 64.14 48.99 95.57 85.95 93.37 19.45 99.92 11.33 80.44 73.99 8.75 36.04 67.65 21.11 87.93 4.57 23.68 77.28 51.72 54.22 -17.87 41.45 25.35 10.17 74.97 83.42 14.09 32.25 89.58 39.31 85.95 23.95 13.32 57.12 91.34 70.25 79.63 34.15 92.86 21.97 84.89 34.74 36.64 15.52 6.04 95.41 76.07 93.40 37.19 43.04 37.69 46.73 71.18 45.09 43.94 98.03 84.72 74.73 34.49 71.94 3.12 38.61 39.91 11.91 73.02 78.39 11.52 4.29 47.63 90.21 68.31 31.49 61.00 40.52 94.94 2.31 83.32 44.77 92.18 70.95 30.13 62.65 13.19 78.42 4.63 93.95 84.59 84.43 23.20 86.98 40.65 16.63 80.54 21.85 19.12 44.90 23.75 69.22 46.70 46.84 47.52 57.08 1.38 59.86 98.54 28.30 63.38 4.44 73.58 6.99 40.91 42.96 4.04 24.79 59.24 86.56 37.49 64.04 33.61 19.07 -72.30 81.51 82.27 95.87 71.77 58.67 9.01 17.71 2.66 2.59 10.35 49.79 10.65 15.92 97.77 88.14 34.34 91.82 78.12 23.01 10.26 52.87 12.92 30.97 1.84 42.33 99.11 60.55 64.39 83.40 6.94 36.63 62.10 56.05 50.79 36.10 87.51 56.61 36.88 30.57 31.04 10.12 99.30 33.39 82.75 80.45 12.56 99.47 65.35 43.95 41.27 2.34 80.86 78.94 76.34 87.73 90.85 69.25 75.18 95.71 98.84 23.98 87.76 21.80 16.28 51.44 80.22 94.20 4.99 80.24 56.64 7.82 10.90 17.56 17.95 62.46 38.04 21.08 36.15 74.07 16.87 73.72 60.15 46.76 95.42 81.70 40.14 80.93 13.82 6.05 9.83 1.28 48.59 22.87 96.59 91.91 98.78 65.54 30.58 52.35 -11.65 44.27 42.63 78.89 51.46 54.44 1.98 21.92 36.92 35.88 82.80 10.41 6.49 14.99 76.37 56.64 21.98 16.70 42.28 33.87 44.81 31.90 46.33 17.96 46.05 92.68 34.57 98.14 47.29 39.72 97.33 28.53 21.77 99.33 1.16 67.94 55.94 15.54 29.48 43.42 27.87 71.15 63.84 15.72 48.06 32.25 48.74 10.89 13.11 22.41 87.69 0.57 63.26 83.04 88.00 59.94 66.09 26.25 96.58 72.37 40.18 94.57 21.99 75.48 45.39 11.97 19.31 55.08 85.34 96.46 9.69 14.78 77.70 25.20 69.66 4.45 2.60 58.75 59.86 78.87 69.29 62.96 73.84 28.41 4.33 64.58 85.86 71.28 40.73 69.20 3.23 83.54 20.30 85.90 73.41 3.67 92.29 68.93 16.00 41.01 -81.35 14.96 12.44 96.07 34.87 50.34 64.25 64.07 61.67 25.25 7.70 35.16 17.39 9.57 90.94 48.51 67.74 81.14 1.97 46.67 26.16 4.20 53.26 85.22 59.98 5.33 8.75 45.54 75.67 24.33 82.05 90.60 45.83 89.13 99.30 27.71 66.80 17.49 63.48 18.25 42.37 59.37 89.51 62.43 45.97 28.65 15.71 65.82 24.30 37.82 81.48 66.57 88.29 90.70 47.39 7.96 84.25 87.65 54.98 72.60 61.40 78.12 96.33 15.15 57.23 2.96 35.14 65.57 10.87 85.12 84.49 78.50 16.31 8.81 6.06 83.05 28.28 64.02 1.44 51.48 56.70 23.82 60.93 52.34 37.11 31.39 15.52 17.84 58.05 79.52 90.24 34.36 80.25 71.42 4.35 51.10 95.97 60.87 25.98 38.51 -26.07 66.07 67.71 56.01 1.24 42.86 20.92 17.01 79.85 4.41 42.12 78.83 82.17 11.14 11.22 87.87 20.61 13.97 74.94 86.39 97.85 51.26 35.60 84.68 14.93 20.39 30.46 98.86 67.41 64.83 75.52 74.97 62.35 48.27 12.14 18.07 31.94 76.52 8.20 94.39 50.94 15.91 48.54 4.16 2.00 94.90 43.62 16.78 66.84 12.74 67.35 43.51 82.98 51.44 27.07 92.69 50.78 44.95 66.21 13.50 24.01 45.60 78.95 18.23 32.92 61.04 83.27 77.59 11.10 52.53 84.40 86.27 53.78 12.96 53.32 29.20 54.17 83.25 51.32 91.33 66.61 57.33 33.06 82.11 2.12 84.69 55.54 34.14 59.63 24.47 85.78 55.03 94.53 87.20 76.19 13.39 65.63 88.66 98.21 0.31 -38.03 32.93 81.64 63.80 21.37 51.24 92.42 86.31 29.88 59.26 87.17 8.27 41.01 60.84 90.43 61.64 67.69 14.35 22.49 19.44 90.32 1.87 95.76 2.00 95.05 35.15 57.09 30.82 95.35 58.51 9.04 8.16 87.29 18.43 78.36 16.09 30.19 39.19 44.01 18.07 40.44 41.96 96.39 89.21 74.26 39.63 90.21 56.26 76.34 12.16 75.30 71.67 60.93 19.73 99.37 34.82 50.44 96.01 99.21 32.11 22.39 46.73 12.94 38.47 2.06 69.78 15.25 15.14 5.09 91.36 84.60 6.13 3.50 56.46 43.99 83.02 92.45 98.42 51.55 33.32 4.76 63.83 38.20 19.59 55.38 81.83 32.76 52.16 23.80 74.46 83.79 96.29 54.01 24.49 16.10 1.30 29.65 91.83 94.99 0.17 -66.91 79.90 81.31 90.72 37.26 92.31 93.81 61.39 41.32 86.87 26.12 63.67 38.19 53.77 17.20 58.26 74.14 6.32 27.38 88.66 95.65 47.77 59.71 81.03 49.62 17.81 30.62 55.41 84.63 65.41 18.23 50.03 98.06 70.02 63.72 76.97 73.21 24.83 32.31 30.82 59.58 89.04 50.02 72.50 15.85 16.97 30.51 10.65 38.00 63.80 40.35 8.29 54.77 22.81 57.17 21.60 3.35 47.93 2.32 67.91 13.57 69.79 81.26 23.00 12.18 36.46 31.80 38.27 73.68 94.27 32.06 4.72 76.78 32.57 73.92 27.85 45.62 23.68 27.85 84.41 61.13 43.94 51.19 60.44 34.91 9.87 98.57 36.80 37.76 64.02 22.72 26.02 92.79 32.06 30.18 71.27 72.10 64.33 31.83 60.83 -10.57 74.81 37.24 32.19 25.29 37.35 83.34 68.29 99.46 6.74 1.60 56.20 18.45 18.16 34.16 60.11 43.53 43.75 21.66 97.18 26.56 13.10 7.86 80.98 43.88 66.95 85.86 24.70 46.20 52.77 19.01 90.17 33.51 47.79 69.71 89.46 97.16 36.66 39.49 23.87 93.49 24.84 79.68 17.05 38.32 51.49 37.28 36.78 68.88 6.58 64.24 40.21 79.29 96.74 64.54 45.25 40.81 20.81 79.03 67.79 21.28 93.45 33.17 29.06 26.84 47.47 70.31 96.45 7.35 43.92 92.08 4.76 14.42 87.53 57.53 72.48 73.59 39.21 39.13 38.08 3.29 32.41 65.77 70.72 41.91 49.23 70.81 67.78 75.15 34.72 52.83 99.41 41.94 68.45 91.68 81.92 80.95 74.62 32.40 43.77 -17.89 23.02 29.21 86.41 35.47 91.70 89.35 37.44 70.67 56.97 99.89 50.84 49.44 80.25 97.11 9.80 78.13 79.59 60.51 81.74 68.90 66.04 79.79 15.89 34.13 77.49 92.86 97.96 11.84 61.42 44.76 58.72 9.82 49.39 28.92 19.66 10.45 92.24 69.18 0.37 46.00 29.77 35.01 27.70 0.08 15.38 97.84 9.35 81.27 47.98 45.50 90.92 7.99 24.16 22.70 39.80 45.14 8.28 88.44 0.57 95.65 98.83 86.33 75.14 50.79 64.81 19.60 22.01 37.58 32.65 63.89 21.38 76.71 69.51 92.50 76.84 55.63 96.66 32.41 18.07 82.80 11.33 7.61 46.73 67.54 28.49 43.99 67.66 44.78 4.89 92.91 48.30 36.98 93.21 37.65 17.13 74.03 80.79 31.09 38.86 -21.90 34.60 14.76 30.38 12.27 77.73 68.70 82.98 6.46 75.65 6.83 30.24 56.74 41.14 21.90 86.30 76.95 72.24 50.42 5.76 47.35 21.05 3.04 31.40 69.01 39.69 67.69 72.81 83.93 94.22 26.78 78.16 55.71 47.97 36.01 55.73 30.10 22.41 45.03 36.13 73.04 20.89 21.70 26.00 76.59 51.26 15.37 12.13 80.74 57.41 38.51 28.11 78.35 50.58 91.38 76.75 84.75 0.03 75.77 51.93 14.88 90.71 21.81 57.41 28.05 39.37 74.78 24.18 7.05 22.61 89.96 8.17 70.09 52.12 96.00 0.79 52.65 34.56 89.95 64.17 73.59 69.14 86.80 28.65 62.40 99.04 3.39 59.25 97.34 16.68 56.93 65.33 30.23 2.18 7.62 8.32 35.91 90.50 14.04 58.61 -66.00 57.00 67.10 85.94 66.36 88.87 52.34 97.71 49.17 41.43 14.25 23.36 2.92 33.33 99.52 92.51 5.94 26.27 6.85 70.79 19.98 30.85 83.40 38.74 30.40 88.27 76.31 99.27 5.32 69.55 56.20 88.62 43.18 40.50 82.67 51.29 29.02 53.65 76.64 26.82 93.63 23.02 73.72 48.24 72.27 39.48 77.69 11.92 58.92 17.94 1.92 64.75 18.24 81.71 95.71 24.91 41.99 39.20 73.32 6.02 7.34 7.61 81.90 29.59 5.08 19.58 40.36 43.63 45.74 36.14 23.78 27.41 52.24 7.60 19.96 73.67 78.94 20.50 76.11 63.67 99.27 54.45 39.92 60.75 69.25 66.39 41.01 14.83 86.17 11.68 94.07 32.38 96.60 82.73 58.02 47.34 73.09 35.33 0.29 46.47 -79.26 85.57 83.25 1.19 98.99 61.89 75.68 74.97 14.12 29.32 59.12 68.22 86.66 87.10 54.28 70.20 58.40 48.08 31.50 32.54 13.56 53.59 95.85 70.22 10.08 65.44 51.92 79.27 38.54 97.57 34.49 95.00 62.59 28.64 23.39 5.44 47.20 83.57 43.03 98.60 7.27 97.47 84.80 43.88 1.63 74.74 21.24 70.73 19.44 45.66 83.11 34.78 65.93 28.18 33.48 56.83 46.96 45.97 21.67 50.06 80.71 38.70 35.39 93.48 52.13 8.58 56.70 26.94 72.80 43.83 34.05 36.60 34.16 39.29 61.02 19.79 8.69 53.00 72.23 49.85 82.04 86.28 25.15 80.19 26.72 34.46 57.48 55.49 89.40 82.68 16.30 52.94 1.75 60.63 59.98 59.66 50.05 28.49 67.57 50.86 -83.58 43.73 25.56 6.05 43.53 4.56 37.62 10.21 32.89 23.09 68.85 10.31 27.22 48.92 74.75 16.84 47.32 26.75 91.08 66.65 30.90 0.23 63.59 53.51 79.97 94.65 34.27 32.20 77.66 87.70 8.64 37.05 4.91 21.48 85.78 70.85 19.66 71.01 14.20 40.11 4.21 25.71 95.79 89.55 70.84 68.91 48.80 15.51 1.20 27.01 64.71 63.54 57.53 85.23 4.84 95.73 80.05 92.95 25.03 3.15 52.77 33.56 19.98 7.01 38.81 96.53 50.43 10.99 65.54 32.63 19.80 95.43 12.76 29.84 75.37 38.80 42.31 48.71 65.27 5.51 87.88 11.91 83.02 83.02 29.33 15.15 47.41 55.84 60.99 95.61 70.05 54.02 30.43 34.21 43.00 87.77 82.84 77.44 91.74 38.14 -77.17 10.96 93.06 88.77 47.88 83.43 49.09 70.64 32.37 15.58 30.09 9.91 49.96 67.04 28.28 28.07 91.91 3.06 62.99 21.47 66.75 17.08 99.41 91.60 44.81 29.16 9.27 80.82 49.47 92.61 44.18 83.45 80.29 88.80 42.48 40.43 4.47 65.78 82.07 10.03 53.29 40.14 22.41 64.24 64.24 91.59 66.19 30.06 50.70 62.66 56.64 85.90 63.54 32.15 43.60 67.85 33.06 95.07 95.90 68.69 49.02 32.51 31.70 98.07 18.07 33.87 33.41 41.01 40.32 87.91 76.80 53.02 51.91 0.91 9.04 4.66 69.91 16.86 50.50 3.27 57.05 96.22 97.80 27.19 24.80 82.94 81.54 27.41 43.70 82.86 40.64 66.82 29.67 66.75 88.57 16.51 92.62 72.07 57.95 16.74 -56.14 73.94 66.36 50.00 39.03 93.82 76.21 77.52 58.43 53.40 87.55 76.92 22.17 33.84 19.16 8.69 76.16 82.85 89.02 36.28 81.22 33.19 49.77 53.64 67.32 63.68 45.21 36.74 54.80 52.04 50.16 64.56 18.43 41.74 9.43 84.89 93.45 90.60 13.42 11.26 45.42 47.60 0.46 93.77 67.66 21.90 32.49 57.87 46.97 58.29 35.56 30.90 61.16 34.15 74.64 44.92 15.93 47.46 34.02 39.31 40.65 12.54 3.69 80.11 72.75 96.08 46.54 7.16 1.27 42.22 48.74 20.93 5.33 26.73 98.92 68.92 95.99 99.22 57.60 30.77 49.16 59.76 12.26 33.65 12.02 49.43 54.38 26.71 14.34 89.74 85.04 52.21 20.60 31.60 79.86 85.69 3.43 69.38 28.26 8.02 -81.69 64.73 5.71 68.16 74.01 47.04 3.20 72.01 30.07 84.84 2.82 26.46 44.29 10.51 26.60 88.07 13.37 68.77 2.99 51.37 38.26 22.11 69.46 75.80 34.09 59.92 33.31 1.86 40.48 75.93 56.89 82.73 51.36 6.42 83.10 70.31 45.45 92.36 69.72 65.63 88.00 97.71 14.50 45.13 63.83 99.13 74.77 43.81 69.03 85.05 36.29 28.28 85.24 89.79 70.44 23.26 93.32 11.92 32.63 90.07 32.88 63.72 20.79 62.54 54.77 96.83 33.58 53.18 29.22 92.20 19.51 92.45 69.88 92.10 43.91 72.65 73.19 69.53 56.73 80.45 79.99 76.97 21.16 40.03 86.58 86.18 54.91 33.71 1.67 87.64 23.91 66.67 41.53 14.34 66.40 73.38 85.19 99.40 15.63 55.45 -46.99 32.32 22.67 49.20 18.16 6.75 22.59 86.75 47.15 14.37 24.27 6.63 20.61 20.77 66.33 85.64 14.44 25.82 26.89 75.26 40.43 14.42 75.37 46.42 32.91 39.32 4.43 33.92 4.53 52.82 49.53 40.32 45.93 91.11 3.65 79.89 48.07 22.63 67.11 69.29 44.14 62.85 32.16 95.67 44.02 68.10 76.86 98.49 35.11 25.67 74.61 46.30 28.97 29.91 91.55 94.34 24.50 41.79 72.06 16.72 43.06 83.05 65.48 47.57 59.23 80.85 33.09 8.73 19.61 16.21 79.00 17.70 47.79 78.93 85.75 81.50 63.86 10.78 29.12 58.46 90.13 33.23 25.53 53.38 70.73 62.21 57.34 60.87 62.44 54.75 57.42 7.40 28.02 13.65 29.86 60.83 43.90 55.51 93.11 39.78 -55.91 80.90 62.38 29.82 38.46 89.90 51.85 75.76 76.39 1.23 52.92 18.48 87.08 45.43 28.81 85.11 88.32 26.39 46.14 43.16 1.33 47.89 29.70 3.44 40.61 86.41 29.13 48.89 49.85 24.80 55.77 81.53 32.27 71.43 78.68 24.40 6.03 95.05 16.98 30.59 41.16 64.25 9.99 35.83 73.52 8.87 73.84 68.21 11.25 4.82 34.71 7.90 16.14 28.36 30.09 39.12 83.00 73.29 17.87 78.31 98.55 74.59 30.31 11.53 50.96 44.27 65.75 64.52 62.76 90.92 39.01 40.63 42.13 78.48 5.07 6.96 78.76 52.57 42.01 92.98 45.17 76.98 53.86 8.83 77.45 31.09 94.11 78.70 39.21 83.97 59.26 7.99 92.69 84.27 51.79 33.72 67.82 34.47 53.09 12.10 -59.30 32.16 75.19 65.92 85.20 5.81 44.78 25.66 19.73 15.85 85.23 71.80 62.11 5.00 25.71 33.12 53.19 52.81 95.65 53.85 90.83 4.99 0.45 24.06 69.08 18.12 90.34 61.55 8.20 47.46 90.49 35.04 73.70 85.23 54.28 49.84 74.39 17.91 66.92 84.92 74.12 67.23 66.23 69.46 4.39 65.49 36.56 64.75 27.97 90.79 40.62 10.58 50.17 95.67 16.85 74.12 92.37 23.21 34.51 7.44 58.05 34.87 9.71 15.35 5.48 64.62 52.44 41.62 32.60 32.14 13.61 30.76 39.67 75.57 5.59 82.78 64.10 9.12 52.23 91.38 99.36 60.01 41.84 68.24 74.70 72.72 16.70 61.24 21.51 69.02 58.30 81.92 36.02 8.85 40.87 92.03 56.61 59.61 37.41 66.32 -59.39 12.89 57.34 90.71 11.75 79.02 90.00 51.46 90.19 56.65 71.37 40.73 55.99 44.52 69.29 37.11 79.89 26.07 26.42 18.43 38.21 32.30 20.87 91.41 86.60 50.32 30.75 9.34 18.11 34.58 69.43 27.81 98.85 99.32 71.23 41.20 58.29 21.87 12.63 61.66 48.21 52.98 13.17 36.35 39.89 19.39 5.52 7.31 8.07 2.61 33.13 44.50 29.11 35.90 8.04 57.41 44.28 40.82 31.35 90.13 66.88 14.05 63.45 6.49 39.51 52.57 40.27 15.07 28.40 10.77 21.73 78.90 28.84 64.68 74.63 70.03 60.11 80.34 90.40 40.24 76.16 72.64 93.92 52.74 41.72 80.60 13.26 88.24 21.24 67.08 89.12 49.90 78.03 38.19 20.03 9.08 3.56 28.42 67.00 39.73 -74.35 9.14 64.50 97.59 88.98 58.16 72.32 58.29 27.81 75.58 78.43 31.93 84.95 89.10 99.87 90.05 56.60 4.10 59.60 12.70 70.42 33.97 16.83 98.78 12.94 38.02 18.24 98.32 75.61 5.86 86.55 81.26 8.67 94.28 87.60 70.01 76.27 56.04 96.30 37.69 15.37 61.68 59.51 53.10 73.42 63.39 65.09 19.06 50.06 73.12 96.45 12.18 18.61 63.58 65.23 38.93 16.52 98.38 55.95 77.61 71.44 68.93 10.34 27.69 88.99 78.94 29.82 69.23 22.24 77.39 63.32 37.15 36.61 71.69 23.82 68.18 88.57 43.10 75.27 22.75 26.84 95.21 83.38 39.44 68.01 82.72 84.80 4.34 57.83 49.13 72.65 98.56 64.34 0.26 61.75 0.91 66.45 16.78 49.22 41.27 -52.06 5.94 19.16 50.05 55.96 41.07 78.39 14.66 44.61 26.08 53.21 10.46 79.72 78.47 26.49 43.61 7.87 95.83 88.41 81.09 70.45 16.78 66.84 15.30 99.13 84.74 56.00 69.40 65.17 0.61 40.42 10.52 49.10 68.26 50.92 94.37 8.06 26.20 11.26 73.64 48.97 7.96 49.89 36.18 22.13 22.14 86.23 48.94 23.97 96.87 75.25 73.36 59.58 88.88 27.54 3.04 9.53 0.81 75.94 87.95 2.31 52.40 12.84 85.72 42.52 50.95 93.12 15.96 41.21 29.68 24.13 74.55 94.16 98.07 48.25 98.13 30.60 92.41 96.27 96.09 45.16 17.97 97.60 26.00 37.98 65.88 46.21 54.39 63.70 65.65 14.06 61.47 56.42 81.74 39.57 29.54 65.98 87.62 41.02 12.87 -73.17 40.36 86.85 21.26 99.48 3.07 66.47 72.57 27.75 10.57 55.74 81.06 21.23 38.35 19.65 70.58 43.84 16.08 91.61 35.20 37.38 21.47 44.65 29.36 86.77 11.84 40.82 66.85 69.84 26.46 49.20 35.07 89.97 71.02 70.39 75.78 89.86 36.90 33.18 84.84 91.33 45.44 36.22 91.17 23.44 73.85 46.37 73.58 60.73 13.30 31.91 69.05 4.79 81.96 88.57 39.05 69.15 20.87 77.51 0.21 8.26 4.48 99.11 60.65 26.11 91.10 9.52 62.77 33.69 80.60 31.85 6.36 95.57 92.31 80.18 1.27 31.02 79.41 93.81 73.86 31.01 12.40 52.38 29.52 86.67 56.83 73.65 66.50 66.38 27.84 9.79 89.02 84.59 66.25 71.59 98.43 74.66 7.96 65.71 34.97 -85.69 26.04 69.17 77.60 71.84 28.03 33.99 86.66 20.88 65.47 36.49 25.00 50.65 35.58 52.95 96.01 6.76 96.34 29.36 52.25 54.29 69.72 5.51 80.79 57.73 33.70 51.01 25.53 25.24 74.64 22.68 65.94 5.78 9.53 21.29 5.40 6.44 73.14 84.54 7.31 61.68 91.94 27.75 49.56 6.84 46.89 75.64 77.20 68.06 68.01 3.78 13.15 42.53 53.78 77.94 88.77 29.84 83.98 25.66 37.13 11.53 79.54 6.17 86.05 53.70 67.95 0.52 72.87 94.45 20.44 26.12 47.14 7.90 39.83 91.87 1.81 39.30 68.74 0.12 54.36 28.12 81.62 93.95 74.25 67.17 83.84 47.74 8.12 68.56 6.95 36.79 18.08 36.97 95.91 13.51 11.81 32.78 18.80 83.85 39.23 -98.25 17.91 30.23 50.48 0.59 27.68 92.08 88.32 41.36 30.47 55.33 79.68 20.83 20.17 48.23 35.12 61.22 80.83 84.95 53.58 38.50 47.40 48.07 98.06 52.32 99.67 58.45 31.79 71.82 58.77 99.20 69.25 96.50 63.96 85.77 94.59 21.32 86.07 17.58 73.64 12.14 80.30 92.19 49.79 60.26 90.32 8.15 66.54 9.10 0.10 4.15 9.22 27.38 19.56 5.59 73.84 45.89 94.39 48.72 6.85 49.00 83.46 10.13 82.96 0.92 80.61 72.90 43.78 7.49 87.57 25.25 64.25 34.83 61.27 9.56 62.94 77.09 58.00 33.00 93.35 5.24 26.41 50.92 19.20 21.39 3.31 82.85 32.86 2.66 22.45 24.16 25.92 77.10 86.74 43.55 9.16 92.75 73.37 46.44 65.36 -9.01 12.98 61.63 55.81 12.03 5.49 31.01 86.41 26.11 11.23 76.52 46.87 69.84 62.27 77.89 73.36 52.80 23.26 19.90 46.81 3.45 60.04 73.63 36.97 60.43 38.29 71.16 24.70 96.85 28.90 62.09 80.19 3.83 38.26 97.66 66.81 25.71 10.38 5.46 15.25 8.47 59.71 89.53 68.78 36.66 30.69 77.63 47.54 83.86 12.91 95.51 12.98 31.46 58.12 69.57 35.83 87.03 11.49 88.48 2.43 49.30 44.40 44.53 86.02 49.80 56.95 30.09 61.52 79.84 55.50 97.36 68.44 4.89 6.18 68.79 25.99 41.16 62.53 58.08 64.50 37.17 98.03 54.64 54.59 16.39 43.30 56.91 72.30 68.29 25.84 59.40 3.22 37.26 48.76 11.25 88.15 91.10 25.54 73.56 78.53 -64.23 17.23 25.69 85.41 0.97 89.01 24.47 41.89 5.00 86.21 68.56 98.20 42.16 1.21 10.76 73.64 94.62 91.14 98.49 32.12 79.74 92.46 39.09 33.33 87.32 67.75 90.92 14.71 26.87 0.10 65.60 54.83 8.87 61.76 60.38 2.39 90.90 34.90 79.27 88.87 47.24 87.52 19.99 98.84 95.60 74.37 98.18 40.36 80.77 14.08 70.73 94.27 58.25 79.53 35.30 68.36 77.99 82.56 31.21 97.40 32.22 94.62 34.38 11.90 88.54 46.43 12.79 50.63 50.62 42.28 5.77 77.29 71.80 33.57 76.57 71.88 38.54 93.95 40.59 31.65 67.60 78.11 75.12 6.41 1.50 83.20 71.20 54.73 51.34 22.87 2.95 1.63 97.83 19.56 44.38 68.68 62.23 35.91 73.18 17.04 -15.99 3.80 56.54 16.28 95.61 58.43 94.95 89.41 37.47 24.02 42.37 3.71 94.76 68.16 76.80 77.71 36.28 72.99 60.67 90.12 14.71 91.08 23.73 63.98 24.34 89.31 99.43 62.78 59.64 77.23 5.93 83.17 54.94 39.16 50.50 8.48 57.43 96.51 72.84 8.21 8.85 13.16 81.06 20.40 72.79 83.07 38.77 11.89 94.05 75.67 63.55 78.62 69.98 90.82 1.97 75.58 43.33 43.76 38.60 38.85 69.66 99.53 86.60 48.59 69.07 10.18 7.63 8.25 53.68 91.86 39.13 21.27 95.45 56.12 72.48 94.58 2.91 70.03 84.37 45.41 74.15 68.88 22.08 24.19 4.41 37.32 38.70 18.57 49.16 43.60 45.50 48.54 70.76 25.50 64.48 71.35 1.56 38.55 28.93 67.39 -2.47 76.52 88.52 53.19 43.30 21.57 98.59 4.53 24.72 51.21 33.22 73.50 93.98 32.25 52.79 72.85 13.49 79.81 27.94 37.22 6.11 93.16 54.89 7.35 72.73 75.64 94.39 24.83 96.59 89.99 59.60 32.91 95.19 35.11 62.91 75.89 91.16 99.45 3.04 83.79 17.87 5.61 98.70 14.78 3.83 1.38 24.95 65.96 52.22 69.45 44.83 64.08 29.69 48.43 35.04 79.75 96.71 68.76 15.67 3.80 57.42 90.98 19.56 52.00 14.89 8.33 36.17 58.33 44.57 18.08 10.35 89.58 87.80 23.92 95.43 46.23 49.79 88.45 57.39 77.02 15.89 91.20 67.15 50.99 15.17 39.61 67.53 10.91 44.70 57.81 5.87 49.31 88.67 61.10 96.57 73.52 61.77 38.85 81.68 21.83 -62.18 30.04 97.83 44.78 32.98 51.48 97.99 25.05 67.44 66.54 2.08 29.25 94.59 73.88 28.43 97.36 69.98 71.67 63.67 61.33 70.46 46.36 13.01 3.52 38.60 13.47 29.67 94.30 21.56 99.04 24.14 60.47 24.26 60.21 78.41 56.53 99.76 94.29 70.69 5.78 83.93 20.80 54.93 17.96 38.72 18.08 49.27 78.90 32.56 9.05 19.01 24.94 26.27 3.98 53.91 13.04 98.16 90.09 5.36 35.96 82.78 89.60 90.32 7.86 61.87 36.50 48.45 34.65 92.33 78.72 58.62 9.22 85.51 79.30 38.69 6.63 2.68 53.55 73.76 95.37 94.18 43.24 80.28 90.11 1.72 20.52 89.87 93.21 11.72 76.93 12.19 49.71 17.82 57.29 83.20 17.19 74.88 64.11 66.65 89.90 -73.82 95.53 97.66 57.99 73.04 96.49 56.47 98.39 19.82 87.43 19.70 63.79 16.95 89.06 60.01 41.09 4.59 24.06 7.75 11.90 62.01 40.08 44.80 64.80 65.95 25.52 64.78 58.38 34.69 46.20 42.18 54.21 89.68 84.43 84.10 55.60 77.94 81.88 28.63 80.77 40.85 2.79 48.04 84.53 74.74 47.71 82.97 40.51 29.31 88.36 48.30 74.46 47.15 72.14 38.01 30.52 44.06 99.90 16.06 76.82 44.23 45.39 15.74 0.17 59.10 0.61 84.72 69.06 85.52 91.21 70.22 56.18 74.80 43.99 86.66 59.19 99.00 40.86 82.07 39.61 43.08 72.76 12.42 51.77 35.94 70.70 70.57 85.57 15.79 25.64 54.28 2.47 2.31 26.92 68.64 93.84 8.04 76.18 55.31 38.60 -5.85 98.71 71.79 66.20 23.59 82.58 85.61 95.22 75.69 94.12 17.62 5.04 17.19 90.47 77.53 76.38 37.54 77.22 78.76 75.66 57.04 66.10 95.07 91.43 1.88 18.31 5.95 69.07 35.01 70.19 16.70 26.86 90.67 95.92 49.92 16.40 48.24 81.07 47.77 19.99 32.52 41.20 87.74 72.99 92.01 54.00 28.48 7.50 76.10 63.86 60.15 12.19 97.92 41.06 68.95 99.41 51.34 59.42 66.74 53.65 96.04 92.91 65.24 50.56 85.00 29.10 20.82 87.21 58.10 93.14 22.73 30.24 80.41 71.55 98.93 52.71 55.60 73.55 48.91 67.92 49.35 78.91 1.83 60.83 7.03 14.40 8.98 74.48 26.04 66.67 5.70 87.27 43.35 49.01 99.32 12.20 54.21 93.82 38.62 16.49 -62.11 87.65 76.49 89.39 83.09 49.06 65.09 11.99 70.34 23.95 37.62 50.13 51.86 0.42 51.55 36.67 20.74 20.02 48.23 94.58 6.94 84.43 68.51 20.31 93.20 91.11 77.31 16.01 44.88 71.11 31.84 53.26 38.34 23.72 7.14 24.99 39.66 81.57 83.78 86.42 59.50 57.95 17.23 23.35 19.03 37.77 67.08 73.75 91.15 91.15 60.91 61.62 62.69 90.15 24.13 44.44 48.13 79.62 99.14 38.04 69.14 57.72 34.64 69.65 84.19 72.40 73.48 7.61 56.93 57.50 16.58 38.93 2.27 4.41 31.54 30.24 56.63 9.03 99.27 18.55 94.37 69.73 88.34 42.17 34.97 54.00 54.20 92.91 94.84 80.69 52.65 98.51 72.35 26.64 60.00 4.04 98.00 20.71 11.08 30.58 -32.04 62.26 0.41 21.70 88.25 44.61 19.16 92.20 79.06 12.25 73.62 38.05 31.28 37.81 3.65 46.01 37.23 5.00 64.17 27.59 17.28 53.82 71.73 98.07 49.84 72.94 47.76 28.48 83.21 54.55 86.04 36.04 92.21 12.19 70.72 36.53 1.37 65.53 97.62 27.23 39.81 96.51 47.17 13.15 1.45 88.65 6.03 9.58 43.18 2.30 21.84 69.20 16.12 77.80 11.75 54.75 66.62 79.43 43.06 84.85 33.23 14.03 71.15 64.36 73.66 21.19 95.63 86.46 50.75 87.40 71.60 24.36 19.16 47.46 21.76 21.84 41.54 47.94 47.59 64.40 64.34 60.62 13.66 38.89 42.00 90.25 70.80 52.90 16.44 23.72 17.84 39.32 47.23 10.74 30.11 93.44 70.82 13.38 64.46 78.90 -80.62 99.02 66.35 7.64 13.87 49.86 37.46 58.66 43.14 88.45 57.95 25.75 67.32 35.79 72.59 56.68 13.37 5.68 53.80 46.55 9.36 58.35 75.72 5.54 23.63 52.54 67.58 0.61 16.66 0.67 6.30 84.24 32.39 78.61 86.50 14.41 91.92 60.39 79.19 99.43 30.32 22.44 69.25 2.29 48.83 25.01 1.41 51.31 51.84 56.10 41.14 21.47 38.35 4.39 64.01 11.11 30.30 41.17 67.81 5.92 62.26 67.23 49.54 67.54 93.14 38.19 98.22 80.07 89.43 7.51 44.40 73.65 36.74 18.23 24.78 86.16 93.94 96.93 10.98 20.27 17.39 3.49 95.97 99.19 96.33 53.66 27.39 26.00 83.79 53.49 20.53 96.42 56.92 85.39 23.27 52.39 1.66 17.55 25.24 13.77 -1.14 15.05 30.28 1.98 20.72 94.88 42.66 37.00 87.55 4.60 87.33 80.55 17.42 65.53 55.53 50.87 21.39 48.32 59.57 9.04 94.59 17.33 72.67 99.03 25.10 52.00 22.56 22.69 8.79 47.03 40.10 26.59 74.21 25.16 96.08 7.01 17.39 21.39 33.49 10.14 61.39 1.17 53.80 86.76 34.41 14.21 90.00 96.07 96.54 31.50 23.64 6.68 82.02 92.47 55.68 59.53 23.69 88.85 71.41 4.63 31.68 62.93 16.75 7.92 57.42 96.89 45.81 63.47 28.35 74.02 37.05 40.28 48.69 86.62 15.10 20.90 3.27 93.21 58.25 41.84 34.32 6.24 21.81 21.47 46.99 32.25 18.76 31.67 80.59 89.06 97.16 70.54 55.57 75.82 92.38 25.99 97.16 38.18 36.28 1.32 -94.78 25.01 59.54 75.67 11.69 9.71 82.85 70.26 65.20 17.04 35.14 23.80 58.40 2.53 42.50 92.65 28.79 5.77 62.77 15.28 29.24 51.44 13.89 80.19 30.00 70.60 56.91 68.06 77.79 19.54 48.32 16.66 93.07 2.85 82.66 16.68 86.70 11.49 77.47 21.60 94.95 19.98 64.60 76.74 20.33 42.44 53.59 87.96 86.68 97.21 20.60 61.90 86.79 77.00 17.33 97.29 64.14 48.78 55.70 48.14 73.72 20.40 85.00 21.11 48.17 23.40 55.34 55.80 44.41 88.49 0.54 3.97 73.31 79.28 69.49 97.25 93.47 73.69 23.94 77.98 23.49 40.68 29.25 1.46 4.38 8.98 98.84 41.87 54.38 28.32 66.83 43.02 95.64 94.63 94.34 85.06 53.49 2.51 55.05 39.76 -52.61 50.98 49.91 58.57 61.85 41.78 95.13 92.45 26.40 79.16 95.70 26.57 4.47 4.49 6.19 65.71 92.75 51.13 49.31 60.61 62.84 15.81 21.37 51.52 96.31 66.98 21.44 70.15 21.97 94.62 73.00 78.91 33.23 26.80 91.55 4.41 36.27 43.54 22.89 46.62 97.73 39.59 7.36 60.25 92.27 23.58 73.49 67.08 2.58 18.28 64.03 44.69 94.11 34.72 56.40 14.76 12.01 75.82 92.46 70.89 6.85 1.14 48.98 82.12 77.48 88.49 53.91 16.69 6.63 56.86 95.09 32.48 25.99 0.64 45.44 98.36 21.42 1.57 88.01 41.97 29.00 65.10 82.80 28.85 42.81 20.42 91.88 47.57 18.42 9.24 75.15 47.51 53.21 89.78 17.55 99.83 93.02 71.13 35.13 72.91 -37.92 9.23 49.01 13.76 97.00 40.23 80.21 59.40 8.92 5.57 78.56 20.78 85.93 59.06 2.83 21.34 49.94 38.60 74.90 64.00 33.16 60.65 8.30 29.24 82.18 28.99 57.17 41.11 36.68 55.81 38.09 49.10 94.43 30.76 51.02 60.47 91.33 72.85 8.93 20.25 14.23 61.62 29.43 30.50 35.36 88.62 18.97 91.57 79.34 85.22 10.39 68.64 9.29 99.89 38.48 12.12 33.29 6.45 55.54 95.47 93.96 28.38 73.87 58.02 9.69 88.49 32.89 25.26 65.87 14.91 79.15 92.98 2.26 25.76 36.03 56.89 22.03 32.98 14.06 90.26 25.47 53.52 19.18 81.09 30.96 56.81 28.53 98.28 52.12 72.47 98.58 5.90 21.28 89.81 16.47 24.25 82.15 40.53 90.62 5.04 -63.84 8.29 37.03 47.20 42.23 58.79 91.15 13.41 64.25 77.33 5.86 52.22 67.00 28.77 61.66 64.55 99.65 67.72 54.31 49.24 41.80 85.05 23.27 70.57 40.81 10.71 9.84 80.23 7.94 60.97 28.52 5.98 85.88 36.10 49.50 71.97 2.85 40.04 47.14 74.46 90.01 79.22 7.09 90.81 0.85 47.19 56.95 2.33 55.43 33.91 98.32 28.56 5.56 52.17 85.56 54.94 72.03 49.65 24.88 90.62 18.11 52.27 27.72 70.41 6.33 98.10 39.47 56.90 68.50 86.38 61.61 22.47 31.05 7.48 29.61 12.28 42.24 24.40 39.32 53.52 86.25 50.39 8.42 49.79 65.48 30.98 67.72 21.17 50.98 74.55 55.08 60.65 81.10 31.85 25.13 95.37 41.56 81.01 6.86 66.11 -96.19 84.91 83.25 38.60 72.93 42.31 67.09 90.36 97.76 84.09 14.33 56.72 24.08 97.19 76.23 17.33 70.17 4.82 81.64 42.73 25.60 49.22 34.47 25.67 29.24 60.87 31.28 47.88 42.12 1.39 78.14 86.20 50.85 19.60 95.20 53.52 31.53 55.59 69.36 12.69 29.08 18.42 59.65 45.56 47.92 63.85 31.32 48.34 65.52 47.36 37.29 1.93 16.44 58.64 27.54 97.24 70.77 24.68 86.23 79.33 28.21 66.66 74.77 41.21 37.98 80.37 80.47 65.82 7.88 6.75 84.69 63.99 6.76 72.39 16.98 7.40 89.44 34.01 12.09 81.99 38.96 86.68 55.92 30.96 21.47 18.17 74.87 90.62 13.63 91.66 47.60 11.66 35.54 94.19 48.15 55.67 40.03 40.27 39.15 0.62 -79.10 40.10 95.14 60.92 14.82 91.04 19.57 16.89 16.12 94.32 72.07 36.99 60.78 27.31 8.97 45.67 55.96 6.87 83.69 0.43 84.73 98.31 87.68 75.17 59.64 93.61 6.49 3.05 43.19 27.05 2.17 83.89 13.68 57.00 96.38 54.42 63.44 82.82 3.77 35.72 20.04 48.86 38.96 90.84 19.71 50.74 30.52 27.20 93.26 90.47 39.04 75.79 84.52 6.69 49.00 83.70 8.84 98.28 15.66 29.69 13.92 75.55 50.23 75.70 19.15 44.51 91.15 50.45 86.55 60.01 14.24 47.53 72.73 75.14 93.93 70.98 83.72 98.97 23.14 36.55 35.07 15.28 32.79 92.93 33.08 17.59 89.58 74.41 10.25 4.23 92.13 17.25 63.69 92.37 27.14 94.53 36.78 67.24 44.19 62.35 -17.30 91.46 93.32 95.09 10.05 71.52 98.07 76.22 23.89 10.47 31.94 62.76 53.45 45.16 23.67 0.47 0.59 2.06 16.56 74.76 7.26 64.53 79.76 54.67 32.27 14.09 54.06 80.10 82.52 11.60 0.83 20.54 87.45 68.92 59.66 96.89 62.76 47.61 69.15 90.51 76.56 66.46 51.90 59.61 97.50 93.89 62.77 69.41 3.12 59.33 42.27 97.64 85.41 13.59 30.59 19.62 24.75 87.21 66.48 44.29 92.42 40.78 75.88 58.51 8.85 52.21 55.44 76.06 12.35 33.21 57.17 65.08 50.40 68.01 26.11 47.61 2.80 83.69 54.67 35.26 94.49 49.60 73.44 72.28 23.66 25.34 50.87 36.97 12.86 82.61 86.85 13.82 7.21 79.30 37.08 34.37 39.08 73.01 81.26 10.42 -21.43 63.23 92.00 6.86 70.95 16.16 40.31 45.93 23.10 31.51 89.75 61.25 25.67 72.79 28.41 11.24 63.54 11.53 70.82 94.55 44.97 7.17 68.02 9.18 48.15 15.10 76.36 25.60 51.94 5.17 68.57 74.46 62.65 78.09 11.12 80.25 78.86 11.65 26.49 13.02 38.29 91.58 26.29 94.56 67.31 58.33 25.87 50.55 50.54 70.09 65.51 80.85 61.36 29.72 95.80 53.70 66.88 46.99 13.87 45.67 80.34 20.03 9.88 53.63 43.66 74.17 25.54 86.48 41.21 97.30 74.70 54.22 63.37 26.29 72.93 15.08 84.82 45.49 39.88 98.92 91.89 81.46 36.59 22.75 16.88 95.01 45.54 86.61 69.07 85.32 56.96 2.45 81.33 15.67 28.94 9.50 67.63 15.34 96.79 21.54 -32.16 73.87 97.98 38.42 91.41 77.81 35.08 71.15 82.80 9.66 17.57 9.76 97.95 93.93 86.09 14.66 74.76 2.49 10.05 5.05 85.12 54.74 7.34 60.98 1.75 82.71 67.25 74.74 62.66 89.23 49.77 1.92 83.97 92.46 51.21 42.94 11.67 7.91 16.76 38.70 2.12 52.86 40.66 6.36 45.62 20.69 54.60 85.71 35.42 53.51 86.77 17.30 56.87 19.93 62.49 62.26 66.87 26.15 76.31 46.77 73.25 6.76 96.10 85.36 17.25 77.06 16.38 3.81 75.98 38.55 29.69 85.29 19.92 77.87 72.61 1.34 38.47 87.46 31.08 20.31 40.71 66.16 32.82 67.60 37.69 72.03 32.83 92.03 36.45 70.95 94.40 47.27 11.35 42.84 14.81 40.77 2.49 20.16 27.57 49.42 -80.36 42.86 95.76 7.88 57.23 8.14 82.31 78.36 73.82 68.00 13.19 68.10 59.55 47.31 34.97 26.12 21.96 35.65 18.97 14.65 43.87 39.02 76.36 8.09 98.40 55.71 33.50 12.14 82.50 47.79 58.83 53.57 87.05 66.24 1.07 35.04 27.01 16.25 25.45 57.91 68.23 99.60 50.74 47.33 61.11 58.25 73.55 23.25 10.94 39.31 83.62 98.11 13.50 29.22 61.46 97.71 31.36 87.81 52.33 49.24 57.89 81.68 66.00 50.74 16.35 74.11 80.61 18.25 72.96 90.39 55.80 30.74 58.87 26.52 87.94 32.24 57.63 78.18 78.45 63.32 76.31 77.46 14.43 59.13 42.06 81.72 51.94 55.32 15.79 76.76 2.04 4.53 44.73 7.10 21.55 61.55 64.66 53.27 88.17 52.07 -70.06 78.42 61.00 13.37 30.64 71.34 92.05 64.24 6.81 69.24 50.88 57.87 42.57 42.06 74.22 58.97 27.38 14.60 26.84 26.87 3.01 18.73 31.52 29.57 64.17 57.58 85.70 54.38 30.38 29.75 41.82 48.03 31.13 51.08 30.74 58.01 79.46 68.06 70.78 75.94 68.85 51.05 80.68 69.57 25.64 96.69 36.74 14.35 98.49 26.42 13.01 61.62 88.66 58.01 79.63 48.03 60.62 39.90 20.61 70.93 40.55 93.69 48.78 3.63 70.46 72.48 76.73 66.91 54.73 90.01 37.58 4.65 40.58 40.03 62.07 78.31 36.13 39.77 95.62 68.95 2.14 17.87 70.06 31.01 90.77 0.50 70.92 73.29 6.50 38.97 75.75 92.14 79.20 72.72 26.38 50.26 84.53 79.14 85.92 25.25 -42.00 85.47 81.81 80.52 82.70 28.40 22.03 49.14 23.22 57.46 43.44 99.30 11.55 40.47 80.11 30.35 99.21 50.78 72.68 26.38 31.20 40.50 72.94 83.81 84.66 74.46 58.77 97.18 2.67 36.20 47.27 82.76 23.38 99.73 79.57 77.80 59.74 29.23 25.58 9.10 98.92 13.70 3.03 39.96 81.85 84.86 63.37 78.40 31.57 86.10 23.15 92.80 62.79 77.95 8.99 4.63 6.90 93.11 36.44 86.62 27.94 52.38 17.62 92.29 79.50 93.09 37.98 38.99 57.49 86.02 51.46 25.36 38.59 14.36 41.43 58.34 99.93 28.74 55.96 55.94 81.65 14.49 91.51 46.93 31.69 77.42 75.56 67.56 40.81 74.63 4.57 52.51 95.28 3.83 9.16 70.27 72.15 8.97 89.14 1.41 -77.92 68.67 9.40 1.76 60.54 66.30 28.08 42.54 88.27 65.43 26.33 71.04 56.77 55.27 35.24 46.78 82.51 98.80 32.71 70.45 39.43 29.70 26.06 66.62 75.86 6.35 19.38 47.04 59.60 74.12 68.23 86.52 0.09 33.92 98.92 1.28 15.46 53.08 81.40 93.64 2.78 27.08 84.51 43.22 93.21 48.70 76.47 73.88 72.91 73.74 34.04 4.42 52.42 68.47 94.47 32.66 18.10 96.31 56.91 32.47 83.15 9.18 50.81 33.39 76.26 90.98 72.11 94.20 78.84 36.26 67.51 28.93 72.98 98.56 24.64 24.12 13.41 15.68 8.49 11.38 48.41 18.84 41.86 13.90 3.39 44.88 79.25 27.94 8.11 7.00 14.98 24.73 0.62 65.89 85.53 97.93 7.51 52.47 56.00 80.22 -48.98 35.75 56.24 15.93 86.17 78.27 63.41 50.65 92.76 21.62 28.94 7.75 33.16 74.06 37.08 34.35 24.56 37.28 69.91 99.07 5.16 65.44 96.36 33.85 22.90 83.54 40.20 30.50 13.33 47.30 81.72 36.32 2.01 52.45 34.86 83.26 49.25 58.50 40.81 95.17 61.09 90.78 49.14 53.48 13.86 87.19 28.56 9.74 88.78 42.67 9.76 81.18 0.20 78.22 27.55 18.96 71.88 87.02 75.41 71.79 96.84 90.10 10.03 36.29 5.28 87.27 62.63 15.79 93.62 37.16 4.08 35.09 93.28 75.02 48.61 6.11 94.82 51.63 68.00 49.02 92.74 30.29 38.66 3.31 83.34 57.36 89.39 27.20 32.15 98.82 26.46 56.31 68.64 66.89 2.51 75.86 68.06 67.90 15.52 5.22 -27.52 81.05 33.55 25.08 74.60 82.47 33.73 74.09 48.48 82.03 99.63 22.12 43.14 92.08 7.59 44.83 55.15 50.30 2.26 63.95 8.80 21.46 24.37 23.76 11.95 81.37 87.48 16.64 37.64 2.75 65.07 57.72 54.96 69.53 87.41 31.37 61.63 30.89 79.19 62.74 17.27 39.75 0.99 40.94 11.89 8.30 23.32 83.49 34.82 39.85 52.74 59.10 94.91 89.28 47.86 10.04 42.68 36.68 28.62 55.04 3.58 74.67 39.87 39.84 93.55 67.35 19.93 20.68 86.06 27.26 86.73 12.65 67.00 19.89 54.24 97.43 16.69 39.36 67.02 38.13 5.28 22.67 50.50 23.94 70.67 6.10 77.24 45.71 39.83 3.99 87.92 76.06 7.33 90.80 51.43 70.59 84.90 20.05 31.64 45.99 -23.81 78.37 24.39 74.89 37.89 64.43 68.93 98.81 34.01 20.83 20.82 25.51 33.84 55.74 79.20 87.01 94.77 24.74 97.54 90.01 59.36 83.46 68.80 44.62 19.94 40.33 87.33 75.48 87.53 87.66 75.96 18.43 21.19 38.20 33.30 1.03 77.35 41.48 29.56 55.83 33.37 63.40 61.78 10.60 69.95 74.05 6.82 93.65 92.17 85.14 37.99 13.33 30.91 76.57 51.91 28.65 79.80 73.40 31.95 82.74 23.60 11.68 49.10 52.03 41.85 77.80 75.99 46.93 30.23 42.90 0.84 75.18 96.81 47.94 19.73 78.38 12.80 70.86 56.35 30.90 54.45 70.96 70.40 32.85 20.98 45.98 22.21 14.92 29.01 79.74 32.67 0.74 38.24 7.46 2.49 89.84 9.93 57.51 81.47 90.37 -61.72 53.55 3.47 59.32 33.45 70.44 42.63 78.95 88.90 22.62 53.61 70.73 57.95 90.21 59.45 55.13 16.69 82.04 70.32 40.42 78.80 68.27 0.37 86.92 94.98 75.13 31.92 26.98 47.91 95.46 74.64 12.00 50.17 26.36 18.27 90.17 26.41 64.48 44.67 90.01 94.37 89.66 95.57 25.80 91.37 10.01 6.82 94.48 63.44 47.62 89.95 62.77 49.21 22.57 30.15 42.10 34.75 6.86 43.58 4.38 15.10 44.09 51.44 89.07 62.74 66.21 86.19 25.11 87.41 39.27 53.05 34.76 93.57 1.73 11.25 10.23 55.07 28.41 69.28 23.70 86.93 59.45 27.88 25.99 27.16 26.17 40.57 13.69 78.22 46.99 62.33 71.40 85.83 62.38 60.88 20.05 17.34 6.68 98.67 4.25 -78.24 57.01 91.78 30.11 84.36 5.37 66.97 86.12 86.43 60.07 28.79 58.16 16.65 78.72 24.03 92.39 66.95 51.71 34.31 30.40 87.38 61.33 48.56 69.13 45.06 14.38 23.44 53.35 61.42 13.95 91.21 32.85 48.63 91.21 63.26 99.95 1.14 6.00 63.71 44.94 76.82 94.16 74.90 22.51 2.42 82.86 87.83 49.62 41.72 78.68 66.79 20.80 29.12 16.13 56.20 61.13 17.11 43.03 78.07 97.60 45.43 72.33 36.03 6.12 95.60 56.39 51.63 53.00 40.53 14.17 0.33 12.73 32.08 76.92 44.78 40.42 1.34 60.38 69.92 8.22 85.61 56.51 58.80 9.02 74.02 31.96 45.50 2.62 29.62 68.71 11.07 5.39 46.54 68.44 53.77 61.13 71.72 39.38 59.23 36.86 -13.83 16.15 36.82 71.55 80.13 10.52 98.59 18.93 60.78 53.28 35.83 32.72 30.31 87.19 14.64 5.50 76.34 31.45 95.98 6.17 60.28 89.31 48.00 76.64 54.88 28.45 48.21 21.96 4.31 94.73 64.47 26.25 71.01 74.39 75.72 5.78 20.54 49.35 78.47 46.90 12.71 21.58 40.00 34.98 70.28 36.79 85.04 15.50 41.96 43.40 95.03 53.54 6.61 39.71 25.33 3.28 36.20 55.86 14.70 5.53 51.07 59.68 58.95 94.58 10.49 43.36 99.26 50.30 81.32 2.07 11.30 16.34 23.01 11.91 99.58 25.30 93.29 85.22 9.70 92.74 97.99 93.38 15.84 18.77 77.52 50.06 29.05 37.50 27.57 67.24 17.60 14.47 72.41 82.78 14.47 82.25 0.08 51.54 45.73 57.29 -19.66 58.87 97.73 13.81 3.13 82.72 29.23 22.37 76.76 57.21 60.63 87.16 75.10 49.89 1.16 91.83 41.25 27.70 93.12 46.84 89.34 24.05 93.63 92.31 24.92 69.63 68.31 54.98 96.89 64.45 18.39 74.79 25.59 19.18 91.14 80.57 24.39 15.80 99.10 86.02 40.77 27.90 99.37 76.74 54.52 77.93 67.28 16.47 7.82 43.11 74.03 39.17 5.15 43.03 84.99 50.06 2.97 53.87 23.65 88.35 53.08 42.47 59.39 72.56 50.23 91.69 41.36 34.35 17.09 53.17 13.41 29.05 12.40 62.72 10.51 42.25 78.61 23.68 7.11 19.40 37.83 27.15 64.58 92.71 17.96 84.31 40.34 14.75 24.28 3.62 44.05 93.29 34.16 11.36 66.26 11.74 2.21 26.39 17.45 48.37 -46.10 18.94 67.62 68.18 37.67 48.28 58.26 67.05 49.95 19.90 96.62 84.73 78.75 39.44 64.73 8.19 81.60 69.39 59.07 94.81 39.43 7.58 21.60 0.38 58.72 10.42 48.73 35.50 56.47 66.67 39.33 47.49 23.03 49.69 16.45 20.35 33.06 25.45 66.77 87.15 25.94 49.37 4.69 96.03 15.41 32.92 47.79 18.17 15.55 50.10 79.23 82.60 13.98 23.17 43.58 16.61 97.87 97.79 89.50 75.65 48.01 95.60 11.95 25.64 41.42 90.22 38.50 64.33 25.53 85.06 83.23 96.91 27.04 43.85 37.24 29.24 32.79 99.87 83.91 38.07 45.62 65.17 56.02 50.81 91.94 35.02 3.50 28.25 47.75 69.17 0.70 64.80 30.13 96.15 86.09 46.96 37.46 91.61 11.98 36.52 -44.50 19.44 76.01 25.75 45.58 21.95 73.62 41.70 70.78 69.53 72.63 84.42 51.04 39.24 65.25 42.74 17.51 55.18 93.62 43.76 4.27 77.74 18.97 6.24 80.98 30.86 70.21 54.52 42.61 93.52 42.56 31.82 34.38 60.31 42.58 61.64 10.66 37.09 62.62 52.68 98.79 28.80 61.93 27.94 92.91 72.21 63.96 42.90 66.61 99.61 77.36 16.69 7.69 61.38 47.93 3.41 0.60 15.06 89.99 53.09 19.30 95.48 72.66 2.01 66.22 0.30 97.16 76.53 15.02 32.29 99.25 4.22 30.94 92.98 40.49 3.93 51.32 21.89 60.14 99.17 41.55 64.42 33.22 31.05 27.37 11.11 93.39 63.21 55.60 62.40 97.92 0.88 24.09 88.87 33.19 84.37 18.32 16.25 55.02 58.64 -53.74 73.11 56.02 65.57 1.65 86.77 37.51 85.77 9.45 77.01 56.43 75.85 80.39 91.59 22.39 0.25 65.18 55.17 37.11 6.21 31.62 4.04 82.54 51.14 95.61 85.46 79.97 79.82 92.03 10.37 73.84 31.58 24.52 29.48 36.75 23.81 55.07 6.59 4.50 94.57 76.06 9.06 75.30 59.33 88.90 0.19 31.68 44.44 62.67 96.41 27.00 72.06 79.48 52.56 34.83 30.31 59.87 27.98 88.66 47.40 23.93 18.92 41.77 16.61 96.08 56.41 52.99 42.99 94.95 55.59 30.91 76.00 17.63 98.69 19.68 35.37 80.79 75.78 50.35 75.21 67.08 21.48 70.06 20.22 88.75 73.94 28.78 53.56 21.55 6.95 53.50 51.45 60.04 79.68 9.25 78.27 19.96 88.47 33.46 68.62 -13.60 35.30 55.05 90.04 73.75 7.38 57.66 42.18 60.81 18.85 88.29 93.20 13.63 96.49 32.02 91.53 2.56 68.58 92.31 23.07 29.78 31.14 18.97 26.80 63.42 67.56 50.40 55.71 30.47 37.35 99.75 50.94 72.65 88.55 27.68 58.22 77.33 38.64 1.17 24.62 32.32 19.94 17.97 24.41 26.69 63.69 7.06 36.81 37.42 87.95 41.21 61.57 48.11 69.45 98.44 52.83 49.88 70.55 71.39 94.56 14.77 17.82 75.36 20.51 1.49 75.92 81.27 2.43 52.75 9.94 62.54 96.53 73.07 12.11 8.62 74.14 98.04 31.94 25.56 16.06 82.84 33.60 2.44 21.76 34.89 5.11 22.95 89.49 18.81 63.12 71.16 34.62 78.71 98.22 88.85 41.70 14.42 79.21 61.71 81.40 -34.32 63.94 68.34 6.94 90.37 61.66 57.75 40.65 38.28 16.75 1.43 2.04 9.82 94.59 95.35 32.46 77.70 11.87 62.68 46.75 51.69 95.98 9.82 0.79 94.33 94.75 2.49 46.63 53.81 69.24 9.04 62.92 76.13 23.67 15.55 14.17 13.24 61.46 33.94 58.53 84.00 39.93 70.26 8.48 87.54 67.09 95.64 63.25 98.33 72.37 83.10 40.04 81.61 13.41 32.13 15.27 92.91 30.37 95.74 29.97 7.89 80.06 18.47 84.59 22.17 69.00 76.60 73.09 13.40 14.86 30.24 24.21 34.20 82.72 56.59 6.36 89.01 36.69 53.31 80.91 83.69 65.76 44.40 83.28 29.33 34.54 33.92 56.38 5.37 79.31 51.45 3.98 41.53 45.47 97.12 56.65 96.37 40.37 77.45 35.93 -30.57 28.25 60.53 19.03 0.72 23.44 46.42 76.22 36.48 75.39 60.20 43.04 27.79 92.14 0.73 56.69 68.60 69.13 15.70 34.42 11.23 43.13 64.07 26.34 16.76 4.16 94.19 80.26 32.01 1.16 67.66 23.01 91.34 74.08 5.74 64.09 0.68 63.35 49.58 11.04 81.56 29.33 71.37 34.00 32.18 25.69 43.66 55.33 82.70 17.49 77.29 30.93 12.28 56.88 38.07 34.55 44.13 15.73 37.94 87.18 11.05 2.80 71.06 63.63 44.70 92.46 99.95 24.56 72.80 44.30 60.71 61.38 49.92 19.10 19.52 97.92 94.17 20.56 76.70 84.88 52.17 52.05 3.94 11.12 80.40 14.56 61.85 23.00 45.80 63.33 97.23 77.65 59.27 33.34 84.32 0.07 93.17 0.32 92.61 15.91 -2.81 34.35 4.03 62.94 56.60 40.83 17.39 77.07 82.09 61.65 97.30 99.34 21.91 35.40 76.03 22.44 88.99 16.31 5.45 82.47 19.31 30.42 95.42 75.43 85.84 84.30 22.97 0.78 94.70 54.08 95.75 8.84 81.07 90.95 97.33 80.27 81.85 24.05 44.96 20.89 35.07 47.48 22.21 77.33 96.82 55.75 69.09 0.46 87.64 88.49 23.96 82.35 70.84 11.19 99.38 6.51 76.65 5.72 99.21 60.25 9.04 47.92 78.99 20.86 26.31 58.21 45.66 91.66 19.63 35.91 31.81 47.01 17.96 3.52 56.26 84.98 75.74 61.42 29.16 44.04 29.82 0.13 25.12 70.45 7.87 29.98 1.22 92.26 95.88 88.24 38.21 99.74 86.65 72.08 83.49 10.59 88.02 6.11 97.88 29.77 -64.67 53.05 59.88 61.67 66.16 78.08 44.16 69.60 47.60 94.83 84.08 63.57 73.87 9.31 62.44 14.77 63.97 7.69 46.79 38.45 39.38 98.07 88.68 42.13 56.10 45.92 99.45 73.29 42.02 98.20 62.04 92.61 88.73 19.73 1.96 37.84 7.83 43.66 12.44 86.43 53.08 73.32 73.23 10.15 11.92 14.06 84.46 6.85 84.31 93.83 27.49 74.20 46.49 6.87 91.98 66.80 70.84 56.67 78.96 76.22 24.23 96.61 1.74 60.43 31.25 58.73 24.57 98.94 75.05 51.92 81.77 29.09 28.73 64.54 72.25 78.37 49.67 39.67 41.70 84.53 23.77 96.39 76.53 92.81 62.05 37.67 97.72 21.01 22.34 40.73 38.15 48.73 29.18 86.81 86.44 42.66 55.43 70.13 43.79 41.52 -6.21 88.41 66.84 97.60 47.58 1.07 41.56 90.80 26.20 9.22 62.89 83.90 26.08 42.53 78.96 62.19 77.84 23.59 61.70 48.87 42.95 24.68 31.09 32.41 34.03 73.90 34.35 25.91 47.95 40.47 76.93 18.60 91.02 2.44 70.86 84.51 60.08 3.62 68.35 13.47 81.11 87.80 37.72 42.34 25.03 71.55 92.53 20.21 10.15 67.28 22.32 79.95 14.84 86.61 74.16 83.43 33.90 74.68 94.23 82.12 74.56 96.98 55.73 95.08 64.39 47.08 89.05 55.90 95.40 48.04 81.75 72.74 33.30 16.63 56.51 63.90 70.96 19.10 91.60 84.35 54.69 74.06 38.80 71.45 62.66 79.54 44.97 1.75 13.27 96.35 57.94 58.17 1.86 96.51 92.49 60.30 66.20 98.89 45.72 0.51 -74.51 82.97 14.28 2.98 77.47 5.60 47.79 0.77 19.49 28.11 36.25 36.49 11.43 71.70 50.31 39.06 64.57 78.79 62.11 75.43 3.66 16.95 57.86 51.61 3.61 15.65 98.54 4.57 35.38 85.74 7.17 78.70 63.26 85.47 8.28 90.89 50.14 67.98 28.89 55.51 17.96 57.71 88.28 39.18 66.42 84.77 10.94 75.01 52.08 2.59 94.79 64.82 5.36 35.30 39.57 86.01 5.56 39.32 42.47 46.60 43.79 38.92 99.79 19.25 16.01 96.41 69.36 92.92 57.51 99.15 14.03 68.88 62.32 9.38 29.73 63.06 94.44 23.46 70.67 8.59 48.22 3.62 53.55 78.69 91.58 42.35 81.02 16.86 95.83 27.63 45.51 2.16 15.93 3.69 18.45 9.81 95.91 83.00 57.65 23.08 -25.63 96.44 26.09 1.16 30.12 26.28 70.47 39.95 61.56 15.65 21.68 6.35 2.36 1.52 76.18 3.08 59.13 37.64 66.06 98.60 58.94 50.71 66.01 65.37 88.67 23.33 56.30 67.17 82.11 62.29 61.53 28.85 56.84 27.91 77.41 55.29 72.63 95.71 19.87 13.38 47.14 30.55 63.71 93.81 90.99 17.91 17.21 58.25 11.56 79.48 30.30 42.13 47.03 6.69 49.94 74.29 72.84 69.16 65.33 16.14 88.16 17.81 54.27 96.19 32.58 83.58 46.43 92.91 65.98 5.42 7.49 85.24 8.83 61.24 76.48 32.82 72.96 5.25 32.73 5.21 50.83 59.38 67.35 41.68 17.45 60.29 17.93 31.17 75.99 67.73 85.65 53.42 49.16 43.22 26.65 76.02 16.94 12.29 1.09 63.94 -50.31 21.25 10.62 96.84 58.00 49.64 74.76 6.49 81.90 6.83 42.81 26.73 35.71 65.56 2.87 69.80 7.11 69.29 82.82 67.68 59.39 11.45 45.43 9.29 58.34 61.23 63.66 49.53 49.76 52.99 4.06 23.69 82.52 96.11 25.39 65.29 49.40 68.17 88.47 44.93 79.90 81.54 67.99 59.66 1.60 17.26 36.62 18.23 78.12 93.60 9.24 51.95 81.27 42.55 24.09 55.67 14.04 34.77 66.75 2.23 8.30 8.13 82.74 49.22 60.80 32.61 46.74 75.89 34.78 11.18 37.05 38.07 82.20 41.93 33.40 91.46 78.71 1.65 81.15 84.17 75.46 90.02 47.19 83.41 28.35 52.86 85.42 21.00 30.93 59.82 15.62 32.65 5.12 1.19 80.26 11.96 56.11 53.06 84.45 93.25 -67.71 76.87 51.81 75.93 94.56 51.52 76.49 45.46 49.80 59.05 30.15 76.85 6.50 12.35 33.39 56.10 85.07 78.03 41.68 87.66 76.63 54.15 64.88 53.32 45.40 69.04 57.80 59.36 31.06 37.37 72.87 89.94 0.70 36.43 42.01 31.93 54.61 26.12 75.20 88.27 80.34 50.88 89.67 5.28 36.60 51.01 21.95 63.88 34.03 47.07 80.08 6.40 47.64 7.09 41.64 11.99 69.81 95.48 7.35 68.04 45.13 29.37 44.49 21.21 69.52 75.18 59.70 81.00 3.56 55.90 19.98 8.74 45.31 56.53 36.01 67.83 11.03 35.99 44.83 24.17 91.02 6.68 93.89 83.46 9.63 52.48 51.36 38.57 1.96 26.26 68.44 88.17 4.79 54.74 94.08 9.64 45.29 60.10 31.31 61.83 -48.02 59.40 7.95 19.52 55.18 78.95 22.51 50.93 42.10 40.12 86.74 34.90 86.29 91.82 23.96 15.65 38.59 67.64 14.17 99.63 92.49 74.21 83.53 78.11 96.06 85.15 77.84 92.36 91.94 72.74 65.31 47.59 43.67 27.43 82.73 79.74 10.70 43.69 8.42 8.70 10.47 18.85 42.44 72.55 97.48 21.47 3.21 41.60 61.31 21.36 91.17 33.07 92.60 26.01 91.35 93.45 9.98 11.09 10.09 59.04 59.59 98.38 97.06 90.24 48.63 56.19 60.25 41.38 4.00 90.63 77.05 2.49 11.91 64.69 31.08 58.95 8.60 84.59 75.15 45.20 6.15 63.31 15.65 9.97 14.03 71.47 6.92 90.14 24.30 47.49 39.61 89.78 25.14 53.94 98.47 37.58 74.57 44.90 36.93 32.79 -37.67 92.15 74.23 56.93 86.71 55.31 99.88 51.44 54.18 26.21 36.97 83.00 46.50 18.11 21.04 62.69 53.12 32.71 82.48 47.93 15.78 96.66 98.49 9.03 68.30 85.66 69.37 34.93 74.41 51.65 71.14 62.78 2.32 93.29 43.39 80.01 8.15 35.47 59.94 20.73 95.14 69.37 83.95 54.38 5.87 24.49 3.91 23.66 2.22 24.61 79.58 42.17 21.46 33.54 49.49 59.76 31.72 11.76 77.45 83.15 8.28 2.64 18.91 78.12 56.89 42.14 1.82 23.21 35.91 95.26 19.21 47.22 21.36 94.54 44.16 25.30 43.04 45.28 6.60 30.45 36.63 43.67 20.30 74.10 22.43 94.64 91.67 52.09 34.30 5.67 11.07 54.48 47.30 72.40 64.05 21.16 37.47 67.12 89.17 42.86 -30.89 66.26 15.57 55.56 56.81 26.75 6.56 9.25 44.46 39.91 16.69 30.17 0.70 54.80 34.72 29.57 89.03 65.99 88.60 1.91 74.36 7.13 22.19 3.03 70.92 3.48 98.21 71.23 19.99 39.91 22.18 58.99 70.56 77.82 81.61 13.22 44.59 54.47 27.47 49.59 50.75 84.66 81.85 56.75 91.15 90.50 72.62 61.78 63.85 48.18 70.55 63.79 74.61 83.91 73.70 58.14 0.16 97.09 31.57 40.03 81.52 99.40 71.82 68.26 23.34 17.28 68.61 46.00 32.82 91.75 8.37 48.02 58.33 45.25 65.82 39.71 67.10 32.33 25.17 26.95 60.77 74.83 75.48 59.52 33.94 34.38 37.17 79.18 29.40 42.34 73.93 4.43 92.55 69.03 29.78 31.86 41.46 56.56 71.91 94.04 -99.41 47.08 18.15 60.85 40.65 88.88 50.53 4.55 46.20 75.44 21.22 38.52 38.18 63.79 60.39 25.98 42.57 80.78 91.67 9.29 61.57 34.01 16.69 78.96 21.64 86.05 5.83 93.07 44.02 74.55 85.04 19.93 41.66 45.45 87.39 30.11 6.87 30.49 31.72 45.43 11.73 61.45 5.11 52.58 18.02 47.92 37.04 28.32 85.64 49.33 3.50 55.81 18.66 1.36 3.37 15.54 23.79 59.17 3.24 59.94 64.33 73.21 12.69 80.70 52.96 5.35 48.90 39.42 68.54 46.03 92.81 64.93 48.52 60.74 86.10 81.82 93.43 64.64 10.60 9.31 28.80 83.58 64.70 6.70 81.92 3.51 68.66 55.44 92.08 74.34 39.12 7.21 58.20 87.52 1.11 49.37 69.46 17.97 23.44 65.17 -31.25 99.10 23.72 39.54 77.49 3.07 53.28 73.13 4.06 98.47 0.31 82.37 58.14 14.35 19.47 19.51 8.12 60.10 75.83 26.70 42.70 89.40 91.28 42.34 57.36 12.66 86.93 89.89 75.48 83.98 23.53 87.96 58.34 39.29 36.66 92.39 86.11 31.46 27.78 10.83 64.22 14.20 69.58 45.02 11.14 2.59 54.15 0.54 60.98 76.46 81.64 54.25 55.96 76.74 37.66 31.50 28.63 34.32 85.57 23.65 57.00 36.00 32.74 54.77 23.05 11.56 29.82 62.57 74.49 88.64 99.56 43.70 17.55 25.04 29.31 6.21 45.75 11.71 7.52 13.12 16.45 32.05 46.76 49.32 78.78 85.71 42.22 19.54 96.21 89.32 99.95 12.35 66.25 92.35 84.57 85.43 53.51 31.42 74.21 27.09 -74.92 91.44 59.60 44.42 64.74 38.65 10.22 67.18 84.32 1.95 53.39 43.00 4.25 37.24 43.59 17.02 12.59 39.04 7.77 23.26 3.53 61.80 12.36 1.98 40.20 40.59 76.60 40.63 88.96 83.76 74.93 13.50 22.69 8.57 55.78 83.99 97.13 97.11 0.72 2.47 85.43 40.47 64.90 27.65 16.27 76.23 60.50 79.25 11.77 68.15 49.19 83.65 81.44 77.06 82.33 2.77 46.79 99.71 26.00 5.77 23.95 60.33 70.05 43.04 73.59 40.44 3.05 35.76 85.58 44.67 68.00 34.88 31.05 59.77 4.19 21.57 27.78 52.67 90.45 85.30 38.88 54.99 36.53 92.76 91.53 37.80 79.44 37.01 39.15 18.71 70.33 55.73 71.41 68.54 40.67 31.83 47.47 54.43 84.81 72.79 -37.24 61.86 9.20 47.10 35.71 72.66 45.84 98.23 99.92 40.51 34.83 9.17 60.30 35.77 65.54 15.91 24.58 49.46 28.92 11.90 0.16 93.78 53.93 19.04 29.52 4.11 36.22 30.30 58.11 2.18 10.06 10.07 94.45 1.98 1.03 24.82 38.31 50.76 48.38 90.66 64.02 66.19 49.85 96.23 58.59 35.43 92.99 47.82 31.78 86.93 7.09 11.22 57.06 70.86 25.03 49.49 53.40 96.85 38.29 83.59 6.42 81.61 27.91 11.38 81.29 72.19 52.98 41.72 76.90 94.52 13.27 88.37 95.04 86.69 87.30 44.41 72.28 41.88 52.12 57.40 22.07 47.25 82.93 72.32 98.34 52.80 24.11 71.51 56.48 81.31 64.44 34.92 13.56 23.91 7.53 35.85 52.10 13.71 84.01 42.16 -46.99 46.43 16.14 93.79 63.18 75.34 65.47 91.61 34.11 31.52 78.49 65.99 11.50 5.25 19.07 37.44 55.31 29.08 23.88 29.94 76.57 99.58 84.65 92.84 69.85 1.50 73.26 44.71 95.42 82.25 11.67 59.58 32.08 26.80 95.91 36.41 68.14 61.91 40.22 16.77 40.80 36.22 43.80 22.79 35.43 74.63 26.40 33.36 59.11 4.04 72.98 14.30 6.70 83.99 33.36 78.32 49.39 51.20 58.36 48.27 40.73 36.73 4.76 45.91 64.73 6.17 70.29 51.52 99.56 19.05 39.39 31.43 71.99 69.01 20.23 35.63 82.98 39.90 75.06 53.87 9.14 74.80 9.12 43.74 95.98 43.36 53.58 11.53 7.95 91.71 2.95 70.21 43.27 34.36 37.01 19.38 26.53 84.39 90.21 98.78 -96.69 19.65 35.37 87.93 76.17 36.09 26.36 18.61 33.90 14.71 0.64 45.93 60.19 88.59 44.88 88.87 51.58 13.32 3.22 21.35 99.51 27.96 14.75 75.33 65.63 89.78 18.70 70.58 45.71 14.37 96.59 17.16 33.59 10.23 63.05 62.12 58.13 89.63 15.41 11.55 17.24 42.65 93.35 25.11 51.11 31.89 33.23 51.02 99.48 15.43 25.43 23.69 91.87 0.76 36.25 51.98 67.20 11.25 69.49 51.75 33.15 85.62 79.61 97.83 6.12 78.70 55.41 9.53 59.97 27.73 36.96 53.80 17.41 18.54 53.94 73.85 68.28 90.88 66.10 45.80 35.71 44.47 92.93 83.57 86.29 3.43 33.42 99.53 22.81 3.00 45.75 42.20 49.57 2.38 16.98 86.65 75.24 10.89 83.32 64.53 -21.94 76.57 8.81 66.17 9.28 45.08 91.46 21.87 52.55 54.34 63.82 15.60 4.45 42.45 33.67 41.14 13.31 14.59 22.48 20.58 67.18 45.11 6.60 41.89 77.26 31.02 54.81 96.97 19.16 22.69 9.01 57.09 47.72 34.14 47.21 11.90 27.85 91.67 75.31 91.96 90.80 60.89 20.14 82.59 97.07 14.32 44.62 3.00 59.63 42.77 45.37 89.85 9.47 99.96 1.77 89.04 36.36 82.96 76.54 2.81 73.36 69.51 10.41 1.03 60.68 60.75 8.04 81.34 19.65 71.07 29.93 95.81 10.38 80.62 33.27 19.80 60.25 6.65 35.29 92.74 8.03 31.52 47.37 52.60 37.85 17.43 26.58 17.74 36.92 79.78 46.56 49.15 27.45 35.96 44.56 57.17 70.38 91.27 15.31 81.23 -37.83 61.67 91.33 66.30 46.36 59.73 89.30 62.80 88.19 28.35 1.58 86.56 49.89 81.66 33.87 11.48 66.38 63.92 23.03 93.19 26.05 96.76 25.94 85.69 97.44 99.12 26.57 73.67 8.36 59.07 5.66 67.32 75.69 46.87 72.24 59.81 17.00 26.50 17.08 52.99 22.68 5.90 55.32 76.93 30.41 95.83 55.93 73.12 14.76 91.55 92.31 24.13 5.63 82.36 23.98 35.67 25.39 8.13 2.68 48.07 49.06 61.51 51.80 7.69 52.46 40.25 93.69 91.95 97.91 53.05 39.50 16.56 17.41 65.76 30.86 50.09 30.02 32.82 83.97 80.45 3.81 8.37 30.42 5.91 51.10 90.67 98.69 55.21 61.70 41.78 90.15 72.75 85.46 20.26 7.64 25.75 32.89 34.48 39.36 85.67 -0.25 81.94 55.25 70.12 16.18 35.72 23.96 57.65 27.83 36.91 63.07 85.67 81.56 52.20 47.67 18.77 28.22 43.05 51.80 73.07 82.79 77.12 16.45 6.17 81.12 68.11 10.02 78.61 75.19 99.37 50.06 85.27 17.18 82.98 7.67 7.88 89.70 78.10 78.88 25.83 17.90 48.54 74.28 33.35 20.55 60.81 49.25 86.35 34.46 77.70 28.34 32.99 56.63 78.74 52.22 90.94 4.48 37.42 44.44 6.74 53.28 4.49 0.50 37.89 67.28 19.96 47.03 1.07 90.33 38.00 67.04 99.37 87.82 94.48 82.80 26.55 79.63 21.00 6.41 92.29 66.92 32.92 29.27 28.06 47.33 93.14 23.48 80.22 17.29 44.04 22.36 71.21 20.95 44.85 18.83 54.36 79.63 84.25 80.08 53.30 -52.04 91.90 38.37 62.48 58.50 11.21 58.13 18.97 21.66 41.07 65.48 79.27 87.95 31.54 18.82 40.39 79.31 55.30 77.80 12.28 42.42 37.89 49.54 34.81 84.98 96.48 90.69 20.40 91.52 67.50 68.28 83.34 23.82 93.57 80.37 9.28 34.03 93.53 32.65 54.79 55.92 54.70 55.57 88.24 55.54 40.14 3.33 25.50 3.19 73.77 20.04 95.86 16.65 2.35 10.19 92.34 33.58 61.85 45.94 92.98 54.15 71.11 8.73 38.26 53.90 90.28 5.00 19.54 76.00 46.98 20.56 74.36 79.40 19.38 12.74 56.37 80.14 93.01 50.20 10.62 41.94 67.28 37.77 82.22 54.43 44.43 38.50 90.43 35.67 92.50 99.88 18.10 67.83 76.46 46.40 4.73 86.51 11.46 24.69 8.09 -0.33 61.10 25.08 50.96 89.35 53.62 80.58 84.52 33.99 40.88 2.54 98.31 84.20 89.37 31.74 5.18 46.38 74.46 30.50 18.12 53.41 70.13 45.88 53.80 21.30 77.18 95.00 68.67 42.33 21.95 76.44 53.57 4.94 29.71 59.33 42.74 70.04 62.81 61.28 96.41 92.20 26.42 39.23 96.29 9.02 50.23 80.65 62.81 87.98 96.07 35.20 75.01 18.10 68.37 7.08 39.78 10.89 60.89 75.32 20.84 29.25 88.32 1.56 62.77 58.11 16.64 3.29 59.29 61.16 1.45 32.35 86.59 83.25 55.24 82.49 74.35 62.10 25.13 26.16 86.21 35.97 13.85 41.49 44.66 43.52 25.54 60.61 37.50 80.84 42.65 32.38 32.26 42.37 17.87 77.39 79.07 35.42 18.48 2.08 58.82 -48.31 72.57 41.81 63.20 24.18 88.34 90.55 54.95 46.29 33.28 94.77 90.41 66.47 52.94 59.08 71.95 96.77 57.43 97.87 66.78 88.74 92.36 66.15 73.85 30.13 83.78 13.89 21.98 90.32 80.09 95.53 72.59 77.53 8.52 92.07 66.51 31.76 16.62 9.15 89.77 88.58 84.74 54.55 33.61 37.10 54.45 6.67 64.11 11.62 54.26 59.83 31.23 84.24 88.28 63.16 38.91 20.83 21.54 43.89 15.16 74.79 19.12 35.49 37.59 78.08 45.82 84.43 2.88 0.76 40.28 3.56 18.60 55.05 49.38 90.89 98.38 27.90 85.73 89.47 17.73 53.90 89.09 82.02 66.90 62.90 13.71 33.61 15.47 43.76 85.03 45.87 60.24 58.79 83.53 93.39 67.02 3.21 37.06 76.56 44.54 -60.23 22.17 76.64 74.39 79.64 94.62 34.12 33.50 11.60 34.14 49.10 77.72 89.93 15.58 81.39 43.24 38.47 60.30 30.31 56.22 82.23 27.51 61.97 32.50 70.62 63.09 72.63 31.92 45.38 27.15 38.54 2.59 81.77 39.91 9.39 54.68 84.14 26.19 32.19 54.81 58.73 64.64 40.09 27.32 43.83 62.49 9.14 13.09 70.02 39.59 87.32 48.29 22.12 98.36 97.29 3.53 60.59 93.31 8.49 90.13 89.83 81.71 23.82 64.55 91.29 38.46 48.19 20.71 61.00 18.36 76.95 6.78 72.54 45.88 28.87 57.62 81.46 29.59 57.40 77.01 5.19 46.09 74.72 31.20 27.51 23.83 22.03 21.14 79.85 7.74 36.29 94.47 26.31 89.54 63.21 42.29 10.42 0.52 36.42 94.82 -8.37 11.46 56.34 60.82 3.77 49.46 77.54 10.42 53.66 48.27 47.50 45.83 99.26 17.47 83.91 52.86 43.28 72.58 34.63 18.28 54.52 28.72 8.00 52.01 15.02 67.72 28.95 86.70 45.39 16.48 20.24 37.56 94.16 54.54 64.25 73.91 75.44 9.40 17.98 73.86 19.77 72.16 0.04 71.22 56.38 70.20 11.70 43.65 29.27 89.47 64.67 34.93 83.83 40.62 44.94 56.68 25.01 92.05 69.34 68.10 92.75 19.13 7.46 84.93 91.71 87.25 19.29 48.05 27.41 69.37 95.60 7.86 27.55 81.79 1.53 58.64 58.29 71.44 51.24 4.87 36.12 24.21 79.34 74.05 43.41 50.66 68.90 74.16 20.22 74.42 8.11 68.98 13.93 0.46 59.23 47.30 33.57 39.31 78.76 77.62 -11.14 11.87 71.15 84.61 51.58 40.19 75.81 52.11 99.21 56.30 96.04 70.37 79.14 10.80 53.17 67.03 52.95 1.95 17.08 28.52 76.90 40.32 4.70 90.76 33.69 61.15 65.17 26.40 82.24 96.84 16.08 58.68 69.37 65.75 71.34 33.80 41.54 93.93 51.71 4.84 79.17 94.92 18.89 11.10 62.89 33.92 84.16 10.46 10.37 73.79 17.74 16.34 94.87 38.79 56.33 2.72 27.69 63.19 78.13 22.60 37.50 76.32 34.74 44.47 64.97 32.56 70.01 28.10 72.42 67.63 67.90 52.09 81.13 82.19 37.90 41.34 70.21 65.56 92.26 58.60 88.43 87.05 99.23 9.52 18.06 0.33 36.07 54.22 17.94 16.90 18.88 62.77 86.26 75.19 74.37 68.34 22.88 69.28 25.72 53.84 -26.68 74.04 96.30 91.61 30.71 24.96 40.34 68.11 36.98 12.05 35.53 69.81 13.58 52.51 90.87 31.64 98.95 75.69 54.76 91.75 72.04 75.18 26.04 15.62 40.14 63.76 20.64 33.25 22.16 72.37 74.57 62.95 9.93 86.35 80.59 53.28 42.71 67.94 59.41 11.06 23.91 33.03 26.04 90.72 55.26 5.30 67.63 91.36 7.08 76.91 92.92 46.25 83.15 54.51 61.32 23.38 64.78 66.87 81.62 96.79 45.64 21.85 70.97 96.47 31.03 23.36 71.18 83.33 46.58 0.37 35.12 48.19 39.72 28.54 16.63 50.70 34.42 77.94 80.02 18.66 19.09 79.45 0.11 77.61 46.21 65.01 76.56 75.98 17.41 13.12 85.40 35.84 97.73 17.69 95.89 88.54 39.95 77.50 37.41 68.40 -81.57 78.35 81.26 32.83 99.29 94.91 81.35 42.21 72.09 41.72 80.05 63.40 72.36 77.28 34.86 87.32 56.72 97.07 12.37 39.13 21.01 75.91 17.90 79.05 30.46 48.48 36.72 53.16 63.40 29.63 20.13 24.06 7.11 21.34 60.81 90.15 40.07 2.86 1.23 14.89 65.48 70.76 60.81 51.83 49.23 36.74 42.98 23.38 73.49 23.37 98.44 53.47 33.50 25.68 21.29 91.83 83.65 33.59 58.71 15.86 29.94 62.39 65.75 8.00 39.05 89.31 81.84 11.72 97.67 69.19 95.71 58.10 73.02 66.22 92.35 57.49 33.47 86.74 34.36 53.19 27.61 51.32 85.62 26.28 14.93 30.78 48.21 92.47 48.05 81.86 47.13 38.26 40.68 59.32 38.25 81.39 94.82 17.31 40.80 54.33 -54.48 97.64 2.22 28.78 16.87 32.94 56.72 81.89 48.47 50.29 77.90 9.55 61.18 43.68 23.80 82.33 93.70 37.98 20.01 41.44 42.96 67.98 40.06 33.13 64.46 83.21 23.94 59.11 84.34 13.13 3.83 59.92 93.32 85.06 22.87 77.89 78.94 78.50 79.48 76.49 47.63 33.28 26.01 23.20 98.99 89.55 44.11 52.54 22.82 15.98 33.60 22.18 56.58 81.46 79.58 41.25 1.64 27.06 89.88 77.91 79.77 39.38 24.69 53.37 97.82 86.12 74.41 88.25 97.02 5.60 67.54 62.86 6.23 65.22 95.06 29.76 65.47 9.08 38.80 98.71 51.96 93.23 44.68 27.69 45.72 27.75 2.23 61.10 60.49 67.82 75.14 94.62 1.14 93.83 76.96 84.88 35.15 4.57 94.40 53.40 -44.07 48.45 5.68 31.70 80.78 46.80 31.05 3.21 58.55 50.34 40.33 36.15 20.56 93.05 13.87 94.09 92.15 94.26 49.51 58.64 91.28 98.01 52.82 55.89 38.94 5.14 54.90 91.26 65.26 75.74 35.33 60.56 68.84 45.26 65.21 71.35 5.07 46.03 59.43 18.61 33.10 55.53 39.18 48.85 49.42 85.08 47.70 62.13 1.43 70.19 37.90 25.93 48.02 85.97 49.90 46.63 66.28 36.51 70.96 56.93 83.00 92.63 29.03 42.10 73.56 34.82 21.77 59.78 69.25 41.77 27.73 23.71 49.59 83.04 41.61 76.33 43.33 43.95 82.55 33.01 57.13 82.76 63.60 33.43 20.44 71.27 56.71 39.70 38.37 50.65 33.94 32.90 24.65 79.34 77.67 18.91 45.28 42.56 75.43 2.41 -55.83 96.52 50.39 65.82 26.13 5.01 11.33 35.30 55.61 63.46 30.09 98.29 15.74 79.11 57.01 26.97 2.81 79.19 60.49 35.08 33.23 1.63 2.17 2.67 63.50 60.87 60.69 38.00 41.96 3.31 72.87 52.69 96.44 5.61 91.91 1.61 84.47 11.75 92.71 59.23 57.86 28.99 28.73 35.98 15.68 17.35 69.68 21.72 94.64 65.44 13.37 65.09 87.67 87.56 54.10 28.57 0.42 52.41 48.17 45.50 96.27 39.22 19.96 84.27 31.91 50.07 87.33 46.79 6.89 86.68 28.60 21.32 48.55 92.53 48.01 60.08 7.69 97.57 61.69 15.79 16.85 47.23 0.87 59.46 9.82 30.14 46.03 20.01 4.35 14.44 38.73 99.77 91.33 33.84 24.55 27.57 89.17 64.20 74.69 43.15 -23.29 45.15 94.54 13.81 21.42 24.68 61.10 46.47 50.42 98.29 92.40 18.28 85.16 9.27 43.64 67.92 92.27 5.91 92.81 93.48 20.75 65.50 94.62 5.79 35.52 60.90 4.00 65.99 30.08 95.60 26.71 50.31 82.00 63.40 96.48 17.13 27.02 6.54 91.64 22.44 45.13 44.53 58.21 9.57 66.30 12.43 36.45 86.09 41.53 13.93 50.98 34.44 58.42 99.99 35.95 57.42 35.27 55.39 10.07 90.19 82.54 87.10 67.07 45.42 86.86 47.29 84.97 91.50 10.01 96.88 86.94 78.48 67.70 8.78 69.16 46.77 14.71 4.86 41.61 67.97 61.87 69.31 71.54 90.30 84.60 71.65 43.21 56.46 61.48 60.22 97.81 98.85 69.55 81.18 43.57 7.59 37.02 53.16 30.53 50.18 -54.10 72.59 91.19 72.80 34.56 62.94 68.04 79.64 24.93 36.54 49.62 19.34 21.59 25.16 93.63 39.65 39.51 2.19 91.54 89.87 67.04 7.22 81.90 66.83 87.94 1.44 73.70 14.10 13.43 63.61 64.88 27.95 58.71 59.32 26.51 91.66 9.87 19.20 49.76 54.86 19.46 70.80 39.19 10.23 31.51 51.67 92.86 83.21 43.28 93.48 54.26 30.63 15.79 10.75 57.94 13.62 29.14 63.31 88.53 95.00 31.02 10.36 88.03 34.21 24.02 29.19 18.59 64.24 9.99 71.29 76.98 20.41 41.70 22.08 0.45 21.70 34.00 42.24 50.54 50.70 10.71 22.16 44.74 12.13 47.58 28.38 82.64 64.40 64.49 71.79 10.66 31.08 56.00 67.51 48.25 61.49 31.30 49.61 27.42 52.67 -35.81 42.88 69.99 17.87 32.65 64.97 38.46 50.27 44.14 59.06 90.49 77.85 19.73 36.39 6.91 39.58 29.28 9.88 29.68 38.15 56.48 30.85 30.03 97.01 76.16 95.37 59.61 40.84 75.21 57.33 27.20 23.43 55.89 15.47 22.45 1.19 79.96 14.93 74.33 75.87 80.07 22.59 30.55 81.02 79.03 22.33 91.45 89.13 49.34 35.52 27.59 34.44 82.22 37.13 28.40 99.02 57.62 12.52 26.93 87.67 81.62 43.52 8.40 39.55 19.30 76.86 77.40 20.98 7.80 37.37 60.14 11.97 79.36 76.59 40.73 64.50 51.63 62.83 81.61 77.54 24.11 7.64 36.06 34.01 85.47 41.31 67.99 3.01 96.85 83.08 71.05 98.55 58.49 50.85 69.44 97.54 19.92 34.24 17.04 32.25 -36.78 80.20 97.62 10.58 42.66 47.37 60.14 57.77 38.58 67.24 67.83 92.79 28.21 65.22 84.63 6.14 27.48 18.05 56.07 41.52 85.89 4.04 77.51 46.77 12.17 80.13 99.82 7.57 23.72 42.96 6.19 32.66 17.65 63.72 69.48 64.43 55.25 30.66 86.95 81.39 17.06 7.10 7.79 11.43 60.20 87.01 30.96 57.30 23.31 78.73 88.53 32.65 77.72 42.55 90.57 84.44 87.27 1.53 80.16 85.59 7.52 83.98 19.95 7.73 26.76 26.31 50.47 45.18 19.39 74.36 52.89 11.24 39.39 11.17 50.61 28.25 3.97 33.58 79.57 56.71 84.59 52.07 10.02 19.88 11.21 68.38 0.88 37.91 28.78 80.74 99.25 35.67 61.17 7.50 71.30 55.64 24.72 22.05 78.23 42.41 -86.59 28.42 1.88 15.38 74.07 36.48 41.98 79.18 92.26 3.94 40.00 78.33 42.14 64.37 48.95 74.77 17.89 19.52 13.94 88.20 7.67 70.67 74.86 9.67 28.54 39.20 37.17 97.09 29.72 33.28 73.00 89.43 67.29 31.25 91.11 86.97 66.73 21.12 46.38 76.60 66.73 93.40 34.46 57.71 75.65 5.02 27.70 96.58 46.74 92.51 85.41 95.67 43.65 58.31 67.63 67.25 43.47 15.22 45.30 66.53 88.19 84.14 83.47 21.10 37.08 22.15 9.94 31.96 13.10 86.72 4.69 39.55 53.80 34.17 16.06 88.74 88.94 98.46 45.12 79.15 24.22 84.62 5.31 1.48 4.17 29.27 85.49 61.02 37.77 2.25 22.08 33.10 1.46 0.01 55.94 59.67 27.77 8.20 85.57 56.46 -10.54 54.69 5.52 48.22 69.87 5.69 24.59 9.22 64.47 81.68 1.28 63.01 34.86 36.95 39.04 33.30 42.38 48.24 81.36 63.53 72.22 21.84 23.82 26.47 85.37 27.72 79.49 74.52 11.89 64.15 63.29 55.61 57.14 68.77 29.26 0.07 59.87 1.25 93.43 84.14 4.37 81.91 67.02 82.99 73.42 20.53 84.78 48.77 48.66 23.68 80.70 45.66 2.63 77.17 93.28 32.16 57.23 27.15 40.62 74.95 12.76 57.78 55.18 42.03 99.34 69.69 32.66 78.89 30.34 33.19 12.61 97.29 1.96 6.13 76.90 62.94 11.56 81.04 74.22 65.14 70.25 42.08 96.54 36.02 31.63 84.58 59.05 55.47 54.79 20.70 6.64 23.57 47.57 29.61 10.66 18.14 18.88 90.87 91.81 41.85 -12.41 59.44 86.90 1.03 87.11 36.26 41.42 59.83 13.15 68.86 50.76 64.08 90.16 54.23 0.51 14.95 25.75 78.78 5.47 10.79 31.08 90.89 41.02 82.48 69.76 98.92 74.62 96.63 77.15 58.62 51.70 67.28 45.48 89.25 91.90 4.08 8.06 44.77 65.14 3.38 14.55 61.77 42.04 4.03 91.49 86.55 13.15 99.69 85.97 86.59 37.64 30.21 84.05 55.93 48.05 26.92 89.68 11.27 35.91 56.42 8.95 45.30 40.94 92.01 73.62 71.22 78.71 96.75 82.78 68.70 79.98 40.87 61.44 64.99 68.20 48.92 82.45 88.37 35.29 81.09 85.89 62.41 10.00 45.24 96.04 2.31 95.64 30.55 52.97 55.10 36.48 48.16 12.68 19.99 77.62 12.06 59.17 6.94 79.77 56.59 -63.90 71.57 16.80 97.71 75.02 40.69 15.37 92.63 51.66 94.87 18.91 2.49 5.73 79.61 47.66 40.96 25.69 37.30 97.03 3.15 25.95 84.91 66.80 51.88 7.15 11.45 10.56 63.97 61.96 49.60 0.70 94.75 8.54 92.88 92.80 67.54 24.28 98.26 48.44 39.30 96.60 94.15 35.84 60.23 36.86 0.31 79.61 79.43 7.08 72.96 12.01 14.18 44.94 94.19 40.13 86.94 43.63 72.69 26.10 25.29 85.81 37.56 26.64 30.51 58.17 42.70 29.18 50.86 20.00 35.42 67.84 16.72 48.38 12.08 22.64 80.73 74.20 5.74 50.05 26.51 22.48 32.30 88.98 8.57 10.45 1.39 74.80 72.82 3.79 46.68 96.87 28.98 70.64 11.55 53.52 6.79 43.60 82.82 22.00 56.94 -74.47 34.35 18.74 95.81 4.94 97.89 86.45 21.16 57.23 54.13 25.63 13.35 53.60 13.01 57.89 98.30 26.58 43.81 78.04 90.12 36.95 40.09 12.78 21.08 65.80 15.40 76.48 51.34 8.62 42.50 74.26 21.51 50.15 94.26 87.83 55.15 82.10 33.38 86.28 47.94 68.26 92.49 47.53 47.11 74.53 52.53 46.20 49.75 77.20 38.03 81.02 7.30 69.06 46.09 2.54 81.79 36.21 13.35 4.54 91.60 68.15 74.21 33.16 72.12 45.66 90.45 1.78 90.20 28.80 69.96 6.17 96.58 27.96 45.42 30.94 51.03 6.91 10.89 96.62 26.91 94.20 94.95 19.67 83.04 73.17 17.12 97.58 7.47 91.09 32.93 21.30 35.68 71.89 22.03 25.24 41.16 59.28 99.40 52.06 79.79 -95.54 28.60 42.76 82.24 85.94 94.45 65.19 74.60 59.90 23.02 87.27 69.34 13.04 62.62 59.39 62.67 90.64 69.05 11.91 28.36 10.72 67.18 16.33 0.82 69.64 9.22 52.49 27.69 50.85 30.28 15.36 11.93 85.43 15.76 72.74 96.29 92.47 39.18 37.64 71.94 89.71 66.82 20.05 63.44 80.20 46.66 2.27 2.51 14.07 76.35 63.94 34.26 27.83 96.98 60.24 77.23 10.08 6.38 66.41 74.49 42.06 47.35 96.77 7.37 97.42 17.54 16.75 39.22 11.27 1.66 61.89 13.55 26.23 82.33 55.70 61.71 34.42 31.94 48.49 78.61 81.89 53.81 64.28 53.11 66.54 97.07 62.80 39.54 64.38 24.88 1.01 85.41 42.98 97.85 12.37 76.22 3.66 31.87 19.28 0.45 -32.50 26.96 17.99 59.51 20.22 18.23 14.71 82.80 63.86 68.02 86.38 20.11 47.54 2.54 69.51 91.44 5.86 49.75 12.49 15.53 79.44 95.05 22.62 32.23 21.50 7.64 22.82 39.52 94.13 56.06 49.40 93.34 70.04 66.01 6.71 20.01 10.32 38.25 72.56 68.07 50.51 53.04 59.85 2.81 6.10 12.47 15.73 91.59 94.01 30.69 81.75 4.14 38.35 59.27 17.17 83.40 70.55 64.89 76.26 37.53 44.61 44.05 3.11 57.02 51.33 88.76 63.49 19.25 34.12 8.78 32.32 7.39 3.89 30.16 71.28 79.20 72.31 13.34 93.64 46.43 8.75 1.87 85.07 8.73 17.65 93.10 6.72 54.04 68.84 97.01 10.57 49.08 65.15 44.02 27.15 56.18 90.12 75.06 52.16 84.65 -82.16 77.29 50.60 57.34 50.96 50.09 77.12 34.85 28.43 17.79 25.56 34.05 33.89 13.22 56.83 63.86 41.35 25.34 51.33 12.79 92.74 31.29 68.20 96.56 64.94 93.06 45.53 51.04 21.26 46.09 67.52 6.31 5.17 9.69 80.38 98.48 24.61 77.80 56.55 70.89 90.57 97.92 45.86 97.19 53.82 29.35 28.40 34.84 94.75 66.47 96.83 62.85 55.02 68.00 25.36 77.74 12.56 94.13 65.47 46.92 71.15 96.48 35.34 26.88 34.41 82.62 98.27 67.15 31.04 75.12 45.98 89.55 77.80 84.56 83.11 25.65 69.97 14.81 21.08 10.40 16.60 5.03 98.63 58.02 44.47 28.52 32.05 6.46 5.97 45.21 49.50 47.12 34.77 75.30 12.88 43.45 69.76 40.51 56.25 82.49 -78.32 70.34 46.72 86.77 25.62 43.42 45.71 82.05 1.35 96.95 43.62 99.36 55.67 3.30 55.99 75.52 47.42 2.08 91.38 43.49 86.28 88.28 86.10 43.94 76.11 46.39 78.60 61.48 31.14 90.49 60.01 84.98 13.35 24.11 7.58 3.37 10.44 98.69 21.26 31.75 60.84 62.01 7.43 92.02 25.29 57.18 43.55 31.64 31.75 94.34 64.39 42.12 7.15 70.65 27.48 51.53 13.04 74.42 1.27 2.31 41.62 49.24 44.72 99.60 38.20 89.67 51.15 94.93 67.37 37.07 8.64 2.09 96.57 74.98 16.45 24.02 24.03 95.46 58.32 88.37 83.49 40.36 94.33 95.15 71.45 51.29 78.96 41.89 35.57 68.51 57.98 19.89 18.59 20.38 70.84 57.56 34.70 32.18 65.12 47.45 -87.77 90.52 76.12 94.77 16.65 19.34 42.13 62.36 17.61 81.23 44.66 68.21 0.46 82.51 25.33 57.92 53.13 56.32 71.62 63.79 73.01 89.78 13.98 82.34 96.58 55.10 68.98 72.29 67.32 20.11 78.33 30.67 83.42 17.14 93.91 57.89 5.29 47.75 14.30 3.50 76.54 32.14 78.01 97.19 1.43 82.80 55.77 36.33 1.25 66.94 48.50 92.28 8.54 56.66 12.41 18.05 3.17 56.02 30.58 31.02 43.32 50.30 96.61 69.88 57.96 74.61 59.27 8.59 65.70 20.08 49.31 36.29 61.26 77.98 20.60 9.77 23.57 73.10 62.44 22.33 56.88 16.40 9.09 78.64 80.65 17.69 38.64 44.48 64.03 59.75 12.19 46.22 78.69 35.63 55.30 14.97 46.32 86.36 70.58 86.69 -63.44 24.73 68.10 51.92 46.25 64.91 28.05 56.98 62.69 39.84 96.33 26.44 9.66 74.63 22.10 21.65 56.29 16.29 92.39 54.19 72.98 64.86 71.07 16.67 30.33 15.03 65.41 73.61 77.51 24.73 71.54 18.98 94.31 61.85 24.48 57.66 79.22 61.29 67.05 70.99 24.37 96.29 47.55 68.08 9.76 31.06 56.16 82.58 90.31 24.14 79.66 63.62 2.41 37.58 91.35 26.63 55.00 83.10 45.78 72.39 33.46 79.68 74.82 96.27 33.76 11.87 1.17 96.78 28.12 88.27 26.83 29.02 44.60 66.43 95.16 44.28 14.89 67.70 62.45 87.65 62.95 24.24 11.78 73.75 54.48 34.06 43.03 64.38 36.02 65.64 0.63 46.96 95.74 11.69 94.33 99.36 14.67 35.11 98.84 91.37 -59.34 30.53 57.53 9.60 15.86 21.71 12.41 59.06 25.78 11.41 58.01 48.70 54.98 33.24 91.43 9.20 18.14 97.84 38.32 93.01 12.21 53.67 11.44 62.36 99.54 73.07 55.40 97.85 50.01 72.59 27.16 38.63 23.49 45.07 51.52 39.93 77.23 15.03 10.18 23.83 10.77 6.76 83.02 71.81 40.52 76.57 73.14 39.96 31.53 5.46 54.30 24.87 82.07 70.66 83.38 95.61 77.95 49.70 10.97 39.67 44.70 49.33 22.35 91.84 81.92 62.45 47.62 8.20 17.84 67.04 73.73 97.76 54.41 88.69 38.50 15.28 25.24 1.44 68.39 97.86 16.73 34.72 31.21 53.43 6.19 82.78 23.84 11.02 97.63 4.81 82.79 13.41 12.00 74.14 24.02 38.33 92.62 82.53 3.97 3.81 -84.60 60.63 8.28 11.28 31.02 65.62 21.14 82.33 51.60 85.60 52.72 45.78 54.24 72.31 96.85 82.61 52.66 61.81 99.51 2.60 84.55 9.62 89.50 70.30 41.83 71.29 71.47 75.57 12.19 7.13 12.60 30.38 86.63 8.23 33.17 46.15 48.75 21.39 11.36 83.32 84.00 62.35 25.81 1.65 10.85 52.07 53.55 48.11 46.20 65.88 8.92 19.01 86.25 38.34 49.10 42.19 53.54 25.20 40.14 83.62 99.83 50.63 31.26 90.56 27.88 97.23 64.92 10.28 14.85 22.85 2.26 38.92 17.60 6.73 29.53 14.13 9.37 24.31 56.72 58.78 96.00 82.58 77.04 13.00 10.28 87.08 20.02 85.78 29.45 32.67 17.91 59.91 1.84 8.93 86.12 32.80 16.42 94.82 4.99 99.61 -68.89 15.40 47.31 50.49 88.32 19.70 83.89 79.06 55.95 22.37 1.70 77.23 18.93 11.20 48.88 37.32 16.79 12.89 81.32 85.54 51.69 35.32 27.84 3.95 69.37 53.38 85.45 21.21 57.46 47.54 12.62 77.79 87.04 23.36 55.95 35.76 76.16 55.72 55.94 62.06 34.87 73.22 94.52 36.45 87.05 63.25 67.26 63.35 42.07 19.64 83.45 93.41 20.10 89.84 7.81 43.51 38.09 25.10 80.54 93.77 66.30 98.28 13.87 18.90 14.51 61.81 0.44 44.39 33.67 22.75 13.76 42.38 5.68 74.37 55.37 39.87 75.32 71.06 85.17 34.61 78.57 35.77 25.81 5.82 36.74 48.28 96.72 3.08 47.80 37.31 69.82 27.58 57.93 55.07 51.59 62.12 47.33 43.25 98.89 71.44 -30.09 18.24 33.38 35.29 4.91 83.57 77.24 43.22 58.90 38.61 98.90 88.34 72.76 35.72 75.92 29.64 13.40 98.10 28.05 75.09 88.06 32.97 2.08 50.61 81.77 47.01 37.86 50.07 52.18 22.00 75.54 70.29 34.66 81.26 81.59 94.96 19.31 52.59 85.56 50.38 49.65 16.33 6.00 26.88 60.46 99.71 44.09 67.48 98.57 55.44 74.38 83.50 2.73 13.66 23.06 8.59 70.02 60.74 97.48 40.52 52.26 69.77 8.02 30.49 31.30 9.42 86.40 84.25 46.74 6.80 60.95 67.45 88.61 86.10 12.20 40.11 89.42 86.84 33.86 0.89 24.43 81.07 57.61 78.24 81.82 53.91 86.71 96.05 87.22 34.34 33.26 46.75 55.15 5.24 74.43 28.78 58.08 8.57 70.28 31.30 -17.27 85.49 0.63 30.48 64.73 19.44 68.35 30.77 59.35 30.33 80.52 67.22 52.74 35.34 53.67 41.79 56.96 22.87 97.51 17.06 39.78 13.52 14.81 8.50 21.88 32.06 63.45 81.90 79.02 16.04 13.41 50.21 76.24 65.16 85.48 78.80 90.89 57.81 30.96 35.71 45.26 66.55 46.56 19.56 28.76 51.21 7.04 90.95 38.13 25.04 42.84 33.08 51.24 0.38 39.72 52.87 44.32 82.55 85.14 76.92 21.75 83.77 44.31 47.63 50.38 81.25 80.89 74.77 65.54 68.88 24.13 29.59 82.75 76.19 22.90 36.37 49.34 49.77 14.96 57.70 48.54 26.99 34.40 97.68 38.48 79.00 94.03 24.46 83.29 0.80 86.26 13.27 47.61 16.37 98.03 2.82 97.00 28.04 41.98 48.96 -25.45 56.73 83.69 92.34 83.38 85.22 67.82 94.51 48.89 19.44 46.79 73.32 91.30 49.23 77.67 99.76 82.56 86.45 87.29 76.21 95.37 4.41 5.88 14.71 27.52 85.25 61.94 89.90 54.51 5.20 67.28 37.56 72.35 62.19 73.65 89.47 39.81 34.15 35.26 66.28 91.95 61.11 64.78 89.64 16.66 70.78 15.24 48.27 64.40 33.02 1.98 68.08 4.12 41.76 28.39 91.40 38.55 61.33 45.79 65.94 49.70 35.98 94.55 94.69 91.59 39.23 65.95 63.25 5.74 25.55 74.71 2.51 22.20 98.29 5.96 29.04 58.06 60.43 69.43 97.29 2.52 87.89 9.23 62.76 74.11 96.79 69.35 77.76 80.92 0.65 98.53 0.12 93.22 58.23 42.95 77.48 5.09 27.85 58.61 22.78 -24.80 12.14 12.32 44.33 36.71 78.16 11.11 51.41 37.68 29.23 96.58 84.02 62.67 70.04 27.98 52.51 51.43 17.10 40.83 76.03 82.15 37.51 91.24 84.65 61.83 89.75 23.13 45.74 2.78 1.39 3.44 75.71 11.51 63.59 27.15 2.80 2.73 70.03 49.79 46.68 40.04 99.90 70.89 86.69 12.36 18.87 68.17 44.92 30.36 30.56 75.86 92.00 69.54 30.16 68.52 84.34 58.31 92.04 8.49 37.14 99.45 50.64 6.63 36.93 10.40 40.47 76.09 65.44 45.07 26.64 75.56 60.72 44.53 68.96 16.41 24.67 35.59 50.97 86.72 5.17 84.29 21.30 30.90 54.44 19.94 52.53 9.02 95.82 7.60 42.37 59.32 11.07 38.72 25.03 83.40 71.84 2.55 43.50 84.31 74.83 -84.75 12.00 19.72 52.62 59.82 71.44 85.01 14.15 42.46 65.64 68.58 92.10 85.92 46.18 92.78 51.26 84.45 85.46 95.67 67.56 73.06 43.73 9.54 81.35 32.62 57.00 26.62 0.17 46.36 63.38 57.32 66.31 39.79 96.51 0.11 51.46 1.54 66.52 1.76 93.91 74.38 25.10 47.61 5.68 38.84 58.43 42.86 32.98 54.37 9.84 93.44 87.88 14.13 76.35 92.28 29.66 56.63 83.55 63.38 24.14 14.74 5.28 62.30 38.53 8.55 38.36 72.56 64.70 59.52 48.94 36.62 47.10 34.75 70.22 91.94 58.49 78.49 46.07 29.69 6.11 88.56 54.34 52.26 11.73 57.36 33.24 97.42 48.29 84.73 15.27 8.17 58.92 80.35 64.18 54.40 91.14 12.48 90.02 59.31 41.19 -99.93 78.63 33.12 65.78 73.27 3.16 13.64 9.03 58.41 74.52 72.85 42.28 5.35 87.32 43.82 93.88 60.78 46.83 30.71 14.76 96.29 84.76 2.16 78.00 91.58 2.86 19.59 55.96 82.45 23.88 60.61 37.15 33.48 37.12 6.82 95.81 75.00 42.73 79.40 1.74 81.39 60.17 64.02 75.64 91.65 43.61 37.05 98.63 26.92 14.86 8.97 83.39 97.61 78.33 12.27 20.29 15.16 52.52 30.15 25.70 53.75 91.16 96.85 92.36 46.82 52.58 49.38 90.11 85.51 71.39 48.13 22.44 38.62 83.19 56.11 96.89 98.10 18.98 49.46 84.72 51.24 95.40 80.78 32.85 0.01 47.59 58.93 28.82 23.48 61.13 32.93 19.12 66.24 6.06 99.53 2.16 26.57 69.58 17.21 54.45 -13.90 92.93 98.69 17.66 73.95 3.23 27.11 24.41 83.54 31.53 0.69 73.94 71.19 73.83 4.15 7.89 25.10 30.48 88.45 35.49 95.53 3.72 81.63 66.05 44.77 38.26 66.07 66.00 90.85 32.56 25.56 22.76 53.42 42.76 89.12 20.66 62.31 41.71 32.36 2.08 91.29 97.83 83.25 52.69 70.40 51.53 49.44 66.62 84.58 35.73 14.67 3.74 94.18 4.86 60.02 68.95 77.81 56.11 60.18 10.04 10.48 94.69 67.06 18.05 32.84 52.74 74.90 53.61 79.75 44.99 39.52 39.18 17.80 25.09 84.27 72.93 16.71 2.23 43.79 6.67 25.61 13.60 12.50 70.20 91.86 51.84 96.19 27.82 83.68 8.06 30.66 16.09 1.79 17.74 73.76 55.38 31.47 49.99 49.81 7.50 -47.26 42.59 55.92 42.91 90.96 46.64 8.54 31.97 64.17 45.38 87.76 98.98 6.08 18.71 2.53 69.46 5.53 83.00 59.45 10.11 0.07 24.10 73.43 87.40 23.45 87.54 33.56 48.74 25.73 90.23 50.53 39.91 22.74 65.39 59.84 94.36 41.18 95.92 20.64 18.65 33.74 95.58 55.89 30.03 41.80 36.98 67.52 88.16 48.62 30.39 99.65 66.80 20.95 66.86 47.03 98.70 29.72 49.68 20.47 19.69 53.48 86.98 16.53 86.82 72.41 41.45 86.26 61.44 18.78 92.86 76.07 16.73 83.39 82.46 10.86 97.21 27.39 91.98 63.62 66.19 69.12 68.37 41.55 60.96 69.90 46.31 3.24 34.20 3.83 85.44 92.82 87.50 89.43 49.06 99.39 66.28 88.13 10.81 42.31 24.54 -22.40 65.95 59.13 14.48 47.76 62.85 66.60 11.78 25.38 11.90 45.32 48.92 85.93 94.66 35.68 26.06 44.55 71.72 29.26 65.99 41.52 47.25 83.39 15.29 14.46 42.83 91.31 38.90 3.87 18.60 32.46 28.00 72.15 77.53 27.29 15.43 18.30 32.96 16.43 86.48 3.40 33.76 16.90 47.07 81.28 15.39 88.31 79.14 32.89 35.07 63.75 14.63 99.27 89.51 77.05 12.47 20.45 54.37 51.29 60.49 45.58 48.09 37.31 7.09 50.78 34.24 49.95 48.68 70.46 15.80 21.43 98.28 21.20 16.97 59.50 40.57 22.96 90.44 76.01 32.19 61.86 97.12 99.86 60.68 52.56 0.44 87.89 90.79 55.73 76.86 14.06 70.96 60.30 91.23 29.50 30.69 10.08 26.18 53.56 46.95 -24.81 75.98 41.62 22.72 44.88 50.03 22.01 0.74 24.63 54.45 75.81 27.68 42.54 6.37 11.50 31.79 43.69 15.94 79.90 19.22 82.95 48.03 82.77 83.21 36.47 30.77 72.15 48.63 54.93 82.16 44.89 0.76 18.58 98.72 3.63 7.95 22.37 81.09 97.63 5.39 5.94 33.50 36.20 38.95 47.95 55.95 5.20 43.81 47.76 76.98 33.46 96.88 55.24 16.35 67.10 7.05 74.70 49.07 7.54 93.34 22.27 9.92 80.24 94.55 84.40 54.91 91.70 58.86 48.22 0.47 56.99 77.08 15.93 68.74 65.54 13.96 30.77 64.09 57.80 84.06 56.75 94.13 96.88 41.22 56.54 17.36 61.95 57.46 79.97 46.10 45.42 60.70 97.11 31.86 19.57 72.64 64.10 66.89 95.84 86.15 -74.47 73.67 1.71 11.26 40.27 47.08 63.25 81.55 32.45 91.03 69.99 16.52 14.84 52.97 34.91 96.99 55.35 44.11 49.51 77.37 20.64 18.42 35.53 18.86 36.33 19.28 13.39 29.53 58.48 88.66 9.98 15.05 98.79 24.28 21.55 70.02 71.88 63.42 34.96 20.82 81.02 63.12 76.39 99.51 39.04 70.90 14.89 67.20 74.70 91.28 27.71 36.83 57.83 9.71 16.97 92.03 81.63 41.33 58.81 66.99 56.13 34.93 2.97 11.50 36.26 89.38 12.59 65.31 32.28 69.80 15.78 80.54 78.81 25.66 91.72 35.14 71.94 24.06 41.04 97.82 99.84 56.89 97.75 5.86 50.14 86.96 18.03 66.70 12.23 55.02 40.98 65.17 93.02 1.57 31.61 55.41 64.73 68.96 2.51 58.90 -98.29 9.24 36.87 25.75 47.59 87.97 62.75 45.66 9.60 14.03 29.06 77.10 50.99 35.11 75.76 97.67 94.52 55.18 68.28 11.61 10.29 29.91 92.80 32.05 75.78 52.59 91.98 16.04 10.34 26.09 35.03 27.51 2.79 74.03 93.56 53.30 7.66 75.40 57.24 64.24 47.23 57.90 71.87 24.96 39.89 48.06 79.11 20.57 35.48 80.38 97.21 59.30 30.71 57.39 28.98 63.32 53.06 56.13 74.31 89.49 40.43 20.84 69.14 79.99 49.69 25.32 55.62 11.59 68.37 88.94 23.13 22.94 46.82 70.20 32.53 68.40 59.36 63.78 72.06 52.07 16.78 14.54 78.08 28.26 21.19 89.34 43.32 17.27 93.98 84.00 56.63 1.90 79.75 80.28 19.66 42.40 54.81 19.50 47.35 68.35 -37.12 72.86 2.09 64.54 85.23 69.70 42.68 16.68 10.64 72.43 76.84 25.64 22.30 59.99 29.44 57.51 64.91 7.22 23.74 83.20 73.65 20.18 92.95 22.84 91.33 53.41 92.47 14.61 55.08 14.61 92.34 35.26 71.86 26.43 16.13 27.74 9.00 91.88 98.40 63.52 89.25 39.87 32.35 16.94 47.10 76.46 13.52 53.74 29.34 32.90 44.96 41.78 81.97 32.88 45.01 58.24 41.87 4.34 67.39 94.19 18.75 58.71 15.37 98.81 65.86 75.36 65.92 0.45 88.95 12.47 59.99 84.76 84.67 20.12 7.20 75.86 8.49 16.34 59.04 34.81 70.72 54.08 3.03 90.36 3.74 68.22 56.58 70.46 86.83 12.29 9.82 97.19 29.68 25.40 66.74 13.66 33.30 53.53 73.42 90.41 -89.51 41.35 44.73 83.03 43.94 77.48 40.71 93.09 21.70 3.67 29.68 30.15 75.30 93.97 30.76 37.03 74.28 14.76 26.94 15.65 34.72 5.04 7.48 86.32 16.56 98.28 20.50 81.32 15.92 41.27 79.39 37.93 80.12 74.92 68.33 40.92 49.72 92.43 18.70 71.01 49.13 37.78 65.22 81.02 79.19 28.35 19.65 76.64 60.93 78.47 16.66 47.50 57.06 84.11 85.26 24.81 35.60 19.76 87.88 49.33 71.60 53.21 63.50 16.41 91.02 46.65 61.43 4.20 46.56 27.69 66.99 93.11 80.49 88.43 68.41 39.14 65.49 49.43 89.59 20.66 5.93 97.68 19.87 91.70 45.27 3.32 72.96 6.59 87.61 34.72 17.09 80.82 98.74 79.27 31.85 54.45 86.09 28.04 85.95 43.66 -35.93 34.68 50.18 75.61 33.10 17.43 71.40 51.90 46.25 31.99 43.85 53.09 16.66 89.16 36.29 50.00 57.71 77.94 70.46 78.26 97.61 78.50 8.67 75.80 21.86 82.69 76.65 12.04 55.47 98.72 33.54 21.69 88.91 65.68 28.38 10.20 84.80 84.68 69.89 27.92 59.11 89.85 64.95 45.78 42.62 81.82 88.17 8.41 43.88 24.03 64.54 66.13 9.12 57.49 36.55 8.78 91.54 36.09 51.82 61.28 40.75 50.12 52.51 30.22 56.35 13.15 79.83 56.44 9.29 84.04 21.22 37.44 25.96 23.48 89.29 87.17 87.11 35.11 21.83 77.95 5.94 14.98 65.62 57.99 48.26 28.39 84.62 42.41 53.80 53.25 64.89 30.72 21.88 38.26 48.07 69.40 60.29 74.78 65.73 82.72 -64.49 3.28 67.45 24.72 30.54 36.15 37.67 80.00 97.50 51.64 35.64 14.57 28.48 38.20 27.78 30.91 45.06 52.47 100.00 6.95 74.40 4.23 90.94 20.10 98.29 11.44 57.48 10.90 20.67 81.17 38.96 43.81 49.49 99.12 48.88 91.32 81.01 70.81 66.13 3.43 27.17 24.32 57.20 49.46 84.11 80.92 7.36 52.61 68.43 81.03 72.32 17.74 46.95 58.95 84.65 94.44 21.91 32.29 82.90 42.59 77.76 67.37 49.50 69.47 20.21 90.50 70.29 60.57 45.88 95.00 99.95 5.57 65.24 38.74 87.99 67.57 54.93 65.70 26.14 56.35 61.54 84.87 59.71 98.76 69.19 21.72 66.88 23.03 82.81 21.12 34.26 98.34 44.45 1.12 95.72 30.55 14.83 69.90 99.14 74.24 -18.71 8.20 93.83 68.87 84.41 22.07 71.63 30.87 53.08 34.42 93.97 58.70 38.68 61.84 94.79 65.13 87.58 18.35 13.24 37.25 95.28 48.31 94.66 93.00 76.21 37.73 45.34 69.13 5.32 24.01 73.13 64.72 33.51 30.54 25.80 15.93 79.38 39.32 7.60 88.18 40.88 21.09 40.76 33.89 9.38 92.07 42.88 3.92 78.20 65.02 42.51 25.83 30.08 16.38 62.41 62.97 94.33 76.72 62.82 20.96 37.24 35.01 13.86 60.92 12.09 36.86 25.36 28.64 42.64 26.06 83.28 79.70 64.22 88.13 50.02 61.74 27.49 46.49 86.33 48.05 84.48 96.25 20.47 29.54 6.17 83.27 67.62 83.79 17.26 86.44 46.82 70.02 97.03 13.21 43.60 11.01 90.35 25.01 83.57 10.69 -66.90 2.39 34.95 70.60 62.37 80.24 19.79 59.80 35.01 73.87 5.84 88.91 68.46 71.29 7.08 1.36 47.94 17.25 8.10 18.20 22.10 20.59 83.22 17.36 45.09 69.18 93.87 79.43 68.15 77.71 6.04 16.37 69.39 64.13 84.10 14.65 15.89 30.55 5.24 32.34 47.78 44.65 34.84 46.68 92.50 8.48 82.74 64.91 73.72 45.59 12.76 15.38 27.34 10.48 23.30 71.91 27.31 56.14 57.78 29.21 94.83 79.89 67.22 46.83 36.16 67.08 86.06 22.78 42.66 31.35 16.44 53.01 9.63 44.65 94.51 36.77 78.97 49.63 5.80 45.68 36.81 96.62 89.55 36.14 37.22 6.31 92.39 51.00 64.31 86.57 19.57 20.22 13.41 89.66 32.50 47.69 15.66 16.98 19.09 22.65 -19.86 76.35 66.99 15.75 38.61 89.61 90.85 35.93 94.05 27.13 92.24 64.02 7.69 88.33 62.50 10.54 31.79 86.07 64.00 2.26 85.40 78.54 42.40 49.83 24.49 73.65 25.84 20.25 21.64 27.01 77.44 9.30 82.85 37.21 70.05 69.67 70.47 7.41 50.35 53.81 72.29 83.72 14.43 61.32 71.98 29.45 43.03 86.77 15.16 50.32 88.18 38.13 3.30 34.13 12.27 95.26 73.33 79.42 14.01 47.07 8.42 28.73 19.15 59.27 90.04 47.23 50.69 97.70 6.80 81.67 74.10 85.13 71.01 98.95 72.25 13.38 7.99 43.42 97.43 1.37 49.72 97.34 46.74 31.23 84.14 16.94 42.31 78.52 41.77 50.65 14.46 64.58 81.61 48.19 34.65 55.00 15.58 64.70 49.58 25.89 -46.06 93.06 82.75 6.41 47.89 84.11 4.62 48.84 8.63 67.76 38.67 33.49 7.76 66.58 75.13 71.71 50.72 52.12 96.17 87.89 55.10 28.64 27.03 17.39 55.96 92.19 17.72 73.77 86.42 4.89 91.19 54.37 86.24 99.41 98.47 2.00 5.62 95.37 94.18 56.84 20.59 25.71 91.30 97.07 33.00 84.54 85.35 38.94 3.64 1.07 70.60 54.61 74.35 48.91 65.84 24.45 65.41 1.16 27.85 50.19 18.80 21.94 28.82 84.25 46.00 91.69 36.51 8.61 23.22 20.19 62.53 90.47 37.55 56.53 44.28 72.55 14.35 16.89 83.06 84.40 24.86 77.12 43.19 82.16 42.82 11.78 72.30 52.97 96.63 83.65 30.94 52.38 62.95 30.72 88.35 51.23 5.92 50.14 26.38 45.81 -62.87 72.35 61.80 8.72 95.38 12.83 6.72 24.23 20.55 10.93 9.27 55.61 71.00 42.81 16.69 57.94 50.76 2.66 95.43 26.12 75.88 75.67 24.33 89.81 74.54 26.73 97.61 19.03 49.01 46.08 93.94 26.42 41.44 10.07 3.17 55.82 57.98 59.12 3.97 4.17 91.97 92.53 17.75 91.37 50.56 56.68 82.83 86.16 33.82 9.97 58.68 78.36 33.31 7.28 27.59 5.53 33.00 75.38 18.96 31.69 21.66 52.80 75.18 48.09 6.56 59.37 84.66 69.26 82.30 21.56 96.31 31.75 40.33 66.78 30.46 12.72 83.03 82.27 2.04 53.11 60.05 56.83 47.42 34.32 72.73 73.06 99.60 90.26 56.62 21.05 14.04 69.91 19.80 98.46 74.01 95.72 9.42 15.12 34.17 85.40 -19.21 28.68 2.54 59.01 46.30 97.00 84.96 21.64 42.96 96.69 89.20 91.65 74.55 56.61 67.80 75.05 18.02 76.85 59.56 81.84 14.73 83.78 50.18 35.90 74.50 26.23 2.47 91.50 41.99 81.80 89.27 27.25 17.86 4.82 16.73 25.23 80.54 70.45 82.75 80.34 73.57 62.10 67.83 43.59 84.90 72.60 19.00 85.89 93.55 67.00 63.51 58.65 45.05 63.62 72.78 47.78 97.73 81.71 98.34 90.32 77.67 66.77 77.13 64.77 24.96 84.92 97.14 77.62 4.83 4.38 86.36 66.29 21.88 82.07 78.99 46.98 41.48 4.12 37.15 19.66 22.29 61.48 62.03 98.17 53.56 46.93 49.36 46.01 46.01 89.21 51.62 88.06 79.07 17.31 80.79 69.47 13.52 59.18 90.28 97.53 -19.44 57.12 92.82 85.90 92.87 81.89 65.00 92.41 86.05 56.59 5.84 36.70 80.36 25.01 92.22 67.75 95.22 67.69 64.59 27.03 26.72 45.73 18.03 22.74 68.57 15.78 31.34 10.75 63.42 97.96 68.12 15.85 1.70 94.75 68.13 10.00 80.22 73.38 33.24 74.42 16.94 4.11 84.78 83.86 6.46 87.11 28.41 69.10 30.55 13.34 4.35 44.64 18.68 1.85 74.12 26.53 76.70 86.33 2.72 52.69 22.46 79.93 93.30 70.02 16.33 29.73 70.20 15.66 55.51 40.02 4.45 50.85 52.39 62.77 64.35 83.87 98.17 49.00 35.28 41.82 23.47 41.67 23.91 96.87 46.56 53.57 29.99 20.44 2.85 39.53 42.71 67.65 75.42 76.29 20.29 58.07 17.06 19.53 52.99 63.82 -33.47 94.99 21.39 38.25 97.00 56.47 98.02 17.90 60.99 5.80 3.63 41.30 37.43 91.23 25.43 32.80 19.38 2.50 30.87 82.08 73.49 13.93 51.18 41.87 58.23 82.80 31.44 49.56 47.52 12.01 50.23 65.49 47.62 62.66 43.38 86.69 72.63 39.19 70.76 0.77 13.09 96.53 40.74 16.19 55.90 48.57 1.74 27.79 25.46 81.70 43.66 76.94 68.85 19.52 73.39 53.02 81.98 78.09 25.20 5.97 79.76 57.54 35.26 91.84 46.34 94.68 65.67 65.28 36.71 25.62 57.74 34.43 51.95 80.87 63.03 0.10 18.33 57.45 68.48 44.86 91.71 21.48 58.98 86.97 83.30 85.48 44.06 16.12 22.79 74.37 13.25 19.88 39.68 65.14 91.75 22.66 13.56 86.09 80.49 68.04 -64.76 6.13 24.64 59.62 22.26 66.23 83.39 59.19 98.10 80.60 41.36 48.90 70.39 8.49 53.58 59.97 12.88 77.06 43.04 45.24 94.58 38.87 0.95 2.35 12.48 39.87 54.93 91.41 51.44 73.00 92.83 64.15 77.10 91.31 25.39 53.63 28.78 67.61 18.85 19.20 45.56 65.42 28.63 83.45 0.63 20.62 50.01 88.71 74.01 80.88 10.13 58.32 3.15 33.78 81.22 80.23 52.28 48.48 81.98 83.02 50.49 42.54 36.51 24.68 36.42 70.33 13.80 79.08 73.70 91.49 71.81 65.17 31.82 5.23 18.56 6.70 27.94 38.02 79.86 92.38 39.09 47.92 9.92 89.55 89.64 39.85 50.15 84.91 7.84 46.49 5.56 98.03 26.59 77.35 19.21 32.71 46.74 45.31 68.51 54.09 -96.35 2.61 64.38 38.37 8.76 88.44 51.60 25.74 38.83 89.59 85.90 4.88 91.41 17.95 86.72 13.05 47.88 16.98 95.36 99.71 60.37 6.31 64.52 49.20 14.68 65.49 14.60 79.39 60.72 10.43 38.60 50.74 59.48 52.15 13.54 69.77 27.81 98.07 82.06 3.97 59.88 55.30 77.21 91.55 67.86 79.26 34.11 45.80 84.82 40.93 42.47 73.60 96.22 54.37 64.86 64.39 53.48 45.66 23.13 63.18 40.79 63.15 15.47 50.75 9.03 32.69 87.29 41.17 44.37 65.17 72.87 75.31 45.96 95.51 49.55 97.03 78.63 74.26 21.21 62.53 54.81 33.83 46.76 58.37 72.52 86.76 82.06 86.08 27.00 82.26 70.81 5.81 91.30 79.66 68.95 20.73 97.46 51.57 92.80 9.91 -81.19 20.83 20.23 43.00 71.39 44.01 73.49 47.50 59.32 67.65 52.91 97.69 53.50 8.07 17.24 99.24 7.51 97.28 44.40 75.67 25.65 11.34 12.35 6.74 7.81 9.50 62.08 98.50 63.03 22.10 43.80 0.76 64.78 17.14 70.81 6.85 84.38 42.38 47.92 65.56 39.83 15.80 26.11 82.89 3.21 20.91 96.17 69.28 43.13 73.34 31.28 30.47 34.25 61.05 37.73 67.94 99.58 5.58 21.66 7.47 75.09 73.70 49.62 28.10 83.87 40.94 96.53 31.50 43.62 20.55 40.09 11.25 21.96 85.68 69.12 2.46 25.44 85.08 57.29 62.03 30.86 51.57 49.97 5.11 17.27 56.57 16.86 49.46 74.67 64.22 56.03 95.57 31.98 0.00 54.03 23.18 82.03 21.81 16.39 98.46 -8.92 75.43 91.55 38.69 54.94 92.36 66.87 76.13 40.05 87.05 3.89 91.77 29.07 60.90 44.21 54.83 13.06 69.82 51.49 29.48 64.88 92.47 42.10 54.17 13.69 73.75 13.00 39.45 11.38 2.76 94.55 40.88 17.68 28.04 36.77 85.85 69.09 68.76 10.69 41.39 35.68 12.50 67.70 39.09 27.32 44.04 41.10 62.71 7.64 52.60 75.28 86.86 61.17 38.61 38.49 79.66 49.31 43.09 60.10 30.43 79.40 73.14 78.97 32.54 8.19 24.20 47.89 42.63 5.63 79.60 66.81 21.04 8.46 51.77 65.97 15.71 11.06 25.43 40.96 65.90 37.96 22.63 33.23 6.48 3.57 22.61 2.65 2.69 52.94 9.41 79.78 0.77 22.27 2.65 0.80 85.18 58.62 40.56 43.47 57.21 -36.31 88.09 98.28 21.35 98.91 18.92 34.23 95.04 42.37 97.99 8.18 98.09 77.73 28.49 34.19 4.37 97.51 4.57 81.75 34.77 26.64 22.58 62.10 8.90 29.13 16.07 28.08 95.25 6.69 97.58 61.11 12.79 28.79 66.72 20.28 52.53 61.16 9.80 94.34 13.86 99.71 30.50 4.85 51.31 43.45 48.45 2.47 83.59 42.56 15.39 10.38 65.46 10.81 11.70 99.12 0.77 5.88 55.48 90.03 88.86 1.67 4.04 42.29 50.25 32.03 86.10 77.00 53.52 56.41 15.56 24.06 58.91 46.77 94.08 32.35 6.40 5.24 79.58 89.01 90.87 57.01 78.47 2.19 86.95 32.67 97.25 22.31 19.84 10.47 68.11 77.56 65.94 68.00 77.49 42.24 37.16 13.79 3.32 50.08 2.37 -68.12 64.53 52.32 28.89 51.09 4.70 43.50 80.60 28.15 31.44 72.17 10.69 14.51 5.61 70.40 81.86 90.80 33.73 1.54 17.72 40.18 93.86 31.96 90.97 45.77 58.93 41.11 98.12 43.33 79.49 95.00 56.88 47.50 19.59 10.52 24.29 8.88 94.11 41.86 12.15 13.47 3.40 20.24 63.78 77.05 87.32 5.78 20.01 61.80 70.19 67.17 90.42 33.01 63.15 28.60 71.92 29.81 22.62 56.28 83.46 18.99 36.94 30.82 75.40 6.33 59.30 40.07 58.94 53.63 16.00 61.54 11.61 39.11 62.33 80.71 58.84 75.03 14.76 5.99 58.99 9.59 45.12 56.63 69.68 79.68 42.08 60.53 27.17 11.15 32.52 7.36 16.67 85.97 75.31 91.55 73.46 86.14 42.70 67.75 97.52 -63.33 97.78 30.23 55.73 59.84 33.51 88.15 93.41 13.85 82.42 61.89 99.60 40.97 57.06 94.37 69.37 34.87 50.27 58.76 19.87 47.17 78.89 3.05 20.43 86.38 42.12 61.19 80.38 2.57 17.65 54.29 68.18 22.15 1.06 13.54 77.43 83.90 85.40 82.00 82.39 16.62 82.45 33.85 9.39 67.99 59.47 63.55 11.40 80.98 59.04 5.67 83.46 35.00 75.29 50.69 48.20 37.89 90.43 77.41 62.70 84.30 83.18 41.24 60.60 23.94 71.76 81.87 87.92 14.59 6.92 52.66 41.82 63.76 21.40 96.36 5.21 44.48 60.53 81.17 37.16 37.02 83.80 88.66 3.39 56.47 47.82 93.95 85.53 77.97 0.56 4.98 55.14 78.89 9.71 23.05 4.34 29.51 58.01 6.00 66.62 -52.66 48.57 96.94 6.94 87.83 53.48 53.12 44.54 28.17 65.64 50.34 43.17 92.39 24.04 80.63 12.42 0.45 69.26 19.32 97.07 58.85 13.90 40.87 41.76 97.68 48.97 20.57 89.45 64.60 31.53 70.67 79.45 65.25 18.30 22.75 69.58 95.27 14.92 73.40 6.12 22.14 89.31 68.19 65.01 26.85 90.28 47.09 59.45 19.81 16.70 89.15 69.46 91.81 49.88 57.34 30.13 81.58 4.44 19.83 79.67 25.62 18.94 32.63 79.84 23.36 28.76 96.13 78.51 94.65 32.52 46.37 88.49 22.26 55.71 55.99 90.65 71.97 16.42 31.94 41.27 84.82 73.70 95.84 89.39 80.30 75.10 34.81 42.31 77.45 3.47 88.13 87.52 31.61 57.23 49.83 51.47 60.21 87.48 12.31 2.47 -74.10 65.64 9.62 74.76 85.68 9.38 45.90 37.05 37.91 11.60 13.88 74.05 86.31 18.79 43.04 22.85 32.73 3.35 86.26 49.38 10.93 48.12 93.28 97.77 10.84 31.26 84.79 71.63 88.17 97.93 81.80 83.65 26.50 86.52 61.20 95.34 96.61 4.85 31.12 64.54 59.29 67.86 80.33 65.28 99.81 85.94 17.13 43.59 78.84 78.96 72.04 26.68 48.55 29.23 8.72 45.42 47.31 96.98 85.26 15.95 48.57 1.41 44.14 85.61 55.61 63.30 22.98 70.40 30.76 30.77 64.72 43.20 54.95 11.87 59.73 38.38 89.66 12.86 13.21 91.52 42.10 96.08 73.54 51.48 79.78 89.94 74.74 44.01 72.73 9.32 54.45 85.38 43.54 51.87 63.08 69.02 91.22 1.20 22.37 44.72 -95.96 72.37 88.10 55.26 92.28 35.28 57.25 98.68 23.57 71.50 12.51 98.06 55.75 40.00 68.23 99.57 63.94 70.62 70.33 16.93 26.85 25.53 43.07 91.12 9.82 48.60 23.19 26.95 52.92 97.05 66.72 5.50 36.05 50.57 18.71 62.20 20.80 32.26 8.34 23.42 73.53 60.89 37.53 87.88 69.92 11.94 37.58 37.97 63.88 91.44 75.26 48.59 29.28 1.61 29.39 81.21 53.12 4.92 4.46 92.19 11.59 26.57 97.12 45.86 12.65 43.85 9.70 27.72 18.33 13.62 8.87 71.98 99.81 77.13 73.22 6.91 87.45 97.85 19.69 4.81 0.89 53.69 5.33 69.96 58.52 34.61 42.43 1.56 90.54 68.56 15.95 6.61 94.33 5.41 23.22 23.82 99.21 27.21 9.27 76.42 -29.24 63.16 12.05 24.55 54.09 90.54 50.34 80.63 13.09 61.82 52.13 43.69 14.26 8.36 54.25 78.32 48.80 6.44 71.15 99.36 19.03 21.61 91.59 70.54 3.38 3.79 95.51 7.46 21.91 99.31 19.55 43.52 61.27 78.00 32.15 95.67 95.01 27.41 47.60 86.24 85.50 97.74 93.87 81.71 51.27 35.53 77.44 83.01 37.73 69.28 18.34 5.48 43.98 37.75 43.73 43.79 16.52 35.65 80.65 40.61 52.75 96.54 31.09 39.57 73.15 17.00 35.42 8.49 74.63 40.74 8.98 20.03 76.65 73.19 45.49 13.79 63.71 0.05 26.78 19.52 22.34 27.59 74.14 9.32 6.64 97.00 81.79 11.71 0.38 10.34 62.88 45.04 71.28 87.73 84.36 1.59 82.24 4.63 90.53 7.95 -31.06 72.45 25.42 30.36 54.58 47.62 89.77 53.28 50.73 60.05 37.21 73.04 70.62 50.50 28.97 30.73 74.82 87.65 0.41 87.69 5.90 43.37 11.55 39.77 9.24 66.56 60.90 44.98 88.67 50.51 66.01 19.19 63.29 74.46 88.55 29.60 50.06 97.95 63.22 81.49 10.97 23.00 23.96 36.44 60.32 24.89 24.86 24.31 11.30 89.23 91.55 33.60 65.07 71.14 87.70 89.41 0.04 18.87 22.43 70.80 55.22 9.30 68.86 42.27 32.50 83.37 50.49 35.34 60.18 87.46 96.25 29.46 1.71 31.62 64.94 14.65 20.25 68.80 85.14 33.69 83.42 26.09 19.18 19.06 68.81 65.18 8.09 5.52 26.13 59.40 75.45 2.35 0.12 59.29 52.13 95.47 92.83 84.50 41.76 19.38 -43.01 97.65 44.62 15.36 53.96 59.42 88.81 49.16 88.32 30.49 37.55 88.36 0.15 9.10 49.99 47.00 40.99 48.83 15.26 75.86 75.04 87.96 70.31 18.46 31.88 46.27 61.36 1.87 41.18 13.75 7.32 42.49 65.67 73.84 82.69 5.73 97.19 57.88 52.86 40.30 71.73 18.99 19.88 40.71 36.67 9.71 35.95 14.09 82.30 59.84 35.86 30.87 80.15 9.33 42.58 35.56 27.55 14.55 0.72 53.08 12.57 34.58 82.87 48.07 41.93 73.47 95.25 32.68 16.45 58.38 44.00 82.02 25.16 60.37 70.42 90.69 31.77 44.07 49.84 45.17 53.53 52.84 50.80 22.96 97.63 96.42 69.28 84.67 78.77 65.25 98.60 39.56 7.31 10.36 21.21 69.92 12.91 35.91 11.32 55.16 -1.44 17.54 58.80 36.29 19.63 99.12 66.23 85.35 41.37 8.02 86.67 46.71 68.87 98.82 88.69 69.71 92.22 54.53 92.17 12.46 92.25 6.47 75.40 14.70 23.55 74.86 40.61 66.88 40.09 34.98 68.79 44.90 15.81 61.09 73.91 79.84 83.67 88.52 11.99 78.90 18.32 0.16 63.09 84.38 26.45 94.52 25.36 53.18 86.41 29.69 7.11 52.09 16.66 33.37 95.03 30.99 6.40 81.39 64.24 75.95 31.96 3.44 32.22 23.55 43.39 5.27 66.49 3.51 74.21 33.38 57.66 35.25 56.92 45.48 7.50 26.86 4.85 57.05 54.32 54.17 4.11 77.39 62.50 74.38 18.57 72.37 26.79 4.07 70.32 76.11 35.13 10.48 50.16 54.73 25.86 38.93 25.51 71.78 59.50 21.11 -14.40 63.00 74.62 16.37 9.58 70.65 4.41 17.67 79.82 41.65 60.27 91.59 96.39 69.83 52.94 24.93 10.52 35.02 50.99 66.03 31.25 21.17 58.55 18.05 61.27 49.53 87.96 22.35 62.94 20.95 96.43 15.39 36.31 41.54 88.86 49.81 72.65 24.55 95.91 69.00 86.51 3.45 37.31 74.67 92.22 29.49 32.87 38.46 44.59 10.81 43.50 64.33 21.70 27.45 50.26 36.34 80.53 22.24 64.61 28.38 93.57 51.96 93.15 28.82 83.48 98.11 19.02 57.91 11.48 57.18 30.48 11.24 46.15 36.37 21.77 32.18 4.42 12.28 66.79 66.63 56.93 84.61 76.72 35.76 28.87 71.49 12.99 91.53 17.23 18.79 60.99 71.63 87.55 78.09 38.07 11.71 95.93 45.43 26.32 81.53 -54.87 59.84 94.50 52.45 26.20 68.57 56.14 86.49 64.98 42.58 53.98 71.84 71.56 9.26 9.36 3.17 35.54 43.86 22.91 31.40 19.75 39.67 89.97 62.22 46.72 66.96 99.60 84.58 87.87 64.80 35.34 49.81 6.98 43.81 82.41 22.86 70.83 91.63 9.13 69.77 21.48 22.61 8.15 48.91 76.13 4.37 69.60 65.94 21.59 10.12 66.83 13.37 81.55 61.06 57.54 7.53 13.07 70.48 18.26 20.64 51.84 93.20 72.65 33.21 26.40 45.00 66.57 11.13 6.76 29.50 8.69 3.88 12.10 24.35 28.36 45.33 3.32 64.58 87.92 49.95 62.80 64.23 44.72 49.63 45.78 90.25 55.75 49.21 51.73 48.79 89.58 87.12 34.78 84.01 14.10 45.88 51.12 71.91 20.70 21.32 -19.77 77.50 5.07 21.72 50.64 30.74 20.18 25.19 41.95 79.46 54.80 74.45 59.61 17.67 23.45 2.48 73.41 72.18 93.94 53.48 43.09 99.91 37.86 90.04 23.17 37.40 95.92 90.94 6.38 5.13 75.34 93.30 42.50 25.33 23.25 33.78 76.12 39.89 39.66 0.54 42.08 7.75 64.89 72.35 14.23 67.54 2.06 86.12 60.80 95.21 82.49 33.63 77.84 30.72 8.19 40.99 47.39 29.25 19.38 47.68 56.70 37.74 4.55 72.70 22.32 69.42 67.66 31.86 4.54 82.95 86.30 27.62 38.62 97.48 38.86 69.43 96.19 52.78 77.00 3.58 48.53 72.60 93.55 1.46 91.54 99.24 35.55 27.94 58.64 44.68 45.24 39.86 37.61 83.19 63.31 10.03 44.04 14.41 2.56 78.00 -2.51 97.53 99.21 13.91 31.58 22.41 47.75 57.99 64.68 82.30 22.47 59.92 97.35 57.02 92.88 23.70 74.35 22.17 2.99 66.68 47.74 71.30 27.69 70.06 49.71 84.76 82.42 97.90 28.21 10.06 95.37 93.56 70.78 0.10 10.39 89.60 82.95 71.06 66.05 96.59 84.35 68.13 44.13 87.81 79.07 60.46 23.84 63.26 98.77 35.32 29.34 91.04 36.93 76.70 80.59 30.94 94.96 41.61 66.42 77.59 7.95 94.15 48.06 34.63 92.79 21.83 66.27 38.27 86.12 10.65 91.32 74.20 41.77 97.77 71.81 95.54 21.34 38.37 3.31 93.95 1.85 56.64 31.74 10.26 42.41 14.28 25.02 46.19 93.81 29.72 9.29 25.58 2.19 60.52 68.00 34.84 31.44 52.91 92.21 50.68 -6.06 75.98 91.64 6.17 41.22 63.92 90.19 23.99 72.52 45.06 17.08 3.83 96.41 56.35 9.75 76.43 45.70 6.82 88.43 2.07 62.43 16.38 21.25 48.67 58.58 94.46 54.33 7.51 93.59 25.38 54.24 71.08 30.65 59.36 60.63 27.73 98.68 21.83 92.83 31.63 57.36 91.55 20.44 39.98 87.61 13.94 36.42 71.21 17.14 25.84 1.49 77.50 23.00 30.54 85.83 48.92 56.04 35.13 86.27 97.44 35.35 19.02 15.39 15.59 49.16 57.07 12.01 50.22 88.06 67.73 61.93 88.06 35.02 18.34 40.05 35.03 75.39 47.86 55.54 0.29 69.29 94.71 50.20 59.36 55.13 55.09 72.21 39.40 84.23 21.05 30.70 58.32 93.72 4.35 59.61 80.55 2.76 66.55 47.36 20.93 -44.49 35.48 57.03 22.44 8.49 93.32 99.20 73.45 90.98 30.18 2.33 99.34 16.65 94.47 5.25 0.67 0.25 78.51 24.82 93.51 69.28 5.66 46.27 47.73 90.68 15.14 61.58 25.88 95.91 59.32 80.92 40.90 20.20 44.35 99.45 89.56 6.73 98.13 72.51 52.72 60.37 57.45 20.70 0.47 85.07 82.68 13.75 45.11 11.53 10.70 36.60 51.47 87.61 43.73 15.74 68.09 97.52 23.80 59.69 82.90 70.84 97.21 60.78 84.18 24.17 85.65 45.86 77.20 19.94 79.08 60.23 90.31 16.71 42.44 58.33 88.52 38.18 90.07 75.41 63.40 72.67 17.88 73.03 92.15 0.43 77.97 33.83 41.84 52.50 7.15 77.62 77.94 40.03 18.12 59.62 88.29 7.62 99.63 72.12 74.36 -85.72 70.12 68.28 80.94 2.66 16.41 40.22 35.64 94.53 16.52 16.02 38.27 75.08 84.55 30.14 94.11 60.09 79.18 29.72 40.63 79.21 25.59 77.23 95.24 54.29 37.06 28.75 1.98 28.97 30.66 83.70 49.72 39.25 83.90 76.87 47.21 64.17 40.10 57.20 11.90 74.10 84.20 79.21 29.89 64.47 75.12 22.33 73.67 69.14 3.29 55.91 4.28 1.88 33.30 8.37 84.28 79.32 74.28 20.61 65.32 62.65 64.94 8.84 75.73 66.21 75.47 29.87 72.68 15.77 72.04 12.75 2.87 52.86 94.52 66.94 76.51 89.72 22.56 28.36 28.28 90.45 27.38 83.95 66.71 46.77 18.31 23.57 28.02 56.24 67.94 32.08 73.87 69.23 80.44 64.81 94.11 45.49 3.41 73.18 79.71 -21.41 79.27 89.36 36.72 40.72 51.44 38.97 16.21 49.07 77.87 96.96 55.07 24.36 42.90 14.96 18.46 25.55 84.22 72.26 69.94 72.94 8.60 95.48 74.44 30.80 84.21 51.21 63.30 62.87 26.81 6.81 47.64 89.96 39.76 27.88 68.92 86.58 1.50 47.26 10.85 46.79 7.69 59.72 4.75 80.63 19.53 72.47 37.45 92.21 16.84 92.57 17.08 51.07 96.81 15.86 34.30 12.48 32.66 73.49 42.04 6.39 52.51 11.21 87.00 66.57 50.88 92.13 98.15 22.35 14.28 96.25 2.35 62.10 66.49 97.44 17.89 26.06 56.69 79.15 71.81 97.82 22.05 8.36 94.08 86.75 15.30 36.69 70.39 5.08 34.67 39.02 19.21 99.68 19.99 58.55 92.46 41.34 65.24 29.81 27.19 -45.71 67.62 55.90 6.26 68.20 5.09 52.02 34.25 52.75 84.28 22.36 12.32 8.66 49.60 60.77 6.69 45.72 22.11 0.24 91.86 63.39 27.01 85.45 23.55 55.62 30.81 60.90 45.19 87.27 12.52 72.40 3.64 75.81 3.29 42.99 0.80 59.15 38.06 15.33 50.20 76.90 8.16 10.38 10.67 73.61 41.16 6.26 61.80 9.70 76.96 49.91 54.15 6.00 16.74 39.33 53.03 70.38 81.79 56.17 23.88 57.56 42.25 6.94 2.97 63.40 9.97 71.99 38.92 8.86 90.42 98.65 97.64 28.11 36.53 33.37 16.99 8.23 39.84 31.12 71.87 75.81 11.64 63.11 4.42 24.60 91.19 26.27 33.06 92.22 79.74 49.92 49.39 11.19 76.53 18.90 45.90 45.12 32.55 19.54 96.13 -86.05 34.25 68.53 43.42 68.01 36.44 29.89 81.83 85.00 53.22 73.29 59.37 25.89 2.03 70.85 38.42 79.70 50.83 2.26 50.83 85.73 91.59 26.82 33.15 38.67 59.82 17.27 74.70 0.65 15.62 82.57 67.12 36.72 33.09 95.03 70.29 97.97 77.98 24.13 25.73 38.66 31.09 82.32 99.13 92.81 2.45 10.90 68.79 37.29 42.61 7.44 2.46 53.57 31.50 21.72 62.43 38.26 86.75 13.77 34.85 43.47 53.69 58.30 70.98 81.32 61.77 48.76 40.40 90.90 57.39 32.97 48.22 4.77 53.98 51.74 77.63 99.26 71.10 20.85 19.83 52.41 62.46 63.39 13.67 89.67 91.34 40.39 31.14 60.79 25.30 3.34 83.78 21.75 92.45 40.38 17.69 61.93 96.42 28.01 26.06 -6.58 79.42 78.83 66.43 7.77 11.55 38.91 44.65 28.33 10.58 10.82 79.06 36.30 9.43 51.06 79.76 34.88 49.33 31.15 45.73 10.58 89.35 20.76 77.60 78.40 67.14 69.86 85.37 50.32 80.04 2.81 76.40 70.52 60.74 36.28 48.46 12.10 66.70 27.53 48.21 26.63 78.47 86.12 46.51 97.23 92.51 56.90 97.35 66.32 3.11 53.11 14.36 53.08 39.45 30.85 27.03 24.94 59.96 12.71 38.59 30.44 15.26 41.06 86.45 30.33 9.47 91.95 99.65 54.46 65.21 69.48 52.02 34.63 35.15 83.42 80.58 86.55 70.00 99.33 38.30 74.02 4.59 6.08 60.39 50.69 63.53 21.02 86.61 97.76 9.08 73.45 30.83 93.68 22.71 95.23 85.41 44.79 83.22 95.36 45.49 -74.55 35.48 46.53 39.14 31.64 92.30 48.70 65.42 94.37 8.70 33.20 45.56 5.19 95.56 35.27 20.54 2.91 95.88 38.84 74.95 14.88 68.17 95.57 59.03 17.48 31.81 0.07 40.07 59.34 45.08 49.30 18.47 94.61 45.36 89.62 37.22 65.78 1.90 0.88 67.27 59.37 4.21 50.20 96.15 33.88 62.41 81.22 73.49 22.51 50.41 0.68 97.49 85.96 3.75 62.74 4.05 97.16 25.02 1.11 0.52 60.54 48.78 93.09 97.92 30.67 32.88 64.40 99.43 4.33 83.47 49.40 4.78 1.96 54.01 72.76 4.69 4.22 83.97 6.83 32.93 98.75 44.70 99.88 86.49 17.69 70.01 85.74 96.96 13.41 61.80 32.96 91.70 65.93 35.68 39.33 63.32 74.33 77.22 32.61 63.95 -15.40 8.35 1.47 72.76 13.42 51.75 7.06 46.46 88.02 51.77 69.28 44.51 88.28 79.27 61.26 94.34 54.45 24.18 45.37 94.06 3.51 18.52 30.37 92.63 74.93 23.32 87.36 46.93 9.58 84.02 67.01 6.07 24.12 38.88 34.77 63.03 39.62 5.56 22.35 34.57 14.58 99.88 72.74 0.58 78.72 1.38 70.82 30.89 77.49 48.52 17.12 35.73 69.95 19.82 4.73 19.84 15.65 22.91 88.93 19.36 13.88 59.99 61.20 8.82 29.20 19.80 66.72 42.75 89.35 53.44 45.45 51.53 7.33 90.87 83.96 26.90 48.40 89.25 14.91 44.94 0.35 63.18 43.63 14.63 30.38 6.41 94.64 61.98 67.87 9.67 34.40 63.04 18.84 72.26 13.93 79.16 95.55 54.56 51.38 14.85 -31.78 60.59 51.06 22.87 71.86 66.65 30.78 21.37 60.01 85.98 72.35 69.36 63.11 99.31 0.24 54.28 91.10 51.32 81.15 42.58 91.57 28.28 83.63 39.40 51.19 42.15 54.55 93.38 29.64 87.96 46.37 63.46 53.73 80.42 24.08 4.54 42.01 90.20 37.72 30.63 95.02 10.72 0.26 49.54 57.27 89.14 36.81 50.66 73.29 72.11 28.80 34.00 46.60 48.37 87.95 74.14 37.08 58.21 82.52 30.33 5.68 73.64 66.42 65.50 94.72 33.10 0.80 41.67 96.16 49.18 79.97 70.36 9.55 57.78 0.70 91.80 55.18 71.73 15.85 94.37 67.71 11.42 51.78 28.35 11.26 23.41 60.18 82.52 2.33 45.51 72.84 22.34 6.52 36.13 14.55 80.69 16.08 9.73 43.52 35.18 -14.89 25.44 14.46 42.91 75.49 46.98 38.61 57.01 38.78 18.11 76.62 36.78 68.12 30.29 25.87 99.90 40.82 60.52 95.42 2.21 19.17 36.53 10.01 8.86 87.58 47.00 93.28 91.18 68.07 98.32 93.21 62.73 8.10 24.11 53.27 79.21 63.87 31.28 10.09 23.21 84.54 45.03 65.32 3.51 54.46 24.30 28.77 29.57 32.70 63.92 46.41 61.90 31.07 61.70 56.73 46.77 11.64 15.67 30.91 71.47 90.98 2.49 79.27 50.89 78.26 80.66 79.14 30.47 91.34 65.87 3.27 73.83 33.07 42.73 31.74 47.96 31.87 72.61 46.54 48.00 25.13 73.38 77.77 2.33 5.60 27.95 1.84 99.13 12.81 80.02 28.04 42.08 79.05 76.98 12.80 32.95 97.47 73.71 30.77 29.48 -14.00 77.32 97.80 95.79 77.67 80.64 46.41 79.99 0.02 92.03 4.89 69.06 37.52 98.06 98.91 97.70 1.33 53.94 22.38 50.59 65.90 49.08 56.13 19.47 72.52 26.74 97.29 25.51 85.19 90.51 43.62 74.93 76.80 57.53 38.70 4.36 39.57 26.07 91.28 10.32 59.85 56.28 13.33 58.36 12.28 8.01 86.48 7.38 12.63 40.81 18.15 43.85 71.36 96.19 4.34 99.35 9.09 79.62 49.55 69.31 44.63 27.35 9.29 22.01 5.64 74.66 54.77 2.47 5.51 51.43 55.68 75.76 40.36 23.22 54.64 10.31 71.16 47.57 23.91 13.61 67.23 15.65 33.10 36.12 80.11 94.05 18.34 17.73 69.03 65.45 41.77 84.14 17.73 29.83 61.07 6.95 54.17 16.49 70.87 35.46 -60.47 47.37 51.19 71.77 58.57 32.50 21.96 17.99 52.29 96.53 25.39 65.50 30.25 30.00 80.87 80.17 74.23 92.83 98.65 29.13 45.56 28.73 44.40 53.88 86.78 98.74 96.42 52.28 22.57 9.77 69.75 66.30 0.44 13.52 13.56 38.23 48.91 21.06 84.52 14.59 3.99 85.32 0.48 63.99 88.82 41.52 74.15 14.99 38.44 72.05 99.85 59.27 91.56 24.77 18.22 80.21 16.54 29.61 8.96 0.22 98.78 45.41 29.78 88.22 76.50 67.17 44.74 89.31 10.76 73.11 18.47 56.94 51.62 14.43 78.19 21.07 35.17 10.18 59.46 78.45 17.62 15.58 11.57 10.85 61.50 94.06 94.76 1.40 81.45 29.72 34.07 9.75 7.80 25.58 38.93 46.10 66.31 67.70 73.45 11.02 -10.01 33.28 85.68 77.75 80.93 5.70 82.78 20.63 0.27 33.70 91.22 18.62 67.57 11.06 94.32 69.26 5.39 79.75 63.00 81.52 82.48 77.68 99.21 83.07 35.94 46.50 59.17 85.11 60.99 77.43 89.26 5.85 93.56 81.55 29.72 34.79 70.90 23.89 96.57 90.53 48.66 49.29 15.14 47.66 53.83 24.83 22.95 25.96 54.42 53.00 88.87 48.20 16.97 70.38 53.14 51.98 21.54 11.26 65.51 3.54 33.02 70.70 49.35 42.99 56.83 57.35 75.29 21.16 74.08 77.86 7.17 81.36 85.47 28.77 94.22 93.80 42.80 27.19 0.40 12.83 19.75 72.25 18.69 47.15 40.09 12.18 73.15 64.12 65.30 20.11 17.24 64.17 95.24 28.44 52.42 80.30 21.26 60.00 55.83 89.18 -5.96 74.39 46.47 25.03 18.69 69.03 23.90 76.49 55.07 54.01 47.57 99.33 61.26 18.16 59.19 8.30 83.74 4.00 49.62 59.57 66.93 12.55 50.56 63.25 68.39 64.52 89.90 43.70 70.98 41.49 81.56 45.83 5.28 1.05 54.39 57.18 5.43 85.04 94.66 25.24 52.27 56.61 54.40 61.38 3.20 33.05 4.14 32.04 38.11 6.13 1.19 30.57 5.08 14.47 78.73 74.00 43.60 61.89 51.20 7.03 64.87 82.33 33.95 60.96 26.16 89.46 19.46 99.40 83.97 34.86 31.34 22.74 14.22 69.42 6.87 2.64 63.31 97.95 63.06 15.39 80.85 88.58 24.62 31.83 28.72 55.01 77.91 21.87 76.40 82.21 78.27 30.57 55.13 73.10 70.04 44.03 30.02 60.71 47.44 93.46 -46.64 71.79 35.01 14.21 94.27 93.67 21.95 18.90 24.36 63.56 48.59 40.35 74.60 81.53 3.51 49.48 75.63 45.07 21.91 53.08 98.02 94.16 26.17 4.81 1.80 73.29 11.62 44.72 19.64 9.60 23.35 42.53 13.62 39.23 51.24 83.41 2.18 86.39 9.07 45.26 29.83 2.92 44.31 53.03 10.65 44.89 3.95 58.20 24.25 14.81 16.90 89.77 70.07 98.47 21.44 78.67 4.10 85.03 78.84 18.92 30.43 55.88 94.15 83.41 45.98 36.09 82.02 37.38 74.50 80.82 18.33 96.24 67.45 53.71 2.09 25.29 49.24 21.66 0.41 27.21 50.76 32.61 66.46 0.06 98.66 51.04 1.75 29.60 49.05 39.12 57.41 45.71 78.32 57.62 20.88 85.95 92.56 20.05 87.36 25.12 -91.78 0.73 38.79 19.17 8.59 25.46 93.90 68.02 76.65 5.90 2.88 73.20 23.17 67.23 70.50 7.43 5.82 46.84 64.32 44.58 4.75 92.87 14.56 21.39 97.99 87.34 53.10 52.94 80.50 97.94 55.69 92.31 35.23 14.88 25.91 41.61 23.64 29.36 1.24 48.36 98.62 82.65 72.36 16.57 88.00 45.39 83.52 38.22 6.22 56.23 18.42 92.97 74.28 61.30 42.49 13.99 94.09 41.40 14.55 74.75 17.78 31.76 56.30 78.77 40.83 37.85 5.72 25.06 37.64 91.27 48.45 60.78 15.19 89.98 56.31 23.33 59.04 88.88 35.38 22.91 56.58 56.62 82.21 55.97 67.98 35.46 64.72 87.02 27.54 83.74 89.20 59.41 61.93 6.54 88.41 73.75 75.28 43.84 15.18 4.86 -19.65 51.37 45.33 48.10 20.20 9.85 99.46 7.40 22.90 88.61 60.34 64.47 49.17 5.69 59.62 92.16 17.19 69.38 82.47 88.76 56.79 20.56 2.72 48.45 88.08 73.26 70.68 37.95 96.91 27.37 16.85 98.59 15.54 32.94 96.14 2.48 84.08 38.67 12.02 84.90 11.97 55.33 73.20 89.91 35.27 28.30 10.57 3.60 57.10 6.23 61.85 48.95 21.83 30.70 9.13 53.21 40.30 47.30 55.04 0.33 61.63 66.66 21.20 85.12 4.22 74.79 98.59 84.04 81.29 90.60 92.96 85.59 0.57 30.28 51.98 27.19 32.22 43.12 95.92 66.02 57.69 33.73 48.24 37.51 73.39 25.12 2.33 11.39 19.70 57.33 53.51 63.70 78.07 7.71 59.74 82.06 67.24 87.78 40.77 21.64 -58.83 50.88 89.10 89.26 35.58 49.85 14.67 12.66 7.49 18.76 19.38 46.80 85.37 85.58 73.83 89.42 21.21 49.58 82.73 50.26 86.97 29.62 0.58 19.59 62.70 25.14 65.61 21.25 35.19 69.24 79.00 51.07 91.03 83.62 56.09 51.12 28.26 32.28 90.31 9.12 93.02 53.65 88.64 27.80 22.51 80.44 26.62 80.82 40.98 5.44 78.19 7.91 48.43 50.95 80.62 80.70 91.08 67.47 88.09 77.24 18.96 48.55 64.94 7.70 11.88 38.06 94.44 71.31 33.86 48.89 46.73 86.82 99.24 17.01 88.55 67.07 81.98 86.13 62.47 18.59 81.62 29.54 70.83 55.45 87.77 80.64 46.93 64.20 5.18 13.67 35.83 11.33 26.55 64.72 43.11 35.22 92.42 35.11 10.81 81.25 -66.18 37.61 68.54 84.64 89.53 81.18 39.38 56.28 50.66 32.39 18.22 64.20 21.02 27.40 25.28 22.55 28.56 37.20 46.99 18.50 18.11 39.95 55.98 28.01 50.86 63.57 7.13 4.15 33.02 83.50 3.84 72.00 83.07 26.54 0.39 56.17 61.69 35.80 91.70 40.77 70.40 11.05 22.19 64.05 64.65 52.04 94.38 49.44 74.09 15.51 31.87 30.77 41.61 7.80 88.14 38.32 59.11 37.07 26.70 38.86 7.78 26.42 76.54 9.91 0.53 38.64 94.23 82.55 70.67 59.04 98.97 36.15 31.40 34.14 45.83 4.06 36.38 8.11 73.90 87.08 96.92 84.74 16.14 84.80 18.93 48.71 14.17 52.73 71.18 79.05 29.61 70.18 39.70 65.04 92.07 37.23 90.96 0.28 46.89 63.74 -38.32 49.19 51.42 32.09 78.80 2.58 80.16 80.24 23.93 36.92 35.22 98.56 14.68 74.85 40.54 5.15 79.72 82.63 48.65 56.00 52.81 33.21 91.48 64.85 96.54 85.94 69.10 62.25 29.65 34.09 23.95 21.07 50.31 26.98 84.44 45.66 74.39 47.03 16.59 91.12 77.36 61.71 66.04 14.29 75.39 71.22 51.88 78.89 31.48 82.63 18.97 45.16 40.49 83.33 54.50 24.85 80.08 88.63 92.70 9.83 30.15 24.00 26.32 10.53 74.11 36.77 27.81 62.82 48.48 30.45 57.84 70.78 94.13 49.60 14.64 13.13 85.39 71.04 58.11 28.63 98.51 87.92 39.27 90.14 67.96 54.96 9.07 2.26 14.02 63.52 30.86 10.40 28.39 33.30 3.40 79.60 72.56 2.60 68.28 63.06 -90.38 18.21 90.02 79.30 60.02 76.04 95.12 76.36 48.93 82.61 49.04 62.03 37.28 21.32 25.28 99.72 84.12 93.28 57.64 19.67 61.41 37.74 1.19 19.27 96.79 66.23 68.18 66.16 42.44 46.17 5.70 10.14 52.42 75.69 26.08 18.78 61.81 78.01 52.80 51.25 8.23 91.55 38.50 29.66 38.81 24.22 2.17 65.15 40.52 15.42 39.28 99.65 38.26 54.70 78.15 10.12 15.03 68.59 31.87 47.93 86.92 94.37 1.58 99.23 78.82 16.99 77.25 70.65 77.84 11.11 61.40 6.37 86.50 13.35 28.07 65.24 3.94 31.71 27.28 26.02 19.38 69.07 78.22 15.84 78.18 75.90 30.13 45.12 81.00 65.40 7.69 77.80 10.39 12.60 59.90 65.23 47.15 63.68 70.59 84.97 -38.90 56.43 18.07 78.10 20.70 26.19 83.97 23.06 76.40 67.24 24.20 79.72 33.62 40.11 55.60 83.72 37.48 36.43 89.77 44.23 87.49 97.84 10.57 73.11 95.35 81.85 96.12 79.90 37.18 69.17 28.13 72.83 29.46 39.86 25.30 84.61 97.11 78.89 58.42 37.78 23.31 21.37 97.40 43.64 55.28 88.49 14.98 62.71 70.14 29.83 0.94 89.76 58.06 35.06 56.12 75.62 69.07 85.55 91.02 61.43 83.38 39.11 21.93 89.40 56.01 16.58 75.98 18.46 89.43 98.86 51.77 49.36 22.31 80.55 22.96 80.16 85.53 85.83 40.70 54.15 52.36 63.74 60.67 32.82 49.69 15.52 16.47 77.27 14.36 60.31 95.26 10.26 79.15 69.36 48.36 51.99 50.97 79.13 62.81 99.77 -38.52 18.52 33.17 91.30 3.19 93.05 54.15 6.29 9.63 26.12 1.92 85.09 87.09 32.09 28.70 10.68 57.16 90.28 96.05 40.25 11.93 59.83 94.77 12.47 50.49 56.80 70.48 15.17 41.69 59.04 78.87 56.04 45.75 67.51 55.32 29.04 40.94 1.84 65.00 25.94 10.82 78.82 27.36 61.87 94.45 45.28 15.39 47.95 96.73 69.31 94.83 24.42 78.42 25.11 3.38 57.87 53.87 26.20 90.40 29.46 21.71 72.30 23.70 55.79 18.03 54.98 33.55 18.28 48.91 70.53 57.36 13.22 37.38 50.27 79.31 19.10 72.97 53.15 62.75 99.00 61.94 87.87 87.13 52.82 12.31 12.57 10.23 98.50 72.58 52.13 59.93 20.89 69.72 66.13 17.29 84.47 89.58 90.69 23.71 89.33 -42.59 41.92 17.64 12.99 47.16 35.06 19.69 20.67 43.05 77.01 32.76 26.03 49.99 86.88 86.03 10.40 99.60 65.52 18.20 90.97 52.57 0.42 53.55 27.55 66.99 74.64 15.35 22.22 45.09 73.28 26.78 34.04 6.81 35.86 54.43 38.53 63.05 24.13 53.37 39.28 28.13 11.11 12.53 81.75 83.34 16.65 10.30 66.80 71.44 23.32 25.20 9.08 17.14 6.57 95.80 98.22 94.71 76.61 77.31 63.65 49.95 99.29 26.63 38.48 28.35 69.22 48.54 73.72 39.01 68.16 64.36 47.89 92.02 32.66 51.18 3.43 94.16 51.44 36.27 10.07 37.78 80.65 75.09 87.48 45.02 55.89 28.38 60.26 43.76 6.99 13.42 34.82 97.25 21.38 96.14 2.20 12.93 34.32 89.16 50.10 -45.76 39.79 4.17 39.66 0.59 16.46 36.98 84.48 67.72 27.95 44.43 84.74 30.95 58.20 86.01 79.73 59.91 64.15 38.27 37.07 29.33 9.98 96.27 6.90 83.34 47.71 33.09 7.05 57.17 80.86 29.28 84.01 38.05 62.80 77.36 93.55 75.67 96.30 60.81 27.93 28.26 78.43 86.55 68.76 7.20 69.40 58.26 82.26 71.21 85.46 18.21 75.80 74.16 75.85 29.58 31.45 89.72 0.92 52.35 9.53 91.30 19.71 32.32 24.49 61.35 50.72 24.37 74.13 60.31 48.15 90.24 65.53 44.77 52.75 33.29 9.98 86.68 88.40 6.75 21.28 68.70 15.83 39.97 16.12 70.01 39.09 53.42 48.40 11.78 55.22 80.40 44.74 79.56 70.36 88.94 3.46 34.57 58.12 20.75 93.80 -44.00 77.12 89.32 61.99 88.53 28.06 97.95 41.62 73.88 8.46 94.76 80.64 1.10 42.96 62.11 73.36 15.95 0.70 93.29 33.52 12.26 71.39 51.27 49.93 12.20 86.18 9.81 13.51 23.34 24.53 65.15 71.94 19.29 43.09 58.20 34.18 35.80 4.13 30.65 9.76 43.94 78.63 47.21 7.04 6.17 10.07 32.54 7.15 87.40 80.63 59.89 48.27 91.79 47.77 97.98 26.33 40.58 78.25 82.16 87.75 95.25 11.91 48.78 93.16 33.83 77.83 6.74 80.91 60.95 51.85 77.80 97.29 90.06 30.10 11.03 90.84 87.44 5.21 99.16 21.86 7.24 33.11 73.14 85.86 65.55 40.39 4.55 61.05 2.87 24.89 94.19 91.87 67.14 91.53 19.85 30.12 61.11 75.04 84.25 23.28 -57.54 66.39 21.09 21.82 44.04 98.16 91.30 59.30 11.17 45.45 54.28 94.39 3.76 1.74 27.08 27.61 27.85 45.15 29.36 2.10 45.01 37.14 79.80 43.75 34.24 35.30 76.96 3.66 68.97 67.36 40.44 43.99 41.31 20.12 31.92 65.34 20.34 58.00 37.54 95.22 48.17 6.26 51.17 80.74 49.00 43.70 63.84 53.92 72.93 32.88 22.03 50.36 20.56 74.58 29.87 75.03 30.57 69.09 67.18 77.36 20.87 27.12 15.40 91.56 74.32 38.92 25.80 3.48 74.50 54.61 61.82 35.75 75.46 25.13 29.82 67.50 37.93 27.24 42.95 40.73 54.85 24.41 11.87 14.27 87.48 61.65 41.39 34.23 67.58 67.63 72.38 55.63 80.57 69.51 96.87 74.90 58.70 23.33 75.17 88.41 -38.68 44.72 77.62 29.18 94.55 6.27 45.51 22.11 73.50 96.71 97.85 97.04 63.76 34.73 90.78 11.24 92.80 22.16 74.95 50.21 86.86 32.20 70.47 57.22 20.37 95.09 49.63 72.52 83.60 52.06 70.50 72.78 88.93 32.90 28.13 33.96 59.36 40.70 52.20 97.30 65.15 86.04 97.31 38.25 84.77 66.51 20.05 50.55 61.45 10.74 47.16 82.00 43.47 11.12 67.37 45.32 57.14 45.77 43.79 59.83 11.86 72.82 43.05 3.65 18.33 20.78 5.44 75.67 71.00 72.08 68.03 8.69 11.59 96.25 65.02 0.96 44.47 82.59 16.04 51.45 65.46 70.83 74.84 68.92 65.78 73.13 12.46 8.77 15.00 40.25 17.94 73.04 96.03 70.06 45.29 42.70 7.27 79.41 17.63 39.67 -64.88 31.48 60.02 83.45 7.02 39.18 72.76 0.66 0.43 96.95 44.77 81.16 36.51 81.41 3.00 18.42 38.31 34.11 13.07 33.98 68.83 20.76 9.73 9.30 67.43 25.53 56.63 8.08 13.57 36.63 81.82 87.47 37.07 49.99 9.95 99.98 39.63 3.21 67.08 68.56 8.95 91.05 7.02 3.41 63.90 48.92 44.82 99.09 68.48 44.44 73.69 77.47 27.10 43.19 21.36 1.05 14.78 45.91 96.87 40.58 76.13 13.25 68.45 37.88 6.12 77.92 34.72 8.84 46.13 31.15 65.88 14.79 1.04 62.17 76.37 70.37 34.74 61.20 81.89 44.75 29.86 29.27 81.22 85.24 69.66 84.16 7.23 53.71 46.85 23.33 72.60 30.36 15.47 37.00 26.37 93.21 18.18 77.28 81.61 47.20 -49.27 97.57 40.29 74.72 47.36 91.39 82.66 47.78 45.88 32.79 86.69 17.39 68.59 33.51 3.86 46.37 64.62 26.73 62.36 97.10 30.95 33.85 32.82 39.70 64.74 77.88 9.90 51.84 24.96 2.11 91.18 35.36 1.63 33.70 9.14 36.71 44.13 92.27 25.66 65.01 47.26 17.23 27.76 23.51 59.86 46.77 67.61 2.72 22.09 3.92 8.23 66.22 84.27 35.70 15.52 52.39 54.39 10.31 56.03 98.60 44.94 90.36 69.66 28.10 76.75 26.98 61.47 54.38 87.30 12.48 27.59 55.65 10.28 15.42 55.07 46.51 66.65 33.92 3.78 49.21 13.73 62.51 78.17 38.66 28.07 70.53 14.60 79.43 17.04 71.17 42.54 22.55 39.95 31.90 75.45 36.89 71.66 49.04 81.76 36.95 -95.03 97.53 85.21 1.00 18.90 87.44 37.26 69.30 41.22 35.09 71.92 85.84 68.75 61.66 16.80 15.88 77.03 20.46 67.23 30.45 22.77 83.25 73.97 97.19 83.61 86.72 49.00 26.30 20.86 70.16 72.98 1.72 83.47 77.56 27.87 73.05 78.12 81.17 37.89 65.30 66.11 72.07 87.17 11.04 63.71 39.91 46.13 1.99 14.53 92.50 30.76 29.63 12.16 1.40 85.72 58.89 12.94 94.67 94.35 87.11 99.85 32.53 74.21 29.76 56.04 32.67 11.94 6.61 48.73 44.27 68.53 33.32 21.46 28.51 21.33 61.83 2.25 5.49 72.97 46.63 94.15 6.14 90.71 68.77 13.70 95.63 33.82 86.96 92.66 71.37 18.29 26.93 77.65 56.67 62.61 52.30 99.56 1.59 46.94 33.37 -81.46 55.69 21.92 98.80 77.93 73.00 52.73 70.95 59.59 31.63 23.75 28.61 75.17 24.10 34.81 34.80 52.47 77.33 35.18 9.06 28.50 8.89 6.98 77.75 79.10 57.52 85.72 71.85 26.89 21.32 83.94 51.65 5.08 74.85 35.62 80.15 88.20 67.44 93.63 29.02 16.04 23.91 98.26 54.18 39.78 11.34 47.66 41.04 91.05 50.70 16.06 23.56 74.61 68.04 68.91 31.08 97.27 99.32 49.48 36.70 18.00 22.94 20.14 89.72 47.98 22.79 99.93 39.02 32.81 17.08 54.36 29.53 73.50 93.69 11.86 29.78 9.25 3.78 5.19 57.68 13.70 80.24 65.48 4.69 41.90 26.95 63.97 2.07 9.89 47.27 51.15 95.25 24.09 89.04 72.07 75.81 32.62 39.58 19.08 54.32 -54.31 6.74 38.49 57.13 29.65 69.90 52.50 68.51 20.55 22.76 93.32 7.51 73.77 60.80 60.65 79.86 27.70 55.55 68.65 41.69 50.55 90.75 58.55 22.61 53.15 67.89 86.62 62.22 62.44 46.14 86.81 75.88 20.49 62.02 65.78 74.38 65.85 56.60 92.82 95.81 42.25 19.48 17.70 77.25 40.86 1.52 95.45 18.02 65.61 86.08 55.32 33.35 59.55 26.63 11.07 10.23 27.41 82.38 16.41 36.74 44.64 45.13 74.45 87.34 48.45 33.58 11.26 7.04 32.03 38.77 67.36 25.22 46.73 58.61 98.39 89.26 75.70 59.00 72.19 86.28 48.53 78.13 10.73 25.81 16.94 14.04 80.61 89.99 56.92 26.58 35.40 69.02 59.05 43.30 31.85 69.80 51.01 54.00 26.12 24.81 -34.94 79.19 59.41 54.44 87.40 20.84 41.44 96.63 12.72 92.45 64.96 2.65 93.81 25.74 48.97 85.97 1.48 86.50 33.35 63.82 1.44 74.05 59.43 86.18 7.44 67.63 75.30 20.30 16.34 33.02 43.26 46.43 82.09 80.12 3.76 17.97 37.58 93.25 78.06 94.05 88.71 37.40 62.99 95.68 25.29 31.63 43.23 19.76 46.40 52.37 98.25 79.90 61.60 56.57 29.80 58.85 54.60 13.89 19.17 89.65 42.40 28.97 21.41 90.93 20.15 21.48 9.20 35.30 47.27 70.41 65.86 97.97 68.42 21.80 74.64 26.35 37.81 79.66 23.90 43.80 12.40 27.28 24.69 49.49 80.91 45.66 87.50 8.67 77.28 55.89 75.71 66.18 24.24 80.25 62.30 86.69 81.92 78.95 27.56 60.05 -5.86 7.16 86.27 10.46 90.58 64.96 18.12 4.49 93.34 70.31 60.45 78.41 80.83 85.38 46.47 11.33 30.84 77.78 84.65 85.60 54.83 73.81 94.68 79.12 53.14 79.42 44.39 33.52 60.73 74.63 86.16 73.74 88.91 50.68 75.44 8.50 91.47 50.66 60.35 53.15 81.59 24.56 87.40 89.83 63.51 45.81 60.53 93.32 63.14 93.10 68.78 57.60 39.10 42.94 69.71 82.73 44.32 0.21 27.67 5.56 73.36 98.76 59.24 34.90 46.82 76.38 28.65 86.95 32.83 15.00 85.56 51.69 39.05 14.51 75.98 18.07 23.93 53.97 49.66 3.01 21.13 90.98 38.78 63.58 44.97 52.85 85.48 98.48 35.04 15.38 63.83 82.00 48.16 64.78 31.92 79.79 79.49 75.58 30.24 28.54 -56.36 77.98 74.23 31.15 49.65 87.39 88.12 54.76 77.33 9.20 16.71 39.61 60.39 53.39 56.46 58.79 74.75 97.19 28.37 72.14 52.50 93.14 31.64 75.80 79.71 98.91 30.56 1.10 32.01 95.81 73.69 70.24 85.41 67.70 3.11 51.84 31.87 43.16 17.82 63.50 91.09 59.25 89.44 47.49 71.38 51.52 42.60 63.62 9.84 32.85 73.70 0.12 90.73 11.40 61.04 4.72 51.81 68.43 98.16 73.75 64.23 61.63 42.02 56.95 92.98 31.81 71.27 71.86 77.79 16.56 58.29 92.72 20.39 4.31 10.77 39.62 83.56 52.90 98.11 45.05 7.61 10.65 35.96 92.95 79.95 69.41 33.56 46.68 97.92 28.17 48.94 78.92 68.56 83.89 49.21 36.58 17.63 98.32 60.97 53.59 -36.17 80.54 59.89 70.99 60.83 26.11 43.43 53.21 43.10 28.72 72.67 78.06 22.58 39.26 34.71 7.68 47.65 67.57 11.94 0.60 52.94 86.75 7.24 23.51 52.18 4.69 43.73 40.83 45.16 3.40 75.41 69.92 45.52 34.94 52.10 77.91 0.77 10.15 68.83 2.28 56.84 18.16 41.74 42.74 60.59 29.47 32.34 74.31 36.06 67.24 77.33 79.39 4.39 33.23 91.62 44.55 78.07 75.25 92.96 20.65 90.60 3.90 8.90 69.89 52.40 21.83 30.18 17.28 48.90 20.67 89.10 51.13 68.99 30.57 23.49 14.41 10.63 93.13 99.53 25.30 78.56 0.79 18.06 85.45 73.42 16.98 43.24 93.94 33.99 68.35 90.30 15.49 21.13 15.89 68.06 48.40 67.51 1.27 75.43 28.62 -41.00 22.16 91.34 15.86 57.52 91.69 11.65 48.13 89.41 56.60 63.05 32.48 61.29 41.22 22.90 68.50 8.70 75.57 57.04 80.84 59.31 24.88 56.07 5.70 57.01 59.89 77.71 29.34 66.64 77.83 88.11 43.35 69.11 61.35 47.00 36.16 62.89 39.89 62.10 54.25 38.07 54.52 6.18 84.35 92.39 74.26 77.19 0.74 6.15 17.56 79.12 24.04 22.37 66.05 75.05 21.07 11.44 0.09 94.53 19.09 36.25 81.04 79.17 42.75 12.72 98.88 38.75 25.14 80.32 2.26 15.14 80.55 78.70 48.86 45.56 62.42 86.32 31.98 74.38 32.03 8.21 27.31 17.33 64.45 47.13 89.43 69.31 69.78 22.74 21.08 98.36 88.95 42.87 6.34 55.27 97.91 88.30 44.56 69.60 12.92 -12.68 48.86 65.20 38.22 80.81 52.50 4.45 47.15 84.28 73.72 95.51 71.04 29.17 10.16 84.46 8.26 6.64 79.98 45.41 59.16 41.82 81.22 88.47 34.73 77.07 31.62 96.97 36.01 26.50 56.42 95.92 39.04 51.72 67.55 18.16 24.77 28.59 48.94 1.26 49.71 25.37 7.11 12.27 4.37 3.81 59.62 1.41 63.64 69.96 70.32 20.67 65.31 8.54 12.29 91.77 85.59 95.71 86.72 57.73 8.47 77.16 18.23 2.01 89.71 29.99 49.55 75.24 4.16 47.79 29.51 43.05 55.52 85.32 65.10 58.45 7.24 57.11 40.74 11.31 46.95 84.48 63.97 68.20 55.11 88.02 95.98 85.37 48.49 55.20 35.29 56.13 70.51 95.15 71.44 84.05 22.21 41.34 72.73 28.62 15.42 -93.96 46.92 58.50 49.47 51.56 55.63 45.22 4.02 87.16 29.93 75.17 70.78 16.25 1.08 93.29 63.88 90.47 22.31 34.82 65.32 33.44 87.51 47.98 19.49 69.84 36.43 33.01 20.13 81.52 2.34 67.44 83.42 27.51 93.37 74.99 3.53 53.80 98.60 50.46 18.37 79.27 51.67 2.73 12.35 7.88 60.99 77.07 38.03 95.26 5.62 94.08 46.35 32.72 93.85 18.94 20.67 43.61 76.40 10.75 13.27 80.33 35.42 87.66 49.76 74.66 69.41 98.01 39.24 48.78 42.00 4.42 53.56 57.82 16.65 42.23 66.43 14.65 32.61 40.62 15.46 93.98 95.65 83.16 35.88 77.97 79.33 6.12 92.27 74.03 43.17 82.74 84.51 81.37 35.23 90.24 81.67 87.92 92.26 74.78 45.85 -26.42 10.30 44.78 60.98 13.93 88.40 62.32 40.77 23.94 7.70 52.82 97.97 31.80 93.53 37.98 94.47 42.04 88.07 71.61 95.27 57.99 8.54 55.43 63.83 36.49 75.30 0.57 68.59 98.63 1.51 43.04 63.66 18.18 33.83 37.60 37.97 69.45 37.21 93.24 56.21 24.85 73.38 32.25 67.02 67.49 35.83 44.96 75.04 70.02 15.20 42.29 3.09 94.92 83.35 2.78 24.64 22.44 14.70 40.77 51.75 37.72 40.04 87.37 84.77 91.25 51.60 14.46 32.87 23.58 8.20 45.64 57.83 97.64 10.35 55.16 31.89 36.52 86.77 67.50 97.40 91.11 16.46 62.20 22.53 90.87 99.05 11.43 60.06 74.73 33.06 50.70 55.93 36.58 66.90 95.79 78.86 31.56 25.15 32.48 72.35 -7.48 38.03 93.70 45.96 4.73 27.96 16.96 81.05 5.94 57.09 34.07 12.54 32.58 54.52 1.18 58.93 8.48 57.14 86.41 82.03 69.40 8.21 28.15 61.36 92.27 51.43 15.28 64.78 50.21 89.68 68.26 40.92 21.98 47.85 0.30 47.82 45.85 30.23 63.40 38.13 11.35 73.53 20.29 71.38 42.73 38.21 10.26 43.47 83.72 19.26 80.75 71.25 41.45 75.16 29.45 42.50 84.46 13.82 60.73 36.53 98.68 65.79 74.50 82.16 47.46 38.76 27.12 53.51 90.01 76.47 94.02 55.12 59.05 52.19 49.12 25.80 56.49 28.34 18.54 99.15 63.51 0.20 5.52 78.61 61.99 75.74 84.36 2.07 77.37 29.35 57.17 95.21 61.16 33.45 4.52 40.47 50.27 64.34 85.31 63.09 -49.88 23.40 17.65 2.30 13.04 88.99 49.40 42.94 52.17 0.80 72.67 25.85 12.13 14.71 9.61 99.12 58.83 16.71 69.41 28.85 38.62 9.91 86.49 95.59 5.30 99.05 7.24 92.23 68.33 94.33 86.31 27.81 14.70 86.90 88.93 18.60 28.22 46.24 56.64 19.77 39.43 61.35 89.68 23.85 39.58 48.30 0.14 18.28 34.67 85.14 94.77 17.82 75.44 38.55 79.39 75.64 78.44 73.85 13.56 71.23 56.29 73.07 34.73 17.90 51.24 82.87 81.81 97.78 3.99 73.52 19.29 89.83 45.05 22.44 55.32 47.03 54.88 62.25 12.12 8.56 74.64 97.31 7.27 9.49 61.16 5.08 47.75 8.22 43.09 94.72 73.14 39.45 14.90 34.16 97.59 59.26 46.22 62.30 91.96 70.07 -74.43 85.46 70.77 10.46 31.57 55.69 53.20 1.90 8.55 47.73 76.19 56.01 87.47 37.50 81.69 67.03 54.65 89.53 80.96 35.64 76.95 98.15 75.92 23.95 60.60 56.73 65.98 3.03 15.19 53.88 74.87 2.18 94.29 19.21 13.06 43.76 4.89 75.06 97.21 28.08 41.94 52.89 57.60 28.29 54.70 97.34 86.57 45.28 3.89 8.47 16.74 96.61 53.27 9.29 33.51 89.14 81.17 49.30 58.29 67.51 20.08 23.42 5.09 1.61 9.17 91.79 78.67 72.07 36.25 23.12 89.99 8.20 26.28 97.18 33.17 0.50 98.94 84.75 1.85 1.82 78.60 52.36 35.01 63.97 96.58 3.04 65.29 95.73 83.69 83.43 46.98 1.35 25.13 76.46 97.30 40.09 41.12 71.25 36.90 85.48 -59.37 44.09 62.19 18.03 23.15 90.03 78.28 47.12 94.42 45.95 97.86 93.34 88.52 61.45 84.69 26.10 72.47 24.98 10.29 30.59 67.36 95.94 91.36 50.11 83.66 59.79 4.51 11.35 23.75 32.23 37.12 1.20 87.25 20.20 84.08 89.99 88.64 43.98 64.16 30.51 33.86 77.48 11.65 24.84 40.93 79.70 46.16 38.17 25.84 45.47 63.38 73.28 50.31 54.22 54.15 22.39 64.86 38.60 97.90 7.88 6.34 92.48 0.91 10.79 18.12 92.90 25.67 39.87 99.63 84.68 12.50 93.77 98.96 90.20 79.18 84.91 57.92 47.01 5.80 17.01 98.99 22.80 30.40 69.66 93.09 5.74 7.78 33.05 36.51 84.67 74.30 39.92 29.04 46.28 7.88 30.80 60.94 82.93 9.26 42.50 -0.22 71.94 77.80 4.24 36.88 61.66 90.25 76.42 25.15 2.19 59.01 47.10 42.21 12.85 51.01 92.14 35.87 23.14 68.20 31.43 12.35 65.31 96.79 37.09 25.15 5.37 96.03 39.78 12.98 82.01 38.85 8.18 58.76 82.79 58.74 47.37 90.69 32.08 10.31 13.83 33.18 6.30 57.12 26.78 99.32 44.17 35.89 47.69 98.11 31.43 86.96 33.54 10.61 95.92 10.69 33.27 26.21 28.94 76.11 98.01 96.14 55.99 84.69 90.07 99.36 38.39 81.59 19.16 47.51 12.32 72.63 56.65 3.36 32.09 95.59 81.46 20.99 18.67 99.30 65.93 64.57 66.93 73.13 84.08 72.64 87.49 86.91 76.36 18.61 28.26 85.25 86.07 15.27 1.22 8.60 91.89 3.16 61.76 76.42 37.31 -89.39 59.62 7.99 40.35 80.48 71.80 90.60 64.09 62.38 4.04 30.62 37.95 98.11 87.19 71.24 53.35 6.16 17.95 87.98 50.75 18.26 10.07 56.48 64.21 35.74 56.16 0.70 81.25 61.99 46.20 43.97 36.70 66.16 5.34 77.15 79.74 30.68 64.86 49.91 74.66 77.33 25.44 41.37 84.67 28.97 93.16 86.38 58.25 72.57 3.60 2.68 64.53 65.44 4.77 89.35 39.32 3.48 0.51 62.21 83.08 77.58 1.55 75.72 37.02 49.26 17.62 46.72 17.25 86.43 17.79 96.95 45.57 37.84 94.96 24.27 7.31 28.64 9.16 79.80 5.82 7.79 56.05 9.27 36.24 25.64 54.47 78.03 83.22 28.00 4.78 24.29 40.35 11.77 56.79 62.26 86.46 35.17 79.32 45.77 35.58 -84.05 38.12 61.11 29.61 62.31 32.84 83.75 49.73 41.93 61.08 58.54 39.88 89.68 68.01 53.47 43.91 68.06 71.61 34.36 18.58 77.03 67.67 20.98 68.89 73.59 97.05 56.47 98.28 43.90 8.87 99.90 22.04 70.22 18.54 92.28 94.86 98.50 40.90 86.45 45.89 71.30 63.75 2.79 88.28 69.41 22.36 97.81 63.47 67.41 85.22 79.74 17.68 70.23 72.85 26.08 83.41 23.32 82.85 2.79 39.73 73.92 38.87 76.82 21.07 75.35 85.34 43.72 86.36 20.98 22.19 5.17 67.21 80.75 79.15 18.52 2.35 62.60 3.16 39.33 95.20 47.14 68.11 22.02 26.52 69.33 28.36 72.38 43.20 10.36 40.41 41.95 65.38 34.24 71.66 69.94 46.00 35.99 72.71 55.47 27.59 -79.58 46.69 13.07 42.62 75.53 13.10 74.27 13.74 80.40 88.82 79.71 88.45 5.01 64.39 22.44 96.22 76.86 56.56 67.34 25.13 73.03 89.42 80.32 36.04 41.02 3.42 72.96 5.79 31.91 97.74 76.60 84.01 90.97 71.17 51.38 42.36 10.75 27.83 28.10 37.22 96.04 3.10 45.37 32.93 52.12 87.78 12.69 76.61 53.85 4.65 61.76 54.69 21.60 65.25 60.15 98.87 3.79 19.34 87.63 70.65 32.84 9.32 23.72 1.67 23.18 64.75 20.16 63.83 53.18 69.42 76.04 6.01 94.49 82.95 21.12 71.42 42.16 59.18 99.09 49.06 67.50 25.54 39.93 81.69 91.60 15.34 13.89 39.97 93.88 58.18 95.31 12.66 92.84 26.62 51.67 54.67 20.91 46.65 52.10 74.20 -29.25 23.89 84.08 33.77 25.05 67.89 87.53 29.88 56.60 95.57 26.02 38.21 98.29 57.17 85.41 28.62 83.84 63.08 94.14 21.56 96.75 32.87 11.24 49.45 2.78 91.36 50.95 95.53 47.38 92.13 72.03 81.21 38.90 15.96 59.84 82.88 51.22 22.33 91.30 54.21 68.03 47.42 20.97 0.75 55.71 30.67 74.34 62.97 57.53 20.22 29.85 89.72 63.30 96.56 55.85 1.37 13.77 42.15 51.05 5.40 73.53 85.85 36.00 5.61 42.17 3.05 40.41 58.37 90.90 18.06 94.99 6.91 8.91 1.09 73.67 41.79 14.24 97.36 88.39 24.11 77.05 34.47 14.73 84.36 8.79 65.40 11.44 38.24 29.88 50.61 14.11 49.65 57.75 33.81 24.00 34.36 64.22 47.80 22.36 36.05 -69.76 78.78 55.51 63.56 43.50 18.44 32.83 0.73 86.23 97.61 75.92 26.31 76.24 49.85 95.62 44.24 45.30 48.72 83.60 42.25 37.67 85.67 17.03 86.01 96.46 80.06 27.00 37.37 43.52 24.97 36.44 35.68 16.51 57.00 23.17 33.88 27.26 8.48 75.90 7.06 98.76 85.88 44.56 64.99 9.54 79.29 97.17 30.56 64.38 91.44 20.11 14.07 48.21 43.93 0.85 0.21 75.82 25.37 52.90 69.05 47.39 27.96 34.90 79.27 44.12 2.86 31.45 1.19 78.89 65.02 64.53 34.90 71.01 59.20 37.74 2.94 54.07 60.39 74.98 86.49 96.42 49.27 40.11 91.88 52.02 10.08 8.19 49.38 90.33 98.72 56.39 39.88 52.65 22.54 91.37 32.53 78.56 76.33 4.98 83.08 -82.34 41.22 15.45 26.68 3.76 79.51 8.19 98.72 58.69 27.76 54.79 73.12 89.42 9.48 0.27 74.38 92.85 76.09 88.79 87.53 32.05 81.27 95.93 45.28 53.63 59.62 70.58 96.38 91.09 96.69 85.23 99.95 37.79 26.25 37.77 29.79 30.04 40.92 46.31 59.92 85.53 52.64 82.45 4.58 28.05 89.88 61.79 71.55 67.62 34.66 34.73 99.92 70.25 22.28 86.27 29.61 27.40 8.03 97.45 9.20 17.82 11.32 28.96 54.85 61.43 77.59 47.91 17.66 90.06 94.74 24.33 4.03 72.27 14.19 80.78 41.84 80.73 96.76 78.84 15.96 43.93 63.88 48.89 52.76 42.59 99.02 31.58 16.31 22.75 53.02 9.97 13.65 61.37 26.47 3.61 33.21 29.19 13.48 74.36 98.46 -56.06 90.78 62.03 21.16 71.10 91.02 29.81 65.53 4.62 2.87 59.49 82.94 86.27 16.41 5.65 20.45 9.69 2.41 95.54 62.83 93.01 37.75 51.85 64.64 29.86 31.45 71.00 14.21 75.30 10.81 83.61 78.69 68.20 44.01 61.39 10.21 71.61 5.84 4.94 72.74 26.64 2.48 0.72 52.11 68.86 22.16 64.41 49.94 60.35 10.93 10.12 85.73 23.44 71.20 12.27 8.06 88.06 75.22 86.11 15.06 81.54 0.10 69.07 41.16 36.05 81.13 66.22 50.12 46.56 25.23 6.73 65.19 81.91 78.68 57.66 7.41 13.05 24.61 86.93 87.46 28.63 96.10 97.34 99.09 59.21 36.84 94.41 83.49 12.38 47.82 90.35 61.98 64.86 64.53 90.02 49.76 59.95 57.00 65.80 75.31 -96.75 70.83 10.87 93.07 64.02 65.01 51.64 91.18 29.02 7.93 7.23 30.16 72.17 49.50 53.69 35.59 63.19 5.10 11.59 6.99 20.81 80.85 42.76 79.97 61.13 91.41 46.74 50.22 91.27 79.62 65.63 31.49 15.23 67.36 31.21 3.57 13.89 33.96 94.74 45.83 27.61 36.06 34.00 69.74 32.37 63.81 47.12 98.61 54.76 54.41 76.64 43.59 93.17 6.49 51.91 17.43 76.80 88.24 39.00 9.91 84.41 75.86 96.59 71.75 83.66 89.76 17.12 19.12 33.33 61.41 53.33 73.06 34.44 20.42 59.43 68.94 93.48 50.33 76.55 86.32 99.43 87.00 98.52 7.52 92.76 57.38 98.83 26.34 50.94 52.85 24.81 73.78 75.59 58.67 26.88 17.66 49.15 70.37 87.40 82.54 -63.70 21.49 47.48 34.80 66.10 58.83 50.20 20.77 35.74 96.25 72.39 8.14 35.17 7.47 93.49 74.89 79.72 30.51 1.15 69.05 51.93 33.85 49.41 5.06 72.07 2.59 69.16 23.59 40.11 98.23 48.54 68.59 21.92 3.56 10.40 19.68 28.61 0.93 48.23 19.24 17.05 52.33 62.53 67.93 9.59 24.67 53.12 31.58 31.71 99.64 50.38 4.19 17.35 9.76 51.26 79.07 47.05 82.63 10.47 92.72 81.84 79.61 60.33 56.41 18.95 82.52 67.42 86.49 98.42 32.39 59.08 48.58 49.36 97.40 55.30 19.42 51.30 53.48 33.24 37.23 96.57 35.24 8.49 36.68 27.34 17.59 19.72 38.49 47.08 12.97 73.93 59.44 99.36 23.21 50.46 30.41 54.16 72.60 60.80 48.49 -67.49 83.62 26.98 11.19 98.90 30.15 89.59 44.45 49.71 59.16 31.04 0.12 74.25 72.96 17.82 4.94 24.67 29.09 58.20 67.88 69.19 51.70 22.88 88.45 35.81 79.38 27.88 18.15 60.93 57.22 51.27 45.56 73.95 30.68 60.68 95.43 5.55 62.30 68.55 48.01 5.83 50.58 42.39 51.31 88.36 57.59 76.46 40.76 32.40 83.40 42.45 56.31 30.02 76.11 38.40 24.20 67.29 85.86 21.97 73.69 25.80 12.72 72.02 20.34 76.38 32.47 68.83 17.32 89.62 2.23 48.20 41.82 29.87 72.30 31.64 71.05 69.60 41.85 56.84 41.88 89.72 50.70 13.06 13.04 50.31 88.32 75.30 59.07 68.41 66.76 86.07 15.99 77.08 77.88 53.96 30.47 76.62 77.06 78.59 86.70 -11.15 94.16 33.07 57.02 19.90 93.70 24.34 71.63 67.38 10.19 40.54 16.15 88.15 85.93 74.39 11.99 61.42 15.95 33.26 3.59 17.23 64.51 24.11 79.81 14.23 26.30 10.90 48.56 63.13 52.97 92.38 12.39 90.65 71.30 98.66 61.66 28.01 42.39 13.14 78.66 19.41 21.54 64.00 22.32 77.55 82.42 88.78 73.71 54.15 7.82 57.10 36.69 37.28 61.51 19.33 93.02 75.00 25.29 11.08 6.61 87.14 91.13 62.30 36.20 7.08 97.03 8.34 66.97 29.36 70.38 5.64 44.59 8.40 87.50 63.16 42.94 33.18 76.90 51.24 54.03 46.49 97.36 61.90 65.93 15.82 8.04 58.11 52.49 10.90 8.33 10.30 99.20 29.01 44.23 41.80 0.47 3.56 7.02 64.77 26.78 -50.65 18.19 97.04 71.49 58.36 22.53 9.91 58.63 63.10 46.61 32.73 33.70 95.81 0.08 71.99 44.87 95.85 98.48 64.14 4.19 27.43 47.39 63.84 36.54 90.18 65.90 85.62 32.40 97.49 36.50 21.10 88.54 93.14 41.85 66.12 33.02 18.28 29.05 14.79 57.42 14.05 91.99 41.10 91.26 60.79 87.52 44.88 87.99 49.71 49.04 86.63 68.25 89.88 12.19 13.17 17.00 13.91 59.00 54.58 19.90 88.79 56.34 13.49 57.24 35.25 10.35 18.83 62.53 63.79 46.36 80.64 97.06 40.63 5.04 36.34 70.28 81.07 53.37 82.40 63.93 27.82 76.01 65.85 26.22 62.31 40.56 58.63 41.89 0.93 49.59 6.37 3.25 49.90 83.94 98.04 17.68 19.84 85.32 61.72 7.97 -47.57 95.58 45.85 90.12 43.07 94.66 67.24 50.88 11.19 87.21 55.10 6.43 72.08 97.73 49.54 49.12 85.70 34.34 17.60 27.33 85.88 6.86 20.61 83.55 80.93 92.57 38.95 4.86 17.20 20.95 34.00 39.21 42.86 72.59 58.83 39.06 73.89 55.40 44.09 29.14 39.12 39.76 16.43 92.63 94.86 86.36 21.24 47.74 13.14 12.97 61.96 6.18 74.43 11.10 50.51 4.19 83.40 77.78 74.15 42.63 88.88 70.12 60.33 89.74 65.56 81.09 42.85 85.34 37.31 45.87 94.88 34.45 21.19 84.04 62.75 29.17 44.91 50.10 54.06 96.43 61.55 29.37 62.19 71.11 84.81 67.50 34.88 89.23 51.50 50.13 77.19 62.52 39.59 12.87 91.88 45.59 95.72 62.94 68.50 89.05 -38.72 65.66 47.85 89.87 87.56 92.40 6.76 21.39 45.79 11.58 15.63 84.74 86.50 7.75 35.84 24.39 45.53 67.11 6.57 25.62 67.39 5.40 83.14 44.66 81.81 70.03 3.82 33.48 9.30 78.77 29.35 44.60 53.51 13.70 66.81 8.82 59.75 16.98 82.13 77.53 42.10 94.08 11.79 14.82 64.80 94.35 57.77 97.61 91.67 33.43 2.98 82.44 94.19 3.20 76.16 81.53 1.55 30.60 64.82 29.95 99.58 0.79 30.10 19.85 62.40 23.98 44.14 52.68 90.10 60.11 63.79 79.48 78.50 54.52 67.64 89.36 78.88 68.33 33.86 93.99 53.78 32.64 73.40 36.49 4.88 5.09 77.17 81.18 37.38 36.99 63.08 88.54 38.20 36.29 74.46 11.75 47.59 88.97 62.87 69.29 -82.99 27.92 96.80 69.34 30.43 59.26 10.09 58.11 89.29 55.93 75.15 13.99 83.62 31.62 70.40 53.70 89.82 0.07 94.24 22.04 19.85 6.69 7.75 50.76 64.53 22.63 30.31 74.49 90.85 31.20 5.84 48.29 42.18 21.52 99.52 11.97 26.13 77.02 97.07 48.01 41.59 36.03 44.30 4.75 66.94 64.06 75.71 93.47 17.41 75.67 29.66 9.79 73.15 28.10 28.28 7.29 36.47 77.59 67.52 47.44 37.24 16.54 14.41 67.42 4.27 99.20 73.20 8.94 38.22 3.23 19.97 46.98 98.84 70.80 50.26 87.87 17.72 28.79 40.86 30.85 42.64 41.05 59.54 92.28 82.62 26.24 39.31 39.50 67.22 73.81 49.29 87.18 88.20 47.17 55.08 15.65 46.67 94.09 28.19 69.37 -94.21 22.30 98.80 70.58 93.70 91.18 98.00 67.55 45.76 22.77 8.30 79.74 87.51 61.42 17.51 64.42 40.43 32.95 53.73 5.63 23.83 17.23 95.48 44.08 99.28 48.43 70.16 16.11 34.34 9.59 19.54 59.67 91.70 75.65 15.19 95.42 74.89 42.61 46.59 84.83 25.66 65.17 76.69 55.81 22.12 63.53 31.86 68.17 92.86 98.70 96.25 43.92 2.35 41.37 26.91 83.92 23.99 8.52 10.80 66.83 20.70 14.52 51.03 94.35 41.16 97.62 69.18 19.00 44.04 57.50 26.32 87.20 44.88 83.57 23.98 87.68 62.13 57.49 22.72 8.00 37.84 30.35 74.55 48.30 38.07 84.32 87.89 50.72 6.14 61.61 45.42 14.88 22.07 22.28 71.35 76.09 78.26 6.95 13.52 22.22 -68.71 57.32 92.45 61.70 22.80 13.30 20.71 47.52 0.27 98.79 12.27 22.23 79.19 83.16 87.27 34.35 87.72 29.61 48.08 39.21 84.44 71.11 50.46 30.35 54.12 18.71 9.09 99.89 67.08 47.53 53.76 49.35 27.51 21.93 57.74 82.86 94.92 21.93 96.99 73.55 36.98 75.72 88.25 81.08 9.72 31.82 41.66 23.62 56.61 22.71 55.06 32.74 24.57 35.66 87.20 46.58 30.26 84.12 42.87 67.75 75.56 59.70 52.71 91.04 85.27 47.73 89.81 72.89 79.87 39.25 64.66 8.99 21.25 82.12 62.77 53.08 65.13 99.98 12.45 80.37 0.17 14.21 28.90 38.49 10.65 97.55 14.91 77.64 34.21 39.81 5.14 89.38 8.58 33.93 61.04 74.48 76.49 65.06 49.84 87.11 -13.66 11.46 78.64 5.10 6.62 89.51 73.20 80.74 88.68 22.43 97.34 9.94 69.92 99.72 4.20 97.75 2.97 84.09 24.15 27.25 26.43 50.10 80.45 88.90 88.99 57.00 74.88 5.31 20.46 77.27 77.25 38.27 35.34 73.95 76.77 2.82 23.90 65.58 28.30 9.72 2.96 78.13 48.86 27.30 16.88 86.76 65.89 53.58 52.09 23.86 95.39 37.80 68.30 76.29 65.28 0.57 52.81 59.64 19.46 48.53 13.35 55.00 24.84 51.49 41.21 10.37 63.54 11.69 12.76 49.17 93.01 13.50 88.12 43.24 46.15 58.72 79.46 83.15 22.41 30.96 92.44 18.73 22.93 47.49 21.57 94.83 25.31 42.57 96.01 28.88 92.98 88.70 27.35 77.19 35.65 98.08 37.78 13.68 15.78 49.45 -49.62 16.71 63.49 62.73 7.09 85.67 60.85 23.37 95.54 73.28 1.57 59.48 53.10 11.37 86.78 63.56 82.25 21.07 87.80 47.80 50.47 24.20 54.03 29.95 1.51 91.14 39.43 37.40 25.06 33.80 25.75 9.31 44.64 51.44 16.97 41.98 0.79 80.71 86.82 32.43 56.31 36.77 69.49 39.49 40.14 92.26 0.31 88.46 39.79 29.35 50.00 25.21 30.61 52.25 25.58 50.09 49.34 23.74 40.22 38.29 57.37 11.18 18.24 61.90 33.01 21.50 78.74 9.80 19.08 38.36 31.54 0.01 72.36 61.28 33.75 47.13 48.40 68.29 33.93 72.71 79.99 36.63 98.76 33.18 65.48 88.40 53.53 26.79 31.93 73.23 78.37 61.45 85.87 60.23 78.27 22.03 21.68 48.07 88.94 67.55 -77.38 35.71 3.28 61.39 71.01 78.01 86.51 31.89 86.41 54.81 6.69 16.67 10.14 63.69 18.07 33.71 7.11 27.40 89.97 62.71 53.71 74.54 79.00 65.72 34.79 42.79 30.65 18.24 56.67 57.66 77.33 56.26 21.69 86.32 51.03 51.46 48.21 40.70 73.16 96.03 21.64 58.71 96.17 67.07 63.39 57.25 80.77 82.87 16.75 38.05 11.92 9.22 39.31 37.19 86.88 28.53 59.75 29.22 39.69 90.04 76.78 0.68 94.04 49.46 26.70 52.75 51.24 20.38 76.03 1.09 55.43 25.19 56.00 77.03 32.65 3.91 73.23 90.02 81.47 89.27 9.40 65.25 36.64 47.21 28.44 9.17 30.24 51.92 62.91 1.26 87.26 24.16 39.34 16.46 8.28 98.13 0.36 95.11 64.05 13.80 -61.19 68.49 66.06 93.07 79.30 25.83 41.08 20.70 71.01 4.14 81.24 73.70 40.25 88.06 64.60 84.53 19.46 58.71 21.88 49.37 21.92 56.85 6.73 0.68 54.00 71.06 27.68 89.14 17.68 29.68 91.67 71.47 46.80 1.74 86.04 50.39 69.16 24.76 57.11 10.36 56.70 34.20 66.19 53.92 72.33 12.43 34.25 81.71 90.69 61.70 79.83 91.50 69.69 13.55 84.53 49.52 41.76 58.14 69.28 60.54 29.53 32.59 85.37 92.45 8.40 61.63 80.85 50.57 16.47 14.08 24.45 97.21 50.48 12.33 15.68 67.13 8.72 26.34 97.35 87.28 69.39 74.01 11.94 81.59 92.46 2.36 77.57 27.28 20.31 74.72 87.91 9.17 33.95 4.22 69.23 26.53 15.81 52.30 30.05 85.85 -37.41 21.93 57.51 47.11 44.86 32.61 58.94 27.52 0.83 2.81 81.09 38.52 6.11 36.61 62.46 38.99 71.37 87.13 12.48 25.93 55.37 95.82 55.07 62.19 66.93 5.34 30.11 15.96 92.33 87.48 14.37 17.06 27.60 51.77 95.68 12.47 0.98 84.51 69.89 89.39 32.82 3.69 97.31 14.23 42.00 71.16 50.51 61.30 7.95 82.79 86.25 53.25 93.52 98.14 34.89 30.56 44.32 16.99 80.64 11.93 3.71 31.92 62.33 22.29 30.59 47.19 32.66 62.92 21.80 97.59 48.25 85.66 38.02 16.35 67.35 26.40 33.72 48.02 83.39 51.99 30.17 16.02 51.77 72.81 49.29 84.11 95.16 0.48 71.46 29.05 50.66 15.44 50.65 80.70 87.81 30.27 61.55 4.04 12.30 20.23 -13.31 60.53 68.49 21.04 94.13 55.96 79.71 79.51 33.65 48.68 45.37 25.22 40.63 98.71 50.43 82.90 6.00 41.69 73.82 59.26 21.88 87.71 87.47 16.22 6.21 81.40 47.57 52.95 3.83 70.25 15.26 70.50 73.80 48.15 23.96 19.16 75.56 31.23 9.06 3.02 50.38 78.16 80.66 73.93 93.83 76.69 95.24 65.58 39.92 41.41 12.29 64.94 18.67 39.09 98.47 86.64 9.43 27.47 52.87 15.37 39.27 22.88 7.39 51.09 31.03 81.18 47.63 5.79 57.48 90.60 91.50 67.09 28.23 52.45 55.98 73.58 21.05 75.36 95.49 67.71 18.76 27.25 9.86 10.76 51.95 7.60 22.18 13.05 57.66 10.93 52.89 37.43 32.49 38.11 83.24 63.20 16.14 46.98 88.00 21.73 -88.60 4.41 9.89 26.35 59.68 4.09 48.26 87.19 31.52 46.17 54.15 80.47 11.49 65.32 74.70 82.50 14.50 31.69 73.73 25.40 90.11 20.42 71.78 99.19 26.71 40.79 31.33 9.92 60.34 52.11 23.07 79.82 60.43 20.54 98.31 25.17 74.45 39.18 80.06 12.87 36.81 6.03 84.07 47.23 85.99 43.44 5.76 93.23 2.74 37.93 1.00 6.88 61.48 75.01 76.54 8.41 24.22 66.50 7.65 15.47 99.68 0.75 10.46 57.63 90.10 15.53 53.32 85.36 23.75 37.63 27.07 89.30 80.97 30.75 51.05 45.41 52.63 57.91 89.09 80.88 3.73 81.38 20.01 1.38 70.76 39.66 26.20 70.51 63.31 80.29 36.59 59.62 50.36 82.00 53.79 35.05 72.29 36.27 51.12 6.22 -49.90 18.39 89.78 44.68 90.59 44.53 63.79 0.09 27.60 96.35 3.70 22.28 79.60 86.51 19.01 18.18 5.60 99.57 14.48 73.21 79.65 99.71 80.16 14.40 2.12 32.55 39.77 55.05 72.35 64.17 46.39 66.69 78.50 80.23 86.54 5.27 18.35 92.92 32.64 79.11 24.19 62.76 59.33 64.50 85.52 26.48 5.59 59.27 85.86 62.79 42.14 33.97 19.83 40.38 21.39 57.09 79.07 24.13 72.53 48.50 53.19 19.41 9.79 21.64 1.48 57.83 93.59 17.12 87.73 9.09 38.74 7.15 24.38 80.09 59.24 95.99 98.89 74.46 56.47 61.31 2.65 45.50 53.41 78.82 90.36 16.58 61.55 35.97 57.27 73.57 73.91 37.71 7.17 94.18 23.52 97.72 4.07 97.56 41.26 36.66 -69.78 18.11 16.32 55.41 98.77 70.19 75.24 7.27 61.05 52.85 7.80 55.43 24.85 26.55 56.40 28.76 26.67 81.19 18.08 94.72 7.43 5.65 33.73 95.04 97.46 84.05 43.24 64.71 75.48 92.03 74.82 39.25 82.67 22.28 13.03 40.13 95.31 11.68 18.44 5.13 50.91 27.48 15.76 48.31 73.98 13.78 12.92 59.24 1.07 62.14 52.70 65.49 3.38 48.36 36.24 65.11 1.33 34.15 54.24 1.27 38.43 99.74 97.92 75.58 6.32 57.57 57.58 52.62 22.54 10.60 37.36 66.68 5.68 54.78 57.22 39.92 2.91 83.11 86.98 92.98 35.60 99.34 30.15 54.61 74.12 31.70 75.46 67.55 86.80 73.51 47.77 1.09 47.90 96.86 99.51 38.03 89.04 67.87 89.20 7.62 -86.45 38.04 64.00 18.07 93.84 43.32 23.67 86.54 11.62 61.54 37.85 65.92 69.69 71.29 6.81 27.21 67.66 78.71 65.07 20.46 23.95 86.58 48.46 55.23 72.23 47.79 75.26 77.84 39.13 12.06 36.98 52.13 64.02 62.19 21.14 93.83 58.05 9.17 93.18 72.06 48.04 43.93 83.55 63.22 77.86 76.07 65.17 31.73 5.01 88.60 22.26 30.02 10.71 61.76 50.25 49.46 51.57 7.24 78.69 74.33 65.72 50.87 10.77 83.07 56.42 50.57 42.64 92.46 35.09 17.77 71.84 77.51 56.89 12.47 97.41 78.86 65.60 17.34 75.98 29.02 49.57 78.15 52.51 80.00 71.17 27.55 86.86 40.23 43.68 78.94 65.40 59.52 40.87 35.32 63.45 97.29 1.49 92.09 66.62 11.53 -2.87 60.80 64.34 15.35 10.71 49.38 76.63 74.39 74.12 78.56 59.72 75.89 17.24 50.75 61.21 14.54 1.78 46.27 91.89 2.26 48.64 12.50 54.17 31.43 33.78 75.89 38.52 24.83 6.70 37.02 46.69 62.81 29.20 86.86 20.47 86.39 96.59 76.51 16.88 30.78 26.41 69.29 1.89 36.72 73.25 47.48 7.02 29.71 76.32 68.53 99.23 48.14 17.67 89.93 8.74 3.91 91.24 77.66 62.84 91.06 15.23 91.50 81.52 95.51 19.81 98.21 62.44 96.96 43.05 71.39 99.37 69.47 1.58 6.34 2.81 67.71 89.09 74.89 65.54 36.03 80.20 28.72 74.33 13.63 1.23 32.34 89.47 48.53 47.91 55.77 43.45 19.67 8.74 17.16 23.02 15.13 21.64 23.67 52.79 27.91 -84.58 40.62 28.91 78.58 0.46 7.65 21.16 33.06 13.92 96.97 9.03 80.53 66.11 14.37 27.56 20.58 2.28 63.74 54.24 80.97 76.21 61.92 78.69 14.91 85.00 37.87 17.21 80.47 24.21 79.51 49.23 47.18 65.09 45.30 66.91 48.07 50.45 59.46 72.42 33.37 80.88 6.81 66.73 41.07 2.74 96.57 90.88 35.70 42.33 87.57 84.21 61.49 38.36 31.32 88.28 82.94 85.89 55.51 19.80 1.68 93.80 27.93 19.62 90.09 91.47 43.42 42.68 46.36 95.21 56.73 57.00 62.61 32.88 6.16 14.82 87.37 58.10 73.15 4.48 61.63 95.63 45.86 29.78 93.98 86.63 13.39 81.07 66.89 93.62 65.32 13.93 76.48 70.07 22.50 1.25 93.95 46.40 13.78 33.24 74.95 -39.11 22.09 34.53 42.95 70.25 44.35 9.73 20.07 13.70 19.14 77.50 42.36 1.37 14.07 11.77 86.90 84.54 72.31 79.18 30.12 15.48 27.88 38.48 62.72 13.67 5.38 85.81 49.33 5.87 19.39 82.48 9.97 90.43 63.43 39.48 89.77 5.86 49.02 37.24 19.15 35.88 99.29 99.22 37.88 98.91 21.22 24.05 47.61 89.55 4.86 84.67 38.77 73.04 73.71 47.70 47.83 9.51 71.68 93.40 29.01 43.13 6.41 92.77 72.10 7.46 0.51 89.80 62.67 16.12 45.64 87.89 69.42 17.53 32.50 30.64 17.91 58.33 24.39 66.00 2.86 0.26 67.79 10.98 97.22 80.06 44.86 38.98 83.90 60.22 22.84 85.62 49.21 29.83 47.69 15.84 23.58 25.36 28.78 76.67 43.20 -40.36 23.51 60.35 73.36 24.85 78.34 46.75 51.26 40.76 0.28 24.51 39.77 72.97 94.88 17.57 83.97 43.98 6.99 36.54 31.06 21.32 60.90 15.23 0.19 7.22 27.86 88.04 99.59 11.81 62.19 0.78 47.08 10.59 8.95 98.96 47.41 62.49 11.74 57.33 39.51 86.99 57.90 25.09 26.25 29.27 6.70 18.34 79.30 68.14 70.34 23.23 73.99 85.95 73.07 36.60 73.88 86.77 16.02 92.01 96.00 87.01 72.92 84.20 90.33 88.84 15.62 94.03 85.82 68.11 0.22 19.70 79.62 57.44 39.48 26.27 51.68 20.78 97.73 41.14 55.25 87.29 82.93 51.76 75.28 69.96 47.34 4.31 29.98 99.25 51.91 46.65 47.80 56.69 85.39 77.08 60.24 7.65 92.55 77.38 86.78 -20.19 86.95 37.08 91.21 8.61 71.78 44.90 46.80 35.02 61.67 81.82 99.18 96.08 13.35 15.88 86.43 56.03 74.28 8.14 7.64 46.27 81.90 81.05 29.74 75.73 46.68 97.07 40.81 26.92 75.78 14.09 75.14 7.43 76.22 25.72 98.48 83.77 43.35 35.75 69.44 25.44 22.07 10.11 44.92 14.62 90.10 60.36 34.77 64.17 35.66 36.85 34.12 18.65 26.05 81.35 50.09 62.06 95.51 90.44 54.06 8.65 49.27 86.13 93.37 24.71 44.08 44.62 69.31 12.89 90.60 51.46 74.35 51.80 27.49 11.55 23.27 6.65 93.98 43.73 73.92 20.67 66.15 23.34 27.03 92.37 45.51 20.05 29.12 44.58 35.40 40.24 52.64 6.46 44.45 52.64 10.99 92.80 25.95 11.85 97.84 -78.34 53.18 41.33 39.82 28.21 74.84 19.23 47.92 81.91 29.42 97.79 26.27 50.74 32.11 92.67 52.76 56.72 20.68 27.22 24.63 18.62 50.40 79.08 52.40 22.07 34.52 94.31 56.00 40.96 83.68 78.06 64.66 80.91 91.65 35.24 20.15 74.93 73.59 24.71 68.79 86.90 4.66 77.99 21.35 10.52 98.68 73.05 52.90 62.87 48.70 54.30 36.57 42.24 28.41 92.87 23.64 26.28 61.65 87.86 7.88 85.52 21.67 46.23 61.01 36.18 85.05 14.16 76.35 65.38 34.71 27.44 30.38 18.60 91.55 62.06 55.62 26.01 74.60 19.39 2.81 37.95 17.35 98.84 95.48 49.42 72.96 50.62 38.19 96.09 20.98 99.45 74.77 31.04 71.15 71.85 75.05 35.54 15.09 30.36 97.43 -64.88 28.93 4.29 9.09 15.35 15.02 45.09 97.67 38.93 3.51 81.10 4.79 31.23 11.21 77.79 36.97 61.65 45.80 73.20 93.72 25.68 50.69 43.95 26.94 35.34 64.26 4.47 64.60 19.18 77.82 53.09 24.49 61.94 7.12 50.10 46.70 14.81 28.52 35.13 80.44 68.83 0.55 9.68 53.38 86.91 11.53 24.01 42.59 51.32 76.84 10.64 97.28 32.33 55.76 71.53 31.85 84.88 3.32 16.95 93.28 40.47 23.18 47.98 28.76 11.94 15.78 7.47 37.72 2.78 41.41 31.97 7.57 57.89 61.12 38.00 55.38 86.08 68.96 15.42 11.96 6.66 15.22 98.08 24.54 88.73 52.47 14.81 1.05 41.32 17.99 37.15 2.33 81.15 50.35 11.51 16.15 14.22 12.06 92.00 12.51 -39.96 22.90 61.05 53.49 86.74 11.30 25.68 25.27 40.71 89.04 76.17 18.12 14.73 1.47 90.94 82.76 59.38 58.34 37.62 80.14 73.70 31.20 92.58 90.22 94.78 88.14 14.38 88.45 64.39 33.55 85.13 36.69 47.29 59.73 42.64 9.24 67.15 45.53 73.16 93.34 33.96 37.38 63.09 21.93 14.05 14.06 42.85 36.64 14.50 27.43 76.08 68.38 86.92 41.10 37.42 38.02 90.72 7.43 47.47 74.24 64.16 52.03 6.96 18.85 60.21 88.84 59.74 95.85 21.90 28.19 57.87 48.05 84.16 93.94 41.99 2.29 51.21 2.76 84.33 86.09 92.23 90.16 89.35 24.95 55.75 94.41 10.76 46.13 10.34 69.35 23.43 14.65 65.94 74.54 58.16 27.68 4.18 91.01 6.49 76.49 -13.99 46.08 36.78 34.30 40.47 64.56 41.00 14.17 42.32 47.28 65.89 73.19 43.21 34.33 3.16 58.76 52.65 92.52 92.91 21.62 37.03 78.51 87.74 38.46 43.88 60.78 62.52 10.20 58.32 93.40 36.24 22.22 11.76 54.31 8.60 96.84 59.62 26.13 53.04 95.52 23.70 38.38 19.95 86.05 90.73 71.78 64.66 6.45 97.29 79.33 17.48 16.30 27.53 15.15 99.93 38.79 70.67 15.69 40.95 47.49 11.95 92.84 89.59 7.74 74.49 54.84 20.24 97.20 51.89 35.53 83.07 55.03 20.74 59.81 74.85 85.65 96.10 35.36 77.54 44.99 7.90 23.95 3.56 53.93 15.58 44.30 17.04 31.20 63.29 13.70 63.19 92.32 27.22 24.53 58.40 28.94 89.79 92.30 4.26 88.66 -23.07 75.63 82.71 90.05 69.07 79.70 95.36 88.64 52.15 84.31 27.02 89.96 96.94 22.30 26.52 35.79 10.83 89.16 38.30 63.93 11.60 93.15 93.88 6.07 66.69 1.50 29.02 67.41 44.32 7.42 46.41 47.90 25.71 50.89 30.43 85.37 48.43 30.92 66.56 46.11 69.30 23.17 66.44 96.64 39.65 25.21 20.14 55.86 85.43 20.81 35.73 32.10 0.22 31.76 99.41 40.41 35.79 96.84 92.31 34.79 96.89 98.55 30.92 15.38 86.31 5.39 44.49 45.46 20.90 18.88 13.57 46.21 95.57 1.56 98.08 86.67 3.16 56.04 63.11 90.31 27.98 10.53 61.91 58.36 86.49 81.57 47.84 4.67 92.38 7.78 53.04 80.99 86.62 98.60 95.19 84.20 85.59 78.70 2.09 49.88 -12.35 5.68 84.42 30.72 76.82 95.68 35.21 86.68 32.37 39.43 9.87 57.07 4.65 16.50 60.78 70.13 4.87 55.20 27.45 19.05 82.92 1.19 99.78 27.78 91.93 39.64 1.83 46.96 91.09 75.78 29.41 26.01 3.26 99.01 72.19 90.27 46.75 24.35 44.88 41.20 30.20 57.73 55.15 63.13 19.92 87.33 35.76 13.03 16.21 14.55 55.26 22.33 26.52 41.82 79.39 0.98 0.83 56.39 3.25 62.48 99.10 8.71 72.62 35.95 69.90 6.60 13.17 78.21 35.75 80.59 56.96 97.05 30.45 8.07 47.51 89.44 49.84 99.34 86.17 36.97 38.61 88.81 96.26 30.60 79.59 38.50 77.28 23.74 18.15 38.87 89.24 27.24 83.12 41.94 29.90 44.04 11.47 44.74 71.53 11.05 -55.62 5.44 7.19 97.46 28.66 77.32 67.41 11.84 84.27 63.21 97.05 79.24 16.65 29.01 96.03 1.18 94.65 95.22 24.89 38.94 74.92 21.58 23.02 21.81 23.99 31.42 60.09 76.46 84.20 14.86 47.17 80.23 89.63 75.03 12.80 2.60 50.52 39.35 39.71 4.84 25.86 11.67 78.84 94.41 39.00 15.65 70.12 24.42 74.60 12.30 92.39 0.57 17.98 2.23 30.12 38.61 79.51 49.26 5.66 3.64 51.25 23.03 32.59 92.61 95.00 55.77 18.94 72.20 50.08 81.64 79.14 39.16 28.77 23.25 37.17 80.47 77.55 66.56 35.75 83.22 19.31 54.71 83.33 47.36 92.89 8.57 65.87 21.19 85.82 34.05 55.08 73.34 31.49 88.34 60.97 61.15 93.21 44.92 47.24 8.84 -74.31 86.84 76.07 81.72 67.25 41.90 36.07 35.82 84.77 33.21 19.09 74.59 45.22 27.58 75.18 7.67 50.47 45.16 10.04 5.89 71.56 21.05 85.07 51.07 33.80 97.72 23.61 8.73 81.60 18.75 5.50 70.97 0.20 60.60 34.02 16.68 75.27 41.82 86.04 74.17 79.81 75.17 52.93 12.14 30.17 94.13 6.25 79.77 25.62 31.73 33.80 6.58 89.01 81.80 98.07 70.97 70.43 53.64 1.48 54.99 5.01 29.79 20.65 67.11 76.18 86.22 33.37 25.68 17.57 25.43 84.28 90.54 62.43 92.20 83.60 54.85 53.26 29.55 67.06 33.21 42.68 34.87 44.08 60.12 75.51 49.43 80.95 3.40 83.09 60.71 97.70 97.71 82.94 36.79 78.21 41.66 40.33 33.31 26.82 44.58 -77.77 24.77 32.21 73.47 24.33 6.87 54.43 30.88 18.93 41.99 70.77 92.01 53.83 88.42 1.54 81.80 81.10 41.28 83.46 89.63 35.30 20.07 34.56 38.75 17.21 36.37 94.67 1.74 52.43 5.46 20.34 96.02 20.38 22.99 23.12 70.62 23.44 56.87 60.00 44.59 51.36 14.46 77.25 73.56 8.40 7.89 14.23 9.91 11.53 46.75 38.49 29.87 96.36 61.02 68.58 75.88 92.56 83.66 64.00 91.97 61.42 61.54 38.85 44.12 13.41 11.69 6.00 27.76 45.73 99.22 59.72 38.78 45.47 16.38 12.14 37.18 10.46 54.42 66.10 62.09 68.84 56.44 9.20 51.18 4.72 99.29 97.47 8.78 73.35 66.79 56.29 93.55 46.67 0.51 85.70 25.66 3.84 3.53 86.02 37.62 -88.50 0.19 62.97 25.97 95.07 28.69 86.87 39.51 85.93 84.72 0.82 10.08 40.81 93.19 44.06 6.32 88.48 75.34 97.13 90.17 15.31 49.26 32.89 11.14 18.36 4.04 38.19 55.77 14.09 25.10 95.13 10.79 14.96 16.72 95.34 30.11 90.53 98.29 41.01 95.18 40.71 94.70 81.59 70.11 43.17 9.79 38.37 83.96 51.19 72.98 85.27 7.28 38.19 14.50 49.85 20.71 28.09 18.82 37.99 57.29 62.41 63.08 92.10 1.03 90.89 53.20 2.44 48.53 56.55 78.56 32.25 64.50 57.55 42.05 76.16 34.13 35.98 4.02 61.41 15.04 99.14 31.76 90.92 7.68 32.98 72.22 33.39 23.45 16.07 20.13 59.90 1.81 44.00 72.29 92.73 6.97 66.47 8.89 4.68 70.74 -6.52 83.51 21.25 64.86 66.94 71.47 0.89 51.57 31.46 44.15 31.29 92.01 17.57 64.45 36.23 50.68 25.61 53.03 34.67 24.26 85.63 11.22 18.87 82.64 83.50 83.56 20.78 25.30 97.56 1.08 32.80 20.01 70.73 52.06 84.32 64.12 16.30 87.43 85.03 78.07 94.64 87.84 6.43 29.59 93.34 3.63 62.45 89.89 65.90 25.64 86.96 89.72 59.50 65.76 33.20 68.83 92.36 39.20 72.86 67.29 65.14 85.69 72.76 5.11 3.84 49.46 99.19 7.29 97.85 11.87 9.43 28.46 44.15 97.16 14.27 65.21 63.63 44.17 39.97 64.77 23.26 70.14 28.18 24.52 40.92 31.79 70.44 78.80 48.44 98.34 85.39 14.85 2.71 99.76 16.28 48.08 1.45 35.05 49.89 98.57 -27.07 2.29 38.77 69.72 4.60 96.91 99.94 17.55 30.25 60.16 70.18 84.97 16.42 18.66 13.22 30.53 2.28 62.51 97.10 62.87 31.83 40.08 87.43 73.17 86.63 27.59 2.23 40.68 64.89 60.08 7.23 10.93 92.59 3.81 65.34 44.50 12.14 62.83 72.99 36.51 25.85 14.55 35.65 19.02 0.54 86.91 35.81 13.30 27.87 16.33 71.54 45.05 0.17 34.81 16.80 22.93 16.86 57.36 24.82 65.12 16.19 21.90 13.81 30.65 78.92 45.32 31.48 45.41 76.47 21.76 97.74 2.00 66.16 72.61 0.70 98.32 14.40 56.67 5.02 9.70 20.92 55.41 8.45 10.76 90.70 13.75 55.50 41.19 41.82 29.29 43.58 4.49 32.82 97.48 79.64 51.33 62.71 32.69 10.35 33.13 -20.37 50.93 3.48 33.54 17.46 27.44 33.02 40.74 4.79 80.18 61.49 63.60 33.11 32.82 97.62 70.45 29.55 72.70 51.16 38.83 27.42 53.95 41.90 52.13 45.29 36.86 86.46 80.74 66.06 75.18 28.09 82.67 54.97 80.77 13.78 92.16 25.41 69.68 67.70 60.52 53.17 90.44 34.75 68.18 43.62 59.75 69.57 88.28 55.90 77.27 75.50 1.03 44.91 74.25 86.16 33.61 39.61 8.11 1.56 47.42 34.73 99.07 92.99 92.65 48.43 92.50 72.36 28.96 81.62 1.04 72.39 33.82 17.77 19.69 59.62 5.30 85.00 40.54 41.90 28.47 36.83 70.02 80.33 0.74 40.05 93.62 56.31 42.54 68.85 74.98 81.96 11.65 35.60 92.06 74.14 50.90 84.46 84.43 58.56 28.46 -25.12 30.59 79.21 34.52 60.42 50.24 91.91 31.20 52.21 62.11 27.80 86.58 94.66 9.37 59.08 18.62 35.32 36.85 39.08 51.99 99.26 21.50 16.25 88.44 16.10 85.54 74.11 14.19 48.81 76.75 29.32 39.10 72.26 18.22 99.10 4.71 10.80 22.55 15.23 69.58 77.79 4.45 27.38 29.72 70.30 32.38 23.59 27.23 28.89 30.47 55.20 70.35 60.46 12.13 73.85 90.70 69.95 97.08 29.26 90.65 95.82 79.82 8.35 8.86 47.09 30.12 39.08 83.51 12.27 48.50 41.33 62.53 22.64 4.31 88.30 96.40 24.72 73.16 21.80 39.06 84.42 20.06 81.74 61.05 39.64 57.15 53.16 46.73 10.34 84.97 54.53 62.62 85.44 15.99 89.86 40.48 60.72 1.42 50.59 84.42 -54.12 68.68 40.90 63.50 72.08 31.02 36.06 92.13 15.13 15.00 40.13 88.30 80.15 52.00 47.91 84.87 12.28 66.10 66.08 18.94 52.24 1.90 89.82 33.81 87.75 27.37 61.15 5.15 45.29 84.62 95.19 10.17 67.67 53.62 85.47 70.00 58.72 34.02 79.02 26.62 4.32 89.64 26.95 64.20 4.70 46.66 13.95 14.80 62.30 1.87 72.09 21.43 7.10 47.96 4.32 32.56 20.43 61.24 62.92 11.10 32.99 1.97 60.69 22.40 33.77 52.04 56.18 7.29 94.44 79.06 97.07 52.73 60.26 58.66 34.21 54.50 89.16 51.02 76.47 50.40 4.59 2.72 93.08 65.76 45.42 35.50 56.84 63.98 56.66 31.41 8.32 89.55 20.22 43.87 29.47 95.32 17.63 44.77 8.78 68.13 -79.53 55.95 61.58 12.41 51.93 46.37 61.76 91.57 48.41 30.35 15.40 29.35 27.46 72.89 55.20 32.51 55.47 31.44 99.30 76.54 37.89 15.57 48.65 30.68 35.22 34.93 86.16 31.24 48.82 14.19 30.06 66.33 59.18 89.53 74.78 76.17 10.72 20.11 9.23 73.48 52.91 99.20 7.20 38.14 23.65 81.26 58.84 22.62 65.31 28.67 88.49 7.81 79.87 61.69 71.53 68.38 77.25 82.74 47.07 47.07 81.09 44.27 89.58 66.31 13.65 13.41 65.35 76.02 72.38 35.47 46.12 42.97 27.52 71.53 73.75 17.94 59.29 50.73 62.75 25.97 74.15 45.24 78.45 34.03 98.07 85.34 17.73 41.57 70.27 37.82 21.76 98.93 33.40 23.42 33.72 38.71 51.87 79.56 14.14 9.18 -12.02 50.84 3.63 89.42 41.97 12.27 86.24 28.55 31.05 53.84 71.48 16.64 56.39 75.02 92.80 64.59 13.44 72.03 50.06 55.98 88.27 59.10 31.53 75.83 94.84 4.54 50.88 64.08 65.35 38.97 88.78 89.35 72.16 1.87 70.16 86.66 27.77 93.37 45.78 15.92 21.85 96.88 39.03 99.64 87.80 0.69 82.84 56.92 72.05 0.41 87.24 28.93 6.90 87.54 61.56 5.25 4.89 18.46 35.25 41.95 79.41 77.73 28.97 14.69 1.97 69.53 98.29 1.03 95.10 35.05 8.12 63.84 75.47 17.60 99.37 7.19 50.58 82.80 76.76 72.13 3.85 96.63 95.56 75.72 32.22 36.66 69.51 98.01 40.82 83.78 79.63 77.55 81.07 66.01 55.35 63.26 54.53 32.97 8.85 66.59 -66.33 63.84 16.24 75.09 65.99 14.36 23.51 81.12 84.27 27.59 29.91 90.32 15.36 4.42 35.37 10.97 18.66 29.25 36.76 25.17 82.29 53.19 77.66 3.61 81.92 45.37 74.00 60.69 99.09 99.73 35.93 28.94 4.35 57.84 45.99 7.84 30.93 68.22 1.35 68.64 65.43 51.01 35.88 11.18 9.60 71.60 72.70 92.94 9.07 63.12 77.15 10.53 27.87 67.81 80.66 74.61 39.34 9.26 46.69 23.79 68.76 94.92 45.55 7.79 5.95 48.10 95.46 9.49 96.79 2.88 62.63 6.12 65.41 32.58 13.82 82.82 58.14 25.03 17.65 80.09 78.52 34.55 5.64 79.41 51.50 87.16 92.33 25.31 96.91 98.94 65.37 86.69 90.49 81.49 85.45 1.22 86.73 15.58 37.65 9.00 -45.88 75.52 12.06 47.96 87.88 78.60 96.28 69.28 55.56 96.45 15.21 70.59 35.29 4.91 41.08 84.94 93.05 40.31 30.59 39.94 16.30 90.65 47.07 88.84 14.25 13.45 71.40 74.88 94.39 84.67 84.16 42.70 51.94 81.12 56.98 51.13 57.39 21.19 43.38 46.08 41.28 33.85 9.71 4.47 90.17 29.79 51.94 7.58 34.60 66.80 56.25 22.71 83.63 11.74 17.56 75.07 4.23 19.43 50.74 69.46 43.17 66.53 40.30 64.14 97.46 54.49 76.82 48.37 89.82 55.35 21.98 56.31 53.08 35.40 69.96 19.80 40.02 53.69 95.24 47.32 69.66 17.23 33.14 0.87 74.95 97.43 58.80 76.58 30.82 63.39 84.62 47.41 62.79 83.64 51.76 54.69 54.02 9.24 93.30 77.37 -80.12 18.85 14.75 1.89 33.61 51.43 51.99 36.20 50.98 67.92 28.36 12.67 83.91 53.23 55.81 58.83 66.69 99.53 17.96 93.13 83.30 84.56 48.69 39.38 42.85 88.59 10.35 48.05 42.18 93.02 60.21 81.37 46.68 40.32 63.65 68.45 42.61 19.69 58.80 30.53 70.18 40.05 76.91 70.43 60.91 17.63 15.21 35.76 57.80 15.48 17.33 54.00 60.38 19.21 96.29 51.64 24.81 84.84 48.18 75.82 3.35 55.21 24.52 99.57 75.13 4.75 19.59 79.29 83.53 51.22 41.15 75.60 63.30 31.90 47.56 2.24 53.07 92.84 86.19 84.85 29.75 48.87 67.27 74.59 76.84 44.01 17.49 43.83 59.87 54.92 49.28 34.57 4.82 38.58 5.85 55.34 28.50 41.01 32.87 87.34 -89.24 54.11 59.57 17.29 99.06 75.20 88.48 47.59 57.64 95.72 29.69 86.49 47.70 45.92 21.82 31.89 50.50 96.75 79.04 50.98 12.07 7.55 34.60 64.43 61.64 22.71 37.31 47.21 66.96 76.37 81.90 78.04 29.36 86.23 33.42 74.75 79.24 25.19 40.69 43.86 92.84 27.42 55.62 15.67 67.49 87.94 98.95 52.34 93.16 16.75 21.34 49.84 21.46 41.46 52.01 72.97 47.02 25.67 44.79 31.87 16.80 97.04 84.20 23.44 19.04 59.08 9.34 44.66 64.15 77.39 27.37 29.80 32.45 33.40 83.57 9.08 98.48 8.50 46.08 86.07 95.84 33.92 46.65 82.14 31.62 18.64 73.54 22.63 76.73 61.76 58.30 34.48 71.97 44.53 99.79 66.41 70.29 87.13 69.49 96.23 -77.83 2.87 70.77 22.56 26.76 77.26 44.60 1.47 69.05 48.31 22.80 96.84 15.02 75.07 84.31 6.70 79.80 90.32 30.33 18.21 88.29 3.95 92.24 34.98 37.56 90.04 18.79 88.55 25.18 74.20 56.32 61.87 19.84 48.03 64.50 27.56 95.06 66.19 48.66 22.34 50.32 99.35 19.03 3.96 69.83 3.19 27.63 7.37 38.94 8.82 62.77 15.16 21.51 43.05 81.35 6.55 57.28 86.81 95.03 46.35 67.11 64.79 5.96 84.89 77.19 81.40 81.46 90.63 27.12 95.14 86.19 78.15 40.56 41.30 64.94 28.92 45.97 85.85 46.36 21.20 7.18 3.89 72.76 83.05 59.85 98.50 2.89 59.97 48.00 92.33 81.96 97.73 77.09 68.13 62.63 17.39 13.09 66.37 26.02 64.96 -92.26 58.10 22.91 74.54 60.64 1.01 9.70 99.54 50.78 7.61 39.35 99.46 76.06 58.94 35.92 23.89 21.34 30.67 3.78 63.21 25.46 16.11 1.90 10.18 39.47 78.16 49.56 0.35 86.01 87.32 25.24 59.70 52.45 73.48 10.22 25.80 35.49 21.71 33.65 18.27 31.89 50.42 44.45 69.71 48.32 15.66 45.52 92.95 14.77 5.86 23.13 29.23 99.99 42.61 76.11 87.65 16.22 99.97 38.53 50.63 50.73 39.92 61.74 63.67 15.59 35.77 31.87 36.51 40.95 54.07 65.86 62.52 2.84 94.46 77.66 70.92 1.03 36.74 26.51 80.68 86.23 1.58 76.90 27.19 15.28 53.03 91.93 66.13 12.86 11.88 54.20 73.83 63.08 83.90 76.77 88.60 66.68 10.33 66.26 85.01 -89.52 20.73 72.81 20.33 41.56 33.36 27.99 27.43 83.79 40.41 17.35 41.97 19.68 45.36 41.17 60.73 53.78 32.85 40.90 31.46 37.02 87.29 11.35 88.68 44.31 65.22 10.89 40.04 0.76 5.78 58.89 67.92 81.95 24.84 36.05 20.11 96.02 13.88 97.59 3.85 66.25 76.01 48.62 84.07 20.55 61.25 30.94 26.44 12.87 0.07 24.53 13.07 12.08 10.81 82.87 62.97 18.59 20.70 10.42 33.86 87.83 85.03 34.12 16.39 52.80 87.38 29.75 2.42 5.97 40.38 69.69 58.36 27.69 97.96 79.34 36.89 77.70 92.03 43.77 10.98 46.35 79.74 90.63 87.73 74.04 98.10 74.55 55.41 76.92 48.34 14.96 90.58 31.79 55.48 37.43 47.22 37.43 98.77 84.47 92.93 -16.14 4.53 82.96 29.13 50.86 54.79 32.20 28.80 67.38 70.02 48.10 40.46 65.01 69.66 55.63 15.09 15.44 88.81 32.83 75.05 68.87 43.86 44.52 89.53 77.03 64.62 62.53 61.63 31.64 80.51 18.52 33.06 68.87 1.50 2.72 4.82 73.85 24.69 17.08 72.83 77.43 47.59 88.68 19.55 82.77 19.15 61.20 18.89 55.45 24.85 92.70 77.42 3.51 72.87 31.87 27.32 18.04 66.13 74.26 86.13 22.48 72.94 35.03 38.61 13.80 84.65 31.88 36.93 84.54 27.56 11.87 94.89 47.18 48.95 5.92 83.62 48.39 38.18 93.50 45.18 16.56 4.71 87.21 94.39 28.26 2.48 2.46 90.21 40.89 70.20 72.21 19.46 38.06 63.14 71.54 26.59 66.36 37.62 84.21 33.53 -85.71 2.54 40.30 94.43 7.74 27.35 29.32 65.37 83.44 41.60 90.51 6.72 25.57 70.62 24.30 84.64 49.52 35.14 7.20 18.14 71.50 44.47 6.98 34.80 91.46 64.28 16.02 88.48 87.82 27.77 52.54 71.28 27.52 55.55 77.06 5.29 19.70 74.48 48.81 28.72 91.98 91.25 67.29 3.93 22.42 16.91 72.73 1.47 51.30 86.55 73.60 71.94 81.94 11.25 68.91 78.32 50.51 66.54 25.13 96.23 45.83 8.50 80.57 28.88 67.75 85.39 40.18 80.45 59.90 43.98 48.51 26.01 1.76 86.48 27.30 92.39 12.82 89.86 82.03 64.47 16.96 86.24 27.67 26.29 32.85 74.64 76.10 23.11 5.05 38.04 83.71 47.79 73.71 45.92 4.51 36.66 66.20 12.26 54.28 83.21 -81.37 6.05 63.88 95.47 22.22 2.19 95.15 96.64 28.61 14.51 66.00 51.36 68.57 21.42 42.80 6.14 64.44 80.55 37.19 94.68 22.94 33.48 4.31 27.34 57.04 25.66 58.71 18.52 19.83 23.72 71.28 72.07 44.05 58.06 83.06 65.74 18.62 70.07 39.34 90.94 14.03 67.73 70.04 92.43 95.78 54.28 12.50 42.95 26.17 12.54 8.27 37.72 69.03 55.54 97.56 97.97 4.38 16.03 87.22 58.17 21.09 89.11 15.78 56.18 90.05 47.15 78.23 46.79 97.71 23.06 0.02 22.58 20.20 44.04 13.64 87.38 62.12 28.11 18.30 31.82 70.61 92.75 14.29 14.02 14.65 40.14 52.53 83.70 1.29 65.93 73.37 4.22 78.70 8.82 92.20 97.63 52.64 60.75 87.29 21.21 -3.26 15.05 55.87 83.30 68.93 44.92 23.42 86.72 77.36 13.06 30.92 10.77 37.62 51.00 35.04 80.60 72.21 14.10 52.31 1.99 37.76 91.51 49.29 30.34 95.44 41.05 61.21 94.38 11.96 88.31 62.36 67.79 24.81 22.74 81.15 79.24 39.42 72.18 27.87 71.33 24.61 54.09 26.83 12.91 35.58 32.78 32.27 15.92 76.18 1.14 75.34 32.06 99.68 76.60 50.70 35.19 23.19 50.43 86.11 86.17 77.34 32.81 88.18 49.33 38.53 85.86 95.04 86.63 1.57 86.10 66.80 14.95 75.13 45.90 58.82 19.34 62.21 56.07 30.63 68.11 49.33 36.69 7.72 59.67 97.37 32.37 16.96 53.24 66.37 80.04 51.36 57.47 57.90 21.93 36.21 49.58 23.49 24.34 82.71 20.53 -67.50 99.10 86.81 43.61 59.23 88.28 40.29 41.18 80.46 8.57 76.58 26.52 2.04 35.62 27.01 73.30 50.47 63.81 35.85 30.24 77.52 55.77 5.05 30.92 16.27 41.36 92.50 25.55 44.05 2.06 15.61 17.68 27.92 95.96 27.67 82.34 13.05 7.97 65.85 13.92 30.00 15.85 48.90 74.34 94.67 66.94 44.11 29.94 35.08 66.11 53.93 67.77 70.94 40.01 42.65 55.11 69.95 54.41 26.20 70.14 70.25 15.06 93.15 50.33 64.62 57.54 27.62 8.23 43.96 7.30 5.81 40.71 19.02 95.45 16.45 57.73 12.16 9.91 58.58 87.39 25.39 71.26 76.00 38.10 78.60 85.13 25.04 49.75 75.27 61.68 8.40 26.74 53.25 26.67 88.70 17.25 65.50 94.21 54.14 8.82 -30.51 14.90 75.76 61.34 73.25 60.49 21.67 45.76 19.84 60.14 18.57 71.76 74.95 12.92 68.53 65.98 36.09 87.85 96.81 25.67 39.69 15.14 62.46 90.51 51.37 44.42 92.10 63.27 15.43 11.14 65.13 68.03 66.55 13.65 70.37 51.55 38.28 75.79 16.00 96.93 79.67 54.37 65.80 65.60 19.90 42.21 39.01 49.12 45.47 6.33 31.98 20.21 55.89 42.99 18.54 26.88 39.86 66.75 43.16 71.40 43.52 5.44 14.47 72.63 61.54 31.37 98.21 9.33 98.23 4.71 65.01 22.04 0.69 30.69 51.52 83.95 6.09 47.33 73.32 94.20 70.66 75.26 30.07 7.51 90.42 0.86 7.56 52.04 16.32 83.47 72.82 23.37 36.26 87.71 77.66 78.35 74.71 24.32 15.40 22.53 -19.66 77.69 47.85 88.77 0.78 76.14 46.28 71.34 55.02 87.87 95.36 39.14 82.48 25.56 93.43 93.37 74.76 30.62 35.57 96.13 28.17 19.45 61.65 54.65 13.24 4.45 57.21 94.24 72.28 54.96 80.92 76.06 84.36 47.38 48.62 12.82 3.31 11.21 38.42 62.90 77.84 81.37 2.28 46.06 84.33 41.69 20.18 7.21 58.12 60.77 99.39 17.98 8.20 25.73 94.02 13.33 83.06 40.03 69.56 73.91 28.48 19.98 4.27 17.19 25.43 25.53 17.21 77.83 13.70 31.97 61.16 30.52 49.41 58.53 33.78 88.01 26.45 18.78 82.97 35.24 71.38 85.09 95.57 62.06 22.35 53.81 30.53 38.19 83.61 83.81 81.67 73.28 67.02 73.20 32.86 6.92 58.70 88.32 98.27 27.13 -45.82 2.00 80.83 77.00 66.44 40.32 54.25 30.21 35.13 8.08 71.52 26.90 94.93 21.12 71.99 8.83 98.34 60.65 50.87 62.37 55.52 24.67 41.87 43.15 28.94 47.52 90.72 93.25 1.54 13.32 12.38 9.07 38.41 92.27 13.49 31.85 16.72 4.98 2.92 43.79 75.81 77.09 31.94 4.33 34.72 57.22 87.98 60.87 15.32 56.84 31.35 82.07 15.84 36.93 68.44 20.18 54.95 24.09 33.91 75.08 44.44 35.57 69.33 38.20 23.69 68.65 84.12 12.72 81.51 54.84 80.01 3.18 81.41 11.54 10.83 44.93 91.90 34.93 16.65 1.96 21.34 34.74 25.37 49.29 97.00 59.81 85.25 55.40 71.93 55.77 44.92 77.04 9.54 75.06 64.56 31.19 19.65 43.34 45.52 65.47 -45.99 73.38 50.53 1.44 53.20 63.09 42.17 23.63 6.62 94.92 11.07 9.31 50.99 41.87 2.74 20.86 93.89 49.37 82.00 98.70 49.31 51.59 1.76 57.93 55.24 39.59 37.66 31.05 96.11 49.09 4.60 28.92 90.37 32.64 3.60 42.29 72.31 96.55 4.31 15.09 39.28 22.15 70.04 98.71 24.68 27.98 50.83 22.90 83.32 26.13 92.33 60.96 62.85 20.71 89.38 68.05 92.65 99.28 65.95 55.99 28.16 1.20 12.80 77.49 46.18 72.74 48.78 98.98 87.39 90.10 97.33 43.14 16.17 38.40 78.69 76.69 6.51 18.10 84.05 7.47 64.78 21.90 2.19 9.02 21.69 43.95 84.65 62.76 67.89 48.78 88.37 11.01 18.25 29.06 10.19 85.14 25.15 52.72 35.26 25.17 -97.22 55.37 65.23 5.51 27.54 10.13 56.22 5.40 10.18 72.11 89.76 46.70 26.34 50.85 97.30 91.25 78.81 62.34 56.53 74.69 62.77 9.46 42.87 74.17 70.12 65.70 42.35 74.72 36.02 76.72 20.30 52.02 24.84 7.07 62.51 16.72 28.73 73.05 16.96 12.58 86.25 78.78 72.95 35.71 70.38 48.23 58.29 88.93 20.42 64.73 47.04 59.06 16.59 17.51 21.77 30.97 59.04 45.71 77.52 72.60 48.21 41.39 43.38 40.81 46.46 37.42 60.50 92.05 32.95 97.70 36.44 54.22 46.17 80.25 61.95 7.48 15.86 37.75 65.83 24.78 10.16 26.82 15.40 30.43 83.73 12.51 0.16 72.91 18.84 94.24 78.46 76.93 60.61 65.00 59.00 79.53 20.03 55.06 47.41 17.47 -86.34 65.50 66.02 19.99 65.69 17.94 70.33 78.69 50.66 88.25 24.76 22.70 91.20 97.94 74.75 71.93 84.95 65.78 13.57 72.75 54.64 12.16 98.93 39.93 97.17 33.16 94.68 27.62 14.69 34.35 22.26 54.95 85.91 58.27 48.43 64.29 12.44 34.95 71.06 72.78 93.46 65.60 99.75 50.57 52.52 86.84 18.17 58.84 66.49 0.82 59.05 68.41 10.61 9.32 80.19 88.39 26.58 45.55 51.90 24.74 68.45 36.15 79.52 50.16 68.41 86.95 63.24 73.24 35.23 16.27 90.44 61.74 20.50 81.21 5.96 87.07 17.88 48.79 61.53 47.32 72.75 15.15 83.38 77.39 43.95 41.57 97.10 57.69 44.61 75.51 18.46 95.43 94.12 56.47 69.70 63.22 56.08 94.93 79.78 42.20 -79.42 42.61 9.11 78.04 73.06 5.76 3.42 35.22 47.21 1.07 12.05 54.20 44.78 59.13 45.61 43.13 24.49 95.53 93.08 89.04 29.28 97.30 90.14 60.40 83.08 55.00 95.94 15.26 62.56 84.66 95.00 1.59 5.28 46.35 9.93 9.75 23.05 61.93 61.35 74.50 40.17 79.99 25.74 56.63 38.71 21.61 72.76 59.39 9.02 42.80 39.48 87.93 97.79 40.34 75.70 33.08 56.44 0.12 19.82 16.42 89.44 86.64 85.83 76.21 99.86 98.92 24.84 91.69 77.59 28.30 9.20 92.16 6.81 4.84 86.39 48.48 64.91 63.73 58.61 0.92 4.41 41.54 17.67 39.19 49.20 69.14 50.32 7.95 67.97 33.50 10.93 59.38 23.00 49.78 18.00 27.14 32.05 71.61 19.96 27.29 -17.53 0.52 18.08 28.53 80.75 34.27 70.18 51.82 4.68 83.06 9.68 14.91 54.48 51.30 40.72 55.38 19.42 15.59 10.22 22.25 12.42 31.29 8.84 7.61 26.29 30.42 19.23 0.95 20.29 27.40 83.23 77.08 85.38 9.88 90.62 40.97 43.15 21.45 53.88 53.03 60.87 88.64 45.71 67.66 70.14 49.65 8.65 70.90 8.76 37.63 92.37 15.39 16.44 33.36 48.25 58.58 3.49 96.86 39.80 66.05 31.13 28.57 56.79 91.10 26.43 91.40 6.47 72.80 80.38 63.80 29.81 44.81 94.16 71.20 54.57 1.42 45.70 33.77 46.72 97.42 68.76 0.54 1.21 2.20 88.79 45.95 81.96 39.90 95.49 74.96 27.12 0.61 8.90 57.67 82.12 77.16 23.15 31.75 79.48 8.52 -66.84 3.86 12.88 76.18 98.39 48.71 88.08 99.78 15.10 68.38 63.35 52.51 82.56 90.90 30.61 47.61 49.97 16.12 64.23 32.14 18.50 61.82 81.88 35.67 38.67 90.91 84.59 29.32 97.22 44.75 4.48 37.06 40.59 91.82 65.62 19.14 29.38 72.62 70.92 94.61 37.56 77.85 38.08 14.20 79.85 49.16 10.92 18.69 0.47 5.13 89.49 97.99 25.39 58.03 2.30 85.60 21.07 42.82 26.75 61.03 1.62 26.50 64.14 41.53 8.64 68.78 4.49 50.52 38.31 23.50 3.54 24.12 25.08 53.13 46.57 63.15 62.59 73.24 56.50 81.57 79.11 33.84 41.86 57.92 76.18 71.68 27.56 88.43 3.69 5.40 39.86 51.80 45.81 30.89 57.59 80.76 40.21 41.34 31.80 6.07 -66.51 66.39 45.36 46.27 78.09 10.44 5.01 61.13 5.51 89.37 29.70 13.17 17.87 16.39 54.30 44.29 98.86 72.27 80.24 44.16 62.96 39.26 29.44 70.54 80.41 12.18 38.47 74.79 73.29 75.59 8.11 70.87 48.04 44.06 87.39 25.71 69.91 5.00 72.32 24.23 92.62 34.04 46.36 36.51 72.63 79.26 37.65 34.39 61.16 74.24 58.73 57.02 76.12 10.61 32.13 66.66 88.88 89.09 59.75 66.60 77.89 43.32 57.40 29.56 15.57 78.20 63.11 73.59 4.33 57.38 5.81 9.42 86.03 10.06 3.93 45.19 95.62 97.19 24.92 1.94 98.01 54.97 50.29 2.04 43.62 39.99 72.20 22.38 69.99 64.69 47.81 78.31 55.68 43.86 7.16 82.86 86.90 61.73 74.61 28.08 -32.52 47.55 39.07 14.22 58.60 19.07 83.05 3.38 99.76 75.91 31.29 38.42 79.98 59.14 94.59 25.20 32.80 8.79 83.17 87.20 30.27 90.72 29.58 45.72 52.01 28.38 99.29 28.65 35.02 83.15 95.07 90.97 13.75 34.10 1.91 81.61 68.48 98.26 23.56 67.74 36.94 26.14 6.38 69.31 86.40 74.57 18.98 93.53 78.00 4.62 29.70 51.14 56.79 53.94 72.90 77.36 44.28 40.56 93.82 26.14 44.00 10.72 66.98 66.59 5.78 79.90 93.71 11.20 10.81 50.08 81.91 47.21 99.58 28.23 40.70 23.53 56.36 18.29 43.50 52.25 70.04 31.10 19.58 94.54 42.79 4.63 60.51 45.98 91.22 29.30 51.86 33.68 22.98 1.58 25.71 73.33 0.96 97.13 75.05 68.25 -39.31 5.17 33.87 70.25 7.00 31.87 24.31 37.73 24.63 54.51 0.57 34.44 39.72 45.19 85.33 9.56 1.35 81.86 94.04 89.45 71.01 11.10 9.27 61.40 34.67 86.58 19.99 28.99 57.56 71.37 25.04 12.75 78.67 52.86 7.55 26.66 19.32 40.95 46.60 26.32 40.82 17.81 5.15 2.41 97.43 19.30 91.61 42.30 40.78 41.33 69.41 45.45 58.24 25.84 1.39 32.34 56.35 92.06 19.81 10.49 94.19 13.91 82.90 57.72 81.24 90.15 97.29 67.81 14.23 51.59 39.22 62.65 14.19 39.08 75.99 45.03 17.08 71.47 28.37 21.26 97.50 58.15 36.86 29.45 6.53 20.19 9.49 80.82 72.43 48.72 75.70 87.84 52.78 28.00 77.24 21.58 10.88 27.67 58.11 86.68 -13.34 68.38 97.25 60.85 64.17 47.42 46.07 6.89 70.89 47.54 15.62 25.80 6.06 10.66 17.80 2.96 63.91 9.20 34.35 46.42 88.89 87.22 98.55 83.62 72.89 63.75 14.91 52.31 6.56 6.31 37.01 58.67 64.64 14.84 46.81 4.09 47.27 99.94 13.88 50.14 40.03 25.81 71.04 25.92 30.34 39.44 83.41 14.94 73.24 11.82 88.12 77.62 3.23 28.41 31.56 34.21 37.60 42.90 59.92 52.70 68.35 9.61 1.98 89.17 84.13 14.25 87.28 91.47 80.52 53.60 70.33 87.74 57.69 24.84 28.17 1.45 91.08 7.80 24.69 38.25 44.83 59.24 30.72 34.84 70.12 31.85 7.24 64.68 20.54 16.61 52.72 82.42 6.12 38.95 22.78 79.31 38.81 72.63 76.59 66.06 -32.28 59.90 45.47 78.64 56.48 72.32 36.63 97.32 86.78 20.47 78.16 64.45 69.14 1.11 87.54 65.48 48.09 0.12 35.16 86.74 94.63 24.45 61.96 71.06 86.25 67.74 85.59 21.63 6.04 57.59 38.03 45.92 91.90 28.31 30.06 19.33 44.80 94.53 35.96 99.37 94.58 69.89 39.53 58.54 41.09 47.12 14.53 36.26 49.57 59.10 57.72 87.38 41.41 7.44 87.25 98.17 54.30 56.69 35.66 95.08 72.16 93.82 45.93 75.17 77.29 75.87 58.33 96.10 55.69 29.91 19.18 43.53 63.41 18.16 31.94 31.75 17.79 47.00 93.61 4.94 0.91 34.98 22.14 30.41 3.97 37.12 16.52 94.30 85.38 33.13 60.62 62.01 44.42 79.25 32.45 74.77 2.27 74.35 59.23 66.55 -5.27 7.85 68.66 36.93 53.01 16.24 17.32 72.42 79.48 71.11 6.80 22.75 90.69 8.91 64.79 49.53 97.63 35.05 56.47 23.66 52.81 67.01 99.27 30.10 42.38 33.69 95.85 57.16 33.30 84.13 56.51 96.03 17.96 9.94 28.32 83.58 65.63 2.38 3.72 68.45 70.04 82.84 9.12 0.15 41.24 19.23 34.69 43.01 0.79 36.33 34.20 88.07 53.71 33.59 80.90 54.85 31.97 60.30 12.39 52.87 54.77 73.37 81.43 38.92 32.79 59.59 49.54 23.40 28.65 47.53 15.72 16.41 20.70 96.57 83.57 53.67 19.46 98.15 45.39 27.22 63.82 30.15 45.54 32.13 38.98 32.05 26.25 49.80 75.48 11.34 42.75 42.27 90.72 43.42 85.77 77.77 88.88 8.97 83.65 16.42 -48.21 67.56 50.71 9.88 72.96 72.88 97.75 32.24 15.22 87.43 64.73 88.03 89.99 89.92 35.45 97.46 35.36 51.64 52.88 86.22 55.89 17.17 49.86 85.48 34.38 55.36 56.03 96.74 75.55 88.05 99.65 3.49 31.08 92.69 44.53 67.96 39.16 52.85 70.29 16.99 10.72 62.08 27.96 31.07 96.36 3.87 21.62 5.57 47.02 8.63 90.46 76.23 55.03 84.33 11.25 32.27 59.40 60.27 97.60 47.65 34.86 32.89 36.67 19.70 78.94 30.11 29.65 20.62 69.73 0.85 83.88 40.00 74.94 67.16 93.25 30.29 94.05 60.29 40.97 19.41 75.38 42.22 35.40 41.02 11.13 0.62 56.09 24.09 99.67 98.61 88.34 98.02 13.72 4.99 24.85 16.66 72.18 97.72 95.91 83.96 -97.13 88.18 30.32 26.38 89.46 63.85 43.62 31.89 2.79 23.48 53.39 16.58 66.48 20.61 74.10 33.12 88.34 16.96 93.80 57.16 41.47 18.40 39.89 83.18 79.21 87.84 78.19 83.16 0.20 53.42 56.49 30.32 50.16 79.98 82.48 35.25 97.44 67.79 92.95 25.43 72.72 85.51 15.41 52.55 80.63 52.14 10.60 53.43 38.62 75.11 80.33 17.43 67.01 83.46 66.21 43.49 57.36 49.75 12.46 73.60 52.24 11.82 69.64 28.14 46.29 10.95 85.28 22.01 3.56 80.69 85.86 96.39 10.26 28.06 57.05 61.12 44.14 17.49 90.17 11.39 38.07 57.46 69.76 85.88 94.95 13.36 79.10 95.23 54.09 45.43 14.42 14.48 57.56 93.02 48.27 11.04 60.03 71.93 26.37 47.02 -23.38 78.89 84.68 31.35 77.62 53.00 39.63 7.59 49.75 47.96 35.46 82.37 52.35 65.68 88.53 37.52 56.72 3.32 7.80 54.54 40.20 14.12 74.30 15.09 17.83 9.19 93.30 45.55 8.50 60.25 45.56 76.13 67.50 66.50 84.10 16.15 79.38 73.74 20.74 41.80 46.77 14.72 3.78 45.43 14.29 45.01 6.36 89.75 33.31 60.53 90.20 90.99 45.26 91.08 99.48 62.06 30.65 18.31 12.83 40.48 39.99 61.89 57.32 70.58 74.03 42.09 23.35 72.56 32.13 6.35 19.88 27.18 24.44 37.85 12.14 68.59 38.12 26.27 92.07 52.93 43.28 41.34 29.25 43.86 23.27 43.64 50.25 7.81 83.32 52.62 61.93 37.02 9.06 92.91 73.94 62.58 73.64 7.90 37.08 57.23 -10.73 49.74 7.28 14.44 65.60 31.06 73.82 55.52 79.94 92.23 25.38 54.74 27.56 95.23 6.30 53.11 73.38 93.54 35.73 32.60 67.15 21.02 5.53 32.68 55.27 12.73 85.29 4.92 95.32 24.62 87.56 67.83 78.98 96.40 48.03 42.33 40.50 67.77 70.51 41.86 33.84 61.42 7.35 18.58 39.15 71.18 89.74 68.34 27.09 59.01 74.88 28.28 89.46 94.42 62.70 18.22 77.98 5.37 77.45 24.38 9.87 59.98 6.14 26.21 76.89 79.47 15.46 26.79 10.77 46.85 63.08 97.05 86.82 43.48 18.53 22.42 84.71 42.19 90.37 95.85 77.81 3.50 97.80 85.00 72.78 17.73 21.64 78.29 0.11 24.10 41.98 92.46 61.09 28.30 4.76 88.93 42.89 79.75 52.50 90.53 -63.94 16.87 3.23 66.25 23.40 65.82 75.10 86.07 29.13 14.50 3.19 7.09 13.06 32.20 57.87 68.49 99.53 44.80 25.51 85.45 53.27 38.35 38.53 40.89 38.76 33.20 49.33 97.79 33.49 93.23 11.73 63.32 38.85 56.63 78.34 72.56 5.27 14.67 88.11 3.63 65.84 33.36 47.84 60.20 63.91 82.74 17.35 80.84 92.60 97.56 86.86 64.25 68.54 81.68 7.91 75.03 6.26 42.31 27.19 9.56 53.24 66.00 76.36 8.67 7.77 74.06 98.43 60.09 72.96 6.62 24.25 45.17 84.49 82.38 27.66 63.46 34.00 0.02 97.07 87.04 67.50 55.37 68.13 8.14 36.98 91.54 83.83 15.44 77.22 96.46 52.92 54.75 95.99 55.60 81.05 46.08 86.73 1.66 16.19 33.43 -1.55 58.48 90.19 83.49 56.43 19.81 58.88 83.34 45.76 35.58 9.12 35.87 2.15 1.14 64.16 45.00 55.47 28.58 40.99 86.71 33.81 89.69 24.54 5.88 78.62 74.06 76.74 1.24 5.13 80.73 54.28 58.71 33.95 31.35 15.76 91.59 24.15 98.22 7.26 53.67 40.71 59.50 74.16 31.27 27.86 39.59 61.20 16.68 45.04 2.69 8.06 31.18 48.89 40.25 30.35 39.79 20.68 48.04 9.06 5.43 67.62 32.64 72.02 81.22 63.67 44.73 96.67 83.88 14.88 20.48 64.42 84.38 81.57 3.73 84.49 82.60 76.54 81.66 19.42 13.87 83.88 67.60 30.68 69.40 29.11 45.71 21.92 6.93 47.56 67.35 14.28 12.23 24.44 80.21 62.86 76.55 56.42 61.68 76.43 52.98 -37.68 16.63 95.01 46.04 25.58 40.25 60.25 12.66 80.30 16.00 72.23 47.46 88.03 42.79 14.26 11.40 53.66 66.94 2.53 52.01 92.13 89.06 6.79 45.61 96.01 53.08 2.70 15.96 1.58 74.49 34.45 3.04 33.67 59.47 10.71 48.87 16.87 63.80 73.55 89.26 68.29 72.60 50.21 80.43 60.04 50.19 66.68 11.19 53.98 30.79 39.80 60.52 35.92 65.70 84.61 29.65 42.08 83.32 0.12 85.04 22.33 51.98 34.14 35.36 96.17 48.13 22.58 95.72 53.09 75.37 6.55 52.07 55.88 56.69 56.41 8.42 19.11 51.54 90.17 43.49 83.84 41.46 53.44 57.79 72.26 19.08 90.32 62.37 22.95 33.88 47.46 46.94 17.12 52.76 42.54 46.45 28.92 37.36 33.99 28.95 -20.85 59.68 19.00 34.25 22.53 30.85 57.49 95.54 39.45 87.03 72.54 91.00 51.01 15.10 37.32 5.54 47.30 73.86 53.75 45.48 53.52 75.78 44.22 98.04 8.40 16.96 70.70 42.04 51.18 60.17 93.08 91.02 8.18 82.31 46.58 16.36 22.27 85.40 54.29 84.97 72.32 20.59 25.82 15.91 81.81 81.39 38.60 0.98 58.60 33.22 53.38 15.94 3.16 64.10 49.02 34.96 51.35 80.02 72.70 73.06 38.07 48.54 89.51 56.06 47.98 78.51 38.33 8.11 62.35 9.30 53.61 99.16 48.60 32.57 60.03 13.80 9.95 47.23 56.78 61.28 99.34 30.05 59.86 65.79 46.45 26.38 39.74 1.36 22.90 41.41 92.81 87.60 26.86 76.60 0.07 26.02 82.36 87.72 47.77 90.92 -82.92 89.75 98.65 96.72 86.91 74.94 8.17 67.43 52.82 64.45 78.54 93.70 82.71 80.42 85.98 11.19 15.39 29.70 42.79 91.79 19.52 10.74 81.41 17.88 64.69 65.30 51.98 97.47 93.81 51.82 66.28 81.13 74.02 70.18 35.83 23.68 63.02 45.02 71.57 41.42 94.96 98.97 94.18 58.06 73.84 72.79 80.05 96.53 60.56 68.91 57.06 38.24 44.55 50.48 67.02 91.47 5.82 65.85 23.69 73.12 33.49 71.60 22.52 45.35 29.93 37.31 12.08 45.54 19.72 37.48 67.72 65.99 66.57 6.64 5.16 76.71 59.54 49.58 33.28 21.44 20.10 79.31 20.58 79.55 60.57 78.44 67.01 23.18 44.66 27.63 62.89 45.23 37.99 43.06 68.65 75.09 52.22 24.35 35.18 13.63 -97.75 64.36 74.97 78.64 76.25 52.54 18.61 54.39 30.80 1.68 18.50 83.57 36.33 64.79 56.30 1.62 60.24 66.91 27.51 83.40 87.60 84.92 56.76 77.47 7.48 70.81 43.93 97.28 69.02 23.41 90.49 10.36 98.94 6.19 61.23 28.48 40.90 82.93 51.82 6.41 15.83 6.68 43.55 36.77 28.92 79.88 51.86 2.72 33.11 49.67 23.47 12.67 76.00 90.06 45.07 87.72 1.13 31.10 44.60 20.65 3.71 42.58 1.24 28.06 31.80 59.99 73.38 67.81 49.49 18.29 60.70 64.08 87.60 63.66 12.27 0.42 35.76 79.34 4.19 15.04 82.65 72.45 29.71 15.28 13.55 86.38 54.75 8.29 82.79 84.77 32.17 41.83 74.23 93.86 36.43 73.68 68.23 69.13 27.72 9.07 -61.56 42.38 54.19 62.56 84.11 46.35 35.60 75.74 62.90 87.38 38.21 72.84 46.88 9.09 24.94 10.53 86.14 70.37 54.45 8.43 89.15 12.39 70.32 42.86 47.51 44.09 92.59 25.23 26.07 87.12 88.57 28.16 73.24 61.47 10.87 52.37 92.35 95.78 47.36 98.18 1.62 44.74 76.10 26.18 40.39 97.06 66.07 48.97 49.21 58.54 39.76 32.11 12.58 48.57 85.00 62.41 52.16 55.09 90.93 89.24 17.31 94.14 67.32 61.41 30.30 50.00 30.79 88.74 15.72 84.56 67.18 45.66 37.64 53.19 11.04 82.44 78.45 55.72 7.73 5.01 85.35 82.18 23.05 58.49 18.09 3.48 90.51 91.08 47.37 26.08 92.15 33.43 24.98 58.96 49.21 7.13 33.60 60.44 83.03 35.86 -27.05 96.85 87.31 18.75 68.83 40.31 13.79 99.77 68.77 45.29 55.44 52.31 91.87 42.78 97.15 43.90 87.92 51.19 19.58 70.97 33.25 0.32 8.69 12.81 53.45 66.78 20.47 77.06 71.26 20.79 6.03 99.60 75.62 7.76 25.39 41.50 46.96 18.28 25.37 29.66 91.67 43.43 74.35 94.30 71.73 86.89 23.73 79.30 95.76 21.50 63.42 4.88 84.05 12.41 97.19 29.26 9.83 54.54 78.61 95.47 59.31 89.38 96.82 28.14 16.26 25.13 27.35 13.95 45.19 95.85 51.18 36.70 28.99 15.71 14.16 93.66 36.42 99.93 58.28 68.03 2.43 16.58 53.42 26.41 60.10 31.52 70.20 55.98 1.43 63.13 31.39 9.69 7.75 48.02 56.94 39.37 17.77 43.43 48.73 13.22 -1.88 73.28 38.35 43.47 0.58 78.95 12.63 67.15 34.78 98.35 38.96 76.01 58.83 43.82 93.98 97.27 30.67 90.90 30.41 21.67 14.52 62.97 12.61 94.49 43.77 99.83 66.68 55.42 51.30 58.91 28.81 14.14 53.43 55.46 24.32 0.34 93.29 91.48 67.66 49.81 50.48 21.60 10.20 87.18 52.87 87.74 59.41 27.55 17.21 13.49 4.26 30.19 28.56 96.67 24.32 55.98 23.70 14.60 19.17 51.23 6.48 56.77 30.29 11.12 31.05 90.49 37.20 16.93 36.36 90.81 14.37 1.73 20.86 85.06 41.24 4.52 28.99 48.71 35.23 60.48 20.77 22.41 94.73 12.43 38.61 48.41 76.99 42.85 56.19 94.32 82.36 8.23 55.46 40.70 43.69 36.81 72.74 33.36 17.38 7.44 -65.32 92.73 96.57 6.36 92.57 29.04 14.96 30.82 56.59 84.86 86.43 11.47 35.02 64.57 23.52 56.59 9.34 65.86 73.37 21.27 5.90 94.73 92.49 43.72 86.36 8.13 72.12 90.14 39.43 34.79 17.43 44.24 15.70 18.61 64.08 18.73 20.79 87.00 60.62 85.08 69.55 73.86 41.13 10.16 34.76 6.79 6.12 84.10 44.84 27.98 53.12 83.95 0.50 42.88 95.29 3.16 72.56 33.71 51.36 58.37 96.18 61.71 50.79 17.01 60.43 89.49 45.87 45.06 10.49 87.79 89.07 13.44 22.96 30.77 4.60 0.98 7.06 34.76 12.04 33.42 5.25 82.73 72.05 72.15 6.15 73.95 87.25 97.06 30.88 18.44 76.88 29.29 20.83 72.26 64.41 54.71 37.14 67.57 87.08 97.44 -67.74 61.24 75.91 50.76 2.79 99.73 33.06 78.70 18.19 85.51 36.43 6.07 19.83 3.00 45.36 99.89 8.88 88.75 5.52 78.63 56.56 15.64 25.37 4.19 7.38 87.18 8.89 34.67 80.81 82.08 22.93 15.57 42.39 20.26 29.96 3.82 43.93 6.35 79.47 68.25 78.70 18.36 88.71 74.75 82.57 12.15 49.54 35.42 48.68 92.13 80.67 89.97 5.31 67.69 50.36 74.16 74.81 82.61 60.92 32.93 13.67 58.50 90.34 35.01 57.75 22.63 13.81 25.51 38.99 1.19 46.71 28.49 44.99 77.26 51.56 21.77 85.69 80.64 17.03 9.90 9.01 64.66 56.30 5.44 64.07 26.96 6.07 56.63 19.81 8.43 24.19 58.04 2.16 92.26 7.86 70.88 18.40 36.85 76.32 57.92 -96.31 91.30 75.63 11.79 45.23 76.48 13.87 19.01 64.50 82.54 55.99 55.64 92.88 87.91 88.82 75.98 24.98 30.27 25.20 40.35 24.31 14.84 38.47 71.13 8.08 13.36 86.79 54.74 11.38 23.04 66.83 71.21 32.68 99.66 34.73 66.63 44.87 3.96 92.17 60.76 81.68 59.61 89.27 7.89 35.23 81.89 62.79 42.76 61.97 23.41 77.98 16.17 94.71 68.59 77.40 43.39 12.08 41.82 51.76 92.78 18.41 70.22 11.94 56.89 28.89 32.21 37.45 70.04 65.95 74.53 8.98 26.96 93.99 98.04 48.56 52.64 17.01 64.03 35.95 81.35 2.57 21.58 83.09 19.96 38.86 9.44 10.48 99.87 64.84 52.23 57.97 57.90 58.07 82.54 29.03 53.66 90.16 82.20 51.18 33.64 -1.27 23.00 51.25 83.68 46.88 80.12 23.40 97.06 75.02 48.96 66.43 4.86 15.93 54.78 52.62 30.36 9.83 94.13 90.38 3.22 52.47 50.35 15.93 83.12 27.18 89.84 52.54 42.29 78.17 81.06 41.43 56.91 52.05 0.57 58.83 57.20 83.20 41.65 44.17 33.61 41.21 49.01 62.25 27.90 32.70 40.66 49.45 38.51 53.30 67.33 2.79 1.88 0.29 81.02 5.20 24.55 73.88 71.59 56.53 44.06 49.69 77.63 82.19 15.97 81.10 62.60 33.45 1.44 42.65 80.46 31.81 14.55 36.75 82.45 95.34 62.02 55.96 91.13 56.49 41.26 96.87 91.22 43.41 22.83 83.84 75.24 90.91 32.50 78.63 71.11 3.41 45.58 49.72 86.47 10.81 95.58 84.18 62.78 85.32 81.18 -44.39 79.71 7.35 3.84 39.56 23.16 96.58 86.10 19.69 2.92 39.65 11.08 84.64 79.47 2.18 71.19 84.43 20.32 23.56 99.20 16.46 43.93 38.12 10.49 29.36 79.14 24.82 16.39 77.24 0.98 69.20 50.24 28.62 12.30 82.88 33.48 22.04 71.36 21.48 29.44 95.18 65.91 92.67 88.45 18.30 61.94 79.80 49.19 13.71 70.77 93.56 13.29 72.21 66.87 20.28 18.51 55.50 10.59 23.55 35.75 45.87 49.88 5.64 71.36 95.31 99.38 23.91 44.84 39.92 43.65 1.39 44.62 57.40 64.02 98.13 58.44 35.43 95.70 75.08 66.86 85.97 86.66 13.62 61.28 21.69 42.10 91.72 40.75 88.39 65.48 35.65 80.53 10.43 71.48 96.79 39.41 55.71 93.68 3.78 29.79 -71.37 57.66 60.46 2.10 8.78 8.53 55.95 88.90 54.88 88.49 5.72 70.78 69.65 62.52 36.92 78.65 4.47 45.42 26.14 54.66 91.81 44.07 35.59 42.12 27.23 37.87 37.90 21.17 1.46 55.51 39.90 39.97 15.28 62.60 56.50 20.97 58.14 80.86 40.50 49.32 44.72 25.09 39.15 44.99 18.10 69.94 60.27 32.04 57.08 2.91 64.91 7.86 51.55 98.31 35.01 86.52 37.47 23.46 92.19 50.02 12.15 16.97 89.40 21.88 21.88 13.43 95.27 76.31 62.27 94.19 5.95 25.50 96.81 44.39 70.40 3.54 24.22 95.41 99.25 99.65 55.84 7.45 63.29 9.40 70.62 31.28 45.67 45.13 34.14 66.65 22.83 21.59 98.53 31.92 17.31 91.11 5.66 81.26 1.59 97.26 -30.42 9.92 94.32 47.05 15.82 28.36 41.79 88.01 52.88 89.87 83.53 75.75 61.86 41.11 85.17 61.43 92.79 99.77 59.55 96.65 42.97 54.49 31.19 87.89 49.75 26.19 16.75 7.96 25.17 88.33 3.69 95.13 68.84 5.94 17.01 95.27 40.91 88.66 74.71 91.25 36.00 4.97 62.92 14.20 21.33 42.96 17.53 64.28 73.80 64.67 88.38 34.25 33.46 76.13 4.71 0.74 47.61 69.76 40.19 46.15 58.12 54.14 61.14 31.80 96.73 70.17 46.25 34.04 84.28 95.03 22.68 55.13 74.16 7.64 79.03 13.07 57.76 52.90 20.80 1.46 96.64 15.39 78.59 50.44 1.92 94.56 85.57 86.95 52.22 31.89 21.77 72.93 5.45 54.70 64.55 63.99 38.75 22.33 55.53 68.47 -87.95 43.40 49.09 19.10 19.53 4.39 40.39 38.63 88.36 42.53 76.49 0.17 56.24 29.01 24.06 81.21 99.77 51.62 82.91 47.16 49.34 32.64 58.04 88.65 2.07 19.66 82.55 11.20 47.63 38.41 74.14 67.81 0.63 58.86 6.73 97.28 1.47 65.31 22.84 72.74 74.14 0.53 99.17 65.53 85.31 2.26 83.62 70.85 87.13 44.55 78.22 29.37 94.48 7.65 86.61 72.69 35.86 60.54 38.61 55.10 63.59 40.25 22.43 90.78 48.14 64.65 63.82 38.75 11.20 39.99 4.81 31.52 27.97 89.58 20.11 46.09 66.31 57.54 44.01 71.21 78.47 4.82 87.75 68.54 38.05 79.57 64.70 93.44 79.01 37.20 39.89 54.77 23.83 54.41 80.24 16.31 22.79 36.32 98.27 73.79 -65.54 64.76 99.21 69.52 58.02 52.99 15.90 34.17 45.82 18.63 72.94 30.83 55.29 86.14 56.91 37.14 18.71 57.87 37.32 82.27 32.66 74.91 43.00 42.16 23.54 60.26 10.00 59.62 17.55 11.03 35.76 49.67 22.83 10.58 91.94 8.78 74.61 21.50 49.21 53.07 44.58 78.29 24.21 16.59 21.06 69.46 73.25 78.59 19.81 55.95 19.76 32.92 67.77 97.09 1.33 14.34 67.40 90.65 1.46 79.52 17.23 11.81 81.69 85.83 60.07 93.31 3.81 38.26 10.29 10.83 84.30 67.59 97.19 84.93 20.46 25.61 48.90 87.12 30.47 27.16 16.46 24.66 4.41 9.15 83.07 27.37 50.41 17.91 56.61 28.24 26.11 60.57 71.72 51.54 83.90 69.36 22.19 92.88 1.98 9.39 -11.86 36.56 26.15 85.66 88.31 71.05 7.49 20.78 61.89 60.18 21.31 70.02 7.69 4.57 83.80 27.90 85.93 90.69 53.09 4.07 86.38 72.63 42.64 69.07 26.68 13.13 11.01 20.39 30.12 75.99 44.07 8.88 25.03 3.82 85.24 44.15 70.60 22.10 14.18 77.07 15.75 18.28 23.99 72.86 22.59 79.48 73.51 71.09 6.67 90.73 29.05 20.51 30.48 56.15 69.71 37.40 2.18 5.10 79.34 28.83 54.32 37.19 58.39 86.20 86.09 74.95 11.51 76.27 19.80 40.82 97.87 1.10 13.37 33.18 59.27 74.23 38.87 2.84 81.64 36.91 67.51 86.60 85.65 93.55 35.84 12.69 57.31 24.71 4.30 40.98 91.47 1.41 33.03 27.26 51.98 40.52 41.89 21.27 79.16 16.28 -53.55 68.13 51.24 60.92 57.76 57.91 9.74 9.84 30.07 75.09 9.75 40.33 21.33 14.80 91.56 32.44 89.08 16.13 39.40 39.64 97.94 2.37 80.16 94.43 51.52 17.09 89.79 29.37 76.89 2.14 51.59 43.79 5.46 10.66 84.52 3.70 50.27 1.38 9.52 2.48 7.78 85.41 35.56 67.91 1.81 29.43 25.48 72.95 21.33 29.50 11.47 52.58 3.63 59.67 39.68 36.59 27.32 68.51 98.26 1.64 65.32 85.60 90.61 66.12 77.29 88.38 78.45 90.97 80.13 36.17 43.83 90.51 8.76 9.95 10.21 9.90 7.13 74.07 65.94 19.66 45.92 27.10 38.07 66.75 4.01 47.17 27.29 65.46 71.88 72.56 46.94 68.75 92.68 92.27 41.88 53.89 11.78 33.39 42.73 96.07 -96.16 91.10 52.05 91.76 92.74 27.75 23.49 70.82 30.99 34.50 0.63 93.02 0.76 29.54 11.85 84.90 41.88 50.70 17.82 57.85 94.81 70.96 34.58 43.97 42.40 6.97 51.37 93.95 45.96 31.28 78.22 69.12 47.43 93.75 87.20 21.88 9.71 18.90 48.01 5.43 66.08 54.49 94.79 10.22 16.88 11.57 72.65 66.43 64.77 35.58 94.99 82.39 87.41 81.91 18.54 86.88 84.27 79.89 38.68 76.50 5.37 76.60 59.63 90.82 25.07 19.58 31.91 89.45 27.86 95.84 81.01 17.96 75.80 39.25 63.43 91.86 62.61 27.06 72.26 68.66 67.06 47.70 75.60 25.67 70.08 49.17 58.62 87.15 29.25 13.69 32.17 72.85 68.13 73.52 46.03 66.21 7.15 88.50 15.62 28.04 -81.74 42.68 80.94 27.01 95.81 63.06 93.43 86.49 84.70 4.97 7.90 52.21 32.88 56.55 9.78 55.75 38.71 62.39 76.28 78.35 1.38 20.36 74.90 49.36 47.62 30.36 14.42 35.42 34.59 44.48 11.01 79.05 55.51 72.77 11.88 44.80 71.07 40.24 4.18 33.46 70.93 36.48 38.71 90.77 67.09 83.82 14.56 61.69 86.78 59.93 64.19 53.95 82.38 14.49 27.94 40.21 80.42 4.23 58.21 69.87 8.79 15.00 51.16 56.66 94.56 2.22 81.71 89.06 45.33 22.65 77.59 51.03 78.67 77.12 73.40 56.15 37.83 30.02 9.16 6.47 42.95 43.58 97.75 13.28 55.97 3.82 72.58 66.15 23.47 26.98 14.63 97.97 31.32 16.71 76.41 68.80 42.37 85.56 8.31 83.37 -76.88 68.45 96.01 82.15 17.88 94.42 59.31 98.90 48.53 96.14 20.86 91.46 3.33 47.36 17.52 56.07 89.00 16.59 2.48 7.15 91.46 44.59 5.71 98.19 5.69 39.77 86.36 91.31 6.36 41.20 75.99 24.80 88.46 81.94 60.88 52.70 35.15 12.50 86.38 72.75 65.66 26.09 95.20 70.30 79.72 28.94 46.97 58.78 76.02 70.07 51.88 55.52 17.17 67.07 20.73 22.94 62.22 93.64 15.24 71.99 95.35 40.51 51.42 83.78 10.44 43.90 54.58 53.67 32.68 80.65 99.41 82.33 36.38 49.32 13.27 92.92 32.54 73.67 10.90 53.78 53.99 50.67 42.82 90.05 90.16 10.36 54.48 55.06 54.15 79.04 85.28 99.44 0.07 39.79 76.75 2.50 60.69 40.44 71.37 47.19 -64.94 9.52 19.93 13.67 14.28 92.24 4.24 51.95 91.39 32.07 1.37 56.45 5.13 31.67 60.34 56.35 76.43 29.20 57.97 28.51 2.00 77.25 92.75 62.02 94.87 70.96 6.67 88.23 32.15 25.18 32.09 11.38 22.16 86.30 40.22 45.42 90.06 44.58 69.50 89.21 6.76 83.59 97.30 40.53 51.11 56.08 98.45 71.99 65.66 94.75 1.44 85.73 84.80 6.84 39.13 86.36 70.54 1.09 5.23 11.43 46.50 14.36 37.61 57.01 85.94 92.58 50.04 8.51 39.81 14.80 35.16 3.66 48.22 5.25 70.58 58.21 52.11 84.27 4.75 54.06 0.95 23.43 32.93 61.01 20.66 23.18 93.57 94.15 26.93 30.05 50.23 8.71 65.13 70.61 57.06 28.11 43.95 31.46 36.70 17.67 -66.88 64.83 5.14 0.74 88.42 25.23 53.09 57.15 50.93 54.34 79.99 59.91 30.54 94.71 9.81 45.06 36.26 52.05 22.02 41.51 32.28 25.23 37.86 27.99 29.55 49.16 39.38 96.43 68.62 21.25 1.74 21.19 52.91 77.02 38.83 27.44 94.17 70.86 64.60 53.02 3.71 83.47 28.00 40.33 26.25 43.30 39.38 32.76 58.96 65.73 40.18 30.12 23.18 99.91 79.84 46.21 30.60 30.20 49.72 45.71 75.37 92.35 25.83 47.46 83.04 38.64 12.83 21.82 17.37 75.00 8.45 93.01 90.41 64.07 84.85 68.43 20.89 99.04 94.44 93.86 0.11 21.48 20.08 33.87 14.72 31.26 49.58 2.83 73.13 10.74 87.84 11.74 51.06 29.69 83.10 56.86 61.13 86.60 81.06 1.32 -41.98 40.98 43.71 29.60 74.00 28.96 58.42 22.11 28.22 68.88 71.87 24.55 80.16 42.79 9.75 52.75 64.85 39.48 80.28 44.22 94.45 19.18 82.60 3.65 90.07 35.56 4.46 98.74 74.90 77.32 46.00 6.18 24.38 47.84 68.87 60.99 89.70 72.28 6.27 94.40 90.45 28.11 40.89 58.50 57.55 62.84 50.03 85.23 12.54 18.58 76.15 62.55 0.93 83.00 28.24 78.36 29.40 36.18 21.14 4.42 97.86 83.59 3.76 88.25 59.13 5.98 38.05 96.83 26.61 23.72 95.66 82.48 82.17 17.88 30.53 11.79 64.07 86.55 89.03 53.90 33.00 28.07 10.83 86.12 87.35 30.36 91.24 22.93 39.29 34.25 40.38 50.90 99.13 59.55 18.47 32.19 46.59 57.12 42.17 79.55 -42.76 2.25 33.92 86.53 3.08 65.29 85.18 66.78 31.42 1.34 82.18 76.85 2.82 75.20 53.07 89.56 76.17 85.62 60.49 81.97 87.25 26.01 11.71 35.55 43.36 75.40 90.42 77.19 27.76 19.73 90.37 21.67 33.33 65.24 0.52 43.25 20.38 20.05 87.23 26.96 9.30 29.99 65.64 62.88 95.03 54.44 61.42 70.30 37.33 20.81 22.82 12.49 28.22 17.41 2.99 2.02 58.35 99.71 35.92 54.05 37.37 64.50 85.57 50.88 93.68 70.23 56.78 72.49 3.22 84.11 14.23 71.69 86.52 11.52 18.56 79.98 3.73 32.74 90.59 91.00 64.15 84.60 48.28 60.73 58.12 43.52 79.90 58.38 36.11 46.39 74.79 6.21 81.11 96.75 70.04 35.34 1.74 75.73 45.88 70.33 -63.67 49.27 76.86 55.56 6.23 71.00 87.70 12.99 19.75 19.59 0.48 74.41 50.49 8.78 91.53 1.11 23.80 69.59 16.24 4.46 88.83 94.75 86.33 86.85 1.88 95.88 9.28 69.07 25.99 51.42 69.04 56.94 28.19 1.42 74.64 91.16 58.74 88.23 82.77 6.21 48.25 10.53 64.56 34.86 80.20 3.93 75.50 36.77 98.11 81.79 89.84 42.50 88.83 12.99 39.77 65.85 46.37 8.89 47.92 57.62 71.07 57.96 40.62 59.59 66.51 67.68 91.31 35.30 36.54 71.69 97.71 72.52 72.35 15.40 68.46 74.73 56.10 24.91 58.66 23.81 63.26 92.34 89.10 85.61 23.59 91.77 67.62 61.22 42.29 57.28 95.79 15.01 21.09 19.41 34.24 68.37 53.55 98.75 88.74 94.60 -62.79 64.49 84.76 64.73 8.56 36.49 16.87 65.42 83.63 38.60 23.31 55.91 51.77 18.46 20.29 5.49 24.71 79.28 85.17 24.11 10.78 82.86 9.80 87.95 57.00 13.85 62.72 90.68 86.09 28.37 50.71 21.59 65.08 24.57 34.21 58.83 74.97 14.31 5.49 40.48 97.61 28.28 84.66 21.53 47.08 85.48 5.20 55.98 8.12 30.75 38.33 85.32 94.57 63.47 10.10 77.70 66.16 69.76 71.41 83.24 61.84 22.12 88.13 0.71 12.13 42.91 3.52 52.03 58.59 15.44 73.80 6.15 33.14 8.99 16.09 15.35 2.82 19.54 99.96 9.84 59.68 4.95 42.59 80.35 19.06 69.09 23.16 90.84 32.83 17.12 89.02 92.46 18.10 18.63 26.78 94.93 7.69 99.91 67.70 74.74 -64.54 21.53 25.22 34.72 49.35 17.73 5.77 64.21 15.30 0.50 86.46 97.02 58.04 56.34 53.25 22.00 35.37 0.30 50.57 19.43 91.29 19.13 65.51 44.50 96.57 61.22 18.27 91.95 19.11 2.88 20.46 76.85 6.30 36.95 41.67 4.10 23.29 28.27 24.06 92.75 67.58 83.60 68.32 53.37 87.76 41.80 98.36 44.51 99.49 80.88 35.81 15.57 73.89 53.89 34.17 93.67 23.62 17.07 48.26 65.71 64.10 63.26 54.70 53.68 50.73 92.45 4.34 45.24 68.06 35.25 19.61 64.79 42.99 32.93 57.02 27.05 99.99 78.29 71.42 96.37 60.21 48.88 17.17 56.47 81.77 87.24 2.31 49.03 17.80 41.62 47.53 25.41 17.13 31.48 87.03 43.29 39.28 22.70 78.83 86.56 -72.65 44.05 1.56 44.83 8.51 8.70 11.71 37.19 57.23 21.26 78.50 72.13 4.56 39.36 42.13 2.31 25.58 72.80 99.07 46.26 17.51 58.75 70.73 9.81 39.60 59.65 8.07 51.48 15.73 82.13 95.83 42.63 78.43 1.74 48.54 50.14 40.53 31.87 23.38 88.77 96.42 51.04 84.01 16.81 92.99 11.27 22.75 44.44 77.94 95.89 37.59 20.26 25.99 46.17 81.81 92.77 26.79 26.31 41.11 94.44 10.92 53.51 34.44 28.19 40.75 59.31 81.28 86.11 0.32 39.53 79.98 23.65 55.69 44.81 55.85 80.05 99.77 19.14 1.76 57.18 70.10 6.92 67.20 46.49 36.08 60.03 0.31 39.38 64.32 97.95 83.21 4.93 90.85 49.09 24.32 26.19 43.48 5.00 81.12 55.08 -6.11 82.83 90.48 79.41 15.84 12.95 60.19 78.94 84.03 69.88 21.16 89.19 73.32 20.77 91.67 46.96 44.63 43.41 45.52 14.61 62.25 61.16 0.64 69.54 50.21 24.15 0.25 60.87 79.22 43.33 50.99 53.75 71.36 85.25 86.53 48.88 33.78 88.35 60.67 88.15 21.26 12.19 57.55 36.31 90.99 60.50 90.93 62.97 99.08 14.94 45.11 22.85 36.52 35.64 56.16 24.71 15.73 55.05 6.21 24.03 69.08 5.77 32.27 99.57 74.77 80.33 77.33 46.71 73.41 97.42 4.27 2.42 7.77 0.03 15.35 86.29 5.63 10.62 55.09 3.63 28.00 50.90 76.30 65.74 81.90 66.51 78.11 65.52 81.54 8.13 27.02 91.51 40.30 30.97 17.73 32.30 44.63 50.12 56.34 25.36 -95.71 49.56 39.64 39.57 54.61 48.93 3.48 84.06 28.02 60.95 15.13 96.01 59.86 45.83 97.42 78.86 13.65 18.49 30.03 22.27 16.23 64.31 87.96 8.72 13.64 70.54 15.00 61.52 86.72 44.86 50.72 25.66 97.05 82.38 36.75 74.99 0.69 22.54 32.79 99.48 80.70 43.00 79.29 41.91 5.15 6.56 16.05 49.91 96.17 8.15 24.00 71.36 70.79 31.58 46.58 49.49 48.79 69.22 51.89 35.28 48.09 36.63 40.83 42.04 82.85 25.52 7.51 78.37 38.97 56.46 91.44 5.42 40.84 6.68 85.19 3.31 24.84 10.62 27.39 13.48 32.23 96.01 79.81 81.87 26.09 77.27 45.73 37.69 64.01 69.47 43.90 48.03 66.47 18.95 7.19 48.13 32.85 60.53 1.26 86.62 -17.00 75.39 90.60 21.06 42.95 52.38 65.23 35.60 42.57 2.87 58.70 17.52 18.90 40.31 26.79 56.65 4.80 64.68 37.19 88.77 43.99 78.10 54.70 21.84 6.61 27.98 79.42 7.65 51.45 76.28 91.78 49.93 80.09 16.19 34.11 85.16 24.39 20.45 73.90 27.48 24.76 84.15 12.99 23.85 0.04 98.28 59.89 24.40 73.41 55.21 35.55 96.07 33.67 26.51 6.14 72.92 46.37 51.93 36.19 18.96 0.43 49.14 39.02 2.99 13.49 74.57 97.89 56.96 1.78 75.73 74.54 21.64 52.44 44.02 91.78 54.53 35.63 86.75 3.14 76.95 55.70 83.31 99.37 14.31 63.75 30.03 54.84 19.21 35.92 70.81 92.83 3.39 48.95 63.01 28.00 43.10 94.83 24.64 54.24 74.75 -44.59 14.23 60.58 43.35 17.03 14.51 52.37 21.08 45.64 96.79 66.11 2.27 46.99 16.58 39.22 89.45 77.77 31.51 39.65 51.81 64.57 7.62 21.73 34.93 8.11 3.82 64.93 65.24 76.67 82.63 65.99 79.79 57.43 78.04 24.67 61.83 67.36 56.99 77.31 93.12 79.31 34.92 36.90 62.54 47.83 43.74 48.18 98.12 10.80 59.32 15.58 65.24 77.28 97.41 30.77 47.98 14.52 58.92 65.01 96.93 23.69 41.73 30.86 57.51 38.48 99.70 57.79 19.76 46.84 57.92 96.93 50.86 81.50 57.25 11.01 46.95 89.47 78.19 25.00 74.00 20.32 7.87 89.44 41.32 59.25 64.04 64.80 14.37 28.78 80.57 44.85 71.37 89.65 2.59 96.10 85.01 93.11 72.56 52.00 87.37 -74.21 36.45 5.51 29.64 27.28 33.37 0.74 25.17 76.70 77.15 87.89 85.00 90.27 48.85 77.85 6.75 38.83 94.97 60.12 11.23 6.16 88.07 74.61 31.98 74.08 72.96 19.03 13.60 79.57 91.98 24.37 10.84 42.54 74.43 79.52 18.14 35.11 36.27 31.34 36.06 21.46 34.39 42.19 5.27 86.91 41.81 22.42 89.12 38.22 16.24 1.26 26.95 99.29 32.01 86.25 77.54 44.25 99.68 29.09 91.25 89.57 36.11 48.37 10.65 16.07 29.62 52.48 29.67 29.30 51.51 85.53 43.80 56.90 32.88 5.33 59.76 14.21 0.67 4.66 37.12 80.94 54.71 29.19 92.12 47.00 48.89 64.46 71.13 62.30 22.46 34.32 82.03 73.83 64.73 9.17 44.23 59.91 98.03 89.07 2.83 -41.06 13.56 17.68 51.42 0.37 65.21 67.44 39.31 70.86 35.65 27.93 23.57 89.50 52.06 22.14 64.29 83.99 67.19 27.69 47.28 68.23 45.67 30.01 48.99 51.88 17.60 16.66 14.55 51.96 4.87 77.85 91.11 9.68 35.55 18.30 34.37 70.59 57.33 15.37 14.84 33.38 4.17 98.74 99.95 19.21 4.31 64.36 52.82 1.73 48.83 24.68 13.99 44.12 94.69 17.89 30.60 42.81 29.96 3.39 80.86 92.28 37.45 17.08 87.03 40.09 70.23 79.09 32.52 26.05 96.22 14.22 76.59 49.67 91.41 15.72 57.86 43.29 7.81 83.54 43.46 40.34 50.46 48.93 58.99 57.26 33.51 19.52 10.25 16.54 22.03 16.91 87.85 99.66 46.41 37.25 20.91 39.53 71.58 98.80 11.52 -35.69 0.13 99.63 34.22 20.29 73.26 38.81 72.25 13.48 97.08 87.90 17.84 33.18 44.44 42.37 33.68 54.53 99.07 33.98 8.93 34.35 55.06 94.45 12.49 34.73 8.80 53.91 81.12 16.05 40.44 24.78 3.71 70.69 17.09 96.74 55.27 17.29 83.04 57.94 35.23 3.30 88.66 19.95 20.86 29.14 20.34 35.63 63.11 70.58 13.46 71.79 57.57 60.68 69.09 84.51 94.17 5.95 97.52 40.85 33.13 50.78 21.21 69.13 63.83 34.76 7.47 6.41 71.35 44.67 87.34 94.37 70.55 23.73 16.29 36.35 42.88 63.58 42.29 60.58 8.89 77.04 5.82 29.32 42.92 83.29 64.66 35.95 79.66 89.32 6.50 51.25 92.13 9.49 31.97 88.69 8.96 1.76 79.40 83.17 0.29 -53.65 46.03 37.05 34.65 99.63 49.19 7.04 60.59 64.70 63.05 38.18 32.88 33.98 45.77 10.87 28.83 87.38 34.96 59.63 50.80 66.41 82.85 1.16 95.72 64.30 46.89 10.60 87.45 80.13 67.00 45.09 68.52 72.22 69.53 20.39 54.82 67.47 38.50 90.33 21.95 92.82 50.65 83.84 45.36 99.98 69.95 34.27 31.76 80.18 96.58 76.90 64.54 72.23 71.68 39.71 35.26 11.82 71.59 87.62 9.58 69.00 88.14 70.13 87.94 83.13 36.96 12.90 84.93 16.03 82.13 44.80 83.98 6.58 32.65 50.95 61.44 11.30 62.45 46.46 37.34 82.75 45.78 83.22 77.57 63.45 47.35 72.80 64.08 78.75 68.05 24.19 82.12 18.16 34.43 43.19 84.90 10.27 41.79 97.54 50.00 -36.98 17.52 0.15 83.52 19.87 63.57 69.95 22.64 89.80 41.09 48.55 77.65 92.59 44.30 38.37 83.72 71.00 20.49 1.55 28.57 13.92 36.76 37.49 63.59 3.33 2.93 11.72 43.84 8.23 18.50 13.09 93.54 65.87 26.25 72.27 86.59 43.64 32.19 73.94 64.88 24.28 38.10 38.04 92.43 27.53 63.75 74.65 95.67 90.00 33.76 78.79 13.61 67.13 94.70 59.84 87.81 35.55 38.28 55.72 30.76 93.21 19.41 92.61 20.36 41.82 33.03 63.85 37.96 20.12 23.26 99.93 92.31 77.44 77.50 93.00 89.84 34.06 36.95 60.30 62.82 34.78 38.24 39.18 71.25 24.90 11.01 15.13 49.14 65.57 60.20 19.88 77.49 68.71 80.00 43.08 33.74 71.07 29.19 78.87 80.11 -68.01 64.24 35.27 94.89 10.47 17.54 90.88 39.92 44.32 34.86 57.29 75.09 21.88 93.82 82.94 88.07 87.12 24.94 79.01 90.95 76.03 99.78 15.29 96.17 67.03 17.04 6.39 10.37 87.44 14.81 99.98 8.31 89.76 0.72 67.52 51.69 90.88 80.41 27.98 53.53 57.09 73.35 85.51 28.92 43.20 99.89 90.71 39.45 55.33 9.30 75.83 15.03 83.83 21.91 77.75 85.73 52.23 34.49 78.14 85.85 41.45 22.12 11.97 45.36 89.13 94.05 75.07 69.20 28.07 87.32 62.30 6.26 90.47 79.23 86.73 49.47 46.65 9.82 73.42 13.40 6.02 82.17 12.11 60.57 13.85 11.38 51.25 66.62 58.63 72.54 84.85 17.17 24.87 21.86 22.53 0.93 22.98 6.01 47.00 87.14 -58.19 35.80 93.86 26.03 61.17 8.34 98.41 36.74 76.08 81.11 83.99 54.29 82.13 27.52 83.15 25.42 25.07 31.46 83.13 59.07 30.80 89.72 54.62 17.43 79.73 30.71 55.93 7.65 42.81 28.41 86.01 63.76 34.36 52.88 51.76 2.29 70.88 37.93 80.45 46.96 43.17 48.10 55.00 49.85 62.81 84.75 10.71 14.83 32.37 35.56 89.29 71.47 36.53 82.56 17.83 12.95 44.92 36.98 22.18 93.98 60.56 75.37 56.59 16.13 45.41 37.20 18.22 57.06 7.17 12.59 52.80 67.86 78.22 73.96 80.75 67.49 99.40 42.36 94.61 62.98 43.94 81.49 38.18 44.00 70.17 8.90 35.59 45.88 34.12 16.53 22.90 6.62 79.97 2.28 31.29 45.18 17.21 81.47 61.19 8.94 -37.91 97.26 48.43 38.13 2.84 11.96 84.70 72.34 21.89 59.22 99.14 36.70 50.61 51.26 95.63 2.02 40.16 20.92 11.88 9.40 16.45 42.28 30.68 95.46 16.95 65.77 12.25 96.97 8.67 71.17 60.21 24.20 25.82 31.11 99.23 85.43 22.85 61.09 65.95 56.73 84.88 61.68 1.32 51.38 55.58 11.40 69.38 87.00 63.57 28.06 86.35 96.64 39.62 57.42 46.26 10.98 28.70 49.80 76.81 70.74 48.39 25.52 17.17 21.22 70.34 10.52 94.79 18.98 67.53 73.77 58.54 65.29 81.68 37.63 48.77 33.90 46.12 97.60 86.49 59.60 62.70 0.21 85.92 93.81 42.00 79.42 49.18 86.43 67.37 2.47 89.81 25.30 41.81 41.49 92.03 35.15 60.25 77.81 96.50 27.21 -83.31 88.61 87.30 40.02 65.47 63.03 35.00 4.79 56.02 97.78 93.98 51.19 30.54 71.74 90.65 69.63 52.44 78.25 15.93 34.14 0.99 76.47 89.65 13.40 93.58 82.70 16.21 54.37 10.93 76.83 15.62 62.41 40.59 64.22 28.94 0.95 18.63 61.73 42.22 81.27 47.39 13.90 90.51 61.76 31.09 66.94 44.96 69.20 60.97 14.85 4.83 77.09 57.07 41.86 48.26 25.72 88.91 60.61 28.67 58.41 82.72 78.95 37.69 60.81 23.66 22.47 96.78 62.26 23.12 77.33 55.58 43.18 51.79 55.46 32.37 30.62 80.32 25.08 89.67 24.27 7.08 98.61 56.27 80.30 75.16 60.20 26.73 33.96 80.67 54.99 46.50 32.84 45.12 4.82 68.68 24.54 62.91 38.60 65.63 9.12 -85.12 59.96 93.42 66.73 71.50 49.76 59.60 73.68 52.10 49.14 35.43 29.47 64.13 8.76 37.05 74.32 7.52 65.38 94.28 74.22 32.47 51.75 43.34 84.78 47.90 21.72 19.10 63.71 14.88 75.69 25.96 89.16 48.89 48.75 40.65 78.29 27.35 57.36 6.41 60.43 81.69 58.59 63.48 71.06 54.92 43.32 10.79 71.71 81.16 60.30 99.40 84.03 5.63 18.09 95.09 82.99 5.20 89.42 89.61 98.28 80.32 45.42 94.02 56.86 12.82 0.40 21.55 9.51 72.24 59.81 61.17 6.88 88.53 64.60 41.28 41.63 75.26 28.45 34.04 78.04 90.29 92.39 89.28 61.14 86.83 3.11 14.86 96.37 72.39 23.59 16.32 79.41 43.77 10.32 82.02 68.18 56.37 44.28 61.23 75.63 -27.77 38.81 61.80 19.22 98.93 30.58 39.58 18.32 82.95 94.33 2.32 34.27 74.38 23.23 85.22 12.58 52.33 94.61 0.10 62.97 5.14 99.04 87.33 74.11 87.33 56.76 24.93 84.72 79.37 24.43 29.92 72.78 13.88 92.74 79.12 93.87 6.15 28.90 67.36 61.62 86.33 42.02 69.04 60.33 36.37 37.02 3.11 46.80 73.82 73.65 73.65 23.05 2.55 18.87 54.65 18.09 24.33 34.00 53.82 42.09 63.39 2.03 35.90 98.39 83.16 44.03 82.85 38.40 1.76 47.01 42.94 44.08 31.66 37.83 52.09 76.50 16.18 53.75 42.71 52.38 27.32 94.09 86.68 99.71 78.56 70.66 51.00 51.45 14.85 45.38 60.28 60.46 79.24 8.84 73.96 41.93 45.34 61.51 88.09 54.70 -46.45 77.49 11.13 55.60 12.50 90.04 55.30 49.19 63.14 56.73 5.96 21.03 82.67 59.69 13.72 61.11 34.87 1.64 24.68 84.69 71.39 16.55 97.79 24.04 20.10 28.37 47.75 84.98 67.98 54.24 39.89 39.79 28.77 48.71 41.46 53.22 50.51 19.10 14.33 28.16 90.84 86.95 90.04 34.71 74.12 78.40 85.41 57.19 77.95 92.02 84.31 96.97 11.60 92.97 20.31 62.96 86.11 30.90 83.92 53.08 47.18 29.71 59.58 61.75 66.77 45.58 57.13 90.35 21.07 46.43 76.99 67.67 92.64 87.35 96.17 1.11 93.24 83.07 90.83 68.99 32.22 34.12 61.34 49.36 17.25 18.63 78.93 41.07 93.85 48.40 44.10 4.75 1.81 56.75 90.30 12.08 22.69 15.00 38.98 3.38 -32.55 63.49 20.85 83.17 43.53 59.42 69.99 51.94 74.57 15.54 23.48 22.23 10.97 65.11 80.17 18.16 42.71 3.89 92.34 97.86 88.81 48.63 51.80 67.96 41.61 19.46 84.92 3.73 98.30 43.67 72.66 24.37 38.65 92.23 80.72 78.87 90.98 9.77 51.88 19.68 64.21 11.01 60.52 30.38 60.28 17.85 94.92 83.39 92.60 44.48 17.72 69.92 72.20 70.33 44.59 92.86 88.95 25.80 76.38 0.17 22.19 25.39 92.73 32.08 45.79 43.77 73.83 59.56 96.17 6.64 73.74 93.92 24.28 65.90 12.01 83.46 28.88 54.00 39.02 17.40 97.46 37.14 7.77 70.51 53.50 80.72 81.14 82.99 98.11 23.91 20.78 2.93 54.78 75.24 71.38 94.06 40.69 18.18 95.71 31.21 -80.85 46.29 28.50 3.95 39.17 90.56 9.67 4.07 90.13 44.27 45.55 35.98 90.52 65.29 34.38 56.42 33.64 35.45 74.95 11.67 0.56 6.70 33.42 31.00 9.07 26.95 29.83 33.40 60.22 32.54 32.80 45.79 82.26 27.37 8.05 80.84 72.76 24.93 13.62 43.98 46.63 47.37 64.46 2.12 41.89 69.27 18.26 45.10 2.04 37.50 99.79 15.64 5.36 68.77 34.75 41.87 35.19 61.56 9.31 85.00 0.49 39.61 76.17 83.16 43.24 41.89 29.63 78.06 39.23 86.00 99.16 17.00 7.88 78.29 66.81 33.04 60.11 26.83 71.31 53.85 48.04 36.43 83.20 62.98 5.01 37.95 70.35 99.83 26.58 97.55 4.40 19.28 15.28 62.48 94.56 7.72 49.98 84.94 11.75 99.20 -21.57 82.28 52.66 65.48 35.89 99.08 25.41 0.88 68.72 89.45 13.57 62.67 30.55 58.22 83.72 30.55 11.36 79.40 35.89 39.06 26.18 4.81 40.60 80.93 77.49 52.02 83.71 27.15 53.63 62.98 31.80 82.43 81.93 48.56 29.76 78.49 91.70 68.37 86.71 43.00 68.15 3.12 20.85 22.15 26.81 11.66 6.65 73.03 2.84 30.60 76.53 48.74 64.92 30.44 43.71 44.78 34.40 76.07 66.04 21.96 76.13 30.85 86.25 95.13 39.13 96.26 30.08 34.29 62.95 52.40 37.61 10.11 9.30 72.90 86.53 95.59 87.71 37.74 98.39 39.73 72.30 69.11 27.71 26.35 71.30 67.06 63.46 77.29 14.55 92.22 52.72 97.55 89.99 67.52 35.55 95.09 29.78 60.50 20.66 42.92 -46.46 98.62 66.95 69.66 80.62 32.57 15.32 77.04 96.26 36.13 14.68 67.57 63.82 22.07 52.38 24.07 87.51 58.16 17.40 34.78 4.34 5.60 33.37 69.87 49.62 49.18 48.17 94.14 68.37 44.29 85.07 90.15 3.79 48.76 49.38 28.94 79.86 53.38 98.31 96.23 82.41 9.46 51.46 6.50 82.44 7.65 71.71 7.46 45.84 5.67 79.95 17.32 73.60 0.26 22.97 17.32 31.12 52.27 64.40 31.73 39.73 93.33 95.58 99.66 99.86 46.45 77.69 21.54 94.54 21.96 85.11 98.63 34.74 20.80 73.21 44.13 40.02 73.40 12.73 98.87 74.48 13.16 31.00 7.29 53.13 8.51 2.95 36.59 86.90 54.40 99.36 37.33 87.50 30.81 78.72 91.17 29.04 16.76 12.33 27.17 -74.38 44.19 42.79 88.90 50.18 52.97 26.44 94.75 53.48 55.17 26.07 66.17 96.13 4.38 10.03 5.33 34.04 86.25 90.05 40.46 17.50 41.75 29.97 85.15 11.83 53.54 65.84 7.13 69.58 90.30 96.60 73.61 41.30 56.24 39.31 32.72 93.98 81.40 16.81 99.31 61.72 37.46 8.58 13.11 21.00 91.43 86.69 73.18 40.17 13.30 33.60 33.97 43.02 35.05 35.57 22.40 15.11 93.86 56.98 46.02 53.01 83.21 0.24 76.83 95.53 72.83 50.30 85.45 30.09 78.30 45.46 32.76 83.68 82.51 21.53 13.35 13.16 13.24 24.44 96.69 70.04 69.96 41.77 45.54 37.98 67.70 70.02 73.29 46.43 28.01 11.39 66.53 8.69 33.90 58.25 39.77 35.11 37.45 66.53 67.47 -78.00 5.22 10.94 10.05 33.13 19.41 31.80 39.26 12.74 68.24 5.24 12.93 68.05 83.19 12.65 22.40 71.78 4.38 38.85 96.98 42.46 2.51 13.98 27.23 63.18 17.97 4.41 93.86 47.63 19.51 4.29 46.25 27.93 6.62 30.12 58.41 68.06 10.73 8.27 8.48 8.28 75.21 0.25 18.66 43.63 39.02 66.89 41.13 59.29 23.44 14.99 45.67 90.64 69.37 67.18 22.38 1.55 92.07 7.48 77.21 11.08 73.24 97.20 77.93 95.68 94.68 98.93 32.49 34.70 97.47 15.80 71.20 6.71 53.73 8.90 70.64 47.00 6.75 32.79 25.22 29.44 44.73 75.12 65.96 93.59 28.83 70.93 9.99 93.73 70.13 95.90 84.34 69.66 31.61 68.72 64.59 73.28 68.58 0.37 19.55 -47.57 4.03 42.31 11.48 99.18 95.45 17.43 20.13 31.19 38.93 41.61 6.89 64.15 37.53 22.63 77.78 18.84 70.45 57.94 87.79 31.82 21.96 10.94 17.09 25.45 50.09 71.30 15.21 90.31 0.39 68.47 86.28 89.92 8.74 35.08 69.56 76.40 10.82 73.97 13.25 96.78 66.33 72.69 87.98 32.63 94.53 2.31 26.04 21.05 48.14 52.17 68.90 49.13 79.38 11.29 87.40 43.62 44.01 8.56 15.87 42.27 94.73 84.07 40.67 56.30 51.22 11.45 4.16 90.14 6.62 59.05 15.46 66.63 68.29 28.53 46.16 90.69 21.98 20.95 16.64 49.69 75.05 22.69 61.45 97.10 97.01 6.81 23.72 67.92 48.81 84.64 30.68 26.40 95.69 86.48 33.31 7.50 15.63 92.16 29.12 -54.51 90.54 53.96 46.14 99.20 39.99 46.24 10.34 59.98 22.58 75.87 68.24 98.27 9.56 35.14 58.10 39.59 58.41 23.15 54.08 11.04 81.90 33.98 62.07 49.57 72.44 74.06 78.58 82.45 31.47 94.70 64.99 53.20 4.64 88.93 94.59 84.17 76.79 96.67 48.67 18.80 47.15 2.65 88.44 89.86 62.21 26.64 56.04 33.56 11.75 54.69 86.79 87.90 51.93 30.73 16.03 57.03 19.87 57.10 54.31 39.26 98.99 12.16 57.40 30.38 9.88 15.78 45.23 58.34 70.80 82.58 41.28 41.97 19.86 48.07 77.15 32.84 18.94 15.79 1.31 35.81 97.65 5.10 83.58 17.24 58.28 87.38 30.89 45.78 39.57 92.51 38.82 83.81 2.54 30.33 68.36 62.54 7.94 9.19 69.20 -49.96 22.09 95.30 20.36 18.30 54.55 24.46 1.62 13.01 29.50 99.88 69.60 50.40 7.70 83.82 35.12 63.55 22.27 69.35 55.99 97.98 72.85 59.15 80.38 60.15 88.78 31.34 52.24 23.94 74.12 6.42 14.70 16.35 54.43 81.72 35.59 79.13 1.25 57.78 10.12 93.70 22.77 8.59 35.66 76.95 11.81 59.69 44.04 78.50 66.02 20.80 68.81 84.10 87.35 41.31 33.92 30.04 41.53 50.46 66.66 28.15 97.52 81.95 27.07 40.80 63.12 67.60 56.23 99.14 30.66 16.11 88.38 64.23 86.26 90.18 87.58 34.29 10.01 77.87 6.86 20.86 83.84 8.94 61.53 39.02 1.34 9.10 79.30 94.82 90.98 42.72 67.10 6.29 82.84 73.84 91.24 69.03 81.19 78.39 71.28 -79.86 4.48 10.45 85.92 37.80 45.81 7.93 13.99 14.60 58.10 29.07 46.95 16.31 25.23 44.38 86.12 31.43 35.40 72.36 39.14 52.23 53.61 82.12 67.77 32.86 57.47 45.53 40.83 90.43 42.70 45.62 87.92 60.24 20.95 94.57 30.02 73.61 13.33 35.21 47.33 72.55 88.75 46.81 28.19 33.16 2.14 53.73 61.17 29.60 45.51 80.65 66.10 71.68 33.46 58.55 14.34 56.27 6.15 71.98 12.05 77.53 53.83 17.48 99.83 79.79 83.92 98.58 42.84 68.39 62.58 53.16 15.73 87.59 55.91 47.17 69.07 30.01 60.00 22.64 82.08 18.23 36.46 54.30 56.99 29.55 20.68 55.59 4.51 68.60 73.84 29.53 24.17 18.11 62.41 5.72 74.51 27.89 81.06 83.11 44.37 -45.51 89.25 24.90 6.12 23.47 43.78 6.81 8.39 80.85 92.68 58.18 22.34 90.89 30.63 87.19 42.43 9.66 13.00 62.46 42.08 28.57 27.00 7.87 46.64 48.23 59.92 79.76 25.43 80.62 74.49 29.91 80.36 25.82 94.36 73.79 13.31 66.67 34.07 35.24 0.49 30.69 52.20 33.41 19.52 12.23 93.64 40.24 34.19 24.48 32.94 9.59 47.96 73.70 2.22 74.59 29.62 67.43 6.45 18.63 71.08 33.51 74.41 7.32 78.50 4.69 93.19 66.25 34.70 50.31 24.80 34.64 87.11 89.99 6.67 34.32 35.61 38.81 87.01 62.83 2.92 99.37 61.02 89.76 52.67 4.84 99.88 69.02 87.06 76.19 65.34 28.17 33.08 44.77 2.31 40.10 62.87 31.41 9.83 7.27 55.04 -20.34 8.89 25.02 32.70 88.10 47.88 31.76 46.77 48.22 96.08 13.68 17.69 59.84 34.81 76.10 41.13 37.32 44.39 71.69 53.18 86.28 99.83 44.07 27.42 90.39 20.14 45.85 38.17 31.43 80.04 43.12 62.82 19.47 19.43 24.26 60.01 77.29 85.44 74.40 91.49 91.82 59.15 14.39 3.89 95.58 1.27 71.93 82.93 48.50 72.13 50.87 7.08 63.79 70.28 35.84 63.79 22.40 82.78 53.88 63.13 91.14 76.41 59.34 0.20 85.11 26.07 53.79 51.69 10.78 12.52 97.80 60.98 70.96 67.96 3.33 97.01 11.31 39.53 10.61 45.68 55.92 1.78 57.46 95.13 38.24 66.94 98.91 87.38 58.80 84.60 58.14 22.43 20.77 54.26 59.08 20.33 74.63 48.53 35.09 59.67 -48.90 76.35 19.03 78.15 36.82 88.35 44.56 25.00 77.66 93.34 16.35 77.05 49.80 38.12 25.52 86.19 0.32 62.98 64.44 71.27 87.48 7.12 40.59 82.99 3.57 46.29 74.32 95.26 94.10 98.43 55.36 29.33 41.64 63.88 11.82 44.38 26.73 9.85 28.67 58.29 95.82 55.00 61.42 15.26 73.35 17.48 66.65 1.93 32.37 79.61 62.47 89.30 27.33 19.50 15.13 27.55 5.22 3.41 11.98 95.10 62.74 88.04 71.69 18.50 63.87 18.93 40.97 62.73 58.59 99.65 17.78 80.72 22.13 20.58 57.65 13.58 14.59 81.91 77.52 24.06 63.46 8.25 44.33 66.81 1.71 82.54 10.19 25.69 1.72 97.44 81.41 84.35 54.92 43.74 15.63 47.56 51.23 96.24 52.37 61.81 -17.02 26.87 74.65 13.77 64.95 20.62 49.24 14.60 64.04 75.79 24.94 33.50 29.51 13.72 97.09 9.81 95.30 79.00 3.10 59.58 28.43 78.06 50.43 66.55 52.15 41.12 11.71 78.09 6.21 67.34 45.59 85.93 52.23 2.59 86.86 25.36 27.88 21.85 85.02 85.12 39.18 48.40 72.38 24.92 54.05 6.61 69.37 84.34 85.32 55.17 93.38 1.67 30.60 5.02 18.81 66.11 25.83 27.12 96.14 82.31 13.93 80.44 42.13 48.61 6.72 42.52 69.27 8.22 41.98 46.99 58.27 33.04 7.51 17.68 43.41 43.59 61.88 39.35 49.41 20.12 2.09 58.56 36.52 56.39 24.58 17.73 41.03 21.16 76.76 79.70 85.37 30.14 51.96 62.89 92.71 59.22 87.23 4.76 49.07 12.00 -85.75 93.19 69.63 8.45 79.39 71.99 96.14 85.34 70.04 67.39 26.58 75.88 10.22 39.98 81.88 54.73 64.12 43.08 94.55 24.33 23.30 62.24 18.68 91.88 81.07 22.03 67.93 4.83 75.56 92.71 76.87 93.16 0.98 29.43 86.97 85.64 43.97 20.04 91.93 2.13 52.99 97.70 59.49 73.68 9.13 96.32 60.42 4.33 66.98 25.21 4.50 11.02 78.64 60.02 52.01 68.02 80.21 61.66 49.98 77.60 64.40 70.85 18.67 30.18 72.37 82.56 33.64 48.47 16.45 94.78 19.17 86.83 54.09 3.31 14.31 27.77 92.88 47.83 52.08 82.99 8.57 15.47 78.15 27.47 73.94 33.39 93.56 31.33 65.52 76.90 58.22 98.15 9.97 74.01 74.59 46.55 6.51 51.09 96.40 2.87 -22.02 82.46 69.31 40.16 94.27 7.89 95.29 45.61 93.39 48.85 80.72 54.43 14.65 71.19 52.18 59.09 68.78 41.81 68.36 11.39 56.15 24.78 55.98 55.65 55.94 47.29 16.93 0.44 89.97 44.98 56.28 98.46 1.08 92.31 58.63 90.59 12.25 20.35 70.12 66.96 45.11 98.91 59.39 36.84 56.24 49.16 62.20 73.68 55.42 94.15 56.78 81.83 69.54 42.79 20.45 35.66 55.41 58.17 51.07 65.54 50.73 72.98 64.34 76.49 57.89 34.66 16.13 20.32 43.94 43.57 51.60 4.97 90.69 26.34 65.99 22.24 2.22 64.20 60.27 93.30 49.64 21.94 12.88 34.16 79.20 3.87 49.45 82.00 7.95 64.83 75.58 84.65 21.08 93.12 58.28 45.70 13.46 10.62 47.11 95.20 -97.02 36.10 43.46 72.85 19.32 89.97 67.34 89.34 95.79 66.88 9.36 51.13 46.90 19.91 6.82 27.61 47.13 59.67 48.51 5.91 10.92 10.87 58.32 23.14 51.91 83.49 19.11 55.99 55.68 82.34 12.57 80.81 76.37 82.07 57.27 99.67 18.78 79.25 93.10 1.45 70.71 99.19 37.77 53.35 1.41 31.85 81.71 24.36 44.49 89.40 75.76 78.05 60.50 97.36 23.97 92.74 33.35 82.65 39.98 0.51 76.72 39.04 14.12 8.65 13.60 51.81 16.45 27.25 45.98 87.51 56.09 28.43 70.55 10.75 39.30 73.85 98.19 37.76 55.61 54.51 8.54 96.48 89.08 6.61 95.73 61.99 32.63 97.35 20.48 75.46 84.83 31.07 79.32 15.41 94.44 14.34 68.01 9.58 56.54 21.76 -9.94 33.43 0.83 20.73 75.10 43.63 33.20 63.50 1.08 40.00 35.51 36.94 42.67 38.26 3.10 86.41 17.34 58.24 67.55 4.16 3.45 31.80 41.45 38.18 67.82 77.94 9.77 14.01 71.60 86.32 48.15 90.20 81.19 40.61 66.81 99.49 64.92 45.15 1.26 10.84 43.85 11.75 88.00 20.70 92.18 24.35 12.28 37.46 97.44 81.11 71.93 33.95 47.96 26.36 95.73 23.48 17.05 85.06 88.28 11.02 8.83 97.20 11.83 94.97 44.97 41.17 78.24 32.34 91.21 50.35 10.37 95.89 93.78 13.35 10.51 19.48 34.68 65.63 19.74 8.63 50.78 57.26 73.13 60.13 32.54 82.73 91.50 11.34 42.90 12.77 6.94 78.98 85.06 20.96 37.05 97.35 57.05 45.83 40.63 61.55 -70.57 37.88 68.57 79.97 61.62 68.88 6.39 6.44 27.02 49.54 48.80 98.52 96.89 18.91 58.00 38.04 91.12 10.31 84.02 87.35 62.21 9.45 58.63 81.56 0.86 93.71 13.99 65.04 42.14 84.59 14.52 53.12 7.57 4.03 92.87 24.31 33.08 76.88 0.93 58.81 46.11 73.87 41.87 22.96 93.23 33.97 90.59 42.77 90.84 28.53 39.23 3.29 19.39 1.73 1.86 51.63 9.73 89.22 36.23 79.03 44.28 4.22 27.29 87.24 33.31 38.82 77.35 73.34 69.88 35.40 63.69 79.94 40.71 24.69 22.24 74.95 65.20 65.07 71.71 40.81 90.08 74.46 79.57 74.26 85.74 2.01 40.10 91.26 20.28 47.13 36.62 95.66 57.36 89.98 96.34 9.94 74.08 47.88 11.84 27.41 -63.22 68.89 96.00 75.92 85.83 36.59 94.69 89.59 96.81 61.16 28.85 18.31 77.49 31.50 96.92 94.16 80.34 67.02 57.43 28.65 6.08 37.15 5.44 2.24 28.72 18.48 0.17 92.43 50.41 90.59 14.10 52.08 0.20 42.81 60.37 25.90 16.38 24.66 92.97 1.17 51.99 84.72 78.16 86.28 27.08 92.38 3.31 24.06 88.41 79.48 42.45 88.79 74.48 88.49 32.27 45.81 82.28 48.60 66.70 40.59 30.59 38.76 50.49 18.97 40.45 1.18 98.62 2.41 77.74 58.77 61.34 65.30 56.23 7.78 80.14 39.32 94.91 52.55 15.26 35.17 21.86 66.86 51.17 53.37 22.16 29.86 74.22 27.83 5.88 43.26 49.13 51.37 57.59 29.32 22.69 46.73 67.40 99.02 21.19 78.72 -42.26 51.73 70.93 92.21 25.63 81.47 14.44 79.53 63.63 58.77 8.42 2.21 6.80 72.41 90.84 51.48 97.27 46.37 22.34 57.27 2.41 69.67 8.21 0.75 98.08 46.01 6.34 77.71 68.81 93.50 29.19 15.14 65.96 20.02 60.89 95.81 56.48 9.32 42.72 1.48 63.21 3.79 75.72 72.44 40.88 62.96 31.39 54.58 10.54 31.37 88.15 14.00 16.74 82.01 18.80 24.16 6.34 93.10 34.16 50.65 61.59 86.36 62.71 22.97 51.96 2.22 88.95 26.28 92.11 27.09 6.07 44.99 2.04 82.62 35.63 81.33 27.24 24.08 85.24 42.38 70.85 72.83 48.44 18.91 26.84 22.90 8.16 28.95 42.70 66.48 93.18 87.28 37.27 62.18 86.45 85.03 46.96 68.66 13.86 46.98 -46.32 85.74 81.23 12.29 96.75 30.97 65.05 34.25 80.15 61.33 45.92 36.14 84.71 97.90 49.35 28.26 39.52 3.16 63.52 75.32 45.64 42.34 19.58 17.60 46.54 36.35 88.11 55.27 19.90 94.18 68.02 23.93 28.41 56.56 39.19 87.06 88.12 42.12 85.08 86.02 1.60 2.58 53.41 81.82 49.33 84.34 47.49 22.00 1.94 46.79 12.42 24.41 32.99 31.10 28.56 33.51 22.18 24.32 48.66 42.76 93.18 60.06 62.82 20.28 29.30 10.11 13.12 90.17 79.47 86.90 84.75 25.23 42.34 75.70 61.07 52.46 3.58 3.80 56.90 32.13 53.69 18.37 85.56 14.91 42.80 52.91 77.51 49.17 89.35 15.84 6.06 76.98 14.79 57.74 40.76 67.44 63.90 36.75 9.87 97.30 -27.87 35.69 15.88 30.27 45.54 43.95 2.23 5.67 69.02 48.80 86.81 84.61 92.35 30.67 28.58 61.80 69.67 22.62 59.39 45.50 10.23 85.42 65.07 91.10 34.52 8.59 56.04 95.37 10.76 12.81 52.95 23.33 25.51 21.66 77.20 79.47 54.59 73.37 35.64 95.10 76.32 35.87 85.73 6.09 72.56 59.73 42.71 15.24 23.50 81.52 64.36 9.75 42.27 56.23 26.17 68.75 14.71 80.12 70.68 26.46 19.82 48.04 69.20 80.10 70.14 53.43 52.65 40.36 25.84 64.05 54.70 95.91 48.40 78.49 99.69 18.39 47.67 61.78 89.26 93.96 26.93 21.94 36.91 86.63 18.78 97.25 99.12 53.80 38.15 39.93 78.43 85.26 9.12 71.07 86.65 89.76 70.68 56.26 18.79 75.16 -90.08 10.59 83.84 6.79 84.35 67.01 66.21 24.52 64.49 15.49 74.38 96.30 59.76 28.80 55.36 85.32 89.22 24.85 19.06 45.61 13.18 84.11 60.02 8.85 89.28 35.51 51.23 60.42 94.44 85.29 15.12 82.68 56.13 98.38 83.90 2.87 6.75 98.91 38.51 32.21 42.21 56.12 73.92 29.29 22.80 87.14 73.87 32.00 90.09 45.08 70.10 96.38 0.97 53.64 35.90 71.23 4.32 4.85 19.87 98.29 27.87 99.04 52.20 58.45 46.64 2.42 83.00 80.30 10.11 12.01 10.07 38.24 44.31 76.07 2.76 72.78 49.69 38.24 70.84 18.75 18.30 70.44 98.81 77.77 79.13 73.90 81.52 51.14 26.36 64.93 96.12 32.15 52.38 72.03 52.15 53.88 66.57 69.06 50.95 31.43 -81.38 18.28 68.06 10.17 85.44 74.02 88.01 5.60 17.50 97.20 87.95 80.24 15.25 87.70 5.06 38.81 96.90 79.17 69.10 89.19 17.16 34.78 59.74 9.65 22.51 61.56 15.01 51.98 35.74 41.08 57.09 12.98 83.69 88.68 32.96 78.75 68.87 15.55 98.90 79.34 55.05 34.26 87.91 75.82 5.72 81.29 91.70 37.35 12.39 27.15 19.72 76.01 70.75 39.55 13.93 87.94 57.09 18.51 28.81 96.67 22.42 89.41 60.81 8.23 20.20 40.78 53.65 66.31 86.02 66.52 38.85 47.84 82.45 94.19 86.40 78.83 87.68 23.48 77.90 75.40 89.40 21.21 6.47 82.71 38.00 61.09 63.27 47.04 66.27 54.63 1.69 93.62 84.02 42.89 55.37 14.39 54.33 84.08 95.15 88.44 -40.44 60.30 97.02 70.95 10.92 88.63 88.41 3.48 21.95 25.47 34.20 1.52 71.09 1.88 63.33 43.01 13.58 89.57 21.98 87.44 15.87 85.05 33.27 98.78 1.69 33.03 86.60 45.78 22.79 56.95 32.34 89.78 38.89 35.33 39.42 78.76 93.39 50.89 20.70 89.23 97.38 62.55 64.35 3.09 55.45 15.71 11.65 81.78 41.30 84.11 37.98 37.98 66.10 81.29 77.73 36.46 9.27 37.68 5.54 29.61 38.67 14.78 87.69 13.11 75.93 77.67 23.70 31.30 23.93 45.81 18.13 19.02 54.00 86.74 14.33 50.90 49.76 31.29 53.40 93.67 12.79 4.23 50.55 61.91 95.43 12.39 56.57 86.90 50.27 37.06 80.84 35.54 36.12 48.95 68.99 41.63 71.02 25.17 23.66 70.56 -90.63 33.34 58.50 54.99 19.32 1.26 37.00 70.25 88.27 14.63 3.13 69.64 58.93 28.21 36.06 31.87 88.62 49.68 1.95 31.70 50.84 78.96 69.86 33.75 82.82 92.15 93.35 12.06 49.19 70.64 11.83 67.88 9.49 64.06 10.59 99.58 37.46 63.62 54.22 38.52 49.37 10.61 19.95 51.19 6.95 71.55 51.76 59.76 8.61 59.63 55.89 99.46 1.49 19.14 77.35 5.09 78.37 5.35 77.79 59.22 13.25 58.19 0.12 29.99 58.02 42.98 35.89 83.90 59.45 10.77 85.23 64.84 86.49 75.70 60.97 73.80 21.95 12.44 11.02 65.57 91.49 35.28 20.16 4.18 38.80 96.68 5.55 67.14 17.81 48.66 83.23 3.94 2.34 81.08 60.55 84.50 82.27 14.06 14.81 50.05 -37.04 13.09 6.49 40.24 10.55 67.09 80.15 33.01 77.66 1.68 27.97 86.74 58.65 83.02 94.51 72.42 9.25 29.89 31.33 51.00 73.56 4.58 37.66 90.18 72.88 80.34 93.14 30.67 69.91 80.32 83.15 46.60 42.27 57.05 58.45 50.92 20.08 37.53 86.56 35.82 35.58 3.89 99.11 13.66 31.91 35.98 21.48 17.29 37.91 70.93 88.43 48.17 0.53 8.10 34.08 57.10 1.05 21.52 38.18 13.93 57.79 19.89 19.66 20.52 9.14 52.48 52.76 66.10 36.31 52.81 62.17 49.74 92.25 65.29 26.67 59.06 94.23 70.12 1.31 2.58 35.05 71.91 70.89 27.45 86.09 20.50 7.64 75.77 14.88 46.56 66.14 28.71 40.69 10.13 76.58 87.02 4.49 85.22 52.72 15.91 -72.29 19.09 2.59 38.99 51.83 60.83 27.56 73.77 14.52 65.89 56.91 45.45 5.39 29.57 20.52 69.50 49.93 12.79 94.67 5.44 0.81 82.71 44.22 33.51 24.66 55.01 34.49 53.04 33.76 21.16 7.71 0.69 20.48 66.84 4.89 74.05 57.21 98.39 2.22 74.59 11.45 42.08 48.73 72.18 21.43 97.06 74.09 79.72 64.70 44.24 77.37 61.31 72.50 29.34 43.59 37.41 68.64 47.32 46.52 89.49 7.19 86.26 85.34 21.81 93.88 51.65 72.44 40.05 74.32 62.23 89.53 60.26 68.06 40.55 70.24 90.50 45.15 5.46 88.12 93.58 70.91 5.24 3.07 84.17 88.27 90.69 97.92 27.71 57.95 43.74 53.79 99.41 68.55 8.04 43.32 22.96 76.57 17.87 88.39 27.80 -30.90 71.62 20.07 75.66 8.54 54.23 78.98 94.28 3.52 97.31 75.25 25.89 58.63 57.98 92.05 32.83 62.38 66.26 36.78 76.10 37.29 54.80 99.27 10.20 62.58 77.75 70.63 4.52 30.24 48.77 25.62 21.80 61.07 60.87 47.10 77.49 42.13 20.41 5.43 70.54 20.10 6.14 23.87 21.32 24.17 94.37 43.69 73.84 90.49 88.63 84.26 80.10 86.84 32.80 68.97 19.58 53.39 49.80 1.82 27.50 58.72 91.31 79.60 96.22 10.17 94.27 64.61 29.66 59.05 78.52 45.39 2.50 7.35 50.93 93.81 79.57 31.01 81.20 86.97 49.76 98.30 54.69 36.30 17.27 93.21 83.33 25.41 32.47 38.83 40.07 77.74 14.96 64.79 25.11 18.04 93.48 47.31 59.33 74.92 78.98 -68.17 30.29 49.22 91.00 79.57 39.13 8.29 97.78 97.17 60.08 33.71 12.82 79.68 22.52 49.81 1.69 1.06 57.11 61.32 72.70 70.22 55.80 62.43 63.74 21.79 4.57 12.04 3.97 19.98 69.27 99.68 23.89 93.37 90.63 74.45 3.93 99.48 62.42 51.29 14.12 79.24 13.27 78.52 63.79 24.34 35.03 98.15 56.65 93.84 76.49 9.05 0.63 1.01 51.22 43.94 86.50 0.62 67.00 46.65 69.66 69.72 45.37 57.15 90.57 75.52 44.81 35.53 43.47 48.07 32.89 96.42 25.73 37.60 84.95 29.78 73.75 70.28 13.29 2.72 74.98 72.58 36.99 92.13 75.09 4.76 89.25 63.96 66.81 84.78 82.04 11.61 37.12 52.07 46.75 74.63 72.47 46.94 78.18 77.97 42.40 -30.10 75.40 78.06 77.31 81.54 31.83 70.86 46.02 90.06 6.09 9.05 14.86 42.50 23.63 87.14 5.20 9.03 30.36 34.96 66.78 35.13 3.83 12.70 76.66 19.36 60.21 26.22 45.56 87.39 64.39 5.16 17.33 22.64 43.79 43.52 14.89 31.36 33.87 78.77 86.22 3.23 48.61 30.27 58.94 2.03 22.73 96.12 89.62 37.78 18.35 71.28 95.96 31.60 7.06 18.53 60.34 6.10 20.22 64.99 15.62 80.89 12.62 40.11 98.74 31.80 97.78 25.76 49.86 89.14 15.90 78.52 82.34 72.62 41.57 79.66 30.67 40.67 29.07 77.77 99.14 42.26 98.35 28.19 34.25 36.29 76.65 86.30 23.94 87.09 86.41 55.96 94.64 69.05 53.14 76.72 31.36 53.68 38.93 60.28 3.45 -2.46 33.85 69.76 91.53 69.34 77.57 39.16 15.80 11.49 26.54 50.07 57.34 6.53 33.57 99.27 21.96 60.15 66.80 26.98 10.38 39.84 93.91 21.85 73.29 36.65 47.09 1.71 87.30 84.58 17.00 79.98 80.08 12.54 61.93 32.17 14.58 34.27 97.89 25.91 49.49 6.71 35.56 25.72 49.81 13.66 99.32 36.17 83.42 58.23 70.75 28.04 31.64 27.24 28.99 91.63 64.80 91.19 36.83 23.86 54.07 67.76 55.84 66.19 73.02 24.83 32.71 66.99 49.90 26.09 14.54 74.99 67.25 5.73 99.22 4.01 9.22 5.72 38.73 9.87 16.90 41.03 69.52 78.56 26.13 53.59 75.95 71.17 13.51 89.34 78.25 20.50 59.21 12.68 16.10 21.65 44.30 76.80 26.07 48.09 83.84 -48.56 39.62 97.81 84.98 14.57 31.10 39.94 73.23 5.14 75.32 25.94 90.22 24.07 95.07 26.89 48.35 80.21 89.36 71.48 84.57 32.56 56.26 68.36 40.37 93.63 21.88 5.94 55.54 60.66 31.48 18.85 31.33 2.62 82.93 13.02 12.31 20.02 66.96 57.01 82.36 89.68 91.48 63.09 12.00 62.15 13.89 8.38 6.00 48.96 68.61 68.33 66.57 17.58 9.31 71.93 52.71 67.60 68.49 29.38 85.42 5.46 36.15 12.38 42.85 27.61 58.65 96.37 64.40 10.10 80.05 41.02 79.83 55.99 72.79 19.47 93.87 40.96 21.62 76.81 55.69 97.94 71.83 1.78 81.15 25.91 5.92 40.65 4.91 32.56 44.30 93.05 28.60 68.25 32.96 80.02 12.10 31.82 76.06 3.10 8.36 -99.60 74.25 19.72 22.79 10.87 39.48 68.03 32.77 69.78 9.44 6.45 71.49 70.18 99.26 23.41 45.40 12.16 66.33 13.10 71.91 61.72 20.07 30.48 1.27 48.94 54.73 6.77 24.89 80.85 97.62 90.42 74.33 29.71 22.57 55.93 9.93 17.85 44.17 0.10 68.87 91.56 98.05 1.96 96.24 95.36 40.01 1.73 58.38 87.62 40.01 63.85 60.37 43.68 21.83 44.83 27.30 59.71 67.45 18.01 84.12 74.64 38.28 20.76 35.26 67.69 30.54 10.52 88.81 35.63 75.30 9.82 65.91 62.10 24.50 79.66 66.19 64.75 54.71 19.47 19.19 83.58 66.67 26.35 23.32 8.69 85.15 70.12 64.74 54.47 60.18 29.41 24.79 75.09 34.91 38.19 90.61 14.70 28.44 83.51 92.07 -53.25 52.41 57.40 73.58 74.01 50.09 36.98 17.63 96.78 8.34 64.28 91.23 15.63 31.28 59.57 81.59 43.96 27.71 4.23 70.31 91.07 65.17 51.17 0.93 18.24 89.84 78.48 89.03 43.91 85.94 44.25 41.49 44.61 90.05 95.97 18.07 48.04 83.79 62.79 50.12 72.00 53.42 10.55 17.86 5.21 21.85 23.08 64.17 13.87 3.00 52.68 39.86 81.71 4.57 15.09 84.38 97.72 69.67 6.15 23.71 31.68 90.84 97.16 68.09 51.61 43.59 88.64 83.80 59.49 25.51 75.92 65.63 53.01 4.31 65.24 39.95 19.77 99.11 37.49 61.44 38.72 58.30 50.72 99.12 59.69 54.97 17.08 17.04 35.13 6.82 16.97 6.63 53.09 74.11 88.76 63.68 72.13 38.40 36.33 50.46 -12.71 11.19 25.59 54.36 59.72 9.46 75.32 41.42 8.26 77.14 14.08 29.91 41.60 42.14 27.57 73.02 50.70 67.58 2.68 86.67 97.32 4.65 72.10 90.59 71.98 2.97 46.32 24.88 96.94 99.13 82.12 12.11 32.24 36.64 29.46 12.96 5.95 20.51 97.99 31.47 61.26 3.13 20.57 87.26 35.71 0.69 23.89 60.58 25.89 23.50 96.10 93.97 75.34 70.90 68.28 39.77 75.40 81.45 28.33 53.48 8.57 70.36 8.27 19.92 33.27 72.28 64.63 34.86 13.89 9.54 38.19 64.26 47.02 1.87 14.38 98.08 85.24 78.45 53.72 14.03 62.97 33.54 48.49 9.22 56.85 23.63 2.06 63.84 13.72 66.39 39.81 57.04 37.50 22.97 51.64 64.74 43.15 12.11 11.43 25.63 -60.08 90.53 47.52 88.07 32.91 79.64 46.80 26.64 71.55 75.27 66.17 5.25 42.85 64.90 73.70 86.76 33.71 17.92 34.16 89.67 57.84 55.90 70.31 15.81 91.57 87.11 16.69 54.45 33.32 30.39 7.79 49.47 96.76 22.48 65.04 79.11 61.65 99.63 63.80 87.98 98.64 79.87 49.03 64.51 10.43 34.13 39.28 85.83 95.70 23.76 74.93 18.85 97.93 81.87 7.47 91.95 51.92 8.37 21.17 44.38 9.95 37.40 2.53 15.39 7.48 86.33 68.55 80.66 97.78 81.25 0.98 99.82 70.97 68.47 93.17 21.11 91.92 67.46 41.68 26.05 71.88 52.62 6.42 31.54 43.77 92.46 4.27 39.53 8.36 63.53 66.89 99.11 35.50 44.21 1.32 87.56 41.67 50.54 89.20 40.30 -34.48 90.14 24.38 62.56 36.59 64.76 15.47 65.34 17.44 20.56 62.09 27.77 57.53 77.25 16.33 84.78 67.30 25.75 51.22 18.65 8.59 38.16 37.43 75.52 89.51 66.91 98.34 41.82 33.59 61.29 85.20 8.83 29.05 23.78 56.69 28.99 99.08 6.73 23.12 20.87 79.03 10.45 87.14 45.75 13.79 69.73 44.88 31.83 30.01 3.21 18.15 7.02 48.57 53.23 91.24 84.24 44.48 25.67 38.77 30.41 88.77 65.42 44.17 44.09 66.56 17.46 46.31 36.49 64.80 57.23 80.78 61.39 92.78 51.79 47.25 65.67 63.86 24.56 72.81 29.00 85.19 16.93 32.76 37.41 36.50 28.55 93.96 27.12 53.53 99.14 54.38 29.18 13.20 27.31 9.63 12.54 7.58 6.14 63.50 51.48 -1.27 33.88 56.91 71.14 65.22 77.44 97.00 18.84 0.13 0.01 95.31 58.04 88.29 7.86 44.55 86.30 45.17 14.01 91.67 20.46 67.05 14.55 4.06 95.36 74.75 13.29 22.05 32.38 28.17 38.10 53.31 61.09 53.31 23.28 37.15 25.23 56.44 71.61 90.01 90.67 5.58 93.15 82.73 12.01 97.64 67.67 78.12 36.38 72.29 69.74 3.40 40.23 17.67 6.67 5.25 93.53 69.12 78.80 33.33 79.62 64.61 42.26 54.46 37.38 93.65 63.10 47.52 69.66 0.32 64.48 94.20 91.03 0.26 16.39 82.99 39.17 33.70 42.10 43.29 53.11 16.01 34.68 12.93 58.70 43.22 32.21 35.62 69.06 40.99 35.48 1.79 78.09 21.18 61.77 84.47 5.99 97.37 28.79 10.67 97.44 -56.60 37.53 22.54 6.72 8.97 77.60 95.62 20.79 66.61 16.82 82.61 32.67 1.55 39.52 97.24 46.86 99.56 30.61 52.80 80.78 56.04 22.90 33.81 31.05 47.06 69.73 94.82 36.13 58.23 21.49 31.15 30.26 33.42 40.78 67.41 31.95 85.20 19.32 32.25 54.28 83.13 79.77 33.80 96.81 73.06 21.48 49.10 8.75 15.62 31.61 96.45 20.08 83.57 23.97 44.69 75.62 88.78 48.80 68.61 99.62 47.15 13.61 53.58 41.44 56.05 43.57 55.42 25.94 6.27 69.73 11.72 21.03 53.06 7.07 39.00 23.06 59.07 36.69 79.02 6.31 76.19 10.55 72.11 85.68 12.81 13.56 50.06 92.75 76.70 61.38 19.37 13.16 13.25 21.68 78.22 58.94 99.22 24.08 89.61 52.69 -71.71 38.27 54.10 76.65 76.42 42.58 24.62 97.35 97.20 45.90 0.93 5.22 51.73 92.56 22.47 40.04 60.90 21.33 59.68 75.57 1.72 76.79 71.65 53.99 83.60 30.79 1.17 25.22 96.66 8.83 22.73 36.95 28.93 42.49 21.49 48.77 45.53 60.64 26.71 36.62 81.62 44.64 84.75 49.35 63.05 11.58 18.60 3.46 81.62 18.46 76.83 26.80 48.32 22.25 93.02 0.19 94.03 50.86 80.61 28.76 55.45 46.61 95.01 68.87 41.02 66.65 60.76 43.36 81.21 51.61 6.58 86.73 0.27 22.22 26.36 37.69 87.30 96.14 23.22 59.83 0.06 86.59 71.46 47.68 5.87 21.29 32.75 28.46 91.84 5.35 11.59 86.23 98.13 22.27 24.56 61.50 95.07 99.47 56.42 43.18 -97.43 41.80 23.08 13.90 52.13 34.60 45.73 50.49 0.18 92.97 23.89 69.71 8.39 2.33 92.51 95.62 61.67 38.93 96.85 69.49 39.99 50.54 39.32 44.48 19.05 74.79 33.45 73.04 29.70 82.98 47.40 76.61 71.17 65.43 97.47 90.10 0.07 94.71 91.62 47.37 75.18 66.18 76.25 77.86 90.76 95.00 0.93 81.83 85.54 44.92 44.27 36.62 32.54 23.85 76.50 39.30 41.53 81.47 0.68 14.02 68.15 48.28 45.91 75.93 87.88 52.71 97.26 16.97 45.96 86.98 59.36 67.04 20.85 75.39 49.18 85.40 18.47 80.53 32.94 11.36 1.13 54.73 65.84 27.50 62.59 12.74 9.86 2.66 42.53 98.42 59.29 14.58 85.37 22.50 81.21 35.42 73.81 6.51 36.70 15.07 -52.47 8.54 30.56 74.01 41.56 29.57 95.13 21.64 55.90 93.82 76.17 51.79 1.37 64.00 97.91 22.68 58.84 73.20 89.57 21.97 35.31 55.90 76.29 14.93 0.54 81.59 26.78 32.95 62.78 71.24 83.05 92.54 90.46 43.54 73.37 91.12 11.53 28.78 54.77 47.24 10.52 93.84 99.17 37.17 7.02 34.65 24.80 76.61 56.53 12.88 28.36 24.20 99.94 7.70 9.17 24.98 55.70 82.07 73.28 9.31 58.79 31.33 79.79 42.64 33.66 44.98 99.55 60.16 7.24 70.63 36.50 82.76 43.59 34.49 92.84 58.95 33.24 63.58 70.46 34.24 62.01 35.49 31.90 45.70 31.67 61.76 48.03 93.01 32.67 30.65 72.73 88.63 38.73 87.88 89.33 3.54 6.05 36.13 76.39 45.75 -76.48 16.14 97.56 17.68 78.52 80.23 28.52 51.89 8.03 94.43 51.87 10.75 44.07 76.87 26.35 33.69 16.51 80.62 22.99 81.18 6.87 97.37 4.42 83.08 10.86 6.67 73.43 87.27 86.52 54.10 14.26 61.11 59.11 39.50 6.04 18.23 23.23 90.65 67.14 26.73 89.92 15.00 82.95 36.09 50.14 48.93 40.30 85.61 17.00 55.44 93.99 72.74 58.60 84.52 5.70 21.27 46.22 24.30 48.11 45.89 57.80 87.14 51.90 52.50 32.17 71.03 71.83 27.89 39.52 58.46 36.16 23.96 57.94 11.00 72.19 99.34 70.55 37.43 76.93 21.84 66.82 13.30 5.42 97.09 45.50 40.06 73.85 30.78 81.69 40.51 42.36 45.92 34.26 0.06 17.49 48.60 26.36 21.96 69.78 3.44 -25.20 73.52 22.33 0.08 0.36 64.68 72.07 85.50 96.60 33.17 88.53 75.28 81.64 48.46 14.65 91.92 72.84 88.38 98.73 36.38 95.58 59.19 63.41 41.63 85.18 73.53 14.18 88.04 10.37 95.09 90.26 55.00 39.81 60.08 24.75 43.13 74.50 92.90 13.17 81.52 85.89 46.20 67.18 78.01 19.98 59.15 38.53 95.85 33.49 50.66 91.62 89.42 64.18 10.81 60.56 33.74 36.74 59.39 92.89 73.27 87.94 44.85 94.24 65.84 80.07 59.11 76.13 3.22 63.25 68.46 99.10 29.87 12.62 36.50 69.45 85.78 31.73 97.24 35.84 91.56 34.12 37.73 18.44 93.80 9.50 82.92 96.37 96.33 74.35 37.44 26.48 58.74 96.93 46.02 40.11 97.20 56.99 59.99 47.20 27.46 -86.47 35.35 28.22 56.40 23.81 42.30 66.15 48.51 7.24 17.37 28.09 26.09 93.30 77.90 85.92 32.77 46.64 71.20 68.64 96.23 53.38 3.41 51.75 72.01 6.12 25.14 74.97 33.31 61.12 69.06 18.48 12.66 74.46 30.23 32.95 21.20 60.91 53.93 43.44 62.28 70.87 72.71 14.71 3.43 29.14 83.56 60.75 88.15 31.36 50.72 86.83 25.95 40.50 34.76 82.31 81.55 46.50 48.20 92.81 11.06 41.91 97.49 98.26 73.48 86.17 74.44 90.36 87.19 98.41 41.74 76.41 75.06 2.20 50.33 67.86 28.76 6.75 22.25 88.11 89.24 2.44 14.10 99.75 4.96 78.67 72.04 13.59 75.32 97.53 36.10 81.10 1.60 82.43 5.89 59.64 37.57 26.34 32.09 9.98 88.86 -36.68 59.67 61.49 33.57 48.52 99.41 7.93 93.30 49.78 92.73 99.05 12.26 76.53 80.11 93.95 82.68 3.16 39.18 59.10 44.60 57.02 51.77 67.73 10.29 79.95 57.87 63.57 46.95 87.08 20.53 94.54 23.80 23.43 70.86 56.86 9.81 40.12 82.81 34.08 36.65 97.86 85.84 8.00 47.85 52.12 30.04 62.37 66.93 16.06 16.42 35.18 45.85 83.80 8.86 51.52 14.55 49.84 28.55 22.21 49.23 90.92 59.95 94.80 83.26 95.20 70.94 18.36 22.81 96.26 19.76 10.26 24.25 62.47 60.00 25.85 59.51 96.06 98.91 47.94 58.69 12.64 6.30 36.78 98.80 56.65 39.33 16.65 61.71 0.46 46.92 99.16 41.63 20.62 75.30 78.26 85.04 46.52 9.07 78.49 74.97 -23.40 70.80 55.45 22.18 44.34 10.69 42.18 62.40 38.59 73.32 39.87 97.97 86.86 39.92 67.19 46.17 97.72 57.95 40.45 28.20 89.28 27.99 88.46 38.02 59.11 19.81 50.88 87.72 29.29 91.56 84.75 27.15 2.30 66.96 90.29 47.21 35.39 86.53 68.23 56.35 48.50 30.04 16.71 33.67 25.07 89.79 23.28 99.35 2.57 23.15 92.58 54.79 49.18 35.06 26.07 6.17 25.19 55.08 26.11 66.74 33.96 64.77 41.23 24.98 31.50 83.89 54.09 89.83 15.15 20.18 25.23 11.21 62.04 95.52 49.02 34.61 9.28 88.75 44.33 3.11 11.37 46.42 52.97 34.67 15.54 27.97 45.16 67.27 33.13 28.44 51.40 35.07 68.89 26.00 9.21 46.00 79.32 95.57 22.93 67.86 -14.97 71.58 86.24 32.62 17.76 98.16 60.86 8.37 90.16 58.61 66.89 10.92 37.95 14.99 32.35 61.63 92.71 31.99 83.53 90.08 49.44 97.47 43.04 70.23 37.99 53.06 99.01 17.81 29.17 85.23 25.30 37.30 75.87 22.07 58.55 66.28 86.61 62.47 76.81 21.40 51.84 76.55 8.18 53.30 62.75 72.60 33.24 28.77 61.61 63.52 6.24 0.31 20.80 3.12 85.65 54.72 84.97 24.39 29.05 56.71 44.79 46.65 88.26 62.21 56.04 97.03 58.35 60.79 98.38 46.24 96.11 63.43 31.79 47.57 52.86 47.57 37.88 99.85 99.93 12.29 13.76 98.60 40.08 57.44 16.59 88.88 41.92 76.16 68.62 59.45 87.66 55.77 84.46 63.83 99.17 31.83 4.71 90.85 47.68 66.72 -20.00 81.22 86.18 76.86 3.05 13.10 29.68 29.41 57.17 97.35 35.67 1.97 12.38 30.39 51.45 51.39 16.22 94.03 71.97 74.94 7.78 85.91 90.08 93.19 12.09 80.90 6.05 43.65 76.31 9.75 68.32 66.83 53.43 12.86 25.62 21.56 49.02 11.54 79.41 89.97 21.33 18.01 85.90 16.72 83.36 1.96 1.23 33.12 14.11 92.77 19.95 52.71 42.00 73.77 9.04 48.73 73.32 82.88 74.09 3.20 31.51 52.96 12.43 64.05 96.64 59.12 65.09 92.98 75.07 38.69 56.11 58.69 27.19 97.08 54.26 66.86 33.24 44.28 8.46 81.25 19.47 29.75 43.31 43.56 66.09 56.86 59.65 63.19 16.86 53.55 26.82 33.72 36.55 59.29 10.00 72.36 90.81 8.12 36.29 71.30 -23.92 2.40 57.36 67.74 58.75 78.82 95.09 42.70 36.85 53.46 61.73 69.30 57.64 91.48 4.76 44.44 12.60 42.04 35.30 52.53 40.00 72.70 33.86 1.96 64.69 35.33 38.06 30.44 78.19 21.46 79.73 33.67 80.52 48.48 97.59 82.58 37.27 12.63 46.17 53.20 95.20 89.21 51.95 97.92 60.94 31.30 2.98 89.16 71.20 41.92 89.25 63.65 32.49 46.36 73.53 27.64 4.62 47.43 0.66 1.13 3.67 77.67 10.47 14.90 70.41 73.05 7.72 32.83 56.47 21.16 55.10 31.23 28.32 9.33 94.40 89.25 18.72 59.10 42.65 86.77 95.80 83.02 81.93 28.35 36.51 46.22 22.76 54.44 63.40 79.75 40.41 66.42 27.85 45.64 70.45 17.84 95.27 3.88 48.67 82.13 -90.25 35.91 97.31 63.42 10.61 34.68 31.39 62.88 96.52 34.00 59.79 89.40 20.75 59.09 52.23 64.51 74.68 28.28 34.24 31.52 55.41 27.02 88.91 23.07 96.79 79.23 55.48 54.77 23.81 26.10 62.38 33.62 84.53 90.99 2.43 42.41 52.80 9.47 79.14 16.17 14.90 57.67 91.33 90.62 10.95 21.40 85.28 77.22 54.38 33.22 12.83 13.53 99.71 58.83 78.65 43.77 2.80 17.68 53.28 74.67 85.10 92.36 73.36 84.62 77.75 97.88 72.62 67.15 43.82 20.25 36.55 63.09 90.29 35.62 29.97 26.45 46.14 83.39 48.22 96.90 50.71 99.58 52.79 65.50 0.13 75.88 49.40 44.09 74.21 69.66 78.49 44.52 54.33 65.24 11.69 91.00 71.83 32.69 19.87 50.97 -95.17 34.46 51.03 4.21 86.42 47.14 54.53 46.52 58.86 68.27 78.49 65.19 18.97 17.32 4.38 81.92 43.73 65.11 29.73 46.69 93.11 22.74 69.28 96.35 4.09 80.59 74.55 67.09 27.13 37.79 11.13 96.62 50.49 45.45 68.71 88.69 44.94 33.51 0.85 13.63 96.68 50.58 18.22 84.51 84.09 72.66 96.72 64.90 39.95 84.38 67.15 16.12 55.41 10.40 9.19 34.51 82.89 76.19 12.31 12.55 56.20 15.00 27.31 78.79 51.69 31.03 7.25 60.41 84.43 39.04 90.99 16.07 12.02 9.47 7.02 45.57 29.88 13.86 40.65 85.60 15.07 69.91 95.41 72.22 88.03 30.06 41.05 96.26 39.08 70.82 44.67 37.87 82.23 64.32 6.67 64.30 60.05 48.30 19.70 34.12 -33.10 2.19 13.86 50.12 17.66 26.92 10.91 3.47 11.49 61.32 51.29 73.83 76.72 84.72 80.87 71.23 36.49 67.65 48.46 37.12 20.48 13.85 83.91 9.77 60.39 93.40 26.25 44.87 7.37 42.10 26.41 62.66 19.84 42.36 55.44 6.11 78.02 0.51 99.93 37.07 6.35 34.85 10.55 77.89 66.16 65.63 15.36 85.98 15.79 12.68 3.66 77.75 88.37 7.45 91.20 14.22 11.81 70.95 78.18 54.64 51.52 35.63 66.34 77.13 13.16 60.90 83.83 6.45 39.89 80.25 22.02 7.46 34.43 32.73 31.10 76.07 43.55 67.43 51.14 62.22 80.97 8.80 92.88 0.69 40.94 60.57 89.52 3.85 87.34 15.47 7.44 49.29 81.29 74.09 64.58 44.99 87.10 28.10 28.09 26.81 -14.19 68.61 7.06 70.62 10.20 41.17 33.72 11.60 77.23 95.24 4.76 4.55 35.29 9.18 23.23 68.42 55.03 3.53 99.56 74.74 32.56 16.34 26.45 26.27 96.48 76.01 67.50 26.20 20.93 68.55 37.59 85.90 62.01 38.13 39.00 46.97 57.59 6.48 26.53 67.18 13.24 2.45 61.95 50.97 26.74 35.12 57.12 0.71 1.62 96.73 93.70 20.23 67.05 47.02 54.32 77.96 27.89 53.85 44.70 71.55 21.93 96.14 15.89 12.05 67.38 36.03 13.68 20.18 84.28 55.58 86.81 48.86 44.53 34.73 92.21 82.51 32.37 98.50 23.54 15.30 3.09 23.04 98.19 8.94 65.38 30.18 96.60 40.45 31.28 81.40 6.10 84.85 67.67 49.12 66.20 57.46 34.85 88.49 17.61 15.81 -97.77 37.89 78.84 59.94 82.33 96.59 52.76 0.25 11.13 33.89 55.72 75.07 6.75 76.10 47.70 26.77 71.14 32.24 3.19 76.04 81.39 33.95 22.21 44.57 64.10 50.10 57.76 93.12 39.97 44.90 62.70 5.06 32.80 57.67 2.86 79.16 59.20 11.76 6.84 2.53 1.56 49.94 29.04 73.59 69.76 60.00 59.19 6.39 57.94 26.18 36.61 67.47 99.94 29.44 42.47 46.12 55.31 67.00 46.41 71.56 3.03 4.92 9.84 22.21 75.63 56.30 8.22 4.87 25.74 49.70 45.91 35.78 66.54 55.10 51.24 22.49 6.08 35.00 38.70 12.52 46.82 16.91 11.57 70.33 77.06 11.57 70.76 32.11 18.21 64.25 19.01 21.95 94.25 12.68 87.80 93.82 25.55 10.59 32.93 18.72 -84.78 24.15 85.31 26.69 51.84 5.38 54.77 97.75 33.32 51.80 77.77 37.53 47.01 41.98 83.02 4.53 83.91 0.02 79.28 35.59 30.88 99.90 48.75 39.35 62.53 84.00 84.21 8.28 53.01 35.48 91.90 5.59 54.69 99.99 54.74 46.93 94.53 68.92 92.24 18.61 65.93 37.96 23.02 4.39 80.56 82.49 9.70 30.36 25.06 49.29 70.64 73.00 13.33 35.11 71.85 94.04 85.76 40.76 34.73 4.75 79.23 72.02 94.23 85.22 58.56 15.15 67.48 60.74 67.75 42.51 2.35 80.60 54.48 28.37 26.10 46.35 35.95 96.15 94.15 89.77 74.14 61.15 85.56 52.31 86.36 77.50 7.16 66.05 50.22 46.94 79.91 8.36 48.99 24.15 82.77 0.39 48.20 5.67 65.73 56.49 -75.97 36.69 85.91 68.11 7.90 33.62 73.62 56.09 34.44 35.22 38.01 32.86 50.64 41.62 68.97 35.51 71.02 97.67 24.77 6.73 0.93 34.88 82.35 14.94 1.97 26.11 12.94 92.64 8.32 52.70 49.06 38.95 31.51 92.30 50.72 74.37 25.74 44.87 18.23 62.12 15.37 61.04 20.76 43.97 99.60 76.19 78.37 54.43 68.81 21.15 35.45 90.48 35.98 32.81 18.33 20.02 53.16 70.27 81.01 0.24 8.02 55.68 70.29 86.64 17.85 62.47 73.09 73.11 73.01 37.35 91.26 9.83 56.45 86.59 14.75 52.74 19.89 87.75 78.92 9.33 68.12 63.16 39.66 66.84 67.37 47.10 95.50 24.80 80.00 20.49 29.85 81.56 99.12 91.34 25.05 54.85 96.44 49.10 74.80 33.29 -0.35 37.22 41.36 50.89 24.43 63.17 98.89 11.55 4.65 19.22 30.34 60.26 25.21 10.93 67.23 36.17 40.39 53.03 73.66 36.00 80.79 54.36 59.21 80.34 8.59 0.88 48.60 85.36 77.34 60.61 82.09 11.48 10.72 63.34 20.78 78.58 24.94 96.76 47.03 10.07 31.92 17.31 16.91 44.50 17.30 0.72 7.03 7.54 22.31 22.99 62.95 16.91 78.88 47.63 29.18 50.96 66.51 46.65 99.08 97.83 29.63 65.23 83.79 21.07 44.45 84.32 39.64 32.75 59.07 75.25 72.37 56.18 29.29 99.47 78.11 61.67 84.35 25.22 15.47 59.10 0.76 14.15 66.93 93.99 15.79 92.46 32.36 57.25 41.89 8.15 75.87 91.94 16.23 49.65 34.26 59.76 58.50 30.16 1.20 57.18 -85.17 88.76 96.73 79.00 32.99 33.04 91.82 76.90 7.03 76.86 16.08 93.71 65.94 58.41 30.04 77.69 27.95 14.41 86.15 36.87 15.37 57.13 65.06 20.88 64.39 77.74 11.89 32.09 9.88 39.63 40.30 42.74 52.08 34.80 34.84 11.28 27.91 41.53 58.59 94.69 7.33 24.30 37.79 43.29 55.31 93.37 98.12 71.57 21.07 79.79 63.10 75.78 1.14 12.78 8.94 17.98 43.84 51.73 97.77 54.32 2.33 17.76 54.17 18.81 70.78 85.94 20.54 45.58 6.59 90.04 33.47 89.39 76.79 56.78 28.79 57.03 97.98 66.11 25.91 63.45 40.95 56.93 50.69 69.26 21.02 41.63 67.58 45.26 33.28 61.52 62.12 52.88 75.37 60.70 82.01 24.76 25.21 33.29 11.96 24.56 -29.18 93.82 7.34 0.94 65.15 46.07 29.58 36.57 90.40 87.41 2.59 1.29 28.02 9.50 42.06 78.12 12.70 55.12 41.19 26.35 83.06 74.56 22.56 95.60 48.98 64.42 52.25 66.83 45.17 88.51 32.69 31.79 79.77 25.72 78.62 96.48 88.46 4.91 26.12 87.62 81.45 35.51 60.18 0.55 40.52 11.88 92.93 61.55 33.73 31.47 68.62 48.06 91.41 31.86 0.72 71.61 48.23 86.43 93.77 11.17 64.43 62.89 10.48 26.49 70.21 50.53 29.27 92.79 71.83 79.35 4.98 28.49 40.33 76.27 32.77 53.60 85.50 61.60 4.11 73.93 3.13 31.02 15.96 99.36 47.04 92.57 99.31 96.34 59.11 31.79 5.36 8.69 75.22 65.08 48.52 16.26 46.79 59.75 22.77 54.57 -33.27 12.19 46.03 47.63 75.84 98.29 19.06 60.38 41.28 70.05 57.79 53.43 95.01 71.47 59.13 5.97 94.58 58.56 35.58 24.53 34.79 37.44 39.88 24.14 5.15 27.12 46.75 83.96 51.47 15.85 23.47 30.19 97.24 4.87 6.70 71.68 75.16 73.76 98.75 88.93 59.75 17.30 82.62 65.38 15.59 9.80 82.03 61.70 71.38 6.84 15.71 46.84 51.07 77.31 20.72 47.38 42.46 66.34 93.22 73.60 56.35 14.64 46.52 32.31 52.98 47.56 42.14 34.96 48.44 94.52 58.06 23.87 59.88 95.39 80.31 34.93 94.37 29.22 33.96 77.98 74.60 59.91 70.96 89.05 39.61 53.38 44.85 0.42 94.35 88.90 29.54 4.55 54.09 94.40 44.39 75.41 56.22 10.96 24.64 97.29 -54.31 29.12 30.37 89.53 62.11 3.92 11.20 24.41 61.58 64.63 87.85 58.24 9.27 11.57 92.61 78.36 95.87 56.19 10.57 39.69 25.72 80.58 75.93 96.40 90.30 31.16 41.43 85.54 77.06 54.14 88.86 20.27 16.05 30.35 26.07 31.21 31.65 93.06 13.43 7.12 90.97 84.17 73.89 40.55 89.54 35.77 51.18 95.40 70.31 91.02 15.62 23.05 58.37 94.17 22.69 90.44 74.26 41.29 11.45 71.13 54.76 25.30 24.60 19.45 97.37 67.68 61.17 11.16 44.62 16.43 80.30 37.93 34.25 8.60 94.73 73.68 25.12 83.41 69.44 14.89 93.28 99.37 70.30 26.29 31.86 44.03 64.22 54.87 38.87 30.93 36.25 52.45 97.80 86.20 63.79 43.58 50.62 88.06 86.31 69.06 -56.08 41.80 51.12 0.02 57.62 32.12 61.44 5.78 73.31 23.73 32.52 49.43 95.50 45.57 52.13 20.57 25.46 62.91 2.74 95.66 35.99 52.09 77.66 99.34 75.90 80.05 45.21 57.18 23.14 97.41 59.18 83.08 15.40 3.58 56.03 74.95 2.21 80.83 86.44 73.56 16.14 44.82 5.57 63.48 90.48 65.01 44.59 6.17 59.57 58.17 24.00 36.00 38.32 99.86 12.81 69.73 7.07 30.70 88.97 41.70 65.57 89.28 32.31 69.76 12.21 40.00 71.23 95.55 19.43 83.30 45.32 0.09 65.18 21.34 79.17 12.92 67.02 94.53 6.87 66.47 96.72 28.45 51.75 20.93 50.76 97.51 46.67 1.81 45.55 28.83 66.88 18.73 74.81 23.86 25.56 75.50 45.36 97.46 52.11 14.67 -78.64 60.74 49.76 3.89 24.05 90.05 88.03 95.88 70.17 72.33 57.14 18.11 80.21 2.24 48.29 15.57 73.97 77.46 80.72 54.40 2.96 6.03 3.31 29.65 96.62 67.50 74.19 44.84 54.48 29.56 74.86 62.32 69.98 1.79 18.68 36.63 58.30 87.03 56.52 35.58 78.88 79.90 82.24 38.28 57.77 65.16 70.30 4.50 20.89 39.73 46.96 23.29 23.20 83.98 75.20 21.84 65.92 11.80 58.03 87.92 89.82 63.54 12.64 69.69 99.43 1.16 98.87 81.84 8.83 85.52 93.16 39.90 88.36 66.91 77.02 15.82 58.94 2.44 1.01 70.99 70.72 73.31 61.53 35.48 20.44 5.20 65.16 76.89 56.23 97.77 46.68 67.92 66.13 21.08 84.70 15.53 85.18 37.57 32.13 26.47 -4.39 97.63 78.37 83.71 15.47 64.64 56.80 80.06 60.88 25.67 57.82 99.93 71.18 5.16 59.98 96.52 77.16 13.61 48.71 61.42 94.67 4.60 65.04 85.89 6.40 26.16 74.41 59.77 58.19 77.90 29.33 5.64 99.29 64.70 84.04 79.72 28.56 61.89 8.63 2.29 17.78 22.38 34.09 47.57 89.50 93.98 66.66 14.03 57.84 10.04 72.75 36.02 55.11 26.00 1.74 22.21 36.31 87.65 67.85 19.25 19.89 11.86 72.05 16.63 17.86 47.30 25.15 60.87 57.43 98.91 40.64 23.55 14.91 17.55 60.02 45.28 7.99 97.99 12.51 35.78 49.07 86.30 45.24 64.25 31.29 8.90 83.47 55.41 61.50 4.00 25.78 35.39 56.96 5.59 21.15 52.53 70.22 22.45 66.75 59.30 -17.21 33.63 9.86 81.33 37.93 5.87 32.33 24.40 88.70 2.37 50.31 85.39 4.04 36.77 63.22 28.81 51.29 29.37 42.01 67.21 54.32 57.66 57.55 6.48 63.69 62.20 42.43 10.81 63.86 42.19 37.56 79.07 92.95 86.00 8.67 31.36 83.24 78.48 19.20 61.98 76.31 72.20 81.48 28.40 81.93 74.59 76.71 16.49 49.80 46.26 14.80 15.16 34.66 54.17 68.60 77.65 9.17 67.34 77.74 71.75 78.78 60.82 49.07 12.42 60.62 75.34 23.86 13.18 59.03 45.65 79.35 0.55 19.53 89.52 94.20 14.67 50.04 27.41 40.27 62.90 3.92 56.73 47.05 19.45 49.91 77.15 58.98 26.56 45.95 93.17 88.51 21.64 73.30 61.94 38.93 83.17 87.02 26.58 41.06 31.69 -8.29 35.44 17.13 36.72 81.97 28.74 40.81 6.07 81.26 30.60 23.15 31.07 81.75 40.50 5.79 48.82 88.83 57.01 63.69 3.45 54.55 18.79 51.83 29.30 46.00 72.11 17.25 56.00 91.19 43.62 98.57 14.62 70.95 26.92 45.23 67.24 92.46 10.15 33.79 78.90 21.70 23.80 40.90 16.98 99.87 74.08 59.01 27.66 93.46 77.58 32.71 8.38 26.03 10.47 63.41 51.58 11.70 54.59 91.32 4.64 2.03 76.71 80.24 31.95 2.07 34.49 13.25 88.04 53.82 36.56 43.93 77.92 49.54 61.56 24.03 64.60 60.84 92.24 17.82 10.12 44.61 64.33 8.20 8.61 31.12 78.43 2.31 79.53 50.43 51.98 94.83 40.83 99.92 19.36 9.52 22.79 10.07 16.46 56.62 46.28 -25.77 2.82 75.85 46.15 94.88 6.42 66.51 41.97 69.76 71.90 68.78 83.95 51.45 70.03 99.05 85.90 9.50 46.32 35.57 42.40 98.78 71.86 81.32 90.24 61.32 65.47 6.59 22.82 18.99 54.87 2.15 84.73 52.20 22.51 30.26 47.32 66.55 66.08 87.89 67.93 59.32 55.88 65.53 96.78 6.00 97.90 54.24 16.46 57.02 78.04 9.97 22.01 15.50 58.25 35.09 14.77 62.67 40.10 64.83 16.74 39.42 51.48 62.40 4.14 54.07 94.85 20.73 38.58 5.52 29.06 52.68 90.71 93.42 15.83 90.31 43.39 11.30 50.04 97.03 38.95 23.03 30.07 27.96 65.32 2.77 80.43 56.85 96.29 98.45 97.73 76.95 49.36 88.45 94.94 42.57 62.33 82.96 8.12 83.23 52.06 -4.33 13.03 82.06 57.35 78.24 1.77 71.06 69.07 39.51 92.79 89.50 73.33 68.09 8.54 51.91 21.94 17.50 16.78 22.38 40.80 7.56 28.76 45.50 63.90 60.07 75.75 41.72 76.80 59.03 1.68 66.10 18.73 76.40 43.97 24.89 51.80 27.24 11.34 13.58 54.37 24.96 98.25 91.28 20.09 4.65 85.05 11.59 47.14 26.11 69.89 66.59 63.41 43.92 17.59 89.22 64.75 42.31 33.99 79.69 95.66 93.64 69.89 73.18 25.05 74.96 62.83 56.92 43.52 91.21 37.87 98.13 78.28 12.36 6.20 10.66 98.67 35.49 15.43 91.53 65.29 61.24 38.97 16.90 69.92 46.47 61.92 12.49 66.18 8.37 13.35 9.49 69.03 26.55 76.66 25.83 8.56 23.15 0.96 90.53 85.15 -57.94 87.73 31.55 34.78 56.38 60.23 46.40 66.43 90.97 77.76 60.19 99.00 86.19 45.49 48.31 5.85 94.60 18.05 36.96 89.12 97.05 63.27 96.12 67.78 83.42 52.64 19.85 37.52 84.77 16.96 94.85 36.45 14.99 54.17 64.87 54.89 16.22 71.79 15.78 74.54 60.62 24.64 23.78 0.04 52.73 98.22 45.78 67.32 92.61 99.63 42.73 98.81 78.13 14.71 15.84 97.10 98.87 32.52 50.29 97.02 18.67 57.29 44.52 58.90 18.47 83.26 29.87 47.43 29.73 25.14 0.94 36.00 5.54 93.37 35.08 51.91 32.53 71.52 14.30 77.14 30.91 64.86 65.79 44.35 54.46 7.58 63.23 73.45 25.11 59.21 51.37 1.29 39.49 65.88 48.74 35.74 12.19 47.08 60.13 15.92 -62.74 96.67 74.57 41.65 33.27 33.30 1.20 54.30 87.80 47.59 19.46 55.29 98.39 38.71 44.77 63.65 49.24 99.19 15.57 23.58 56.32 10.34 56.18 32.96 45.40 97.68 88.94 2.42 62.18 86.15 60.33 89.70 78.09 97.65 4.13 46.99 96.86 86.81 72.32 63.39 12.61 30.38 77.52 53.50 26.82 40.20 66.18 70.34 77.71 75.79 19.31 91.37 70.47 51.20 58.63 43.04 96.62 37.10 68.09 91.13 18.80 6.60 4.35 92.71 93.15 72.59 81.67 31.01 94.40 48.48 27.18 55.00 0.40 81.59 35.61 21.86 70.17 67.87 74.35 82.60 95.47 83.34 97.47 20.95 18.54 61.60 77.08 98.06 68.71 14.72 49.24 24.81 8.65 49.79 75.99 35.02 62.94 57.28 65.11 36.82 -73.36 69.05 66.55 94.02 62.79 37.08 99.38 71.86 28.15 45.94 61.68 54.05 26.40 19.70 1.59 79.64 53.41 41.53 32.20 82.44 26.38 5.28 17.18 15.59 14.35 0.74 43.35 39.81 55.73 19.79 11.57 3.94 23.01 6.89 58.04 99.77 33.13 36.44 99.64 61.74 88.66 62.24 18.66 25.10 74.89 14.28 17.41 52.57 39.94 33.95 84.62 59.72 81.67 39.56 91.74 17.04 61.01 61.28 2.97 92.48 54.01 14.21 16.21 54.40 34.11 93.47 33.46 44.35 97.66 38.13 68.10 96.25 47.34 71.54 97.48 10.45 40.68 23.57 25.10 1.55 15.62 87.28 31.37 85.78 45.24 10.34 46.78 29.70 89.57 88.30 22.19 44.51 61.06 9.61 51.93 46.48 6.08 9.32 9.42 3.85 -85.76 2.67 21.42 36.22 14.62 81.51 78.64 24.54 78.03 31.48 46.85 45.22 2.68 73.27 25.60 61.04 51.84 8.82 36.25 71.81 66.26 58.42 56.58 52.76 43.72 74.64 39.29 84.16 40.78 80.55 43.34 52.45 71.62 64.81 99.52 75.26 32.70 2.52 7.93 93.53 99.92 17.57 56.59 86.24 28.30 39.72 13.33 46.58 28.93 7.04 65.56 84.76 17.60 48.64 17.28 18.28 87.77 63.81 4.34 81.28 56.99 5.61 71.89 59.14 47.87 43.09 54.11 99.82 65.04 20.26 34.15 0.14 51.72 96.61 57.45 48.77 78.51 10.92 36.88 98.71 6.38 70.33 74.48 73.74 44.55 34.56 50.42 35.04 55.60 85.92 14.89 8.59 84.42 15.29 57.39 8.28 4.64 47.11 4.23 67.09 -57.12 69.64 48.20 42.01 93.03 50.44 54.79 54.39 68.53 62.46 45.37 30.85 42.96 26.63 75.89 93.50 87.58 90.33 5.75 62.34 87.82 40.44 61.85 14.86 36.57 41.97 59.71 7.33 79.77 28.91 88.59 42.73 33.25 88.84 76.70 67.61 20.91 30.35 79.56 97.87 51.15 53.77 16.28 83.63 82.30 99.81 15.33 13.24 76.34 72.65 91.70 52.95 28.83 85.09 9.89 37.03 57.37 96.56 19.62 54.19 81.29 66.98 50.66 50.41 19.27 21.32 70.80 84.02 80.48 2.29 51.46 13.79 38.08 8.81 9.94 47.34 83.30 64.15 8.33 15.10 74.95 29.93 29.08 70.87 58.19 37.92 23.71 29.95 4.26 1.67 13.30 33.84 55.63 94.35 9.26 66.68 16.31 50.57 45.49 81.38 -85.29 92.87 85.65 42.90 24.70 89.03 18.77 99.19 88.71 85.81 40.99 61.71 14.82 56.26 29.73 10.65 42.10 85.29 44.43 14.58 55.06 14.78 29.25 76.23 86.51 87.44 74.05 7.16 23.39 84.61 57.94 45.95 24.00 48.41 34.25 74.86 58.08 78.31 0.57 30.80 71.72 65.03 67.08 74.18 62.78 8.41 45.61 52.22 55.12 47.29 65.09 98.54 5.45 80.95 8.79 53.93 97.33 59.79 59.51 59.32 40.85 7.73 22.69 33.61 72.49 80.19 74.06 73.50 52.20 49.44 27.40 79.22 29.57 26.12 15.94 5.31 21.68 26.43 40.38 85.94 57.16 91.59 0.17 67.07 73.42 39.15 86.77 8.68 78.58 15.17 97.52 95.31 49.19 61.75 0.78 22.01 28.07 11.72 36.22 31.10 -25.69 59.10 76.30 76.71 86.11 67.53 14.83 93.41 7.63 84.79 97.74 73.28 89.49 56.03 98.83 41.05 71.68 79.36 15.80 42.79 7.73 37.02 17.64 70.71 55.57 91.14 39.85 95.29 66.84 81.95 88.48 39.47 21.05 65.84 5.54 24.47 49.29 1.98 47.95 1.89 90.83 32.88 61.16 24.31 20.67 16.82 67.21 79.07 18.19 53.19 20.00 72.16 37.79 3.96 77.51 69.48 91.03 52.82 48.01 50.37 30.96 13.87 11.33 63.10 48.79 26.32 66.51 37.93 49.85 4.19 40.31 25.17 45.18 36.13 3.11 18.43 96.76 27.25 41.81 69.04 55.17 14.16 89.36 78.90 94.84 27.06 5.07 94.50 64.13 7.98 58.20 23.59 67.24 42.23 4.98 0.91 24.21 22.66 88.92 8.92 -69.13 13.80 47.50 67.56 94.35 28.08 36.10 63.90 78.48 92.25 62.99 16.38 16.08 92.22 37.03 14.46 98.01 95.78 29.06 77.08 3.58 68.27 90.64 99.62 40.31 21.75 35.05 14.22 69.36 56.53 94.59 83.58 16.28 28.49 54.16 24.11 75.40 38.68 61.97 20.56 37.11 83.33 17.91 25.57 12.86 36.59 99.92 99.28 50.36 42.47 33.16 16.14 4.57 67.70 89.66 10.77 99.04 4.07 50.03 73.39 35.84 46.55 14.22 23.47 78.60 0.32 64.72 43.63 41.35 69.82 1.04 97.58 41.84 8.98 35.25 47.57 25.80 54.62 95.37 7.50 91.83 90.28 89.67 82.72 23.95 4.54 92.90 79.91 13.71 12.44 49.88 54.31 18.55 46.97 76.45 37.89 2.05 42.21 36.89 58.00 -37.33 13.97 19.50 92.36 47.40 44.16 96.64 41.94 96.35 44.44 83.34 24.33 67.43 99.94 7.49 39.79 15.19 60.72 62.48 42.65 96.54 52.35 37.23 40.44 25.52 23.20 13.87 24.67 87.15 18.63 42.94 61.63 36.88 58.64 11.65 86.70 39.91 44.45 46.05 77.34 92.47 16.28 66.24 31.25 89.64 83.15 11.56 33.15 5.93 15.24 19.22 29.16 17.25 17.90 65.88 35.28 51.53 37.15 53.12 22.20 14.99 40.71 41.96 8.20 46.99 21.56 91.95 48.41 15.51 1.92 8.71 35.41 85.13 38.66 67.99 64.37 90.01 3.45 55.58 94.92 29.17 13.20 89.12 85.08 76.04 58.90 63.02 0.18 7.86 72.42 81.38 87.48 78.14 55.84 46.90 41.46 36.39 17.29 22.90 14.05 -76.79 87.42 57.82 9.46 65.95 99.87 70.93 86.58 75.26 30.49 3.90 0.76 15.31 22.77 20.84 66.72 75.11 79.31 16.14 13.95 66.69 69.43 51.93 87.11 21.81 19.51 70.20 50.22 12.28 27.61 8.62 99.10 68.54 30.37 23.33 74.51 99.99 61.87 6.35 86.69 94.29 90.79 19.02 11.13 79.11 8.00 34.49 53.35 23.62 66.99 6.96 76.70 51.48 63.66 27.17 59.37 66.00 40.17 0.63 35.03 64.15 43.51 11.44 1.01 89.48 73.60 12.49 14.01 39.43 98.49 57.83 87.24 24.08 7.63 23.34 5.92 36.55 32.80 48.51 47.27 62.54 32.10 97.07 45.63 27.39 24.60 34.41 60.39 94.86 30.12 91.23 17.64 5.40 32.19 10.65 59.99 50.85 33.23 95.08 53.95 -21.28 43.73 72.24 51.96 1.30 84.53 71.64 32.80 21.42 64.06 45.37 45.26 32.73 18.08 71.33 87.28 40.28 74.65 75.47 72.29 43.80 13.72 41.22 97.98 23.36 31.31 32.59 53.18 22.65 98.02 12.15 11.39 85.10 27.58 55.17 23.20 15.05 58.98 5.08 37.83 81.17 35.39 25.77 36.18 66.24 29.64 15.73 79.87 69.27 20.61 0.06 94.62 98.01 28.75 20.33 50.90 57.56 61.30 56.15 43.21 76.60 95.73 12.68 65.80 79.68 80.28 78.42 0.79 19.16 34.69 73.60 27.82 96.70 98.39 75.13 35.56 5.75 16.03 85.70 80.52 4.95 70.77 98.50 6.10 9.84 77.39 86.31 4.18 62.73 10.42 27.73 62.64 88.08 97.03 49.61 94.24 39.82 45.22 76.82 61.69 -97.83 47.33 8.68 55.43 75.21 2.82 12.62 54.26 53.67 35.27 31.28 79.92 75.25 46.78 92.44 67.84 25.81 84.16 82.11 24.83 49.55 85.45 9.92 62.26 32.98 44.98 74.30 77.15 71.84 6.48 24.37 3.87 74.82 36.02 79.64 11.28 88.72 82.23 1.25 2.74 86.53 36.47 17.89 39.95 44.58 45.76 10.86 92.87 27.33 70.48 1.91 36.08 95.29 84.06 60.52 81.47 50.62 73.40 25.52 81.40 87.43 52.26 52.03 62.33 94.73 74.94 66.65 23.40 75.32 78.55 45.96 24.81 29.91 43.05 24.58 1.49 3.45 14.74 50.95 70.34 8.44 86.94 50.29 52.92 34.44 0.07 79.07 73.85 71.32 69.31 11.62 30.14 56.81 59.95 22.86 69.36 36.54 99.86 87.61 15.54 -38.65 12.50 74.91 16.12 13.83 29.94 40.71 74.36 6.11 21.56 85.03 37.17 99.67 46.17 66.61 47.55 54.91 50.09 82.63 44.79 23.72 50.29 1.71 95.90 15.91 85.48 58.60 96.42 12.11 91.27 43.71 53.81 71.22 23.70 33.06 36.06 31.76 72.57 89.07 25.82 78.67 65.94 84.10 34.21 63.21 84.55 23.50 36.57 97.07 30.08 10.37 4.88 31.25 14.25 91.53 34.92 30.23 11.46 9.20 40.97 78.11 38.47 36.24 37.35 39.35 0.66 22.89 52.17 26.21 1.54 44.86 91.28 8.20 45.46 46.51 22.35 41.58 43.76 65.48 36.52 88.72 19.12 38.05 11.29 86.02 21.01 3.02 33.41 89.51 41.34 4.75 57.99 45.74 28.45 92.36 67.68 19.41 76.46 51.83 79.75 -74.03 60.78 10.74 10.25 51.33 79.91 42.97 87.55 28.69 28.43 92.68 2.26 19.28 79.24 2.92 58.65 31.13 38.57 85.65 66.06 59.15 73.82 48.14 52.54 32.20 7.94 28.00 76.51 84.52 95.31 15.86 73.08 45.48 80.93 57.64 27.56 7.05 77.57 81.62 62.37 75.23 93.08 14.74 81.90 7.77 78.52 45.05 36.82 71.60 5.29 8.36 8.00 92.07 83.25 63.25 94.29 12.53 16.90 87.05 45.58 44.66 37.17 9.01 19.38 55.85 23.63 43.96 71.20 9.20 16.84 50.17 53.30 49.23 34.73 2.62 86.84 44.17 74.32 90.34 78.35 34.64 7.59 10.41 93.79 4.33 75.00 70.02 77.06 1.32 73.46 57.39 91.51 76.95 26.52 15.30 40.53 96.45 84.86 92.76 33.32 -47.02 13.20 15.44 38.36 94.15 12.52 13.51 48.42 24.01 5.07 16.67 58.21 23.09 38.64 20.76 49.01 87.40 2.20 68.86 6.75 97.62 13.67 28.08 21.75 77.61 22.18 4.70 95.21 74.13 56.46 49.11 50.76 14.27 83.36 14.09 89.46 74.10 73.60 72.21 42.65 75.96 25.12 61.88 5.28 73.84 0.88 28.97 85.73 75.54 4.93 92.53 68.64 75.73 44.24 64.11 15.38 95.30 41.91 58.58 79.82 22.65 69.86 53.65 85.17 72.45 49.58 21.82 37.62 46.14 59.42 11.35 57.62 11.88 49.12 41.51 21.52 60.13 51.47 78.27 65.33 79.60 49.69 64.31 17.70 10.46 35.13 96.98 16.39 46.12 70.76 44.97 40.53 88.84 64.65 36.60 48.93 84.68 23.42 71.02 14.35 -79.32 79.20 11.34 79.28 30.42 83.10 81.95 98.72 42.20 59.84 49.96 84.94 35.26 1.74 28.89 34.71 14.85 73.28 24.49 65.37 74.86 78.01 87.77 91.90 58.86 29.47 92.70 67.46 88.38 46.88 50.98 99.69 54.62 99.39 10.25 57.69 8.50 44.36 34.32 22.19 51.47 91.11 35.37 86.70 77.11 41.70 66.93 35.13 24.04 91.72 12.99 41.91 62.02 33.27 38.05 14.70 53.18 35.50 39.69 5.10 21.76 41.79 12.90 93.17 51.88 88.73 90.18 38.96 46.52 65.60 81.90 23.98 66.52 69.47 74.29 67.96 20.73 75.95 43.23 76.34 5.66 27.40 9.89 81.79 35.79 13.40 62.54 73.43 72.74 22.79 0.61 37.22 95.94 50.85 30.47 49.43 76.47 48.09 46.10 0.43 -39.68 94.82 68.68 76.14 67.25 19.08 83.19 99.62 14.32 47.13 73.01 68.03 18.10 33.22 72.19 12.61 66.74 90.50 25.24 62.64 11.27 83.74 85.53 87.87 31.38 59.22 82.42 54.18 93.97 71.88 70.44 68.47 25.77 90.44 53.39 57.58 46.85 49.59 17.62 8.15 57.26 30.99 16.75 63.21 41.23 21.18 78.92 31.94 39.24 57.48 34.27 59.37 50.95 40.74 29.26 80.63 9.51 47.36 47.50 25.18 21.69 98.60 55.00 72.95 23.55 88.14 27.88 1.57 73.90 14.56 47.19 21.41 33.24 18.61 74.33 17.59 61.04 23.34 5.41 96.13 88.21 24.72 8.61 83.93 50.46 65.49 44.27 23.42 14.74 63.78 53.98 3.47 3.12 32.38 12.55 88.27 80.67 47.52 90.65 74.76 -24.29 93.98 93.07 92.48 51.31 98.45 78.94 99.58 51.14 49.51 45.81 0.93 14.29 20.25 97.28 81.62 36.89 93.47 21.93 71.99 16.81 15.25 25.08 51.62 39.49 35.74 70.64 30.01 29.60 4.77 69.10 98.12 66.97 40.75 51.29 2.63 35.35 45.75 84.77 11.84 11.38 93.44 47.82 13.90 99.12 93.70 86.20 69.36 19.55 99.76 39.31 44.31 48.62 60.99 81.49 58.27 94.95 68.40 20.08 51.79 21.57 81.70 25.81 60.29 86.36 14.86 69.14 51.69 52.78 20.41 50.53 82.93 87.95 71.14 80.09 5.51 77.83 37.46 87.94 24.87 86.19 99.44 89.51 85.42 6.67 87.52 4.65 20.81 31.68 84.59 96.55 86.81 73.62 23.14 40.96 61.38 86.76 40.88 8.04 40.47 -14.46 50.22 72.28 41.16 36.70 93.97 96.28 82.25 80.47 46.32 32.90 85.03 25.96 43.42 84.62 98.83 30.55 94.87 85.05 13.72 79.52 45.85 23.58 14.72 87.13 74.87 81.09 27.81 61.61 84.96 2.39 30.97 54.93 45.93 5.05 73.39 17.28 93.01 71.21 37.38 18.49 42.78 87.11 31.96 48.46 42.70 28.60 4.90 68.71 9.46 71.92 98.25 12.30 47.23 78.00 15.43 11.22 54.26 43.28 43.33 50.62 21.34 43.06 43.47 78.63 84.24 34.48 37.85 97.00 99.83 51.98 14.75 18.37 4.65 29.34 87.02 73.65 91.69 90.70 15.91 69.42 65.92 82.43 94.24 62.53 37.56 4.42 83.68 81.12 48.13 23.72 79.11 65.29 69.13 4.10 40.32 80.19 60.82 18.61 2.94 -71.10 84.96 61.93 73.04 21.93 21.77 1.85 96.22 49.88 64.31 83.92 21.63 50.18 73.99 5.99 87.49 93.64 65.40 49.35 24.98 62.48 9.55 57.56 72.84 36.69 81.84 77.72 20.21 86.35 31.46 21.35 9.22 82.65 56.11 1.85 97.72 92.37 38.35 23.53 56.11 64.46 84.39 89.77 73.49 33.80 88.78 84.37 3.28 57.03 59.32 7.00 42.78 27.62 85.05 88.91 29.38 66.05 17.85 97.76 21.89 37.75 93.34 22.17 89.81 35.07 79.37 37.58 45.35 68.31 9.34 2.47 69.86 92.67 53.71 42.44 27.48 98.11 1.82 3.87 40.53 48.49 99.84 56.54 56.74 20.57 26.96 35.63 71.82 96.08 83.50 26.84 34.95 78.52 0.16 35.80 3.30 14.43 16.14 7.93 57.12 -53.18 52.81 77.90 23.66 17.69 25.04 6.91 8.72 81.79 17.35 31.76 64.45 24.89 50.66 47.14 59.98 17.24 34.27 6.21 85.27 29.29 94.66 43.18 29.81 0.84 35.87 0.60 27.18 14.07 11.76 40.68 21.22 7.60 90.95 5.16 76.11 3.16 27.95 26.42 95.59 63.61 1.35 45.28 8.10 54.77 41.39 72.06 6.67 11.47 50.61 28.04 8.12 36.63 20.93 93.31 10.90 85.12 79.62 80.27 13.31 58.50 36.91 12.24 74.30 39.96 48.63 98.32 69.48 66.37 28.81 2.83 36.82 90.52 5.92 84.06 99.13 42.48 90.97 84.15 22.57 97.89 69.30 94.33 10.90 69.53 8.30 19.61 97.24 83.35 73.84 30.12 10.44 89.03 48.79 52.46 34.15 48.73 58.39 94.71 65.52 -43.70 73.19 61.95 74.17 16.28 50.74 97.80 52.32 92.40 38.46 76.99 21.16 64.78 55.12 28.45 48.51 52.28 69.78 30.88 69.94 11.28 32.73 90.20 49.23 58.21 51.17 47.85 10.48 68.19 50.52 37.63 1.86 52.92 44.05 68.33 31.26 34.24 28.33 4.22 94.69 55.17 87.64 45.69 64.82 52.49 3.29 69.57 21.02 2.85 0.90 83.59 84.00 42.46 18.42 23.71 41.47 21.18 53.20 3.62 37.37 71.75 80.05 60.48 28.36 55.23 15.66 41.13 11.47 22.01 19.02 80.93 99.52 27.63 95.48 59.18 78.84 17.73 50.14 74.83 34.11 56.81 21.80 92.65 86.83 32.55 74.73 82.14 28.90 65.32 63.01 71.85 15.81 28.18 92.94 61.57 61.11 97.03 14.57 34.91 82.60 -96.47 66.83 62.23 60.22 21.50 84.68 40.47 83.10 19.61 60.48 75.62 48.16 1.25 65.87 6.38 75.30 75.06 72.33 67.54 45.36 34.77 52.95 65.44 37.81 96.80 3.12 14.11 78.84 73.84 87.85 64.41 59.55 60.53 8.44 78.93 30.04 4.11 74.61 3.27 0.63 40.39 85.26 85.77 73.79 11.05 20.74 60.97 44.88 75.62 67.99 69.13 55.97 66.71 25.81 26.04 2.21 78.68 68.61 3.93 82.38 2.13 78.38 85.13 67.37 77.94 18.94 54.34 33.07 79.68 89.77 79.90 34.67 9.70 40.40 2.37 72.55 3.92 95.63 3.60 8.77 3.08 57.69 34.93 79.44 98.95 24.55 3.31 26.56 84.44 82.59 81.65 30.68 45.94 26.02 0.51 42.06 90.96 62.44 85.08 43.99 -54.18 46.29 79.72 99.50 43.59 73.71 59.63 96.44 12.73 31.69 75.30 15.60 53.85 9.67 86.80 16.67 86.04 27.04 85.42 76.57 58.72 67.88 78.02 40.67 8.99 51.19 14.52 97.58 99.77 5.45 36.95 81.48 21.81 22.84 30.23 98.77 32.64 0.35 52.60 19.52 10.86 90.07 45.49 34.20 52.83 89.75 73.96 93.67 76.29 32.74 83.09 40.21 63.37 53.07 27.44 64.04 0.10 80.81 59.70 24.00 13.37 41.21 17.86 52.10 51.34 74.49 73.31 69.03 32.15 56.88 62.30 28.07 22.73 57.74 1.76 6.28 98.97 87.54 48.66 91.63 63.83 45.79 78.42 80.79 46.74 39.06 94.47 40.45 16.38 1.89 68.75 13.17 53.18 71.89 5.36 65.32 91.50 86.74 78.29 76.66 -45.33 82.36 69.87 39.34 9.45 63.21 12.42 86.57 77.19 14.42 18.40 66.52 89.65 10.42 16.93 92.02 84.87 63.14 54.68 5.48 2.74 91.49 32.09 90.77 35.44 37.01 65.05 1.69 76.11 31.15 3.11 88.97 24.94 11.40 18.22 25.42 33.88 78.25 62.66 11.69 62.58 59.83 10.26 91.69 80.35 0.55 18.35 53.53 3.19 81.24 31.04 29.81 53.01 95.44 41.94 58.87 9.35 29.92 50.02 26.26 28.15 4.20 35.80 2.60 52.48 71.59 12.23 24.76 0.46 83.91 3.78 8.95 73.34 0.62 88.38 82.66 61.28 54.56 23.28 61.29 59.36 33.38 99.37 33.20 43.63 14.28 73.98 34.50 55.52 99.39 76.90 59.31 18.51 20.85 0.86 6.12 29.43 38.23 35.76 45.45 -64.87 48.77 1.42 18.40 87.03 24.01 74.00 22.22 98.19 52.73 8.32 93.72 87.54 91.47 51.31 14.57 77.62 33.96 35.23 36.88 11.20 40.83 53.25 73.89 55.11 67.83 76.48 53.22 23.79 38.69 80.33 36.16 74.67 93.47 50.86 48.35 47.17 22.00 3.38 75.52 84.20 29.36 81.09 39.93 5.96 9.67 14.14 11.60 12.26 88.32 81.07 1.42 87.34 82.01 99.71 96.17 32.09 25.40 26.23 93.26 18.84 57.34 12.01 47.37 66.74 83.43 42.72 32.52 59.19 56.69 29.77 67.14 45.77 34.80 18.59 44.85 19.04 60.54 39.67 7.34 39.95 48.67 84.84 33.39 63.58 58.73 92.18 43.56 47.87 19.78 6.97 53.63 10.38 16.66 86.91 56.91 19.08 0.57 65.97 69.13 -8.81 8.10 6.91 48.34 62.60 90.45 4.18 50.63 79.40 66.75 24.09 86.30 71.56 75.82 6.71 78.31 23.15 82.09 71.77 16.53 35.73 46.30 88.65 76.67 65.50 86.53 3.65 86.09 92.05 9.83 37.74 61.84 64.13 49.19 2.58 99.01 29.28 74.68 33.83 30.73 15.93 55.12 16.88 89.94 41.67 39.39 96.87 37.65 62.65 64.67 95.62 71.51 4.35 62.18 49.75 22.13 96.57 84.26 74.40 5.60 75.52 95.64 89.95 36.91 86.43 66.08 13.38 24.13 66.59 95.42 91.21 89.33 75.61 84.86 85.56 62.04 73.12 32.51 45.67 28.91 16.85 84.55 15.34 21.07 43.24 66.41 60.63 13.51 1.04 42.07 46.63 17.08 79.33 4.13 74.78 40.03 3.36 99.63 97.46 21.65 -81.20 29.65 88.30 16.51 51.48 46.38 78.28 12.90 39.44 19.04 32.39 89.41 18.37 62.72 83.18 54.14 95.42 30.68 88.56 62.89 1.00 23.96 48.58 23.10 22.34 3.96 89.03 95.12 46.30 69.15 59.95 18.19 1.15 20.77 17.77 90.18 23.84 19.20 90.45 89.69 43.55 35.03 51.50 38.36 32.77 95.24 33.25 64.79 75.83 42.32 92.89 1.06 99.34 37.23 22.22 32.69 87.84 98.86 84.21 55.15 20.99 42.88 82.10 70.73 10.99 57.68 69.64 38.11 93.03 26.54 26.24 66.77 90.99 59.53 11.06 96.74 83.76 43.82 19.67 99.12 76.02 8.92 53.91 82.30 12.38 85.06 55.26 84.13 38.65 22.19 83.59 14.24 16.11 20.90 44.49 37.50 96.92 61.41 30.20 88.41 -75.78 70.94 27.85 28.57 50.19 47.17 61.51 48.66 19.96 18.70 35.16 96.86 37.29 79.32 76.28 68.17 16.25 39.68 5.67 95.85 91.99 39.70 84.23 47.07 93.19 61.68 86.78 48.68 98.22 0.10 0.96 7.75 8.71 88.82 50.41 94.07 10.84 41.57 2.96 84.83 27.16 69.07 15.93 55.97 94.60 57.29 14.68 85.75 15.80 77.94 81.09 79.97 94.21 58.40 17.40 71.52 67.25 64.73 76.91 11.16 0.21 89.16 24.98 92.89 1.31 7.90 98.91 94.27 92.89 61.45 53.09 42.64 10.39 64.91 1.13 59.97 9.71 11.02 71.82 75.77 91.40 34.51 83.48 79.07 52.38 61.65 71.76 53.47 99.74 48.08 15.00 24.91 23.51 23.93 31.49 93.76 43.47 54.08 57.60 0.90 -40.78 68.87 49.48 53.68 18.66 61.13 97.04 10.35 28.27 4.29 15.09 84.04 29.89 77.11 20.69 69.72 93.21 98.14 46.72 52.67 57.57 4.54 42.37 57.58 83.74 92.43 40.51 9.48 98.81 67.18 1.58 88.41 64.55 52.14 5.23 72.91 8.70 60.05 21.89 89.75 6.06 29.22 26.24 40.91 54.29 49.95 95.62 94.20 99.44 56.82 46.63 43.12 32.32 71.83 26.96 91.27 41.22 74.75 63.07 57.76 42.71 23.68 62.72 33.18 86.94 73.94 79.31 35.15 90.45 75.95 37.49 1.95 97.27 50.35 49.10 65.20 54.05 10.91 32.63 34.87 84.13 42.35 73.95 45.32 83.15 7.14 39.98 61.40 6.55 23.69 97.74 43.28 60.79 0.41 81.67 70.52 34.83 68.90 32.25 48.67 -45.66 18.02 99.97 12.88 25.18 13.56 82.50 8.76 14.01 77.15 18.44 5.58 98.58 75.77 21.53 58.74 58.16 9.32 7.24 76.69 49.85 59.80 93.25 96.76 84.20 64.82 48.58 40.19 22.44 33.16 11.49 27.57 46.50 92.55 61.00 77.59 88.01 78.80 72.65 19.84 15.10 13.33 82.31 46.21 8.17 63.27 17.23 50.54 50.17 98.71 42.95 62.99 98.95 65.62 27.50 60.14 66.71 90.39 96.81 87.61 17.60 15.74 46.42 22.92 96.93 12.73 67.37 34.50 35.23 52.22 62.41 75.00 70.57 43.67 50.91 92.67 21.68 37.21 75.11 98.97 41.76 34.37 77.19 32.35 13.27 88.63 48.66 2.21 13.78 36.94 62.44 74.39 23.01 88.40 85.90 9.62 38.13 16.42 35.22 65.81 -92.46 37.53 62.41 67.99 84.09 70.72 50.42 12.59 12.27 32.83 57.95 79.95 55.29 17.35 8.98 59.93 94.24 22.11 54.66 97.75 6.19 98.93 83.67 68.29 30.04 61.83 34.98 38.17 78.04 26.96 99.25 31.18 16.58 93.08 2.63 84.60 3.06 25.92 85.70 9.17 50.31 82.03 8.33 76.88 16.89 88.42 42.16 24.02 49.49 88.84 65.05 42.01 44.65 49.71 84.12 98.11 12.36 51.91 58.96 28.22 14.42 91.82 47.36 75.12 32.84 81.38 38.60 90.99 87.92 52.49 28.25 64.26 34.50 83.31 80.75 97.02 42.64 27.23 5.06 82.01 6.99 93.76 4.47 5.17 95.22 41.66 9.95 85.80 78.90 86.20 94.85 39.43 2.92 31.77 30.38 74.77 35.88 85.61 85.07 24.95 -51.13 82.11 80.85 3.53 87.86 72.70 61.92 14.65 71.42 26.01 20.31 88.11 15.70 99.83 8.67 3.25 37.90 97.34 53.87 37.53 4.34 46.18 60.02 44.46 85.25 80.91 76.39 18.32 13.35 92.25 64.40 92.43 37.61 67.03 74.88 11.15 37.99 22.40 13.91 20.83 99.12 14.60 28.16 33.81 37.94 98.73 98.90 45.60 67.26 71.74 68.07 26.00 61.79 25.28 35.33 69.42 54.95 20.55 63.58 24.50 56.36 9.32 15.76 60.66 76.18 17.70 91.67 79.01 3.13 83.90 53.73 37.88 63.60 29.51 41.95 40.54 53.08 64.74 34.93 51.38 6.16 64.92 78.46 77.93 32.75 64.96 38.98 26.83 77.41 92.77 53.08 15.50 69.50 9.32 16.03 0.33 67.62 46.62 84.04 0.58 -32.80 52.22 43.41 59.90 99.27 5.00 67.50 78.27 4.98 35.35 50.36 30.42 58.53 90.41 50.71 85.54 53.44 23.54 54.86 5.97 4.93 73.23 51.80 26.17 27.72 82.72 89.73 79.74 55.50 23.75 36.35 59.78 30.48 16.85 98.07 52.93 78.57 20.63 20.85 29.03 98.31 52.30 28.75 54.51 48.99 1.23 12.92 28.10 48.10 32.24 58.09 76.29 59.15 60.31 6.31 31.14 96.46 99.86 88.66 40.62 89.03 94.39 98.15 84.20 28.44 16.72 64.90 49.83 42.66 19.18 96.27 84.14 81.54 26.02 93.79 89.14 1.92 13.26 80.34 7.50 24.10 39.06 26.16 38.54 44.13 75.22 12.07 53.99 50.76 37.49 55.53 47.57 90.62 4.42 12.90 99.74 96.46 63.06 31.43 67.28 -83.64 62.27 98.80 86.79 27.77 13.14 53.98 12.80 86.51 20.56 78.46 49.91 85.47 98.77 4.47 1.93 61.26 14.13 15.06 76.04 69.08 16.71 26.59 15.86 22.69 17.65 1.04 15.71 54.73 14.21 78.00 34.62 1.89 58.97 29.86 14.97 12.46 29.08 59.98 50.75 89.65 98.35 55.92 13.16 81.28 39.20 3.74 46.86 75.82 52.57 73.71 10.95 87.67 30.72 5.62 95.72 81.37 38.41 93.97 48.57 94.81 34.09 54.51 43.06 0.87 52.35 22.96 34.14 48.64 29.26 48.58 6.59 77.82 34.27 21.90 39.63 76.00 11.26 86.75 95.05 2.98 91.48 97.28 99.51 36.21 39.35 13.65 85.01 37.37 24.28 28.42 63.84 24.33 38.37 79.93 24.48 91.61 33.74 81.33 82.43 -58.84 49.71 15.96 91.46 91.47 59.22 99.64 24.58 43.53 84.37 53.43 51.77 11.93 95.16 80.34 1.26 20.94 88.74 88.21 84.44 31.11 12.97 2.10 68.42 54.10 45.64 35.37 80.35 35.88 5.30 30.65 32.21 8.24 80.51 97.54 51.19 73.40 50.03 25.90 2.30 61.46 90.77 8.08 15.10 25.77 14.84 32.75 84.49 56.34 74.31 17.07 5.59 77.17 27.37 25.78 13.84 82.55 90.33 92.08 12.79 80.73 44.42 99.33 65.65 10.90 87.03 60.45 79.99 14.79 5.33 78.36 42.13 90.04 65.71 84.29 60.42 89.10 79.50 36.10 81.39 55.21 41.46 48.97 18.92 39.72 70.86 79.35 94.75 11.63 22.85 66.11 23.77 84.72 79.22 14.27 76.35 17.14 55.32 81.62 75.89 -50.83 65.92 89.65 28.50 82.14 2.90 35.78 24.15 28.53 19.16 89.81 84.93 59.27 82.69 22.42 63.17 83.41 50.76 90.10 79.74 83.15 65.45 7.85 53.21 14.64 26.44 86.33 33.88 43.76 45.40 46.12 62.09 41.04 41.00 85.24 32.60 51.59 57.45 10.56 34.81 69.15 2.41 43.93 31.30 54.08 45.89 44.47 20.40 16.01 52.03 19.71 89.29 55.93 72.84 23.76 94.47 69.56 17.36 15.63 75.54 51.49 45.42 98.87 43.63 12.80 13.42 18.38 12.10 12.76 33.57 16.02 19.66 81.55 84.44 50.35 40.45 23.46 13.45 60.76 32.63 25.41 49.19 61.33 75.23 71.75 20.36 74.28 71.35 68.08 20.96 86.12 23.69 29.92 84.54 77.59 31.09 72.68 70.91 22.45 16.92 -34.73 88.60 20.57 77.09 50.25 79.97 2.52 32.11 43.23 90.99 62.79 78.14 98.85 85.95 27.24 40.00 72.54 2.75 82.26 28.20 7.93 89.08 90.81 6.27 39.61 27.03 68.85 28.18 96.18 22.41 16.15 85.11 33.18 88.59 50.62 84.63 31.98 64.79 1.61 70.97 51.33 46.27 0.02 3.06 1.74 81.42 86.80 55.00 47.04 65.09 65.58 0.70 50.92 59.42 84.09 36.39 9.20 40.06 82.81 50.57 5.02 77.25 18.69 0.73 7.42 92.67 5.50 37.54 65.83 33.35 50.32 48.34 22.26 22.49 27.15 68.36 19.22 0.70 41.22 12.54 71.63 83.92 10.32 19.11 65.01 2.62 67.45 45.39 66.02 97.19 11.42 80.61 52.96 40.43 99.29 91.76 43.89 35.96 48.36 44.71 -73.43 84.81 16.81 16.21 59.91 66.96 54.41 30.78 98.68 37.90 61.46 35.74 94.73 73.24 81.52 67.64 4.15 18.90 51.60 97.76 12.43 4.68 12.35 49.76 35.28 21.71 21.59 42.80 74.44 93.52 97.07 14.78 35.38 78.14 36.48 69.20 92.75 62.84 13.95 34.61 65.51 27.62 67.48 14.46 63.16 18.77 11.94 36.05 75.17 37.32 80.52 57.97 33.35 5.07 20.38 84.53 64.60 48.72 94.63 61.53 59.21 21.94 14.85 29.17 53.69 28.01 63.89 71.46 92.24 82.57 22.40 23.29 38.30 40.38 7.07 21.97 30.34 99.32 92.75 64.59 53.69 77.09 0.49 96.22 56.31 70.03 13.78 29.69 19.32 31.06 49.89 15.11 72.03 59.77 80.91 58.87 28.52 61.23 67.71 90.75 -39.32 42.82 37.79 98.72 9.44 89.30 71.24 73.47 2.29 39.62 45.40 52.90 39.23 31.43 32.41 9.46 74.95 13.56 56.77 44.42 74.07 30.43 84.29 86.06 80.60 32.36 52.91 33.07 91.52 60.31 51.74 53.41 69.53 54.54 85.45 33.04 2.13 37.84 88.85 99.22 4.39 88.57 14.71 50.24 58.29 78.06 67.42 5.91 32.98 21.22 84.05 58.71 58.32 11.15 45.78 56.68 6.73 14.01 27.47 79.56 87.03 19.05 51.30 86.25 83.38 67.86 88.35 47.53 21.02 91.66 46.66 90.75 68.51 85.98 76.79 56.68 7.75 19.85 56.14 71.15 70.53 38.47 25.11 41.23 41.95 39.72 52.04 6.55 18.09 67.63 71.73 36.85 42.34 53.07 62.54 89.15 15.98 55.35 8.14 92.86 -29.17 75.40 4.28 30.54 94.38 90.68 91.59 11.46 55.44 39.84 46.55 35.54 39.10 74.46 21.48 49.05 62.65 40.03 60.36 20.38 77.06 28.37 45.19 96.47 83.50 76.53 17.98 14.76 75.37 72.82 33.76 75.79 45.23 86.73 42.29 9.90 21.07 57.34 44.84 96.84 18.38 51.29 90.80 46.21 38.56 65.62 13.40 70.21 80.29 0.26 38.44 76.57 63.14 41.83 9.30 35.62 4.12 88.96 66.43 17.90 63.76 52.52 5.79 64.42 85.31 82.93 37.23 41.86 79.91 85.34 89.48 47.40 15.90 77.48 36.33 8.74 97.63 76.51 64.65 54.16 37.58 37.02 11.77 29.81 3.50 96.59 69.73 36.38 80.42 42.40 33.97 56.12 74.14 18.62 70.68 11.45 41.88 34.94 49.36 28.16 -37.20 67.63 57.01 28.19 2.65 68.47 91.70 4.50 1.38 78.68 90.23 49.56 41.85 17.48 85.35 4.59 1.92 1.82 82.61 2.20 93.32 86.39 99.43 65.91 74.73 56.22 44.51 99.48 97.51 60.60 92.87 9.09 62.99 74.19 73.41 31.12 40.27 69.28 97.89 73.21 78.50 11.46 0.45 94.44 33.60 65.78 83.32 10.91 90.72 19.39 87.39 84.99 66.96 31.79 28.40 13.57 7.80 44.74 2.21 83.49 77.77 38.27 8.82 69.52 53.81 12.92 74.50 13.19 91.54 72.25 16.80 33.83 51.43 45.75 35.83 76.04 54.21 78.17 5.69 79.81 25.34 34.01 30.30 60.07 81.47 35.63 99.79 33.88 12.56 36.79 13.65 91.25 37.60 56.60 72.74 55.94 25.46 45.49 50.16 78.08 -64.43 71.29 90.27 3.53 92.36 92.94 6.92 46.84 37.61 42.61 76.29 73.74 99.67 18.73 72.09 51.40 66.27 67.00 97.12 92.46 69.14 87.27 78.97 39.89 25.48 72.94 36.26 95.98 88.15 72.17 82.89 40.83 57.19 71.94 86.18 96.66 49.37 5.53 58.38 76.25 65.47 70.93 61.17 81.09 47.34 91.91 77.35 27.39 71.91 44.06 53.52 46.87 63.76 51.13 38.72 91.53 77.40 74.15 52.85 38.00 39.97 82.15 40.14 67.92 72.35 6.08 5.01 48.49 98.30 82.49 48.41 26.96 79.94 88.71 85.19 7.69 9.38 62.37 33.68 66.96 21.76 56.07 33.31 53.77 64.75 10.84 18.36 5.42 90.71 71.38 2.35 55.95 22.52 55.79 28.71 9.34 81.24 52.63 98.20 31.38 -84.85 35.76 39.34 66.62 54.20 13.52 70.40 5.01 7.68 81.11 63.06 81.34 85.56 79.73 70.72 62.46 26.61 40.69 26.84 1.93 22.11 61.66 64.33 25.69 65.45 25.34 31.26 82.74 36.68 80.24 23.69 67.01 40.53 46.86 40.26 53.96 27.57 46.09 13.42 59.29 22.10 28.85 70.42 87.91 44.28 84.95 60.64 27.12 25.73 11.85 39.13 86.40 20.63 10.62 31.22 23.37 63.45 17.30 1.93 81.33 16.65 88.30 96.78 42.94 49.01 41.55 7.99 55.31 83.56 71.60 4.87 30.42 34.03 45.05 51.48 2.85 97.20 62.10 31.99 8.83 11.64 15.85 48.64 36.96 72.41 39.65 26.36 28.96 16.00 47.58 55.40 98.30 77.82 71.44 45.78 30.87 61.30 19.99 14.31 97.91 -70.88 14.53 24.63 18.55 71.05 74.14 57.86 33.42 94.55 55.98 51.23 17.75 81.54 52.45 52.81 12.48 97.11 76.20 66.94 69.95 64.90 1.36 83.78 78.07 89.25 31.43 96.42 26.57 32.54 17.90 77.33 19.59 32.14 10.96 5.95 3.44 66.23 68.40 93.86 91.76 20.99 17.63 0.31 27.34 78.48 64.03 75.97 32.17 36.36 76.77 66.45 65.92 2.73 1.66 28.74 88.53 47.88 85.12 30.06 17.97 81.91 85.25 69.81 88.20 99.18 59.20 42.26 36.42 50.40 56.66 93.40 87.96 58.92 8.13 78.72 61.85 69.63 30.11 29.42 25.54 20.83 15.68 61.46 52.89 6.43 62.59 73.97 22.18 46.51 50.78 43.67 84.63 84.86 83.67 74.21 71.25 9.68 69.32 99.57 7.45 -63.39 31.78 82.18 70.49 51.50 23.69 93.69 0.14 64.13 64.58 34.23 14.94 11.49 53.10 14.10 67.73 70.16 54.15 37.52 97.13 40.71 36.24 88.27 46.22 29.04 85.72 4.29 37.61 29.86 66.19 41.79 70.56 85.49 52.70 40.96 65.27 48.85 32.08 71.82 33.31 49.46 24.89 4.38 68.50 98.15 59.96 30.21 99.45 45.33 9.15 53.89 29.06 72.96 45.07 10.34 12.57 35.16 23.10 50.44 18.60 40.66 3.16 91.48 5.54 14.47 59.94 17.82 48.37 22.05 3.96 62.85 98.98 71.18 67.81 73.32 24.24 96.50 44.66 98.17 50.30 84.22 26.30 34.25 65.25 81.60 41.74 68.94 35.91 39.29 38.13 54.34 90.11 22.62 63.21 7.21 88.47 59.89 9.60 30.64 62.76 -90.11 14.36 87.74 85.70 67.97 95.04 80.20 99.54 17.99 34.32 65.63 66.28 25.68 96.84 15.47 14.30 7.25 91.85 31.79 93.90 86.31 9.93 42.22 17.43 82.00 50.90 89.69 39.31 25.30 72.36 54.96 72.22 83.37 17.14 54.36 57.40 33.85 56.98 50.11 59.95 14.39 95.06 64.63 85.72 57.58 31.32 63.44 32.09 67.34 28.45 14.60 5.29 26.63 56.53 50.69 55.38 71.76 2.25 32.73 16.61 59.12 55.97 39.60 42.91 84.56 90.38 39.56 50.99 56.59 2.47 1.23 23.73 84.61 44.00 9.57 26.70 26.01 91.20 24.69 14.10 39.12 73.74 66.08 1.40 75.86 56.26 87.38 15.49 39.99 22.28 94.48 38.47 22.63 28.32 26.75 85.26 86.06 49.59 32.14 30.31 -58.95 83.51 6.64 5.62 12.09 50.19 82.33 19.57 11.61 31.87 57.67 33.52 77.99 39.27 68.70 55.19 99.70 50.94 4.06 68.25 78.24 55.39 25.90 71.82 54.83 95.73 38.85 87.30 88.44 91.03 3.66 95.45 72.37 81.06 77.74 6.52 46.46 45.19 86.01 64.77 37.38 36.34 78.77 89.52 15.48 84.69 9.85 3.92 63.81 33.76 46.96 95.15 2.84 25.73 56.31 50.29 55.48 13.91 94.30 52.14 48.78 21.62 56.50 89.68 82.37 32.40 75.19 49.47 0.77 55.35 3.60 60.73 49.50 8.32 11.21 94.37 97.11 98.07 57.09 88.47 5.79 85.97 4.83 76.66 6.45 72.95 53.86 17.08 80.53 14.59 56.14 25.14 3.03 25.63 25.74 63.68 63.99 61.38 39.45 25.14 -96.45 35.93 92.53 40.80 47.97 92.56 0.46 85.12 80.28 20.79 63.77 91.13 74.39 78.25 89.70 53.99 20.55 75.59 0.08 15.36 87.55 42.35 61.58 43.41 63.16 4.72 5.98 3.01 12.92 98.50 35.10 97.61 77.22 95.56 1.79 16.33 61.95 14.33 86.87 49.43 18.38 29.05 36.27 97.29 85.22 58.17 69.43 55.94 57.24 36.21 80.56 6.73 81.73 68.66 60.84 31.89 21.97 25.65 19.92 73.89 7.74 85.65 35.50 81.12 44.16 10.77 10.59 41.49 30.36 60.91 41.83 99.56 97.09 80.15 93.27 59.00 18.90 51.99 3.61 85.63 66.44 87.72 2.65 7.33 71.05 10.37 27.02 98.42 32.22 67.12 92.01 14.40 18.31 10.50 49.60 41.01 73.37 24.22 70.89 68.43 -78.94 85.03 4.19 14.13 90.11 76.97 66.28 67.26 45.25 11.23 29.85 34.20 25.48 68.26 75.01 25.36 22.77 74.47 81.82 41.78 6.57 94.92 33.30 57.38 33.06 76.46 93.22 92.77 75.68 53.88 48.93 53.95 50.77 63.62 51.21 16.43 23.89 84.06 0.52 61.62 1.22 85.66 27.81 85.26 51.23 11.18 35.04 41.68 18.98 94.41 29.90 1.14 31.11 53.94 6.44 76.85 96.44 73.13 20.63 83.24 13.53 34.83 48.55 55.49 5.52 38.68 21.06 63.57 92.00 43.90 27.79 15.67 11.92 24.27 58.68 78.66 13.30 55.84 63.23 98.44 16.97 17.70 75.61 34.56 16.78 55.48 66.79 20.02 70.13 93.82 15.61 59.46 35.05 95.19 28.52 78.06 91.97 37.71 45.32 50.03 -19.58 44.36 71.77 24.29 38.89 62.38 86.77 67.57 80.59 38.38 19.91 93.19 29.49 3.02 7.70 20.01 41.10 68.94 3.78 71.99 64.66 80.93 44.52 40.03 39.19 4.93 74.75 46.08 65.60 9.78 20.82 84.86 93.39 65.29 97.36 5.29 80.68 91.70 99.96 37.36 56.32 49.47 76.30 95.66 4.86 54.94 53.53 9.09 32.74 39.61 58.73 2.73 40.27 8.84 83.91 88.70 10.13 79.00 84.04 90.90 56.72 48.57 73.90 52.68 65.83 74.92 23.49 48.50 16.02 97.68 16.29 71.80 34.86 65.10 31.22 42.86 57.53 68.81 55.56 70.37 84.89 45.25 94.18 14.69 84.99 3.36 82.28 13.28 23.99 45.61 35.81 40.96 99.83 13.81 66.27 27.36 6.63 78.45 17.10 32.39 -17.61 35.76 94.65 38.84 95.32 27.66 54.57 37.61 66.13 34.31 16.03 91.80 82.60 98.36 17.82 98.93 91.54 87.00 46.55 1.40 0.10 57.47 7.08 50.28 40.80 14.73 34.54 31.66 50.40 4.16 47.05 61.30 32.45 25.14 0.16 42.34 56.09 15.60 71.13 7.87 93.58 7.55 60.96 79.38 2.22 35.79 69.18 94.14 10.29 8.53 61.38 31.09 56.40 74.99 7.03 1.34 10.66 22.06 30.72 7.23 88.22 73.66 48.32 92.81 99.25 88.46 6.78 20.13 45.83 58.67 22.55 8.13 37.67 15.40 78.84 11.76 27.08 89.54 5.88 95.45 97.91 9.73 46.16 79.37 16.25 70.19 51.35 88.13 96.93 40.40 71.80 19.00 25.69 79.17 44.26 97.59 28.65 77.73 98.90 30.21 -77.46 15.14 3.75 46.60 41.74 39.51 28.70 41.29 57.46 5.44 16.35 79.94 7.82 22.20 6.33 38.26 69.87 42.68 65.84 57.04 24.43 25.91 76.23 48.58 56.72 11.58 56.73 89.16 7.37 99.24 13.62 50.15 34.32 94.45 79.41 42.58 73.36 95.46 52.50 82.63 45.82 16.66 29.54 6.66 47.52 76.96 98.76 69.64 80.58 95.82 45.62 9.43 21.76 60.53 76.23 71.93 93.81 86.51 99.07 98.09 54.29 2.65 76.31 88.45 36.18 64.61 85.36 19.70 61.59 36.23 81.95 84.55 57.51 71.63 82.14 72.13 57.43 31.21 75.53 5.85 49.41 46.59 99.35 42.15 83.70 87.55 29.26 21.37 20.21 37.66 34.73 29.51 38.07 22.68 61.26 20.70 23.54 48.34 61.15 0.15 -61.55 71.70 34.86 44.07 25.28 82.47 64.31 30.93 90.17 28.42 20.78 53.32 11.05 97.34 79.86 91.30 44.99 97.81 77.54 60.83 96.49 65.56 71.36 33.98 59.62 26.55 13.96 18.75 22.78 92.87 16.89 40.76 30.21 33.17 91.70 3.24 15.71 85.13 15.36 87.66 89.45 80.71 20.23 2.54 9.90 33.56 85.48 22.93 84.80 16.70 62.26 49.87 89.22 50.03 8.30 12.33 97.76 74.50 89.15 77.64 91.99 4.78 65.82 86.21 23.96 75.82 54.60 59.16 8.58 68.52 20.52 11.41 53.00 43.75 66.63 82.09 61.63 85.70 85.23 48.68 93.71 95.62 69.62 75.45 47.09 35.99 26.26 44.08 71.79 97.74 94.62 95.62 90.09 70.97 6.03 6.94 49.04 50.89 87.44 29.21 -70.70 67.36 74.24 65.88 79.69 46.02 20.35 27.42 57.20 18.06 39.17 7.28 86.15 6.39 60.03 76.36 29.97 89.90 30.25 4.84 87.62 20.20 17.57 40.55 97.67 72.35 74.33 77.86 76.79 47.54 39.50 77.05 23.06 59.79 0.97 44.40 29.23 29.70 62.26 67.84 31.41 93.88 50.40 91.26 63.43 6.64 19.09 47.07 0.68 35.04 38.68 54.58 52.20 82.23 47.75 35.55 71.25 76.36 51.45 4.60 95.60 77.09 52.20 26.04 65.54 33.46 87.36 68.82 0.82 54.94 93.45 86.94 92.02 76.24 46.70 95.12 28.57 18.64 13.51 3.70 59.84 75.09 92.12 61.79 11.90 11.16 16.50 16.26 86.66 8.84 52.88 24.33 63.73 51.63 54.55 34.10 45.52 88.70 14.47 33.94 -63.34 58.74 47.71 7.31 3.99 68.92 6.05 78.34 7.33 35.64 56.30 47.60 62.51 51.92 96.26 9.25 32.20 29.52 68.92 51.57 11.96 90.92 11.27 90.63 80.69 75.24 31.77 97.64 49.98 65.00 35.39 76.47 53.37 53.75 2.78 27.38 0.98 39.87 47.08 33.16 43.00 72.59 21.81 96.15 82.04 27.31 30.22 99.85 74.18 71.58 18.21 37.52 10.41 26.20 75.55 47.23 29.94 15.53 76.76 53.47 21.96 87.34 28.23 79.88 88.04 92.10 43.44 78.24 73.73 75.20 9.11 71.08 86.00 31.36 25.26 18.44 13.91 92.40 31.64 74.57 33.91 70.37 87.82 70.62 43.44 39.57 47.19 67.57 82.02 31.54 62.47 67.21 11.81 49.22 24.74 9.28 68.10 70.52 42.72 17.70 -47.68 41.43 16.90 90.85 91.87 36.86 71.00 3.79 67.52 66.50 71.80 48.37 72.21 16.21 73.80 62.20 93.31 77.91 53.49 72.98 60.29 66.21 25.83 25.05 67.98 42.79 67.91 94.01 36.17 47.53 57.58 11.74 43.30 61.56 96.11 37.43 99.05 61.16 48.73 41.68 75.46 18.71 48.37 31.83 34.47 30.21 16.93 74.35 33.96 47.17 17.91 52.85 95.77 0.50 9.26 43.50 73.70 6.88 39.27 41.32 41.83 49.84 0.79 28.31 8.06 24.08 17.81 88.25 64.04 68.73 1.63 96.05 0.60 64.92 77.50 74.35 75.90 76.87 94.67 14.72 19.19 70.76 46.31 73.81 76.82 16.44 67.45 13.23 62.65 82.91 92.77 46.87 80.64 93.86 97.92 16.67 33.65 14.11 18.77 75.25 -17.75 30.85 39.91 67.74 12.11 4.39 14.40 9.74 80.04 63.55 2.44 98.66 9.58 47.41 5.99 46.12 8.52 1.28 81.20 74.15 64.33 38.83 81.24 96.27 32.90 91.42 42.16 52.44 31.13 26.06 72.99 65.51 84.57 8.24 62.70 6.94 41.27 31.20 6.02 35.02 12.95 67.06 81.71 60.20 12.35 7.89 31.23 12.22 51.98 53.71 62.26 8.65 13.61 17.67 19.55 17.56 96.14 53.04 23.90 22.86 31.03 82.33 97.51 60.56 28.36 72.80 2.89 14.60 94.49 84.40 72.23 97.73 2.02 81.40 55.26 37.94 43.59 60.49 98.36 11.67 19.41 57.23 8.23 7.88 74.91 69.16 52.12 87.54 74.18 18.46 47.41 4.85 88.32 79.49 42.16 47.33 35.26 16.86 50.91 39.98 -83.20 86.17 33.93 64.91 23.63 57.49 25.23 93.04 34.44 20.36 15.88 60.99 89.64 46.42 55.72 43.23 91.53 53.32 12.55 25.84 47.48 56.22 24.33 29.88 59.72 12.34 69.70 20.65 11.23 34.78 43.78 18.10 42.52 46.82 92.62 79.19 97.71 48.51 49.97 9.92 3.18 24.20 51.48 6.84 11.29 24.68 95.99 4.82 48.40 43.06 9.36 53.83 52.70 95.29 54.09 82.28 53.94 77.66 85.77 59.38 21.86 61.28 95.77 81.17 66.95 70.55 43.45 85.85 59.97 78.37 68.96 69.59 78.63 73.05 99.46 16.24 74.97 63.98 18.56 56.34 82.67 85.14 76.46 18.51 32.21 51.93 46.49 90.67 33.38 32.73 79.70 59.30 31.59 97.49 2.41 23.36 98.05 92.80 7.27 90.85 -29.10 11.06 27.46 86.98 70.48 19.06 78.91 16.08 18.18 88.20 26.26 72.56 27.13 50.72 84.84 6.78 20.96 61.43 86.50 87.70 63.46 95.11 15.45 37.75 83.08 73.87 97.82 33.19 11.71 54.75 97.29 27.94 59.15 32.08 48.19 9.79 80.28 62.74 92.42 32.34 34.35 30.81 62.64 27.63 14.94 55.90 38.39 63.33 99.49 87.36 39.46 69.49 33.95 18.87 66.41 83.89 7.45 88.90 26.55 57.30 41.86 40.88 63.52 4.29 5.92 31.86 2.05 51.52 16.67 41.63 21.29 71.49 1.59 43.44 33.80 43.33 39.31 38.71 73.39 3.80 28.34 92.34 5.21 56.33 5.90 7.98 79.71 51.38 46.84 84.49 99.49 90.10 64.51 57.26 76.73 95.96 65.64 98.07 66.75 50.54 -90.11 5.89 65.54 34.16 10.60 16.23 78.93 95.99 44.11 65.70 66.22 40.77 60.99 24.87 17.91 33.42 37.16 51.59 42.78 76.39 64.44 45.98 31.59 77.07 54.62 47.01 90.45 64.79 8.92 12.96 10.48 66.47 32.35 2.74 34.64 16.12 71.27 91.87 80.25 57.35 7.98 38.55 31.15 80.95 64.74 63.62 5.29 92.65 35.47 54.43 80.51 57.52 31.29 87.41 36.38 78.33 40.73 0.76 90.18 93.16 13.81 26.07 10.85 21.08 69.36 80.44 57.05 0.66 52.74 62.16 90.28 76.54 83.02 4.19 82.37 68.27 55.18 40.01 32.85 41.37 84.83 13.69 6.30 65.07 45.17 60.87 31.72 51.14 0.12 22.59 77.61 40.94 18.53 10.51 32.85 19.34 27.23 24.44 74.33 63.57 -70.23 85.21 90.29 91.90 41.88 6.65 97.37 39.51 76.37 90.54 94.75 45.07 11.91 16.04 20.40 71.24 50.10 37.88 71.58 12.18 47.38 68.47 71.52 60.23 26.87 95.24 2.25 52.68 86.57 57.53 74.91 4.71 55.42 21.32 20.82 2.31 62.10 82.88 54.76 99.52 46.76 0.43 98.54 95.57 8.75 80.69 43.61 17.39 17.46 94.28 38.85 22.74 66.22 3.13 94.82 75.98 18.09 93.99 65.76 74.75 34.79 83.19 84.98 34.20 11.76 89.31 65.51 50.24 6.96 90.37 50.00 2.94 69.61 34.22 61.88 24.02 20.59 96.20 82.71 79.83 78.32 12.50 63.78 8.01 62.60 92.98 19.21 96.06 26.97 96.30 76.18 30.75 90.67 56.82 94.71 35.66 56.31 86.67 74.09 5.70 -40.16 90.00 33.07 62.00 68.34 85.21 6.97 26.29 22.80 93.83 84.29 69.89 12.61 23.66 67.35 90.11 75.02 17.77 41.65 13.21 60.79 32.81 10.77 65.86 72.86 11.35 2.76 94.42 2.71 41.47 7.50 21.69 4.67 79.39 37.55 92.25 38.63 80.49 39.70 85.34 85.81 31.14 31.49 14.16 95.28 36.44 29.33 39.26 61.11 39.27 48.01 98.48 25.37 53.16 46.41 58.40 38.04 25.63 68.78 74.93 1.91 99.65 70.47 46.24 55.99 1.73 80.62 32.33 59.53 60.29 90.17 93.18 42.31 63.82 61.47 98.34 98.42 99.36 46.83 38.48 17.60 98.42 91.15 91.88 30.12 65.08 87.40 75.44 62.18 94.60 47.34 13.41 4.52 54.19 54.35 63.88 98.28 64.09 94.34 85.87 -91.89 84.39 5.93 84.35 4.70 53.20 63.00 3.38 8.97 26.11 99.35 99.44 0.00 69.25 70.64 16.45 24.58 44.08 19.30 35.79 51.95 5.46 12.06 13.83 47.47 15.75 43.73 86.08 81.43 47.68 11.79 2.12 91.37 37.68 32.50 70.81 68.53 75.26 7.04 49.94 26.04 71.72 48.80 11.05 72.54 35.54 40.88 72.71 52.84 90.39 47.79 35.24 78.41 64.00 64.77 74.37 45.81 53.94 97.85 84.38 6.71 12.66 84.45 49.67 10.91 28.82 1.20 17.15 10.41 54.21 76.61 10.50 46.21 92.63 86.53 76.78 18.50 59.10 71.61 70.97 2.58 83.36 51.31 91.16 49.27 79.46 48.03 48.36 56.99 72.95 42.55 14.97 43.67 50.84 91.06 0.24 51.54 29.72 10.80 77.70 -37.37 38.00 82.73 78.04 61.91 73.16 45.91 66.68 96.47 89.95 11.28 71.19 85.87 93.99 72.51 16.91 77.98 47.04 12.98 49.85 2.37 31.69 95.51 43.00 84.67 9.08 40.41 28.55 29.14 60.74 26.95 98.23 56.13 16.99 5.76 36.05 40.29 23.39 18.61 71.43 32.42 44.69 93.39 99.58 14.41 73.27 14.79 57.05 32.85 84.60 26.25 6.77 35.30 73.63 21.68 66.03 11.99 22.29 45.73 92.87 23.51 71.88 85.90 71.22 62.83 93.70 75.11 47.73 23.21 9.35 64.61 16.17 13.24 38.09 31.65 58.21 27.04 31.01 44.55 26.26 68.81 4.41 84.60 83.77 1.21 73.34 37.90 27.56 37.99 37.31 39.16 94.59 90.29 27.07 80.18 19.52 26.40 31.50 79.33 19.03 -58.87 38.02 18.98 11.90 20.19 92.90 34.31 67.84 68.15 79.75 95.65 77.12 2.04 6.81 5.63 97.81 69.03 88.45 4.03 64.19 81.03 33.98 16.33 19.88 17.35 47.70 30.11 77.97 31.47 90.86 62.86 66.00 42.70 70.87 18.55 58.29 97.03 24.56 3.67 96.43 23.08 74.08 70.10 84.46 25.41 2.42 62.91 40.48 70.55 53.67 39.21 87.64 85.83 78.33 79.24 36.62 4.12 42.41 44.54 10.75 19.59 46.01 1.18 55.82 48.72 36.72 46.65 87.70 27.58 71.92 5.70 63.47 52.22 23.58 41.58 3.26 7.17 26.35 4.47 33.96 73.62 31.69 26.50 34.73 23.01 74.64 49.92 29.69 38.64 22.40 10.90 43.49 4.93 46.36 41.60 7.36 49.15 52.54 63.51 79.21 -17.42 8.01 32.24 7.49 24.42 39.09 59.46 21.14 69.65 89.54 48.15 30.61 86.83 92.01 89.02 67.15 90.94 89.44 19.63 1.82 51.90 27.87 23.14 69.21 39.27 80.01 58.90 99.33 71.61 91.94 47.04 79.47 55.61 56.12 44.90 93.89 42.33 59.00 51.48 31.41 80.44 52.28 14.45 28.34 46.60 18.27 45.86 10.38 33.41 59.77 17.98 58.14 2.76 38.76 50.87 67.75 13.59 94.66 76.12 92.63 93.52 67.07 46.85 81.26 39.09 52.42 71.07 66.00 22.04 28.25 76.48 66.69 10.27 30.42 55.50 66.82 70.85 4.61 74.67 99.19 52.80 38.62 58.40 22.22 76.09 43.19 84.52 79.32 66.96 67.63 2.51 3.53 74.88 36.78 34.59 11.04 60.79 92.56 52.27 14.95 -98.30 80.60 89.48 29.75 76.18 5.84 92.12 69.76 85.85 2.81 80.72 87.93 92.06 23.38 59.47 24.24 18.13 36.58 84.27 24.61 6.98 1.63 16.34 97.41 81.81 33.78 53.84 88.14 0.52 62.11 78.68 35.20 53.19 20.66 63.24 75.20 68.90 13.64 95.63 58.86 63.37 35.30 97.96 91.55 84.44 84.26 80.14 93.41 68.86 54.79 64.17 46.85 11.56 4.22 20.16 82.73 97.12 0.97 88.09 34.02 57.19 59.66 55.80 89.91 79.48 51.28 60.93 4.83 77.87 5.01 80.18 60.02 51.43 53.72 40.68 48.71 23.80 60.62 38.51 64.29 43.11 52.44 8.41 26.17 84.80 65.11 35.71 27.45 62.67 20.70 58.63 88.74 46.54 71.24 52.09 10.69 44.94 85.25 89.38 64.63 -60.31 80.50 13.15 83.38 19.78 79.17 68.15 90.08 19.28 1.03 33.21 22.48 22.37 12.87 12.37 39.58 40.58 96.73 87.29 10.29 63.38 91.18 26.70 22.82 96.37 86.92 74.51 42.20 27.02 51.77 92.86 37.48 34.80 13.35 77.95 17.79 66.14 87.40 52.09 2.27 75.12 83.48 68.36 48.70 31.16 86.99 86.34 2.65 39.62 34.34 78.07 28.25 46.32 60.20 67.87 16.94 57.10 25.61 44.41 98.65 97.14 76.96 15.28 73.51 81.32 60.28 53.63 4.13 27.58 43.42 73.34 79.04 17.42 40.62 78.52 82.08 99.09 71.53 75.24 19.22 52.38 76.67 91.09 12.65 48.67 13.68 74.54 17.53 80.86 85.99 78.08 86.69 68.28 30.81 0.91 22.49 46.17 25.06 9.68 43.95 -23.18 14.31 26.72 23.10 23.81 55.15 45.60 58.46 58.80 89.08 98.06 54.48 59.98 65.18 9.17 54.21 64.58 15.19 3.95 37.68 32.78 15.91 23.68 59.36 37.50 26.34 63.50 78.52 78.16 75.02 64.40 23.22 17.23 80.68 49.20 96.66 78.44 91.01 11.01 4.73 88.70 38.23 51.72 0.92 98.45 3.77 95.90 43.74 50.68 40.47 26.87 35.15 31.14 13.84 20.81 18.34 96.80 47.56 90.26 61.33 38.54 65.91 96.90 20.02 70.80 67.91 47.82 43.39 66.06 14.03 39.59 1.25 6.81 17.85 75.96 39.28 89.81 45.15 69.49 34.58 27.38 59.30 27.90 29.46 89.36 85.68 13.79 90.21 64.56 56.23 65.87 99.40 46.20 17.80 2.36 83.46 47.48 71.99 9.11 17.19 -82.84 62.44 34.57 58.30 79.95 7.61 87.43 59.31 83.54 0.42 20.52 89.62 79.51 85.06 48.41 47.26 36.34 77.60 41.26 53.64 92.96 74.38 54.15 25.07 42.73 70.22 62.33 26.71 79.54 49.23 25.17 10.40 70.52 30.45 65.60 30.69 85.36 26.65 82.58 82.71 39.51 49.94 59.90 63.92 23.03 35.46 4.56 15.43 99.13 2.51 2.14 12.02 40.69 39.83 99.61 42.51 60.46 92.99 14.61 80.76 38.03 77.53 13.74 93.68 90.89 62.00 64.72 82.86 11.45 28.33 64.64 4.65 37.38 10.51 32.38 61.19 48.89 84.33 9.82 82.27 84.73 37.63 87.05 45.31 36.10 34.60 98.56 60.58 19.37 40.07 41.16 39.89 68.76 44.59 44.80 45.52 15.58 53.05 5.99 9.89 -12.03 50.90 34.00 81.76 56.27 57.60 26.36 67.45 23.89 23.04 64.27 3.86 20.85 73.75 64.66 33.44 71.38 34.90 16.16 26.46 8.42 9.33 29.30 58.77 32.84 20.76 33.50 5.33 46.06 64.62 6.69 98.60 13.05 89.71 52.95 37.52 72.69 23.54 14.92 80.16 44.93 21.94 77.12 28.38 61.77 60.76 58.42 62.26 61.09 80.77 28.43 79.00 48.84 15.03 92.03 77.58 99.27 91.60 17.07 39.73 70.08 8.70 83.23 90.67 59.22 84.78 81.66 40.47 46.72 51.85 41.78 35.88 58.64 57.33 68.93 91.13 4.06 26.00 35.48 70.43 43.08 99.48 92.42 41.49 82.52 78.49 87.85 84.22 66.24 39.28 7.52 11.18 19.02 45.64 85.32 26.93 46.62 44.14 18.33 80.27 -51.78 55.38 98.82 22.38 85.71 97.21 19.19 15.40 38.42 75.38 97.23 68.84 2.20 89.90 81.16 91.10 3.96 75.45 74.40 87.54 54.72 56.22 53.56 31.55 51.60 36.09 67.94 43.69 55.77 98.21 25.30 29.64 74.79 43.78 27.00 82.91 96.65 20.39 32.61 39.71 93.37 33.55 37.80 1.15 97.73 80.38 75.14 32.22 90.02 15.38 0.28 62.40 72.82 70.07 36.88 46.24 19.86 3.47 22.98 98.79 36.60 61.36 1.70 23.30 12.18 17.53 79.22 84.21 48.85 67.29 75.93 28.20 40.28 24.74 9.76 9.26 0.39 94.18 11.81 61.16 81.60 7.96 27.87 20.53 87.78 27.38 44.02 29.69 60.85 37.18 24.14 86.99 97.16 92.48 75.99 82.74 40.73 38.56 92.47 10.56 -80.42 8.04 73.97 52.42 2.22 39.44 38.06 2.68 63.43 98.48 14.01 18.06 19.62 67.62 39.46 31.90 40.32 26.78 43.56 63.60 41.51 79.26 77.39 89.79 56.27 90.97 11.26 90.57 39.09 18.37 26.11 28.40 9.02 81.69 59.47 22.79 6.08 29.96 17.19 75.87 2.32 16.44 51.83 39.35 68.34 89.94 17.46 67.87 7.17 12.27 40.81 40.79 32.52 16.94 78.96 1.19 91.02 98.10 28.48 41.76 61.00 41.07 35.98 71.66 85.17 60.28 9.12 33.42 5.63 33.96 31.81 43.08 53.82 62.36 30.11 16.21 92.25 85.35 56.14 91.59 67.05 17.69 17.60 72.67 62.19 23.57 25.15 14.03 4.62 7.00 38.79 43.84 84.16 39.56 90.73 43.27 73.30 36.38 46.77 14.66 -34.95 27.98 26.29 19.06 44.45 63.98 76.03 30.15 40.25 32.10 66.64 14.44 42.32 77.00 6.91 42.98 57.01 86.44 67.97 30.79 86.82 20.76 8.77 67.00 66.83 90.20 21.70 95.60 27.18 53.25 87.55 47.25 36.99 92.74 64.50 1.04 57.44 61.38 48.82 2.79 41.27 8.24 77.60 97.60 4.20 57.73 79.93 12.78 46.71 72.86 30.81 59.96 58.73 50.44 96.97 66.23 1.77 99.74 19.36 1.45 27.47 39.88 56.72 55.27 93.38 10.49 97.18 5.04 40.96 18.14 57.12 9.64 28.14 93.52 20.46 75.54 13.49 1.48 23.45 30.34 45.13 35.62 70.42 32.77 12.17 36.35 10.82 32.42 89.96 40.78 15.42 13.50 29.44 64.02 74.48 14.46 80.94 74.20 52.36 64.42 -91.87 88.62 38.84 90.36 92.68 83.39 87.18 88.85 68.52 73.52 90.21 54.54 70.99 66.46 49.79 47.98 9.06 56.76 9.44 51.84 81.09 37.76 15.68 40.90 89.70 7.54 75.80 44.11 91.41 65.14 8.09 86.24 40.85 24.34 76.79 67.08 1.55 86.72 44.20 20.52 89.24 37.39 64.93 72.12 81.39 6.89 44.90 24.15 28.57 96.90 95.10 15.01 61.10 1.84 83.99 62.26 81.21 71.55 25.52 57.37 56.74 11.40 91.00 29.98 66.66 5.79 97.86 1.43 66.59 16.33 11.52 47.83 59.15 71.24 31.65 37.54 43.20 41.56 8.40 3.73 48.45 99.36 69.70 53.08 33.45 75.39 1.73 25.21 81.46 26.56 70.28 9.61 15.13 88.09 93.34 43.08 68.07 58.99 13.54 97.46 -69.20 0.12 41.02 65.89 49.02 8.17 37.00 87.40 48.55 13.35 25.84 23.20 85.64 10.01 31.21 98.84 80.54 10.00 42.97 20.86 55.71 25.05 15.96 44.62 59.50 86.72 52.74 37.40 66.25 74.30 44.73 0.49 62.43 42.84 40.76 35.44 97.45 86.29 8.02 14.47 55.59 83.37 15.64 49.85 55.16 80.77 74.59 40.91 52.72 22.43 49.33 48.53 75.24 51.15 52.38 54.43 79.41 74.47 82.73 96.44 74.23 56.10 18.69 23.94 43.06 51.23 88.57 89.02 22.33 22.15 85.96 77.22 9.60 3.36 54.90 30.16 89.06 29.29 79.24 50.38 78.19 48.05 66.22 16.31 11.75 87.66 75.22 29.04 14.74 41.48 70.57 50.46 84.46 65.80 53.82 6.41 18.92 83.83 93.13 60.38 -36.87 76.27 8.72 14.95 8.78 17.34 41.89 54.72 49.80 87.69 98.61 13.69 33.66 80.15 96.38 81.62 55.45 45.02 22.05 12.58 93.10 0.92 17.56 74.21 65.20 21.54 22.89 90.82 55.80 10.93 74.80 16.49 19.95 37.16 63.61 56.69 94.42 39.53 24.22 26.04 77.61 88.01 15.34 74.63 64.92 11.84 93.02 1.12 84.39 49.68 24.40 6.73 44.82 71.80 88.08 22.46 66.40 65.99 81.27 69.75 17.04 72.17 91.78 97.51 11.21 56.09 17.17 89.50 46.39 17.92 18.33 90.41 5.66 79.28 27.70 43.96 99.23 48.23 86.38 23.29 7.04 64.14 8.42 37.15 80.20 92.39 97.06 54.87 63.74 39.26 82.17 47.46 1.43 96.30 9.09 76.92 82.76 84.48 91.14 53.94 -47.00 91.50 30.36 55.76 95.95 14.97 57.14 83.33 75.94 46.51 31.60 19.36 51.65 18.86 83.01 12.07 66.33 11.91 87.67 32.79 6.97 10.17 54.99 77.57 27.89 3.96 3.15 96.21 76.52 14.52 80.16 36.01 0.44 47.23 23.36 26.39 54.90 87.14 50.31 18.35 21.66 7.54 87.40 8.34 92.17 42.58 49.93 89.99 41.91 12.74 75.17 57.26 97.66 34.09 88.92 70.49 66.21 54.58 13.48 89.59 21.01 18.64 50.47 55.23 57.42 84.21 53.80 8.37 96.03 55.81 35.14 11.49 49.05 75.29 3.65 2.54 83.99 51.95 8.87 62.65 51.67 86.18 44.63 4.74 43.02 92.62 67.64 31.53 64.36 68.53 10.90 9.83 25.42 20.54 18.06 43.25 53.78 76.60 82.18 91.00 -1.93 99.57 84.10 83.41 2.05 4.62 82.93 25.35 14.15 7.30 41.18 32.69 8.22 8.09 30.45 81.24 76.95 76.47 28.18 94.13 61.88 69.60 38.20 29.83 39.78 86.85 81.36 54.99 67.14 66.17 52.22 13.39 64.36 37.63 90.97 8.59 11.52 62.27 62.75 40.42 53.63 0.41 26.53 37.23 93.54 24.59 33.17 66.06 45.07 85.91 50.44 30.54 84.62 44.84 73.50 76.15 28.08 3.40 51.00 69.74 20.07 79.78 73.52 46.38 52.78 48.25 48.69 56.46 37.19 99.02 52.55 51.99 68.42 31.18 28.67 41.37 93.44 61.85 29.61 19.92 93.88 56.74 2.87 36.74 53.99 49.11 79.87 83.40 68.90 15.96 36.41 89.16 72.21 38.05 39.66 56.74 78.62 53.17 95.90 35.62 -76.03 92.56 49.42 25.16 18.03 3.69 40.98 15.91 21.84 90.86 5.53 69.70 61.77 45.83 0.57 70.72 13.52 55.75 86.89 95.50 93.16 9.03 38.12 87.59 49.27 44.72 68.37 56.34 45.59 8.74 60.86 41.81 48.49 35.71 48.08 5.93 72.76 14.46 79.33 83.18 69.58 74.71 46.37 41.14 30.49 94.93 69.52 16.38 80.65 3.30 46.15 54.29 71.78 54.91 32.08 67.04 38.02 39.14 9.53 86.56 63.38 0.31 74.91 41.15 37.96 33.21 71.72 39.64 7.77 32.57 43.86 59.13 0.99 1.37 54.41 20.95 78.52 44.68 11.57 97.15 66.90 81.93 31.02 75.27 40.42 36.80 3.02 50.14 62.80 8.59 44.28 90.89 15.40 57.73 57.11 46.53 7.24 19.63 69.14 34.82 -63.78 16.28 73.86 22.09 68.78 51.28 54.09 69.88 35.13 4.15 45.45 64.62 55.19 9.94 7.00 56.26 92.40 23.71 67.58 10.11 38.87 91.49 43.94 83.96 81.25 33.04 88.47 84.80 28.77 29.28 81.52 37.62 37.73 51.65 87.55 35.78 42.79 34.79 97.46 3.15 57.36 73.57 82.39 28.15 75.38 49.90 29.53 81.03 29.43 97.75 84.01 1.91 17.43 99.85 27.10 2.76 0.12 59.41 22.09 10.67 52.86 29.68 89.41 8.03 85.37 56.92 14.61 83.83 12.65 7.42 12.30 14.02 5.82 70.19 45.00 49.99 41.29 69.90 70.92 84.39 63.22 74.48 44.88 78.88 36.46 70.71 67.71 15.28 34.70 3.42 41.67 91.53 42.95 66.85 80.38 94.36 50.44 94.63 73.38 78.30 -11.97 44.82 90.47 93.66 0.28 86.36 71.91 54.51 27.28 91.76 0.88 38.73 73.23 33.24 41.58 64.19 59.72 16.26 63.95 56.53 12.34 14.29 38.80 10.78 10.80 66.65 33.21 64.10 3.22 83.72 74.94 43.15 26.82 41.41 26.12 49.68 68.69 29.95 95.90 69.13 31.13 25.89 70.31 6.67 27.02 33.76 90.53 83.13 61.00 92.54 7.79 85.25 75.31 51.34 42.05 67.65 6.43 44.98 67.49 65.54 47.13 10.48 32.18 56.98 36.96 38.66 97.01 6.36 14.01 31.75 79.85 12.27 7.12 25.88 67.06 32.52 85.23 34.60 83.46 58.88 77.32 82.95 13.36 31.42 73.75 71.64 82.79 45.52 10.53 60.25 33.38 97.87 73.64 18.62 43.78 62.48 29.92 96.41 42.99 42.29 -52.21 69.47 84.93 29.45 53.15 35.26 8.62 99.33 5.55 54.60 65.23 26.71 22.53 42.60 55.43 55.76 42.45 9.68 83.65 65.22 28.93 25.59 59.98 85.10 11.97 41.46 67.56 58.16 72.55 10.22 65.51 21.02 18.28 88.51 51.69 84.60 15.21 17.91 10.10 40.78 79.55 3.58 34.36 95.58 75.99 42.35 48.91 17.26 59.30 60.35 42.59 42.28 13.42 58.26 53.48 58.61 45.92 44.01 96.86 93.55 88.82 92.59 89.22 39.10 21.29 30.45 88.12 90.99 99.79 42.04 51.80 99.08 13.56 19.23 53.74 3.19 64.53 73.12 85.85 95.61 44.91 68.17 33.42 84.62 22.14 89.67 6.82 96.22 76.32 95.89 14.31 26.77 9.62 63.08 57.14 90.35 92.64 55.99 88.71 42.53 -12.19 5.03 30.86 31.84 92.02 29.44 14.75 56.42 73.96 40.70 1.67 95.68 90.06 66.41 93.54 27.25 3.93 91.17 25.10 37.33 8.01 0.06 21.31 7.02 18.51 95.51 19.65 92.85 18.95 93.83 37.89 44.03 58.18 9.19 14.91 5.43 74.80 94.16 7.78 11.38 79.75 97.13 42.10 50.17 69.87 46.87 68.43 27.07 65.16 48.10 20.05 60.35 71.80 33.66 35.21 60.73 98.97 76.85 32.69 49.80 2.24 95.19 41.86 47.02 74.41 5.34 7.26 22.59 70.20 22.27 3.61 33.79 43.63 8.46 5.46 81.76 48.17 54.08 75.27 86.19 29.23 91.11 63.29 98.38 2.56 73.49 49.06 77.19 82.91 78.20 16.36 54.66 23.56 29.34 62.50 34.75 31.90 41.53 8.82 76.79 -44.79 64.72 51.02 9.20 57.78 4.31 45.59 54.92 54.29 68.34 87.34 2.41 10.42 99.86 30.60 23.29 32.35 68.77 68.26 5.34 84.12 34.68 60.28 54.32 71.81 24.14 15.31 58.47 28.10 41.67 95.94 65.47 77.27 62.40 17.01 13.01 4.01 89.10 22.10 87.53 66.20 24.13 33.68 90.64 85.68 24.34 71.72 68.07 8.79 93.94 64.38 42.51 42.97 13.98 42.89 18.33 30.90 70.37 11.99 21.86 91.95 62.24 98.73 58.96 80.94 3.00 79.11 3.31 56.65 24.34 45.98 89.83 48.06 76.87 6.62 81.38 76.54 13.59 57.78 24.33 92.46 82.71 6.91 50.73 83.21 31.60 11.19 63.33 29.44 59.02 94.51 6.02 39.74 24.43 98.68 3.13 54.75 6.52 62.39 25.46 -8.05 9.60 91.26 98.77 65.00 79.17 59.41 64.09 81.60 78.71 99.22 6.50 1.02 59.92 85.10 10.55 52.56 19.04 94.70 69.93 59.74 0.71 57.58 11.78 62.54 20.13 40.95 35.80 38.89 38.79 64.10 27.96 39.46 89.97 53.36 20.17 76.77 92.32 49.31 22.55 49.01 25.74 26.20 15.69 25.04 25.52 61.25 11.27 99.72 37.11 33.05 82.62 21.63 3.69 99.13 0.34 91.13 12.89 6.28 4.00 76.07 41.16 96.56 3.44 34.92 68.17 53.65 0.34 69.48 23.46 77.01 8.59 81.39 94.75 98.19 90.65 14.20 36.05 33.90 21.48 57.37 17.83 57.30 52.92 24.08 68.99 61.54 92.60 94.66 5.17 12.71 29.05 43.24 56.90 50.78 7.55 28.26 39.26 30.01 87.92 -81.12 96.35 88.07 84.75 89.37 32.61 24.92 36.44 25.75 40.86 19.09 72.05 12.97 96.32 97.26 0.42 64.23 37.93 15.36 95.01 19.80 75.04 2.51 21.04 68.39 34.81 69.55 39.06 67.54 21.89 96.61 99.05 21.99 34.60 73.88 82.33 83.03 44.07 1.04 78.35 72.00 5.10 88.30 98.87 3.63 13.57 98.46 48.58 88.12 21.49 36.51 44.71 92.44 87.18 79.60 8.61 31.32 84.00 34.38 5.47 48.47 45.38 57.73 14.10 32.82 45.62 49.62 48.28 6.19 56.17 84.37 23.38 63.78 79.22 78.57 11.00 57.00 4.91 57.77 66.60 38.06 15.50 93.80 97.40 51.34 83.49 24.68 74.82 40.81 53.60 74.81 55.63 72.15 65.94 70.06 52.80 51.19 50.06 53.30 32.93 -14.70 32.05 11.68 78.08 27.78 83.38 24.81 83.71 58.94 75.50 36.30 25.24 44.30 3.60 8.24 80.09 32.73 29.80 61.81 14.45 87.60 2.93 12.98 73.41 75.95 28.08 67.88 30.28 68.11 46.03 14.48 94.05 96.59 27.10 47.31 71.42 86.67 80.60 59.21 83.79 58.52 91.91 39.25 45.68 89.03 3.57 47.39 26.99 77.61 22.35 46.10 56.78 56.80 66.04 78.99 21.48 72.97 28.83 64.91 6.87 1.36 40.02 77.71 11.80 75.84 63.38 0.40 18.00 29.34 74.49 34.98 27.24 17.12 4.31 38.74 93.80 77.88 25.99 83.68 27.59 26.60 5.27 61.07 34.62 20.08 83.54 44.89 93.90 59.21 25.26 48.30 75.21 6.72 92.61 30.57 15.01 45.61 4.56 64.06 22.76 -40.14 67.66 63.59 78.02 5.19 90.78 83.98 75.02 75.99 66.79 30.91 71.32 20.05 84.72 8.58 50.16 94.19 46.82 36.64 83.64 70.75 84.02 4.24 93.29 73.10 37.29 79.49 29.20 0.45 5.72 31.44 94.25 3.93 71.84 30.92 29.02 78.83 85.19 45.66 21.20 5.79 34.75 44.05 7.92 19.33 42.60 32.79 23.78 11.72 98.98 47.08 17.04 31.35 87.54 95.76 6.64 87.18 78.14 34.51 20.19 56.72 33.69 91.86 65.81 25.90 65.40 45.75 6.75 39.51 22.14 72.92 12.17 49.82 33.50 5.55 15.76 20.08 1.96 56.06 30.75 60.10 35.67 62.40 92.97 50.33 51.73 88.96 96.72 75.74 20.30 2.32 4.95 5.96 38.96 92.63 78.44 50.25 55.72 23.88 18.93 -23.57 68.08 24.20 60.31 0.05 54.44 51.82 36.39 98.95 35.90 20.35 59.15 32.19 82.72 99.13 82.38 35.30 94.37 7.18 21.12 38.41 35.06 27.00 18.26 7.98 31.25 53.15 84.75 21.02 63.69 46.36 24.78 2.01 20.35 60.76 16.23 88.91 58.68 92.95 2.07 71.89 46.77 67.45 33.90 17.25 50.82 25.34 45.05 91.93 85.45 45.02 25.28 72.54 98.87 76.57 73.92 70.95 71.18 62.84 84.97 40.79 7.77 78.58 30.51 5.42 48.91 83.93 42.88 92.08 32.59 66.70 69.19 44.75 78.14 42.26 1.41 45.32 14.38 46.02 3.14 12.63 52.41 20.09 38.26 71.07 39.20 63.30 77.74 60.02 67.39 15.02 90.36 81.50 43.95 87.95 35.75 4.64 9.03 5.35 8.64 -20.93 36.76 65.83 59.07 28.71 41.74 26.22 56.72 98.78 93.88 9.24 15.76 67.94 12.11 89.50 81.66 61.86 39.96 45.32 82.70 17.44 74.88 5.95 45.90 22.84 35.12 23.98 47.10 55.51 77.77 43.23 2.28 29.91 94.03 19.90 48.87 13.46 22.73 32.84 25.53 41.43 55.89 22.93 40.65 58.30 73.64 80.97 47.41 7.57 30.18 44.06 40.50 43.46 76.86 97.75 23.72 27.71 68.30 18.84 49.68 44.61 69.10 19.36 18.58 9.74 77.55 97.38 47.61 67.40 76.61 93.23 91.36 48.11 86.47 9.61 20.54 70.57 13.67 70.18 76.04 32.34 4.43 31.67 88.96 85.30 4.41 39.60 26.99 66.16 42.34 22.49 61.51 9.62 85.39 74.68 37.41 63.76 95.69 43.19 55.73 -31.88 52.05 84.03 49.97 75.00 95.55 55.60 47.98 90.60 30.47 78.62 55.57 39.47 61.28 83.13 31.91 70.96 81.07 94.23 33.18 59.26 15.42 0.43 32.93 7.64 55.96 58.08 16.11 98.99 75.94 34.06 47.09 46.95 34.21 79.02 25.67 71.42 86.14 45.67 39.37 25.91 78.95 1.95 72.86 97.76 57.86 36.44 25.34 53.86 41.64 10.44 60.36 73.44 17.84 90.43 22.97 75.78 69.16 14.60 35.38 49.31 10.69 44.55 40.50 22.58 15.14 14.14 24.00 34.49 95.06 23.42 43.53 78.07 87.16 15.83 88.03 70.66 15.06 36.38 60.37 79.70 62.01 20.31 95.34 85.84 51.11 57.16 63.91 74.43 36.69 94.41 58.96 30.77 30.43 59.58 87.99 28.67 78.63 31.04 58.00 -1.99 90.70 76.18 53.03 36.69 65.89 27.13 33.22 50.24 1.53 1.14 28.18 41.07 78.58 36.06 93.25 73.80 93.41 0.72 40.53 75.04 16.39 52.01 79.44 21.73 27.51 12.27 54.53 5.76 98.61 61.79 55.42 48.12 38.34 40.06 70.77 96.11 20.48 6.56 68.20 34.28 1.86 88.51 43.94 31.31 77.74 27.39 21.34 71.43 76.32 80.50 92.69 97.99 67.62 5.54 72.33 54.50 44.36 30.44 19.05 12.51 78.89 85.82 74.74 82.53 35.16 12.05 34.10 64.99 39.19 72.46 11.03 12.99 62.26 22.37 20.73 84.42 0.95 26.40 51.93 5.36 88.67 39.41 66.49 33.38 70.78 1.56 22.95 5.78 98.50 58.59 61.72 90.54 70.74 82.64 80.45 92.58 8.54 66.32 2.67 -55.31 49.51 63.59 40.52 58.14 80.19 17.20 12.01 62.84 95.61 75.44 88.10 56.97 27.33 44.26 17.61 5.36 4.37 67.37 44.57 45.92 56.69 22.85 5.37 69.28 49.05 1.98 3.24 73.37 82.81 97.42 25.16 4.03 72.64 14.46 7.60 58.34 83.10 5.54 38.09 55.61 43.07 21.96 19.57 15.78 55.74 94.55 52.18 65.69 16.94 0.27 82.68 68.54 56.86 75.93 46.10 76.32 11.33 18.04 43.82 5.33 40.73 73.94 11.97 85.53 4.96 28.97 12.52 25.69 12.71 29.60 11.10 46.08 91.92 57.19 2.96 51.50 55.70 48.44 62.61 99.37 69.76 72.61 47.85 85.81 77.49 25.79 48.19 17.33 92.13 99.03 22.57 81.44 88.75 26.59 16.84 2.22 1.55 84.83 96.94 -60.23 36.09 11.82 68.64 2.87 92.19 57.67 39.81 23.62 26.27 71.24 87.70 59.18 64.21 96.98 1.60 5.71 0.61 92.25 84.90 72.72 80.95 47.76 88.23 6.05 3.43 52.73 74.39 26.10 99.15 16.89 29.70 48.68 11.04 13.18 67.36 82.87 37.85 84.37 8.02 59.80 65.05 65.75 97.30 63.22 29.80 50.09 40.24 71.97 65.58 91.15 70.72 9.91 86.63 86.79 25.11 1.30 40.56 49.27 88.17 11.55 71.18 32.08 57.24 8.69 22.63 93.34 20.73 19.66 12.88 1.14 87.94 19.08 88.27 17.01 35.89 24.99 35.35 48.16 84.05 55.27 59.73 65.20 60.70 65.76 73.03 29.61 64.47 45.36 63.41 18.31 39.40 23.91 47.36 81.30 94.63 52.13 11.03 59.21 52.00 -27.38 92.30 76.21 12.69 58.17 38.81 52.85 44.05 4.78 24.67 65.89 56.63 92.85 3.03 1.07 5.29 18.64 91.89 87.74 36.81 59.27 80.53 9.31 56.08 91.73 73.23 90.83 57.69 13.00 65.82 61.53 92.26 87.07 54.33 94.65 11.81 98.18 6.03 65.44 1.35 61.66 12.63 68.99 42.34 7.46 98.58 50.93 38.69 76.15 49.95 46.29 75.51 95.95 75.25 89.13 50.94 26.40 13.99 75.48 37.81 0.35 11.88 18.28 2.60 43.21 27.89 63.99 58.33 68.66 0.88 6.75 3.15 87.34 57.52 30.29 18.59 93.14 25.17 71.82 24.62 28.30 47.23 81.27 50.98 82.61 62.34 74.93 57.99 74.31 94.58 76.68 35.89 4.98 59.94 53.34 10.81 62.35 30.96 10.08 56.23 -65.32 99.23 55.13 14.96 24.64 71.80 66.51 64.08 72.45 3.16 26.30 21.38 23.88 62.93 74.43 63.85 24.68 46.50 77.18 18.37 44.38 61.33 86.22 60.20 80.83 27.80 73.65 89.63 2.69 83.14 90.10 70.52 70.87 12.02 13.42 44.28 22.82 81.53 85.50 56.48 2.62 3.65 23.11 4.51 20.50 92.73 62.40 98.19 17.38 62.28 84.87 84.91 54.03 35.25 79.40 7.52 77.72 13.90 83.26 14.89 61.16 12.68 36.85 51.65 46.02 2.46 29.42 89.12 79.12 46.50 67.98 99.46 18.61 46.17 42.74 37.41 19.25 51.98 74.32 4.83 28.20 62.99 88.81 89.28 57.49 22.85 18.25 21.59 53.24 86.07 21.90 51.83 58.44 89.79 20.86 67.48 18.09 87.16 84.67 62.90 -25.10 34.62 81.38 43.75 55.42 39.77 25.04 39.36 68.58 10.47 83.25 87.64 35.79 56.09 30.47 2.29 12.73 69.71 63.67 51.21 68.21 3.11 87.74 6.82 14.27 17.16 48.12 17.51 61.55 39.45 27.17 7.27 17.79 62.95 38.38 0.08 82.03 3.37 94.71 10.16 43.81 4.49 21.28 56.13 42.26 86.24 62.99 61.25 32.11 47.76 50.17 85.66 96.51 27.03 41.56 60.66 54.77 70.06 39.55 17.80 51.92 50.48 28.47 61.76 93.78 16.98 2.85 50.13 42.79 25.18 30.96 79.45 83.43 73.72 95.81 34.94 80.17 68.84 19.41 92.42 39.19 18.43 31.90 5.85 29.26 76.66 61.01 62.82 96.15 78.40 32.65 0.11 51.46 81.67 90.25 79.90 89.66 42.41 54.06 75.61 -46.20 95.39 77.02 34.31 69.88 60.73 44.55 72.45 38.32 44.87 87.34 4.18 16.64 74.19 47.77 70.23 25.96 34.50 83.75 47.33 1.71 74.13 65.93 94.29 77.10 39.94 53.50 47.71 34.30 19.96 91.48 55.76 32.11 5.72 65.87 17.20 90.81 11.01 14.75 99.28 34.19 21.52 60.77 65.07 3.78 92.06 30.44 20.82 33.68 27.98 18.35 24.33 54.40 91.33 57.86 1.12 35.05 92.55 60.52 69.33 93.11 8.81 5.74 47.17 85.12 32.89 5.31 3.06 93.15 99.47 40.58 26.57 8.34 86.20 40.69 25.43 48.95 81.22 9.97 82.12 1.79 27.92 74.71 54.72 4.47 99.55 23.18 97.30 50.15 76.87 80.47 75.09 98.21 4.20 54.00 23.14 98.76 44.88 16.84 62.83 -97.25 65.11 36.18 90.55 40.05 28.94 81.78 48.68 92.84 69.02 62.62 54.57 68.53 29.53 60.01 67.76 23.01 7.56 35.73 38.82 71.94 91.62 47.25 90.31 9.82 4.04 99.76 27.07 14.07 51.34 66.16 70.48 73.51 40.72 18.33 8.72 93.36 88.65 3.75 36.40 68.59 92.59 76.19 10.58 55.44 2.41 65.64 38.27 70.27 24.55 29.66 96.18 69.76 57.94 16.73 34.19 78.74 47.47 78.63 61.77 67.67 1.37 53.75 52.19 36.60 89.08 67.71 15.41 86.75 3.98 91.05 94.98 25.84 47.56 89.78 87.61 81.28 93.03 58.02 51.18 23.17 20.22 61.46 23.73 13.14 5.73 88.39 45.03 83.43 67.50 14.34 4.64 36.10 53.45 97.23 63.23 21.78 94.80 95.30 61.00 -55.13 39.30 76.80 70.89 44.49 68.97 29.86 82.35 7.31 2.99 53.33 73.87 87.64 36.36 29.27 73.82 95.99 8.14 15.84 56.62 49.53 12.09 47.00 70.53 88.26 3.73 32.87 23.28 79.44 25.02 22.36 26.70 55.99 73.84 99.12 13.33 41.80 73.69 72.60 2.94 69.67 83.47 90.36 75.15 30.17 43.57 89.08 72.73 56.07 80.86 98.10 75.88 18.49 96.67 28.87 5.62 18.66 58.34 15.31 43.27 51.19 87.39 16.97 75.56 83.70 38.80 21.79 61.19 68.84 78.46 43.35 12.81 75.12 46.21 87.88 56.78 77.79 47.07 7.30 65.22 48.09 68.20 64.70 29.57 71.53 38.90 21.53 60.39 72.01 54.17 5.60 21.74 59.95 67.66 5.26 86.84 15.81 1.70 48.43 66.35 -86.53 88.40 5.28 81.33 15.22 11.42 98.10 79.63 14.33 37.93 70.68 79.29 37.02 23.30 32.81 86.31 36.69 14.64 24.16 78.02 63.54 48.92 74.21 63.98 7.21 84.23 73.13 30.71 78.00 37.98 72.62 48.76 44.27 77.89 61.36 41.48 37.33 6.03 89.91 14.47 98.35 46.17 75.98 30.78 9.63 28.60 29.33 94.50 21.05 21.83 93.61 45.32 30.08 9.26 73.15 34.46 20.18 45.83 38.94 50.52 52.76 76.33 32.16 97.72 69.07 59.12 12.29 18.29 26.34 73.18 73.15 36.20 15.27 14.52 1.31 35.32 11.81 87.09 55.28 75.77 47.11 62.99 12.42 43.90 34.03 76.67 64.64 50.76 18.50 68.77 10.75 62.08 28.22 62.34 91.36 64.56 76.37 81.10 82.66 93.94 -44.26 57.32 30.10 44.57 14.61 4.47 29.71 38.70 42.80 9.40 87.67 92.78 2.55 55.41 68.76 44.26 44.52 62.11 26.95 68.82 44.39 40.63 48.91 94.28 49.39 21.85 7.96 42.54 80.93 26.77 56.64 64.48 72.79 94.42 33.37 54.67 83.74 12.49 36.59 5.07 39.88 60.30 90.64 33.51 95.89 81.82 76.98 79.41 24.84 63.42 49.78 27.63 21.27 67.98 53.01 67.15 77.64 10.66 46.59 95.56 60.76 6.07 38.17 10.42 2.08 52.28 97.79 67.90 66.66 65.76 99.76 73.10 74.38 29.33 55.51 82.80 19.67 12.21 33.33 4.42 19.36 97.43 54.78 82.95 10.09 90.47 40.02 2.13 97.35 30.44 74.72 17.81 23.42 53.48 71.96 89.17 52.82 80.73 84.81 27.43 -7.69 48.38 19.42 23.68 48.36 35.58 78.89 64.33 40.97 13.47 14.30 22.21 73.80 31.81 47.07 92.02 71.11 64.14 99.42 30.34 76.13 81.45 63.24 93.60 95.06 26.38 79.26 73.49 66.56 15.97 59.85 98.18 64.51 70.59 83.72 6.23 31.52 85.17 0.64 53.65 97.10 50.00 30.50 89.18 70.39 32.02 19.09 21.98 99.32 17.35 59.64 67.16 51.79 90.24 96.60 75.78 34.10 40.99 18.99 26.95 50.74 33.82 91.73 80.86 74.78 63.66 56.40 60.08 84.54 65.62 76.59 68.18 72.96 62.34 35.20 2.83 66.81 4.28 83.67 80.23 14.28 51.67 31.48 8.55 82.79 3.04 36.53 48.73 98.06 91.77 26.40 78.36 56.68 23.85 78.71 91.14 59.36 31.84 42.21 53.96 -88.11 11.90 21.02 45.25 89.83 84.13 2.03 20.04 97.41 77.67 27.52 39.13 78.20 1.70 29.12 8.37 67.24 86.57 47.34 8.74 7.89 42.68 25.80 73.99 86.06 40.74 31.58 93.47 70.19 90.44 92.91 6.68 54.75 4.91 35.85 52.43 72.53 71.22 16.20 17.47 62.90 67.22 31.69 30.62 46.83 54.76 98.28 73.56 98.90 71.91 48.18 5.10 28.25 78.96 32.71 83.85 25.55 8.64 37.35 6.67 49.51 15.52 68.57 41.18 72.17 38.38 49.24 32.96 94.12 19.51 6.57 14.54 53.72 16.92 25.56 15.30 15.48 23.98 79.90 75.38 64.18 31.01 0.26 27.38 75.91 74.94 72.89 55.91 43.48 19.09 89.20 38.15 64.76 3.34 16.11 20.06 95.33 23.08 73.10 37.90 -45.02 91.19 39.29 71.77 33.34 74.39 25.06 23.86 68.20 50.78 7.20 12.48 23.93 83.78 66.58 3.34 16.22 99.08 93.14 93.67 39.17 3.73 51.36 89.23 59.89 97.00 85.20 12.46 29.29 9.44 38.71 31.45 94.28 88.16 14.53 27.16 97.78 84.52 99.67 90.86 14.41 35.87 88.31 68.38 25.88 41.84 6.99 60.83 55.06 94.46 65.71 92.97 33.07 70.17 40.30 79.91 91.00 40.03 69.89 12.83 58.02 46.32 87.43 8.06 15.76 17.87 5.80 13.73 56.51 29.85 79.90 9.20 73.48 6.54 18.51 84.42 6.62 23.87 43.08 84.07 55.08 49.68 30.93 25.62 15.09 81.24 66.32 6.79 51.47 33.67 23.50 66.58 34.01 48.54 39.45 65.88 1.78 26.92 63.93 80.54 -34.21 2.22 1.69 53.16 92.88 86.23 32.77 37.07 29.62 96.70 44.86 32.12 26.80 7.88 42.09 11.98 43.61 47.64 91.03 67.77 69.14 48.90 87.96 9.69 54.65 26.50 80.17 9.75 36.59 41.06 86.35 39.43 98.06 88.52 33.52 82.94 30.72 51.49 59.58 73.69 36.30 21.84 1.68 2.51 83.74 45.80 1.38 46.58 10.13 77.51 80.21 19.22 50.92 81.30 81.97 54.38 90.23 26.17 99.40 98.71 62.97 20.37 11.06 73.10 88.07 1.44 44.09 86.62 49.02 61.01 77.02 14.51 2.95 67.04 56.05 96.82 43.51 79.86 62.09 11.58 97.90 8.46 41.61 60.45 83.98 85.33 29.47 39.40 3.70 95.42 21.48 28.08 64.69 19.50 14.66 6.28 98.17 2.46 28.24 65.63 -19.08 90.39 16.13 46.12 31.37 12.24 7.80 14.00 61.17 68.52 38.60 90.77 90.54 61.80 29.88 99.62 83.60 22.27 51.86 66.62 22.28 77.98 14.57 9.25 13.47 73.90 40.30 22.82 80.12 69.98 9.37 81.74 34.48 87.47 14.71 54.97 41.09 10.33 84.72 78.01 46.50 45.17 66.32 84.25 43.30 95.85 39.81 95.17 79.17 10.73 34.45 10.13 54.02 56.39 34.70 40.62 61.52 98.79 86.21 8.87 17.30 78.19 90.06 3.40 46.26 47.86 97.89 84.57 70.72 56.38 21.50 19.27 13.01 23.49 50.53 17.95 59.17 29.47 93.44 0.23 38.61 10.86 21.14 15.25 41.18 97.12 44.92 77.00 53.10 16.11 58.09 39.91 28.54 21.57 31.90 77.22 18.58 18.83 92.08 38.64 -86.59 21.73 51.86 31.18 29.91 47.37 45.81 88.31 77.31 34.34 68.79 91.23 97.13 42.24 18.05 12.52 71.86 9.80 67.46 40.98 55.98 69.95 10.97 65.60 83.21 76.14 99.25 88.23 61.31 88.42 81.74 36.06 60.88 96.12 7.15 64.67 30.49 31.99 64.72 11.18 13.59 62.39 73.58 30.80 68.79 1.63 74.82 96.78 84.84 30.03 46.84 44.23 74.04 96.44 43.03 81.90 13.61 72.19 50.08 87.37 7.17 1.39 64.15 1.03 12.41 53.08 75.72 34.14 88.25 20.36 96.16 51.46 94.48 68.51 87.00 35.69 93.27 30.46 89.62 55.29 45.07 19.15 88.13 69.77 79.66 28.68 78.46 28.27 2.64 2.56 16.45 60.15 5.41 39.98 20.60 18.05 3.43 63.94 25.16 35.30 -8.44 50.07 73.22 35.78 57.37 10.01 89.59 39.64 88.90 95.03 41.73 86.95 1.55 76.71 51.19 13.32 81.76 74.10 49.82 85.27 22.98 63.58 99.34 78.71 77.24 80.17 87.91 44.99 17.12 5.57 31.95 80.48 59.11 73.95 27.50 74.04 20.64 50.39 84.98 44.81 40.83 0.19 94.14 53.17 64.15 28.92 14.08 62.35 93.17 41.64 58.28 79.14 85.04 24.36 74.51 38.71 61.82 4.20 33.17 9.30 77.97 47.40 4.87 48.35 71.96 53.76 86.26 26.35 63.04 74.25 95.44 1.59 63.32 35.11 66.36 62.58 14.54 28.59 12.89 61.38 71.74 88.08 32.31 80.38 27.43 69.39 46.08 59.67 8.06 68.09 60.29 49.11 46.55 19.83 31.77 79.95 87.82 46.00 28.62 82.10 -80.96 71.56 68.40 67.51 40.92 81.45 33.20 65.79 62.46 85.20 26.21 57.78 11.49 56.26 4.69 64.14 73.26 31.11 4.01 88.57 53.68 20.41 90.32 89.20 45.65 2.77 44.31 5.02 86.66 66.92 51.46 85.68 42.99 72.02 36.71 2.11 37.40 35.32 91.31 38.99 90.73 88.56 54.54 22.86 96.52 29.24 84.41 82.02 93.44 65.95 47.74 89.73 63.47 21.89 7.30 78.85 37.58 84.37 26.37 9.72 62.52 35.76 31.62 91.26 58.04 25.64 93.99 88.22 0.20 53.01 39.98 27.31 33.14 28.79 57.38 85.53 22.01 86.61 65.04 47.32 15.77 93.09 54.62 14.92 85.59 91.60 17.81 62.71 31.10 4.15 7.44 66.02 82.79 11.93 79.51 14.13 4.95 73.87 22.69 79.67 -71.92 1.13 39.12 20.61 52.71 20.22 70.59 87.14 39.97 50.50 72.23 66.74 41.88 87.22 60.72 53.07 74.55 8.59 69.28 17.79 36.94 73.85 10.18 67.28 29.46 2.49 17.42 43.23 51.83 77.73 89.33 9.35 98.43 19.48 22.48 15.76 33.21 89.65 98.63 34.45 75.23 93.17 57.25 31.28 45.47 83.53 33.66 94.88 16.13 92.11 19.94 31.98 34.90 24.23 3.75 21.18 12.33 86.64 35.71 19.35 60.18 35.62 89.38 27.70 97.79 59.34 82.35 13.36 41.93 38.96 88.50 39.15 40.65 52.48 34.73 26.76 66.02 44.98 99.78 18.38 85.95 33.04 45.32 70.79 72.56 17.95 55.78 11.31 86.98 3.84 32.33 58.07 51.14 14.66 60.41 19.76 44.88 50.45 20.89 3.02 -45.95 29.63 94.77 59.54 83.12 61.56 36.89 61.14 4.07 9.60 56.16 71.34 82.48 65.65 56.57 77.16 54.77 8.10 18.38 94.31 53.75 96.21 15.17 61.73 89.53 84.55 54.24 61.80 28.97 86.22 93.21 98.31 47.37 46.84 62.83 71.98 76.71 25.59 17.67 6.40 7.71 70.95 30.54 11.36 37.40 18.09 12.26 87.07 1.85 95.78 35.80 86.20 51.28 67.64 54.50 12.03 38.08 95.74 93.64 72.41 14.91 32.24 48.39 10.19 0.20 25.82 47.94 97.92 1.23 87.43 90.05 60.91 43.21 53.22 9.94 8.46 20.22 4.43 28.33 26.39 46.46 6.29 11.29 5.22 17.14 48.97 12.35 85.67 21.88 70.61 53.39 66.04 19.84 80.31 89.71 46.75 15.45 35.80 26.70 19.00 -15.26 8.79 86.26 85.61 77.99 63.49 62.69 62.23 86.73 31.04 55.72 7.04 82.94 72.23 46.65 59.26 95.95 10.55 1.33 41.74 81.17 71.66 94.95 9.45 70.64 99.61 83.62 95.67 92.27 51.42 66.28 86.56 83.42 95.13 45.20 86.62 94.15 86.04 98.16 18.73 86.03 40.54 29.68 65.46 19.57 37.62 52.53 49.77 92.31 79.33 65.04 68.61 58.42 26.20 83.53 64.98 55.58 11.11 35.77 79.61 13.75 64.98 64.13 40.89 90.00 27.04 62.14 9.23 71.20 78.27 68.20 98.13 46.23 49.20 99.66 60.17 69.27 63.20 47.50 35.99 18.46 25.45 16.81 11.13 45.70 40.20 25.11 23.75 37.10 15.73 21.49 27.48 29.13 84.23 21.10 2.54 46.55 37.55 29.83 79.10 -34.93 98.76 61.50 47.29 39.72 44.13 67.51 56.89 11.38 62.12 57.60 27.22 40.94 36.64 24.52 31.59 14.88 75.70 40.91 89.15 21.76 80.06 99.00 59.52 45.21 85.60 84.68 93.66 87.67 37.25 0.06 72.02 63.83 5.17 36.75 56.46 90.89 23.53 30.60 50.09 53.26 54.54 91.31 46.73 28.35 99.97 25.57 30.66 78.89 9.60 49.68 85.72 98.48 74.31 68.85 7.64 64.49 96.84 57.77 23.15 68.74 86.11 53.67 7.74 90.15 61.39 98.17 56.86 71.61 49.22 96.92 80.31 35.06 34.95 34.89 65.20 65.39 24.02 24.76 43.19 6.51 23.02 75.68 62.02 34.92 46.52 57.75 17.41 81.91 49.96 53.45 78.27 63.68 72.46 32.22 92.79 7.35 83.62 20.06 2.71 -19.21 95.78 35.83 54.59 55.63 9.50 93.88 66.18 92.49 77.68 11.56 73.04 48.23 61.58 23.60 88.57 9.73 80.51 54.22 5.79 21.43 73.52 99.22 27.31 50.33 8.21 92.72 83.74 90.86 63.72 52.75 90.47 65.12 38.67 34.42 24.09 71.40 7.66 71.62 80.88 22.70 33.62 11.29 97.25 4.37 60.65 25.69 27.63 98.06 53.30 35.75 2.95 23.93 91.86 58.40 85.19 84.26 25.18 11.67 91.93 37.99 71.53 18.07 42.88 35.36 75.84 81.90 82.64 46.25 0.53 59.68 21.54 70.36 85.32 25.51 33.14 32.90 16.78 92.86 8.01 4.47 56.11 12.11 78.29 13.80 69.93 83.55 38.92 2.91 6.66 86.98 97.13 89.03 68.62 7.82 53.28 87.22 24.37 18.97 16.54 -36.60 46.18 95.99 31.31 51.93 5.07 22.89 76.78 10.71 57.15 92.69 12.58 34.68 3.20 89.67 51.30 42.92 73.56 41.77 70.30 65.90 59.46 77.25 49.46 40.43 79.02 22.04 89.22 43.96 85.41 60.95 19.49 66.22 80.47 93.39 41.80 96.98 72.29 97.14 91.24 88.66 84.63 31.03 94.33 47.87 49.32 23.08 13.93 81.25 8.44 35.09 10.02 33.89 85.33 72.76 15.01 90.03 12.52 81.47 81.18 60.54 60.17 98.59 77.89 19.46 18.00 43.16 14.24 11.81 4.81 13.65 33.20 7.92 40.76 55.34 10.06 90.48 88.20 65.76 69.90 75.76 61.52 32.21 97.45 73.13 72.34 71.46 95.37 19.94 66.45 74.39 49.70 32.99 8.68 32.33 77.21 26.06 42.48 12.04 22.12 -78.69 60.56 35.03 36.20 27.29 82.21 93.19 67.08 64.11 79.14 9.09 91.02 79.95 45.54 14.01 94.55 5.62 80.60 54.57 43.95 95.63 43.55 9.87 2.45 76.53 9.86 68.95 30.31 51.77 83.47 36.69 85.14 83.84 27.05 52.69 48.62 83.87 58.36 7.67 32.13 17.73 9.99 78.90 28.39 62.33 18.03 84.88 54.20 52.60 27.03 50.19 61.40 7.72 50.13 71.68 69.02 80.61 2.48 18.31 13.17 9.21 13.95 93.47 74.88 13.78 93.84 93.13 85.81 33.45 14.05 57.70 42.64 64.95 25.08 0.48 72.53 48.74 16.85 34.59 78.15 76.41 43.26 98.30 75.09 79.44 65.29 44.45 38.90 13.85 39.11 80.01 21.85 94.28 77.42 39.37 85.38 40.87 51.27 19.41 95.91 -20.19 25.07 81.03 33.03 82.97 35.08 29.41 18.89 81.30 85.86 98.65 25.97 9.65 20.62 10.00 71.02 38.89 0.43 29.87 9.38 16.02 65.64 43.84 15.59 20.83 13.98 57.53 88.82 80.62 0.38 2.15 76.76 27.70 85.54 5.87 22.83 32.70 63.52 35.90 66.42 29.10 59.53 44.54 5.99 58.73 66.00 76.74 31.96 57.39 42.40 72.84 1.01 21.28 61.36 12.98 72.28 31.79 55.31 56.67 45.85 75.83 96.62 40.10 63.12 94.11 3.78 36.75 39.20 94.94 22.30 75.19 92.98 19.11 96.14 68.34 26.61 6.65 41.83 37.64 50.34 42.63 85.97 77.57 79.59 18.11 75.53 61.03 42.26 40.41 66.34 39.97 80.88 43.00 68.27 21.53 55.73 74.28 76.24 70.49 39.78 -85.49 72.24 93.93 68.85 1.38 46.26 4.07 17.89 2.08 4.25 68.35 7.27 1.64 89.46 72.73 85.66 39.70 12.83 47.28 94.79 93.23 76.97 99.03 59.56 21.14 76.28 4.26 26.77 84.55 55.90 83.72 41.96 80.49 21.83 68.65 55.40 45.45 65.13 24.03 2.27 46.22 24.28 41.82 63.80 69.14 34.22 4.03 99.66 42.44 97.33 92.44 46.33 16.79 53.86 23.67 35.19 86.37 47.85 40.80 22.82 40.70 67.24 0.90 78.88 92.63 32.64 82.38 37.30 53.33 20.28 53.25 16.34 0.37 45.32 25.65 97.12 17.83 98.59 2.64 88.58 54.25 91.55 61.25 16.28 87.15 39.23 54.39 68.46 65.67 25.14 34.60 38.85 36.89 36.46 43.87 21.29 51.23 69.14 65.69 28.73 -98.48 45.72 30.88 58.51 50.09 81.36 37.07 13.39 58.34 15.82 11.31 7.55 78.58 88.67 1.45 75.32 15.82 92.97 58.50 58.27 11.04 94.29 77.96 4.51 23.52 78.26 68.46 97.67 92.79 41.86 39.48 76.34 29.56 93.02 8.43 67.83 13.80 86.47 46.46 36.79 86.60 68.98 45.95 10.30 83.93 77.25 99.42 86.41 51.79 92.82 71.17 36.89 77.35 55.11 55.87 8.36 11.82 35.54 56.82 32.90 46.61 71.07 58.82 83.09 14.92 37.40 34.45 94.98 94.83 10.68 14.97 51.12 9.29 36.22 49.67 69.47 79.42 1.76 25.68 61.07 16.22 4.41 88.00 33.87 2.75 58.97 95.98 22.67 11.48 61.58 2.53 17.50 18.49 5.88 50.04 52.79 2.94 53.29 51.20 24.37 -39.35 71.03 82.06 78.40 18.62 45.20 93.31 56.55 81.88 5.33 94.48 49.59 66.40 47.41 55.66 72.49 95.05 98.49 73.81 22.24 93.53 7.24 20.25 62.76 93.79 75.88 36.82 57.33 62.69 29.38 56.43 38.65 76.73 76.74 31.42 73.57 26.94 24.04 31.27 50.38 52.51 3.23 70.21 99.47 69.10 84.20 0.26 40.38 97.83 47.79 5.52 33.65 90.46 49.77 61.44 3.13 45.25 11.48 96.01 95.18 91.87 91.71 13.11 69.89 13.26 79.76 77.10 99.08 95.34 46.75 42.85 19.87 29.65 20.13 56.12 89.12 34.01 33.58 51.20 29.43 98.68 80.17 49.57 95.45 59.77 30.39 56.85 42.07 67.73 66.56 14.01 37.96 58.91 56.26 51.30 11.70 39.51 48.29 14.76 20.99 -43.36 56.73 51.44 88.42 59.92 18.15 21.06 69.75 60.36 68.62 16.11 95.61 70.94 5.41 41.86 20.67 13.01 28.85 72.28 40.11 91.32 83.00 73.79 45.14 68.04 17.70 92.78 80.85 54.52 27.15 17.08 94.46 28.45 27.76 19.80 2.43 95.50 63.91 21.04 66.14 75.69 24.45 66.15 95.86 10.91 48.28 50.48 73.20 90.50 16.50 94.79 11.68 95.72 87.64 19.39 22.75 21.31 45.80 37.97 5.46 14.32 5.41 95.87 36.75 97.15 34.58 89.04 83.67 36.32 34.26 17.59 76.66 45.60 32.41 8.36 86.55 74.92 1.38 10.08 44.56 66.81 3.22 3.79 82.79 11.51 62.49 53.68 60.18 65.16 47.93 23.67 70.21 39.47 48.54 61.90 0.35 34.88 88.65 15.32 67.93 -15.84 30.31 33.66 6.13 75.48 93.53 72.17 39.85 33.89 31.39 18.64 59.31 36.52 10.40 49.12 68.80 79.35 43.72 23.55 61.60 78.03 52.32 42.50 63.78 54.12 67.52 85.79 76.21 95.78 22.41 24.97 30.07 78.07 88.70 92.89 9.49 22.85 38.74 65.98 66.35 53.99 4.97 0.78 64.56 75.40 73.96 97.21 13.03 56.70 49.00 93.77 37.17 4.20 89.70 37.77 78.98 36.38 39.20 63.82 67.63 50.67 49.89 79.87 36.37 36.68 24.78 31.49 52.66 14.85 61.94 50.97 50.31 39.13 93.45 22.33 83.98 64.08 18.33 79.90 98.29 17.05 80.80 62.52 10.80 21.31 23.10 91.42 76.27 0.94 25.28 90.39 91.56 97.78 64.25 87.52 89.57 59.31 45.30 38.17 60.77 -2.19 44.04 33.20 93.29 4.14 36.65 1.08 86.55 65.13 86.41 56.55 85.19 87.80 81.37 62.06 82.77 85.96 76.56 25.94 3.58 92.17 18.21 97.82 83.54 59.45 90.09 7.46 69.38 58.67 57.77 62.30 13.28 11.61 26.99 5.65 49.04 57.10 70.47 89.50 46.20 58.86 72.17 34.76 70.58 77.27 58.36 78.94 18.54 56.31 90.37 10.33 76.88 90.59 33.33 46.26 16.01 94.84 80.32 83.65 95.52 1.98 33.79 82.54 39.98 91.41 65.49 11.66 66.15 91.04 7.97 93.69 31.34 32.79 69.46 48.15 53.96 32.00 22.72 6.26 52.69 24.56 89.52 89.49 75.82 76.66 26.58 51.46 61.04 50.07 36.16 19.12 71.04 18.40 85.82 19.84 72.46 1.34 28.65 79.81 83.43 -24.89 76.71 74.42 19.60 55.31 23.50 91.28 11.76 80.49 21.84 24.06 6.39 19.53 93.87 47.84 87.26 68.47 23.90 76.01 2.39 92.34 48.50 34.88 0.92 85.67 38.77 87.81 8.47 89.20 8.50 72.83 86.24 12.73 0.20 60.88 89.91 43.05 25.46 28.47 66.47 82.65 95.20 15.00 55.07 49.82 75.41 98.86 74.83 28.86 43.04 30.55 9.32 93.44 70.00 19.93 0.62 86.05 95.07 90.29 21.92 44.02 56.90 90.36 56.72 81.52 26.76 25.33 96.99 78.03 56.92 56.64 51.32 21.18 81.53 18.00 21.87 89.94 80.59 78.07 57.06 13.87 2.05 88.20 77.18 86.81 14.60 31.74 88.54 11.52 15.81 21.25 65.57 70.89 63.38 13.57 0.30 53.31 12.68 75.33 73.35 -4.55 19.42 40.46 3.37 70.41 24.05 17.14 87.74 62.64 87.67 43.75 74.96 78.11 40.21 4.42 45.37 1.02 19.81 10.38 62.66 68.30 37.82 5.36 78.16 0.59 93.66 20.32 59.87 83.52 17.43 71.83 0.84 61.15 96.20 64.09 48.75 83.06 80.40 95.86 48.07 55.62 1.55 47.02 47.76 98.60 80.41 44.33 46.86 65.33 79.58 1.28 13.03 61.62 1.19 18.17 42.16 64.54 6.32 52.25 20.01 1.80 93.98 41.66 35.38 71.08 69.69 65.54 32.57 87.42 36.48 92.48 19.67 8.92 17.69 54.86 13.53 5.48 2.68 8.15 90.67 10.27 72.84 15.45 86.89 38.33 9.81 7.92 10.10 45.59 62.91 47.59 98.19 21.49 99.47 59.00 63.56 70.07 31.96 77.85 83.44 -47.50 25.86 74.77 68.02 3.33 95.54 3.90 53.67 65.33 3.80 63.34 55.43 86.60 62.53 39.80 71.18 65.10 71.85 18.47 74.44 30.94 43.31 81.71 66.61 96.13 4.80 68.42 91.13 45.12 36.13 77.46 1.92 73.88 7.38 60.27 97.06 40.31 6.19 91.92 18.29 70.83 42.05 76.48 16.01 56.34 62.61 3.17 24.56 45.88 98.51 59.98 35.94 33.45 11.03 59.71 78.01 11.06 19.41 27.74 88.26 77.88 21.80 28.03 24.06 7.89 0.61 8.80 69.26 87.18 35.39 7.66 72.30 47.71 71.73 53.58 68.95 86.11 69.06 45.75 2.14 65.63 43.80 61.36 85.38 80.47 72.91 59.63 2.58 75.11 80.20 26.38 1.47 40.62 96.36 11.21 5.70 25.16 23.97 74.16 30.92 -26.79 2.05 36.96 3.19 15.79 38.00 53.74 0.54 55.35 89.56 77.21 49.52 73.25 66.81 79.06 39.85 30.60 98.18 4.66 57.01 83.37 7.67 48.46 88.55 91.61 82.91 65.85 0.47 47.59 91.10 20.68 64.18 2.89 90.82 32.40 14.82 20.76 46.48 96.19 44.79 66.22 88.02 98.85 10.47 67.24 88.66 13.41 29.69 23.76 25.28 83.17 65.20 77.28 81.88 21.84 43.33 18.65 95.02 71.34 68.31 55.10 94.01 55.03 23.05 81.57 97.95 32.57 58.10 49.69 74.05 41.49 70.57 11.06 22.49 50.51 54.75 35.46 40.42 72.36 18.95 23.55 68.06 79.90 5.25 68.86 15.69 32.06 43.44 94.53 99.99 54.77 21.38 15.01 9.72 61.23 47.36 43.84 56.87 48.15 85.14 -9.59 45.57 38.75 92.86 12.84 14.39 85.20 62.12 71.68 19.01 45.49 39.70 36.48 70.31 36.58 84.19 36.48 52.79 56.55 69.49 97.40 0.52 83.90 43.18 85.42 86.81 60.57 40.58 40.89 77.89 13.29 19.37 12.64 4.64 77.29 62.04 75.44 45.21 30.61 49.69 46.90 22.17 35.21 71.51 89.00 21.69 15.79 23.33 4.80 47.35 19.95 38.01 18.20 91.65 41.16 25.79 52.96 87.03 80.30 28.74 3.63 90.66 25.32 33.84 34.66 91.06 52.24 95.55 83.67 68.27 8.20 89.10 50.83 85.57 58.56 27.23 11.96 73.34 67.03 37.57 70.59 89.19 78.47 93.35 5.07 4.53 66.23 5.67 9.44 79.77 8.22 51.72 93.58 72.59 14.95 89.27 27.83 67.43 84.33 49.99 -15.78 86.96 89.00 55.63 88.53 37.91 52.57 31.79 49.54 87.26 5.86 38.95 41.18 52.80 36.95 6.82 73.57 66.46 55.14 20.92 78.39 72.37 74.15 0.15 89.86 88.20 57.83 19.82 89.08 83.98 29.26 96.10 78.37 38.45 75.20 3.50 23.46 3.30 8.59 50.53 2.82 62.88 1.58 62.07 84.21 21.34 4.96 95.46 89.34 20.93 21.84 25.13 6.73 33.60 68.74 43.25 60.87 86.54 10.17 85.84 32.78 12.88 56.39 2.74 10.77 4.72 50.93 51.02 91.36 67.30 39.43 71.98 44.80 15.41 75.57 85.08 55.35 74.03 20.09 90.99 76.27 3.55 58.90 86.26 46.90 87.44 78.34 90.00 45.63 32.44 60.40 32.40 70.39 94.67 80.00 28.95 8.33 11.29 60.19 49.96 -8.88 53.78 87.59 95.71 2.16 89.48 84.75 69.73 14.81 80.53 68.01 94.94 39.25 14.18 1.71 72.60 54.87 94.73 63.20 75.17 74.77 31.99 70.62 33.36 17.54 81.74 19.38 34.53 10.95 35.20 10.82 93.62 79.87 86.34 69.66 94.76 38.32 39.50 69.19 18.40 45.04 30.52 41.49 95.91 95.24 39.12 14.66 29.72 44.16 7.41 51.79 23.28 28.61 54.08 7.18 17.89 52.75 49.99 53.88 54.49 31.63 38.03 70.09 37.95 36.85 94.91 9.30 3.06 40.61 78.51 42.87 93.37 24.39 83.48 96.90 86.42 46.17 91.63 22.99 38.99 93.03 51.62 54.26 20.14 86.67 44.17 43.86 21.93 13.88 85.81 91.74 46.44 85.33 53.58 18.98 46.89 28.53 10.33 51.53 25.06 -35.79 7.63 34.31 88.03 30.51 4.02 9.71 94.66 97.99 76.37 9.53 13.01 13.80 44.40 72.44 34.04 19.97 60.52 91.82 92.61 21.70 86.08 22.51 84.87 14.00 52.93 99.00 23.24 34.80 61.47 73.23 73.17 24.81 21.26 0.92 54.77 94.50 9.41 50.56 35.06 55.20 86.81 72.60 90.68 21.63 97.51 12.12 93.94 34.14 15.46 55.74 6.75 94.52 49.87 83.15 18.69 40.36 8.90 70.20 63.88 50.94 10.27 34.55 45.29 96.60 70.03 32.64 9.25 82.36 98.79 37.61 46.01 52.66 85.78 18.66 88.26 56.93 80.57 17.99 67.24 0.07 41.00 65.22 95.03 88.94 0.51 44.50 38.57 16.83 0.60 14.89 2.35 54.57 65.89 40.53 50.97 28.84 38.91 89.56 69.79 -18.93 81.29 60.49 47.33 76.96 82.87 41.98 81.08 71.29 52.84 54.97 15.37 5.52 65.60 46.23 87.01 61.83 34.01 78.54 32.23 88.06 39.70 24.56 28.94 14.84 89.00 34.66 90.41 89.52 63.76 19.83 34.74 34.53 8.04 37.54 38.33 9.14 39.50 50.72 74.73 90.52 68.99 95.99 99.01 15.82 97.31 88.95 78.85 91.84 85.08 58.97 92.37 21.80 7.61 62.31 72.89 81.55 31.98 46.68 42.64 21.63 39.76 71.96 29.48 85.27 82.93 88.57 95.61 37.49 30.89 53.06 29.18 10.90 91.55 32.77 63.20 28.29 24.29 94.60 0.39 35.13 34.95 89.37 91.44 44.53 50.51 92.30 23.50 82.01 13.16 77.87 29.92 17.97 39.99 47.31 78.84 95.35 34.31 35.62 34.12 -87.51 94.63 86.41 37.94 63.31 31.32 26.87 3.49 69.28 81.11 98.18 65.32 16.96 94.00 15.72 13.91 15.14 52.30 82.63 71.70 66.58 40.86 31.43 56.34 27.80 95.97 63.09 49.01 23.16 25.62 51.17 42.47 96.73 26.91 74.98 36.34 56.67 52.81 59.36 48.46 90.47 5.84 1.27 47.42 16.46 90.56 36.33 74.39 31.76 11.56 1.56 42.85 12.91 45.19 18.88 72.02 2.96 98.42 49.50 77.26 21.12 48.96 29.46 58.98 30.87 58.04 25.18 24.70 88.52 76.55 60.02 58.68 83.48 3.81 16.64 89.26 71.03 84.69 70.00 74.99 57.52 71.31 14.34 55.22 27.17 7.90 69.42 3.60 91.49 41.48 85.00 23.39 48.49 61.19 42.82 34.36 7.79 16.43 1.63 29.98 -25.72 34.95 73.29 28.50 59.13 48.87 31.31 55.35 82.99 52.63 17.74 65.82 38.06 28.89 7.91 85.71 29.23 62.28 13.47 25.91 21.24 75.58 75.14 44.68 73.14 16.47 46.98 51.62 77.90 78.35 68.04 67.19 7.71 79.26 98.93 10.04 44.22 73.09 60.02 83.45 17.55 7.61 37.13 72.26 50.74 8.54 1.89 24.43 29.85 66.19 31.54 45.37 82.94 63.52 33.45 50.67 30.62 27.90 20.74 84.82 95.43 11.68 55.00 73.99 73.82 70.35 61.04 50.22 6.58 68.96 74.19 15.29 21.33 88.53 4.21 79.45 71.21 80.07 58.94 65.01 12.32 38.70 36.02 36.03 30.14 90.77 16.67 60.51 44.87 1.18 48.40 39.25 5.28 70.55 13.89 0.61 85.69 19.77 24.24 86.44 -42.00 29.16 67.00 74.64 81.56 22.93 75.83 75.67 7.72 73.54 46.40 71.37 78.27 11.58 9.43 6.86 98.97 12.16 66.52 74.87 5.86 74.40 53.52 74.11 9.78 54.89 16.26 50.73 77.50 71.78 45.07 39.71 0.27 41.54 35.67 84.14 74.37 71.96 4.07 93.65 53.34 46.67 24.90 38.48 13.62 45.99 22.84 69.33 65.22 74.18 32.29 63.67 12.81 20.71 85.06 40.88 93.36 13.90 55.66 73.07 66.63 19.49 75.77 96.19 7.09 69.62 3.52 18.48 84.22 90.66 4.13 81.23 32.18 46.96 75.80 51.68 96.21 38.54 39.30 55.65 16.32 16.47 89.71 88.46 4.79 4.28 51.05 38.13 73.19 35.32 43.17 3.16 85.39 16.40 33.28 66.00 40.15 15.51 12.33 28.62 -45.37 62.27 80.23 54.11 68.66 33.39 54.48 9.31 61.91 63.23 5.04 80.66 13.99 53.78 50.65 35.40 44.89 84.05 53.92 34.97 10.80 23.51 14.36 95.76 58.74 33.23 42.59 21.24 1.90 2.54 75.93 8.54 14.57 33.28 28.41 81.32 83.85 26.74 86.40 81.53 31.88 34.33 48.60 89.78 53.26 43.86 0.32 56.48 79.02 47.79 77.06 63.00 13.07 39.78 91.21 76.04 12.50 36.52 40.50 51.34 23.91 92.28 0.05 6.51 91.83 31.37 99.70 55.63 60.48 33.90 70.43 14.49 82.01 94.23 3.04 92.69 67.65 53.96 33.48 1.99 52.26 59.50 82.51 52.08 79.30 17.77 61.27 8.31 26.48 35.89 27.48 22.87 13.37 98.23 2.92 11.65 23.68 4.15 87.04 6.61 -41.12 37.39 93.55 12.03 51.00 11.07 47.33 68.37 88.79 15.97 15.47 0.54 82.29 45.12 47.75 19.86 36.37 49.79 20.96 86.20 20.40 76.21 88.64 4.44 19.38 97.21 53.25 11.49 59.39 73.36 41.99 79.74 76.77 7.80 6.25 72.67 21.54 17.88 30.88 33.28 67.68 54.81 0.83 92.50 67.72 28.64 65.22 50.30 51.03 44.54 95.58 68.70 95.05 72.75 80.66 73.83 93.38 34.86 12.29 4.47 97.21 73.19 66.06 13.76 78.25 97.50 11.00 75.17 4.57 72.15 86.48 9.59 97.31 26.48 59.01 63.93 43.59 43.15 11.08 9.12 14.65 61.91 87.56 50.41 39.50 44.99 36.75 13.96 60.82 14.98 45.09 36.17 68.91 70.71 50.01 68.41 1.19 65.18 3.25 93.16 -48.96 16.53 82.45 5.80 79.50 81.99 96.58 66.24 52.24 11.05 35.68 70.47 2.90 45.39 1.70 16.26 62.25 17.55 20.86 52.01 74.96 76.03 78.32 4.06 18.26 41.04 47.98 79.44 71.42 57.64 67.25 96.69 31.93 91.79 28.04 26.39 92.07 61.71 81.41 7.37 49.18 21.68 6.32 59.87 63.62 32.74 90.75 11.86 29.20 89.16 80.92 20.79 43.35 16.44 2.28 12.89 57.05 13.72 9.04 78.05 3.89 77.34 2.37 67.20 83.17 90.46 77.11 96.16 57.48 85.54 49.37 11.54 39.62 58.25 89.07 56.00 27.74 26.87 10.56 24.92 38.18 2.50 68.27 35.81 83.82 27.48 1.42 82.82 29.18 78.91 56.53 65.65 49.83 96.75 71.58 29.28 44.23 92.13 18.19 86.55 -25.45 66.56 19.85 99.51 81.28 27.41 96.44 16.52 74.10 54.39 43.45 88.57 34.03 26.92 93.76 28.63 80.45 68.00 45.84 18.91 51.29 60.21 13.45 54.90 43.48 66.79 65.08 31.36 96.70 86.65 56.73 45.15 68.55 60.49 93.11 33.15 64.23 76.93 88.46 67.78 70.82 83.99 13.98 48.06 29.36 5.36 39.19 38.18 25.75 8.09 74.81 99.05 10.39 32.72 93.14 95.43 67.14 87.38 32.40 51.52 90.42 96.26 60.01 66.28 40.23 76.11 53.08 68.05 47.32 74.24 46.40 74.95 20.86 1.60 14.69 47.18 48.64 4.43 20.56 67.25 11.34 5.19 12.63 24.71 24.53 34.19 12.22 5.37 94.36 26.81 48.28 97.12 13.73 89.74 66.33 12.86 86.11 39.16 20.97 83.74 -38.06 86.37 35.65 73.13 87.03 72.67 75.44 0.17 10.23 43.71 33.56 80.47 58.10 81.30 18.64 47.11 41.48 47.44 20.23 41.38 36.09 16.34 59.43 85.29 26.98 53.56 59.89 49.88 88.73 77.34 67.72 78.78 29.24 63.89 76.35 98.67 34.67 90.26 87.81 95.48 68.17 46.26 20.48 23.50 3.26 58.13 1.25 71.64 93.42 86.17 29.12 3.33 88.67 13.02 73.02 10.46 88.45 60.08 10.59 88.39 35.37 43.34 95.95 77.91 15.94 43.86 7.63 5.53 98.09 72.18 93.69 67.16 91.36 95.24 26.80 30.66 62.28 42.97 48.99 7.29 99.93 86.17 22.71 53.13 97.88 82.92 59.92 56.86 44.70 17.39 66.23 61.96 76.29 82.45 9.58 13.60 25.03 45.94 71.61 1.69 -18.07 14.91 22.13 27.99 23.79 98.59 44.96 45.74 90.32 83.42 67.59 78.90 2.77 3.29 6.81 32.92 3.05 74.66 52.79 54.10 50.61 8.32 51.63 68.06 26.18 30.82 56.66 85.55 34.19 25.22 21.50 56.98 85.47 29.40 11.03 96.69 74.20 67.75 85.51 30.32 99.44 21.61 79.49 89.36 17.78 58.13 16.16 9.46 48.79 82.26 41.87 13.76 19.85 69.45 68.67 12.81 16.02 0.28 2.78 92.50 96.98 7.38 57.48 21.85 14.40 86.40 1.08 45.04 65.57 11.83 29.18 84.71 4.91 31.87 3.74 17.21 44.21 12.31 6.18 3.83 4.03 8.22 73.22 92.52 2.59 94.80 54.06 13.32 97.86 91.59 87.50 21.47 71.44 41.74 87.76 88.18 76.52 86.94 73.87 75.78 -48.23 73.37 62.63 43.10 22.67 48.79 82.57 91.71 21.88 79.22 67.24 74.45 94.60 16.65 52.98 59.76 15.23 54.77 90.55 12.68 55.85 83.66 1.56 26.55 39.51 44.16 75.07 23.10 33.46 55.14 28.41 77.09 45.04 6.72 27.61 76.16 24.76 47.46 96.01 33.11 45.14 78.21 10.83 21.19 42.68 36.93 39.01 14.98 57.34 70.32 74.28 98.30 6.74 45.72 35.35 15.07 66.70 3.49 81.48 13.48 56.03 0.92 89.75 84.06 79.23 19.23 78.68 1.11 36.97 47.65 20.83 80.35 37.11 63.96 6.92 34.79 49.52 39.65 43.27 82.25 17.10 90.70 38.65 59.08 64.05 84.34 76.58 67.65 67.18 59.72 76.50 57.28 72.59 4.45 96.92 49.75 23.09 73.86 49.50 18.68 -86.93 28.52 62.43 3.87 85.03 75.77 14.18 15.55 83.73 32.32 7.61 82.33 59.19 26.17 94.99 16.94 52.36 5.96 7.04 83.49 36.59 57.64 2.27 58.64 39.88 25.94 21.33 29.99 24.31 57.62 22.39 85.58 48.24 79.97 18.84 78.93 17.69 84.55 66.56 91.96 62.20 84.46 1.52 94.24 43.36 46.94 50.01 77.51 37.54 67.13 46.58 57.92 75.26 64.29 2.01 49.22 59.22 4.00 34.95 7.93 11.37 3.10 64.47 6.63 48.34 24.42 40.28 58.10 72.71 54.80 18.29 15.08 84.19 48.57 38.90 82.23 7.48 2.03 68.00 96.60 5.90 92.10 66.33 19.55 0.84 35.29 87.99 2.86 64.78 53.37 92.62 19.02 33.05 26.19 19.22 36.45 21.33 71.91 24.82 54.14 -70.22 0.35 26.50 67.40 10.13 74.93 86.79 51.71 85.91 27.44 17.60 61.77 28.32 72.05 88.41 23.96 68.47 21.59 21.00 59.85 88.52 24.71 87.67 91.92 94.22 22.01 31.52 37.06 21.12 42.95 11.53 23.54 89.09 9.57 33.84 69.52 97.55 23.85 81.39 3.32 92.14 9.02 72.07 63.50 30.36 10.54 46.42 72.38 83.83 13.91 2.97 38.81 63.68 70.66 87.91 10.11 81.05 71.73 62.13 65.60 80.03 48.81 12.72 86.13 18.43 46.39 58.37 98.46 24.65 37.41 77.87 24.09 48.91 42.19 32.24 12.22 90.78 44.17 34.81 91.78 40.38 73.29 77.38 97.67 82.09 8.23 6.67 5.17 9.89 28.75 49.01 70.57 40.98 24.94 35.38 60.44 84.65 81.85 77.35 48.55 -27.24 94.63 45.54 40.90 75.74 36.11 7.56 67.14 87.50 63.26 27.19 62.63 62.57 22.30 80.18 4.93 96.30 21.31 17.03 64.14 93.74 64.97 32.74 82.43 23.93 77.73 93.66 90.92 40.98 63.75 87.20 71.07 40.46 86.72 36.50 43.27 4.88 77.12 31.69 3.98 90.35 77.33 47.34 43.45 69.62 34.40 90.82 46.74 52.01 79.78 97.41 15.59 39.77 83.64 98.67 37.12 89.76 63.82 99.70 81.59 73.62 0.99 84.80 94.02 82.76 24.99 94.40 72.56 4.82 80.05 59.39 72.40 31.73 6.87 84.69 93.08 42.86 69.28 25.78 20.85 54.31 14.95 75.60 37.28 45.79 94.65 43.58 19.42 18.06 90.26 42.71 86.97 39.03 60.09 14.27 73.67 94.42 97.91 52.64 63.52 -15.11 70.09 32.46 39.18 57.55 23.83 41.61 23.45 20.40 70.33 25.40 5.54 62.90 26.46 98.24 55.90 51.21 1.25 85.15 26.40 29.55 53.40 45.91 9.75 38.30 3.58 52.72 93.49 90.41 0.97 19.09 94.21 48.35 64.77 57.59 36.72 47.78 37.09 24.41 14.54 64.87 48.08 76.35 40.46 73.15 69.05 83.52 56.92 68.05 87.56 11.13 99.94 77.98 28.09 0.07 41.83 29.51 26.90 24.64 12.72 92.63 51.21 7.78 37.72 17.61 43.05 41.57 31.67 82.79 1.14 78.11 2.42 25.20 46.56 8.25 70.09 5.70 49.36 94.96 83.62 23.66 53.44 70.05 28.15 45.64 94.16 33.88 56.45 95.60 38.52 56.94 35.88 67.50 69.52 27.61 98.11 32.77 80.73 26.94 97.63 -91.80 75.96 20.19 93.02 93.46 40.38 2.27 4.00 76.29 9.84 71.53 17.60 76.96 51.62 96.31 16.04 31.08 72.78 37.28 12.31 69.24 14.80 9.70 44.92 3.77 4.80 51.11 74.31 88.89 17.48 66.85 47.23 21.40 78.59 13.72 1.00 51.01 82.75 89.09 33.41 38.40 13.17 90.17 75.88 81.10 44.00 33.57 67.09 75.04 98.58 51.38 51.10 76.35 81.32 8.39 55.04 1.50 88.04 64.98 8.46 72.54 78.02 79.41 8.26 52.87 61.06 83.20 16.27 55.19 13.34 79.48 11.36 89.67 1.05 7.98 66.65 99.32 23.02 57.11 28.02 44.36 93.69 2.74 13.11 13.79 74.12 9.41 73.64 54.93 98.08 45.07 51.17 12.29 94.55 27.20 24.60 34.22 73.20 55.64 13.55 -76.17 41.95 11.25 19.84 2.61 74.22 59.33 19.13 81.54 52.40 68.12 68.69 81.92 16.54 71.26 40.13 52.42 31.71 30.51 56.76 42.80 38.52 92.52 55.89 70.66 33.77 44.98 40.74 99.62 68.04 60.90 55.81 11.92 29.04 88.30 93.10 23.25 74.02 63.36 23.64 81.48 0.57 76.15 33.69 23.69 95.22 98.84 22.19 87.65 53.64 8.24 28.85 36.04 82.56 41.92 12.15 51.22 40.56 47.32 80.50 91.53 57.32 66.27 56.91 68.64 0.84 59.50 82.72 44.31 93.91 44.98 10.61 49.02 50.98 67.46 35.06 49.67 31.24 49.42 2.08 27.44 35.23 87.55 87.26 2.04 24.18 96.38 54.46 69.98 95.66 17.20 84.29 49.09 50.31 95.09 1.31 14.33 74.39 67.74 99.72 -77.64 89.36 51.33 3.48 86.69 3.80 85.46 65.46 48.33 21.57 99.32 98.68 4.67 82.07 98.18 86.35 82.11 15.12 2.29 46.96 48.03 6.12 3.44 98.62 81.07 53.23 68.77 70.24 95.36 16.93 48.05 65.17 26.17 65.20 83.71 65.91 8.24 11.85 47.36 31.26 4.20 59.85 59.89 73.24 51.27 63.71 0.52 61.71 87.10 78.67 78.33 61.31 94.66 69.69 38.01 9.87 15.90 53.93 5.00 43.32 4.28 22.01 52.09 0.51 69.08 35.57 30.72 19.15 48.62 96.22 91.83 28.58 5.62 65.74 79.63 71.98 64.14 45.22 87.14 91.56 25.31 87.63 31.92 82.80 69.26 99.20 37.90 24.48 48.52 39.61 29.49 72.40 0.93 33.94 72.51 25.33 7.42 74.90 24.74 45.64 -89.61 21.15 71.90 94.80 39.51 65.90 35.83 91.85 33.55 63.41 64.84 24.46 93.34 81.22 95.12 60.97 55.07 31.41 77.49 20.35 11.23 22.18 17.53 17.91 72.71 0.49 65.46 8.87 0.80 11.64 88.23 77.13 52.65 42.97 82.41 44.57 98.79 39.62 10.35 19.40 32.31 47.09 45.64 0.01 72.50 0.34 29.70 75.49 76.08 18.06 54.44 10.96 54.81 96.34 51.93 59.06 17.20 50.24 61.64 91.21 70.05 42.23 42.81 90.44 2.70 80.94 85.98 68.18 92.79 13.94 87.94 51.01 91.76 36.00 60.75 22.54 29.75 84.51 20.07 69.71 87.35 53.50 79.01 54.74 23.22 97.88 77.01 7.51 2.12 74.71 57.16 63.47 37.51 14.80 29.54 37.27 17.89 42.17 57.71 35.84 -73.67 53.36 87.53 76.52 41.23 78.97 57.44 52.07 94.02 97.97 87.27 53.23 29.80 47.21 6.85 63.26 6.54 78.29 14.85 0.23 23.68 5.79 56.56 40.02 24.75 45.51 80.11 89.12 85.84 31.24 57.78 84.77 91.80 3.34 67.27 82.11 93.68 91.67 88.53 0.62 24.15 26.50 73.78 62.86 57.53 74.67 48.19 29.07 79.60 52.08 32.60 94.69 86.61 34.60 16.97 57.38 88.79 26.75 80.85 10.27 60.01 53.31 0.60 97.64 25.93 20.11 33.72 82.50 31.94 15.33 48.16 84.04 6.38 79.83 54.74 15.70 20.06 40.14 74.15 44.36 2.73 95.46 52.04 89.40 70.17 73.74 34.18 48.96 1.42 51.78 58.08 28.67 34.16 1.84 59.73 26.62 64.50 9.51 43.07 54.15 -85.49 72.99 36.21 23.99 17.04 44.88 71.36 46.12 52.75 21.01 43.49 20.88 75.78 18.53 20.21 4.70 54.37 90.70 13.95 66.76 26.07 37.48 63.58 3.35 55.71 24.02 5.31 12.76 9.45 18.21 4.38 64.63 22.46 7.14 34.17 54.41 70.15 12.43 74.37 41.45 48.95 84.04 58.13 26.44 51.96 91.09 58.69 64.32 50.96 71.75 15.23 4.88 75.39 66.24 56.41 19.85 12.15 79.09 96.38 34.58 63.42 37.35 4.88 27.01 4.11 2.23 46.81 31.05 26.53 83.05 1.17 22.13 46.96 82.89 76.93 75.40 72.49 71.70 65.06 61.65 14.75 20.88 32.79 86.31 79.86 71.19 80.30 81.04 20.07 75.68 31.19 46.01 93.10 46.39 8.91 44.19 26.59 58.71 17.95 43.18 -69.80 65.44 78.59 60.10 53.51 28.81 29.99 37.03 98.02 77.97 83.93 74.52 98.88 5.31 54.35 69.32 92.91 91.18 39.36 2.40 25.65 29.11 69.49 30.16 64.37 74.75 16.97 56.68 38.23 74.08 59.76 26.90 23.64 37.60 51.98 18.11 97.96 9.42 46.65 43.02 69.67 57.78 33.92 69.00 25.20 62.14 84.46 62.29 45.26 98.47 72.60 70.51 12.97 50.62 86.14 30.57 0.11 42.24 9.67 59.44 5.18 6.54 2.19 53.13 12.35 51.55 49.72 37.95 55.61 23.89 47.66 91.50 35.19 98.71 88.23 47.18 90.07 56.86 99.40 39.75 63.31 61.56 44.70 73.75 58.77 58.90 86.78 94.68 39.80 85.05 69.46 52.65 36.26 25.61 4.35 56.12 13.27 46.93 82.06 75.66 -37.02 69.37 77.88 88.01 24.76 87.14 26.74 30.94 58.61 34.92 12.01 38.98 69.99 22.27 23.86 37.03 77.28 0.45 20.72 86.19 45.77 74.53 44.61 89.97 76.80 7.25 2.58 40.48 44.36 64.90 60.83 41.66 91.19 65.86 96.16 41.64 30.28 83.58 37.20 93.23 82.26 2.97 15.92 68.83 80.08 70.61 95.00 4.09 24.21 13.03 70.88 18.66 86.62 60.15 38.94 79.11 0.29 92.50 23.48 78.36 49.22 91.39 5.99 83.13 23.13 73.20 17.95 3.17 9.39 78.62 37.98 72.82 33.30 33.53 33.60 48.15 48.43 30.89 2.11 0.93 31.43 94.58 12.37 83.78 76.42 86.61 12.12 98.77 95.13 87.05 22.54 75.69 35.73 59.67 44.31 17.15 80.63 58.84 96.71 87.68 -59.78 59.36 25.26 72.61 15.24 75.39 88.23 51.82 52.15 72.88 26.47 9.95 21.97 18.11 12.86 43.00 39.50 25.15 80.75 44.81 17.29 44.39 77.90 25.57 93.46 86.85 92.01 6.51 38.89 34.10 97.29 82.94 7.79 24.06 66.49 11.87 39.93 10.43 11.19 28.68 82.69 20.56 26.18 71.38 13.37 77.10 61.19 6.85 15.04 86.05 53.24 81.22 93.67 27.95 61.41 7.80 29.48 7.82 24.26 16.86 89.64 10.39 92.91 97.13 42.21 37.56 57.38 96.28 54.90 36.74 85.82 23.46 19.39 20.52 46.01 59.30 51.89 24.78 56.39 41.78 36.40 38.47 1.91 27.01 60.23 61.68 52.32 62.48 77.39 97.46 5.36 55.97 51.04 75.51 68.44 88.54 95.96 80.74 80.92 29.40 -45.25 58.77 50.61 8.48 51.71 21.75 80.60 39.95 41.16 90.68 34.29 71.14 96.13 29.88 77.73 95.18 9.19 67.72 57.72 15.11 94.01 1.18 63.79 44.99 98.32 5.41 99.80 21.35 71.80 90.46 71.14 73.50 20.84 41.24 29.79 8.15 49.44 90.63 7.87 76.19 95.40 86.66 75.59 21.88 88.48 27.83 46.97 46.36 13.96 93.25 73.05 12.69 14.43 2.12 90.58 90.33 97.14 14.02 32.08 41.85 52.24 67.65 75.57 78.06 90.82 17.39 31.07 65.43 59.58 75.98 40.33 65.09 26.25 62.03 28.03 64.13 34.95 10.99 69.53 98.77 31.10 35.15 66.65 53.36 42.61 35.91 52.32 9.64 66.84 45.17 83.17 33.09 24.21 88.08 10.92 53.80 13.60 49.03 35.97 70.95 -33.98 32.86 75.93 14.47 90.11 93.44 86.68 38.39 52.60 12.02 81.13 89.27 81.43 20.65 23.65 84.25 41.85 21.54 34.05 93.32 9.97 80.94 50.08 71.96 50.72 36.08 69.57 92.22 92.05 80.60 95.37 43.67 88.65 22.99 41.78 7.83 41.90 47.20 36.23 53.60 32.44 84.97 20.61 85.78 22.62 85.00 62.60 61.21 16.12 71.68 87.72 95.74 94.94 3.72 61.65 95.64 45.71 82.34 25.71 45.07 31.58 80.62 71.33 36.82 59.42 64.66 6.23 73.74 87.10 80.97 44.73 81.06 33.65 62.98 73.45 45.84 46.88 53.37 97.08 5.70 67.75 9.69 52.71 23.29 84.51 27.95 81.79 70.14 46.38 83.55 37.21 56.10 12.58 96.71 60.17 63.03 53.34 16.20 15.33 43.99 -40.27 88.43 7.12 35.72 19.46 81.64 93.99 74.51 97.90 82.96 64.49 79.71 80.28 99.38 24.69 45.01 89.14 14.47 3.38 30.19 98.67 46.83 79.15 67.42 46.16 85.89 71.31 25.65 58.46 14.30 74.41 66.58 63.75 54.41 16.76 10.47 34.10 47.12 59.24 93.51 13.92 29.58 82.36 15.01 86.23 17.24 5.02 66.14 60.77 42.28 50.58 50.84 2.63 28.43 69.22 31.48 4.69 32.71 30.10 78.26 4.72 22.75 81.27 93.21 30.77 86.32 34.57 2.67 34.03 43.01 77.64 79.50 1.17 50.96 55.52 91.28 55.10 21.04 55.07 16.30 53.56 17.05 93.56 67.87 88.54 96.20 16.32 86.97 58.27 61.06 63.48 34.09 46.86 3.93 39.04 9.33 34.13 61.10 13.94 85.72 -95.86 1.21 82.88 80.10 53.25 68.37 30.66 22.36 14.06 49.44 41.93 48.94 12.22 27.62 22.70 18.46 83.49 88.53 55.70 38.49 40.63 42.85 85.96 32.38 38.19 29.34 49.90 11.20 67.74 17.61 44.40 14.24 97.01 98.78 27.72 27.13 44.52 11.53 32.55 4.09 54.38 88.06 18.22 44.46 31.74 91.67 24.23 59.67 4.84 38.88 15.44 41.79 81.88 47.92 50.06 92.03 44.67 59.47 13.63 78.02 31.26 85.12 28.33 11.13 60.15 7.81 23.19 52.40 80.87 73.91 85.49 28.94 47.24 28.15 32.51 90.99 53.89 36.22 23.01 48.82 60.54 32.39 6.35 89.07 53.65 17.43 92.09 58.43 89.30 69.64 74.66 92.12 98.59 3.53 76.38 59.65 78.75 53.09 35.59 83.34 -69.32 43.80 31.55 39.51 35.19 80.32 68.82 75.64 97.78 65.56 4.07 81.39 2.85 58.09 80.53 29.12 87.90 16.51 91.89 14.61 69.54 17.54 62.46 71.09 49.57 2.78 29.43 63.68 54.46 88.89 60.18 53.09 54.88 20.44 12.46 73.98 19.03 39.70 15.50 49.68 75.81 17.07 85.32 8.60 88.90 26.86 15.43 64.07 28.22 43.75 65.56 93.23 64.46 82.43 21.82 6.93 98.91 38.17 67.10 53.07 12.74 71.82 34.71 58.41 3.73 96.03 11.51 37.06 63.50 35.74 70.63 42.97 38.48 14.19 41.90 87.47 27.85 18.68 36.08 31.49 83.17 95.29 61.43 78.03 76.13 15.51 38.99 93.61 82.60 64.28 7.68 54.02 32.68 59.07 56.45 41.91 24.56 24.25 31.46 58.06 -72.14 24.42 71.51 64.50 18.69 79.43 59.23 96.59 87.01 41.13 73.21 4.74 63.00 20.82 36.53 56.31 54.71 71.65 69.09 94.97 53.67 19.01 47.86 6.84 81.47 34.09 32.46 63.70 38.41 74.38 7.98 68.48 93.20 97.40 76.88 19.60 10.85 31.29 6.00 67.57 49.38 71.04 27.74 48.37 35.07 61.26 23.14 68.00 72.19 34.47 45.77 90.13 35.57 75.67 46.52 60.70 96.86 31.83 21.48 0.83 2.53 49.00 94.62 8.97 8.22 23.34 34.74 34.49 18.55 26.41 92.70 0.91 69.70 43.48 68.09 85.15 78.30 35.14 32.92 89.74 95.35 30.98 92.26 65.04 63.29 56.82 99.40 94.77 21.19 4.45 74.52 25.50 94.96 27.56 77.82 48.09 37.98 70.06 36.36 9.78 -6.90 92.44 94.77 53.71 51.68 32.36 19.84 21.44 61.12 25.62 55.65 66.04 20.71 39.59 17.83 88.77 27.69 71.85 3.33 40.91 61.20 77.16 87.25 31.03 83.22 2.55 98.41 59.93 77.63 71.95 19.82 20.44 53.72 80.82 95.79 99.61 84.82 32.12 93.73 68.41 97.10 36.20 95.77 98.95 61.23 92.93 50.44 37.99 33.05 76.67 2.01 7.39 37.33 29.99 14.15 32.82 68.58 48.94 89.94 25.44 49.41 91.42 64.84 99.40 13.94 0.65 16.40 2.84 72.86 62.99 82.75 21.30 93.43 45.73 93.17 38.49 76.86 25.21 77.99 58.20 13.23 43.22 79.18 47.69 21.63 90.09 26.99 73.63 8.26 35.05 12.22 98.25 71.48 34.59 46.72 16.51 44.93 84.29 53.04 78.41 -11.97 88.28 12.86 69.78 26.23 74.13 94.67 88.51 37.86 11.44 2.94 56.44 38.55 72.59 76.80 29.77 75.75 46.51 55.82 44.72 25.79 83.85 5.56 43.81 96.21 48.23 53.09 45.61 56.27 5.57 29.58 54.48 68.97 7.38 15.50 25.08 70.77 15.70 88.03 69.41 7.47 7.57 60.75 7.24 36.76 45.88 12.00 8.73 54.97 38.58 35.35 58.86 94.88 52.66 16.59 1.28 79.38 11.21 94.25 93.43 34.49 24.05 23.91 71.03 43.48 16.65 41.87 81.80 82.54 62.07 87.66 38.99 11.18 78.47 66.31 54.29 45.66 85.72 94.78 84.36 49.51 20.10 58.17 51.41 3.62 20.19 37.64 80.81 74.94 18.92 49.65 14.07 20.39 28.99 83.64 89.32 25.79 57.68 57.73 88.00 -4.21 43.84 38.94 71.78 74.10 40.30 91.65 2.82 76.59 57.89 32.80 76.35 81.78 6.79 37.93 61.74 34.51 71.82 44.86 65.27 41.06 53.79 25.09 49.88 42.48 53.93 77.34 63.84 21.63 41.83 93.71 76.96 10.94 51.94 21.24 42.27 13.69 26.41 99.63 12.88 23.09 89.99 62.47 35.42 42.98 95.99 75.92 67.60 14.22 70.34 53.11 66.92 13.42 32.38 67.07 16.35 6.42 72.06 47.29 80.58 27.31 96.48 14.21 10.89 63.36 15.25 33.34 42.02 10.79 58.37 62.40 56.93 96.83 70.39 40.21 74.88 34.75 10.01 78.84 38.74 87.01 87.13 12.95 95.51 64.02 72.20 81.67 33.66 78.76 36.33 42.03 5.42 40.88 31.26 70.56 38.51 27.45 51.11 84.98 82.46 -87.00 6.03 33.28 91.78 79.31 69.96 88.73 16.87 60.83 47.37 50.20 54.77 67.25 93.45 41.50 69.24 37.25 30.70 44.32 63.51 18.12 6.75 67.99 21.87 54.18 5.95 60.39 68.52 74.57 38.49 3.39 90.41 17.07 26.97 88.64 87.01 57.26 77.63 0.17 46.96 59.57 40.84 9.01 74.63 8.34 55.29 71.12 94.34 66.74 69.82 43.26 6.54 74.19 47.71 48.78 68.80 86.65 34.09 54.04 33.78 7.04 95.29 51.79 24.44 20.53 29.28 36.65 72.48 94.45 56.37 23.87 2.71 9.15 29.93 50.75 83.02 31.91 43.02 72.14 61.78 20.70 55.82 83.01 37.76 31.65 30.27 3.77 18.84 54.69 16.57 4.74 83.14 44.50 7.13 5.79 33.79 30.28 30.35 72.23 60.22 -39.10 69.36 6.33 28.51 59.52 25.45 72.74 47.37 31.19 59.22 1.26 6.51 43.22 39.72 24.54 68.46 92.78 97.68 46.25 22.57 18.82 72.57 18.65 34.73 88.71 53.40 99.48 9.03 81.11 48.56 64.29 36.68 8.00 4.29 51.02 67.94 32.76 34.02 83.45 56.37 19.77 16.45 31.99 85.80 32.00 28.96 88.99 17.55 58.21 30.93 78.93 65.04 15.92 85.96 33.49 71.53 35.13 72.27 10.70 54.00 83.02 64.88 60.08 83.70 27.89 27.83 62.73 78.12 49.73 70.56 8.60 17.58 72.98 26.23 50.73 63.06 15.17 27.46 98.78 75.17 64.29 22.37 28.65 34.69 23.99 75.81 79.22 34.80 53.46 70.58 37.90 96.35 17.92 3.60 80.08 22.92 17.84 14.97 68.23 4.19 -13.98 16.76 12.42 82.35 70.91 73.09 27.93 55.08 38.79 4.64 42.49 25.21 20.01 84.23 10.92 35.02 66.82 46.78 49.34 52.10 22.67 43.58 43.03 26.11 48.12 0.11 2.26 40.77 46.62 67.92 97.86 47.28 59.45 69.46 11.42 98.94 72.20 23.18 46.11 95.40 38.65 82.37 28.85 73.56 75.68 78.27 30.47 34.43 27.35 83.10 60.97 92.53 42.15 98.72 18.14 8.07 27.28 70.11 60.00 3.42 52.07 99.21 43.88 63.59 58.42 32.14 97.27 53.06 90.69 61.06 45.86 38.89 79.30 78.34 18.00 76.23 17.40 68.02 82.22 15.43 36.93 23.58 40.57 68.68 69.82 60.91 53.24 17.96 12.49 37.03 89.28 95.72 67.99 53.77 87.87 5.59 87.31 5.23 62.45 55.75 -4.79 45.04 42.34 98.08 45.07 98.90 96.26 55.08 95.45 13.95 56.81 55.23 38.87 48.82 47.42 51.84 27.09 12.16 22.50 64.68 71.39 25.89 21.04 26.79 26.41 50.75 56.16 44.37 23.02 35.88 33.78 72.17 22.97 16.65 32.93 2.73 8.17 1.86 96.33 43.46 53.77 77.36 49.99 2.62 38.63 53.35 30.47 89.32 28.81 77.86 31.02 32.84 70.64 31.26 46.70 36.78 62.99 43.01 75.98 40.18 52.89 32.09 38.63 46.65 63.26 73.83 61.05 80.68 49.02 63.25 63.93 47.99 53.72 8.25 6.43 48.86 29.30 97.60 82.38 81.35 4.14 88.29 62.69 72.29 28.40 27.50 20.80 36.10 91.99 11.55 4.97 54.79 15.66 5.05 51.96 58.11 22.43 21.18 45.61 34.24 -6.10 11.05 36.74 54.19 13.91 26.37 68.47 61.89 15.11 15.14 50.45 1.55 46.67 23.56 70.00 18.89 84.51 73.59 98.00 48.12 4.03 74.43 46.53 55.86 27.66 34.05 96.19 2.26 85.97 87.33 94.71 39.79 61.28 98.33 8.03 67.60 94.06 18.36 3.16 14.72 53.32 87.50 87.28 11.39 96.00 58.25 55.09 26.18 4.74 51.93 40.85 6.84 89.06 81.45 68.89 23.28 93.88 98.47 45.88 58.34 20.51 42.30 8.70 40.05 26.87 57.78 20.88 4.90 26.52 63.89 38.33 20.98 14.24 26.27 30.86 6.35 83.49 43.67 44.48 8.97 61.70 89.00 84.43 53.78 4.03 38.66 28.11 41.86 61.73 41.55 91.74 54.38 39.76 73.47 64.72 64.94 63.48 56.67 34.75 5.25 -37.35 79.46 70.67 43.31 51.24 55.43 12.38 26.21 27.28 81.04 34.46 74.83 67.90 39.38 66.36 34.89 62.17 28.31 79.45 88.74 24.88 50.68 63.43 44.22 95.67 63.42 48.16 96.45 73.69 0.85 7.59 64.07 19.58 98.62 36.38 64.55 59.97 1.82 7.84 66.24 8.18 78.79 93.53 84.99 64.01 58.08 77.17 55.66 88.82 64.35 30.01 32.44 53.97 80.59 53.23 83.17 44.93 77.50 69.48 98.00 84.15 15.27 84.46 96.61 24.76 96.89 73.55 55.74 32.86 69.79 22.54 64.48 13.47 40.32 11.54 85.87 31.06 81.51 68.75 80.47 70.58 12.94 70.88 46.99 52.57 77.23 9.39 51.60 21.87 84.28 32.36 23.39 77.74 82.50 72.13 8.80 89.88 57.22 23.65 17.11 -4.77 1.90 89.04 4.54 29.71 19.46 32.62 26.66 35.17 0.03 93.40 68.53 89.81 5.56 28.43 77.45 87.10 61.15 17.09 38.64 51.94 74.70 86.81 71.28 26.22 14.61 44.96 13.94 64.66 33.66 59.33 29.61 29.03 98.99 34.95 0.34 33.10 54.91 37.90 7.23 60.70 84.81 65.55 71.77 59.36 35.14 71.06 8.16 17.74 26.06 11.32 87.16 76.59 94.14 31.06 10.80 66.11 49.89 46.94 19.53 78.95 51.40 97.25 18.73 21.95 30.40 7.82 28.80 28.50 72.08 5.32 35.47 96.74 29.34 87.96 6.24 44.06 81.87 76.11 1.57 76.78 71.80 93.51 98.16 91.28 30.88 4.82 93.78 31.57 63.98 42.38 74.47 2.05 82.63 3.11 7.34 52.15 47.69 2.43 59.94 -80.95 3.79 15.51 92.92 38.36 39.68 41.97 56.75 54.90 48.55 32.72 82.23 28.31 49.32 61.21 98.37 81.90 13.68 42.76 29.08 62.51 36.99 6.44 82.76 61.61 24.05 52.65 17.67 19.62 26.45 4.01 52.02 31.01 93.76 91.28 90.75 2.73 67.44 73.79 72.03 84.11 33.60 8.50 5.56 34.77 94.68 13.00 84.00 41.23 62.73 21.76 73.38 85.09 91.68 71.45 29.11 31.04 17.47 43.26 82.24 66.55 29.21 39.14 30.51 99.88 60.23 36.21 38.57 95.76 52.14 51.45 64.98 50.00 16.83 33.72 39.59 29.79 92.46 21.32 89.06 80.28 45.49 87.61 79.73 3.02 23.99 24.58 51.96 51.70 83.44 31.38 54.43 6.32 19.46 65.11 64.02 8.45 43.74 11.32 45.17 -14.35 27.84 15.96 9.86 48.45 23.91 36.18 71.05 31.11 59.17 64.94 83.97 5.76 58.81 25.69 20.76 83.45 88.11 25.98 4.76 7.35 87.85 95.81 19.69 20.86 4.99 78.02 68.57 43.15 10.26 83.23 25.76 73.11 73.62 85.79 79.15 13.03 23.96 98.09 87.97 29.25 39.95 52.31 40.93 89.32 71.80 25.31 34.40 73.83 32.54 49.46 95.22 28.77 21.20 58.34 34.05 56.88 43.31 27.35 0.79 5.84 7.57 88.28 68.35 61.05 52.15 71.73 71.94 5.03 85.88 2.64 61.44 72.65 35.00 21.37 37.01 48.57 81.02 21.89 0.28 59.52 46.23 40.46 6.50 75.67 89.38 24.58 55.31 12.47 77.76 7.73 41.47 55.70 17.05 60.16 42.56 24.87 86.82 89.63 50.58 -86.87 81.36 38.75 2.16 97.21 50.60 68.28 58.08 42.24 30.15 86.46 59.35 93.72 92.53 38.16 48.88 65.58 22.80 79.35 66.15 39.37 46.57 85.55 55.55 99.07 95.08 31.36 43.62 19.71 12.90 43.68 88.05 69.26 3.20 57.67 99.30 43.34 89.44 9.05 0.89 20.84 76.34 59.02 49.28 32.48 70.89 18.29 14.66 28.32 1.55 98.43 60.81 10.18 60.33 68.83 11.17 5.16 68.94 8.11 30.63 60.25 51.63 66.71 48.29 27.76 72.85 0.68 24.17 74.84 56.37 59.79 5.63 72.36 9.64 69.02 26.88 58.96 34.19 82.04 74.13 33.86 72.40 71.91 98.97 52.94 15.65 21.12 5.19 46.69 47.18 61.27 90.30 15.45 14.05 25.85 19.59 98.66 59.48 82.49 91.14 -45.15 71.18 22.96 36.39 29.32 35.48 48.42 31.93 5.87 29.44 71.59 80.40 4.55 86.93 31.24 76.18 70.09 26.15 37.85 39.88 35.34 5.70 4.92 48.91 3.36 31.35 41.54 93.60 82.24 84.37 65.53 6.90 19.43 30.39 73.03 99.35 4.86 64.21 25.55 18.80 31.38 84.17 78.93 86.27 90.72 44.60 44.62 31.65 33.72 23.44 28.89 18.74 23.00 82.87 72.21 16.49 82.20 27.13 11.67 74.16 64.39 46.44 90.77 21.57 25.93 72.06 65.99 40.94 6.74 84.70 2.86 64.46 35.21 32.07 28.56 47.14 66.64 71.14 36.55 16.10 25.28 26.67 96.44 6.36 95.61 43.44 14.79 88.23 40.68 60.60 3.45 0.15 80.68 92.25 45.81 36.63 34.85 53.76 99.39 1.42 -85.47 68.16 6.71 16.05 75.40 16.16 93.09 69.63 48.37 74.38 0.48 11.15 7.76 21.91 78.45 42.03 93.20 61.87 87.85 99.66 17.35 78.58 76.18 67.88 94.43 51.33 62.01 29.36 66.19 89.87 39.85 32.86 22.35 0.61 43.64 70.91 43.04 57.91 90.18 47.87 86.39 84.41 77.04 64.83 80.94 73.38 44.04 66.47 15.26 41.17 91.96 33.32 53.46 61.45 82.58 33.02 97.76 40.95 27.43 27.51 45.51 46.73 14.58 9.47 19.37 70.65 18.59 54.34 21.21 9.38 69.68 57.71 51.76 99.41 13.53 84.08 28.12 4.09 28.68 30.59 94.94 21.31 32.94 54.28 81.05 26.03 1.33 36.79 68.71 78.70 80.13 49.03 5.25 13.72 56.64 94.23 59.48 69.57 5.68 84.57 -69.93 72.42 5.11 55.42 1.10 9.87 64.87 62.23 87.71 87.91 59.51 42.34 96.20 27.96 36.02 87.21 22.62 29.36 51.48 66.80 76.54 4.21 93.52 43.23 37.83 74.76 31.75 3.92 71.02 86.83 12.02 82.90 59.84 27.48 35.49 2.35 4.70 53.56 88.29 30.23 27.39 73.24 1.11 25.68 53.65 0.27 68.10 98.66 5.35 95.01 77.44 4.89 5.40 23.56 30.55 62.45 77.01 71.56 9.09 85.37 68.43 93.78 14.03 61.76 13.93 8.38 39.40 64.15 50.90 66.79 11.55 52.56 80.38 98.54 34.74 22.39 16.69 85.35 94.21 19.80 59.26 82.86 37.07 64.23 10.84 54.26 26.12 13.83 29.89 84.72 7.42 38.15 44.32 20.88 77.16 3.07 39.76 4.67 59.65 14.57 -18.79 86.55 29.41 66.54 70.91 49.51 35.81 90.58 45.02 21.69 89.77 51.78 50.81 13.40 65.88 62.65 90.26 62.90 6.01 7.27 93.16 24.06 31.72 61.99 83.62 51.38 53.87 86.80 42.15 45.16 79.83 30.61 96.34 7.26 62.35 21.50 15.34 98.26 91.10 81.53 41.92 36.92 96.79 15.93 43.37 20.43 33.82 93.09 85.24 96.80 49.98 49.07 72.20 86.36 56.38 1.24 38.73 67.97 48.69 29.43 43.96 84.23 74.44 2.68 87.65 79.45 70.93 25.14 96.08 81.50 83.82 21.81 82.02 12.66 16.55 79.47 88.93 32.72 77.99 29.57 57.07 64.65 15.43 85.73 3.09 98.77 80.55 35.51 84.18 47.53 85.37 66.09 89.88 92.27 27.34 39.37 3.04 86.24 13.69 57.23 -55.38 10.31 45.57 56.78 54.85 77.60 40.06 94.84 18.72 78.31 48.58 87.04 18.01 96.51 50.83 93.71 68.08 26.57 66.39 58.92 75.14 96.53 33.90 55.99 70.98 58.67 95.47 30.38 96.50 78.84 33.38 85.90 77.08 42.05 25.42 36.80 98.28 49.11 20.03 74.07 12.34 70.61 93.29 96.73 41.40 38.31 82.39 58.91 21.63 93.88 62.44 30.30 53.23 5.50 18.88 69.23 97.44 65.11 51.21 99.47 83.37 65.61 47.34 89.35 93.89 75.55 51.91 48.57 34.14 24.47 42.68 51.46 40.29 0.08 53.68 78.58 80.90 81.82 75.71 24.30 49.76 88.94 53.09 86.50 73.86 1.22 67.97 84.03 8.09 22.77 82.42 98.48 8.92 83.83 40.32 53.41 42.03 37.31 38.50 12.29 -54.55 89.40 50.54 14.43 86.30 0.08 36.96 18.89 62.82 99.46 48.47 49.52 46.77 19.52 44.73 48.26 99.34 54.06 76.30 41.73 99.66 10.51 79.47 92.92 97.31 18.98 82.18 58.41 11.89 75.99 14.81 23.94 29.54 41.52 32.91 7.85 79.25 72.07 43.02 61.80 50.04 14.11 34.51 64.94 81.84 97.04 2.27 1.56 22.04 60.33 14.04 89.71 52.72 91.45 8.15 42.23 8.77 79.53 54.95 26.59 48.52 22.60 29.92 64.65 89.84 0.93 14.90 46.28 68.64 38.27 56.79 52.43 94.83 37.85 53.12 1.37 14.21 80.09 34.75 33.35 5.59 71.68 74.39 39.95 71.22 19.59 16.27 58.80 94.70 70.44 95.58 47.85 42.63 39.00 51.51 87.56 89.08 48.58 39.63 38.95 -8.52 79.96 67.65 94.00 90.93 32.80 29.12 57.99 75.95 39.01 14.32 69.85 60.71 93.90 66.64 15.43 81.04 76.20 1.69 35.98 58.07 71.98 53.52 31.16 21.20 12.74 68.34 6.81 97.97 98.51 66.85 35.95 51.96 44.19 64.16 77.62 28.54 71.25 86.51 44.28 27.60 31.26 20.63 82.62 1.66 7.54 44.89 31.67 55.43 52.29 12.77 55.20 4.93 4.51 61.94 39.20 4.83 12.85 30.79 1.44 12.77 41.81 63.12 63.23 30.12 7.92 74.19 22.37 61.78 23.66 6.13 18.90 48.18 71.91 90.67 74.20 29.74 22.28 85.60 43.32 40.99 88.66 51.32 21.18 60.60 21.19 52.98 51.24 82.87 36.46 5.41 4.12 65.58 18.86 78.57 56.13 95.55 10.06 75.30 99.18 -57.73 52.63 2.41 90.20 51.17 25.05 65.59 61.03 32.75 15.17 63.17 89.78 2.19 8.17 47.61 60.75 97.55 56.74 98.68 42.54 6.97 19.89 22.78 46.36 2.70 68.18 56.49 89.99 92.90 10.70 35.96 81.05 48.67 13.01 76.49 28.36 99.67 77.99 61.16 68.50 42.59 41.73 65.39 73.01 68.17 2.52 48.61 22.45 27.88 92.89 56.26 20.97 60.20 35.26 82.83 54.51 95.02 92.54 64.61 32.95 72.31 82.16 8.02 74.96 89.96 25.96 45.01 58.97 97.73 66.60 30.64 22.30 0.01 64.18 54.86 82.99 79.61 25.63 7.25 4.14 75.62 92.00 40.38 30.90 34.73 81.50 1.10 31.32 88.72 47.38 37.69 54.24 99.79 87.94 43.63 83.56 52.27 39.50 39.19 24.02 -81.81 96.37 76.78 81.62 60.57 73.28 98.28 63.50 8.20 23.46 21.21 24.80 29.87 44.03 9.22 18.51 92.80 89.75 31.72 66.26 24.94 83.53 15.86 60.51 39.11 31.28 38.96 28.21 21.06 97.02 22.85 69.40 89.18 5.97 79.67 56.13 73.95 44.64 62.53 35.43 50.73 97.30 74.88 51.67 60.80 13.58 54.60 14.40 56.61 90.47 83.13 40.02 42.68 24.95 17.83 97.91 35.99 14.82 5.47 68.39 58.75 95.10 12.47 25.01 94.66 47.94 92.85 82.20 10.04 51.54 23.52 61.81 99.97 64.94 44.75 3.92 71.74 16.52 98.75 28.79 45.58 13.70 97.04 46.89 39.82 64.30 71.94 41.90 37.03 8.90 68.14 21.26 47.02 24.26 39.93 18.13 14.11 95.35 80.03 5.33 -27.80 14.90 45.41 32.26 0.53 94.80 24.60 18.73 97.14 8.60 7.96 95.32 41.68 58.71 87.36 89.84 61.84 39.37 4.59 75.59 23.04 0.34 20.90 72.31 33.74 38.00 48.53 61.73 95.87 47.90 82.91 7.69 70.01 87.58 53.04 7.13 26.68 68.34 55.40 75.25 12.07 73.05 62.41 3.77 31.97 30.70 14.38 44.02 31.27 86.32 63.00 43.88 39.08 91.82 54.56 21.17 39.79 90.02 10.90 89.94 43.22 68.50 63.38 16.49 30.86 62.03 35.55 43.40 82.46 80.16 47.44 76.74 48.47 14.22 57.13 94.65 55.24 88.63 23.07 33.19 90.04 34.21 66.91 98.89 10.70 56.02 69.57 49.93 42.34 48.26 26.64 65.06 97.09 17.53 14.80 94.69 20.28 35.13 47.50 96.12 -97.01 58.69 84.12 38.91 31.64 74.17 69.92 73.50 77.85 40.66 62.15 69.81 71.81 91.62 57.78 55.91 94.54 10.22 47.38 74.21 96.93 20.14 59.24 51.96 50.23 57.91 81.71 34.05 6.62 49.76 11.16 24.48 47.50 88.99 85.99 18.91 2.28 39.22 7.32 99.96 93.78 59.25 80.50 33.80 94.32 50.29 87.92 54.64 14.78 57.54 75.96 82.49 15.27 69.41 26.34 47.49 96.63 50.07 27.01 34.87 18.20 42.45 3.56 90.99 42.34 33.41 11.50 84.16 83.63 54.96 45.38 50.54 62.08 13.32 52.42 88.25 67.40 54.92 43.81 88.24 66.77 20.15 15.06 16.53 61.01 61.02 22.36 40.52 65.64 20.34 11.53 46.58 78.53 75.54 87.28 48.89 92.79 68.16 31.23 59.13 -39.12 38.26 82.25 1.80 37.01 84.58 26.44 12.35 81.13 97.70 51.01 28.28 54.22 33.64 41.69 51.69 75.01 63.00 27.10 48.62 93.19 74.94 87.88 18.96 20.67 46.76 21.54 85.68 94.54 23.00 78.74 55.27 27.74 45.97 0.67 89.06 20.45 86.58 5.18 72.32 41.09 38.01 39.57 93.19 44.26 19.91 59.65 48.93 57.54 57.94 68.45 4.07 21.83 0.95 7.00 30.86 80.29 63.85 74.75 41.12 15.30 34.93 31.73 80.61 28.33 67.47 35.45 11.49 73.44 34.06 75.04 27.16 16.87 78.04 5.89 69.60 8.33 62.85 5.30 18.45 86.44 65.82 23.69 40.01 74.51 13.70 90.16 97.07 94.20 48.94 57.65 33.05 38.10 51.16 66.06 45.42 64.04 43.46 29.12 73.80 -19.09 26.02 49.30 81.47 16.62 65.16 88.45 66.41 78.51 47.73 45.93 63.11 54.63 62.52 47.85 60.18 80.95 93.66 72.15 68.40 90.81 15.36 60.30 66.00 60.98 23.21 0.65 0.83 44.85 3.01 1.25 76.42 5.12 25.37 96.46 45.22 46.33 64.79 68.63 75.29 54.16 97.93 92.56 44.26 94.68 38.33 28.04 41.72 33.47 12.45 2.35 53.21 11.63 49.19 43.50 37.82 40.77 57.55 13.03 27.60 59.28 66.31 8.15 10.22 36.70 42.70 96.82 15.97 29.48 28.38 83.85 2.28 7.37 43.76 81.18 28.32 89.73 8.39 92.16 56.47 60.82 29.24 83.42 40.26 92.93 61.04 49.84 57.05 13.37 16.31 80.30 98.45 71.13 82.07 51.44 13.15 39.69 52.39 14.78 40.74 -77.45 4.06 92.55 17.61 37.92 43.11 93.33 78.78 22.89 76.72 33.09 77.99 9.51 55.96 83.57 76.87 48.27 94.77 63.86 10.83 98.43 54.05 44.26 88.03 8.46 3.08 76.78 39.46 84.43 6.68 23.27 73.53 4.87 72.68 22.20 15.22 65.90 69.50 39.78 22.62 95.41 67.00 28.70 88.98 88.91 85.71 14.65 23.12 27.92 90.57 14.09 97.92 21.68 92.13 26.88 31.21 47.89 29.42 24.27 83.15 87.63 77.86 87.31 17.58 41.29 21.30 56.80 33.49 52.91 22.72 50.91 8.75 2.90 25.74 94.31 55.81 15.02 89.52 16.91 42.54 57.69 42.93 96.69 39.57 94.85 54.29 44.11 80.83 11.24 48.05 53.40 71.50 36.04 1.80 74.74 28.55 11.52 99.63 20.71 50.26 -22.65 57.73 93.35 11.97 15.62 0.67 54.25 77.62 12.63 14.55 37.25 91.12 91.54 84.87 17.62 89.05 18.55 14.06 9.57 27.65 49.36 5.73 40.68 94.56 9.12 85.31 59.16 20.36 53.99 60.12 57.33 18.66 67.25 81.73 84.84 23.42 46.02 64.35 54.37 51.59 66.27 49.03 49.97 82.11 30.76 71.33 63.25 17.10 50.52 54.68 57.77 47.95 32.97 11.49 76.91 84.84 74.17 92.55 54.14 66.17 91.99 33.39 73.97 9.32 42.52 22.86 65.74 56.97 72.04 85.43 33.67 87.50 95.81 39.91 31.01 77.01 48.67 91.17 41.26 46.99 31.36 72.12 59.42 81.19 6.74 49.95 36.40 99.57 63.54 12.14 77.58 98.61 98.62 68.81 0.03 19.63 45.37 28.24 39.18 2.65 -6.98 11.75 26.59 64.67 92.48 94.70 5.89 17.39 32.55 55.93 23.78 13.08 99.18 18.98 9.72 72.01 34.95 91.27 53.85 14.26 13.09 41.87 12.23 43.53 42.21 44.45 63.09 29.00 22.65 25.94 54.85 26.56 51.73 16.66 12.90 38.07 82.48 90.62 48.01 52.56 8.75 95.00 82.54 96.72 56.97 61.82 75.91 0.49 95.40 56.39 22.62 78.32 47.52 58.62 29.83 46.49 13.19 55.52 63.19 47.50 26.81 22.84 32.17 64.17 83.57 71.88 46.27 29.83 80.57 79.76 33.91 24.47 65.97 0.55 84.06 47.93 49.64 15.51 33.89 30.46 28.53 37.76 87.66 20.75 66.13 19.48 40.48 71.41 95.94 15.47 70.44 15.48 72.17 67.58 85.16 1.13 36.03 95.15 66.03 71.39 -38.60 26.15 12.25 87.96 15.30 66.48 10.44 96.91 56.73 55.33 91.61 84.85 24.22 16.74 59.23 1.39 14.73 86.72 41.67 47.19 28.02 79.47 69.41 68.66 71.82 42.90 35.45 77.32 64.54 5.63 63.39 33.53 21.19 69.88 24.06 23.08 98.33 32.09 92.55 84.97 18.83 29.80 75.94 96.67 94.28 9.82 53.31 65.09 99.73 87.72 2.10 48.40 52.12 8.15 94.24 26.07 73.13 81.09 32.44 11.15 66.33 86.07 17.16 28.90 58.33 34.26 79.11 72.40 74.77 34.55 68.52 31.41 28.12 91.39 2.23 83.94 45.40 11.47 42.32 51.36 63.71 36.65 96.06 57.09 44.99 58.70 77.89 4.06 49.86 7.78 59.82 11.01 41.28 25.25 78.73 3.49 15.73 87.42 93.47 12.64 -62.76 89.16 72.48 70.15 72.01 86.32 18.45 26.44 32.53 23.21 36.79 13.96 41.06 55.01 62.86 66.35 11.91 60.03 10.55 70.83 68.27 94.61 59.88 33.44 0.31 72.76 93.05 67.68 23.91 91.43 66.44 82.24 57.96 42.71 51.06 56.77 81.97 70.86 21.71 35.76 69.10 88.17 95.16 75.28 1.47 34.26 45.79 48.68 75.77 47.97 28.11 97.23 31.59 53.78 49.10 27.60 54.07 83.14 29.56 28.43 28.91 2.65 52.85 71.22 76.14 36.36 45.35 57.45 99.15 41.58 17.81 65.42 9.10 41.09 88.62 34.70 96.89 82.50 20.54 31.03 74.27 48.25 0.07 5.48 77.88 29.52 58.57 61.90 87.58 70.79 1.54 87.05 97.72 8.88 42.78 3.22 82.41 31.69 65.30 36.74 -50.03 17.93 36.15 58.07 94.84 36.82 98.99 31.18 5.93 13.18 65.33 97.12 77.40 37.34 59.32 28.50 39.62 21.50 68.08 86.20 20.13 48.39 18.38 20.69 4.08 16.40 33.41 4.14 50.69 77.73 40.36 86.13 72.72 96.71 35.47 9.38 9.34 54.63 76.96 32.16 93.89 56.72 70.60 72.55 7.44 18.68 40.21 24.97 16.30 24.03 93.04 67.46 32.29 28.91 57.09 3.42 96.81 84.44 38.35 97.33 67.44 62.53 95.95 0.75 46.77 36.26 55.84 33.94 75.10 42.86 35.44 52.86 5.72 96.15 5.60 69.71 80.25 61.11 45.72 11.74 18.42 56.81 48.51 96.96 36.63 12.66 10.07 79.62 99.12 25.12 51.74 60.51 82.75 91.51 99.35 10.65 87.68 41.67 69.12 41.97 -52.85 2.74 76.63 95.15 8.51 24.99 13.88 49.64 3.80 32.99 56.08 15.50 79.61 85.30 29.77 15.86 95.77 96.76 25.24 47.20 62.51 82.48 27.80 44.66 94.91 8.89 6.99 84.62 90.23 37.81 32.36 72.13 24.31 57.86 25.93 38.24 79.01 76.69 31.03 5.53 96.63 13.70 54.42 72.77 46.38 18.73 20.72 38.26 50.88 4.40 1.77 84.24 26.69 86.68 74.26 69.53 27.40 94.18 15.11 43.34 46.56 22.98 25.69 52.16 5.76 16.57 54.19 84.69 17.50 54.63 24.01 28.31 72.65 64.56 5.50 42.07 18.63 70.41 60.89 31.14 68.18 90.37 99.12 80.74 66.52 12.22 37.80 60.64 10.80 95.43 38.41 4.05 36.87 89.78 39.06 88.45 13.54 45.34 29.06 30.13 -80.68 64.49 56.83 42.20 63.79 78.27 97.94 27.94 18.88 82.77 58.10 57.76 4.90 40.25 3.92 97.77 43.61 99.42 88.14 40.08 37.19 80.65 11.90 20.52 29.45 40.78 66.04 98.71 48.02 54.40 83.03 81.87 68.60 55.14 9.39 91.82 79.21 6.17 25.62 15.08 44.12 92.48 97.41 94.09 97.39 72.79 42.32 62.86 34.54 26.64 89.90 34.64 78.66 86.41 8.72 2.73 59.02 81.78 35.42 19.19 83.55 66.80 12.93 87.21 8.63 93.17 73.06 23.16 28.35 8.11 27.66 19.54 43.12 72.86 97.31 58.94 55.34 53.52 82.83 17.54 29.10 13.24 7.53 96.25 36.30 69.77 17.16 75.46 51.37 12.96 76.28 17.95 44.74 0.56 79.62 59.64 91.72 42.07 48.51 69.84 -36.19 52.76 70.47 16.70 15.26 48.04 13.62 54.61 56.82 59.97 38.43 37.20 14.21 59.82 74.82 32.72 78.78 7.32 11.62 91.54 53.44 32.06 3.67 94.72 56.58 2.51 34.37 89.30 92.87 47.89 2.93 46.26 15.49 44.92 34.49 77.76 56.05 51.97 56.27 39.35 6.17 28.42 66.61 7.62 23.63 29.45 9.20 91.86 81.91 26.88 39.06 96.68 51.14 7.03 74.53 89.48 85.50 46.91 21.21 84.35 66.04 44.33 18.75 10.46 69.73 82.55 58.36 56.68 12.02 84.25 82.17 29.34 16.60 13.81 37.12 71.92 88.86 27.27 45.24 65.29 45.68 86.34 10.36 14.28 61.27 74.19 68.79 33.83 76.07 34.01 56.66 54.22 18.17 21.50 47.01 39.85 68.21 57.93 90.93 45.46 -3.57 10.14 10.10 9.23 49.29 25.51 83.20 69.06 39.65 29.35 76.78 33.66 62.96 54.26 36.09 74.45 70.43 64.94 64.57 52.52 35.44 33.11 88.32 95.11 91.21 84.92 1.14 35.45 65.65 33.83 69.94 86.11 8.94 12.17 84.03 28.21 92.99 76.70 51.70 64.51 30.40 32.05 74.21 35.26 46.81 64.34 94.74 50.20 50.29 79.58 69.24 82.97 71.44 38.06 72.69 51.73 67.99 98.64 62.48 68.98 9.74 90.96 99.45 97.10 27.68 14.14 96.90 79.86 83.43 21.45 54.07 42.60 46.17 91.36 43.08 30.05 36.48 85.76 99.27 78.77 14.45 72.53 82.56 30.41 42.39 50.20 57.05 2.83 22.47 60.65 8.74 6.23 70.00 83.95 14.98 88.65 5.52 47.48 2.65 31.69 -77.13 15.79 30.91 18.70 43.18 73.00 0.68 14.53 62.30 9.41 14.03 19.74 63.52 87.07 31.51 10.37 18.41 4.23 12.14 3.88 23.91 3.91 4.14 1.29 0.14 83.91 30.58 21.54 50.66 51.69 58.18 49.12 23.16 49.18 95.57 59.51 29.49 79.19 66.90 40.55 32.27 5.49 4.35 86.02 98.24 65.72 63.73 18.93 24.25 31.80 0.60 48.34 32.98 87.44 38.18 61.84 57.80 88.49 40.80 73.77 61.96 99.55 2.44 4.12 10.45 22.97 56.40 14.72 44.19 4.28 94.31 79.59 13.44 59.16 99.84 47.14 63.22 64.66 45.67 9.67 60.29 64.53 74.95 53.97 37.89 34.89 53.67 98.98 84.06 20.75 91.12 25.86 71.56 53.82 35.45 72.34 31.47 15.95 70.92 24.62 -31.21 41.26 88.29 25.46 17.16 43.82 79.68 18.58 30.53 3.88 10.73 53.01 97.40 59.02 55.58 29.34 28.23 30.20 75.09 2.53 92.57 37.06 88.78 81.45 12.36 82.70 56.98 56.60 14.18 93.51 27.79 83.06 64.97 80.26 85.32 98.32 87.78 66.66 9.71 39.30 77.85 6.14 63.59 45.47 44.45 91.12 98.76 60.57 6.58 42.74 11.29 33.82 39.24 7.01 69.75 21.81 71.69 45.56 47.22 7.44 97.19 47.90 7.29 34.50 65.68 57.52 35.86 13.16 14.19 45.80 44.09 28.08 97.11 65.78 77.89 64.39 50.21 54.54 78.75 86.52 30.03 60.31 93.94 82.16 71.16 36.59 40.77 78.20 65.75 10.63 90.80 6.53 1.19 88.45 16.45 15.92 51.25 47.42 94.40 63.41 -35.19 5.16 11.74 81.85 21.13 94.40 17.17 35.93 90.72 2.18 73.28 25.20 15.66 89.75 77.60 94.86 51.53 16.13 4.20 24.64 46.17 40.86 60.13 49.28 45.78 18.73 32.84 77.97 65.25 81.17 51.54 68.53 99.86 42.49 77.75 82.86 68.40 42.67 60.62 10.72 95.95 25.65 4.15 45.47 48.32 11.79 14.36 92.49 34.38 16.89 19.05 26.04 21.66 36.77 46.88 34.71 40.31 42.72 27.02 9.43 96.68 93.15 53.95 45.38 92.10 1.51 25.57 55.74 10.48 42.13 82.61 32.35 70.41 58.71 65.98 0.70 27.65 4.51 33.40 42.63 47.29 77.35 12.09 23.73 59.31 35.87 48.34 57.28 18.17 88.17 2.19 46.07 89.74 19.88 27.66 54.27 31.52 64.53 5.97 15.08 -81.46 19.98 58.92 98.27 17.69 20.99 12.39 54.99 82.22 44.97 22.08 72.70 91.97 33.60 38.95 15.48 30.95 54.18 40.30 31.28 80.59 40.26 50.42 69.47 87.37 96.60 80.60 71.16 35.01 0.13 26.38 41.98 29.52 7.52 79.07 83.68 47.49 87.29 24.59 30.67 94.78 15.99 85.32 37.46 58.48 23.59 28.51 18.92 61.75 71.32 65.17 96.44 84.36 5.68 78.61 94.22 45.30 70.12 86.62 37.93 79.92 94.04 97.68 67.13 76.10 4.02 85.67 97.67 48.89 72.78 93.98 60.05 83.53 53.27 57.47 18.41 83.83 87.97 16.33 34.17 13.42 83.84 97.05 12.14 76.59 7.50 74.78 8.20 11.82 9.84 93.87 6.12 24.50 42.30 48.26 42.96 26.18 57.70 97.11 54.25 -59.26 5.50 31.99 93.15 56.28 19.80 3.29 65.59 48.63 82.34 60.52 72.80 5.37 80.49 91.82 56.17 24.88 32.68 16.27 44.71 22.68 61.83 94.06 50.32 46.42 92.55 53.17 46.67 44.85 18.50 11.95 50.95 17.46 46.67 4.39 78.13 2.49 26.65 55.64 99.93 34.03 16.70 82.39 32.68 77.58 95.81 34.31 3.81 55.25 7.91 29.34 33.75 73.56 40.38 29.82 34.92 40.91 36.10 44.63 96.76 96.93 73.43 64.64 65.76 37.15 91.53 32.69 21.93 34.60 60.24 28.86 92.12 65.10 90.97 90.70 13.41 70.36 26.99 88.71 80.82 52.76 87.39 40.26 15.19 70.29 60.37 76.98 92.07 76.62 83.96 91.00 71.52 52.76 4.45 0.64 61.73 5.81 45.36 38.42 29.26 -99.36 29.69 21.99 77.38 76.94 41.85 71.05 30.86 79.20 80.77 54.48 4.61 15.00 60.73 61.12 63.50 2.61 72.80 31.52 39.33 10.64 91.14 28.94 65.61 9.55 16.51 41.17 99.52 65.82 54.17 81.30 77.16 14.09 9.18 82.56 8.62 64.62 56.16 68.38 2.66 87.74 64.03 56.01 67.61 65.01 87.03 89.36 52.19 42.56 25.58 27.52 85.87 85.24 35.36 84.61 46.36 82.86 73.08 20.53 88.04 23.95 98.01 39.22 88.15 7.84 79.41 99.96 56.87 62.68 8.40 18.12 32.01 85.02 50.19 79.67 56.78 35.83 46.65 13.25 23.81 10.09 9.19 16.49 60.99 21.98 4.43 26.43 1.03 70.82 89.70 10.33 77.70 9.95 21.68 66.20 16.88 70.62 51.32 55.26 15.73 -10.40 41.62 0.14 8.21 40.75 51.35 63.36 15.20 59.28 60.53 17.46 6.55 77.47 31.10 84.92 36.84 27.82 55.80 12.34 44.44 68.20 55.48 43.73 97.39 65.01 58.71 3.93 82.74 48.26 57.48 63.11 73.55 23.17 19.99 48.49 48.74 9.75 76.44 33.79 37.74 23.21 43.22 2.86 80.05 58.94 12.02 87.87 93.71 38.07 65.11 99.69 7.95 70.65 66.41 13.63 69.93 55.39 72.12 86.29 74.71 66.13 40.26 89.61 22.87 83.62 21.06 8.89 77.93 30.00 96.94 68.83 3.94 8.65 99.78 76.47 59.04 37.88 53.68 3.51 32.67 88.84 58.49 65.00 15.53 55.26 72.09 54.16 88.26 67.74 99.39 46.81 72.28 62.29 36.53 55.43 81.63 45.71 42.32 54.84 65.79 -18.64 91.77 72.86 24.34 66.98 41.93 67.35 46.13 21.19 30.94 59.07 94.02 99.20 55.85 3.78 63.50 66.89 18.55 31.65 32.42 91.30 29.36 4.52 5.43 36.02 15.90 7.95 56.97 83.06 75.04 41.31 70.51 6.34 61.07 93.51 68.35 96.52 39.38 12.13 44.15 56.51 42.42 75.22 48.83 61.11 32.74 22.29 37.50 88.83 27.54 29.69 30.44 55.80 48.41 38.76 82.36 16.75 6.01 47.81 81.00 67.41 29.41 94.97 28.08 34.73 23.34 67.06 56.00 20.00 43.00 90.90 99.36 86.35 13.30 60.37 31.97 60.38 64.37 20.68 8.64 47.49 78.63 51.88 46.70 10.60 81.79 44.65 82.32 1.98 89.81 76.40 37.42 31.89 48.43 60.37 32.63 10.22 17.19 48.22 21.43 -99.87 90.04 99.41 18.86 25.66 38.26 34.50 1.70 91.10 70.73 27.92 81.15 34.75 25.18 19.98 86.60 86.83 74.44 32.55 45.27 66.91 26.70 88.51 76.33 98.32 98.05 21.93 51.04 95.14 15.45 84.18 55.09 66.70 48.68 4.03 79.41 56.77 77.83 11.58 13.70 76.35 33.08 41.58 53.79 31.53 30.69 37.55 34.79 53.30 96.60 6.37 67.38 8.96 81.78 91.13 98.13 82.37 52.77 37.13 80.88 60.89 52.72 96.02 54.31 85.41 79.68 40.71 35.44 57.37 54.71 0.85 95.02 52.56 11.21 31.03 30.47 51.57 81.81 49.34 81.14 17.11 26.29 71.54 58.03 86.35 23.34 42.15 29.48 72.63 97.89 34.08 38.70 72.43 51.66 57.16 52.02 72.95 6.42 72.15 82.05 -73.63 22.06 10.01 60.34 90.23 24.44 0.80 96.21 67.25 20.65 70.58 28.15 90.10 1.40 76.78 61.50 7.43 66.75 16.85 58.80 82.25 57.46 46.96 79.88 16.80 53.33 22.00 42.06 64.36 77.82 78.35 25.80 98.99 65.86 8.71 97.07 25.99 78.41 77.84 61.81 31.94 97.61 81.58 6.45 50.53 45.67 62.05 69.09 71.20 41.04 52.20 61.72 95.18 37.96 27.20 5.57 31.39 43.24 1.59 63.43 70.42 25.65 1.37 88.34 96.03 55.58 97.30 51.28 48.54 49.02 22.54 34.00 64.49 8.78 50.39 22.98 6.90 18.47 71.02 58.64 19.30 10.17 90.58 92.88 67.03 94.74 44.57 9.86 94.62 33.97 99.86 61.85 87.26 86.35 72.99 19.38 73.18 78.55 33.34 62.28 -41.51 91.74 75.90 71.97 22.65 71.45 55.34 32.35 79.71 61.49 95.67 3.24 54.05 39.33 56.53 57.63 85.03 17.91 20.62 98.73 96.96 95.96 30.84 37.01 99.72 35.20 95.52 31.06 73.93 82.01 77.58 8.62 20.98 36.57 91.20 2.40 99.62 30.46 69.78 22.23 34.52 65.93 77.58 88.25 11.39 81.70 46.10 24.20 16.68 27.42 86.94 2.68 90.63 70.53 74.90 89.74 74.22 61.96 12.88 47.92 12.40 24.44 91.89 6.93 74.29 39.40 50.18 67.83 76.58 9.16 67.97 96.33 59.65 25.23 25.19 56.21 28.59 51.68 79.69 89.34 4.60 81.24 19.76 40.75 73.76 33.99 32.72 54.55 77.21 32.75 40.43 90.51 70.23 82.88 70.34 30.94 58.34 53.19 49.38 36.29 -10.15 26.67 8.91 22.73 14.15 19.16 71.58 56.95 18.50 18.96 3.77 85.05 93.13 57.52 74.24 29.79 68.34 52.38 0.51 92.79 48.35 18.05 32.38 70.32 74.78 39.39 15.53 96.56 82.89 44.79 35.74 1.36 55.02 20.43 78.10 20.12 39.50 68.21 18.60 34.90 49.70 24.35 3.57 62.30 97.70 7.85 64.10 12.86 41.73 26.70 94.23 16.45 52.43 96.65 86.20 98.46 57.47 64.75 76.27 16.99 8.08 43.27 78.38 41.38 13.57 17.37 53.86 38.28 4.76 67.08 32.88 29.96 12.62 92.71 72.41 1.86 3.35 11.66 70.36 54.27 57.57 47.23 90.67 1.47 76.05 30.16 95.48 62.57 75.78 79.30 32.67 56.37 75.28 83.48 66.84 82.95 28.47 56.56 87.16 42.20 -69.35 96.54 72.77 63.14 18.47 53.58 93.84 16.14 19.43 60.82 5.18 3.91 57.89 26.80 67.69 19.67 80.76 36.18 26.84 16.79 32.69 23.96 47.05 38.34 80.43 85.40 21.73 66.34 91.93 64.21 22.43 74.00 0.74 11.47 75.41 77.34 60.22 82.24 22.95 61.60 77.10 54.03 81.42 42.90 25.71 19.82 48.50 61.50 48.56 79.09 28.81 36.80 33.40 71.39 55.45 56.30 10.04 19.44 54.19 38.46 48.47 62.40 48.90 74.32 22.14 79.82 57.16 10.67 18.22 40.34 55.96 85.49 3.93 78.58 71.06 68.83 68.01 65.90 57.58 30.96 22.65 97.85 23.86 28.31 39.63 57.98 85.49 87.86 86.87 79.33 68.65 69.32 42.42 76.62 55.88 67.48 18.63 49.59 63.86 84.37 -29.27 54.50 46.94 33.47 97.35 41.60 51.18 88.66 52.17 58.10 64.10 68.93 57.51 84.96 30.11 26.18 20.15 46.51 4.94 60.37 41.57 53.97 32.61 38.53 75.59 18.74 2.30 69.22 87.26 95.01 1.45 46.60 26.88 28.93 38.61 69.68 46.45 84.57 64.63 63.79 98.54 79.25 65.21 70.54 27.54 9.43 57.37 21.71 14.29 99.60 2.42 34.33 0.67 93.13 17.58 76.22 88.83 3.47 25.41 9.28 20.39 89.96 9.93 39.28 70.79 77.22 48.99 38.64 53.17 92.38 97.58 91.21 77.91 14.39 21.10 36.55 61.23 57.73 14.90 17.16 57.78 86.86 99.71 10.69 89.65 14.30 94.30 98.42 85.28 68.87 19.86 12.85 64.09 25.65 78.89 73.44 49.61 53.64 54.73 78.46 -77.33 69.28 28.70 27.28 60.25 42.55 37.22 98.03 90.74 85.27 72.30 41.08 59.17 84.12 89.31 29.98 24.94 77.27 54.98 27.29 55.16 73.06 22.15 60.42 73.26 58.28 62.49 5.20 96.77 16.72 91.92 23.91 27.07 6.88 3.44 59.63 0.54 84.90 56.96 35.65 79.71 40.06 16.39 30.09 27.45 64.42 40.05 64.35 9.22 14.20 53.89 58.22 80.79 26.09 60.93 57.84 73.59 63.08 91.45 42.92 92.91 48.90 30.02 17.01 46.84 97.44 17.80 83.19 6.62 97.30 85.50 50.56 46.16 47.81 35.97 49.59 48.95 11.13 61.49 23.63 34.59 11.99 17.12 41.35 38.14 67.99 43.83 92.72 6.56 72.25 21.29 6.97 53.65 88.27 91.99 4.30 34.41 33.83 92.47 88.61 -92.94 89.89 36.15 36.84 80.80 93.93 57.50 28.54 31.06 62.55 28.70 78.89 13.66 94.20 38.08 41.83 29.96 10.72 8.81 86.88 44.15 35.87 30.02 32.31 32.51 41.72 96.88 2.95 69.26 54.74 96.82 59.64 58.09 99.27 48.21 63.48 4.65 68.84 69.67 13.27 7.34 71.78 79.13 88.95 50.30 95.91 57.41 51.57 82.89 17.80 12.03 66.32 12.81 96.44 37.47 40.35 3.80 3.32 40.79 69.78 39.74 65.61 77.25 28.08 24.70 17.10 88.54 71.47 11.08 14.79 24.36 26.63 50.65 43.27 14.58 83.91 98.06 44.05 59.05 11.63 70.04 99.66 80.26 85.41 59.13 41.35 75.40 73.09 18.15 61.86 3.53 21.05 95.44 17.28 38.88 73.36 95.27 74.18 70.61 53.14 -70.08 94.07 88.87 35.75 32.48 1.50 61.29 94.76 93.99 40.40 6.55 54.99 6.17 55.28 13.15 24.78 39.65 0.36 92.99 49.01 71.00 28.95 77.19 24.56 45.16 46.45 54.01 69.50 26.47 75.59 28.02 44.26 65.17 14.18 63.74 31.63 68.54 86.91 34.23 19.28 76.81 0.76 18.98 60.07 29.80 91.44 95.44 46.62 70.73 66.18 74.19 4.00 87.41 35.77 35.38 51.81 40.69 20.80 17.82 39.29 18.28 80.15 52.56 78.74 92.41 56.07 21.26 48.43 65.13 38.17 22.88 73.44 96.91 49.35 63.61 15.04 19.74 0.71 55.05 83.38 18.48 13.75 44.97 47.08 3.35 78.13 97.25 58.39 31.82 72.69 12.85 22.01 0.34 88.47 86.94 22.67 6.84 92.14 42.08 19.51 -35.84 67.32 94.91 87.50 22.40 33.94 59.69 89.96 12.55 72.25 71.63 24.20 14.79 78.88 11.19 29.56 94.21 66.26 15.21 79.83 97.19 12.69 23.01 39.08 90.36 35.89 43.65 50.74 9.45 66.49 5.04 26.00 41.83 49.58 49.66 3.08 36.20 56.63 69.83 11.03 39.22 5.04 51.06 18.36 24.40 11.93 36.26 85.72 87.42 11.30 17.37 65.14 72.44 74.27 19.10 14.62 44.89 60.31 40.16 44.45 86.37 3.04 32.92 76.32 56.51 34.93 0.33 3.87 1.69 94.91 93.34 94.77 59.20 84.56 92.45 55.67 17.89 97.08 37.52 90.05 59.03 12.47 63.72 49.95 40.58 97.76 27.27 65.89 8.70 8.25 99.86 89.37 86.03 70.26 36.83 77.38 47.41 97.53 16.92 2.46 -28.47 31.09 10.78 47.23 91.85 94.91 38.47 25.56 12.65 74.03 32.45 66.77 78.04 48.78 44.53 26.62 92.14 57.62 19.45 9.49 20.46 1.32 38.60 55.09 45.43 5.73 22.93 25.04 43.38 53.88 97.21 32.66 41.13 36.89 97.24 25.43 70.53 84.16 60.10 37.22 29.46 48.37 49.14 75.75 89.45 43.24 23.94 94.65 8.85 82.88 57.46 72.60 51.25 25.75 45.11 2.02 1.92 14.68 62.66 95.75 16.09 89.53 82.32 87.25 52.01 55.29 22.64 51.23 69.73 71.26 17.54 80.90 78.36 8.88 29.70 70.25 29.29 78.12 31.23 72.86 73.24 43.54 19.21 96.29 42.74 80.38 46.97 85.15 14.27 19.36 20.12 44.65 35.64 55.70 91.43 30.53 96.67 74.38 26.58 63.37 -46.42 7.32 55.37 73.74 37.44 11.57 53.62 42.63 9.12 78.42 85.68 37.33 97.77 99.72 25.69 4.14 44.98 52.02 30.20 37.69 44.83 31.01 24.58 51.57 60.20 76.21 12.86 44.69 74.62 72.91 46.12 93.50 24.30 1.37 17.20 90.70 17.90 1.78 20.57 75.07 21.68 3.77 84.68 76.69 2.23 94.28 37.31 83.82 10.04 30.39 65.98 51.35 32.32 43.85 55.92 17.46 53.74 24.10 51.66 28.72 69.04 73.44 9.58 98.90 69.86 38.47 89.35 70.19 41.76 88.45 26.20 17.73 45.63 95.96 29.11 12.55 19.79 69.17 80.91 31.83 22.23 72.49 71.10 59.03 27.25 99.74 48.40 96.93 13.98 90.56 71.19 72.11 36.42 42.72 79.15 58.08 12.20 84.69 93.42 10.00 -1.18 56.24 46.69 28.92 94.03 71.47 84.95 79.00 64.77 55.84 28.01 41.89 80.15 85.92 31.40 65.18 12.63 62.41 17.92 74.24 34.13 57.70 97.66 30.80 30.16 27.85 15.29 57.75 41.36 55.01 12.04 13.87 58.93 49.90 54.17 35.63 82.50 62.26 2.04 19.13 53.79 49.45 6.27 52.01 49.14 62.93 27.42 15.04 24.45 72.35 57.90 32.76 59.41 71.04 63.68 33.62 31.74 66.64 44.22 85.45 29.60 9.01 33.29 9.95 27.35 82.81 7.16 50.08 95.26 76.51 41.22 0.10 88.52 77.57 98.77 76.39 63.01 31.93 5.25 50.30 81.68 41.19 64.26 36.25 10.48 82.97 79.53 21.18 34.45 68.14 92.22 34.91 27.35 15.55 23.09 71.27 35.13 63.76 46.48 61.19 -69.19 41.57 98.38 13.45 56.07 65.83 17.85 24.56 49.66 6.95 59.83 58.30 38.26 22.38 75.12 33.60 59.36 81.15 27.70 42.96 8.46 79.12 73.66 97.66 54.42 41.24 3.39 40.99 89.08 59.80 18.78 71.50 52.52 36.78 57.94 20.22 97.57 49.63 22.90 86.98 81.58 21.41 82.96 56.68 89.40 47.52 53.07 80.60 50.64 14.43 6.32 18.08 52.68 86.04 81.95 49.29 92.87 8.08 92.25 23.58 66.23 91.64 69.78 26.13 63.56 34.29 33.59 18.99 26.39 55.62 7.60 16.62 1.38 17.11 51.68 44.76 65.81 9.57 34.29 2.37 28.26 78.61 62.98 46.57 45.16 8.86 5.30 39.11 25.90 9.96 11.54 76.40 57.92 51.92 54.86 64.74 89.81 19.08 3.07 68.84 -45.05 24.52 40.41 29.06 87.51 73.00 24.96 48.99 66.65 30.40 13.99 1.44 75.40 15.47 52.98 43.41 61.85 80.84 20.63 26.69 98.16 74.66 33.01 50.73 65.77 29.28 4.78 86.08 5.20 64.52 1.83 34.75 76.97 68.59 48.43 94.20 63.98 16.69 63.17 64.04 58.06 75.61 31.56 41.74 92.54 45.24 97.31 61.35 39.97 88.12 11.30 32.05 71.73 24.45 65.77 29.48 42.83 71.14 87.62 72.40 68.26 37.82 86.67 79.89 76.94 97.79 80.38 17.18 16.32 35.85 20.24 98.90 41.49 21.10 18.71 71.45 42.80 36.57 11.62 44.71 51.78 14.98 67.82 46.90 14.32 64.63 69.66 73.82 27.67 99.05 61.20 25.63 82.29 87.57 42.41 3.85 15.97 87.05 14.90 4.44 -98.98 54.98 98.04 17.64 50.31 55.86 85.75 66.33 12.34 64.66 65.79 80.36 86.83 56.42 77.40 66.04 5.04 10.68 65.79 6.80 71.34 30.67 77.60 70.99 54.03 10.25 17.10 43.81 33.54 5.74 56.30 34.61 31.76 95.36 28.97 49.20 71.79 14.01 17.35 58.74 49.06 61.24 66.58 30.95 96.91 75.12 5.67 96.82 89.19 29.55 85.34 78.20 16.56 39.09 7.55 43.66 25.86 97.98 84.67 61.82 47.24 48.22 98.03 12.30 99.43 57.61 33.89 56.14 60.84 94.65 74.23 16.84 84.22 19.15 22.04 4.81 20.74 91.08 85.25 50.70 54.32 75.87 90.16 4.57 80.17 18.46 89.85 75.24 88.29 25.28 13.30 43.78 22.24 60.00 34.35 98.27 54.61 87.25 9.06 28.06 -62.67 29.79 45.58 33.71 69.42 67.29 22.75 74.58 5.23 25.83 2.84 32.54 55.26 68.81 74.53 46.64 83.48 39.30 86.45 90.60 16.12 0.58 6.77 84.62 84.83 12.07 42.57 54.23 28.05 11.37 95.30 73.64 31.90 74.67 31.95 34.18 83.57 50.37 82.45 98.06 0.10 21.46 95.58 78.77 17.23 35.84 16.19 90.29 35.90 50.55 0.17 45.83 71.83 5.34 83.52 27.66 27.16 19.18 33.85 80.43 16.58 15.24 22.06 52.90 74.13 73.53 91.28 24.03 35.02 71.86 29.91 28.24 14.05 25.61 53.40 4.98 98.15 20.34 92.47 7.13 78.67 37.92 26.26 91.50 44.11 65.15 42.71 70.03 77.53 88.98 56.17 33.02 44.86 92.27 70.56 45.21 84.73 64.98 75.08 19.74 -14.26 92.33 57.15 58.05 41.29 54.08 72.74 48.93 48.44 33.33 36.90 31.29 38.92 8.23 81.68 95.59 53.36 64.04 57.20 93.99 7.12 52.85 83.68 32.53 33.27 80.79 51.99 79.94 98.27 87.91 8.45 29.38 54.00 41.18 46.09 71.66 83.59 65.32 5.01 89.41 50.32 63.54 91.57 62.35 70.61 22.46 10.63 97.97 93.03 71.82 84.24 17.50 32.07 87.43 9.92 38.59 68.40 89.47 44.62 10.46 57.15 13.63 17.86 76.15 18.37 66.28 0.42 97.59 91.35 2.84 82.28 22.31 97.53 88.78 83.39 80.10 14.62 56.10 95.11 10.60 54.44 95.00 85.56 41.55 47.82 72.93 35.77 22.98 73.01 95.10 61.89 60.14 71.00 27.85 79.20 6.63 22.18 63.02 61.48 37.85 -46.17 24.80 32.89 65.89 4.98 93.43 90.60 69.12 24.32 96.86 11.59 18.92 96.49 63.91 86.23 4.58 12.62 37.11 67.26 79.49 34.76 93.38 40.34 17.98 96.80 36.45 13.31 20.78 3.60 88.10 92.76 16.28 89.58 0.16 18.36 50.10 71.71 91.73 88.98 98.55 41.25 60.40 82.85 83.18 40.79 27.02 20.00 47.23 67.65 96.36 46.54 60.38 4.17 56.41 61.43 46.06 30.63 31.01 88.95 44.31 19.24 57.19 83.90 44.51 25.70 66.32 23.55 98.97 38.29 85.50 80.31 71.12 70.55 66.95 77.70 62.42 98.65 85.57 84.12 36.90 20.52 15.60 97.23 94.63 56.68 17.86 28.07 37.10 24.01 87.95 31.30 25.06 66.34 18.15 11.50 30.26 2.14 22.75 20.46 35.40 -49.79 18.53 95.82 99.28 56.96 58.78 59.80 71.61 36.39 20.02 82.41 49.60 71.22 22.87 40.50 42.00 74.72 32.92 58.93 7.11 55.14 77.00 33.88 42.02 66.59 78.50 0.72 81.65 13.19 96.73 31.81 99.34 20.77 83.99 82.27 27.84 85.93 61.22 14.79 36.66 95.47 46.93 12.72 83.26 84.23 5.03 55.03 7.18 99.18 53.25 9.22 33.87 67.17 61.95 77.51 59.25 93.44 99.94 5.54 66.84 6.40 93.10 52.78 70.06 86.85 65.82 59.13 6.26 50.13 8.29 17.03 46.95 81.92 11.08 0.99 72.03 18.04 36.55 19.83 32.19 73.71 90.70 65.52 30.09 84.58 49.36 99.14 94.59 20.42 24.27 19.68 51.94 82.95 6.03 96.72 71.31 85.79 63.78 61.87 72.68 -42.51 17.06 39.59 91.39 27.26 54.13 25.65 62.28 23.51 35.42 77.72 35.12 35.67 69.88 80.75 14.98 99.47 5.39 73.89 97.13 99.14 76.78 24.59 84.19 32.96 87.99 94.65 5.90 67.95 14.66 78.02 81.53 36.78 52.57 4.40 1.97 5.45 53.91 4.14 82.88 38.17 94.37 82.18 66.18 31.72 63.51 29.21 14.43 90.50 5.16 16.42 78.31 16.07 65.88 58.05 32.97 73.11 63.86 14.34 13.59 11.50 60.76 62.15 95.01 41.25 2.36 68.96 80.47 52.64 26.32 75.37 65.28 82.91 35.81 44.77 99.66 51.99 91.61 83.18 86.61 45.12 10.06 40.46 94.29 53.08 80.73 84.62 74.53 83.78 69.68 21.11 39.21 51.11 61.60 4.95 89.39 59.42 15.74 46.26 37.96 -46.89 62.61 54.10 79.90 31.33 80.55 68.79 35.03 45.43 48.58 9.22 90.23 58.83 68.66 28.76 99.21 45.15 75.27 98.43 91.94 6.60 88.14 71.53 84.41 19.01 61.23 98.70 59.55 64.18 29.96 3.10 97.22 35.05 72.97 45.20 92.14 40.46 17.14 78.02 6.33 68.88 19.46 95.31 97.93 62.25 47.78 84.35 84.02 66.36 69.01 49.08 5.99 51.63 33.72 82.29 92.36 83.09 85.45 52.55 18.97 1.54 14.90 4.00 34.77 27.35 85.87 87.39 2.54 32.31 93.44 78.77 88.22 49.70 82.76 25.62 47.00 76.28 7.02 16.20 28.56 99.95 54.97 67.82 3.18 66.47 45.27 21.90 33.92 98.76 43.28 22.92 56.05 37.23 26.30 68.21 10.91 74.50 16.02 50.01 18.11 -68.08 34.10 21.73 55.88 26.67 7.02 42.81 82.34 68.28 5.79 50.76 87.38 79.29 99.31 1.26 21.94 76.62 94.01 17.22 88.27 32.37 52.58 10.20 29.58 84.28 68.55 67.27 96.66 89.38 13.15 33.67 83.81 97.93 76.73 3.81 31.44 63.30 29.81 86.75 21.30 76.50 8.32 2.80 69.55 65.31 53.18 60.46 86.43 59.37 41.43 20.83 32.93 98.86 83.20 17.98 90.53 75.27 70.65 84.53 81.78 19.73 35.95 4.66 98.03 42.22 50.78 87.94 57.68 56.88 69.33 81.99 5.69 51.88 96.18 9.95 96.60 24.80 40.83 59.00 88.23 36.95 15.56 56.10 63.73 89.36 30.65 79.15 95.42 9.94 92.94 47.59 87.86 57.75 94.05 57.30 54.18 81.24 89.72 80.11 36.11 -18.86 47.44 52.51 16.02 97.73 87.06 5.33 70.80 46.46 59.41 77.14 24.26 28.25 75.07 71.76 85.45 34.93 82.84 82.20 58.04 17.64 72.03 37.20 96.38 41.43 22.84 26.39 40.45 83.95 78.81 31.65 21.01 60.87 18.83 10.41 26.41 33.08 90.18 57.33 41.61 44.49 41.83 54.64 30.37 83.87 8.01 14.09 2.80 76.68 11.37 82.13 40.84 3.24 27.53 83.94 56.25 9.88 73.94 30.90 65.55 12.75 15.87 13.35 35.76 88.09 33.13 74.77 95.32 17.18 13.99 18.85 94.28 52.07 11.66 89.13 38.81 88.98 85.71 40.55 38.82 60.79 24.28 72.31 51.21 47.48 10.99 56.67 0.12 43.33 66.54 39.56 23.98 43.69 62.90 7.77 74.88 71.12 25.86 64.05 48.12 -70.75 94.60 6.24 93.00 82.64 7.63 48.85 45.27 19.62 33.22 99.74 47.35 0.78 4.76 55.77 97.62 4.30 19.12 57.09 8.22 76.08 76.31 24.90 92.50 60.72 5.42 35.80 30.78 93.24 47.36 76.23 59.97 71.74 95.32 93.99 44.98 12.07 95.60 63.38 27.08 2.60 24.69 1.70 41.94 68.43 70.94 26.77 47.84 15.18 5.35 62.32 49.89 82.06 56.29 25.75 59.73 97.34 40.58 95.13 39.92 8.81 36.79 39.47 77.03 34.70 42.17 26.23 25.20 47.11 12.59 22.63 35.24 25.99 47.65 69.96 75.87 62.33 11.66 23.41 10.98 2.92 23.03 45.05 68.25 19.67 92.73 14.71 81.88 91.99 22.90 39.01 33.54 72.76 59.28 69.71 14.62 86.71 6.13 9.88 67.91 -86.73 72.11 46.91 85.85 69.15 8.78 83.61 88.64 21.20 16.59 9.55 35.75 87.58 31.31 90.25 73.31 17.22 44.50 76.62 50.78 30.92 65.65 58.79 44.76 19.89 35.94 5.24 63.15 74.51 79.73 44.40 27.20 6.34 71.53 95.26 52.11 32.94 8.27 41.61 17.01 2.07 6.08 77.69 27.77 78.43 45.96 71.14 19.99 31.93 72.88 61.82 16.97 47.58 82.52 20.53 41.43 29.26 45.48 52.74 87.99 31.68 91.29 83.78 24.42 1.93 85.06 61.53 38.00 30.37 24.71 0.18 86.28 63.40 31.74 11.13 93.97 29.20 69.34 88.07 52.76 51.48 63.68 13.71 59.59 85.93 58.80 24.28 85.30 39.22 96.04 17.64 83.11 26.72 97.36 79.30 3.39 34.87 0.68 95.91 25.77 -17.86 68.57 59.72 56.96 19.93 97.11 86.19 12.57 59.65 86.82 75.59 46.41 70.02 79.77 52.75 25.19 43.53 71.27 51.86 3.50 67.97 64.86 35.12 65.15 90.06 49.59 37.67 38.49 1.58 52.17 79.08 97.38 37.00 52.63 58.86 99.07 98.99 26.38 83.34 76.22 16.84 95.96 22.85 59.75 28.62 1.99 12.75 71.44 67.87 79.71 78.38 70.39 15.18 85.42 70.78 54.35 92.66 43.31 50.04 5.74 82.67 28.12 56.32 68.69 36.62 76.18 92.12 57.28 60.65 69.22 17.31 41.00 94.42 11.01 50.94 42.28 50.30 76.64 53.74 38.21 70.52 48.31 33.21 75.89 16.06 51.88 61.80 12.61 30.26 70.40 36.62 19.20 44.10 99.11 64.77 5.80 18.12 54.92 96.88 44.60 -57.02 17.80 84.97 43.21 17.17 52.34 62.82 88.67 63.15 98.94 4.42 63.81 61.18 69.86 51.48 1.86 43.58 45.88 13.63 40.31 81.43 87.81 55.09 32.36 36.99 99.43 58.17 82.32 45.85 42.60 15.02 32.11 95.47 93.54 20.73 32.49 25.68 9.09 4.96 59.81 28.56 67.00 90.06 26.28 20.30 78.87 39.92 78.17 23.81 33.24 13.62 28.49 17.00 45.45 12.88 71.56 6.02 36.87 73.68 67.90 48.78 59.59 54.34 70.96 28.19 1.97 27.15 9.85 74.16 14.13 62.01 39.75 6.82 97.66 99.50 11.92 90.35 12.98 45.33 33.54 37.85 7.60 53.08 15.16 63.99 83.36 13.93 88.52 53.15 37.68 9.25 57.13 43.24 17.00 83.73 32.26 77.13 59.48 19.23 55.90 -32.36 71.23 68.08 5.54 15.43 17.13 39.76 10.12 4.66 74.94 98.35 94.76 21.09 82.30 20.26 5.31 65.30 55.25 26.05 51.66 31.58 25.04 9.35 45.63 21.61 41.43 16.47 76.13 13.07 65.19 76.07 39.74 11.96 76.41 3.76 37.75 6.57 94.41 63.72 52.40 13.56 37.42 63.49 99.75 89.84 42.52 94.83 15.17 76.65 77.25 76.51 14.35 9.25 4.04 33.25 67.44 70.43 17.13 98.94 59.22 99.81 18.29 35.58 19.61 15.66 0.07 50.91 5.03 76.47 60.34 89.77 11.68 78.00 20.35 59.76 71.38 12.21 67.51 79.58 54.22 61.12 73.69 9.83 22.03 36.89 91.41 28.23 81.29 56.22 22.28 39.46 47.99 83.73 77.36 33.08 13.75 46.97 40.57 67.98 11.86 -64.51 86.16 75.68 84.76 10.29 27.80 97.19 4.45 94.73 46.39 94.95 64.09 10.52 98.59 18.61 37.39 31.85 86.68 21.97 65.00 60.66 44.87 54.33 85.06 69.67 53.68 27.78 34.76 50.12 51.35 43.32 71.66 69.65 11.93 38.04 65.06 12.37 66.29 66.42 37.96 36.98 57.72 56.31 75.19 70.48 42.62 6.14 43.86 54.17 30.04 93.29 88.70 0.24 41.14 83.55 51.77 78.55 98.85 45.88 91.89 63.28 14.94 15.60 43.43 5.42 88.55 50.79 23.86 17.40 32.17 74.36 90.55 44.32 64.40 24.12 63.78 56.02 59.82 63.13 30.03 61.27 87.79 28.18 83.31 97.15 67.31 62.30 2.97 31.67 56.34 44.96 44.45 9.88 34.08 15.64 96.80 76.72 71.00 51.70 38.78 -7.31 83.39 21.30 96.83 18.50 8.87 11.97 93.36 6.59 30.17 74.88 35.30 26.32 57.42 58.81 83.59 6.91 8.18 47.82 98.35 54.90 10.77 42.47 14.31 83.55 89.05 33.30 76.40 29.51 20.32 48.81 41.38 33.27 91.33 22.31 32.41 38.97 16.76 49.02 56.87 57.64 26.05 72.55 73.66 41.10 93.07 94.49 79.90 35.18 91.90 81.55 23.77 67.13 51.07 22.73 51.49 97.66 80.49 28.60 98.54 22.20 10.03 64.17 95.83 33.29 19.95 9.88 11.61 29.81 59.41 54.99 81.51 10.34 83.40 19.40 87.57 68.24 91.08 12.22 30.90 37.26 51.35 29.73 90.25 51.57 69.11 71.13 78.15 98.06 3.93 48.75 79.15 16.20 7.73 51.84 51.98 44.87 29.16 74.92 70.12 -70.70 99.28 78.20 11.67 40.50 49.37 63.20 63.47 68.74 92.03 35.89 22.23 35.34 99.80 33.92 72.95 68.94 26.95 2.58 6.86 27.99 42.70 29.97 22.84 56.89 51.23 8.03 23.01 76.76 7.74 22.28 89.79 1.98 9.38 80.98 69.45 55.07 33.25 69.62 32.18 78.69 54.81 7.09 39.81 14.86 97.54 6.16 26.58 81.39 89.03 68.12 97.44 33.82 25.75 48.03 35.76 42.91 69.26 18.51 48.82 6.58 41.33 30.48 74.39 66.01 29.44 36.70 39.01 24.33 56.11 57.59 2.79 31.29 85.68 68.31 18.34 8.97 63.37 77.26 36.11 17.25 46.20 35.71 5.16 22.89 12.73 41.23 78.82 12.89 5.54 7.30 12.94 0.51 89.18 77.35 83.20 30.62 91.79 22.25 71.02 -90.15 71.64 60.34 93.56 0.95 78.74 47.96 61.66 56.72 77.56 62.04 21.58 2.24 57.75 53.68 91.17 60.74 92.01 58.46 88.90 24.14 77.06 15.01 11.69 19.92 93.79 84.90 23.57 86.36 64.27 27.32 68.34 84.68 1.46 32.35 13.11 61.62 40.33 16.05 54.03 65.24 62.50 90.18 89.74 41.89 37.02 92.91 51.91 95.19 25.29 82.31 8.25 58.91 93.12 12.61 6.59 42.07 40.14 52.56 37.72 0.87 7.97 54.94 25.67 7.59 95.06 53.12 56.34 81.61 38.04 23.74 2.61 97.66 81.90 78.84 6.80 48.20 28.29 86.21 17.83 47.99 35.57 75.55 29.16 30.52 63.39 74.53 61.86 13.03 21.86 77.25 58.08 29.53 80.84 62.45 71.71 3.74 23.50 86.58 16.69 -24.15 40.96 14.43 8.68 7.67 60.85 16.59 37.44 61.10 90.25 33.09 21.31 3.25 71.03 12.90 65.25 40.79 98.71 57.52 88.67 50.07 35.20 43.67 72.37 79.20 97.32 0.92 15.25 74.86 73.56 65.35 41.98 25.56 52.31 18.75 60.24 75.28 0.38 2.96 67.48 31.16 42.57 29.37 63.37 57.97 76.06 54.07 15.01 64.35 10.00 60.82 86.23 68.13 7.50 15.46 93.71 37.52 49.99 41.48 9.44 89.40 4.70 15.49 57.47 53.73 49.75 28.50 87.78 79.05 92.63 20.28 37.88 88.78 97.78 94.78 99.39 55.30 91.87 33.98 29.94 77.65 17.30 65.85 44.04 82.29 31.07 39.99 68.38 45.79 19.76 86.14 94.71 64.26 36.66 44.45 15.84 19.39 61.98 37.25 45.82 -4.17 9.33 8.21 82.52 17.34 1.28 61.02 57.40 90.90 3.59 85.41 23.09 44.44 21.32 65.27 43.45 82.09 76.93 0.66 10.61 85.58 40.52 22.60 16.08 40.52 54.80 57.37 99.58 25.78 17.15 8.74 5.90 33.25 81.89 36.64 13.16 38.98 56.67 34.77 89.02 39.74 68.56 23.55 9.34 18.94 47.89 95.03 88.44 48.20 97.04 6.17 9.56 79.23 96.97 82.89 66.26 23.24 83.39 98.34 51.02 17.09 10.12 51.96 22.47 2.24 47.71 28.71 63.96 94.07 73.57 46.50 8.95 40.12 35.28 77.43 34.54 62.84 10.65 94.23 37.19 5.84 76.61 75.33 98.21 78.29 4.87 97.79 19.46 88.20 25.66 81.88 46.06 51.61 4.59 34.44 18.39 49.45 49.86 63.34 10.37 -83.73 99.01 98.67 72.51 25.84 45.38 28.27 42.12 99.56 55.86 7.30 75.54 25.91 56.64 6.97 49.37 40.64 31.45 9.61 54.36 54.71 73.12 86.78 67.78 32.45 55.13 7.34 49.55 32.05 22.42 79.79 8.44 41.98 59.83 90.50 68.32 25.91 53.46 82.09 78.28 76.12 1.11 24.57 62.12 6.58 29.59 34.98 53.44 77.51 28.34 71.73 57.93 17.94 76.33 6.29 16.15 86.46 59.33 15.16 38.79 67.50 21.93 97.81 71.78 74.04 91.77 63.07 75.54 36.39 4.99 52.16 87.49 86.48 11.06 73.21 95.68 94.91 67.28 6.21 95.45 70.39 39.85 5.90 83.69 21.27 43.11 67.51 72.77 93.75 52.55 65.68 45.46 44.46 22.58 7.97 6.45 29.29 66.52 38.68 67.03 -48.56 77.82 4.68 70.64 81.22 85.60 88.89 36.67 7.62 29.64 46.56 64.55 41.27 37.51 36.51 34.39 68.27 96.34 70.37 59.50 92.26 19.55 72.65 98.96 9.37 24.14 44.42 57.91 31.75 99.89 73.36 88.70 30.79 34.43 25.44 38.58 2.21 57.01 38.82 67.46 94.70 22.05 40.37 34.40 14.49 92.41 93.15 40.71 40.04 11.45 49.67 16.60 92.27 73.52 47.07 86.98 25.79 17.22 33.35 36.36 68.52 8.71 51.86 53.26 49.62 37.85 69.18 87.85 61.61 47.99 37.43 45.16 14.43 93.34 38.37 19.34 23.36 92.87 54.86 44.76 84.90 26.46 47.09 93.03 57.35 74.99 84.70 56.55 18.21 17.38 52.48 5.43 40.93 98.21 85.89 31.98 55.85 43.62 21.37 92.46 -83.63 16.92 67.19 58.45 7.02 13.85 22.48 22.15 58.47 94.11 30.28 90.71 11.06 70.79 7.44 29.89 51.21 70.10 66.34 57.29 74.90 80.94 23.83 54.69 84.30 83.85 15.12 31.37 98.90 9.97 44.49 1.20 5.14 7.69 50.92 76.69 17.29 81.97 83.83 23.87 10.53 86.54 22.97 16.90 17.24 47.85 68.26 51.44 8.95 66.17 37.76 2.92 56.48 39.40 28.58 68.50 64.25 22.51 7.77 96.31 3.27 72.40 88.52 41.76 31.65 71.79 5.01 90.91 62.49 8.77 62.79 20.80 11.56 93.77 81.91 76.27 64.09 87.19 96.00 77.75 20.50 76.91 44.96 70.97 7.34 79.36 63.08 35.05 77.47 73.85 22.70 63.43 63.81 19.27 73.58 18.17 82.85 13.23 13.16 98.74 -40.48 60.07 71.38 84.80 50.71 35.57 91.27 20.00 36.05 5.87 21.87 85.30 98.32 32.38 68.34 17.57 57.45 21.14 58.02 44.75 26.24 61.30 40.73 32.76 42.72 9.94 46.67 75.45 93.23 25.04 34.59 56.16 90.89 32.65 48.52 19.45 58.67 37.89 94.32 93.26 48.24 7.34 68.15 38.72 80.99 63.22 39.13 64.86 52.24 12.57 49.18 93.67 30.45 43.13 35.28 75.11 70.58 31.83 6.47 95.27 78.37 15.93 33.65 89.73 88.55 25.86 25.19 62.34 77.79 44.29 52.45 90.40 40.11 24.75 31.24 54.37 87.57 75.21 38.18 95.54 91.80 44.75 63.88 23.71 6.24 58.81 53.85 37.92 95.30 70.71 85.73 94.91 17.45 97.69 47.73 78.77 44.49 86.51 92.89 75.74 -95.02 94.62 92.30 11.22 6.36 51.77 33.24 84.42 55.90 86.67 72.72 97.45 2.18 33.07 76.51 17.07 54.69 54.01 45.36 2.95 10.92 35.32 6.18 66.86 76.73 97.80 39.38 43.72 50.63 74.36 50.92 62.31 44.50 11.59 60.30 15.34 95.69 14.42 8.43 64.55 71.60 95.27 4.57 86.57 88.26 30.77 32.46 28.20 53.48 7.75 25.85 49.52 65.26 32.74 36.53 48.46 38.82 27.28 55.76 2.96 37.77 78.97 94.26 54.03 62.96 86.83 51.93 53.94 16.03 45.24 18.97 26.15 2.21 59.65 14.09 56.62 86.29 63.84 0.34 57.00 46.75 42.72 77.84 64.75 18.36 23.31 6.60 68.80 59.17 88.42 67.87 4.05 57.36 65.65 70.85 60.70 27.05 6.42 38.92 7.91 -95.15 27.25 91.98 50.22 66.56 73.00 45.84 91.38 29.09 20.17 74.58 43.99 47.89 60.60 68.71 6.46 90.42 99.37 43.04 57.20 25.58 86.32 22.01 34.86 93.53 3.12 79.26 72.25 71.47 22.71 69.53 71.24 67.40 66.17 19.20 1.38 93.07 39.57 41.61 37.01 4.14 53.93 79.91 6.53 64.72 71.88 98.36 35.85 98.80 99.13 34.69 71.07 66.51 59.68 9.05 29.80 6.02 42.41 10.00 93.80 95.44 98.90 87.31 2.27 3.45 28.03 24.18 59.25 28.43 97.03 76.84 51.46 32.97 42.32 37.50 3.27 27.68 6.52 48.03 47.82 5.58 1.08 53.74 98.44 64.64 19.75 50.09 61.62 2.37 91.97 71.75 81.49 70.13 52.95 48.93 28.14 2.27 88.15 77.99 52.86 -75.17 49.14 1.42 84.92 3.84 65.42 20.27 45.88 2.84 82.50 67.04 44.32 19.01 64.18 11.22 95.55 30.31 15.90 0.30 29.97 65.26 92.82 36.89 93.30 7.27 62.10 81.01 27.30 41.63 13.18 57.66 77.38 90.00 16.02 91.49 56.18 6.84 41.51 82.86 18.59 10.68 73.32 9.33 36.17 66.69 13.05 42.38 88.53 23.99 14.95 93.35 50.84 38.08 13.97 67.09 88.77 5.16 61.75 18.04 23.90 74.97 25.73 51.67 84.64 12.10 45.61 89.59 42.71 1.63 75.80 63.17 98.80 50.23 88.88 25.51 1.47 14.78 5.76 44.58 6.12 20.82 81.51 33.31 48.09 95.66 54.76 83.50 16.71 37.75 76.65 73.17 38.19 56.38 26.06 30.79 2.37 87.69 61.93 60.99 43.83 -17.16 29.51 24.59 6.75 36.23 28.94 53.86 6.30 86.14 33.72 44.37 73.39 0.58 29.94 28.36 54.34 86.46 28.61 74.69 22.82 81.90 45.31 49.31 3.48 49.59 93.69 26.40 87.64 2.59 8.53 83.28 50.43 20.63 94.78 98.07 46.99 12.59 50.98 64.69 24.73 47.17 72.29 35.44 0.55 9.42 4.29 28.15 92.11 21.43 64.39 57.71 63.47 13.19 25.25 51.20 47.12 65.73 81.45 69.96 38.72 31.97 22.81 78.98 37.58 33.62 13.35 12.99 18.36 70.31 24.14 40.58 23.01 82.07 49.16 95.28 95.08 93.96 15.42 45.92 40.57 40.00 14.91 0.88 7.73 30.67 53.37 13.15 29.52 45.36 69.06 17.76 41.93 23.70 0.43 20.90 49.05 81.66 65.05 84.56 42.83 -94.12 78.16 96.40 55.86 3.62 61.88 90.05 48.46 70.89 19.59 33.43 25.46 64.06 54.12 62.90 41.27 82.11 22.05 68.07 17.47 55.67 32.80 48.37 68.50 43.93 76.21 57.60 22.83 81.19 56.48 4.32 82.05 38.73 71.25 85.39 75.98 64.67 48.74 44.13 31.25 59.67 48.10 47.18 68.78 57.38 32.79 85.93 83.38 98.54 88.48 55.40 72.55 81.03 84.08 84.62 65.28 36.11 39.25 60.76 37.32 25.43 84.60 96.19 35.73 40.55 94.64 84.69 56.08 86.83 42.30 53.99 46.35 12.92 39.15 46.95 42.69 64.06 23.24 70.10 83.01 65.51 59.36 68.02 83.65 63.38 87.12 72.72 5.96 99.69 38.40 65.20 72.64 7.98 97.41 11.15 76.34 25.03 58.48 81.97 84.56 -76.34 68.18 5.02 49.90 27.26 17.19 74.16 55.47 70.08 44.18 59.56 83.06 34.97 56.92 17.67 95.30 37.30 16.25 5.03 55.57 86.02 29.79 62.90 79.22 11.78 85.00 56.98 84.78 80.88 21.48 96.94 94.83 8.89 3.12 83.48 7.20 88.36 68.38 84.02 17.50 33.15 86.99 50.47 90.55 95.61 65.32 8.62 8.82 32.13 48.22 21.57 96.66 94.88 46.61 21.62 48.35 2.42 84.30 18.64 45.15 63.08 31.67 54.91 69.44 32.27 58.46 29.76 62.71 72.03 83.19 8.91 32.15 37.22 18.55 8.70 53.33 73.53 40.68 21.02 14.04 9.00 3.78 14.13 61.04 57.12 9.72 58.41 10.23 79.90 80.00 98.73 37.59 73.35 35.92 80.76 0.00 5.12 16.34 68.48 58.55 -78.74 81.88 18.68 76.01 31.57 34.36 78.46 56.71 77.21 61.97 86.38 28.46 19.71 54.81 44.72 60.15 98.73 34.43 6.56 44.14 43.67 38.48 53.61 37.06 22.52 71.22 12.13 62.78 77.05 91.34 3.59 58.34 27.72 15.87 89.96 42.83 49.22 74.04 75.38 45.16 42.15 62.94 40.32 16.18 29.48 68.61 81.97 22.67 7.00 95.51 20.54 34.17 19.84 69.04 7.69 91.96 66.18 47.79 14.89 79.16 29.00 80.47 88.03 80.29 94.10 47.76 90.59 31.86 23.51 57.01 91.37 86.17 41.22 81.69 70.62 75.40 4.13 89.71 80.59 27.97 58.60 39.56 28.36 26.09 48.06 16.25 53.11 40.09 33.51 20.69 67.18 73.57 94.71 47.15 57.91 82.11 12.17 79.11 68.85 98.74 -88.05 26.18 23.88 72.50 34.78 5.64 36.48 91.73 33.17 63.11 21.23 4.35 39.46 82.63 37.36 51.77 99.52 27.58 58.40 12.33 34.61 87.24 87.99 67.71 91.95 48.95 67.27 2.09 21.39 19.18 69.82 8.51 38.44 89.69 20.11 26.35 15.69 61.14 55.46 27.32 19.45 46.09 90.37 97.60 5.41 35.20 28.07 98.26 60.96 17.81 22.92 90.54 98.70 4.23 91.19 8.13 82.47 31.94 15.39 6.87 46.49 80.21 20.08 5.58 80.15 18.42 28.39 32.94 16.12 83.35 55.60 95.40 75.70 33.96 78.70 84.21 39.48 37.59 6.44 87.99 50.01 21.27 56.65 7.09 62.37 65.49 20.53 17.15 0.58 77.87 59.85 70.58 56.91 4.53 97.16 90.63 25.50 11.95 52.12 63.36 -64.36 85.23 88.38 44.35 5.18 32.65 11.91 62.23 57.54 8.99 60.06 63.03 83.18 55.63 59.76 9.04 8.48 27.30 96.28 77.86 34.49 79.38 63.25 11.16 70.30 41.13 65.65 25.69 55.45 40.76 56.59 57.73 53.29 93.28 78.92 18.14 96.91 79.85 62.97 27.44 70.40 87.79 71.41 31.27 20.96 64.71 94.90 25.22 11.23 66.58 31.59 85.04 93.68 79.46 76.79 40.63 88.94 38.64 31.72 51.60 89.95 74.45 85.11 50.75 77.36 54.01 2.62 6.19 49.78 51.81 65.80 87.82 9.55 98.66 50.81 6.93 44.92 87.91 60.78 5.17 85.41 51.12 13.82 84.91 75.45 4.36 37.42 15.79 80.62 63.00 65.80 19.49 71.12 13.31 46.12 88.67 55.35 93.02 62.91 43.91 -82.34 51.78 26.00 79.98 31.47 11.24 53.74 48.97 79.04 21.90 84.97 93.97 60.54 77.54 17.87 99.11 87.01 54.33 82.83 28.71 14.42 90.47 89.56 90.14 64.83 27.87 95.58 68.95 13.55 72.61 75.27 0.82 9.23 45.57 54.36 93.74 75.97 76.42 71.66 11.02 37.14 71.95 35.62 79.17 84.28 30.68 19.01 30.05 79.16 3.27 48.54 60.12 87.44 12.91 4.11 6.43 22.70 32.09 41.62 10.81 35.72 51.34 83.20 27.93 12.51 28.41 85.29 98.56 76.40 97.27 68.57 46.14 69.71 48.34 61.61 4.08 89.61 72.38 48.78 0.16 42.66 24.48 70.97 57.63 21.22 4.23 96.74 23.48 91.27 71.12 55.02 53.97 37.72 28.09 36.62 39.88 44.18 49.97 61.89 43.14 -21.16 74.33 41.99 77.06 77.84 29.26 89.26 49.78 81.07 9.03 91.64 39.92 71.53 72.89 63.87 80.74 26.84 10.56 8.50 8.74 16.08 58.27 61.90 14.68 54.42 1.26 67.35 79.67 30.38 32.85 7.25 91.79 67.03 92.03 91.62 5.39 35.99 66.50 65.44 84.99 39.42 83.96 23.55 82.02 53.45 54.38 26.77 28.16 40.31 52.35 31.83 12.33 28.39 28.71 44.97 20.01 27.92 53.99 52.84 23.73 33.57 66.04 21.18 32.29 79.23 88.49 18.21 37.21 60.11 14.72 77.75 94.42 55.33 71.66 56.66 10.73 22.74 34.27 47.72 89.02 47.50 83.47 40.21 20.16 17.85 93.15 86.89 34.77 31.16 58.61 47.36 47.73 43.69 86.77 23.36 78.17 19.37 46.42 41.44 80.77 -28.44 89.53 85.46 91.51 75.17 53.27 63.06 51.34 20.11 77.57 5.01 19.87 76.14 59.42 29.44 12.07 59.11 40.15 96.50 80.19 15.41 0.47 73.05 86.70 22.17 62.52 47.72 55.74 99.02 79.07 44.23 44.18 16.30 15.60 47.52 24.65 90.70 10.43 30.62 80.57 30.73 29.05 84.34 82.22 21.31 86.58 70.53 43.55 59.49 50.31 2.74 64.53 86.22 94.88 55.74 91.87 29.16 67.81 46.56 43.55 22.96 13.03 40.48 59.79 66.71 69.43 64.44 80.83 73.06 14.40 12.13 62.06 76.72 73.20 65.90 58.36 58.77 89.47 71.44 96.92 95.09 31.05 97.02 1.84 85.15 6.96 38.63 23.93 67.42 15.10 70.05 48.94 33.84 77.17 7.68 38.90 38.25 27.52 81.02 67.91 -27.95 29.26 23.05 19.11 56.58 12.99 90.24 41.39 57.02 68.85 11.61 69.72 90.90 87.54 70.80 94.06 4.84 5.50 10.13 96.31 74.82 11.38 5.82 15.88 98.36 23.11 69.32 60.97 13.56 69.20 73.58 12.85 98.02 76.53 52.71 45.97 88.22 56.77 26.73 13.54 89.56 68.50 46.67 99.93 65.15 81.23 89.14 41.34 88.36 13.97 22.50 55.32 33.13 66.76 87.49 79.37 98.96 13.24 9.36 99.44 76.75 75.77 0.31 45.21 77.13 22.27 94.32 82.63 75.40 89.78 79.92 6.66 48.11 92.44 99.49 76.41 4.90 84.30 56.20 95.28 96.22 71.90 46.34 33.35 3.99 11.74 55.06 12.18 53.07 89.32 11.91 56.54 41.39 89.60 61.92 15.72 5.01 1.25 70.05 70.65 -54.83 47.20 12.44 75.56 29.63 78.68 65.35 85.74 94.89 38.71 52.34 66.83 88.85 24.51 79.91 95.56 52.24 86.26 60.20 7.24 62.31 98.03 48.05 22.49 42.70 45.74 22.51 55.24 66.16 30.97 84.33 80.32 24.49 92.83 21.06 73.34 86.94 61.71 20.94 92.10 58.07 92.38 34.69 58.91 49.85 63.60 73.87 83.32 70.53 30.21 96.92 99.37 26.10 84.52 80.05 26.80 42.62 11.11 49.00 56.54 82.54 44.77 89.72 89.49 64.09 5.17 82.61 84.92 79.31 39.08 19.06 38.63 24.65 93.97 41.38 68.09 74.65 28.82 36.55 60.97 85.18 51.38 18.65 33.74 76.29 8.52 64.27 50.81 17.82 31.91 9.30 1.68 73.78 71.94 37.06 66.82 94.13 97.61 16.99 35.66 -20.47 84.75 13.61 75.18 56.78 92.66 49.85 62.33 75.77 67.64 43.69 2.27 52.28 3.49 86.21 31.75 73.73 32.86 71.75 91.20 62.09 40.15 78.04 23.30 17.11 88.45 48.16 39.07 26.79 86.04 34.86 87.42 24.73 19.25 30.34 69.03 85.01 43.69 86.93 3.32 76.40 37.40 94.99 16.56 21.49 27.02 64.17 11.76 76.18 56.56 27.91 36.63 64.81 64.67 26.43 24.53 12.68 66.20 27.18 85.54 14.06 43.53 67.81 72.29 33.94 94.91 88.00 35.27 7.25 87.16 99.25 34.24 61.53 74.91 69.99 23.62 14.80 18.44 68.57 91.91 26.57 61.84 44.27 18.99 2.32 18.98 93.27 69.86 33.92 78.31 58.43 7.53 23.41 83.45 10.61 88.05 44.05 51.53 66.40 97.21 -98.27 25.44 99.87 91.22 82.17 69.56 21.79 44.66 26.69 1.36 91.69 63.10 95.70 54.01 10.79 55.56 7.89 84.72 69.92 36.86 29.28 87.34 98.54 25.05 87.03 8.04 42.55 89.36 79.77 11.71 71.42 74.17 36.81 24.60 46.25 46.75 7.13 61.54 54.84 0.58 29.08 35.83 26.88 69.60 13.12 57.65 25.71 20.43 49.93 30.10 35.91 63.00 35.06 87.05 6.07 77.84 8.23 87.18 38.02 43.06 27.82 77.39 71.65 53.32 96.66 53.24 21.57 52.51 62.90 20.56 77.20 94.14 47.22 28.42 24.45 18.68 48.07 82.09 12.99 0.34 94.16 46.57 61.34 17.57 0.70 28.07 76.36 25.86 61.79 91.00 92.82 22.87 11.62 72.78 35.63 59.35 78.15 90.29 49.15 14.94 -92.46 10.93 79.03 52.91 60.05 2.30 38.54 56.53 36.62 68.04 60.71 33.53 21.63 94.39 3.62 99.52 83.34 94.03 88.96 29.63 32.92 60.49 35.98 92.80 36.36 15.65 16.91 55.55 66.04 16.15 19.40 49.58 77.12 83.64 61.58 36.99 64.32 67.53 87.29 15.57 20.92 94.35 81.76 42.05 7.97 87.50 44.52 5.45 82.58 59.22 8.73 42.15 84.91 28.03 84.06 73.03 64.55 0.05 73.80 58.85 6.77 18.82 6.52 45.91 3.08 58.85 44.34 88.26 68.05 25.93 56.78 96.58 79.32 94.21 25.41 68.09 89.27 45.52 34.84 18.51 91.43 87.61 65.00 62.03 40.97 8.31 21.21 22.41 14.66 90.64 10.40 37.52 18.63 48.18 87.70 86.92 90.45 95.68 66.64 56.98 -16.28 46.08 93.18 77.37 87.57 79.44 27.40 16.31 66.72 49.17 76.90 9.88 15.36 91.64 25.98 79.77 60.87 73.46 95.23 15.01 67.94 7.10 38.39 75.00 11.78 56.80 20.98 6.55 25.01 11.18 83.42 63.48 56.16 13.97 53.60 22.57 61.43 25.54 81.85 15.09 15.34 22.53 29.44 38.09 64.49 70.99 55.64 88.95 7.40 43.36 12.75 73.37 55.08 80.12 56.48 11.04 22.08 10.98 4.07 34.48 27.10 55.16 47.11 68.04 89.40 22.42 7.21 68.41 93.55 19.31 54.17 67.16 83.84 37.64 76.64 40.80 12.57 39.92 78.86 56.36 15.78 24.75 9.16 17.69 58.29 91.80 42.32 23.51 40.60 88.40 57.95 2.90 84.71 56.17 27.45 53.60 20.15 99.90 46.91 5.33 -4.98 33.88 86.35 32.52 95.43 9.18 50.61 6.04 25.14 13.43 27.43 89.00 18.04 62.62 61.61 68.87 94.68 18.21 88.60 81.56 66.58 31.74 52.38 71.42 26.14 24.19 83.13 68.20 72.58 18.42 71.74 68.80 34.02 60.62 39.57 27.87 50.11 69.31 57.47 13.06 83.81 80.23 45.67 32.13 48.31 47.62 4.66 43.68 46.87 34.69 12.38 41.21 15.55 78.95 12.13 46.82 79.10 65.01 33.22 59.78 70.49 68.72 53.91 7.01 76.66 83.33 13.63 27.77 11.71 14.83 93.15 19.81 29.83 56.70 56.41 49.89 91.74 63.48 94.56 60.89 83.01 27.77 61.24 22.20 77.92 44.13 19.18 42.48 79.64 88.94 63.98 95.27 30.10 87.55 51.06 73.60 3.73 78.79 13.21 14.55 -91.69 48.63 67.31 11.68 39.69 46.48 66.49 40.93 69.65 45.19 8.97 12.73 4.01 92.76 26.04 57.12 62.71 77.44 91.02 47.15 95.14 40.82 97.15 68.18 79.89 35.88 71.68 50.47 75.22 39.72 68.57 2.37 82.11 72.70 31.32 80.54 8.41 88.16 59.99 96.13 40.89 64.18 96.31 97.68 8.38 65.93 36.34 40.44 51.35 36.05 61.77 78.85 46.91 18.37 34.30 31.62 59.11 14.90 97.86 38.37 12.09 55.81 59.74 44.38 74.81 80.45 48.57 5.63 40.29 71.57 29.58 62.49 61.83 40.57 84.81 36.93 52.12 74.60 88.54 79.72 98.23 86.17 70.49 19.38 81.34 41.69 66.50 91.02 87.30 21.30 39.39 56.38 71.15 31.20 64.42 94.71 61.16 79.66 83.62 35.09 -94.33 89.84 13.30 57.63 96.09 22.60 32.09 41.41 27.46 90.60 28.87 75.93 12.61 80.59 2.95 7.02 50.06 93.84 69.87 43.94 56.51 35.56 56.86 94.36 20.96 20.40 61.00 99.70 93.54 8.55 49.55 22.15 81.68 5.57 59.95 5.97 65.67 15.75 96.48 34.73 83.94 74.03 51.03 94.54 15.87 46.07 41.85 72.62 84.35 63.69 44.11 2.71 74.86 93.95 63.49 37.70 89.46 52.25 90.89 73.14 35.32 61.67 26.89 44.93 34.61 75.27 98.91 95.19 1.89 94.96 7.54 87.22 60.96 18.27 9.08 30.66 18.59 14.03 70.43 88.52 63.62 85.66 7.56 46.89 90.57 3.53 95.72 14.05 72.89 95.23 9.08 50.61 64.63 68.23 10.52 7.77 73.04 68.28 79.13 11.47 -58.09 63.71 42.30 29.05 95.01 83.22 29.28 72.54 67.22 64.91 86.55 42.55 11.84 96.14 2.48 86.62 58.79 71.69 10.96 83.41 74.75 44.15 24.22 88.93 79.48 28.64 67.40 7.03 76.74 73.53 19.31 38.96 66.41 93.56 88.97 2.97 23.33 68.61 21.32 39.11 69.11 79.70 1.29 44.75 91.94 51.76 61.96 19.55 79.27 25.83 77.05 74.63 15.19 32.99 67.82 57.60 2.97 96.20 61.46 79.27 14.86 83.76 94.26 97.20 45.54 22.10 9.64 64.39 91.19 75.56 29.42 55.95 73.85 20.63 79.40 64.73 87.46 97.55 26.96 10.97 48.21 66.56 25.99 12.43 27.84 44.25 21.04 74.42 43.47 4.65 93.57 78.16 44.13 83.22 78.56 56.39 92.98 43.02 47.77 72.79 -64.93 35.99 12.78 70.15 9.43 64.03 72.62 11.84 23.77 22.95 45.98 22.88 80.10 37.53 58.70 78.88 93.46 73.36 55.15 83.60 70.78 55.87 23.48 30.73 3.45 22.16 87.75 16.52 4.35 45.35 46.17 34.54 57.55 49.61 40.37 28.47 58.96 71.87 32.57 56.99 57.23 32.16 31.21 72.51 39.82 42.99 69.30 73.19 12.51 16.09 37.20 55.42 2.51 8.70 52.33 97.65 79.38 99.54 47.98 44.34 22.07 43.34 25.80 3.48 14.14 99.96 14.96 46.97 18.21 79.31 37.33 24.82 89.86 74.38 95.62 32.46 85.40 3.27 53.63 8.75 73.29 40.46 3.90 50.55 32.50 36.15 60.13 12.58 16.34 63.68 43.93 28.72 41.77 78.09 58.71 66.76 34.84 39.80 0.37 85.15 -83.27 65.61 89.97 50.53 89.25 1.17 6.16 34.00 64.30 56.00 61.91 41.53 12.44 66.97 20.48 0.13 87.72 68.06 26.42 11.86 38.38 86.71 98.08 64.64 54.66 84.27 63.29 88.09 59.73 82.56 22.72 73.46 17.45 89.61 6.65 84.37 54.36 36.20 18.65 17.55 7.92 96.60 18.61 3.57 80.02 64.72 61.85 6.91 64.47 17.49 74.10 0.40 5.21 41.56 30.74 49.53 53.33 10.83 41.09 63.82 43.32 22.02 57.73 86.93 94.44 50.87 86.72 58.04 41.74 45.16 68.31 77.31 81.07 95.89 60.16 98.10 50.23 86.01 74.86 87.53 21.22 58.80 73.45 41.07 93.29 51.06 55.75 81.67 81.01 29.54 16.31 29.97 7.91 63.97 48.95 21.10 38.07 37.03 18.14 66.49 -62.60 6.91 85.02 11.90 24.33 84.18 79.71 25.58 95.02 6.77 9.99 52.82 39.19 85.31 62.42 83.00 14.64 22.66 34.61 59.24 51.27 36.78 95.45 91.14 65.63 60.94 79.96 65.16 53.25 15.07 7.91 95.93 58.08 17.78 64.89 7.35 74.85 17.88 2.70 21.73 81.42 71.42 92.23 22.94 52.82 24.08 92.35 46.77 42.71 12.91 62.65 94.28 38.70 61.35 15.90 75.18 13.13 50.73 83.83 3.63 94.42 7.84 67.47 49.28 20.35 6.09 10.09 83.76 91.00 18.12 92.39 36.41 68.62 72.06 84.38 58.53 68.17 2.30 7.39 8.90 99.03 13.03 15.35 2.03 75.92 73.47 61.36 72.46 43.95 43.61 20.50 30.60 31.94 96.62 31.48 48.13 79.95 4.32 29.53 73.21 -53.84 55.57 96.38 31.26 84.04 70.31 75.10 82.57 51.24 11.44 4.31 40.87 76.58 14.84 44.98 47.98 11.45 24.24 80.42 56.98 44.51 7.06 40.04 24.67 64.30 34.73 14.71 94.24 8.51 38.64 21.84 53.55 44.63 92.83 48.89 29.50 6.29 21.96 78.55 13.85 25.69 25.77 47.69 62.90 77.15 18.17 10.08 1.76 1.19 43.94 83.69 24.00 78.08 43.43 41.74 96.86 49.15 70.30 39.99 62.01 73.98 68.55 54.72 54.09 65.44 2.15 64.81 99.30 95.70 65.03 25.84 96.65 7.00 79.63 75.27 38.60 38.21 76.19 62.65 8.66 86.65 67.85 51.57 57.11 41.80 5.22 78.00 70.07 15.97 31.44 35.76 88.02 67.82 78.16 49.72 65.01 43.95 81.52 67.28 49.14 -19.06 20.51 62.13 92.07 76.32 12.06 56.85 38.66 58.35 78.17 13.39 71.22 73.08 97.58 53.18 97.84 88.78 39.90 34.23 44.97 56.37 64.94 97.68 62.25 61.46 64.17 61.18 19.58 93.34 58.57 68.71 66.03 22.24 73.50 32.61 80.62 86.49 67.43 34.31 44.77 74.64 13.97 48.90 26.35 76.95 5.32 77.87 19.34 87.39 92.01 25.59 30.12 41.23 81.52 79.90 56.63 96.47 27.86 87.40 70.95 21.05 62.70 31.49 31.61 3.25 78.75 54.46 22.53 13.70 25.91 37.64 63.06 76.32 23.09 24.08 36.74 80.05 40.08 35.40 67.51 97.66 97.97 49.39 72.22 98.45 92.21 81.46 40.78 63.46 11.24 52.90 45.29 99.87 11.41 51.27 90.82 94.11 80.23 51.32 43.95 -84.21 86.28 8.66 78.76 30.85 71.73 41.33 22.55 39.16 72.32 93.01 41.19 78.49 64.85 66.00 60.22 71.64 22.95 64.33 88.65 89.57 67.64 60.63 22.47 46.04 17.21 48.15 72.39 8.18 31.69 1.32 99.22 90.92 12.53 78.37 4.64 92.86 89.79 29.37 31.08 49.93 99.65 9.85 46.74 11.46 11.29 65.44 97.98 34.37 94.22 91.61 7.95 68.15 23.50 38.97 23.99 44.38 14.88 73.38 85.70 92.22 39.31 14.85 94.20 71.73 20.42 62.49 48.40 59.16 88.87 89.10 30.96 38.66 68.56 37.23 83.69 53.96 75.30 74.06 6.60 44.88 94.74 75.82 43.33 72.51 17.24 26.53 59.51 48.80 7.25 57.60 61.19 13.63 67.81 73.09 70.92 32.74 82.82 36.50 23.19 -73.50 86.02 54.26 52.63 60.60 47.07 54.43 84.46 76.49 63.96 10.39 95.35 81.18 56.43 85.77 54.11 80.04 12.88 93.51 14.88 68.60 60.00 9.58 87.22 88.57 66.46 50.54 69.30 71.66 87.85 65.25 44.77 16.55 80.43 90.58 41.12 3.20 20.46 55.37 16.47 55.25 63.01 37.06 0.98 49.45 75.65 69.61 7.49 8.49 11.01 73.55 87.76 9.11 60.99 35.41 76.24 47.84 54.43 86.11 97.42 88.99 97.82 3.54 76.90 32.53 39.69 67.21 37.23 80.39 29.74 13.93 53.99 29.95 60.65 24.89 61.57 59.68 6.37 81.37 54.65 44.83 23.02 80.56 49.51 52.50 41.26 15.65 87.08 71.56 39.22 25.04 28.68 92.71 17.39 97.95 41.52 67.31 88.39 42.55 61.37 -12.62 0.22 15.68 61.12 21.34 0.21 95.82 77.43 38.80 0.29 51.23 20.62 8.22 19.61 30.29 3.09 38.41 10.14 55.54 44.57 54.51 63.84 35.10 96.83 2.51 75.62 78.04 83.75 8.55 96.00 77.31 45.20 33.16 29.90 11.88 36.49 88.59 25.76 83.06 18.65 6.39 75.93 44.37 68.08 51.76 10.17 12.39 57.23 24.27 75.27 26.24 82.95 7.45 75.51 42.51 27.31 54.54 95.06 14.24 20.52 22.12 44.46 64.39 21.45 92.07 0.75 87.62 84.41 90.27 51.57 73.28 46.94 52.16 49.34 45.72 7.36 8.31 98.21 26.14 53.69 37.03 26.26 52.02 98.76 97.80 0.64 59.42 46.28 26.92 38.14 72.51 66.23 37.46 65.41 53.28 60.17 22.14 41.43 93.64 94.71 -70.16 58.91 16.01 5.08 73.13 14.92 80.04 59.63 84.65 91.66 39.63 89.49 12.73 73.35 8.71 8.98 16.96 54.48 9.71 86.83 84.90 97.53 37.28 36.04 64.66 63.72 65.30 2.30 64.45 6.78 17.05 76.86 85.14 68.74 84.50 11.02 17.10 23.37 23.26 96.07 53.27 7.93 67.55 34.39 86.97 59.71 98.96 33.03 77.71 75.43 8.42 91.85 84.34 51.53 64.97 61.05 29.56 65.92 46.37 45.96 51.00 17.57 12.81 31.54 50.91 25.23 8.41 12.48 59.90 82.81 78.42 2.87 39.83 25.02 43.67 48.17 2.42 89.32 23.82 25.54 78.73 57.22 39.26 31.53 65.15 98.81 99.69 45.01 1.01 44.07 42.73 26.41 76.37 41.75 56.78 28.76 63.34 53.69 85.10 23.04 -41.31 34.42 17.14 89.32 41.72 61.61 8.79 59.33 25.68 40.48 93.31 68.82 35.06 98.36 6.52 24.19 24.15 82.71 78.55 91.34 28.83 64.91 69.93 18.26 0.31 95.51 51.18 74.65 95.19 24.14 23.34 81.84 66.88 26.81 47.15 85.18 88.22 8.68 77.08 77.27 29.63 65.77 83.55 4.38 28.45 35.81 58.86 38.78 56.25 56.17 9.12 97.79 90.91 21.02 48.71 76.76 93.98 2.66 99.61 48.09 12.34 29.46 60.79 71.50 82.51 87.41 37.18 74.96 32.94 9.89 64.00 43.83 5.02 78.89 21.76 99.03 14.66 20.31 81.36 33.65 93.27 23.05 17.26 54.30 21.96 24.42 77.93 67.36 73.90 98.67 75.09 86.77 71.88 43.16 39.60 57.65 48.29 77.66 46.59 36.64 -77.91 30.68 71.09 70.07 88.33 74.46 26.62 37.48 25.97 96.95 21.52 24.56 85.93 28.73 69.50 26.93 44.93 14.24 46.69 93.60 2.04 83.08 1.81 31.37 8.65 51.47 69.20 31.77 99.26 49.65 28.01 95.42 63.90 85.98 99.93 43.72 10.68 60.26 56.95 76.72 94.88 99.99 34.25 17.79 24.97 28.23 88.66 89.76 52.07 73.00 36.55 80.54 96.67 92.55 77.66 94.46 36.32 37.88 3.91 62.23 36.29 37.50 78.44 63.79 42.49 65.34 49.03 59.20 21.50 19.37 89.61 20.45 77.53 47.89 14.85 3.71 12.41 3.08 10.76 89.01 2.84 59.63 3.41 76.13 58.99 78.37 60.39 27.22 12.11 47.61 25.64 69.21 68.42 97.27 70.69 96.74 53.45 76.27 52.58 96.47 -66.41 53.64 58.13 31.60 45.35 76.83 11.83 32.57 31.99 72.64 10.01 68.14 80.99 1.04 38.93 87.18 27.73 73.84 23.28 35.50 37.16 85.27 53.97 53.15 79.92 97.25 76.33 97.13 25.09 59.87 37.01 40.25 94.72 7.91 22.05 37.74 27.00 96.05 86.48 51.07 14.22 47.46 79.93 53.17 7.29 46.90 47.77 18.96 54.83 47.81 22.04 31.08 73.72 65.09 42.89 67.01 29.34 84.85 47.55 87.84 43.27 82.04 75.52 63.44 87.25 93.41 82.35 23.62 32.13 2.24 67.64 43.06 30.80 82.07 42.67 93.93 32.18 27.16 10.71 18.18 33.16 7.75 64.10 16.69 98.62 60.68 79.56 39.00 41.59 85.88 80.78 15.99 21.31 96.49 48.69 40.01 25.35 98.90 59.97 82.15 -85.18 47.31 45.94 24.78 54.05 57.34 56.07 41.83 36.08 90.44 2.28 16.86 45.15 92.17 96.55 57.02 75.48 83.70 96.90 51.93 61.21 71.66 15.14 60.27 45.02 10.39 36.18 86.48 65.15 89.33 35.79 99.06 89.09 67.19 59.22 28.68 58.08 95.70 65.23 32.83 13.62 80.68 90.34 92.97 96.67 40.81 26.13 22.41 10.13 48.87 3.67 92.16 60.51 47.36 78.31 99.43 20.27 17.04 28.67 54.03 88.33 51.34 89.03 89.66 28.83 45.09 85.89 96.99 88.05 37.37 77.67 71.57 49.38 39.65 63.51 79.48 74.82 62.14 96.13 73.78 58.96 57.76 76.08 1.16 20.62 90.86 81.50 41.60 38.07 88.89 78.89 74.93 50.45 78.55 80.57 79.34 67.24 10.37 98.95 71.07 -19.35 22.26 19.56 6.45 84.97 35.13 76.27 99.55 84.09 46.43 49.16 73.06 49.45 40.34 90.45 40.93 15.22 44.87 17.50 52.16 15.29 24.88 76.33 56.54 57.66 2.65 72.97 48.57 23.83 27.51 80.36 79.09 54.41 41.66 37.18 68.69 32.79 28.32 92.94 14.49 62.09 49.21 83.04 86.35 98.47 9.47 90.39 63.42 48.21 60.07 7.78 97.29 63.37 84.51 66.69 29.31 43.08 74.17 42.38 13.69 37.80 28.57 46.69 15.93 1.91 25.46 32.33 79.91 93.04 52.64 82.38 64.72 65.49 71.67 85.54 50.86 65.56 31.71 77.60 9.41 67.20 32.69 49.68 43.23 89.10 25.91 98.76 56.74 35.29 29.29 28.65 23.83 11.45 4.23 10.95 68.51 5.99 14.26 46.21 30.46 -89.37 61.62 58.15 59.72 70.22 38.32 27.54 70.78 44.03 28.20 19.23 25.41 60.76 71.16 91.05 0.06 59.39 30.79 82.08 0.67 31.72 17.51 75.10 91.52 51.30 68.25 55.81 96.94 58.23 55.82 88.16 64.42 8.14 75.17 13.81 68.23 29.10 36.39 2.66 6.50 36.40 34.33 37.99 99.52 29.76 67.71 64.72 22.77 22.46 44.72 90.53 80.63 24.41 49.15 92.44 30.69 49.93 43.14 7.92 74.79 10.12 91.55 13.83 56.47 26.41 73.27 53.56 69.14 40.08 12.21 66.14 49.19 31.61 64.92 63.18 38.66 21.91 91.05 26.54 78.39 35.92 49.52 67.56 17.37 15.84 58.13 10.36 77.96 56.70 60.88 78.70 15.43 46.20 22.85 27.83 97.23 59.32 96.64 86.08 84.02 -32.99 50.05 10.87 5.44 67.51 12.51 24.26 82.20 33.71 51.85 24.60 88.31 23.59 73.07 80.34 71.48 99.91 70.97 27.54 72.18 98.86 89.13 0.91 48.77 42.15 38.00 80.85 25.72 70.63 21.37 66.84 3.37 66.54 42.99 67.74 36.08 89.55 32.38 70.77 16.66 27.65 69.35 94.64 62.69 21.34 8.65 71.13 47.70 2.61 82.83 37.25 62.89 30.92 52.70 49.74 91.11 95.07 97.38 72.20 5.21 1.98 5.58 17.77 53.33 88.52 56.68 62.32 59.13 69.07 86.97 32.24 92.91 37.49 54.09 2.40 82.77 57.79 94.38 45.91 86.12 29.96 72.58 41.14 45.93 87.08 68.21 75.96 16.68 69.86 88.74 69.01 67.22 82.23 64.35 69.73 90.91 37.57 22.23 1.32 38.42 -48.14 69.63 98.74 59.89 6.07 94.62 97.85 91.63 26.31 53.25 73.09 60.68 83.61 57.68 98.91 29.17 34.54 8.44 26.25 99.35 61.02 5.30 87.94 86.22 58.22 65.50 84.22 12.68 6.88 83.77 68.73 94.74 42.23 76.56 71.78 71.13 86.83 18.70 68.86 63.64 27.42 14.00 96.82 13.32 53.96 68.07 29.65 96.63 35.14 67.16 47.77 8.81 6.76 15.00 10.47 56.64 44.46 98.87 67.69 82.80 29.52 59.02 31.78 66.06 54.73 46.71 5.58 7.55 90.55 5.08 22.45 92.99 9.11 26.46 65.73 61.34 47.74 27.13 11.51 86.37 27.68 19.52 59.50 92.22 25.40 7.93 82.06 68.11 0.48 10.99 85.38 36.03 86.98 88.57 63.18 60.11 40.55 41.39 41.18 36.27 -78.50 95.09 64.95 75.55 51.52 74.63 33.34 18.06 13.02 82.05 41.82 5.44 63.81 38.08 34.04 14.78 72.29 87.94 9.17 89.95 48.18 80.42 45.04 63.01 95.90 61.51 30.39 18.54 60.25 20.81 71.34 27.16 79.12 92.86 80.38 18.59 48.65 11.58 40.06 69.92 21.16 31.84 14.49 0.96 66.73 27.88 89.33 27.26 7.90 45.36 38.07 57.71 66.21 26.47 22.93 49.39 53.78 4.26 1.91 42.38 0.21 87.83 40.33 97.58 70.98 62.65 32.11 94.19 27.08 95.63 2.07 51.83 0.63 11.51 72.90 33.99 65.07 21.58 1.71 63.51 93.06 83.01 87.26 55.77 92.89 48.42 17.15 93.38 11.56 75.16 93.26 62.98 75.76 93.91 57.30 70.95 97.43 5.18 15.93 64.07 -0.56 16.53 67.44 35.49 82.50 15.56 33.92 37.03 57.22 9.81 4.43 87.15 47.65 85.71 28.43 90.15 38.51 85.21 21.23 47.60 50.36 25.42 22.30 95.46 99.01 2.09 31.50 86.41 52.41 48.78 54.40 9.03 0.32 3.21 83.15 57.76 47.76 38.42 83.76 7.77 15.53 99.96 25.72 86.00 78.30 32.48 41.44 82.32 23.28 18.78 34.35 68.92 37.62 82.85 10.78 69.40 42.81 83.42 86.72 71.97 92.82 56.92 0.66 86.89 39.80 16.65 70.53 81.84 23.38 49.44 42.52 86.20 53.69 78.24 32.38 32.20 15.37 60.66 81.02 79.00 58.73 21.60 72.85 12.66 86.74 45.13 60.78 20.04 51.73 31.06 21.27 72.09 95.54 88.60 3.41 53.43 26.49 3.73 78.68 34.46 -20.46 50.60 78.55 64.45 47.72 34.15 55.46 30.36 65.25 70.96 84.63 90.62 99.03 91.17 21.94 73.90 97.32 92.46 96.51 2.22 86.15 99.78 49.84 38.76 78.38 76.82 21.50 59.06 40.23 56.36 18.79 94.40 88.00 3.90 0.23 46.20 20.73 64.06 50.69 62.44 6.45 63.12 89.50 84.33 49.55 72.48 20.23 33.95 51.30 46.86 43.17 37.97 99.16 46.09 73.58 99.89 32.46 69.32 16.82 94.56 97.12 86.85 27.91 22.78 36.74 73.91 62.67 8.53 83.91 92.72 31.42 64.69 98.79 79.80 93.61 90.14 59.82 76.43 88.51 33.43 4.45 72.27 8.95 2.71 77.78 53.83 13.27 40.76 2.88 27.95 15.23 57.57 97.90 37.01 48.25 96.30 22.31 3.55 82.92 59.29 -81.96 32.45 55.59 27.25 59.12 43.19 45.43 70.85 28.73 12.14 55.38 90.03 92.67 16.61 52.46 24.79 15.35 74.93 49.12 9.83 38.27 67.95 53.75 21.10 46.19 71.66 8.45 46.93 34.43 36.04 37.77 51.68 98.69 32.34 31.97 17.04 63.84 31.82 13.00 9.99 63.95 68.97 20.71 29.89 62.20 48.60 31.77 0.64 77.35 47.99 5.05 64.61 77.42 98.36 5.87 10.24 43.19 25.65 21.90 93.21 20.81 50.03 23.08 28.37 68.89 35.61 54.70 61.21 38.84 50.25 29.00 8.59 97.13 0.92 98.69 79.51 16.19 84.39 68.22 82.30 56.00 69.34 55.19 11.51 54.40 92.94 79.43 47.93 18.44 15.19 40.04 19.27 9.13 8.21 96.43 47.05 0.40 56.48 57.49 48.12 -1.77 9.65 7.57 15.47 66.78 16.78 5.88 86.62 83.51 98.72 44.34 93.36 81.24 79.62 87.36 3.93 94.69 87.58 71.79 11.78 16.87 59.10 21.89 87.52 10.30 12.97 45.43 79.63 37.47 6.22 59.86 37.42 84.86 25.73 63.12 60.36 80.29 40.36 7.69 28.74 61.08 82.21 33.99 33.23 30.58 87.33 3.19 72.93 86.28 24.75 21.72 65.99 26.01 58.72 79.13 52.06 57.27 83.08 26.19 32.98 24.75 98.04 69.92 79.49 39.41 62.74 99.14 4.07 59.58 7.35 0.38 55.15 35.36 35.09 72.03 42.75 4.65 81.18 22.00 2.49 97.54 4.17 5.94 5.10 91.53 49.30 36.98 34.93 75.21 63.89 48.55 17.64 80.20 7.37 93.73 3.40 82.92 7.14 52.87 60.51 -15.04 37.09 37.50 73.84 43.32 9.94 47.78 33.14 30.45 42.85 75.37 72.07 28.09 85.72 21.88 68.28 12.98 6.86 47.32 59.82 81.81 46.43 48.35 45.65 98.60 74.48 96.21 3.44 35.51 36.05 98.05 1.70 12.24 74.13 82.56 69.22 66.79 62.85 70.30 64.38 68.60 27.05 39.99 62.86 84.99 23.49 38.18 98.05 37.87 46.53 95.10 71.51 43.17 6.63 18.43 30.71 3.96 68.21 35.70 85.76 65.89 81.81 6.95 61.19 95.96 78.12 29.74 4.07 9.55 12.10 4.18 6.46 80.75 88.93 10.25 53.26 43.46 25.13 13.15 3.74 58.64 48.68 48.93 1.22 13.82 51.47 6.29 59.74 49.49 2.81 45.50 60.24 64.79 15.92 2.95 15.58 40.77 48.06 62.22 82.18 -12.26 52.13 83.44 69.06 44.00 75.23 24.66 61.47 22.15 18.84 49.86 83.09 39.73 83.74 9.15 8.26 61.31 62.80 76.20 22.90 83.05 1.29 68.81 64.21 92.13 72.04 36.11 52.20 48.70 87.39 37.87 1.79 28.88 85.19 7.48 0.67 43.18 84.46 42.30 90.78 84.42 79.65 7.14 78.20 13.23 17.94 11.08 17.24 83.07 92.48 58.50 95.10 46.59 58.97 50.84 16.08 2.16 63.04 48.42 74.73 60.42 85.54 94.15 86.81 4.52 66.51 19.49 40.98 74.53 46.82 70.04 9.88 76.46 73.86 29.82 67.09 80.01 20.67 77.97 94.28 67.83 2.79 97.57 30.78 14.74 99.09 8.26 88.32 53.43 26.75 31.14 39.52 5.16 23.12 99.53 37.36 49.05 62.34 57.53 75.73 -88.45 16.62 37.85 54.68 31.70 12.35 29.30 43.57 77.85 87.43 41.89 87.07 78.03 18.76 61.41 49.41 31.04 81.63 11.60 20.00 67.59 45.40 86.72 27.17 16.47 13.84 60.45 4.96 7.64 27.49 95.40 21.68 74.02 48.53 52.33 72.18 70.57 63.56 87.78 51.17 92.72 59.70 96.80 38.26 2.25 63.06 50.95 30.62 90.03 84.59 51.21 48.90 53.85 17.72 14.81 55.67 60.01 39.54 83.97 82.89 3.55 16.48 70.54 56.47 56.78 15.51 14.70 15.16 77.51 21.44 52.65 74.56 36.46 41.61 93.55 41.44 83.26 91.12 97.41 58.07 4.16 94.74 76.31 69.80 27.50 85.27 77.09 85.10 86.53 92.35 74.22 66.77 35.15 19.89 57.70 52.66 34.55 75.02 56.94 48.35 -52.11 1.37 97.90 14.34 66.10 72.47 36.82 61.42 35.64 34.65 13.28 10.08 82.48 41.49 97.96 70.07 0.43 88.95 77.50 67.24 76.76 13.12 73.05 24.96 4.46 35.07 7.47 15.26 73.79 44.81 27.74 59.74 38.78 37.39 74.38 70.09 95.73 55.21 87.18 24.79 68.27 95.64 49.21 31.46 67.53 5.16 96.58 89.87 66.04 53.39 45.27 42.39 82.22 90.86 15.33 28.52 31.99 92.95 53.79 95.99 30.58 95.80 95.36 27.66 93.98 39.89 94.23 12.91 56.00 93.71 12.47 17.75 93.95 95.45 30.42 43.47 87.20 15.32 75.39 5.12 97.45 30.58 7.93 36.11 24.80 89.75 58.26 4.55 31.06 84.79 94.69 20.50 10.73 50.25 80.66 0.79 26.07 83.24 77.31 92.54 -86.11 57.61 40.67 65.40 58.64 1.16 62.92 67.20 46.36 18.15 98.05 19.76 6.22 32.64 40.46 38.35 91.17 45.75 97.34 94.53 12.35 15.63 26.84 85.63 80.45 44.82 21.21 2.73 5.11 69.14 91.56 80.16 21.05 2.78 94.46 79.41 21.60 84.52 71.01 20.85 32.32 5.20 47.46 48.84 64.90 96.75 13.15 76.68 84.59 91.85 65.93 39.10 43.15 80.12 49.25 99.21 82.63 10.17 51.13 79.32 33.61 54.54 61.04 35.81 91.75 60.69 60.81 14.28 91.62 23.72 34.18 52.10 49.86 8.91 23.68 32.50 67.04 52.77 65.73 62.54 27.66 20.01 41.89 32.44 56.02 44.60 99.37 10.99 94.85 97.38 61.20 69.39 18.94 11.99 4.80 64.05 79.62 35.85 87.63 38.57 -90.22 68.83 82.73 42.82 91.16 73.27 21.60 38.57 75.97 37.69 25.66 85.31 82.86 41.00 66.17 63.36 60.81 78.61 44.93 97.69 69.50 45.65 32.22 44.65 62.65 91.73 33.17 96.12 77.04 44.11 41.99 60.67 59.71 47.00 75.62 98.69 84.95 65.39 76.72 42.74 29.76 77.88 7.76 49.05 79.45 1.89 16.38 7.54 38.78 46.52 27.33 49.22 67.06 86.91 67.17 23.41 91.04 25.57 4.98 17.48 20.84 10.47 26.27 14.51 96.49 70.09 23.23 77.18 89.94 0.90 76.41 22.61 19.22 19.25 72.24 77.20 23.11 63.34 44.19 79.75 31.45 66.36 17.37 29.80 18.13 93.41 23.44 76.52 65.03 93.31 26.22 13.80 46.92 71.09 96.64 60.04 75.29 58.71 43.10 31.00 -16.47 8.18 58.49 61.19 80.96 78.55 94.01 8.04 16.73 98.96 79.66 42.85 93.56 2.54 71.35 36.38 93.24 1.20 58.25 73.27 51.19 42.28 16.39 98.85 32.03 70.37 58.86 12.38 93.51 96.23 51.72 78.78 7.24 11.87 32.49 76.38 62.35 14.58 43.90 43.76 13.18 48.71 73.52 81.43 23.12 81.24 95.57 44.11 36.06 43.65 4.77 81.00 52.36 54.79 18.65 18.64 94.65 69.51 72.12 2.83 21.46 80.14 95.97 14.68 73.37 56.07 51.62 47.57 87.49 9.12 90.33 88.41 64.92 52.77 52.48 77.09 39.50 26.97 53.56 53.00 2.47 38.21 37.51 53.28 35.11 18.05 6.54 6.54 26.93 1.85 77.52 82.33 12.95 76.99 90.71 24.52 60.99 25.88 62.91 25.06 -29.24 99.90 19.76 60.43 73.18 18.35 46.86 52.67 0.08 12.05 43.44 61.94 26.87 72.25 46.03 63.15 90.59 20.20 25.04 0.85 55.86 58.78 64.63 11.27 62.73 19.09 85.79 34.94 61.28 89.09 71.96 47.77 17.00 4.99 70.88 82.44 76.12 33.29 25.33 47.44 13.90 60.35 90.19 91.14 45.91 73.50 81.83 59.53 36.16 99.17 39.03 61.92 64.03 17.94 68.36 0.27 54.13 17.10 72.16 61.92 15.49 60.68 94.63 82.19 49.54 89.07 82.79 62.29 18.98 12.55 46.85 14.84 94.98 46.91 49.86 23.95 35.51 7.66 95.95 52.73 92.18 68.18 2.02 16.37 45.73 91.88 59.90 5.82 18.20 17.76 3.87 67.10 73.30 66.43 40.41 78.38 5.73 37.59 86.13 70.40 -43.36 43.92 30.54 3.25 40.34 76.83 62.58 2.83 74.70 78.16 40.59 12.21 23.61 75.33 39.84 48.99 73.46 28.45 82.40 43.62 35.51 44.53 4.34 88.44 40.37 17.35 50.50 1.83 38.02 15.38 86.85 94.03 81.50 66.65 83.86 1.82 57.27 79.49 26.31 99.78 71.24 22.05 23.85 53.75 68.30 47.34 40.24 58.64 89.30 33.71 83.50 52.38 41.53 62.77 98.17 71.26 48.33 62.45 10.82 94.86 78.05 24.13 61.91 74.66 72.71 45.05 37.32 47.53 27.04 48.63 86.29 87.92 84.05 95.61 67.99 15.60 40.84 2.63 44.31 13.33 20.81 73.64 41.64 94.01 7.62 68.82 17.93 66.34 59.85 23.27 95.14 74.00 81.89 20.96 15.30 28.15 65.09 31.52 71.49 48.75 -34.03 48.92 1.44 57.75 93.33 35.32 53.34 92.99 82.48 25.50 29.26 90.38 57.95 85.88 55.80 98.82 19.79 46.89 32.93 18.35 40.17 60.34 2.95 33.25 30.67 93.38 47.56 26.36 73.92 34.86 7.15 45.57 50.11 71.41 7.80 43.56 72.61 89.97 83.63 10.35 58.43 24.03 36.98 12.95 42.66 99.65 60.46 14.98 95.59 17.25 23.02 70.92 26.86 77.85 44.24 60.47 97.87 42.83 7.96 11.32 13.13 83.97 70.88 91.97 26.23 21.26 73.42 43.54 42.09 79.36 27.22 75.37 3.53 36.96 7.68 84.20 2.84 58.19 74.24 82.44 35.14 90.83 12.76 95.33 2.10 55.33 66.90 2.58 4.60 87.36 89.09 24.65 86.58 56.98 5.91 98.32 56.84 34.98 1.19 92.18 -89.83 6.62 93.83 46.11 46.72 73.61 64.24 93.84 34.60 0.99 30.39 49.88 54.83 70.45 1.19 4.19 58.40 75.87 99.91 20.59 90.47 63.27 61.33 14.44 46.70 82.66 96.21 66.72 43.21 10.93 76.74 6.12 75.27 34.28 16.19 7.04 41.24 76.25 17.90 28.35 37.91 72.07 61.36 27.87 5.79 91.62 2.04 78.83 67.83 14.93 91.14 16.03 32.34 13.85 77.96 72.40 14.92 92.48 3.52 12.73 98.11 69.25 47.13 27.87 51.59 57.05 41.26 75.55 65.03 47.86 45.63 27.41 48.58 76.65 66.14 84.99 14.61 34.53 22.20 44.49 3.82 78.55 87.74 78.74 37.61 53.03 6.48 11.93 93.09 85.44 41.39 72.78 40.75 35.02 48.01 27.36 37.29 80.17 32.69 84.84 -16.45 7.28 84.87 81.62 61.94 54.07 58.40 27.32 39.42 82.52 22.64 31.49 78.38 90.61 53.28 37.84 70.07 29.63 14.05 68.34 11.65 74.77 41.02 75.03 11.56 11.21 28.22 38.57 96.66 89.76 19.46 2.09 82.34 0.03 43.27 0.30 7.36 39.70 55.65 28.81 81.00 9.27 56.11 63.37 78.31 27.07 30.39 62.35 36.83 94.74 39.57 34.88 26.03 71.02 16.97 32.13 38.99 32.24 87.64 15.38 55.14 98.25 7.78 45.01 35.42 80.77 47.77 35.37 79.51 75.85 82.48 34.17 66.36 0.47 71.69 58.41 84.52 11.75 50.53 54.70 56.99 79.83 55.92 37.90 52.77 93.85 10.31 59.71 66.34 92.33 99.70 5.32 68.10 43.05 69.72 99.15 24.12 98.12 84.59 89.55 -47.82 36.73 64.04 31.71 24.89 48.57 28.75 0.42 93.05 66.95 84.23 9.91 40.55 89.15 82.20 22.46 5.12 73.33 69.74 56.03 98.10 10.54 62.30 52.14 8.88 5.16 90.16 66.80 57.95 62.34 9.45 54.52 60.56 71.04 69.07 74.22 97.21 72.75 73.89 28.01 29.21 22.75 17.73 7.08 95.08 54.33 98.04 88.71 54.27 20.38 17.64 26.81 61.82 74.80 7.55 75.75 53.84 22.92 34.49 22.62 7.57 87.94 28.76 3.13 71.46 64.64 24.41 76.20 64.23 42.78 23.24 63.75 53.05 58.77 42.73 79.61 74.18 8.43 7.20 50.72 65.40 28.84 52.71 48.12 13.95 37.77 72.25 20.48 27.21 3.83 18.53 52.86 1.57 81.02 78.58 18.90 72.19 64.56 50.84 54.91 -13.85 17.76 46.19 71.30 13.10 58.98 86.94 18.90 37.32 94.64 76.47 40.25 64.12 3.44 97.28 29.38 27.16 93.53 28.82 51.00 47.97 20.77 94.79 89.37 55.53 3.75 26.30 34.97 15.37 17.47 23.25 82.13 34.78 15.12 86.81 28.32 6.31 91.37 13.98 14.17 80.45 37.82 44.52 62.73 53.74 74.12 62.24 9.36 18.86 41.52 95.74 2.90 29.94 29.45 96.54 60.24 94.94 23.11 88.03 66.99 48.94 24.82 17.10 34.62 23.63 80.58 61.76 91.71 28.10 72.08 1.30 17.47 58.04 64.16 17.67 3.31 87.42 39.73 38.96 60.53 57.21 93.86 30.50 49.72 70.70 80.27 40.66 22.93 42.76 99.64 31.16 90.48 19.06 68.00 25.74 52.45 0.10 15.56 39.61 21.43 -40.88 23.10 43.19 92.07 7.46 74.62 30.80 79.69 85.01 0.43 78.71 35.19 32.99 92.98 39.44 4.85 34.37 75.82 26.60 50.60 64.97 37.87 78.34 84.68 72.26 21.61 87.50 89.57 37.93 6.38 8.55 46.97 9.66 9.53 62.22 76.61 68.72 37.88 58.40 74.86 6.52 22.65 60.96 78.00 43.66 12.34 59.80 36.75 94.52 62.16 54.12 86.65 3.81 53.35 97.26 56.48 6.48 6.03 25.98 46.61 37.28 90.20 63.83 66.51 27.66 9.67 86.39 69.49 85.70 56.89 32.08 95.65 33.36 82.33 4.51 25.81 59.87 38.06 94.56 53.77 0.06 0.87 93.47 66.40 37.11 10.65 83.61 30.70 33.55 60.03 92.57 89.85 61.23 65.76 7.00 44.49 29.91 55.00 66.68 93.22 -12.83 42.31 62.45 84.90 97.78 34.68 88.30 80.40 45.34 45.68 52.28 39.45 12.69 18.41 47.42 42.37 25.98 1.76 51.84 90.02 12.47 15.45 30.38 12.72 11.50 1.68 1.80 43.86 91.80 25.02 44.66 0.07 21.18 14.57 2.64 16.17 87.38 39.86 10.22 19.46 68.16 57.27 63.18 81.63 39.68 97.47 3.00 28.57 96.57 51.25 0.36 4.28 49.65 5.98 9.06 27.62 5.10 41.97 95.78 74.85 21.97 46.41 98.43 47.50 32.10 67.61 76.34 88.70 49.06 36.99 62.48 73.55 17.25 3.43 45.03 46.30 65.42 33.07 65.04 15.14 75.65 35.04 94.89 70.49 43.18 65.82 94.71 71.32 37.40 29.08 44.87 47.82 73.68 43.05 71.47 39.08 72.08 94.51 35.93 25.88 -41.45 73.12 21.59 79.84 25.90 21.30 79.10 72.92 37.51 33.25 55.03 16.36 36.23 49.47 57.95 56.70 1.44 88.81 71.04 22.40 95.82 92.91 80.43 12.39 74.48 34.21 80.59 59.79 15.97 94.18 21.99 60.95 5.24 32.97 49.60 4.95 76.81 65.76 95.90 57.57 38.17 65.70 64.27 44.01 67.87 11.35 60.60 87.19 5.08 29.29 63.14 86.97 68.18 36.95 60.40 23.98 98.85 70.83 10.81 40.03 52.05 54.73 64.93 48.88 6.31 67.32 93.27 83.29 48.60 58.24 97.54 45.08 53.78 23.50 61.18 20.60 85.13 87.47 83.34 65.72 79.85 34.52 72.01 89.62 84.82 84.68 99.24 23.25 77.74 55.09 73.39 69.70 13.65 96.01 95.58 19.59 39.13 84.54 61.98 86.05 -4.09 41.25 61.81 59.73 84.70 50.60 20.79 32.17 9.53 3.96 10.89 34.38 53.77 32.52 17.65 76.31 92.85 84.27 74.16 96.83 76.72 93.34 38.30 89.34 43.51 61.94 28.14 87.55 82.08 85.19 73.42 6.48 92.87 61.24 13.10 7.01 9.41 2.82 72.60 70.51 76.69 78.79 86.15 98.52 48.37 42.28 23.74 90.07 72.05 98.26 84.55 65.95 69.47 54.14 71.25 5.56 72.59 74.40 17.96 55.04 62.69 67.13 80.72 30.65 48.81 1.74 15.66 36.61 84.69 29.85 4.45 67.54 8.62 15.98 34.63 32.17 39.97 2.82 34.89 34.32 60.11 78.06 54.48 66.67 82.62 31.53 61.09 7.74 58.95 63.26 7.29 39.95 73.62 83.40 59.48 72.19 87.03 33.39 50.37 50.49 -56.21 64.33 73.23 64.15 31.60 83.85 40.94 91.44 39.33 78.17 5.22 14.62 23.25 35.92 21.47 20.88 46.43 95.17 76.47 51.19 43.94 74.28 66.27 99.36 38.42 68.07 96.04 93.58 78.36 4.47 74.14 30.54 74.42 86.48 77.43 40.46 13.63 12.01 72.92 27.84 96.21 53.74 93.44 89.93 79.06 60.62 44.21 78.08 80.60 95.76 11.05 58.13 73.78 74.16 48.91 69.11 88.15 24.79 51.53 84.46 98.93 14.58 57.60 60.92 21.02 3.11 33.57 99.34 98.08 77.03 13.27 14.66 39.75 2.07 69.70 72.91 42.05 86.99 73.80 25.33 35.12 13.10 89.41 64.97 55.61 51.05 94.14 81.14 97.71 39.27 16.50 81.52 66.32 33.56 36.70 84.12 50.08 3.19 65.45 50.94 -79.06 27.44 96.72 93.21 55.63 4.36 13.12 47.93 13.28 32.52 44.19 35.65 88.51 37.61 72.62 3.60 81.57 62.46 52.58 35.86 10.77 78.40 49.45 93.04 54.10 21.50 18.11 94.32 12.55 36.31 83.11 7.87 91.27 59.93 38.74 11.33 77.00 22.53 62.63 10.17 23.37 84.30 46.43 20.72 21.20 71.76 50.28 90.81 56.88 32.87 9.79 30.99 17.06 20.68 53.29 36.50 49.18 11.57 33.20 3.28 46.26 64.60 76.72 8.31 54.82 9.32 40.87 80.82 2.68 47.95 66.69 54.55 23.21 62.82 66.95 86.21 45.26 88.02 24.70 52.01 48.55 80.83 48.41 69.80 8.87 1.45 57.36 45.37 94.30 38.82 19.41 84.85 15.90 99.98 49.63 3.83 77.44 55.56 85.02 4.67 -32.59 89.47 78.18 65.76 69.29 13.38 29.18 88.29 38.41 15.79 89.91 87.59 4.88 83.39 7.76 71.76 88.54 72.05 87.09 15.44 71.65 8.79 2.51 84.23 17.52 33.46 94.75 26.51 24.86 73.57 87.54 53.30 5.42 66.77 1.44 94.90 90.94 35.67 59.40 26.22 37.61 0.81 71.38 63.79 93.41 8.85 24.95 96.92 22.29 79.45 2.19 48.18 60.28 48.60 2.55 73.81 53.26 87.99 81.48 62.05 57.68 14.25 67.31 47.39 80.01 98.20 26.73 24.48 95.03 38.83 48.39 38.88 36.14 25.25 94.05 42.17 29.62 16.49 56.38 14.94 90.59 23.62 66.33 90.30 88.32 52.87 64.55 54.07 90.07 45.39 68.32 71.53 31.06 34.58 98.40 35.15 88.23 87.93 84.76 87.96 -31.37 61.74 57.80 32.16 54.53 28.76 34.14 96.09 66.88 78.45 56.78 46.79 19.77 27.66 1.27 13.47 25.14 4.71 78.27 6.96 6.64 24.22 75.22 45.43 0.99 18.00 87.39 64.81 85.06 37.50 26.09 77.99 89.85 55.67 82.42 92.18 37.44 7.54 95.33 19.85 32.24 96.09 31.43 30.27 95.12 8.24 99.66 52.57 29.91 12.30 34.65 8.04 19.59 20.78 2.24 53.10 6.30 99.56 47.62 17.25 81.60 80.02 12.83 37.40 40.23 47.80 1.59 20.29 39.12 85.06 84.35 73.69 90.31 87.42 77.90 48.99 35.33 14.98 90.82 54.36 56.02 44.45 31.39 98.14 78.82 42.17 25.26 60.38 39.76 22.07 56.02 38.03 48.84 89.10 6.10 52.54 1.65 54.80 18.16 40.05 -30.11 17.41 26.89 98.46 34.40 43.58 76.37 44.29 24.44 56.65 89.41 59.69 53.88 93.63 82.51 78.38 47.45 17.12 5.93 65.12 91.09 9.83 93.68 79.93 4.84 24.78 40.01 55.31 15.98 11.19 39.58 70.94 77.46 65.58 45.74 74.76 72.01 35.00 51.26 94.15 42.13 63.88 25.66 41.91 98.16 63.20 32.69 79.85 87.43 53.61 21.30 68.97 67.11 85.75 48.80 12.41 14.42 24.60 97.49 86.41 15.66 9.44 99.56 81.04 18.89 40.69 22.60 17.63 9.17 66.32 72.85 79.11 44.31 38.04 79.53 85.42 37.21 74.66 38.50 38.43 23.12 55.66 16.09 94.00 98.45 35.09 18.08 33.18 88.92 32.17 66.75 97.33 90.21 60.06 41.43 93.19 22.66 60.36 14.73 64.64 -8.95 64.37 62.07 83.51 97.74 37.76 31.60 69.16 97.64 75.36 16.17 16.62 29.40 32.15 20.71 89.36 46.15 9.89 19.05 52.74 20.19 8.83 73.42 52.14 80.75 98.95 2.01 14.26 81.15 30.52 59.31 28.04 46.54 9.33 70.10 97.68 33.18 66.25 28.32 52.99 55.94 69.49 56.55 31.34 6.77 52.57 0.35 99.88 32.55 95.18 42.05 49.94 99.70 32.47 98.32 4.58 78.88 52.49 17.90 93.24 15.94 83.51 77.27 93.60 16.31 3.36 35.60 84.06 25.54 41.24 32.04 61.48 76.83 56.69 5.81 91.18 95.96 9.28 71.90 60.66 17.71 91.93 51.79 1.97 19.56 74.42 95.41 11.29 61.42 44.36 54.86 22.33 69.20 28.87 15.15 71.65 96.21 83.80 33.88 55.08 -60.03 39.65 71.63 30.26 50.97 37.39 18.96 73.79 55.89 74.17 88.68 78.34 56.39 45.51 49.07 79.61 85.64 51.60 25.30 84.92 91.72 62.55 97.31 39.34 51.61 15.69 2.66 22.20 13.24 99.55 75.15 23.37 7.37 26.02 81.77 23.59 41.31 10.46 51.22 87.01 5.63 80.97 69.92 13.26 43.52 95.37 72.74 5.69 15.39 65.81 93.15 75.82 73.63 2.63 89.13 46.58 84.31 72.77 18.90 10.60 17.56 78.65 94.48 98.51 34.20 56.56 54.32 2.54 99.60 82.45 36.28 77.53 46.56 89.60 74.87 55.59 43.18 80.74 65.75 42.52 88.92 65.07 24.13 70.74 79.93 49.80 94.83 45.30 33.49 76.17 15.87 99.93 64.88 21.76 28.74 5.99 72.58 30.64 39.67 44.51 -37.36 22.72 13.90 68.98 43.00 54.18 74.57 42.33 48.77 53.49 88.98 28.84 2.14 22.70 1.91 25.13 85.86 10.57 67.07 82.84 86.87 70.25 73.92 79.56 35.90 87.71 49.44 44.74 77.07 98.27 9.31 41.96 68.50 60.46 0.69 40.60 72.48 96.00 81.54 36.92 89.70 59.04 26.33 43.19 53.08 33.83 50.48 31.88 53.37 68.43 19.84 40.31 76.27 84.70 91.81 52.69 97.11 45.09 64.52 48.32 62.12 52.02 53.50 13.33 11.03 17.39 75.72 68.53 34.63 28.21 27.55 82.74 44.95 12.85 24.63 92.47 14.29 37.68 87.24 45.55 63.96 63.05 44.05 25.14 10.73 4.27 12.96 57.47 48.66 33.65 30.31 80.55 29.10 97.33 95.05 80.43 11.09 70.26 21.08 60.45 -70.61 24.13 85.76 84.84 18.07 87.96 49.51 82.93 94.84 64.05 31.77 64.55 26.62 59.89 13.86 5.33 56.48 17.25 89.34 44.97 38.27 28.40 73.53 92.19 22.22 1.93 45.87 37.01 88.71 76.55 95.35 20.03 96.93 22.85 87.77 41.25 35.75 57.53 76.04 90.38 92.68 23.49 89.12 78.37 9.31 15.16 82.31 65.65 69.69 2.92 46.85 18.79 22.89 27.12 55.12 63.14 63.32 6.70 8.73 53.41 86.23 29.07 86.69 76.55 45.10 45.05 57.32 74.61 21.08 18.34 39.06 97.98 75.55 17.19 8.00 9.18 30.97 28.59 14.95 22.60 44.31 67.51 65.29 23.41 84.47 77.71 57.10 25.24 57.55 82.70 2.56 79.30 71.33 58.71 92.45 27.07 85.50 96.06 58.07 61.09 -65.42 43.47 3.36 14.38 86.94 75.96 7.50 93.70 16.52 90.40 25.87 35.57 81.06 10.06 40.45 24.48 18.93 45.57 3.10 94.68 19.35 58.26 63.27 94.66 17.84 39.07 94.96 45.93 79.94 84.02 23.43 13.28 91.24 84.83 95.83 74.03 22.55 55.71 90.97 90.41 69.79 80.64 11.38 76.35 60.13 84.36 44.31 13.56 59.19 68.25 56.65 78.02 26.12 12.29 37.38 97.95 5.01 42.04 68.69 64.37 55.98 8.29 55.79 20.75 53.20 50.23 98.25 52.97 15.09 13.28 80.07 29.29 4.61 96.12 73.59 38.61 85.20 38.33 46.80 38.99 5.29 73.42 83.13 14.41 33.90 30.09 64.38 29.34 55.04 74.05 60.08 82.30 88.31 46.07 77.01 39.94 83.94 92.86 35.39 17.11 -63.32 70.77 32.10 19.47 46.70 97.31 53.40 10.81 47.09 33.52 25.03 84.87 55.64 1.57 20.67 10.03 3.47 73.63 28.04 51.94 15.92 0.37 9.04 44.12 58.99 19.91 82.49 81.20 49.98 19.77 41.00 62.04 53.25 96.52 48.53 38.62 39.71 83.04 11.91 87.18 49.81 16.38 12.20 69.84 8.54 19.44 88.19 82.23 13.31 46.12 99.22 78.03 69.23 19.01 17.80 71.98 0.59 37.19 99.43 22.45 93.98 35.83 46.81 39.76 26.46 76.38 65.04 30.70 87.00 64.33 33.15 93.79 77.15 58.26 91.43 9.07 98.70 53.69 55.34 71.14 72.13 80.83 17.33 8.06 92.13 83.70 69.14 45.18 82.28 77.02 97.49 69.13 59.30 50.40 98.81 41.84 66.47 64.26 67.71 56.70 -32.45 82.18 53.29 12.55 24.06 38.33 96.37 96.17 2.50 70.78 25.04 51.90 88.47 76.80 72.38 12.90 25.48 97.29 10.97 13.19 92.02 1.54 29.35 79.41 28.27 83.31 51.34 90.24 3.55 28.84 30.82 36.01 2.23 34.89 1.87 96.77 59.28 3.25 94.03 22.36 68.98 29.69 72.86 68.60 24.39 21.18 61.55 74.79 87.01 86.09 33.81 62.54 77.27 43.18 73.15 7.67 66.75 64.29 73.97 52.50 84.33 24.81 6.07 39.65 32.31 83.13 78.13 42.76 4.28 18.36 98.81 10.22 13.30 81.74 30.81 10.60 82.18 7.17 77.47 82.01 85.73 56.54 14.91 57.35 20.83 9.33 56.62 70.73 20.40 16.19 91.72 48.07 59.94 88.18 23.16 54.47 5.04 13.18 34.42 77.49 -67.34 37.49 45.64 23.89 68.08 21.67 69.54 74.60 46.18 14.38 6.91 79.98 1.54 97.60 61.53 50.35 20.57 32.74 43.70 24.30 74.08 40.25 35.62 98.08 24.08 99.81 27.58 79.60 46.63 17.68 33.80 96.60 29.80 65.04 64.78 23.65 38.08 6.09 75.71 36.30 76.68 95.57 42.65 16.10 83.39 92.24 93.55 15.98 30.34 42.56 30.65 22.22 59.19 75.83 75.91 30.66 73.73 51.76 36.35 33.48 83.23 80.06 6.84 34.65 78.24 36.82 52.95 99.65 25.56 74.81 89.66 21.31 70.54 25.91 24.66 1.07 70.46 5.13 67.83 45.64 12.54 43.24 92.48 33.15 48.09 23.72 0.52 93.19 2.71 85.50 50.65 74.50 60.38 92.01 1.68 21.78 27.72 92.82 73.95 63.61 -52.80 10.69 30.69 21.84 62.78 58.03 81.55 15.17 67.21 20.21 15.38 35.79 7.98 40.97 35.79 42.25 5.48 63.20 64.77 84.63 25.16 6.17 11.19 0.09 35.41 60.95 41.87 98.95 77.46 69.94 20.50 17.70 8.63 18.60 18.33 11.79 73.10 16.32 73.74 8.01 44.03 4.78 10.55 67.14 80.54 27.00 61.35 0.46 65.62 52.07 39.17 99.68 44.62 42.64 9.44 31.43 5.85 22.91 74.21 44.24 79.26 90.81 96.24 84.32 67.56 68.32 73.89 56.20 36.20 0.61 6.15 43.63 6.65 84.52 78.68 89.63 91.28 68.48 94.81 93.93 67.90 72.06 28.33 60.70 83.18 88.82 15.18 40.67 41.26 74.91 41.12 22.92 66.91 44.22 66.24 90.23 84.56 41.09 26.96 31.58 -55.90 15.72 63.30 21.38 93.54 53.94 30.68 74.60 50.47 30.23 66.75 9.34 44.99 76.56 73.91 25.24 27.04 40.71 62.21 89.31 40.20 86.42 73.19 58.80 14.99 17.59 18.29 96.05 44.07 52.55 99.92 41.98 68.76 57.43 64.00 49.38 46.55 74.48 40.05 20.90 38.84 54.88 16.85 42.59 50.03 61.01 73.19 55.90 51.48 50.62 84.20 42.14 27.91 63.97 29.62 24.85 96.80 91.42 95.29 76.55 46.43 5.96 16.75 69.44 58.77 82.24 53.78 1.23 96.03 4.44 88.70 26.98 1.75 59.83 39.95 50.12 43.82 78.16 3.80 63.33 10.84 11.65 55.12 79.99 35.74 33.39 67.10 47.85 6.28 10.15 36.63 77.99 78.55 36.59 18.28 26.24 2.21 2.54 8.84 99.17 -38.32 90.81 2.08 12.24 82.23 24.51 35.00 24.14 12.00 16.03 89.74 87.51 34.04 10.32 21.71 81.06 57.70 39.68 72.59 2.54 92.09 26.57 39.36 1.48 63.96 33.25 64.57 27.78 65.94 44.68 17.34 68.50 6.54 71.11 16.03 60.78 46.62 81.55 38.91 70.45 74.12 8.54 88.87 40.67 85.19 87.49 76.83 82.22 41.35 67.46 56.66 79.95 33.28 74.69 55.72 26.99 86.85 77.55 19.19 44.89 89.16 37.16 97.14 78.38 41.77 99.28 43.66 37.98 72.11 64.63 74.98 0.90 10.58 52.80 87.33 67.10 71.75 51.93 3.26 14.01 25.31 24.16 8.50 88.38 35.62 88.74 26.80 66.86 14.67 43.43 86.97 34.40 88.14 84.21 94.36 89.01 88.83 64.25 2.42 25.21 -52.79 43.34 92.81 34.92 97.75 95.65 43.81 8.08 72.30 74.00 18.33 0.22 47.56 50.46 47.50 41.07 54.63 59.82 40.44 63.38 9.61 11.47 98.18 4.08 67.77 31.98 92.17 98.75 29.41 6.99 78.18 94.60 27.40 99.81 81.84 4.05 69.91 19.73 87.14 55.12 11.37 83.81 72.68 96.75 87.75 11.93 39.48 33.25 22.67 19.54 31.70 62.45 10.16 74.04 70.08 21.13 37.07 85.92 30.10 94.86 89.08 99.24 94.33 47.27 0.06 69.25 68.42 3.34 54.36 76.58 11.25 4.58 96.97 74.93 2.06 43.48 5.41 92.10 25.62 77.73 13.00 2.44 94.46 27.98 14.88 77.76 26.97 21.67 54.71 21.89 84.60 18.79 78.08 13.91 88.02 51.70 51.01 69.89 90.53 88.93 -89.94 57.18 23.01 29.61 27.70 57.06 78.68 22.78 79.95 94.23 76.48 46.35 80.63 14.08 33.57 58.33 43.06 5.37 81.98 80.58 7.25 40.29 64.28 40.38 53.16 83.70 88.69 24.39 87.28 50.22 29.35 87.90 0.86 57.47 25.08 36.44 63.08 73.90 27.19 78.55 46.44 23.06 2.54 69.68 50.04 95.23 4.24 51.59 62.50 86.58 79.80 47.47 93.71 29.87 58.69 79.14 92.51 83.83 85.03 62.58 12.89 66.48 73.95 68.31 58.79 82.48 65.15 27.00 40.55 51.86 56.01 80.41 13.63 20.81 29.67 48.04 9.18 76.59 82.31 77.89 24.03 65.96 76.45 21.21 7.74 29.82 70.00 69.46 57.25 52.33 36.47 0.29 40.81 54.48 26.56 97.91 35.21 38.84 49.49 62.20 -77.02 16.39 16.80 98.39 95.81 78.87 41.91 25.82 38.84 55.80 77.62 44.74 22.53 67.75 5.66 78.85 38.52 55.64 81.68 30.96 25.06 97.04 95.46 22.67 36.78 13.70 0.67 63.32 31.35 46.08 55.40 6.73 20.46 72.20 47.68 78.41 76.16 81.47 74.53 76.32 70.05 53.81 5.59 98.06 11.06 47.00 34.25 65.98 46.56 55.89 81.72 84.44 81.29 74.25 1.38 85.70 13.26 33.13 22.31 34.62 3.33 93.75 34.86 99.38 5.25 82.56 14.38 79.87 95.51 7.18 75.73 47.01 26.23 54.06 35.69 87.93 86.42 8.37 55.65 99.52 79.12 53.55 59.78 89.29 88.72 75.38 99.09 3.22 29.95 99.92 59.64 16.11 98.01 88.14 28.85 80.61 26.87 95.56 64.17 61.44 -57.59 10.18 94.60 29.37 42.02 55.98 10.21 88.91 9.80 46.91 1.43 54.08 82.04 23.77 0.93 73.30 53.61 96.25 44.93 69.70 16.39 99.11 74.85 3.38 28.04 50.94 36.63 35.68 25.30 81.16 18.85 1.44 70.57 52.51 15.67 41.38 63.25 69.98 15.22 68.27 43.33 4.97 20.26 9.45 86.66 0.97 4.65 57.53 6.99 34.52 1.84 50.80 28.23 37.46 84.17 84.96 34.18 36.51 4.58 26.97 19.56 27.70 1.07 19.34 61.99 68.68 25.04 15.05 31.39 17.46 86.11 10.10 2.11 98.60 36.63 34.97 24.16 38.80 50.76 81.76 51.26 17.06 99.28 19.45 28.17 17.08 10.81 60.91 36.98 97.65 85.82 51.97 8.46 55.74 90.15 10.62 26.62 72.17 42.93 23.70 -79.35 34.03 5.57 3.40 3.65 23.30 80.66 36.63 85.28 16.26 26.95 56.47 24.14 77.84 15.75 32.25 78.50 22.51 61.75 59.04 97.07 40.17 62.42 82.75 79.21 69.62 20.25 11.44 61.22 4.74 99.29 6.46 7.74 78.30 5.91 54.56 39.60 50.88 91.79 2.03 22.38 19.98 42.26 12.62 25.55 59.42 2.46 50.67 47.94 68.90 73.92 70.38 87.91 92.09 24.99 97.00 78.62 68.13 53.44 0.43 82.07 98.93 5.03 44.95 61.33 42.51 12.87 65.07 73.78 62.31 98.88 55.11 26.86 36.37 30.03 65.37 34.64 23.61 17.70 99.54 96.68 52.19 88.13 69.99 65.04 46.14 0.40 54.66 14.55 79.21 80.92 39.41 37.36 11.18 87.55 78.06 14.80 24.61 93.96 48.93 -3.63 6.34 25.90 51.77 35.13 95.22 58.28 37.53 24.83 28.85 32.78 21.64 52.42 70.09 67.28 66.27 21.51 72.53 71.91 17.45 14.52 68.40 58.10 43.41 28.87 3.31 40.69 75.99 89.86 52.07 18.24 95.27 71.94 66.74 69.78 53.42 44.79 76.25 47.92 45.58 31.38 86.64 51.16 11.23 71.40 43.28 87.21 98.06 82.59 22.61 61.05 75.32 75.57 41.63 88.31 54.92 35.45 97.43 63.91 91.61 48.09 91.55 21.58 21.38 27.94 26.23 98.04 87.16 64.31 14.48 99.44 58.88 79.13 23.70 64.91 31.65 93.24 4.56 40.48 79.35 72.34 95.09 96.30 61.17 31.56 38.71 4.91 48.71 14.25 42.67 61.96 26.78 24.78 28.31 70.43 11.82 47.24 25.17 38.31 0.56 -35.16 92.84 51.27 60.87 98.87 58.04 51.48 1.88 65.96 64.28 75.95 37.92 80.14 46.03 73.15 86.08 18.39 16.95 4.66 13.95 53.96 86.12 56.66 41.88 13.44 99.65 80.42 20.62 55.30 5.94 93.60 61.23 42.47 57.16 35.89 35.69 25.74 62.15 63.22 18.47 62.20 2.55 86.94 88.40 16.46 35.12 49.98 45.27 89.53 32.10 96.05 52.09 63.17 65.79 0.88 58.37 93.97 38.76 51.67 22.66 64.14 48.16 35.45 91.35 87.76 83.77 75.46 76.57 93.31 27.30 13.74 0.92 56.88 36.51 72.82 49.22 36.34 14.06 34.86 6.03 90.96 53.59 28.63 70.27 70.82 99.12 16.83 14.63 96.07 25.02 97.19 67.68 0.25 92.93 9.91 9.52 59.51 19.66 99.12 12.38 -55.81 63.65 60.71 25.12 66.82 52.67 66.49 17.70 65.82 70.35 88.66 9.96 76.23 81.86 99.36 49.79 71.30 38.98 93.34 93.62 23.80 49.92 87.24 81.39 39.56 35.86 34.58 37.92 69.42 33.69 80.39 79.78 19.70 42.78 42.22 5.86 50.96 53.41 60.14 23.33 40.69 39.12 5.24 51.11 13.53 66.09 65.71 43.91 2.75 60.92 80.51 26.75 46.96 10.91 80.29 95.87 4.92 74.01 64.36 1.58 60.17 87.81 99.50 63.41 71.58 54.84 61.15 87.27 84.35 26.22 35.77 27.43 34.22 74.33 32.92 53.12 76.79 30.14 92.64 1.87 88.62 36.79 72.81 85.06 15.65 53.55 10.83 38.38 49.88 26.01 0.19 33.93 44.93 30.30 47.12 22.97 71.34 25.07 9.35 56.35 -26.37 17.04 31.75 75.93 11.27 15.95 14.77 7.85 69.79 92.58 3.77 19.89 24.81 40.14 96.55 30.90 65.34 67.00 18.39 87.49 26.80 93.94 11.49 46.30 25.58 21.79 88.48 67.99 95.10 96.76 39.22 76.05 4.20 39.41 84.99 7.02 25.46 13.38 47.28 30.66 16.85 99.78 44.25 96.05 70.87 46.14 74.01 70.74 28.18 30.17 3.72 15.30 54.06 65.83 24.17 8.57 78.33 35.81 68.89 56.94 4.27 35.43 63.77 44.91 53.70 24.67 31.15 0.99 1.94 45.12 13.28 67.77 45.05 15.45 12.38 20.73 8.10 72.56 75.28 38.58 54.31 80.57 99.99 37.51 90.91 99.05 96.12 73.51 19.77 47.59 60.64 3.76 90.03 89.52 0.81 48.62 71.83 72.58 48.62 99.76 -77.49 97.91 7.55 78.54 55.63 74.90 73.41 0.81 37.72 34.42 61.37 78.31 87.52 42.95 37.81 3.53 1.49 83.26 16.31 91.11 5.61 3.16 9.84 54.48 66.37 41.10 2.20 71.20 47.55 50.48 10.71 33.00 26.86 69.84 0.55 11.06 16.19 27.00 26.65 72.10 38.08 65.47 69.26 16.41 1.26 53.48 19.12 65.57 67.05 18.16 64.53 10.92 73.07 73.62 72.81 53.61 97.64 12.84 81.67 7.58 97.29 98.90 48.71 38.78 84.51 79.17 9.42 59.98 46.83 19.73 5.13 20.58 41.55 97.06 52.30 93.60 18.49 15.14 3.47 42.43 10.75 7.55 27.60 73.74 36.51 96.25 94.56 7.06 46.22 34.14 14.06 57.58 57.10 88.02 56.48 0.64 17.51 99.14 92.44 15.14 -94.74 7.34 77.17 48.20 8.22 85.43 26.35 86.52 85.19 46.38 49.63 72.75 6.16 76.42 3.15 97.84 68.85 74.35 11.87 81.41 61.10 2.07 41.69 19.51 69.45 10.28 89.48 75.66 22.53 46.16 23.11 29.83 48.21 12.94 60.96 42.11 6.47 98.27 45.53 19.32 19.48 26.05 85.96 53.81 71.15 35.53 54.83 83.04 92.53 98.28 74.31 47.47 77.21 82.37 53.22 4.79 70.26 11.66 24.43 63.73 55.27 45.94 51.11 64.39 13.43 19.00 43.21 84.31 23.99 0.79 52.10 25.88 39.53 45.64 97.68 54.00 60.26 32.73 90.97 26.80 49.74 67.85 46.77 76.89 49.21 3.64 65.47 21.12 30.03 54.06 61.99 45.12 13.09 71.78 77.31 6.73 61.51 12.92 1.46 33.88 -45.83 63.72 33.55 80.61 24.15 73.82 54.02 46.65 61.17 82.63 65.34 99.13 25.30 13.94 35.68 12.27 54.96 38.04 16.89 9.99 77.34 34.84 43.99 69.55 9.74 1.23 78.11 70.62 10.58 22.29 70.04 91.29 20.36 78.77 95.36 28.45 81.48 16.27 97.58 52.72 95.73 18.37 63.33 55.07 50.33 61.77 20.35 39.13 9.00 51.75 49.88 54.24 71.91 6.97 13.51 87.36 53.99 78.10 50.87 94.77 63.54 73.50 95.08 85.14 1.30 59.26 80.35 26.52 26.77 1.80 5.89 21.81 93.40 68.08 22.87 26.45 89.68 65.72 2.45 33.24 88.85 43.31 54.37 17.48 97.27 19.01 60.57 83.16 67.49 41.59 2.11 30.57 50.98 59.26 71.32 16.44 6.66 93.06 92.86 47.68 -47.11 58.45 31.85 83.18 33.62 25.80 27.51 18.48 33.70 15.53 91.30 36.39 80.20 53.05 29.50 20.85 95.66 95.64 63.69 65.37 80.63 21.60 85.33 69.80 36.80 40.51 66.30 65.04 57.05 45.75 33.98 82.35 5.58 26.49 30.33 95.28 11.22 75.80 21.69 8.50 17.21 58.99 32.40 51.93 3.30 62.93 66.57 33.45 36.34 51.48 56.21 96.20 42.07 98.69 58.72 59.19 56.18 95.93 94.21 77.00 81.30 77.75 66.21 77.05 47.64 56.19 92.07 20.67 54.23 24.58 15.35 81.68 22.90 23.44 77.48 78.73 30.29 73.77 80.42 18.98 3.84 52.17 83.26 70.17 24.62 86.15 96.04 6.73 16.51 63.91 42.73 31.88 43.31 5.91 97.02 85.47 86.02 67.00 80.03 8.98 -86.95 57.00 36.70 94.70 71.02 26.89 90.01 39.01 58.39 13.54 56.90 65.37 2.78 39.56 41.78 50.13 60.05 36.31 28.34 9.07 14.71 83.39 68.22 39.91 56.86 88.57 84.11 29.98 88.16 50.32 43.94 18.38 23.90 28.90 43.39 30.66 78.69 14.14 1.29 52.82 77.02 21.89 51.08 51.70 52.66 61.05 43.07 68.80 89.51 77.17 79.98 1.64 27.99 9.73 21.36 82.02 96.36 74.27 56.37 43.23 57.47 43.69 28.81 83.31 4.63 41.92 52.97 24.39 71.74 95.55 42.69 18.22 33.48 88.84 44.69 11.35 7.23 94.30 72.48 28.05 79.48 25.55 17.58 20.32 36.01 38.49 17.17 62.08 26.07 0.85 18.35 18.12 65.61 41.73 40.34 78.89 6.15 85.67 57.94 85.05 -75.53 91.98 17.06 22.02 35.28 27.00 43.63 14.96 42.80 17.30 66.83 48.22 26.28 5.09 73.87 63.39 58.74 69.48 93.69 60.22 5.93 14.24 30.07 59.05 82.26 40.31 8.15 99.79 95.71 47.38 71.94 22.11 21.87 71.21 48.96 30.59 89.15 41.85 37.13 12.86 31.60 9.81 20.86 14.80 23.22 57.23 86.27 6.13 26.16 6.29 79.31 12.73 85.59 42.98 95.24 77.45 28.46 70.79 17.94 6.42 35.19 8.60 90.26 77.96 21.09 97.18 91.90 71.80 97.77 85.92 39.65 43.73 99.28 70.68 91.90 58.50 69.43 31.30 11.16 49.45 57.70 15.01 26.38 46.54 64.54 71.70 17.46 43.87 63.80 17.17 29.15 30.55 37.41 31.48 96.90 38.37 36.50 81.36 99.80 63.63 -51.08 0.43 98.92 3.43 12.14 81.41 63.09 42.04 37.73 72.44 99.03 80.59 68.39 22.29 83.19 75.11 23.22 43.51 45.67 82.80 83.77 35.83 66.75 73.14 70.77 32.92 25.23 57.73 33.18 39.65 18.86 24.52 12.93 80.31 58.29 50.31 66.56 51.25 12.79 14.97 11.47 35.02 88.25 29.83 33.28 38.51 1.46 47.13 56.31 87.02 7.18 59.84 53.24 33.93 21.36 93.42 18.81 99.29 88.61 33.21 67.32 56.24 65.28 1.93 65.25 37.58 1.72 82.09 14.83 40.51 12.75 61.53 54.62 1.16 35.18 78.49 9.00 48.43 40.31 41.70 36.95 7.58 83.15 6.91 0.50 72.67 78.64 84.48 30.26 87.07 0.99 72.08 18.92 44.24 69.51 20.45 52.86 36.44 4.33 86.75 -6.55 58.69 78.95 35.12 25.30 72.13 38.45 79.87 55.57 1.42 94.98 63.16 55.21 29.30 58.74 67.20 46.98 24.79 92.80 73.08 55.43 91.62 84.26 46.98 76.76 61.08 62.63 34.48 88.84 23.54 57.98 69.78 15.30 57.54 10.01 63.34 93.37 18.97 68.32 56.93 67.27 63.64 42.07 98.56 92.63 25.33 49.69 66.98 30.33 76.31 32.98 90.85 6.48 12.88 49.55 9.97 78.51 13.60 89.20 73.35 34.37 50.38 79.28 48.53 11.72 98.34 21.55 70.15 5.22 66.39 65.11 62.72 38.47 4.21 62.35 92.68 58.88 96.92 84.36 39.68 14.10 95.72 81.47 82.87 41.01 9.92 4.19 94.47 8.48 95.24 98.74 79.91 18.88 83.15 6.99 72.06 68.83 25.28 51.39 52.92 -94.67 3.83 44.92 21.01 27.03 82.74 19.79 95.66 74.88 91.33 2.92 5.63 78.83 89.42 29.42 17.47 92.30 3.05 87.09 96.58 85.63 3.59 31.38 6.07 10.86 22.01 26.49 52.57 19.45 2.46 29.24 5.66 5.12 31.33 19.34 73.00 51.03 28.77 24.89 19.34 94.98 39.85 76.38 59.24 3.62 23.74 55.42 99.57 64.55 77.84 87.43 67.47 4.99 35.38 65.75 76.93 65.82 19.90 99.61 22.17 93.52 92.96 55.16 27.46 0.01 50.25 51.06 92.38 13.31 60.56 46.32 88.77 12.83 61.07 10.81 91.13 29.06 34.51 36.39 72.02 36.68 83.07 93.25 74.95 45.28 89.91 78.70 35.52 35.68 22.76 35.51 63.43 0.87 96.26 61.09 62.29 35.16 36.34 36.49 12.46 -98.22 67.22 94.66 44.66 7.16 25.38 53.79 82.65 64.50 10.32 64.20 91.43 63.34 22.79 42.83 54.18 72.22 32.90 16.83 64.52 49.31 11.17 51.32 20.60 99.33 6.55 16.29 7.10 31.90 51.04 54.73 36.65 88.14 63.88 69.14 4.32 45.63 11.99 38.32 66.56 81.75 68.91 45.73 99.27 98.69 84.43 14.09 59.38 43.11 13.35 55.60 18.38 57.91 59.52 43.70 82.45 46.81 72.79 30.62 18.55 37.15 87.29 27.55 10.89 56.18 71.26 85.18 0.21 69.81 59.12 84.29 75.22 53.63 38.82 69.76 50.15 38.45 41.82 5.75 52.73 31.99 50.42 8.08 76.14 2.62 43.95 79.56 66.10 75.66 24.73 4.46 48.68 0.07 38.65 83.47 4.01 51.90 47.11 18.27 62.17 -84.55 24.15 85.28 40.88 87.98 50.14 25.70 59.19 61.80 84.33 28.70 8.48 95.82 64.78 87.93 12.86 80.52 61.90 24.79 93.33 92.38 24.44 19.49 85.85 55.09 81.51 36.52 94.88 21.55 73.81 12.58 10.85 96.01 73.42 4.45 37.39 16.64 82.04 97.51 86.98 53.46 53.96 47.74 32.77 27.97 75.58 47.11 12.86 94.39 20.50 1.40 52.45 41.98 33.14 64.13 12.68 72.39 90.33 37.39 55.18 77.75 69.16 15.51 76.28 87.49 35.38 69.59 47.94 28.31 71.99 5.09 54.05 25.44 25.75 89.34 96.07 1.95 71.91 8.03 95.52 99.47 6.07 35.07 64.39 0.65 57.03 52.47 61.01 8.82 28.89 41.13 65.84 5.67 77.80 6.34 90.03 15.80 46.17 46.16 3.52 -84.48 41.15 64.68 65.73 39.47 87.49 80.65 98.41 71.41 72.23 10.76 4.09 81.40 49.62 51.66 12.54 24.98 56.57 68.74 24.71 12.30 86.89 82.03 36.56 85.20 57.09 53.09 25.25 66.64 83.99 18.25 26.88 76.33 35.70 75.74 36.49 24.67 20.81 28.59 84.86 77.57 62.49 16.74 59.11 35.69 82.43 43.41 85.01 9.32 17.51 31.80 56.84 48.55 47.97 12.17 62.79 69.81 41.09 99.98 99.82 43.99 9.05 45.36 31.74 42.28 52.75 70.75 13.36 66.64 14.92 16.58 88.60 37.16 62.88 21.21 33.66 59.36 63.72 52.90 75.21 21.44 85.69 28.27 39.04 48.71 1.68 56.80 27.73 82.17 27.43 96.56 51.51 42.40 57.82 30.28 86.95 40.25 97.22 67.06 74.99 -14.32 18.99 79.01 29.62 49.83 68.10 56.47 74.12 74.89 97.21 36.97 99.50 21.98 54.95 13.78 93.98 88.81 43.44 70.12 3.56 34.88 39.51 64.13 87.08 79.59 53.71 61.77 60.63 3.70 19.17 6.42 20.81 6.41 16.77 36.27 43.67 37.32 31.51 64.60 16.23 0.51 20.73 66.11 73.89 22.10 32.25 43.19 44.53 91.89 83.27 22.52 7.56 2.13 10.75 58.20 6.16 5.46 42.55 98.46 24.57 41.64 49.06 53.68 79.42 3.93 58.80 4.84 83.30 96.41 41.84 42.94 23.75 94.42 67.75 81.69 61.28 80.87 53.35 70.64 46.03 0.65 89.74 46.13 32.66 8.44 70.39 1.63 32.99 66.91 10.22 44.02 52.58 49.00 10.12 82.00 48.33 97.56 48.51 72.94 30.53 -55.35 41.59 35.28 80.32 86.02 41.11 7.48 33.48 68.96 93.80 99.08 45.76 5.13 6.79 60.68 6.76 53.82 96.29 60.29 99.86 94.25 92.92 16.26 42.46 18.55 57.24 1.45 12.84 50.73 60.20 28.47 80.99 19.74 27.09 2.56 41.38 37.42 91.55 8.15 81.44 3.26 50.26 25.85 39.91 98.07 82.01 93.10 59.75 0.14 66.22 71.35 97.87 35.26 62.11 86.20 65.03 67.36 15.25 13.41 59.55 49.90 17.39 90.87 54.88 15.58 23.25 27.37 62.52 24.60 55.63 34.50 82.10 63.44 70.82 85.02 44.07 75.03 73.30 39.71 95.06 60.73 84.76 6.70 73.90 63.77 80.85 22.35 98.26 2.47 56.97 34.58 11.37 76.35 88.46 55.30 34.92 18.05 68.51 87.67 5.68 -53.46 51.00 54.22 8.06 0.99 63.98 32.87 81.33 81.89 95.72 19.59 55.16 23.07 20.85 53.68 44.63 26.26 37.03 33.31 60.29 46.60 44.08 58.32 50.38 42.93 35.49 55.73 95.95 83.24 89.80 10.37 53.36 24.38 45.81 14.69 85.09 43.93 68.46 94.43 11.89 70.44 29.28 15.26 89.92 10.14 63.89 90.20 20.60 17.05 44.30 24.34 73.94 38.73 33.63 36.91 27.41 29.79 74.97 86.98 22.26 77.24 47.58 9.81 48.71 63.04 41.81 87.33 62.29 77.57 6.23 74.59 92.50 97.46 20.70 7.49 7.38 83.71 70.13 79.76 52.12 99.22 1.19 99.21 93.78 36.27 83.63 87.31 60.00 58.99 75.09 92.05 38.43 68.50 56.75 97.81 72.57 59.89 45.60 19.60 60.46 -85.48 75.21 72.95 3.92 65.21 58.94 7.59 63.56 33.80 85.06 57.08 79.27 99.74 35.72 18.36 87.54 76.47 74.50 73.99 90.56 41.46 81.75 41.58 54.08 86.65 31.74 21.63 37.16 76.68 84.68 92.48 15.56 82.79 16.33 67.92 92.05 15.90 72.10 80.37 5.70 19.85 56.34 8.91 54.08 74.93 37.11 37.60 88.47 44.46 56.76 51.13 97.54 85.74 51.65 82.13 89.21 26.55 90.31 97.95 30.83 57.32 65.32 51.48 36.14 26.54 63.92 46.75 86.68 86.16 17.15 0.05 49.55 26.06 12.52 17.99 10.85 93.07 44.76 34.39 91.84 61.40 57.40 94.49 21.75 39.27 64.84 26.79 36.51 75.60 13.85 76.09 68.55 7.70 21.57 64.70 62.19 56.04 49.91 38.87 97.72 -24.43 84.50 81.62 91.51 32.41 56.56 58.86 46.02 68.99 59.25 43.73 23.65 1.15 16.94 95.82 37.13 16.19 21.23 36.50 52.67 42.27 57.50 7.94 27.02 10.62 71.34 72.95 2.19 71.84 6.63 75.64 45.47 1.62 15.44 77.49 57.60 90.83 49.95 24.97 82.26 86.30 67.26 50.81 66.78 96.34 66.33 9.77 47.88 59.87 53.51 66.35 29.83 91.26 6.75 8.80 97.00 10.01 93.13 8.07 80.76 17.12 2.32 22.75 13.99 43.13 5.45 12.86 9.26 50.46 50.78 44.94 69.32 45.35 91.10 69.96 85.45 80.07 13.30 36.11 70.69 54.62 3.09 21.01 28.57 25.98 53.60 74.75 3.02 10.27 83.67 14.00 29.85 84.15 77.39 69.35 74.82 38.98 21.14 23.87 89.30 -55.92 49.15 38.07 22.47 81.09 63.60 31.52 39.17 52.85 63.20 94.77 3.74 9.77 53.15 47.48 42.37 86.09 59.08 12.82 55.48 27.48 48.24 65.64 85.38 82.33 56.20 91.70 91.41 24.21 50.81 1.58 31.06 21.41 77.26 99.63 80.94 73.82 14.15 27.64 77.86 56.91 70.14 57.28 54.18 23.37 29.02 5.33 3.93 45.02 18.50 6.09 53.11 15.78 5.34 72.92 21.60 19.08 87.65 11.94 97.52 0.30 57.44 65.02 20.72 72.55 13.08 97.59 96.88 85.61 23.88 56.94 59.65 50.46 29.44 68.79 4.49 74.58 17.07 63.61 22.24 36.51 97.60 17.63 19.55 34.41 74.96 60.75 36.35 85.41 29.36 8.60 68.94 67.01 69.23 36.13 22.54 31.60 38.36 81.95 62.47 -60.36 14.68 49.78 25.34 73.56 0.23 42.34 43.00 35.47 80.16 92.94 10.82 53.57 51.27 12.48 71.17 61.74 90.09 1.34 15.70 44.99 0.86 26.54 49.09 54.66 16.63 20.02 49.74 13.19 2.29 70.23 65.49 80.42 63.47 61.68 42.86 33.26 2.66 17.76 50.55 93.98 74.43 93.03 82.00 24.99 28.33 77.81 35.44 26.11 10.60 2.80 93.34 5.23 15.10 84.10 65.97 18.45 60.98 34.92 72.26 58.61 44.59 3.71 88.04 65.66 29.54 85.00 26.12 87.81 10.19 23.36 88.47 52.10 53.86 61.76 56.59 81.41 61.56 10.98 65.57 70.46 81.81 59.27 81.65 93.64 82.04 81.47 45.17 28.41 67.41 18.67 7.77 34.12 75.27 9.99 75.97 1.62 57.28 57.26 87.63 -54.05 94.53 28.98 4.63 79.69 44.09 12.07 34.18 70.97 31.79 78.11 25.04 83.51 82.76 92.94 35.89 52.27 51.49 27.41 53.06 57.73 95.59 63.91 67.31 93.75 23.97 33.24 46.77 18.38 83.67 17.49 21.85 66.49 78.76 11.59 44.44 9.52 50.61 46.95 73.35 60.62 38.21 33.69 0.22 15.72 5.79 80.46 93.76 36.18 84.02 58.38 14.61 60.69 35.79 75.95 81.22 59.68 51.03 58.03 93.28 21.87 2.10 17.80 47.99 62.43 64.27 7.52 86.14 58.87 66.08 14.38 92.22 3.46 53.64 95.67 96.26 7.82 96.16 4.92 93.05 54.28 12.34 51.10 53.25 25.58 24.26 96.89 66.46 1.99 18.56 54.76 33.72 10.62 20.48 82.61 28.74 84.98 28.75 58.24 69.51 -11.20 50.02 64.59 82.51 50.64 41.22 18.74 8.44 7.44 58.32 83.38 27.39 9.68 89.44 96.00 99.67 58.84 8.61 67.05 33.32 75.54 15.63 8.07 22.01 23.68 65.29 42.16 27.97 33.01 35.76 3.03 11.87 30.46 43.53 66.64 37.56 33.74 76.08 52.53 69.95 94.99 6.08 84.74 4.52 48.88 11.08 60.58 15.78 47.46 29.20 30.50 31.32 96.77 23.05 37.67 97.52 10.62 15.62 22.01 2.75 44.88 76.57 37.23 46.04 14.99 30.62 95.75 75.47 7.48 79.76 69.81 18.07 28.59 80.79 10.47 45.82 49.77 4.63 30.85 90.23 23.20 24.10 66.04 21.41 26.34 7.22 9.06 16.46 83.33 21.02 2.53 83.52 36.81 32.11 75.29 69.04 32.50 34.93 11.21 7.40 -72.61 93.69 39.82 29.46 68.69 18.03 32.91 1.90 82.21 44.76 21.74 60.24 93.11 38.76 75.77 27.63 78.27 40.70 54.70 85.70 91.73 3.11 18.53 39.36 91.25 93.11 74.82 41.96 29.67 13.86 65.97 64.30 33.39 26.01 94.49 6.70 85.24 23.90 84.51 8.03 75.85 13.54 12.53 55.21 67.05 79.07 59.87 28.99 42.87 62.35 11.16 40.25 19.93 34.19 73.81 41.77 27.79 58.89 66.11 54.20 77.93 58.49 74.46 29.60 8.89 30.12 43.78 38.89 60.72 78.00 48.35 6.34 88.75 29.82 4.55 96.05 73.40 97.04 49.61 61.34 17.15 26.97 53.17 33.97 93.03 87.19 19.18 32.32 26.67 98.79 4.97 78.63 98.83 47.79 90.65 99.72 47.54 76.89 76.00 97.86 -51.22 55.59 8.53 70.28 51.34 33.33 32.26 31.34 48.59 27.90 69.43 94.03 5.72 46.12 51.22 35.26 70.19 80.65 16.80 41.28 21.66 86.08 67.73 65.80 56.32 52.00 2.49 50.17 76.38 98.44 34.47 9.98 91.18 9.13 0.36 45.28 37.58 83.94 30.89 31.14 28.51 31.74 4.81 1.50 62.30 97.48 60.50 83.22 93.73 0.03 60.44 43.30 69.21 73.49 88.83 55.75 26.43 88.43 71.00 56.87 73.49 54.07 0.15 29.27 13.85 29.26 40.04 5.74 59.72 25.81 96.61 0.97 52.79 88.33 78.07 6.09 27.05 10.48 33.87 28.96 46.78 20.71 23.64 62.13 60.32 77.18 11.19 38.96 72.73 77.04 77.49 20.41 49.53 39.91 65.25 76.45 36.53 64.67 91.94 31.46 -56.11 26.51 29.81 51.36 77.15 73.06 24.09 50.08 20.37 39.47 13.49 89.01 52.92 52.11 32.02 14.40 3.09 60.59 35.18 87.36 91.09 59.85 36.27 60.40 84.55 91.60 34.30 63.11 85.26 99.86 25.30 79.44 22.02 89.20 32.60 0.97 94.08 12.16 90.17 15.25 37.98 60.88 21.42 82.04 98.31 38.20 24.97 99.89 5.93 32.19 15.38 62.47 43.02 81.97 73.39 82.01 28.62 1.10 78.92 81.35 29.73 8.40 2.17 95.46 31.49 32.15 59.65 4.32 41.78 90.03 52.31 6.69 82.33 65.52 6.09 29.82 4.19 0.53 35.51 82.37 41.13 77.30 8.96 80.45 98.34 16.60 10.77 87.61 82.20 37.07 67.03 34.03 10.95 70.29 1.23 57.03 29.09 59.95 73.46 7.81 -41.12 51.08 10.70 24.63 43.49 74.75 23.24 87.77 61.77 34.21 48.98 51.99 78.26 20.60 41.05 22.87 0.83 99.61 43.10 70.21 58.62 73.22 86.78 48.56 9.67 40.89 21.80 2.11 67.66 0.98 78.05 31.75 66.27 72.70 88.51 74.43 38.38 86.02 13.63 42.60 14.14 9.66 87.96 9.16 81.36 86.20 82.01 8.83 11.04 99.49 54.44 6.78 37.46 4.02 49.70 35.74 60.77 40.45 92.12 76.59 62.83 1.99 40.05 35.43 67.24 95.94 4.20 65.78 21.14 46.77 0.13 95.47 34.57 3.94 61.35 0.01 48.85 58.61 86.68 63.82 6.07 85.97 44.41 57.34 24.48 46.14 81.36 18.34 63.12 66.05 27.43 83.79 39.11 84.25 4.88 96.04 36.06 61.68 21.27 39.75 -67.83 55.77 38.32 91.92 1.53 36.93 1.99 40.48 58.51 63.28 32.96 56.43 35.29 93.85 70.40 81.76 58.14 25.08 28.06 10.12 34.30 79.23 24.36 23.16 94.71 89.48 24.60 43.02 13.29 54.84 82.64 86.34 51.79 97.37 86.82 85.72 9.80 47.96 18.56 83.68 45.03 84.84 96.48 65.06 53.43 66.00 33.42 12.16 70.98 65.81 31.13 77.28 85.68 21.51 81.62 58.89 30.33 8.84 5.82 16.93 22.97 66.85 17.36 24.53 73.19 65.78 26.18 69.54 52.12 15.63 56.28 5.63 24.11 1.16 14.82 67.74 65.04 65.64 97.82 24.46 6.12 48.94 52.40 44.06 6.66 74.26 51.10 60.04 20.34 90.35 41.98 17.78 78.98 46.57 4.83 47.95 24.63 30.09 23.78 64.08 -55.94 45.18 28.57 84.42 41.86 42.21 90.26 15.53 27.42 56.01 99.97 97.70 97.10 17.90 85.83 79.96 84.42 40.53 94.12 39.44 31.44 34.61 87.95 79.52 99.20 76.00 79.87 31.77 40.18 84.05 68.12 63.53 28.36 37.19 98.54 25.09 83.28 61.95 28.51 91.82 88.41 65.28 46.47 62.52 64.01 45.78 33.07 10.01 9.22 59.66 15.70 40.14 65.36 68.87 58.79 81.23 62.98 93.48 38.08 51.69 5.65 47.37 65.10 75.96 69.60 8.62 61.15 66.02 62.95 18.25 7.69 10.07 23.65 51.42 65.70 89.22 17.83 72.93 16.60 86.63 52.37 44.85 40.58 37.08 91.10 70.96 57.68 14.17 14.05 44.08 29.62 63.12 26.60 13.72 82.19 78.59 24.67 81.22 28.49 73.71 -48.62 81.62 3.52 37.82 10.41 55.08 6.71 46.61 36.47 69.41 82.31 98.85 38.34 14.43 8.31 97.13 62.40 72.13 68.07 68.36 81.12 62.29 86.10 44.54 49.61 33.32 68.31 14.41 17.52 85.12 96.21 35.48 84.90 15.04 18.24 92.25 33.89 78.86 81.11 52.99 36.25 19.77 2.80 35.54 9.57 57.87 52.54 48.49 51.69 53.12 33.35 4.61 91.83 40.47 57.73 56.42 0.91 42.51 16.95 9.77 76.53 26.55 3.30 19.59 94.44 36.94 7.80 38.75 38.26 43.17 71.45 75.49 78.94 29.44 74.70 7.91 31.61 12.11 60.79 93.59 67.93 17.09 86.28 11.58 25.65 71.05 37.90 77.44 15.54 42.68 59.20 58.17 87.63 87.37 56.36 99.63 15.87 2.96 96.40 0.58 -3.79 49.90 17.00 62.89 17.78 87.31 23.03 59.76 81.93 38.96 49.35 41.84 34.87 34.88 51.47 17.53 47.96 58.49 93.75 58.55 15.57 1.00 89.24 27.82 13.31 94.18 79.75 79.09 46.75 72.62 95.33 84.96 38.94 94.26 98.12 99.53 18.12 5.04 25.01 29.65 23.97 31.59 57.32 93.07 49.16 69.65 60.34 91.53 49.40 67.61 11.55 41.20 57.40 27.46 11.94 97.40 40.43 26.70 78.37 44.47 87.43 89.89 60.17 25.71 34.81 86.86 46.26 39.48 83.60 17.79 70.03 60.54 22.73 22.99 51.11 90.21 60.86 70.50 70.18 20.10 71.84 67.59 96.30 68.16 59.95 28.91 72.85 60.46 17.36 25.47 43.13 3.52 56.99 89.27 99.78 37.50 92.64 64.62 48.78 99.62 -57.88 0.57 70.82 12.91 91.61 70.39 53.42 36.37 21.67 6.54 91.05 12.97 11.56 5.46 42.78 99.02 48.14 74.87 12.93 4.55 64.75 90.60 27.75 93.02 45.94 63.71 63.83 80.64 54.87 88.78 31.76 39.41 96.42 87.84 67.07 46.05 71.04 45.74 50.79 48.73 58.23 99.25 22.91 23.44 28.83 32.45 50.29 5.33 50.44 30.18 45.50 48.41 73.88 96.70 73.77 71.80 58.27 20.66 78.70 18.79 54.39 26.32 31.23 99.86 63.88 59.10 11.18 16.01 98.46 34.03 58.63 56.02 17.95 54.11 76.56 98.62 60.75 25.39 88.26 23.52 67.74 56.65 91.82 81.49 30.15 72.23 48.46 19.30 59.06 76.18 49.59 28.24 21.93 28.96 86.09 35.22 9.42 2.56 87.14 21.26 -36.46 88.73 21.95 2.62 92.74 20.33 12.35 38.14 60.80 39.08 78.10 45.02 64.52 18.47 31.53 0.50 34.71 11.08 39.99 7.85 78.34 69.47 57.50 69.26 5.37 63.05 67.81 87.02 72.72 57.88 29.68 20.97 88.90 59.83 3.40 90.97 57.39 14.09 26.32 94.57 16.45 29.10 42.10 11.89 91.01 20.87 87.84 16.51 94.72 16.15 33.74 65.35 6.49 35.65 2.75 54.75 96.06 96.04 14.04 16.21 85.89 76.75 83.56 69.62 12.68 96.94 6.39 14.76 51.99 90.77 87.67 97.44 50.82 42.96 49.81 45.90 96.02 72.24 47.40 81.77 87.13 63.28 66.93 68.37 59.91 52.60 64.01 86.44 51.63 52.62 12.67 31.71 74.52 62.65 65.30 27.88 39.15 91.14 19.44 86.54 -27.20 2.09 33.87 41.27 56.78 60.52 3.87 72.52 83.95 7.09 26.60 21.43 50.73 96.99 96.58 55.51 58.09 3.83 23.20 66.01 18.73 31.00 80.38 37.24 85.63 71.30 52.98 50.49 12.88 96.74 62.59 82.32 78.71 82.26 21.12 27.63 61.35 96.13 57.76 74.93 2.50 8.98 2.16 92.47 6.78 63.79 14.22 75.28 36.28 68.83 14.43 57.98 91.77 44.50 69.41 92.33 83.96 7.64 41.79 78.91 26.83 22.66 25.11 69.98 46.43 62.54 64.09 71.35 12.68 21.37 11.28 71.44 1.83 20.68 11.13 17.89 24.51 0.13 8.22 19.61 83.90 36.31 73.00 13.32 44.38 99.61 36.06 37.92 70.88 22.90 94.21 76.49 50.90 10.83 58.12 84.68 96.14 54.98 5.11 84.74 -83.65 74.79 44.48 59.96 69.40 80.08 95.35 7.55 96.71 58.27 99.66 15.74 89.16 19.27 2.19 85.65 29.17 38.38 60.39 83.28 28.73 31.32 31.55 6.94 30.18 58.84 23.76 95.78 98.99 0.91 96.73 54.84 4.96 29.89 65.07 46.16 39.48 6.76 65.06 12.65 11.66 21.49 4.02 60.43 35.74 34.12 31.97 61.96 75.13 7.16 29.73 56.10 9.56 44.72 25.84 72.91 51.48 62.47 85.96 70.89 50.44 94.51 43.26 71.09 22.49 65.33 47.26 15.47 51.68 51.95 19.66 67.51 10.88 46.40 9.14 20.18 41.42 25.33 5.70 10.87 10.72 44.14 62.94 0.69 82.72 21.06 13.63 87.41 46.88 26.95 85.09 24.20 62.29 39.11 42.90 62.66 45.41 16.24 57.64 93.01 -25.43 92.08 10.38 87.04 41.49 71.23 82.20 81.23 71.17 41.31 2.17 72.97 81.30 30.29 17.67 82.34 25.20 28.67 53.22 18.40 62.71 56.37 18.89 69.46 36.56 11.80 57.88 79.92 30.27 92.33 97.50 6.02 39.13 97.03 0.70 47.66 15.33 12.36 90.45 18.59 48.22 65.44 81.67 3.53 75.13 54.60 0.78 55.59 99.40 70.75 13.65 0.04 87.61 62.93 84.57 13.26 29.30 22.11 27.16 33.90 36.49 2.51 8.14 48.41 18.14 77.67 92.52 74.84 98.93 44.20 66.33 12.35 38.64 67.96 36.74 35.66 52.76 33.01 77.06 14.63 42.24 25.29 30.16 14.44 78.58 70.17 40.34 51.01 24.09 71.80 0.08 63.73 58.62 10.05 63.68 72.96 64.20 23.07 22.29 23.47 -25.14 12.63 14.13 8.19 74.07 18.39 9.57 67.27 93.36 61.58 90.38 7.42 31.66 63.00 3.92 10.52 42.91 78.26 95.35 13.94 98.92 41.47 6.92 47.46 97.04 42.00 98.91 58.43 44.21 74.16 1.80 46.46 87.10 71.84 25.25 71.19 62.95 39.88 95.77 12.88 81.77 89.26 15.69 17.76 67.62 11.99 5.85 5.25 61.93 82.19 74.16 76.71 24.18 26.83 84.69 69.99 29.20 46.56 71.64 43.56 2.76 66.86 54.03 75.30 70.42 58.37 54.36 82.41 38.91 6.34 44.68 67.48 90.60 86.49 58.00 68.46 76.36 72.12 33.04 52.37 22.29 49.94 43.58 15.15 18.59 34.43 17.65 87.87 39.87 63.65 35.05 97.01 98.55 0.77 77.67 12.12 5.56 70.55 17.44 37.01 -18.08 18.94 6.38 54.57 47.93 49.14 39.68 80.40 82.11 93.39 14.91 62.98 2.15 40.65 65.87 18.56 11.68 39.94 34.93 40.22 29.52 32.01 79.22 78.88 26.76 82.34 44.61 74.69 53.91 3.08 14.18 80.48 50.05 84.51 12.97 73.15 29.28 61.83 55.77 1.08 41.64 31.21 32.63 81.76 81.56 57.41 44.95 88.81 46.87 19.69 19.10 70.24 35.91 69.30 64.73 41.82 92.46 47.62 75.80 45.48 7.05 96.26 47.89 30.14 62.72 97.19 73.89 80.90 10.10 10.41 10.57 87.59 34.06 52.01 80.42 50.73 46.81 98.81 29.08 47.31 9.91 87.20 43.96 18.23 86.71 23.68 72.47 62.43 32.34 23.21 34.60 80.59 47.19 23.37 61.96 92.02 11.22 50.86 43.20 74.35 -37.61 65.81 55.01 38.60 51.92 72.87 1.79 68.22 37.76 95.85 42.53 79.37 57.49 83.73 11.98 17.27 95.43 69.48 10.54 33.41 86.07 13.43 31.51 13.66 28.24 61.58 80.66 68.26 4.93 37.96 83.37 83.99 36.64 66.32 98.56 95.28 47.25 76.36 55.85 73.23 6.31 0.07 61.12 63.25 90.84 90.68 1.69 5.11 33.16 72.59 73.94 42.32 99.82 15.24 51.71 44.72 82.34 39.01 61.53 55.66 79.59 64.52 99.73 93.19 33.52 43.22 55.14 12.60 10.60 73.42 68.63 52.12 6.66 13.54 7.36 18.32 87.91 41.10 96.20 51.28 96.90 7.33 52.87 67.80 84.79 72.41 84.66 17.02 30.76 40.14 98.40 25.70 25.52 37.52 69.29 46.37 91.64 53.66 20.57 18.92 -41.70 78.03 74.83 45.41 15.88 52.12 44.26 79.55 10.09 4.94 16.58 10.63 91.67 0.55 89.53 99.77 30.22 19.66 87.05 4.58 12.85 33.75 34.54 83.08 85.46 12.13 20.90 93.79 77.62 60.02 16.02 97.61 64.09 15.36 64.11 37.62 76.70 83.23 60.06 28.75 53.43 84.24 22.89 62.91 52.43 1.36 11.23 1.72 56.25 17.44 98.16 31.07 66.62 37.19 95.27 61.59 50.07 19.62 92.00 73.79 30.13 18.32 48.42 31.04 43.62 73.51 49.91 16.98 93.55 53.93 36.23 79.43 96.15 52.35 21.56 25.29 97.18 18.37 47.39 9.28 28.16 33.17 96.95 74.21 7.72 31.31 65.44 69.43 85.57 60.30 73.17 46.47 23.72 21.99 20.24 18.11 34.90 72.37 95.57 74.00 -62.33 73.34 32.84 49.08 80.60 19.72 25.23 62.41 37.54 68.65 29.63 57.60 97.87 66.92 17.95 78.55 66.52 44.94 86.34 42.62 15.20 29.67 83.22 6.62 15.20 37.42 16.84 75.87 12.34 96.67 23.98 75.86 19.09 37.44 61.56 42.60 44.25 16.19 26.50 33.30 35.74 30.58 37.48 29.34 51.05 18.16 62.34 81.56 77.06 83.93 8.74 49.68 85.03 6.87 14.92 47.06 99.55 15.28 35.17 31.10 79.69 54.82 28.52 74.75 34.57 75.25 15.01 92.03 77.69 2.74 82.29 87.84 22.18 45.58 87.28 47.21 38.85 8.19 59.12 84.31 1.92 4.08 32.44 8.80 83.30 8.91 65.02 98.24 85.16 23.88 1.83 72.67 25.76 67.86 16.28 1.10 77.08 9.49 93.68 74.43 -32.18 26.05 85.12 29.57 11.16 72.12 22.16 37.72 27.72 72.45 89.36 58.12 4.33 71.46 73.89 53.89 11.79 38.29 1.50 61.41 56.73 43.29 22.75 26.92 27.69 20.02 66.65 3.24 70.98 7.95 46.89 57.74 92.04 89.21 99.01 53.74 5.68 85.52 5.01 53.53 27.79 1.22 46.24 38.71 94.76 19.32 8.05 6.76 67.71 12.58 30.85 9.02 18.48 14.76 97.96 22.44 86.56 39.40 14.97 3.42 23.85 58.75 79.72 18.82 88.40 99.83 33.85 54.90 41.24 55.81 10.78 3.64 69.73 50.65 31.81 65.87 44.09 90.87 58.45 90.42 44.23 6.46 14.87 73.83 63.36 8.38 54.03 86.07 21.24 40.60 31.88 80.30 56.20 52.54 11.60 40.79 29.48 43.78 40.11 49.27 -56.05 87.68 28.87 46.15 30.28 5.83 23.90 94.05 92.01 48.29 94.11 22.71 4.51 93.31 51.62 37.97 17.98 35.37 40.54 77.37 35.58 86.81 65.88 22.65 14.07 32.75 3.30 97.48 79.01 75.20 25.21 42.83 97.34 1.83 71.90 18.94 34.38 39.02 54.70 55.60 30.45 70.74 1.93 3.10 51.36 98.74 55.57 30.88 17.73 71.77 57.05 56.49 89.57 96.96 44.44 22.55 4.19 20.29 64.02 13.39 42.53 50.43 52.36 46.55 45.54 99.40 3.29 7.11 59.63 33.08 65.86 2.34 55.27 15.32 56.56 45.30 57.89 20.97 2.77 4.10 66.14 17.39 13.23 99.05 86.76 86.05 48.66 60.69 35.78 34.83 32.00 19.76 99.26 31.02 47.66 16.65 34.81 66.59 21.25 4.50 -87.09 67.42 29.52 16.14 18.73 20.32 5.22 38.41 94.93 39.44 90.55 2.67 87.58 87.48 41.04 82.05 31.08 88.78 41.99 35.80 93.27 70.37 13.48 68.55 41.98 23.71 30.97 38.13 5.64 51.44 29.82 84.73 7.03 47.66 56.88 24.04 39.63 30.35 93.47 91.64 7.61 33.57 49.67 66.92 95.43 61.54 97.10 13.02 5.06 31.88 43.88 57.80 39.75 36.02 68.79 13.75 69.17 95.22 4.95 66.76 1.67 56.26 22.30 99.61 15.56 31.13 30.39 20.76 89.55 94.96 23.27 55.74 16.50 47.16 41.33 60.78 32.34 66.41 1.93 24.12 42.79 22.62 20.83 48.38 73.97 93.50 87.39 53.22 54.90 53.13 34.86 33.41 54.80 0.85 7.48 77.79 30.42 42.52 87.56 25.61 -30.98 19.39 4.68 27.45 0.29 1.76 4.23 19.97 61.63 99.90 74.15 52.72 69.99 27.59 96.16 64.66 75.50 74.87 16.75 10.11 97.54 77.54 65.49 49.38 37.57 82.82 11.87 54.47 61.03 42.68 57.84 8.36 83.12 1.83 81.80 77.15 69.27 71.50 12.90 88.72 71.85 29.52 54.17 53.72 33.90 39.50 18.20 58.61 65.90 24.63 83.54 2.64 11.46 25.36 76.64 29.99 2.53 5.83 50.74 31.65 27.70 73.01 65.33 5.20 43.70 83.58 5.76 36.87 18.95 35.91 4.96 33.05 55.80 81.98 10.82 39.51 62.76 37.00 51.53 46.45 33.59 43.00 96.96 24.22 95.53 35.46 62.54 3.33 31.00 13.53 36.29 41.41 66.41 87.89 12.58 38.76 80.28 42.42 60.59 34.38 -87.30 95.14 78.29 2.56 72.19 0.27 82.14 47.02 97.60 5.38 62.84 52.80 15.01 59.43 52.75 36.96 18.49 12.11 73.32 3.96 39.40 25.45 65.92 58.38 60.63 62.87 17.71 86.38 88.48 61.48 24.59 97.15 83.23 34.54 94.09 0.77 46.51 62.04 13.19 17.58 77.31 78.01 66.14 35.69 52.46 24.82 47.82 2.14 1.78 32.39 82.01 59.25 86.85 41.34 69.59 29.60 8.84 71.47 97.80 5.52 92.79 66.32 42.98 87.22 47.14 32.64 88.80 48.99 47.27 44.67 23.26 7.54 26.44 29.81 89.97 30.91 89.98 79.47 74.29 69.21 88.71 9.35 43.96 74.81 41.02 34.51 19.03 35.75 90.41 27.77 11.94 78.09 78.54 35.21 0.34 72.35 95.70 8.64 94.25 69.07 -71.52 29.88 35.15 61.67 19.02 30.39 35.79 56.34 51.79 71.17 43.27 80.89 87.25 23.73 99.43 98.96 1.77 77.08 17.88 63.80 13.33 44.23 19.42 71.75 25.47 49.70 50.93 69.41 76.60 49.80 42.76 6.19 85.19 28.90 0.09 0.65 63.61 65.31 36.58 28.64 61.63 54.63 42.31 55.23 99.04 82.66 10.62 61.33 24.28 4.80 64.49 14.71 23.06 82.97 87.66 3.11 40.12 31.01 47.08 18.32 52.01 23.87 56.98 95.05 51.95 61.76 34.25 71.93 34.38 24.81 27.42 18.00 82.96 79.67 72.51 81.45 11.30 54.08 8.29 18.67 19.95 84.37 21.61 53.72 10.41 79.88 91.81 39.82 16.17 74.09 75.25 41.53 53.62 24.09 10.87 63.51 81.40 35.38 76.83 12.69 -55.02 65.04 95.51 62.05 62.90 53.95 7.29 28.34 62.44 65.99 85.41 12.61 63.00 54.89 21.45 52.90 32.12 41.54 64.06 91.48 34.62 48.97 86.90 72.76 68.48 6.74 82.79 36.41 14.81 48.88 86.60 31.81 80.26 56.07 97.15 86.65 88.15 42.85 68.68 1.34 95.09 70.86 47.70 88.30 11.06 45.26 11.34 58.24 59.36 95.02 24.07 30.78 16.13 55.93 19.14 51.40 48.19 45.30 61.71 1.63 2.96 17.93 85.91 67.01 48.32 23.74 18.68 30.86 99.22 70.19 66.63 36.15 86.65 98.35 64.83 2.34 10.03 20.47 31.87 22.61 99.29 21.77 85.60 69.98 71.43 26.66 3.82 76.77 22.89 18.79 27.81 97.61 73.00 7.16 16.67 74.89 90.73 63.90 50.71 28.54 -19.78 42.02 92.57 98.18 18.31 47.83 64.33 47.60 55.07 32.93 9.92 73.91 81.38 8.74 32.96 61.53 93.92 70.50 50.04 73.73 48.51 85.60 67.25 41.13 71.35 28.10 61.81 91.22 87.48 47.76 43.22 95.34 26.34 7.27 50.65 4.36 30.47 74.43 34.42 5.52 87.79 78.22 5.25 7.97 24.53 90.11 89.47 95.77 9.36 22.37 69.90 83.25 3.98 65.81 75.36 10.94 48.72 74.43 0.38 15.94 73.79 52.83 0.49 81.57 53.44 14.68 70.63 80.03 12.97 36.09 39.14 91.05 97.36 94.45 3.07 82.58 8.79 22.11 70.99 67.92 85.27 96.32 8.51 84.00 87.83 0.47 87.26 60.96 81.06 67.43 84.28 11.76 62.25 5.98 16.96 81.72 97.36 89.00 52.38 55.15 -57.86 92.34 38.87 51.10 87.53 65.60 58.06 46.38 96.18 78.69 14.93 62.68 52.99 70.69 98.78 26.93 1.59 24.03 73.25 92.54 90.72 29.21 14.24 0.65 81.29 79.71 1.18 21.58 73.79 68.81 4.98 55.71 70.90 0.29 0.24 63.46 40.17 69.94 17.13 26.48 53.05 24.58 34.81 58.12 39.45 34.33 48.02 80.43 83.93 58.12 39.90 8.42 45.37 83.08 68.39 23.33 90.68 37.83 56.29 51.85 88.57 43.27 87.98 31.03 11.71 25.83 49.14 27.82 97.25 74.42 7.85 81.90 30.47 95.03 54.02 64.75 52.04 33.52 47.83 67.04 31.37 70.64 76.53 73.22 26.80 97.76 70.21 37.01 46.33 85.17 38.98 94.47 97.45 86.11 65.38 65.13 73.74 43.66 8.67 8.57 -11.71 88.61 89.51 65.86 66.55 11.36 3.67 62.81 93.81 14.33 61.03 12.46 62.65 61.73 28.74 68.64 32.50 74.87 38.34 95.61 48.28 85.24 74.20 58.84 76.86 90.02 28.67 26.93 63.36 71.26 48.49 95.43 56.17 6.46 60.68 94.27 89.76 83.27 44.09 72.85 14.57 0.07 88.40 12.43 27.08 98.97 27.83 64.53 45.80 58.39 24.81 90.97 4.40 7.08 23.34 19.74 54.76 20.98 73.23 94.87 82.81 97.77 66.25 86.02 8.68 96.18 88.41 15.01 82.11 14.92 55.27 56.23 73.36 84.85 37.30 34.96 95.11 85.47 62.08 92.27 7.33 36.21 61.41 74.05 5.60 74.41 24.29 79.78 40.41 96.40 60.22 91.94 58.30 7.12 59.01 75.04 71.04 59.21 85.45 72.42 -81.13 97.08 85.27 53.46 62.63 11.90 48.57 32.88 12.42 53.28 59.99 90.97 46.16 30.01 7.44 80.80 94.14 46.59 71.62 85.72 96.11 33.19 29.95 28.30 7.57 17.07 30.81 69.65 53.53 89.22 95.70 45.81 70.03 68.22 68.21 10.29 61.55 96.98 80.83 3.81 9.63 37.96 38.49 23.68 16.02 16.40 60.72 4.43 57.78 57.44 19.87 33.71 96.00 82.90 57.92 15.17 48.32 39.16 49.04 12.01 57.94 4.76 30.12 29.32 90.25 25.49 77.95 94.88 58.47 41.72 48.97 17.84 83.23 64.81 98.79 58.88 7.61 99.57 44.94 61.02 76.39 56.06 6.15 25.93 14.92 45.91 70.55 56.27 53.44 52.64 57.46 71.22 1.88 14.80 37.97 24.93 44.72 30.89 24.49 49.70 -1.37 84.96 42.39 21.70 60.89 8.87 47.86 8.05 5.49 56.81 96.91 99.46 11.78 48.26 90.96 14.89 26.20 55.01 34.00 49.18 29.55 92.18 35.39 85.45 62.53 17.29 12.34 34.01 31.01 70.33 38.63 30.96 9.02 20.76 97.46 40.99 76.19 83.05 79.59 42.17 14.58 15.97 22.46 2.36 20.42 94.62 16.38 96.31 66.77 93.77 47.94 67.42 38.77 88.15 80.89 52.13 70.66 59.83 65.40 82.39 81.17 92.90 79.90 15.85 17.23 7.00 75.56 56.53 11.18 21.94 61.47 69.94 31.66 19.25 40.75 51.87 81.43 94.78 13.74 84.61 51.87 18.44 21.67 30.53 2.74 87.43 87.52 89.33 13.99 82.35 53.07 20.84 6.24 63.37 20.56 46.14 53.01 54.90 23.09 8.24 -76.18 61.51 32.18 47.64 11.88 71.10 55.70 91.93 79.82 97.66 48.54 27.10 79.08 7.04 49.13 28.13 88.27 58.98 83.60 43.17 35.21 63.03 94.73 68.27 45.76 61.37 39.67 96.57 97.19 42.59 37.04 86.20 12.77 96.64 71.99 36.42 59.42 7.56 26.16 10.49 50.96 11.24 68.68 28.95 99.86 6.48 48.10 5.44 30.62 44.81 69.19 96.03 5.75 43.54 66.60 53.52 17.66 67.77 5.81 86.44 16.59 93.90 71.20 94.47 27.79 59.05 27.80 60.08 84.73 59.47 51.17 16.53 38.71 42.56 24.80 44.97 39.95 97.22 15.05 96.93 18.35 2.11 8.05 54.19 49.29 22.14 39.69 22.99 96.33 62.23 43.08 73.30 80.17 47.72 18.76 87.30 97.31 13.33 27.95 64.08 -90.56 52.34 51.97 29.09 54.96 65.54 95.64 98.78 45.70 66.01 35.78 3.38 98.34 11.39 30.72 87.80 49.35 95.04 9.34 47.67 23.16 37.78 9.45 29.48 92.04 78.39 38.56 52.62 28.28 87.61 44.34 26.71 49.37 17.84 27.27 20.07 44.75 91.93 6.00 55.12 85.53 27.51 70.28 32.14 84.61 2.77 84.34 82.82 86.70 67.66 46.47 53.97 50.20 9.13 81.40 65.38 71.30 67.18 76.01 78.73 21.76 10.98 12.66 88.16 72.90 14.81 47.64 5.91 74.59 11.37 84.54 34.29 98.53 61.95 93.21 70.73 13.26 18.59 59.30 80.29 95.39 59.75 7.73 45.21 58.64 95.58 39.70 79.76 10.26 40.11 89.71 27.87 14.95 75.41 24.00 6.17 69.68 37.14 1.81 7.29 -50.29 51.44 69.46 48.01 85.90 1.18 26.12 22.37 72.90 35.71 10.45 59.67 91.90 4.04 4.14 73.30 89.66 35.08 83.48 80.13 28.15 2.25 31.91 69.57 63.45 36.19 83.54 39.74 93.42 26.78 55.39 55.45 81.23 60.52 26.06 90.87 9.60 10.92 27.73 28.93 0.04 19.80 26.61 22.54 55.44 16.07 76.74 76.70 33.79 76.81 90.58 79.51 45.49 42.79 79.85 77.17 30.05 2.89 10.04 88.88 16.67 35.67 28.79 23.46 85.28 15.31 82.68 38.28 23.02 30.37 67.41 59.02 59.68 19.40 48.80 69.39 98.95 26.83 89.03 54.91 72.81 4.00 9.82 95.26 14.24 59.03 53.86 39.91 13.44 90.62 88.17 78.87 97.12 76.86 27.04 28.24 39.19 20.56 17.33 27.05 -34.85 28.07 5.02 27.27 20.42 28.80 77.45 77.65 37.28 58.57 77.07 16.24 92.79 77.88 10.74 32.05 75.88 2.21 65.04 75.77 78.79 66.40 17.12 17.77 51.82 54.20 59.17 91.20 36.69 51.57 14.98 78.49 65.88 9.63 40.74 19.74 86.76 58.81 91.79 19.62 13.78 68.19 50.39 21.67 57.88 66.71 90.07 98.55 2.94 32.13 72.70 56.61 87.86 11.12 17.03 33.13 17.76 57.51 20.40 92.90 44.97 86.84 55.08 66.14 72.06 28.23 5.76 98.57 71.63 51.93 16.62 69.61 43.33 82.95 13.21 60.72 89.62 60.09 57.82 93.35 32.23 63.52 73.09 56.45 91.96 33.61 60.11 88.76 13.12 4.02 14.66 96.86 73.10 93.55 90.54 42.85 98.97 59.59 73.34 67.97 -90.34 3.56 49.16 27.22 24.95 19.35 43.74 39.10 18.28 45.12 55.96 2.21 7.65 27.31 59.29 72.56 93.68 69.46 18.60 20.70 83.08 95.09 84.10 52.45 40.47 36.71 40.67 29.05 22.23 97.26 94.95 93.12 16.25 89.76 60.88 1.40 80.48 34.93 2.30 30.61 4.45 10.26 33.09 27.19 44.02 25.34 48.46 11.61 53.06 10.22 39.42 42.13 86.46 56.13 16.68 54.91 14.45 32.74 39.65 0.05 3.94 52.44 37.56 33.11 60.17 5.90 77.61 9.25 62.54 29.68 52.66 40.89 7.02 33.18 51.74 77.56 41.40 93.29 60.87 69.63 83.08 66.55 60.30 41.46 30.02 14.47 21.97 6.13 55.30 95.72 77.66 50.10 40.66 20.35 29.74 51.06 84.21 16.37 18.37 79.17 -50.51 21.75 86.85 10.31 97.46 27.26 28.39 27.76 89.04 56.24 32.45 24.82 39.49 13.75 54.69 23.47 44.74 12.04 56.31 19.01 25.31 47.02 3.41 95.21 69.45 24.57 93.45 97.30 39.19 88.95 3.00 28.45 2.79 33.08 29.50 40.38 47.14 68.47 97.58 66.67 2.93 86.48 29.35 31.34 26.41 12.14 91.41 18.70 90.09 69.01 58.75 47.25 39.87 53.79 50.02 43.12 55.87 41.92 39.17 73.70 37.54 91.62 32.76 3.48 75.04 86.00 0.57 14.83 54.16 42.38 75.41 38.61 60.04 12.50 62.06 37.82 81.28 8.28 57.78 65.98 5.45 24.73 47.27 88.26 28.20 71.94 93.79 21.41 41.28 76.52 32.04 73.82 52.76 65.01 72.46 76.55 8.14 55.11 14.78 29.41 -93.73 62.85 91.05 86.85 54.55 28.98 48.27 57.67 53.19 51.21 8.49 10.92 96.06 33.54 46.20 90.33 9.04 14.20 89.72 38.02 87.66 86.45 74.87 47.51 66.11 88.10 99.85 84.00 24.62 87.86 57.30 26.08 26.56 14.83 60.21 53.23 0.82 79.43 98.53 72.94 74.20 14.76 59.33 22.01 19.57 98.71 12.60 97.53 93.53 24.43 18.28 29.10 59.37 98.48 4.19 88.49 61.97 6.40 38.46 88.35 2.99 6.90 24.97 25.63 49.33 5.48 14.86 19.05 87.72 30.40 20.36 89.67 43.26 10.16 58.18 96.58 9.62 5.59 85.79 43.61 20.31 51.67 28.21 88.06 36.98 42.69 87.79 48.08 46.62 35.34 85.77 50.53 86.08 21.90 31.98 37.60 37.41 81.47 91.74 50.84 -52.87 18.91 14.24 36.63 39.42 50.16 3.45 78.11 24.13 3.43 78.84 47.29 70.52 38.81 47.42 50.17 15.94 50.14 21.92 65.38 4.32 65.92 17.91 91.83 30.96 66.02 43.17 35.75 98.34 54.32 85.77 26.96 68.84 76.70 16.06 59.75 74.17 62.73 34.70 18.76 62.51 54.89 5.68 12.32 64.84 66.14 34.60 95.69 86.13 19.04 48.45 35.13 26.56 78.96 2.65 15.77 83.84 15.86 2.18 94.42 44.30 14.43 92.58 97.58 74.68 27.20 66.27 29.91 83.18 55.27 56.12 24.23 91.86 41.60 25.82 95.93 85.28 61.70 62.83 42.43 50.39 34.55 12.36 67.63 39.12 86.30 94.43 89.28 25.11 94.98 15.74 31.10 3.38 99.58 24.33 62.20 96.59 65.28 56.52 71.56 -6.33 69.34 92.73 83.80 76.09 48.67 23.81 16.78 12.90 40.77 77.84 18.92 95.13 33.55 66.30 27.86 30.12 14.78 82.09 73.30 69.50 71.07 18.71 1.56 89.51 74.44 39.08 34.94 15.66 32.44 97.92 87.09 84.53 82.18 47.73 74.06 90.04 99.18 16.85 6.63 27.81 12.01 38.47 94.87 43.97 62.49 36.60 9.93 79.56 65.13 1.85 89.14 32.44 28.46 2.71 50.44 24.89 7.00 27.98 46.57 85.86 31.78 98.78 76.21 15.88 52.50 73.17 72.02 28.48 9.91 99.06 28.15 58.86 40.16 63.41 55.63 88.33 66.41 5.37 67.68 30.61 61.16 30.82 65.99 14.57 4.61 95.15 61.81 17.39 13.56 71.20 64.23 98.39 84.87 89.07 16.27 71.04 96.78 30.47 18.67 -5.95 46.90 32.80 95.84 62.37 72.70 18.41 0.01 38.35 51.82 11.99 47.36 81.99 81.10 9.10 70.82 52.26 43.68 39.15 39.70 66.12 92.47 14.08 74.04 62.68 88.48 97.89 33.89 75.88 8.05 75.76 9.99 16.44 6.45 76.68 70.41 8.93 35.05 46.82 11.57 32.56 8.56 75.70 76.40 42.32 67.69 12.66 8.26 40.51 6.40 51.46 36.93 2.14 81.23 62.13 24.99 57.32 48.26 91.70 48.89 40.36 8.77 76.21 21.51 37.91 3.27 71.89 40.06 76.92 88.55 25.94 9.22 6.79 86.06 74.86 31.54 59.02 97.36 4.33 29.74 75.87 73.06 8.50 37.23 58.52 95.10 75.40 12.82 36.54 2.58 80.08 82.78 45.77 0.90 11.84 41.34 25.23 0.56 88.60 85.53 -5.94 27.57 41.75 95.91 71.93 24.64 92.47 77.69 10.64 20.90 78.39 7.41 95.69 19.51 63.55 25.37 10.50 7.43 96.36 18.73 16.91 20.22 91.71 37.63 55.87 42.30 65.22 48.58 1.06 98.87 58.20 13.12 69.46 78.74 80.81 93.70 98.58 24.71 17.10 20.31 7.94 81.82 20.98 87.86 27.80 88.58 39.73 83.87 57.62 60.00 88.80 41.37 10.13 15.17 50.53 13.82 31.53 63.56 92.53 87.89 36.37 11.67 97.26 85.90 65.56 75.62 85.80 77.41 20.12 2.26 98.37 35.76 6.35 74.87 21.35 64.73 4.36 7.98 22.78 24.42 68.76 13.96 73.94 45.43 50.93 33.36 21.53 49.52 53.03 84.57 27.51 83.80 44.34 98.94 9.82 9.12 91.24 99.99 36.15 79.30 -86.02 64.83 50.65 24.01 7.83 62.33 63.24 99.12 90.03 90.43 64.08 50.54 51.19 78.78 33.55 46.20 23.14 58.17 18.30 15.73 25.76 35.95 41.28 65.74 83.88 50.54 61.24 51.90 49.61 33.67 16.50 15.87 72.01 38.92 9.21 95.39 0.34 90.28 5.44 91.80 92.66 22.66 14.35 55.07 62.31 81.74 57.15 2.88 12.47 32.02 56.04 87.49 10.12 35.74 69.65 5.81 85.22 32.99 99.38 10.11 13.11 47.42 73.65 61.78 17.51 72.52 93.54 94.92 92.46 70.09 73.81 66.76 81.70 37.38 73.46 21.10 31.31 3.63 93.64 62.83 70.45 26.43 66.11 87.23 62.29 34.39 58.49 31.42 10.42 84.48 34.74 27.35 2.05 70.65 28.47 71.40 39.31 79.33 13.30 35.74 -52.92 27.48 13.30 76.06 55.24 35.94 11.03 83.79 31.89 69.39 99.01 39.53 76.10 79.48 22.01 15.04 60.78 97.63 65.86 52.99 33.91 68.16 68.34 71.64 42.15 44.84 67.07 3.04 5.73 63.31 37.00 3.48 84.96 89.51 98.28 42.68 47.02 78.76 58.89 80.23 15.06 84.40 61.47 72.05 64.56 19.90 73.70 19.20 14.58 35.38 56.57 22.69 35.48 92.10 12.34 41.52 84.43 82.90 15.88 61.30 17.57 16.61 61.04 54.75 30.58 73.15 84.65 94.29 48.71 70.42 45.80 21.95 76.60 69.50 62.27 82.06 53.78 65.74 14.90 64.73 66.96 27.51 51.09 28.47 16.87 90.83 37.97 47.68 18.86 41.43 46.70 38.43 22.62 29.96 66.67 89.82 83.32 76.32 13.69 75.11 -73.85 44.73 2.86 84.19 35.23 28.08 97.26 67.86 48.56 44.10 4.51 40.43 41.58 34.82 99.96 37.47 44.01 56.17 65.79 46.35 92.97 92.32 22.46 94.20 72.08 53.04 72.67 52.09 55.27 70.42 59.45 12.36 96.10 3.40 64.20 71.60 79.11 69.37 7.72 27.03 52.24 39.35 23.55 9.04 37.83 39.64 46.79 85.33 38.00 15.54 12.02 36.21 71.47 22.63 17.98 78.01 19.07 3.30 46.00 51.69 55.97 14.15 89.57 95.03 89.74 29.94 36.39 28.91 76.65 43.04 66.14 92.45 86.99 67.59 4.83 25.73 76.02 23.03 59.89 58.96 61.05 67.02 76.44 94.39 60.68 24.70 68.11 32.33 41.63 55.27 78.27 83.57 42.74 60.10 78.00 16.82 73.28 77.89 20.17 46.64 -26.49 11.01 78.83 64.52 17.11 99.93 38.25 73.38 4.72 74.51 66.96 85.01 39.81 68.21 94.57 11.00 96.61 10.16 62.70 84.85 58.21 26.49 35.80 40.85 78.62 23.65 0.16 31.07 94.83 80.13 22.68 45.36 11.31 96.41 63.84 95.60 81.08 97.67 96.71 53.92 33.69 18.05 63.06 8.48 16.04 19.48 65.10 11.57 20.88 13.40 12.00 20.86 9.66 31.97 99.31 99.73 46.48 48.98 68.76 14.99 79.03 29.80 99.93 60.66 64.42 54.59 47.75 45.54 48.57 34.61 69.87 97.31 57.01 66.12 18.27 33.57 72.41 4.01 85.15 60.91 17.00 82.98 61.91 85.81 78.15 0.16 25.09 24.95 16.67 88.43 83.67 98.94 80.73 57.02 77.20 48.47 6.62 13.79 20.40 31.56 -82.40 42.14 53.27 7.76 58.39 36.21 77.81 84.69 64.81 95.60 14.30 25.20 25.07 79.27 52.94 98.06 64.70 23.84 61.49 54.83 61.05 66.97 75.95 52.90 7.85 38.94 7.75 59.38 98.35 61.25 73.19 33.54 94.53 51.97 78.07 77.94 34.77 92.15 20.28 95.85 39.14 68.36 13.09 60.80 35.69 72.10 10.60 41.34 92.29 51.73 66.31 90.17 59.51 70.98 10.71 60.48 78.26 89.71 21.60 32.10 28.65 30.37 22.41 57.56 31.63 41.58 9.72 10.34 77.40 8.70 55.21 14.81 48.41 65.24 87.51 80.32 16.49 94.04 2.08 8.91 77.22 61.27 72.36 86.85 18.55 27.90 25.88 7.87 41.18 10.50 74.63 10.16 15.06 33.96 67.70 87.84 11.11 61.12 86.88 85.98 -57.25 9.35 19.51 75.53 97.53 20.40 18.37 1.93 84.72 71.08 70.10 4.27 23.48 7.87 63.92 41.09 88.84 2.73 52.33 8.20 76.09 84.26 49.24 47.11 45.71 75.08 51.46 99.67 8.53 12.56 47.35 51.51 74.37 93.76 64.14 53.93 28.29 19.01 35.82 69.29 63.48 18.00 81.32 76.12 18.86 68.09 60.27 71.55 96.26 85.00 94.66 11.94 75.07 71.24 4.92 86.58 66.32 68.16 25.09 52.61 9.53 4.90 75.93 70.66 91.18 18.16 11.17 72.42 87.18 49.87 95.78 9.50 85.23 62.69 22.44 86.68 0.35 30.90 80.93 60.23 80.03 74.58 85.19 42.05 71.48 46.82 2.23 46.10 58.15 98.88 29.98 48.79 45.25 63.71 96.22 73.43 42.78 32.80 93.83 11.45 -87.22 61.81 34.05 92.00 1.66 81.59 12.80 84.67 13.84 53.23 82.20 41.94 71.21 82.70 78.73 11.70 81.67 41.39 65.37 20.71 0.06 22.89 75.90 83.98 45.35 71.98 24.41 51.16 77.19 19.28 85.04 71.25 57.74 77.04 78.98 40.30 71.32 32.31 79.45 41.61 9.33 54.65 98.38 46.88 15.68 56.60 39.84 9.77 98.99 20.42 63.63 36.11 83.95 70.14 42.28 89.33 93.00 12.57 78.66 52.98 55.63 35.08 30.58 3.66 78.95 94.52 8.96 10.53 44.02 99.95 16.61 43.34 4.78 44.97 60.83 29.12 10.68 22.18 92.20 3.75 88.61 62.34 0.54 6.03 24.86 35.96 17.55 1.54 7.26 73.20 34.55 60.54 9.43 60.92 13.55 99.94 81.26 36.16 76.69 30.24 -21.41 37.87 96.81 27.13 27.27 4.13 45.16 39.32 2.21 91.94 87.51 68.15 80.90 42.71 36.91 37.68 40.26 40.42 57.20 33.48 96.31 69.88 83.34 70.99 86.11 37.50 1.72 91.73 61.72 42.16 33.68 0.33 22.93 41.79 36.03 86.69 93.51 7.30 33.62 33.08 13.36 25.27 41.69 54.88 87.52 59.19 8.25 67.40 25.54 84.45 21.01 81.10 86.75 80.62 55.20 74.97 15.83 53.47 81.18 40.24 22.26 11.18 9.17 43.30 25.70 49.26 13.96 75.09 8.09 83.79 12.48 69.37 81.83 41.91 50.92 50.00 70.30 27.19 44.95 74.02 50.39 14.50 53.19 18.11 69.41 9.21 31.13 93.27 18.97 7.93 60.56 20.95 26.90 88.89 93.20 88.61 60.69 40.64 89.60 83.67 -47.21 57.41 49.06 71.80 55.26 2.32 23.82 95.74 98.52 3.01 88.64 98.57 84.99 33.46 50.57 56.27 96.86 89.72 14.47 90.69 83.93 22.01 13.04 69.59 7.97 19.85 58.73 4.99 24.35 75.77 10.96 15.42 56.70 45.90 38.30 1.59 11.38 90.41 67.99 15.28 58.28 88.60 56.12 83.99 21.88 95.76 15.02 42.75 23.08 90.75 52.63 2.28 38.20 74.03 84.26 4.47 83.48 71.66 63.13 33.35 10.49 8.22 89.61 11.44 9.04 81.66 16.90 42.30 79.23 91.92 22.18 64.96 39.23 7.41 20.95 66.55 33.82 43.94 31.45 66.51 16.98 47.38 7.20 89.08 93.12 85.21 52.03 77.75 73.79 56.49 54.56 63.53 38.93 7.37 68.71 61.06 56.48 78.06 5.40 61.27 -25.50 89.80 92.83 95.82 20.22 50.23 7.64 33.78 28.32 15.64 44.57 87.44 67.55 4.09 10.07 3.51 52.42 31.14 7.81 47.98 59.45 59.69 85.52 36.86 12.47 90.11 84.00 85.50 27.50 18.77 48.03 88.67 89.55 43.59 67.71 66.32 10.99 21.61 2.06 79.55 41.35 77.93 29.07 95.04 80.23 66.45 91.77 61.34 55.52 70.05 15.12 31.96 76.13 72.81 96.71 45.08 50.99 63.33 48.95 1.13 23.05 9.97 63.37 40.16 26.64 86.26 38.39 54.67 52.02 36.43 80.75 13.95 80.87 59.15 64.28 10.63 8.65 2.48 66.97 85.11 33.79 59.13 8.36 14.69 98.41 79.59 99.83 92.50 34.56 13.88 95.15 62.60 73.39 85.34 57.19 46.58 64.07 10.71 69.42 10.84 -59.63 13.95 80.07 77.30 32.89 44.84 51.42 90.85 49.62 74.05 10.17 98.23 83.31 84.32 91.04 96.95 42.46 2.13 39.16 55.83 19.25 95.29 87.63 18.77 37.23 81.36 20.10 24.26 13.81 11.75 2.91 80.10 48.77 56.39 97.48 10.43 55.09 62.60 48.35 86.34 5.38 66.51 11.62 89.94 43.12 7.57 69.90 43.97 80.03 70.17 45.61 37.37 10.12 70.27 40.17 14.00 87.26 43.85 19.14 49.85 89.58 44.17 17.33 12.80 30.26 72.93 43.62 35.31 79.65 35.46 3.28 88.68 78.85 54.97 82.53 57.59 3.27 7.37 21.89 56.41 67.12 84.20 67.76 15.99 81.22 3.85 51.88 33.86 55.69 42.43 56.93 95.42 53.74 77.72 99.74 35.46 99.02 78.75 4.58 78.15 -99.12 75.72 79.64 55.08 80.49 35.65 25.33 2.04 50.24 70.53 4.52 14.99 24.52 45.53 88.69 46.83 8.87 65.19 72.24 65.87 41.66 2.63 97.15 8.20 6.06 50.83 81.35 13.55 39.06 9.42 16.05 23.82 43.40 57.44 30.00 60.38 85.60 54.33 52.03 17.41 62.50 83.09 58.41 58.34 66.10 98.27 15.12 53.23 17.95 99.68 1.74 29.45 77.21 42.31 69.13 96.58 95.35 26.31 84.68 66.81 32.71 12.95 90.34 48.23 59.24 40.00 20.64 21.82 70.38 68.84 38.56 79.48 63.04 41.32 0.86 88.47 16.11 94.53 72.90 59.37 21.45 57.84 27.99 70.95 37.15 24.84 69.43 61.76 2.90 49.92 73.28 43.37 63.86 94.04 93.70 20.09 1.44 22.56 88.17 2.97 -94.54 40.16 59.45 88.78 3.76 76.90 32.18 52.47 60.65 70.96 33.75 64.74 17.80 94.75 81.10 95.69 60.95 42.65 31.45 11.43 43.36 82.21 94.08 96.46 3.06 60.66 59.36 88.66 37.54 25.96 75.25 88.55 27.01 35.13 29.41 93.43 6.67 74.76 64.32 23.66 98.33 39.60 19.13 14.23 48.77 32.65 78.92 52.91 12.39 13.19 50.65 25.70 60.37 99.53 92.63 54.50 17.08 70.79 32.47 28.78 90.92 79.69 45.69 0.61 25.95 54.62 1.52 57.74 63.90 49.23 57.17 26.63 60.65 56.65 44.43 37.21 55.77 82.74 8.56 91.20 45.30 34.78 88.76 46.04 76.48 55.38 92.76 12.41 72.90 52.74 95.47 16.36 26.93 32.34 50.05 60.33 64.47 39.29 97.51 78.46 -83.72 61.15 49.60 26.15 68.32 14.34 31.08 79.01 74.02 62.97 89.68 89.59 71.48 14.04 62.51 64.20 96.15 0.60 85.85 27.11 35.96 20.31 51.61 76.54 27.87 40.84 58.06 67.32 26.99 3.29 71.54 62.79 78.80 49.00 95.04 22.18 27.93 31.35 45.26 54.77 5.83 78.17 77.85 27.79 45.02 72.27 63.03 63.95 58.92 28.89 19.88 11.97 30.36 90.01 94.51 37.75 41.41 7.77 92.41 68.51 87.43 77.20 2.01 91.59 71.92 16.93 39.76 85.56 52.63 89.67 59.71 99.40 24.01 23.29 61.98 23.56 69.67 13.55 5.10 7.07 18.56 26.17 41.99 86.26 68.12 10.77 0.65 71.41 28.18 79.27 40.54 23.37 28.30 40.03 43.02 41.30 25.00 70.55 75.53 73.60 -93.79 28.61 36.91 82.47 67.18 81.52 2.30 57.02 91.85 13.30 66.41 67.15 71.10 30.97 62.12 23.66 8.70 68.38 36.12 78.58 35.33 66.90 2.06 12.46 33.28 14.22 3.56 91.55 32.72 89.93 2.04 37.28 64.65 98.05 76.72 86.33 28.46 16.04 28.77 16.81 69.51 40.03 62.90 68.99 73.25 6.96 37.57 7.43 94.97 50.62 70.61 0.39 25.86 17.55 47.89 59.07 15.06 69.76 35.82 99.11 95.16 96.50 23.12 66.96 74.94 69.29 1.72 58.10 16.34 89.66 24.05 73.00 24.84 85.26 16.37 95.78 66.77 7.57 74.84 13.47 83.52 26.77 73.50 64.86 83.57 79.36 22.13 36.01 52.67 87.56 95.18 84.75 25.09 7.62 68.67 68.86 28.58 80.51 99.17 11.19 -7.90 24.28 68.40 49.06 45.86 3.36 19.72 33.45 1.95 3.23 18.07 52.23 52.72 83.06 33.80 68.32 50.59 30.39 95.25 94.36 94.48 7.19 85.95 33.95 32.38 88.80 39.24 39.52 60.46 0.51 43.57 67.40 36.32 38.85 30.52 99.57 41.52 36.45 49.81 33.88 61.93 47.70 73.82 38.29 16.59 95.16 56.18 45.35 22.86 24.76 8.57 96.78 56.84 80.44 23.99 63.50 53.17 33.05 32.72 41.68 97.03 72.17 18.17 2.39 10.58 27.93 53.06 69.33 67.01 14.01 98.33 56.38 91.60 69.00 63.61 10.86 88.51 59.97 90.30 54.73 13.90 36.13 30.01 0.12 80.36 8.38 79.15 27.83 67.89 45.68 69.80 78.52 33.45 55.64 32.14 26.65 80.45 66.76 54.82 71.55 -27.31 53.89 36.37 20.74 28.52 77.46 5.16 32.14 25.43 77.72 83.34 79.06 38.69 84.53 94.30 65.81 33.48 46.31 40.48 74.19 37.87 15.56 41.68 64.52 43.11 75.86 10.17 21.77 13.76 24.21 41.81 24.39 43.64 54.58 58.17 18.02 60.68 70.90 84.90 58.88 38.06 33.91 79.44 2.19 39.61 37.68 91.94 86.03 84.78 80.23 66.24 89.31 66.00 42.87 87.80 98.34 93.67 33.45 16.80 60.37 33.07 84.72 41.51 95.23 64.83 32.32 24.25 99.26 71.46 31.97 51.32 55.23 30.46 51.46 75.16 19.84 41.63 16.06 95.94 53.59 31.85 85.80 80.70 10.99 15.67 42.92 96.28 27.39 33.98 91.29 72.61 70.33 43.55 82.30 24.84 29.97 75.12 98.25 47.71 88.93 -30.97 60.77 55.08 15.54 7.28 78.92 59.89 83.76 38.49 22.04 19.73 1.56 10.25 40.21 36.23 43.38 54.96 99.04 89.91 36.31 45.64 42.06 46.90 44.35 10.63 81.97 24.78 85.03 21.19 82.05 92.77 21.50 56.02 55.20 4.36 66.87 77.80 9.15 2.07 90.32 84.07 58.38 74.98 7.13 7.02 42.51 69.12 59.56 81.80 60.52 1.75 75.44 54.35 10.69 59.13 36.60 5.36 75.48 97.46 58.01 90.57 8.37 65.25 98.64 78.37 52.92 1.56 83.90 55.96 58.00 73.29 10.71 7.25 17.96 10.12 40.31 86.60 49.45 87.33 69.61 55.58 61.29 91.60 27.98 23.17 73.84 69.76 26.32 97.03 40.44 7.56 6.39 11.77 1.57 6.29 57.44 81.37 15.85 38.63 44.08 -45.93 72.93 17.01 37.86 49.57 40.90 84.27 47.42 28.07 72.66 86.51 59.60 28.40 7.41 68.72 95.43 28.75 70.35 66.17 65.75 92.04 35.45 18.07 65.28 50.44 52.61 3.28 27.22 33.07 79.77 9.16 29.74 28.27 42.71 11.16 36.60 27.37 80.97 89.94 2.01 63.20 69.15 45.66 61.52 36.56 38.59 98.23 74.48 69.90 22.85 48.94 19.91 36.59 9.72 11.80 2.17 23.72 15.68 96.90 54.25 72.66 63.50 53.98 19.22 11.10 70.31 85.88 91.19 87.76 48.22 57.12 19.79 35.24 97.36 21.49 68.29 86.85 55.04 8.50 10.55 60.80 57.33 32.85 17.71 0.51 31.24 53.68 98.52 60.47 58.05 90.95 51.59 2.07 0.16 9.34 57.31 53.11 74.77 25.42 53.39 -11.30 3.55 3.62 58.97 69.17 84.09 87.51 75.31 82.99 98.70 16.02 41.18 77.52 22.69 43.36 53.68 23.76 75.38 26.28 72.14 94.37 90.13 34.94 7.87 97.23 67.02 40.77 74.94 94.62 48.12 18.64 62.08 14.91 23.30 27.08 75.10 16.94 72.37 25.46 42.30 90.69 10.00 6.68 9.70 39.89 86.11 18.74 43.47 18.65 67.72 15.33 20.41 53.27 52.86 15.50 50.14 55.59 47.66 11.20 38.56 61.44 43.64 46.49 6.55 99.59 29.71 38.07 75.80 89.81 97.09 48.91 80.63 30.89 34.75 87.52 94.44 92.13 20.04 35.92 35.30 40.66 88.25 6.12 77.99 13.84 3.34 70.88 52.27 92.55 80.49 27.43 42.19 59.14 50.04 54.70 88.73 44.75 42.75 14.75 4.10 -73.39 18.68 1.32 51.44 96.96 6.87 58.62 41.64 31.87 42.45 89.04 57.24 66.22 83.66 25.93 38.60 39.11 60.08 71.39 89.19 62.93 69.52 11.68 69.97 88.33 71.50 79.54 13.83 74.69 25.86 97.55 57.52 51.12 91.63 73.32 15.19 51.00 23.77 56.98 21.74 79.63 65.74 4.48 80.35 7.28 87.73 75.99 2.77 88.15 9.37 63.54 42.46 64.29 78.97 18.55 89.05 98.83 34.88 96.58 36.09 6.72 90.51 57.86 56.98 77.94 55.96 20.83 56.63 15.05 83.63 8.76 44.57 22.29 47.04 12.16 72.58 10.27 13.79 45.69 58.89 78.04 82.38 17.77 33.94 60.98 14.33 12.01 88.05 15.95 71.44 4.94 74.88 68.02 64.24 16.43 77.52 64.66 18.90 33.82 60.52 -34.18 18.04 64.22 84.47 10.21 44.32 25.56 51.54 91.05 12.49 15.20 22.39 24.24 0.20 70.62 40.56 44.92 3.68 62.88 52.35 65.85 53.62 6.52 18.71 37.39 66.58 50.56 67.03 18.45 24.64 36.93 13.65 18.73 84.13 15.34 18.47 58.44 34.37 24.45 55.77 93.74 24.52 51.28 40.68 44.36 70.75 40.46 51.61 76.96 89.87 6.01 54.59 83.76 30.68 75.54 3.88 38.72 40.00 44.26 9.59 15.43 9.29 17.36 84.30 58.71 72.62 28.08 98.96 26.84 77.14 79.22 46.99 76.26 26.97 60.62 8.16 61.18 61.85 12.93 93.78 74.06 62.66 33.75 13.29 93.45 69.00 25.88 50.82 49.60 5.27 91.11 8.73 10.74 40.04 53.94 31.02 27.89 5.62 99.57 30.44 -83.85 36.09 91.99 17.54 15.85 86.36 1.32 16.15 22.70 61.87 9.47 6.51 93.26 66.54 98.51 50.39 72.72 47.23 28.88 31.51 50.60 1.40 75.44 62.66 55.46 17.38 70.17 59.28 64.19 72.71 75.43 88.34 17.49 91.91 60.63 39.67 90.84 84.28 77.28 46.81 83.77 25.19 35.49 48.81 13.89 55.87 89.33 62.66 61.87 92.94 33.67 86.99 55.77 81.35 62.63 49.51 10.18 49.40 1.15 89.69 48.45 92.76 42.86 89.60 54.19 37.01 75.36 99.33 88.04 4.61 65.19 51.37 34.55 71.67 51.92 9.98 16.69 92.29 19.38 57.57 22.92 59.63 6.39 4.81 1.31 47.31 89.42 10.14 8.43 16.30 42.81 81.57 71.33 56.06 25.66 39.41 75.52 90.09 65.76 4.80 -7.57 81.64 44.63 16.81 49.15 87.68 9.05 11.06 13.80 29.75 82.27 96.25 31.13 81.80 72.43 14.05 29.72 18.55 38.64 29.04 64.52 53.46 89.86 76.03 50.80 65.87 74.46 16.83 95.24 41.34 56.05 27.49 6.66 40.41 73.46 64.06 39.35 69.60 44.82 74.97 82.81 87.18 53.92 5.81 8.35 9.00 88.81 67.91 31.97 40.49 3.91 47.92 68.80 65.16 80.28 85.48 23.81 35.52 55.85 85.82 62.69 95.56 87.67 22.38 49.76 73.10 22.03 54.08 90.55 97.71 92.85 71.87 96.29 98.35 82.85 25.74 79.69 92.20 69.02 61.85 46.62 0.79 27.37 24.37 48.81 73.40 63.06 0.56 2.11 1.69 43.24 24.94 51.55 92.68 55.16 91.77 88.84 10.52 63.63 77.72 -79.65 22.26 18.02 78.36 50.90 12.00 77.67 27.67 7.17 4.69 17.62 94.48 7.36 34.49 26.06 32.68 43.19 41.27 18.51 57.99 3.63 95.34 87.28 77.71 94.25 43.75 21.70 45.49 24.15 39.42 72.88 5.03 30.72 38.92 35.87 95.48 15.56 5.13 11.79 54.04 24.04 69.58 3.28 71.26 14.59 62.81 96.23 77.27 86.01 65.98 40.25 99.71 69.24 69.68 25.93 31.28 25.79 12.46 91.21 84.02 99.63 73.16 68.86 65.66 10.70 5.79 4.99 4.40 24.20 19.62 76.36 45.07 64.26 82.61 73.98 60.52 26.46 10.44 54.84 45.62 45.44 21.80 68.16 18.82 60.70 3.01 44.50 10.07 8.33 88.34 0.14 95.74 15.80 97.60 12.51 43.05 11.57 84.16 72.32 71.32 -12.17 23.73 25.87 87.52 64.67 28.39 95.84 95.34 38.03 42.44 31.81 1.64 52.79 12.55 76.08 64.74 30.61 88.11 13.11 84.08 7.38 36.06 20.18 64.49 90.14 9.89 48.41 50.77 15.19 81.90 82.12 29.68 31.46 61.34 12.85 33.82 50.01 42.95 97.64 29.50 95.22 24.12 52.54 74.92 2.53 77.90 21.54 7.57 79.20 87.88 28.24 43.93 33.26 62.46 75.59 61.60 8.05 96.06 25.12 61.98 86.60 82.35 13.51 18.96 8.27 83.83 8.13 67.32 45.55 39.90 60.86 6.35 3.43 67.36 14.05 21.94 8.21 64.76 88.17 90.53 57.95 16.31 1.20 73.72 32.83 3.12 94.78 69.04 6.14 45.15 90.97 10.98 38.73 64.65 96.26 18.50 56.38 56.46 2.95 78.72 -65.20 71.76 49.56 46.36 10.44 98.45 96.10 57.88 75.98 74.07 3.91 66.17 2.96 36.91 5.76 95.95 28.19 22.68 69.46 98.66 39.80 82.84 19.56 68.73 3.05 36.65 96.48 4.05 9.09 28.01 11.99 42.80 91.36 36.18 93.38 30.35 94.37 38.98 43.00 64.23 83.74 8.74 27.27 72.72 49.25 58.52 44.30 75.64 15.30 80.50 54.87 83.47 35.97 78.73 25.33 60.73 6.96 28.88 72.14 58.18 93.60 91.16 98.74 67.00 70.52 22.62 93.00 72.57 79.28 51.78 98.09 23.97 62.30 81.24 10.08 98.71 47.71 2.12 13.61 45.24 16.64 82.18 5.83 35.44 54.68 34.47 59.08 35.96 85.76 4.32 27.81 51.05 85.00 11.98 81.56 13.85 52.94 89.25 1.31 67.71 -31.80 26.96 54.46 88.95 14.41 57.19 43.31 89.74 22.61 1.59 20.60 44.78 18.99 58.85 51.62 80.79 88.91 25.40 18.98 58.63 39.74 86.51 65.49 62.48 29.34 20.28 37.73 70.68 99.57 45.89 70.72 3.80 75.86 66.89 33.08 91.44 52.92 43.97 49.69 29.65 71.99 9.07 8.82 12.72 48.27 70.10 1.32 73.08 22.70 49.80 8.11 72.78 51.98 42.78 26.91 5.28 41.78 47.26 53.48 41.83 26.50 43.84 5.83 50.09 61.39 75.36 56.18 59.72 57.62 15.42 70.84 37.31 65.12 80.69 30.73 76.16 66.48 19.08 51.01 44.66 19.85 73.56 17.28 30.61 66.92 39.26 49.43 48.67 3.85 58.58 81.83 99.70 28.53 33.73 22.04 49.29 49.55 44.82 70.25 88.07 -40.70 58.61 51.87 98.79 91.57 83.87 43.27 27.80 99.06 20.49 3.90 71.18 50.44 21.73 57.77 85.97 58.57 47.90 48.38 59.01 57.24 45.59 84.47 35.55 73.34 60.13 97.01 15.07 0.82 64.12 16.38 71.14 93.89 97.20 13.01 38.80 10.07 59.19 3.06 20.53 97.85 87.16 42.62 42.43 57.15 40.83 67.35 32.40 41.44 69.49 69.62 31.62 31.03 52.97 32.36 2.49 99.26 17.39 6.16 15.15 24.88 99.72 9.98 58.57 42.95 73.82 42.83 15.33 65.26 9.94 25.70 17.27 44.29 76.78 73.57 85.45 49.69 14.45 41.48 32.30 95.13 52.77 72.47 44.16 49.70 10.05 65.76 7.06 27.35 94.61 38.04 16.52 61.87 91.02 37.07 62.77 8.55 30.69 3.85 86.48 -21.77 96.00 56.27 84.94 49.67 13.43 64.21 63.54 62.37 38.40 5.89 15.04 69.96 44.19 78.18 15.06 80.14 39.08 28.06 65.76 24.75 26.21 70.41 17.80 26.45 39.66 31.20 83.14 96.88 11.15 63.76 85.99 73.62 3.70 50.11 31.16 37.59 66.89 89.14 29.52 32.89 72.58 19.48 64.52 20.41 56.46 85.89 71.67 4.01 25.91 34.43 41.02 14.78 48.30 13.41 52.72 66.58 32.45 86.06 35.39 71.62 35.12 89.44 93.03 82.50 65.43 92.75 26.80 24.08 98.67 52.90 47.11 8.66 36.36 59.93 52.37 43.98 70.42 68.28 77.12 39.79 43.60 72.46 85.76 94.12 94.39 68.78 53.03 10.15 98.38 78.88 49.75 54.41 28.72 71.55 17.79 56.74 56.76 25.37 18.98 -81.12 10.74 47.33 94.65 24.53 43.87 60.82 54.85 68.39 88.27 37.56 18.34 27.09 67.04 67.20 92.38 50.10 74.97 53.66 20.23 89.15 75.56 9.36 22.70 71.78 94.84 2.09 54.05 3.98 71.34 83.25 37.58 74.82 50.16 95.94 56.90 59.16 99.30 71.48 37.75 20.73 28.87 66.14 16.78 22.44 94.59 53.50 29.06 67.37 24.04 24.78 21.68 79.23 63.31 8.87 82.30 95.99 39.68 74.80 73.96 79.29 30.45 86.49 88.01 88.85 42.15 47.53 35.73 76.98 53.43 52.14 83.01 65.15 63.64 94.61 26.90 14.14 29.40 78.52 65.32 19.42 98.92 40.47 99.47 10.24 12.56 93.23 72.95 26.94 35.55 1.94 16.67 73.80 41.52 60.31 96.57 99.74 14.60 18.92 75.25 -5.94 48.71 36.87 82.16 34.84 6.21 92.68 61.81 37.98 73.58 61.27 77.94 43.14 36.65 95.37 14.35 92.22 87.36 35.98 26.98 82.69 84.42 20.25 24.51 39.00 36.31 91.30 88.83 99.56 43.04 35.01 45.07 56.79 99.33 47.31 93.28 79.64 23.56 77.13 18.93 26.85 79.67 50.79 7.06 9.18 26.48 33.88 57.50 5.49 7.57 13.87 76.57 30.02 24.38 17.78 78.18 70.00 77.22 11.49 60.14 57.25 80.25 26.35 63.15 56.83 24.27 64.88 62.47 61.38 28.82 50.02 98.43 23.85 93.61 45.41 97.29 15.63 94.80 11.39 33.88 92.95 90.42 38.85 48.87 18.09 87.56 95.83 76.21 66.72 34.87 83.96 87.75 0.23 21.24 66.21 11.34 40.38 56.29 61.30 80.11 -29.30 41.59 45.47 10.52 5.52 28.38 55.44 48.75 20.22 95.03 3.25 54.06 2.67 6.25 1.68 98.25 66.22 8.32 0.81 72.96 92.74 59.29 35.89 29.66 29.14 92.81 23.57 97.97 38.18 94.40 37.51 7.22 59.41 8.17 83.17 90.06 2.78 7.52 10.65 47.37 60.37 51.68 26.60 58.52 30.15 30.75 44.65 7.65 4.58 59.50 48.54 5.25 14.04 46.89 23.88 64.97 78.55 3.85 99.57 41.93 15.97 68.34 94.32 52.92 60.74 15.37 94.70 9.98 92.09 45.21 7.52 67.53 25.55 63.44 55.05 58.94 20.35 5.75 63.62 31.10 88.47 8.27 31.54 55.66 69.15 62.72 7.06 56.64 45.50 42.66 84.57 84.26 39.73 59.30 31.28 58.62 6.11 37.47 15.93 79.06 -37.34 11.95 9.81 61.16 91.52 29.85 35.81 55.67 89.86 93.93 59.37 23.66 25.54 21.71 21.80 58.09 81.62 27.86 63.16 90.37 74.60 68.71 28.31 97.39 31.13 33.07 86.04 19.77 14.91 55.17 100.00 90.18 95.74 9.05 73.59 64.56 45.56 94.30 78.40 45.73 22.20 30.86 99.28 25.86 63.99 40.73 31.58 32.55 6.67 25.05 62.65 6.08 88.23 65.07 67.27 2.45 81.84 1.54 57.50 16.20 65.75 81.02 49.91 85.43 70.95 78.02 22.89 83.80 55.82 30.46 25.46 15.04 32.71 21.17 96.05 38.47 94.12 63.44 47.84 29.03 0.25 54.17 22.20 14.30 65.03 20.89 39.38 8.04 5.62 71.22 31.41 13.81 2.20 38.24 20.25 37.85 90.83 42.08 34.81 38.30 -73.81 62.65 32.13 13.39 70.66 88.34 16.52 51.40 25.74 37.52 18.90 45.88 35.24 3.91 0.65 93.13 51.50 78.34 85.45 55.84 84.65 99.25 50.36 42.47 37.73 40.64 67.45 85.62 24.61 99.37 12.27 59.77 58.36 14.05 77.64 65.45 46.22 40.45 70.89 39.44 29.55 27.92 57.22 11.33 89.98 67.10 88.56 70.28 86.26 61.45 53.25 66.79 64.30 81.06 46.19 71.10 57.12 79.90 71.55 24.69 24.95 94.63 71.90 46.16 78.50 2.16 99.80 77.62 36.69 91.92 15.61 14.62 10.95 52.22 81.64 56.46 99.74 88.62 48.53 23.10 17.32 73.00 95.18 89.40 0.83 92.89 88.82 60.82 27.52 90.25 64.62 33.24 55.67 51.15 11.21 73.38 25.23 30.30 21.09 45.64 -97.72 98.03 87.70 63.82 41.05 96.55 94.56 84.51 78.27 32.35 42.71 41.31 7.72 68.85 98.97 67.73 50.68 1.12 63.19 44.48 16.79 14.83 47.48 75.83 41.15 3.72 53.39 33.68 26.17 61.33 72.29 59.37 66.49 62.18 74.75 95.46 94.54 92.01 4.64 56.55 38.43 35.64 94.97 89.91 26.46 93.51 84.04 11.42 36.21 83.59 42.22 60.92 27.99 3.70 14.72 21.67 27.50 45.81 90.65 20.82 73.20 92.66 21.63 9.61 91.51 73.10 34.44 37.07 85.17 64.58 24.29 18.99 18.22 57.36 99.79 44.49 58.88 44.99 89.66 65.96 53.23 52.25 44.65 11.24 34.62 11.26 47.85 6.31 48.67 92.87 14.08 56.17 60.58 74.36 64.30 53.12 8.46 43.76 67.30 65.25 -5.85 29.25 5.53 52.11 15.07 88.71 76.45 35.91 50.06 75.34 52.62 15.99 10.68 26.43 25.26 47.14 40.84 70.14 31.65 93.65 85.09 32.55 15.89 38.13 20.92 3.34 28.24 83.78 86.97 4.68 20.67 34.91 36.98 46.11 25.27 29.81 12.98 27.41 53.84 22.64 81.79 0.84 73.42 60.98 64.79 93.08 90.97 56.63 22.81 39.36 96.51 39.34 39.18 38.33 83.29 44.36 75.63 15.40 12.24 59.46 75.39 20.83 85.18 96.74 32.23 30.27 63.35 18.76 94.24 41.53 25.87 38.06 68.59 80.40 18.12 72.70 70.70 96.35 21.41 77.55 53.32 36.34 87.03 73.02 1.70 85.09 12.84 56.02 69.22 52.61 54.92 72.68 77.17 0.95 80.97 84.90 37.74 87.76 76.68 36.99 -25.11 21.23 56.16 42.45 35.61 80.23 67.95 86.22 38.38 4.45 48.48 0.73 33.63 99.85 1.55 82.73 61.10 29.74 73.04 47.05 55.51 82.56 79.49 90.79 40.05 46.13 75.14 72.66 95.72 71.31 11.65 26.16 52.38 69.37 47.78 47.47 20.67 15.18 44.46 80.38 82.78 58.55 40.74 75.37 54.02 81.86 54.91 20.36 44.58 32.19 47.56 56.12 90.49 15.13 70.42 20.06 55.17 14.65 85.23 74.94 53.99 64.22 31.45 60.78 33.72 80.14 10.84 41.05 65.15 9.65 48.43 71.13 0.48 33.69 25.31 94.00 45.99 64.19 29.98 19.12 7.88 76.15 62.08 42.23 11.56 5.04 47.14 37.02 11.73 53.53 59.84 4.89 2.76 24.96 93.06 30.12 36.03 71.76 40.86 85.93 -67.95 53.70 56.15 9.20 52.23 99.97 26.54 69.55 4.12 33.67 75.03 40.80 46.63 89.54 74.58 50.70 37.32 32.21 3.38 24.73 28.22 47.42 31.17 47.88 3.71 23.81 58.06 86.81 64.23 41.02 40.74 10.73 83.22 63.51 61.87 52.93 14.24 52.71 68.01 62.74 43.87 62.40 62.61 52.60 90.22 98.62 47.50 98.81 31.20 90.39 13.23 85.55 3.50 55.85 77.81 74.32 35.35 93.74 98.73 38.12 91.59 54.42 80.52 70.50 93.87 85.57 64.41 21.15 67.23 54.41 60.14 64.29 69.03 1.03 46.94 41.43 16.80 34.63 64.26 80.05 8.88 73.66 92.75 79.18 62.64 60.41 88.74 8.35 58.65 50.11 11.66 94.32 5.49 42.61 76.37 41.63 13.87 82.06 94.90 30.88 -64.61 6.85 67.37 10.64 78.31 71.20 2.55 47.51 87.76 11.78 79.37 17.77 94.92 41.38 96.53 4.82 37.44 89.36 95.13 20.47 73.29 69.49 82.53 58.33 55.60 96.35 2.42 6.72 81.98 4.47 94.62 53.36 57.63 11.27 52.18 14.61 72.75 14.35 85.12 78.33 15.44 83.81 18.48 83.51 63.94 52.94 31.47 68.55 40.97 31.64 36.65 58.15 59.82 83.62 64.99 51.95 49.87 55.78 47.69 25.15 10.53 34.34 63.20 72.48 7.50 21.35 66.62 20.34 87.99 33.62 66.13 28.63 19.90 84.54 22.04 13.23 7.30 81.31 64.78 80.56 68.22 46.96 54.72 98.94 85.48 96.82 17.87 91.08 88.74 42.90 25.22 76.90 60.22 83.91 19.41 16.98 98.93 58.48 82.14 18.55 -19.63 3.13 53.21 34.68 15.89 26.31 4.58 57.91 39.52 55.17 51.18 27.16 68.73 7.18 65.91 96.86 88.97 19.53 10.35 98.48 3.08 90.01 73.44 5.29 87.72 11.91 13.08 83.38 6.34 61.63 56.45 90.64 12.34 38.60 93.31 15.43 56.97 57.22 59.28 52.30 6.12 62.64 76.68 64.09 99.21 24.63 49.07 61.78 19.99 57.10 94.84 11.70 4.71 9.75 57.30 9.17 93.25 47.95 86.39 33.48 35.67 90.77 29.12 37.74 69.96 19.94 18.41 4.85 81.06 20.30 93.52 92.69 10.58 5.11 21.07 28.76 47.79 0.51 97.39 34.80 87.57 21.50 62.01 88.16 36.44 18.48 34.51 90.21 87.95 12.00 72.81 46.34 57.85 46.68 73.01 12.90 21.97 4.38 74.76 34.57 -91.28 63.45 14.55 64.33 14.51 50.22 32.74 67.54 96.07 6.58 45.12 72.19 52.37 6.03 89.07 73.47 64.33 1.66 81.41 31.58 79.72 52.65 50.63 88.96 97.06 20.05 81.15 13.56 64.50 13.71 65.90 76.87 36.36 77.68 45.67 58.90 86.52 2.56 40.02 43.66 65.99 21.31 37.84 78.62 87.46 35.03 65.30 21.02 12.39 62.96 5.67 24.31 66.77 34.68 0.44 34.66 46.63 91.88 35.96 97.90 83.98 77.39 46.59 13.81 41.95 75.30 15.50 88.24 52.22 93.58 2.90 73.89 76.34 57.88 60.38 61.10 8.11 34.77 75.20 15.77 80.59 22.77 3.56 45.09 90.77 59.63 8.21 87.13 89.79 4.77 53.73 73.50 66.47 99.98 13.83 74.35 3.86 28.50 36.32 16.62 -51.97 37.62 32.80 26.50 24.10 30.35 95.04 61.39 79.92 39.05 37.11 3.48 57.29 78.24 59.77 83.50 16.83 1.31 1.64 85.96 63.04 64.66 36.34 86.45 49.12 35.19 19.54 69.43 90.86 65.72 32.11 6.27 36.74 12.20 39.57 31.61 80.98 84.81 48.39 43.18 83.95 24.70 42.96 60.15 79.42 38.85 1.95 68.37 33.80 0.32 53.96 1.24 70.42 5.85 91.27 3.42 5.74 3.05 98.59 8.13 61.12 59.28 53.21 52.20 40.78 50.50 79.19 45.77 16.98 87.06 38.81 62.68 68.92 63.43 49.34 94.23 2.72 74.61 11.23 76.89 38.41 58.07 33.53 18.58 39.95 48.99 65.40 11.75 25.45 67.46 34.70 80.01 96.93 22.77 11.51 98.91 17.63 11.65 86.99 61.77 -58.53 67.62 1.88 57.10 1.66 68.31 20.44 3.94 9.41 94.70 5.58 14.81 91.57 88.10 48.94 90.80 90.06 71.66 93.69 24.32 2.06 94.66 8.27 28.68 0.96 0.23 54.07 52.81 12.24 64.03 96.26 91.77 82.71 92.61 75.42 48.20 47.98 96.44 4.27 29.24 95.84 71.67 64.10 24.60 56.86 95.08 87.48 52.09 14.20 79.27 75.30 13.12 32.97 61.13 17.01 65.32 53.08 6.08 83.40 34.63 94.59 45.59 53.98 74.60 75.15 92.32 30.00 98.07 48.53 83.40 96.50 11.89 89.25 84.44 51.02 50.56 50.81 4.81 19.66 10.15 61.99 56.63 98.20 88.45 59.36 58.35 72.71 21.94 57.55 1.77 90.67 88.06 79.83 44.51 95.40 50.48 60.47 8.60 36.66 43.07 -41.91 22.75 22.46 49.69 66.36 51.66 27.45 20.44 36.30 25.57 36.21 11.80 65.77 37.13 18.94 74.78 51.36 56.14 35.12 86.06 82.56 58.98 15.96 14.71 2.56 32.01 96.93 21.74 33.05 10.31 31.20 26.08 83.66 87.34 59.65 99.04 81.27 31.19 49.33 57.33 70.64 76.12 2.04 46.97 14.26 55.63 76.78 54.70 46.32 12.63 14.79 86.94 53.25 89.19 65.38 43.92 30.98 72.13 12.17 65.72 65.44 54.35 55.49 73.02 73.34 65.60 7.71 66.23 49.24 29.84 53.22 33.20 34.76 75.02 38.32 61.21 31.81 95.00 35.57 84.04 73.25 54.83 33.94 72.72 20.43 83.58 15.76 83.15 18.16 20.69 74.93 83.61 90.15 23.67 53.39 63.13 53.77 71.30 14.90 59.93 -57.56 5.78 72.71 47.51 99.00 4.24 39.69 53.40 65.91 85.01 45.57 99.64 96.32 3.46 48.25 60.39 70.31 92.12 99.87 40.72 77.56 94.09 78.40 11.27 15.05 52.49 21.51 61.05 65.51 36.93 13.48 53.66 71.49 63.46 15.62 25.46 22.21 63.73 37.65 71.03 93.02 55.06 24.27 23.12 75.90 57.48 75.66 12.00 78.75 35.63 55.93 36.62 4.22 8.55 56.43 44.00 19.93 51.39 80.40 19.55 65.03 92.10 94.12 84.97 84.79 73.32 64.08 93.85 46.57 54.32 60.55 46.73 32.24 2.45 58.43 52.33 71.72 25.33 10.26 9.08 37.75 78.98 82.65 58.95 11.33 3.32 76.43 66.29 35.14 23.07 66.87 76.06 9.35 74.21 60.56 8.20 47.12 26.49 18.12 85.94 -35.13 35.62 48.21 66.25 65.87 47.22 75.37 19.16 38.73 43.91 35.09 6.19 73.17 69.37 44.52 9.74 61.86 87.27 49.29 37.58 30.76 22.28 98.42 44.00 93.85 70.13 78.47 88.84 61.61 37.61 13.69 93.06 15.76 24.21 37.47 28.26 53.44 82.61 27.15 4.72 26.11 11.77 23.08 75.28 97.87 31.00 90.63 63.20 55.73 55.47 38.45 27.75 25.93 21.76 66.46 51.12 1.77 82.70 32.11 91.44 41.16 19.89 15.08 69.89 78.49 61.74 94.90 12.96 42.56 87.09 4.58 47.37 17.65 74.14 58.48 34.12 45.49 3.96 67.90 43.02 35.20 44.32 53.20 85.37 55.60 36.09 63.56 12.54 34.94 67.51 80.88 81.04 0.47 41.24 47.83 25.57 94.77 41.15 28.78 41.90 -21.78 78.45 85.83 44.60 42.47 94.61 0.43 52.19 87.11 17.28 6.71 4.56 94.47 72.29 73.71 20.84 76.05 11.87 49.08 83.92 31.26 85.06 52.14 49.06 16.17 65.41 42.52 59.75 51.30 57.80 85.25 92.28 23.97 7.04 80.39 71.10 71.65 70.26 91.31 64.47 80.26 27.87 14.56 56.43 81.81 74.87 28.93 81.61 76.19 93.64 48.89 1.26 11.11 86.12 96.71 7.36 66.76 57.98 20.03 75.99 25.97 47.01 55.74 56.78 15.33 71.98 13.87 70.35 95.76 15.54 86.51 83.95 91.46 36.13 72.04 53.23 18.16 96.29 37.37 26.18 38.76 22.73 46.23 72.12 96.83 75.53 38.62 30.65 47.66 35.35 2.07 91.15 10.85 51.71 16.46 16.85 12.04 9.32 49.57 42.02 -61.35 35.91 53.17 3.19 77.90 58.33 18.95 28.72 48.87 93.37 14.32 19.60 47.65 0.51 60.70 3.03 34.46 4.04 10.82 25.98 64.94 87.36 97.02 2.47 92.58 78.02 79.65 91.58 24.51 59.85 87.34 16.70 12.91 55.77 47.49 85.67 66.35 93.31 77.46 87.58 42.01 7.27 76.64 81.21 37.91 34.35 28.02 9.10 42.99 40.68 82.65 40.12 78.88 23.34 8.11 36.72 26.97 43.38 43.16 74.35 78.35 25.75 57.51 40.99 93.31 83.01 48.62 78.97 22.64 83.01 12.96 58.10 42.38 87.06 93.86 6.03 5.39 10.11 85.10 0.16 5.20 64.60 19.28 72.58 54.66 92.59 49.93 94.02 58.12 66.23 9.01 56.40 67.55 14.55 79.65 83.43 79.41 15.02 13.98 59.39 -18.30 89.79 83.53 20.03 51.30 42.85 86.39 38.60 5.80 30.66 34.38 7.49 17.86 47.66 86.84 50.61 69.57 81.78 0.38 21.40 81.47 82.74 79.22 30.53 60.71 15.69 22.27 76.18 50.66 92.64 26.08 92.76 0.51 33.34 26.23 86.06 61.34 73.65 28.90 64.16 24.71 43.43 79.82 78.16 85.73 45.73 67.70 49.05 46.19 61.25 28.25 22.08 99.50 44.13 55.38 2.88 44.89 78.35 13.55 95.68 27.24 77.78 27.56 28.18 39.03 2.35 65.83 65.01 77.45 95.82 71.43 35.47 18.94 45.02 20.80 70.13 21.06 12.16 85.97 35.53 77.98 39.09 13.27 4.24 23.99 88.58 86.84 85.99 41.47 15.85 62.86 87.29 22.47 3.47 66.91 3.76 3.98 13.45 58.75 4.70 -95.27 10.63 41.51 39.89 59.27 7.72 15.12 35.46 49.66 13.11 81.86 91.24 79.17 43.31 40.51 29.66 49.71 41.72 1.77 93.33 85.44 36.00 43.55 5.86 92.07 83.17 93.42 41.07 69.90 77.27 32.78 62.86 97.82 26.73 21.57 73.19 4.79 64.69 68.52 87.38 17.37 81.01 10.03 70.52 92.32 77.03 84.07 58.01 69.28 42.55 73.33 83.96 7.11 93.37 24.55 24.11 92.63 75.85 55.30 50.89 84.27 20.70 46.96 59.48 18.81 58.31 20.26 41.49 80.97 11.67 19.28 90.08 15.54 27.69 2.51 87.67 18.06 64.03 94.69 89.05 22.25 33.07 71.99 23.54 42.80 46.79 91.37 71.56 86.25 45.01 0.15 7.80 1.78 48.51 99.71 20.73 37.24 43.37 46.17 7.30 -76.14 81.74 76.77 58.56 67.20 93.24 49.86 85.09 47.55 85.14 29.25 67.03 22.59 68.66 12.42 90.51 8.71 31.39 41.82 23.40 33.48 95.09 3.33 28.07 27.09 38.08 56.80 79.07 2.97 5.56 37.72 79.83 94.98 66.10 36.71 95.41 21.04 91.64 51.52 71.53 37.04 6.14 43.80 64.54 17.61 87.84 78.40 28.48 55.65 63.43 40.42 42.13 58.76 94.21 40.54 19.85 13.14 36.67 8.65 0.27 67.96 74.48 19.97 18.15 97.62 91.47 16.90 86.31 8.83 43.45 27.27 81.71 65.27 66.86 29.59 23.58 33.18 5.96 16.44 18.28 82.66 20.90 23.87 71.09 33.20 37.20 91.08 59.39 3.41 47.73 70.72 43.63 56.99 54.37 84.11 93.40 93.69 59.64 42.50 93.85 -88.22 63.95 59.85 32.59 76.68 1.67 62.81 5.84 63.37 25.86 5.77 19.48 75.53 52.05 85.57 53.96 32.65 56.70 69.73 7.05 21.91 34.56 8.67 19.50 8.50 99.81 24.79 20.99 29.85 20.55 92.58 45.92 86.98 36.29 4.02 86.47 8.19 33.46 84.09 8.49 60.74 75.06 86.26 10.89 48.48 43.89 46.84 76.71 59.90 37.10 73.59 89.32 19.81 11.99 11.12 71.07 20.99 1.42 98.96 14.24 79.44 76.11 57.52 42.10 24.09 43.90 37.14 99.44 21.86 28.80 24.97 73.86 73.64 37.01 18.05 92.50 85.94 57.55 46.44 94.82 57.11 19.36 21.52 72.53 60.90 13.87 42.68 9.63 18.84 44.82 84.57 69.62 14.18 98.96 6.73 1.71 52.89 34.27 75.04 51.64 -73.56 41.37 77.54 7.81 21.43 91.30 2.58 73.09 43.55 84.30 83.35 88.46 69.43 2.29 95.65 56.78 66.49 53.87 98.70 20.02 2.18 33.53 92.30 9.53 48.84 19.48 89.04 57.17 60.66 63.74 76.18 28.68 66.77 75.48 38.44 22.62 55.74 44.14 32.21 43.11 30.48 88.45 97.68 21.50 76.55 1.75 53.03 79.74 88.03 24.31 68.85 22.91 93.09 62.91 72.88 7.38 96.00 65.06 18.56 76.21 95.05 77.92 86.85 1.94 47.40 92.44 4.32 83.17 46.37 1.13 1.10 2.29 95.08 20.59 83.43 65.30 30.95 47.58 58.22 31.46 70.37 81.68 42.08 92.71 61.47 68.24 29.75 77.29 89.77 48.14 38.16 50.20 52.45 30.09 46.95 68.10 17.92 2.24 68.00 69.31 -93.10 74.90 37.44 1.63 16.42 61.25 84.28 97.41 88.18 65.28 55.47 83.22 68.10 14.19 14.71 13.40 72.87 11.73 92.90 69.25 77.97 58.56 19.66 96.91 79.15 66.09 36.94 69.22 71.93 46.72 19.38 8.84 55.72 46.38 27.38 54.83 37.32 37.74 40.41 56.59 56.70 70.44 73.74 19.88 94.00 8.39 14.52 2.05 96.64 28.42 0.57 91.52 69.36 82.52 65.59 93.77 71.09 75.10 87.49 28.56 13.05 10.27 83.77 63.68 35.68 60.30 89.55 80.52 18.96 17.47 29.01 77.29 70.66 26.73 18.86 80.37 47.61 88.45 56.89 61.05 75.87 44.02 94.18 64.35 0.10 5.25 84.61 8.59 17.93 9.66 24.04 83.89 34.18 79.70 41.82 43.92 26.29 96.40 72.60 22.58 -0.75 52.45 17.69 69.50 82.04 12.54 26.67 72.87 84.68 97.01 50.61 7.75 89.71 45.99 84.87 97.46 54.48 58.41 58.04 45.72 44.31 84.19 48.87 82.36 46.83 65.42 27.95 69.49 59.90 92.72 9.73 36.69 8.27 28.69 71.75 0.78 8.05 64.37 59.36 68.06 20.84 49.00 59.52 43.59 14.70 20.14 32.01 3.61 51.51 97.34 29.64 88.96 1.18 90.88 7.83 99.67 9.13 92.13 30.05 59.25 59.90 29.91 23.63 87.19 15.76 9.54 8.36 3.02 8.19 76.51 89.15 45.36 99.68 3.51 25.38 37.14 40.93 39.72 43.71 25.55 44.07 10.75 29.46 88.43 38.65 30.62 16.56 56.24 47.56 69.41 0.30 68.82 8.52 13.28 54.04 38.64 53.28 19.53 99.04 26.10 -67.87 52.54 94.59 15.09 33.89 38.42 15.86 97.09 48.07 47.73 69.06 92.25 5.38 52.02 19.81 82.95 36.67 0.60 18.25 3.30 87.90 48.13 72.06 83.24 36.45 81.22 22.42 7.86 87.70 92.19 40.05 94.15 6.36 69.74 35.27 3.83 84.75 2.61 32.34 39.06 44.25 90.59 57.37 13.46 51.94 34.72 39.38 17.27 64.65 89.46 51.44 96.73 1.90 73.37 99.35 56.56 98.73 76.03 1.37 63.80 35.53 91.60 57.98 81.94 83.28 86.73 13.49 74.73 6.52 67.20 39.08 37.07 51.18 79.17 64.67 9.04 99.99 53.61 4.77 68.39 89.13 99.94 73.86 43.12 17.44 22.04 20.28 42.35 78.47 97.94 24.91 70.12 45.04 94.69 10.13 71.22 73.62 69.34 4.93 64.26 -38.08 7.40 81.20 47.54 71.81 52.73 99.94 97.99 26.42 71.30 78.98 22.49 13.37 36.38 74.04 22.77 74.33 3.46 68.98 37.34 3.65 83.66 95.81 27.26 78.64 85.77 97.82 23.10 97.39 72.69 86.55 57.85 8.44 29.49 62.06 3.35 47.29 16.54 86.02 37.95 44.96 40.09 84.45 74.36 98.78 67.60 11.61 60.62 42.49 75.22 35.76 57.20 93.22 24.23 78.60 45.07 7.30 70.40 14.03 18.72 28.51 86.26 62.28 44.97 74.60 98.17 66.17 44.46 82.15 99.50 7.57 44.75 25.65 62.61 89.80 25.45 90.42 71.59 29.08 54.66 32.37 78.70 28.72 99.96 19.66 37.01 26.87 80.18 19.27 68.31 73.48 90.85 91.49 63.39 33.10 7.29 46.67 68.83 16.52 84.12 -40.01 70.66 40.47 71.41 76.33 49.60 68.31 89.94 20.64 49.71 86.38 10.00 78.85 19.04 41.42 50.53 97.73 95.23 64.10 99.23 61.18 31.87 45.83 70.85 5.53 49.27 9.23 1.93 18.56 25.22 97.88 98.72 60.89 42.22 72.45 16.20 52.65 27.59 88.07 27.03 48.14 21.54 56.62 31.59 23.33 84.57 65.84 12.23 90.56 41.32 76.52 42.01 47.60 15.10 61.20 37.67 15.89 88.20 11.72 55.65 72.88 40.61 87.53 9.80 44.55 3.99 13.94 27.53 7.37 84.51 21.77 82.85 90.61 13.18 52.13 47.66 43.39 10.02 51.94 40.71 36.61 70.10 89.87 43.31 57.96 19.94 17.85 46.62 50.57 87.29 69.72 69.50 58.88 19.27 12.81 23.95 82.55 0.32 68.01 96.50 -95.84 97.26 72.14 95.03 50.96 56.53 67.50 45.07 7.79 82.45 83.15 33.35 53.60 38.98 44.80 10.29 37.79 15.12 24.51 64.37 99.74 65.96 69.86 1.45 88.49 36.60 46.71 47.64 23.90 23.20 5.04 11.01 79.07 65.29 13.36 63.17 92.22 61.34 69.14 98.02 67.57 76.24 13.26 45.11 31.20 25.99 71.40 63.27 82.75 33.23 4.35 90.75 55.00 67.79 90.11 41.89 5.76 4.64 22.89 68.32 83.05 85.79 43.47 89.25 23.99 4.25 53.33 66.56 93.20 73.05 42.04 20.76 87.25 83.98 8.06 88.92 84.43 35.25 69.19 12.33 82.73 97.08 74.48 97.70 38.26 76.47 89.28 4.64 44.57 50.31 7.07 0.32 10.45 36.04 57.88 24.51 39.73 71.20 46.21 63.09 -30.38 89.99 44.05 75.61 19.50 80.29 74.34 13.42 86.53 66.04 9.82 41.69 19.07 70.06 37.54 10.03 52.14 15.42 45.78 0.71 23.66 16.05 80.67 52.31 60.14 99.73 95.15 67.98 90.92 27.54 49.45 85.23 0.19 99.28 20.43 99.31 31.57 50.27 9.92 93.68 69.40 86.02 76.39 49.48 48.09 14.55 43.76 19.53 89.36 80.59 82.81 99.94 91.14 28.75 30.15 1.55 75.45 1.71 84.96 96.82 59.38 75.47 72.93 80.99 47.57 76.13 24.26 57.03 16.53 36.84 92.40 63.85 37.85 19.17 33.88 33.16 2.87 99.33 73.53 41.41 49.31 11.29 12.51 1.58 31.36 88.48 72.47 36.75 37.92 29.09 5.85 50.24 0.27 65.87 67.77 51.92 36.50 28.26 59.93 25.65 -74.15 73.29 4.50 56.36 53.20 56.03 72.71 42.82 67.50 17.44 22.57 98.17 82.00 11.68 32.99 55.77 32.97 9.95 19.95 18.80 8.99 30.09 41.26 83.92 62.54 17.83 62.16 27.86 41.80 74.97 74.72 66.31 18.65 1.56 10.18 28.61 45.43 60.27 17.01 51.33 6.05 21.19 90.41 74.15 11.68 44.17 85.00 50.52 8.49 28.33 9.65 37.91 73.20 97.37 80.79 6.23 58.49 29.93 34.52 72.09 12.32 23.75 26.23 79.21 89.76 52.01 24.56 71.67 72.86 32.82 57.07 54.96 75.57 84.66 73.38 86.68 36.12 16.59 77.97 79.61 25.26 18.08 24.59 67.87 43.87 44.95 29.20 91.30 19.29 92.54 51.59 67.99 59.69 91.82 57.79 44.85 9.62 53.17 6.35 11.54 -2.74 77.53 8.66 30.36 78.79 71.26 73.30 34.02 81.67 82.34 72.73 37.30 85.21 60.47 44.39 23.02 48.25 71.13 30.85 63.58 33.03 13.71 98.61 92.72 57.04 14.78 40.83 88.31 93.36 94.81 71.32 34.02 52.88 78.06 3.04 65.51 7.99 74.21 58.01 35.33 50.88 8.95 40.62 77.41 98.68 42.23 45.50 25.95 61.31 13.29 11.61 80.37 59.30 22.53 91.79 9.96 18.40 56.61 83.63 92.10 39.88 12.50 16.76 60.69 39.96 96.48 87.11 29.73 58.27 15.37 48.32 18.58 6.01 99.20 14.98 76.52 13.49 49.36 44.16 17.69 9.04 55.18 51.86 22.41 80.63 84.67 28.52 4.35 46.76 47.72 70.07 2.61 26.69 77.73 57.16 29.38 6.32 58.86 70.25 6.16 -62.26 22.92 96.27 34.46 44.41 92.48 3.85 39.25 19.70 38.70 19.72 57.00 92.93 50.05 71.02 20.27 74.05 29.05 7.30 15.99 10.82 79.66 61.94 25.38 54.58 40.16 31.54 43.26 35.81 26.86 73.12 41.11 67.14 46.48 18.22 54.00 94.66 45.17 87.95 51.16 83.73 43.06 96.99 75.44 88.72 1.81 61.52 79.13 50.47 62.60 6.04 98.34 36.06 17.83 97.71 74.68 57.90 72.03 13.90 28.53 64.36 92.51 65.93 53.67 75.73 96.82 87.28 30.76 92.26 20.49 48.87 79.38 30.57 46.11 23.34 23.23 73.23 75.41 8.00 27.53 52.32 30.73 36.53 86.20 5.30 87.28 0.61 14.91 74.20 88.91 74.79 51.28 70.69 63.03 34.61 72.86 20.15 51.43 78.36 39.76 -36.73 97.05 72.37 14.87 12.04 81.44 86.27 82.35 68.98 47.79 92.96 42.42 49.94 80.35 2.03 97.38 14.51 61.19 59.53 8.85 94.08 93.56 34.16 64.71 17.98 83.97 98.92 53.76 50.80 44.96 67.88 71.47 36.11 88.03 74.22 78.15 85.16 96.36 75.74 54.63 3.90 89.62 50.70 56.92 67.89 47.33 46.00 82.39 42.41 15.23 57.48 65.79 81.82 63.44 59.50 88.71 67.72 37.56 11.37 3.74 23.70 18.42 9.11 80.10 73.26 77.10 75.03 53.46 62.87 53.41 12.00 36.77 71.14 1.88 46.02 86.62 75.52 49.59 8.46 91.03 46.38 26.67 67.37 54.06 2.04 58.26 12.69 29.53 79.82 73.23 33.37 73.67 41.46 2.96 45.63 19.28 37.05 24.60 1.09 11.07 -80.11 4.84 15.47 44.83 80.62 16.03 90.85 11.55 34.04 76.22 72.43 82.71 11.13 32.10 91.24 88.51 68.16 28.00 11.95 6.52 55.72 11.67 89.01 26.75 14.59 63.83 1.18 13.96 63.11 57.49 68.51 20.12 94.04 1.09 79.65 88.69 20.81 55.95 79.14 25.45 74.71 61.27 82.65 93.81 36.44 75.54 39.27 83.88 13.46 89.89 57.15 85.27 41.87 57.75 59.74 5.10 84.18 85.08 30.00 51.47 28.39 32.04 36.39 97.24 61.28 65.92 68.25 83.24 76.52 19.35 59.69 46.65 94.65 6.53 88.27 40.13 72.22 57.16 82.02 2.25 85.70 86.03 71.02 16.90 51.78 10.54 30.44 51.07 78.64 20.12 43.34 92.20 57.38 81.14 28.90 6.77 17.79 75.50 29.06 11.97 -8.56 68.45 63.94 42.03 18.84 88.79 21.59 42.69 52.63 91.74 34.22 79.85 4.52 6.26 51.97 29.63 33.74 57.83 90.47 58.41 60.04 79.26 46.60 87.78 79.20 63.12 63.19 52.79 47.73 74.75 57.99 5.60 38.50 2.20 62.29 78.94 38.66 17.10 55.89 80.60 31.42 59.34 97.17 1.90 4.05 91.23 92.33 50.91 67.66 69.93 5.43 67.13 30.04 2.72 98.33 97.93 64.07 50.95 72.93 71.73 59.37 60.90 32.39 47.44 20.79 45.42 16.51 75.73 17.18 54.74 31.36 18.95 54.30 83.59 79.81 51.15 24.91 93.64 12.78 55.09 86.50 88.50 17.42 46.50 12.94 8.09 24.84 53.99 27.64 48.04 47.74 1.95 42.03 32.83 20.80 86.00 54.95 90.04 33.15 23.31 -23.09 18.20 53.42 76.38 8.84 83.78 7.70 21.67 50.23 57.36 46.52 73.18 12.14 19.47 68.39 86.13 87.17 99.38 96.54 93.09 67.29 39.32 70.93 99.00 39.15 75.00 74.56 75.15 96.72 77.90 56.78 20.75 42.08 55.47 57.13 47.25 50.83 33.10 77.81 37.55 56.24 73.06 45.86 29.38 13.78 26.71 82.40 64.65 69.95 55.64 56.77 73.53 34.73 16.41 98.77 88.98 10.55 63.57 57.73 73.52 5.16 17.51 57.92 76.00 69.66 68.80 31.93 19.19 98.84 22.42 37.06 82.12 74.87 32.25 53.55 77.60 14.67 99.70 37.08 99.02 55.44 1.15 44.05 16.32 25.42 86.53 84.40 5.21 46.26 6.40 97.67 33.40 83.00 94.02 53.68 41.14 45.61 31.03 82.18 37.87 -92.37 12.98 13.13 36.40 69.02 73.66 22.47 81.79 35.56 32.30 36.18 80.31 96.80 88.20 84.52 65.15 10.15 91.84 53.49 43.11 59.94 80.79 46.22 60.85 20.39 1.49 12.63 35.83 21.67 70.80 36.27 49.32 83.60 71.71 39.44 69.66 82.00 43.60 91.59 38.03 59.87 8.89 26.89 19.82 22.48 15.75 85.26 88.24 73.86 68.36 75.69 84.20 1.93 9.30 78.59 3.16 51.58 23.55 77.48 56.09 87.54 92.56 18.86 52.67 89.94 72.76 24.11 80.21 10.03 35.93 17.68 72.06 60.39 83.75 75.13 29.87 23.71 50.01 20.46 6.25 84.11 21.95 53.92 70.60 65.46 86.18 4.66 94.68 96.29 67.48 37.96 7.94 10.60 73.33 53.41 87.39 31.47 40.56 52.45 17.90 -47.90 50.17 68.92 18.51 50.44 27.63 94.07 81.52 62.23 89.17 1.00 3.28 70.14 83.59 65.10 75.86 74.40 52.11 94.98 9.03 87.94 93.40 66.85 19.13 49.77 9.50 65.73 88.95 58.29 51.47 70.95 64.84 95.68 92.21 35.18 69.16 59.07 38.79 9.18 7.51 97.73 80.20 90.43 18.79 83.67 18.11 11.57 68.99 8.38 44.27 71.30 67.65 82.10 19.96 39.49 67.96 21.93 66.16 75.99 45.63 96.20 21.16 99.12 52.54 9.24 92.33 39.07 77.91 77.53 12.06 34.04 86.26 49.17 51.85 96.71 52.54 97.40 4.68 41.96 33.58 69.44 21.92 21.70 36.14 61.40 45.55 28.46 7.52 42.38 41.68 8.45 71.74 88.20 36.89 69.12 31.98 76.52 8.43 32.29 85.73 -5.31 91.68 90.96 89.59 18.39 30.43 9.10 40.28 29.15 49.50 97.40 54.48 16.31 36.00 47.89 98.41 37.54 11.01 13.83 58.36 56.41 53.52 56.21 41.21 90.51 37.12 25.47 76.18 53.76 68.32 96.85 9.16 75.72 56.24 58.92 59.47 44.07 37.16 21.13 1.42 37.70 36.47 70.48 88.16 28.48 87.90 17.31 73.15 26.13 26.19 93.58 36.47 62.29 63.40 15.63 29.64 47.79 36.54 42.68 9.67 30.03 33.73 85.18 23.32 58.48 77.46 8.43 11.12 50.37 96.16 80.54 39.51 57.65 69.56 7.03 72.30 57.13 59.00 65.62 80.13 62.90 97.64 73.43 39.14 52.25 23.59 1.73 20.22 79.64 1.97 95.63 85.23 47.63 46.70 53.74 0.51 27.88 76.92 74.94 2.20 -15.87 70.98 11.89 76.12 57.34 99.10 62.20 52.86 55.70 7.33 90.03 15.04 87.62 9.26 47.38 92.25 77.80 8.09 19.24 50.38 79.51 20.23 41.05 92.85 85.02 52.72 60.91 5.31 68.65 96.68 59.17 42.31 96.61 27.05 48.37 38.55 7.09 9.21 48.24 27.29 38.66 7.20 74.08 85.09 99.20 39.74 16.68 0.48 13.94 19.91 36.16 29.43 72.01 17.77 23.57 23.77 85.14 4.31 52.51 60.95 2.02 49.18 4.57 59.00 50.37 2.62 0.12 52.92 46.97 10.68 33.23 50.51 88.31 87.55 16.18 23.04 63.61 18.26 16.57 61.76 18.93 68.41 34.84 1.59 53.40 24.79 29.43 54.57 78.38 84.08 70.44 95.32 26.61 85.24 88.73 46.35 4.49 43.38 39.87 21.89 -91.80 30.19 18.12 44.63 53.99 39.76 39.91 23.41 65.98 17.46 52.43 71.45 42.96 20.84 71.12 6.47 25.61 38.49 37.65 18.85 46.15 49.68 34.27 47.65 21.69 41.86 67.21 59.16 31.39 78.73 82.88 10.43 59.46 98.86 33.69 83.47 75.00 34.15 9.57 17.38 2.96 46.82 56.82 52.04 26.54 69.43 31.64 46.11 21.31 38.04 11.70 9.86 53.79 95.29 28.05 61.08 70.89 28.03 81.77 16.78 21.37 33.97 60.78 80.90 37.20 35.10 40.10 48.46 10.72 85.07 28.62 77.42 15.38 98.83 52.54 61.12 95.13 9.61 76.85 61.50 37.85 92.77 54.09 66.69 94.62 31.52 88.12 59.74 96.44 26.78 84.57 59.59 75.50 22.67 21.08 49.83 36.03 0.28 44.46 24.11 -43.54 64.95 69.36 83.22 77.68 58.65 75.69 0.04 85.14 73.95 19.09 88.10 23.97 81.12 27.69 73.65 19.93 61.75 24.70 71.37 52.68 81.41 71.32 9.07 62.94 47.70 44.34 32.27 33.10 62.64 38.01 69.60 8.10 41.57 50.99 5.17 10.57 65.95 92.64 42.87 28.85 41.84 41.77 96.98 34.96 47.43 17.27 47.10 58.87 36.28 68.06 45.67 99.47 1.65 33.69 6.04 19.72 81.78 14.30 92.65 34.37 79.18 93.72 76.17 84.91 92.74 20.88 21.70 74.46 35.85 89.04 4.17 73.60 1.87 77.17 99.03 61.03 35.37 28.48 39.41 91.28 81.08 69.91 68.34 29.18 91.97 36.67 36.10 82.88 51.24 31.57 40.04 24.74 37.72 8.13 82.66 25.69 61.34 36.77 69.39 -76.49 21.22 67.16 66.28 24.21 59.80 9.08 4.35 98.80 14.32 38.95 8.44 91.73 78.12 35.30 7.41 48.92 63.46 85.79 29.82 61.35 81.35 73.70 42.74 35.74 77.74 31.22 71.06 44.31 84.80 2.51 86.91 56.89 24.89 90.65 44.15 43.83 90.93 52.62 55.25 42.38 89.19 59.96 78.89 19.06 91.33 27.43 53.61 4.99 24.40 31.25 44.22 59.91 89.88 92.57 40.16 27.59 15.88 74.87 16.29 51.16 46.21 45.82 2.90 73.82 39.77 53.49 94.00 72.06 76.89 20.08 55.02 55.25 97.48 86.51 53.22 16.01 77.36 91.77 4.59 47.88 97.49 75.35 82.43 87.85 85.98 86.66 73.96 24.01 10.35 91.80 49.40 77.84 87.23 21.03 76.15 42.94 52.24 94.40 17.32 -33.23 24.43 50.21 15.87 10.85 25.08 0.80 88.17 65.48 98.08 39.54 36.21 93.24 84.52 32.89 41.68 71.38 40.04 4.58 91.15 81.14 94.52 13.30 7.07 52.19 33.44 90.72 23.56 34.95 78.57 54.32 87.64 43.78 60.79 25.78 13.61 57.50 20.66 49.51 70.60 74.05 28.33 9.44 6.88 76.99 83.15 2.85 33.47 36.85 76.23 36.22 43.09 63.30 4.99 61.47 95.90 11.66 89.53 33.35 25.86 42.57 30.65 55.21 7.14 52.36 31.24 71.02 61.75 86.68 2.64 67.75 38.05 42.85 54.59 1.64 61.10 49.56 53.49 22.53 42.91 68.81 79.85 3.20 71.79 23.77 47.60 37.27 44.51 56.48 68.41 5.99 26.08 98.01 23.78 78.04 88.23 27.88 72.01 11.69 66.26 -72.93 38.76 47.03 26.16 81.57 22.46 73.68 48.30 48.20 71.76 52.26 80.96 1.78 19.77 74.66 93.12 61.57 57.09 72.00 64.12 24.39 76.45 21.76 29.77 89.81 14.39 10.95 66.42 49.52 13.08 17.91 37.77 44.92 4.05 31.72 25.45 59.75 43.40 18.15 42.49 29.16 17.01 59.83 68.96 73.84 57.65 90.23 18.22 29.29 73.84 14.10 25.50 85.06 64.22 8.66 12.25 46.30 65.19 26.77 21.93 7.53 33.25 49.73 81.45 21.72 38.84 7.36 63.04 87.34 36.33 65.60 77.84 94.38 4.32 81.38 57.26 75.92 23.26 38.51 95.99 52.62 76.71 10.12 14.23 76.15 77.29 58.24 1.51 6.61 68.77 42.03 24.40 4.55 2.97 5.37 76.86 12.44 61.60 48.20 78.32 -24.23 95.16 78.16 4.95 82.71 93.71 10.18 14.52 86.87 61.72 69.08 21.92 8.95 70.90 26.15 54.02 1.13 92.57 90.34 77.69 92.83 88.43 98.64 75.50 19.31 7.25 70.71 67.29 84.96 93.15 65.91 79.55 66.85 20.21 25.83 21.37 45.07 9.90 94.90 72.02 13.54 25.66 17.08 37.16 29.85 20.30 30.18 16.68 13.31 31.57 79.17 63.64 54.58 60.75 37.58 5.81 83.53 86.78 24.93 31.73 62.09 13.15 31.59 93.60 57.38 89.01 83.10 17.28 69.50 78.56 14.14 68.55 66.93 40.77 68.24 13.47 9.73 39.49 37.39 41.87 15.84 22.73 13.74 28.37 99.69 49.19 49.67 87.99 86.62 64.51 50.27 91.37 65.50 52.73 73.23 93.44 12.93 2.58 23.36 86.20 -16.49 70.27 4.21 54.12 30.76 40.09 67.51 31.69 60.88 61.34 91.93 71.36 69.20 71.41 49.30 4.71 30.41 45.05 97.96 51.79 88.50 56.96 75.60 82.62 60.19 80.45 58.67 38.72 92.23 16.68 70.43 3.67 68.79 61.70 73.77 55.70 61.94 67.78 58.43 61.00 3.60 80.33 36.21 72.00 88.72 40.63 40.07 37.92 59.74 0.31 48.81 33.60 45.58 66.27 3.24 98.78 84.91 96.06 72.64 42.87 21.01 97.90 92.54 40.89 47.73 15.43 42.24 53.91 15.60 62.12 85.76 40.48 67.70 82.37 79.25 25.15 8.64 61.83 95.56 37.39 20.43 80.65 33.49 74.37 6.64 6.36 32.84 25.98 15.98 37.31 13.94 64.87 96.49 80.59 60.40 33.28 31.50 42.41 73.28 96.36 -96.64 88.70 98.29 42.76 27.51 82.90 1.66 98.29 30.13 0.75 68.64 81.59 17.00 99.72 69.24 48.67 36.40 20.06 72.12 6.54 4.20 33.71 39.06 1.74 40.62 82.83 16.89 78.23 37.31 26.27 75.33 12.79 26.68 43.92 69.57 65.81 53.44 85.60 63.66 45.30 5.00 12.01 8.35 85.33 71.70 33.53 87.57 99.21 73.59 96.68 63.20 61.55 71.87 60.61 47.19 90.14 5.52 63.04 61.14 48.07 82.19 67.15 11.75 35.24 1.06 33.80 18.22 48.83 39.59 97.24 72.49 72.48 59.87 17.13 10.50 22.64 13.59 14.63 96.44 62.87 37.45 52.32 15.44 60.12 54.99 40.68 18.79 81.65 72.87 26.72 14.53 20.58 1.02 42.72 49.01 17.55 69.99 77.83 55.52 18.64 -68.21 22.69 81.75 84.34 93.84 29.27 65.64 93.56 1.06 29.97 99.45 33.89 11.68 7.55 97.09 13.32 9.31 62.86 80.87 41.69 90.02 27.90 52.78 54.85 21.60 64.38 21.40 89.53 59.10 85.99 33.58 32.89 8.66 63.03 46.79 19.95 49.32 10.82 67.26 48.78 95.04 99.45 57.36 99.60 12.31 72.29 32.93 68.30 85.51 61.30 93.48 99.43 50.30 73.39 12.30 34.10 73.46 6.86 39.85 73.73 51.89 40.06 85.19 30.98 26.23 6.71 78.57 62.69 87.15 24.45 38.21 95.99 46.79 40.07 12.67 77.74 17.41 83.04 49.19 80.63 18.19 80.91 50.01 48.78 39.45 57.71 31.49 96.94 53.65 20.53 16.17 22.46 47.93 25.70 32.47 9.85 38.83 74.61 29.39 90.46 -15.22 81.71 91.68 80.33 23.88 67.72 24.70 64.44 63.55 43.62 38.88 37.67 57.28 37.91 11.62 56.87 87.93 62.00 30.05 91.81 31.16 27.23 60.58 39.17 66.14 46.10 12.27 24.95 26.31 59.63 18.23 37.78 61.76 79.79 97.36 75.66 32.88 96.68 93.31 95.56 69.10 14.99 64.40 10.37 80.31 64.99 38.36 99.12 84.24 37.55 67.91 95.94 92.96 41.58 14.12 82.10 9.65 96.88 64.12 84.50 47.18 15.05 38.42 85.65 19.47 70.54 63.60 68.32 19.92 98.81 90.58 60.73 0.73 99.31 55.77 90.85 15.81 89.31 16.08 62.53 21.41 8.21 44.35 4.92 58.40 5.83 58.93 94.24 0.76 48.75 55.99 0.97 69.11 77.20 11.59 0.74 29.12 86.94 70.79 67.48 -37.95 37.75 60.30 59.74 41.86 4.24 54.04 85.78 33.91 13.20 30.21 15.56 46.45 97.71 30.35 42.14 66.87 30.97 52.64 60.37 54.22 75.50 28.08 18.79 35.43 85.28 81.71 77.94 33.54 63.95 80.58 79.34 68.05 9.88 72.76 48.65 55.82 42.64 75.83 8.15 52.19 61.99 80.17 10.77 95.82 80.12 51.27 93.06 37.58 84.62 70.09 52.10 49.71 73.74 20.56 67.73 38.60 60.22 35.37 86.51 70.13 6.84 46.41 79.70 12.27 46.50 22.95 75.00 76.87 71.34 58.23 31.17 31.11 73.35 34.70 5.39 13.03 37.32 84.13 16.28 61.86 63.19 28.38 10.22 20.74 26.22 26.05 35.68 87.37 93.64 48.87 72.16 65.09 79.37 87.92 76.07 80.50 86.10 99.48 85.92 -41.06 90.64 67.11 3.28 9.23 24.48 64.13 56.40 47.10 4.53 46.55 54.74 45.29 67.87 13.49 13.38 21.81 53.63 14.31 82.33 16.98 52.15 24.65 26.21 38.44 14.03 5.09 37.26 75.14 78.32 4.24 76.39 64.62 60.60 46.11 64.04 51.28 48.43 56.88 93.00 38.84 88.72 19.76 27.45 82.56 45.13 7.66 69.98 4.65 35.90 68.70 33.21 47.38 2.21 6.14 25.70 25.17 73.89 12.75 71.42 32.03 62.83 58.83 18.18 59.91 76.00 93.74 18.11 13.43 3.97 36.21 56.22 71.79 84.48 59.81 55.35 3.45 77.91 19.13 38.00 81.88 23.88 7.38 83.01 74.30 12.33 78.76 71.18 83.08 49.38 75.41 14.21 19.67 61.36 1.47 25.30 80.10 65.83 53.83 10.65 -91.95 71.28 87.64 36.20 61.78 84.19 96.03 68.48 1.06 11.33 7.62 8.66 66.87 10.61 88.61 26.72 58.82 67.20 70.24 65.02 76.86 59.81 8.28 49.69 30.63 1.30 41.10 9.57 39.43 88.79 50.19 40.12 92.58 15.31 89.58 99.79 94.95 86.58 36.38 8.35 62.86 83.78 41.73 90.59 15.26 13.87 30.33 74.13 55.41 13.84 79.39 89.63 81.29 88.18 72.36 17.17 21.13 59.66 40.30 72.99 95.13 53.68 18.98 31.29 15.08 33.33 37.09 59.56 44.37 61.04 37.89 94.16 98.81 26.84 70.52 5.75 66.29 32.29 86.95 8.08 84.18 43.13 93.49 94.21 77.66 99.45 20.54 31.79 92.21 27.93 8.92 12.99 65.91 88.18 29.17 94.52 11.96 91.17 34.57 1.12 -1.01 42.89 67.06 33.65 89.43 18.88 31.14 28.17 86.52 12.93 67.69 81.55 78.97 2.52 29.85 24.40 49.78 23.63 60.09 10.17 53.07 4.43 14.81 5.48 88.15 11.90 96.23 40.38 47.43 52.82 98.53 21.90 19.36 72.97 45.80 50.92 59.16 39.69 84.42 96.75 5.23 3.43 61.32 22.85 33.57 42.59 9.09 86.73 45.80 35.12 17.97 0.16 88.33 98.69 57.08 43.78 94.46 42.26 63.95 6.04 21.09 90.88 16.22 92.04 2.94 42.30 75.36 38.48 55.15 8.56 28.13 43.77 61.62 83.26 89.27 45.70 33.00 38.34 28.77 24.81 54.80 39.62 59.79 55.21 93.82 79.81 71.57 64.35 97.23 3.26 20.91 58.40 72.90 34.49 2.33 49.36 24.64 90.33 1.98 12.26 -44.14 46.95 39.78 22.15 98.20 9.42 94.02 29.81 67.41 56.96 95.97 85.85 94.78 96.85 90.53 21.34 51.92 46.32 8.78 9.61 63.79 1.24 43.21 73.42 97.20 48.88 69.17 17.95 24.14 32.42 43.44 20.84 93.58 84.23 48.69 9.93 35.55 72.26 32.79 25.21 88.25 31.83 32.50 28.71 60.23 42.86 64.79 69.27 82.03 61.59 81.83 2.24 7.08 83.01 78.30 87.83 68.83 21.26 64.26 27.68 6.03 45.13 85.89 17.52 60.35 24.67 99.04 7.72 95.63 69.84 24.56 62.16 91.10 21.41 1.67 45.62 89.49 78.55 79.25 40.10 64.98 30.05 54.30 0.81 80.23 37.00 43.64 67.52 36.98 17.45 85.93 26.35 2.20 11.89 77.42 11.11 31.99 20.13 87.94 35.45 -10.84 13.12 20.42 62.26 72.88 21.39 92.31 23.60 2.95 23.17 93.99 88.43 37.82 60.19 50.68 51.26 39.00 24.87 4.24 84.74 18.24 2.28 8.89 47.77 82.81 46.49 94.47 48.76 9.65 7.52 97.09 55.41 3.27 40.77 35.71 92.67 44.84 78.81 69.31 35.10 31.91 81.20 1.41 18.11 72.16 38.64 58.84 21.39 21.94 75.50 22.01 69.44 30.06 42.38 70.94 0.09 67.10 87.74 22.41 33.77 34.46 36.97 0.20 29.58 84.91 21.29 66.49 8.15 95.29 13.38 22.16 63.22 84.62 47.36 53.85 38.26 8.91 73.52 39.08 67.31 95.58 98.54 3.11 50.73 41.15 1.18 3.75 69.06 92.48 7.43 28.03 2.19 41.14 49.32 31.05 85.24 40.98 57.95 3.02 9.61 -62.57 49.63 48.22 43.64 87.24 7.87 39.65 38.08 37.01 50.47 15.31 86.02 11.63 6.72 73.59 56.51 93.39 48.03 32.18 92.49 83.09 26.42 42.30 78.76 57.75 77.32 93.84 55.73 47.52 9.55 24.16 83.09 77.88 62.14 72.18 63.67 1.49 5.84 56.13 39.93 68.60 84.24 9.07 6.80 28.06 54.16 36.28 29.81 22.10 66.91 34.01 47.24 99.36 56.11 95.97 22.59 80.61 90.79 74.69 40.95 37.92 89.58 91.90 80.37 78.00 68.99 85.14 4.55 94.03 87.07 48.25 36.85 35.68 85.89 22.42 71.54 36.18 72.15 60.97 15.60 60.49 13.59 14.62 12.99 52.44 95.49 99.71 27.48 99.12 72.07 46.40 25.39 23.32 84.64 33.95 73.09 44.96 8.08 41.02 39.01 -80.31 89.36 37.21 80.59 43.87 55.23 95.75 6.89 30.93 53.88 56.72 71.68 82.46 22.46 78.98 60.25 60.40 63.77 41.18 35.88 8.74 31.05 47.65 62.11 40.52 45.10 96.85 57.79 28.50 30.59 78.43 56.17 41.24 60.07 22.04 70.67 90.38 91.15 71.43 6.26 10.93 31.77 22.63 5.75 38.27 58.04 67.20 66.60 57.09 46.21 96.58 3.39 23.43 88.81 16.19 75.24 36.16 99.44 47.87 30.80 87.99 49.81 70.05 36.83 63.69 90.74 98.90 46.47 74.10 49.92 68.28 31.80 85.68 54.74 21.49 19.88 91.64 99.46 67.37 37.81 29.99 45.81 64.22 36.00 65.09 79.30 1.43 44.00 44.47 16.48 15.23 19.97 41.38 26.88 73.40 21.90 59.18 44.44 59.38 42.71 -94.09 90.43 59.19 46.01 9.44 69.35 5.69 5.98 22.77 99.53 42.44 58.17 57.37 29.62 18.52 53.78 60.97 51.11 43.31 87.90 49.07 73.23 57.98 20.57 50.80 85.67 3.00 17.50 79.21 67.81 73.70 33.40 46.92 69.42 98.65 52.96 92.09 40.24 58.06 54.37 92.85 74.60 57.37 87.34 25.34 94.18 66.89 76.59 99.55 40.10 84.48 2.15 57.27 60.50 94.36 27.80 30.99 98.99 1.81 26.83 80.50 57.94 27.71 69.13 20.71 10.16 25.85 83.52 93.88 42.26 58.64 39.87 85.68 78.19 1.51 21.79 92.04 61.48 4.69 23.21 72.38 81.57 21.67 55.03 65.79 65.17 74.15 96.54 21.14 28.39 34.54 55.42 99.27 89.06 77.37 87.15 22.33 73.62 74.00 49.37 -6.09 72.42 57.39 67.36 41.36 65.98 58.13 11.17 21.76 6.03 76.27 42.45 54.35 37.08 56.32 19.70 97.87 63.43 52.52 67.94 17.86 90.11 69.05 35.32 77.22 99.60 99.77 6.02 95.21 37.54 67.19 27.00 45.19 91.02 89.53 26.16 90.78 69.90 51.82 68.96 96.45 35.27 51.18 52.04 85.17 5.20 63.29 26.81 70.91 3.43 74.94 38.34 19.47 79.10 66.05 69.28 92.46 15.30 36.15 4.91 75.46 0.23 31.28 26.79 93.29 39.11 13.90 36.65 51.19 49.08 20.87 80.36 85.51 64.87 30.93 81.22 78.78 52.34 83.22 11.73 55.80 59.93 93.87 95.15 14.97 35.29 54.59 49.21 1.14 16.42 31.60 8.21 16.32 56.95 79.83 50.93 6.78 89.51 86.10 81.04 -50.46 18.06 74.87 80.94 34.62 52.76 88.44 0.35 75.10 80.40 77.12 59.64 92.21 42.94 69.60 42.86 75.96 87.27 75.60 18.80 91.91 59.82 88.13 73.03 3.98 38.98 83.47 82.09 5.00 69.62 24.64 0.06 69.48 18.09 50.81 38.33 67.60 68.26 39.53 96.72 4.45 92.30 59.64 40.52 42.40 23.24 47.77 74.77 59.98 72.27 79.02 18.43 94.15 42.00 47.16 43.81 82.97 90.39 81.86 89.60 51.82 42.58 89.34 38.83 63.24 7.04 68.23 49.39 8.04 64.07 72.51 51.87 98.69 77.89 95.14 88.50 93.69 50.57 46.41 16.45 92.26 36.09 38.24 26.66 24.51 47.22 46.68 20.18 47.69 86.17 47.72 25.17 42.27 7.94 79.06 24.46 80.50 1.64 66.84 37.92 -44.17 60.95 93.85 83.39 88.52 58.43 0.28 17.00 34.38 47.70 56.19 49.86 39.37 2.40 83.61 93.84 57.31 20.25 64.09 88.31 85.68 97.04 91.26 71.63 17.63 26.64 39.30 17.29 46.64 94.18 27.52 66.95 4.54 17.96 39.36 2.80 95.38 42.18 98.69 8.31 84.34 98.90 8.85 83.07 7.13 60.31 3.68 14.82 77.38 13.76 33.65 12.45 14.08 73.28 19.57 15.88 36.41 45.01 20.83 30.92 40.41 54.32 15.47 38.11 90.17 46.80 65.69 44.47 9.23 14.62 61.46 63.05 61.47 86.98 99.53 49.88 22.84 61.73 98.95 20.14 70.14 12.46 39.50 72.79 36.99 15.08 86.11 78.90 21.96 15.39 84.26 35.65 12.29 20.81 4.40 92.07 79.03 61.86 95.09 42.30 -84.74 26.94 78.09 77.11 60.58 72.64 37.92 5.87 57.80 51.21 92.28 1.58 24.54 71.03 76.04 63.85 52.20 22.69 1.91 84.51 33.81 79.82 56.56 52.84 5.92 69.11 86.87 76.63 57.04 39.07 42.59 54.70 77.65 25.46 55.07 80.12 51.34 98.69 31.17 57.04 44.59 32.52 44.53 69.75 55.19 29.01 34.01 10.81 68.24 59.96 79.18 46.91 9.56 1.13 68.26 41.32 40.94 26.25 36.18 83.71 86.15 3.53 33.81 12.12 10.92 46.29 5.88 43.13 9.32 10.06 27.14 15.06 50.63 70.01 55.32 5.81 9.36 47.73 46.64 38.44 89.32 44.27 60.21 19.66 19.76 35.66 65.54 31.64 16.58 91.02 10.10 28.29 74.07 0.26 24.69 29.81 65.59 76.27 22.56 17.05 -66.71 34.53 81.21 62.77 74.89 85.98 21.24 96.84 55.84 34.87 41.69 97.82 14.59 96.00 94.05 16.48 78.46 35.16 31.69 2.42 74.62 75.40 4.45 8.90 91.88 84.42 29.27 99.49 94.51 92.13 82.01 30.58 71.12 1.94 6.70 74.66 36.14 85.25 25.13 33.31 91.23 75.93 71.62 2.27 44.08 16.25 28.73 76.74 29.38 33.15 71.33 6.06 23.88 19.68 65.18 89.06 82.41 85.64 84.33 90.18 35.50 88.83 27.90 22.79 73.62 57.44 38.18 12.06 25.15 67.24 60.02 24.45 35.00 9.61 9.60 94.20 44.95 63.33 73.46 21.65 28.15 15.01 62.79 47.67 87.43 42.20 58.42 69.26 44.64 13.82 56.90 23.87 29.76 42.71 86.92 76.48 60.53 76.37 46.37 65.79 -78.71 31.26 4.85 44.90 0.85 81.58 37.85 32.35 37.82 18.18 36.44 47.28 44.35 4.75 94.22 32.08 33.60 88.55 48.88 22.89 26.65 20.68 14.58 56.48 33.13 6.33 49.40 83.04 90.38 61.13 54.63 92.98 87.99 61.62 44.76 54.36 85.02 52.19 70.71 94.10 19.37 39.97 96.36 30.92 31.72 70.71 30.59 17.90 2.90 83.85 67.59 63.84 61.04 40.66 7.09 72.28 46.23 43.00 85.07 59.37 97.84 46.40 80.08 31.55 68.41 65.12 90.59 81.57 46.47 72.93 66.56 35.93 95.47 20.43 71.75 27.03 86.75 20.06 36.17 41.69 2.77 66.00 27.44 66.36 74.47 36.38 7.21 79.72 29.76 74.97 47.05 31.64 32.34 75.38 29.92 67.59 87.13 70.68 13.02 1.62 -62.27 0.64 82.81 98.42 17.76 99.73 83.36 88.22 39.87 86.06 57.05 86.37 11.58 7.48 8.12 15.02 74.31 86.70 41.71 52.28 69.61 78.13 14.75 1.42 61.58 29.55 95.77 1.72 68.65 75.92 36.27 60.30 98.53 91.42 40.83 23.27 81.63 85.77 85.92 70.12 90.99 14.94 97.51 31.12 8.85 28.38 47.08 75.73 87.36 45.67 96.49 98.64 20.00 58.47 50.40 4.91 91.52 7.33 32.85 84.85 3.98 81.57 29.43 41.14 14.70 38.51 23.68 37.32 56.74 15.87 87.73 48.04 49.94 50.61 94.20 26.20 81.93 91.04 6.13 42.03 32.63 60.31 96.76 9.78 16.73 35.00 81.21 86.60 88.13 3.19 76.27 47.40 61.04 98.16 31.07 62.95 54.08 73.00 14.12 8.27 -27.10 83.21 31.37 74.69 76.22 2.09 21.63 58.23 16.49 35.70 31.60 18.86 68.05 22.33 33.75 32.27 39.81 27.95 20.07 68.38 32.17 72.96 16.35 29.05 26.33 69.54 87.59 70.04 0.45 72.80 47.01 5.65 3.39 98.28 9.76 40.66 54.68 23.83 81.01 83.64 5.10 83.14 4.14 36.24 52.20 46.76 16.02 46.88 78.50 58.43 33.64 32.79 7.18 72.37 38.95 62.98 20.11 41.19 23.53 89.06 1.02 57.48 60.92 16.57 42.37 44.24 3.22 13.10 98.82 26.61 78.98 80.69 48.21 23.05 20.98 85.66 63.41 4.58 95.48 60.99 57.22 55.22 42.17 82.27 90.12 16.69 2.65 32.17 82.19 60.55 72.82 21.00 73.48 81.67 25.75 49.17 12.34 3.00 82.62 22.56 -39.95 50.85 18.82 40.64 24.04 26.98 77.84 6.09 71.07 1.08 59.04 93.34 35.89 85.14 12.49 20.53 74.51 48.01 0.65 52.61 30.73 38.48 55.30 47.65 65.02 93.92 13.64 11.18 63.06 37.82 43.97 13.89 28.22 15.72 89.62 23.16 99.01 11.07 52.52 75.71 77.37 74.62 9.75 28.27 49.97 29.88 31.24 52.07 50.13 79.22 40.78 95.53 18.20 69.99 46.82 70.04 17.80 83.47 64.73 19.95 47.85 35.33 11.22 37.03 25.29 3.08 78.70 45.50 35.78 17.62 24.99 34.42 28.26 83.67 75.97 91.98 97.22 17.88 3.56 79.88 30.43 42.74 12.66 63.88 23.91 69.19 72.22 80.09 66.38 32.55 81.97 52.31 98.13 45.42 5.21 4.20 79.53 33.46 40.07 68.19 -12.50 26.31 47.83 11.47 90.28 60.03 27.23 19.94 47.79 40.52 50.44 10.36 25.97 48.45 85.67 2.82 87.00 16.19 86.06 6.29 30.78 87.74 19.56 61.41 97.37 6.96 56.91 34.52 77.98 62.31 43.81 46.87 92.99 89.47 81.14 98.44 87.75 79.62 42.83 34.91 77.31 44.36 24.34 52.45 54.29 10.53 84.17 35.61 26.68 28.21 41.44 97.83 64.78 22.89 33.12 27.65 53.51 67.12 96.95 8.34 85.16 69.83 76.56 59.77 77.88 69.31 8.97 71.28 18.17 49.66 79.17 85.12 70.45 33.34 91.16 83.70 98.75 14.99 0.66 50.52 33.30 70.98 26.76 29.26 77.93 4.96 20.80 96.28 29.12 8.02 9.94 83.50 19.30 1.06 9.53 31.81 95.27 84.13 18.41 15.58 -28.17 89.61 96.11 10.82 32.22 65.28 30.03 13.01 43.58 59.62 3.92 41.16 43.66 77.71 47.37 77.04 89.92 51.82 56.56 16.77 12.13 24.86 27.57 27.88 59.71 50.63 67.85 59.39 37.39 64.68 57.34 44.46 29.52 26.56 98.78 12.52 63.32 11.92 99.28 2.48 8.76 56.31 70.28 4.54 37.22 7.18 69.87 19.89 27.88 80.12 49.23 62.76 53.25 13.25 48.57 70.06 49.81 58.14 69.68 24.20 76.83 74.22 6.39 16.28 51.14 34.86 65.08 28.51 62.35 42.92 97.98 85.28 93.77 52.04 6.89 80.55 14.56 89.66 98.06 56.89 48.56 6.29 52.39 55.95 81.65 45.20 45.48 11.78 5.84 93.78 23.07 19.51 23.12 79.09 90.45 8.22 81.45 96.58 80.72 13.31 -38.59 76.98 74.14 69.46 71.83 2.24 99.41 63.86 13.30 44.50 92.84 60.71 26.06 52.57 89.12 9.63 61.33 17.97 51.23 3.88 64.72 56.96 28.17 16.19 49.35 14.98 45.18 43.40 98.60 55.81 89.96 61.04 15.86 8.62 62.89 32.17 53.82 22.45 43.48 62.26 66.99 93.47 42.02 86.81 14.11 75.12 87.74 49.23 5.21 9.80 17.76 34.30 38.49 88.19 30.34 64.65 52.37 10.26 88.52 41.46 81.79 15.74 97.40 96.33 45.19 2.89 69.87 46.60 9.01 58.04 61.44 19.40 5.06 55.94 48.48 41.54 25.52 25.66 12.08 17.53 39.55 90.48 61.75 2.27 69.82 54.54 26.21 47.83 42.16 15.37 65.02 8.82 63.30 59.15 97.92 38.59 94.85 70.43 89.94 15.78 -24.20 5.12 94.43 70.99 95.58 98.09 99.88 78.22 29.12 5.78 90.93 30.80 52.62 24.47 8.73 34.82 76.09 90.44 87.67 42.70 1.87 81.03 73.47 99.49 81.18 83.93 78.40 22.24 85.47 42.16 75.61 15.39 3.99 78.91 35.67 1.67 76.20 1.15 37.45 64.56 61.56 62.76 47.22 93.44 99.69 95.01 2.37 59.21 2.87 35.18 11.35 92.40 86.15 81.27 86.33 43.98 10.43 95.94 91.70 45.39 0.37 61.74 59.07 55.66 27.45 19.06 59.77 52.41 68.63 12.69 87.84 32.95 99.95 89.83 57.21 19.29 86.07 47.32 80.59 40.90 37.85 81.85 36.88 57.57 65.72 72.23 3.72 48.59 54.99 57.30 20.26 85.83 30.34 60.00 11.79 84.78 12.82 63.67 99.38 73.18 -93.19 87.33 51.93 37.44 17.36 56.65 84.15 62.72 2.48 7.56 29.58 10.12 44.72 99.83 52.41 28.08 58.07 45.40 99.05 33.39 70.94 40.88 32.38 47.94 95.81 10.61 33.17 52.17 82.92 7.81 26.11 70.63 16.86 70.97 73.13 90.99 50.62 4.16 1.70 64.86 27.20 52.87 86.62 14.08 24.65 76.93 61.45 4.38 86.55 56.98 87.74 99.85 54.62 2.00 11.96 87.84 57.59 71.69 3.75 72.95 20.90 89.94 5.77 17.15 83.86 30.18 14.11 43.91 60.30 91.04 35.96 38.71 22.79 21.48 21.99 24.02 10.76 85.66 91.32 79.66 60.61 68.91 18.70 46.94 45.35 34.23 29.14 92.83 84.24 70.97 49.95 20.96 53.65 84.99 0.35 63.50 95.96 83.41 4.53 29.27 -91.78 85.46 74.39 50.91 50.94 31.84 87.24 24.98 87.46 53.45 71.61 39.97 20.56 9.33 42.60 57.30 64.69 11.73 9.14 46.19 98.29 67.38 70.29 54.18 72.24 27.51 89.23 10.79 88.73 70.36 47.09 48.81 14.56 25.11 60.96 9.77 70.94 27.09 81.37 35.55 27.07 69.52 76.16 31.09 65.57 20.31 26.01 74.82 97.28 47.58 76.15 28.72 69.44 1.94 0.73 29.70 28.59 7.28 64.20 14.98 75.93 57.54 64.84 16.46 24.05 62.88 26.39 9.87 82.34 33.52 36.36 24.69 58.59 16.68 12.51 48.08 87.54 56.51 47.21 7.79 4.10 89.96 12.49 8.59 5.87 60.15 41.91 59.40 10.51 19.13 50.68 68.15 2.72 44.54 10.64 25.80 98.78 56.19 33.32 94.31 -61.42 17.26 80.31 82.38 60.28 77.33 45.06 85.52 11.91 61.70 95.54 43.16 40.51 76.69 29.65 14.08 93.37 27.73 20.04 67.49 11.37 73.43 12.01 45.89 14.50 95.02 7.43 98.90 25.26 56.21 5.34 58.79 81.28 92.86 33.40 79.37 8.17 42.72 87.27 72.71 16.67 69.93 48.04 27.40 38.24 30.67 93.51 19.84 71.32 92.91 12.05 90.15 32.64 2.33 17.09 73.40 8.10 0.23 91.33 19.35 21.44 62.21 37.93 70.58 91.68 36.70 16.64 95.04 1.41 46.25 35.01 3.00 98.55 75.72 34.26 3.73 43.31 39.43 50.34 86.13 49.36 15.27 40.17 61.28 12.42 56.46 47.63 65.30 49.55 18.41 38.74 23.07 8.36 1.17 62.39 42.69 62.53 60.78 86.83 94.43 -63.38 99.47 36.95 91.38 26.68 11.63 85.55 6.73 25.90 57.47 34.51 22.82 75.22 36.99 35.60 93.46 53.36 96.54 29.62 41.18 45.48 52.52 12.64 47.69 98.20 59.07 49.09 6.32 98.38 74.85 24.75 12.65 98.09 50.88 45.92 3.98 77.17 79.18 48.65 63.41 0.30 21.99 21.09 81.83 92.03 94.88 42.17 97.01 74.63 81.98 65.85 12.96 43.33 60.57 16.94 80.16 60.50 31.13 88.94 19.58 69.40 18.64 93.18 16.07 78.82 95.77 25.56 21.10 71.56 14.60 77.72 47.67 97.48 95.37 83.51 24.62 86.47 2.34 50.54 11.24 74.42 62.46 71.26 54.95 78.24 51.45 20.63 14.26 20.57 62.72 71.14 11.86 42.41 44.22 95.06 4.80 25.19 80.56 17.47 55.50 -67.78 5.91 85.18 64.02 69.88 53.66 15.72 64.70 18.87 78.22 74.28 44.19 37.97 25.95 44.78 47.15 1.20 26.53 86.76 17.26 76.84 7.64 1.21 32.43 63.65 74.10 12.47 2.81 77.93 2.20 69.09 95.75 9.14 34.99 89.53 24.18 26.18 69.55 33.60 84.69 8.22 12.18 87.81 56.09 40.93 10.69 1.37 24.22 75.04 4.17 83.46 38.89 89.81 67.59 86.18 87.13 23.40 23.04 80.92 45.50 2.86 69.02 93.02 94.72 66.91 36.40 53.97 56.66 67.18 80.24 28.29 79.82 56.17 3.30 8.85 23.92 45.35 86.66 95.39 81.68 53.54 74.25 72.20 84.27 7.88 25.03 1.22 13.42 57.55 21.25 32.10 52.99 56.08 62.21 26.27 5.47 50.27 1.02 73.39 55.34 -85.94 73.56 98.47 16.28 54.77 69.98 11.99 63.17 55.82 4.90 46.09 99.89 91.07 90.03 16.75 78.82 62.08 81.98 62.16 0.67 80.07 33.52 74.34 81.27 18.87 89.27 38.94 18.51 13.84 40.43 40.62 87.76 5.48 75.44 32.60 35.00 98.15 88.89 90.03 27.52 19.23 14.18 62.44 87.75 39.08 34.63 34.85 50.56 38.91 46.78 18.12 0.59 50.98 28.07 33.04 80.18 47.12 50.64 7.75 89.87 85.54 31.87 89.58 26.96 93.43 58.75 26.29 45.85 74.75 4.41 99.72 30.15 38.74 21.26 18.03 6.11 29.14 60.97 75.81 89.67 32.27 17.01 99.18 50.61 99.70 75.03 86.10 10.43 43.90 85.70 62.68 58.50 62.02 70.93 52.89 0.99 81.48 55.14 9.75 76.74 -35.60 87.62 10.59 48.46 87.89 23.18 5.34 79.73 38.72 33.81 0.69 53.44 49.04 9.38 94.97 16.97 16.96 67.10 1.77 46.19 77.31 10.73 49.98 50.07 72.78 22.26 28.70 66.14 98.36 44.01 63.82 1.09 84.55 23.05 3.09 80.51 53.75 65.27 36.39 61.13 10.18 50.23 27.22 39.86 93.03 13.15 90.40 55.60 92.21 62.36 64.28 90.25 59.92 45.44 52.27 96.59 8.65 93.39 92.36 4.42 85.64 92.87 59.67 22.78 7.33 63.74 95.13 47.42 48.25 96.74 8.86 29.51 52.17 28.38 39.97 11.97 20.20 56.91 70.54 99.26 91.35 96.97 12.62 35.88 23.74 59.72 56.30 13.62 87.55 98.77 1.71 17.65 97.32 8.87 49.76 30.96 90.54 85.30 39.35 55.72 -90.96 50.58 32.83 71.51 67.45 31.25 68.75 14.86 67.95 92.71 79.24 8.56 79.09 63.64 1.33 35.81 43.82 85.34 23.60 6.96 13.40 67.38 64.74 65.41 3.34 0.15 75.32 14.48 40.08 80.89 35.64 33.37 77.56 6.34 4.98 66.59 63.81 17.23 85.72 18.11 49.63 57.91 39.22 27.46 4.92 18.48 70.68 19.71 75.19 82.21 29.59 69.22 15.74 16.38 52.46 96.03 95.83 89.84 42.82 30.01 4.57 54.85 31.62 95.83 6.47 30.98 34.39 50.35 40.21 51.53 38.23 94.80 42.61 34.60 91.68 59.05 97.43 0.19 26.84 3.90 63.70 95.97 90.22 56.70 90.70 1.88 79.32 45.21 15.39 78.77 68.44 13.90 54.23 2.90 29.22 61.12 10.59 42.57 71.62 59.69 -95.92 25.95 62.36 43.29 24.68 48.54 7.35 80.19 91.85 38.25 13.76 40.15 76.81 27.62 36.68 46.09 40.65 91.02 63.98 86.37 74.81 21.15 71.42 78.54 2.46 39.03 48.00 6.48 44.89 79.83 3.49 62.41 99.84 86.46 41.48 8.05 50.59 77.75 85.49 69.34 91.96 62.63 56.96 41.03 36.57 84.90 80.01 12.73 11.77 82.28 79.35 92.17 57.83 21.15 34.79 76.15 46.07 85.16 50.55 0.84 38.21 93.85 59.68 91.18 26.97 42.17 50.04 95.38 28.96 25.78 5.83 15.40 48.15 1.52 18.04 57.04 43.42 70.98 4.55 83.83 16.85 73.06 80.34 9.22 3.31 83.81 34.07 1.64 4.51 82.02 95.69 42.23 80.05 27.10 20.65 34.00 82.59 12.65 25.67 35.45 -86.37 93.40 53.02 90.20 75.73 64.72 88.54 23.81 76.36 86.39 0.53 68.30 41.88 48.84 39.46 88.05 36.60 65.49 85.53 29.04 47.86 98.06 20.03 25.47 68.83 25.63 34.29 75.45 50.62 47.55 73.39 44.28 53.03 23.92 63.11 24.01 27.54 47.89 82.89 42.77 47.08 2.00 61.08 52.73 65.85 10.39 91.16 85.71 38.09 49.55 14.23 42.07 72.03 69.25 45.71 81.08 26.18 69.87 46.97 93.00 6.83 70.40 67.78 26.41 26.20 72.87 27.93 91.79 59.38 10.50 9.35 51.79 55.38 33.21 55.56 63.04 71.88 61.82 4.12 92.68 43.67 81.06 13.45 55.84 57.83 40.13 75.47 87.39 72.60 3.89 71.44 82.38 39.61 29.36 9.54 97.30 36.35 64.72 99.40 31.24 -54.39 91.11 89.42 89.03 22.85 8.40 52.55 1.55 28.27 53.88 2.77 98.02 35.13 35.82 61.29 24.03 24.10 8.53 28.96 11.02 30.80 47.18 85.43 99.47 48.92 0.73 60.87 83.09 48.52 95.92 50.57 87.50 83.19 46.96 25.59 93.06 68.53 9.95 33.38 16.83 95.06 24.00 21.54 88.69 39.54 19.16 5.20 37.00 33.93 16.85 99.32 97.51 63.09 79.92 68.81 51.13 5.03 23.38 22.36 75.06 17.01 23.70 70.01 69.74 26.57 13.61 80.79 26.92 86.39 9.38 33.90 11.99 96.26 99.49 4.43 68.16 61.06 14.10 56.85 2.34 65.74 52.55 4.77 49.53 60.58 86.89 87.33 9.46 69.31 12.27 10.37 94.96 91.39 54.65 61.02 71.27 81.03 39.38 24.92 72.30 -21.65 57.73 25.64 75.92 8.95 73.72 53.72 54.25 86.88 50.53 97.14 52.50 3.50 77.77 51.02 67.25 41.70 25.38 10.49 0.42 40.14 23.43 12.51 74.15 84.64 9.47 1.68 64.72 74.22 92.50 93.94 66.41 65.06 56.16 51.21 42.37 14.77 18.49 64.81 78.89 44.51 50.37 49.64 55.15 98.71 85.26 23.71 19.31 70.37 91.76 59.90 49.49 60.14 9.40 74.29 27.33 6.56 54.99 14.60 31.35 64.28 25.07 40.04 80.49 52.68 57.15 28.07 57.78 90.67 93.91 16.36 75.29 53.93 43.94 80.54 75.75 88.29 28.78 92.37 38.48 21.10 30.22 78.67 6.14 96.34 49.72 86.55 81.26 9.13 56.06 7.19 25.60 7.96 42.45 47.06 38.73 90.10 37.29 72.14 73.51 -98.47 10.34 3.47 67.68 73.09 77.61 38.47 7.58 85.81 70.72 2.90 99.22 25.10 57.92 38.59 58.99 45.64 86.37 88.68 40.26 38.41 50.71 39.65 16.92 83.99 10.18 60.51 8.59 63.02 70.27 45.77 33.36 66.73 63.48 28.44 21.63 61.36 34.40 97.44 90.43 27.12 4.61 75.90 2.45 97.87 51.73 77.16 48.21 50.34 95.96 25.75 40.03 8.16 2.58 49.24 52.44 2.53 98.79 79.53 60.90 52.67 74.06 5.07 35.33 57.91 58.97 53.48 89.41 28.22 8.05 34.41 3.21 67.91 6.58 80.57 11.72 13.20 34.13 49.96 23.53 36.38 2.87 77.75 53.91 91.33 5.31 5.73 10.07 66.39 37.29 46.03 79.85 38.19 37.72 92.57 55.91 95.35 73.90 9.00 72.91 -63.58 80.81 65.64 82.13 5.26 85.02 80.53 8.84 26.91 47.05 88.49 36.63 95.97 24.63 61.59 29.25 7.81 20.53 41.77 1.80 49.76 3.98 73.74 76.86 12.74 57.62 55.57 24.58 58.81 93.23 30.80 49.51 44.58 76.25 70.24 82.60 37.62 59.35 19.25 77.38 99.77 66.16 83.64 27.65 46.20 41.92 31.04 75.83 89.55 45.22 28.58 31.56 8.70 8.75 32.93 45.29 78.11 57.89 4.39 76.12 0.50 29.86 88.46 7.40 18.21 70.39 42.90 24.52 48.10 93.68 68.24 73.08 32.55 89.80 18.84 16.53 93.20 88.05 91.08 19.04 77.22 29.48 74.04 69.79 65.72 93.18 44.98 28.30 62.43 71.29 73.75 24.69 86.73 29.78 26.84 56.88 46.30 43.91 96.90 96.36 -29.55 92.74 39.66 18.66 28.10 96.36 59.45 92.74 30.36 68.32 59.82 47.21 30.54 22.77 64.16 40.79 67.00 11.65 59.61 4.02 8.79 88.82 75.64 60.50 11.22 26.06 74.25 5.24 21.14 30.98 97.19 78.11 72.42 79.22 85.27 45.49 88.50 43.20 11.03 56.76 98.00 72.71 4.47 92.91 84.54 79.07 30.64 16.31 79.14 59.18 78.23 22.23 62.00 99.88 77.37 19.99 86.16 75.72 58.80 50.15 60.15 1.74 71.16 48.89 3.10 77.74 72.73 82.15 77.32 44.93 4.79 99.91 23.57 33.30 22.22 52.40 77.67 8.75 12.88 83.10 29.37 82.75 10.54 90.85 78.85 28.50 44.15 87.01 4.25 28.65 73.11 1.03 58.39 39.05 96.48 62.88 80.62 67.48 9.40 69.47 -37.11 81.88 95.14 35.61 99.75 97.91 76.68 41.12 20.93 2.64 59.58 57.80 18.90 22.15 75.94 33.40 70.66 5.06 53.02 24.06 75.47 55.52 35.12 47.67 39.96 37.39 23.83 52.41 98.28 68.49 87.12 75.35 26.74 0.87 12.68 76.88 71.09 77.24 30.40 58.81 81.52 69.08 48.60 48.12 8.19 61.80 73.19 76.47 51.89 92.59 83.26 60.16 37.51 2.21 11.07 42.37 53.64 94.86 47.98 8.57 41.20 14.39 91.89 44.76 36.02 4.37 39.30 88.73 48.87 52.89 18.54 84.68 16.58 9.87 91.66 18.32 62.41 66.89 17.57 30.15 74.04 82.85 97.06 75.63 31.08 0.83 39.15 78.49 69.50 61.05 30.07 7.92 56.78 50.35 69.72 5.14 84.54 63.31 0.24 9.41 -42.96 85.47 34.51 16.17 45.58 11.99 87.23 98.95 42.24 95.14 8.81 84.18 49.18 20.95 10.81 80.58 92.95 88.86 14.33 54.69 64.92 67.16 12.83 30.75 69.96 30.84 17.53 69.60 57.75 57.54 50.76 6.90 0.77 25.74 89.72 88.15 84.01 33.98 12.32 82.38 17.29 12.31 78.14 79.56 58.59 73.61 32.98 15.69 27.88 59.05 29.99 38.21 41.58 42.62 53.79 31.74 58.16 79.35 15.58 70.12 6.59 42.58 46.40 32.12 21.18 0.37 98.06 33.96 16.35 30.64 56.56 50.33 17.62 98.46 72.60 75.44 41.18 50.65 12.26 52.90 36.31 65.45 61.03 17.64 60.92 24.62 91.82 5.70 7.00 99.83 24.37 57.94 31.85 71.58 4.25 35.15 29.69 1.15 20.19 73.42 -76.22 7.04 50.51 16.65 98.13 25.22 33.45 73.84 13.87 29.91 37.13 51.73 38.97 80.65 73.57 40.75 80.81 56.82 61.89 97.33 96.60 10.48 76.72 67.48 56.08 3.85 89.39 71.74 60.62 19.58 15.58 73.91 77.57 8.54 61.24 4.08 31.04 71.42 85.67 30.63 58.18 79.18 34.84 67.04 15.43 57.82 86.93 28.49 9.04 80.47 12.49 8.78 14.06 54.69 66.03 41.95 36.03 26.40 76.60 61.95 35.38 89.86 48.10 81.64 2.68 56.93 65.06 52.87 87.69 91.94 53.57 63.50 7.70 81.58 76.11 91.85 81.43 21.38 71.88 0.60 95.41 98.69 36.89 9.42 11.54 37.88 29.15 10.39 90.48 13.64 73.06 35.07 5.33 82.82 0.36 37.35 66.42 59.91 14.49 35.02 -13.28 3.89 82.73 65.15 95.95 63.11 66.74 86.22 93.15 18.73 18.43 93.39 58.35 74.78 43.34 33.56 73.34 47.03 23.59 40.49 70.33 77.89 14.31 60.49 25.92 58.78 27.04 95.44 63.42 74.86 10.72 79.08 99.62 15.17 19.68 21.98 93.79 54.32 1.91 6.84 14.49 23.24 30.07 15.69 94.47 16.88 75.98 54.45 94.49 70.26 10.78 38.79 32.60 91.21 32.92 74.31 26.59 17.94 49.93 42.89 35.50 59.78 77.18 62.23 26.69 20.94 42.66 49.88 12.58 29.51 69.30 42.94 66.37 64.21 29.54 14.39 4.05 27.36 90.51 85.34 21.77 10.39 57.94 45.81 70.92 45.57 84.41 58.27 20.64 49.98 67.65 21.08 56.82 77.15 28.59 99.91 84.50 29.62 56.34 59.58 -25.86 88.99 31.18 85.86 28.40 53.87 1.28 81.88 82.10 40.39 19.73 27.13 2.53 14.22 81.75 98.44 75.71 31.84 48.90 58.58 16.44 5.63 44.96 53.50 30.42 8.13 86.51 64.58 36.75 92.51 75.65 30.51 16.16 81.97 61.82 25.64 42.25 45.36 71.87 43.50 70.73 1.40 87.90 31.20 88.23 95.92 90.31 36.79 79.43 97.00 23.93 2.44 91.47 49.73 15.41 73.26 67.79 51.82 35.15 97.31 44.43 3.03 50.67 49.03 46.78 19.35 81.93 54.00 0.33 31.25 56.87 52.07 57.57 66.81 34.27 22.01 95.89 98.63 57.57 72.57 18.18 26.64 89.74 19.93 70.30 23.44 91.73 83.62 20.94 34.56 84.67 88.49 18.86 64.48 36.65 36.10 74.63 21.83 60.71 96.51 -85.97 31.30 76.48 41.03 72.51 96.60 97.62 1.01 5.36 87.69 62.07 0.46 74.07 96.35 1.12 89.88 18.49 22.57 14.50 38.04 7.60 83.54 7.51 65.18 56.77 70.48 8.61 69.47 38.66 3.45 91.51 8.79 53.59 32.53 58.35 57.33 91.13 35.43 91.52 81.71 35.61 37.49 13.44 38.53 76.78 91.70 21.26 58.45 7.59 84.02 51.44 34.09 86.98 27.00 97.95 83.30 50.13 50.83 14.49 2.31 24.31 98.30 72.76 25.83 89.80 87.56 30.62 1.83 27.56 26.34 62.33 60.46 94.01 2.54 16.93 83.32 77.30 16.01 55.54 1.55 60.94 80.65 80.60 43.97 35.03 42.37 90.49 2.93 17.79 77.49 41.37 31.87 61.13 11.17 41.80 95.66 8.00 72.24 87.99 7.31 -88.79 80.05 68.61 30.81 60.19 53.42 82.32 6.11 37.96 91.83 73.76 31.23 14.57 89.40 48.48 80.19 78.42 41.36 71.58 19.90 26.38 22.44 33.06 15.35 45.47 78.96 80.96 43.45 88.83 14.56 0.89 87.83 64.43 36.60 87.92 53.37 18.83 64.67 30.62 12.56 75.11 21.05 42.42 12.98 53.17 13.51 38.01 65.92 26.59 15.77 63.93 25.31 76.33 6.61 42.34 48.81 59.65 62.83 31.26 6.73 86.20 65.92 60.38 83.19 90.57 14.21 26.37 28.58 0.03 14.00 76.01 25.51 47.71 81.49 45.84 73.98 1.68 53.15 46.63 2.32 58.16 24.50 68.73 42.96 79.50 32.07 96.61 16.17 57.33 83.86 90.77 72.27 8.13 95.72 4.27 42.03 13.87 14.23 63.80 76.83 -66.21 57.14 58.07 90.76 51.95 54.07 90.26 53.86 72.72 34.55 37.11 1.24 32.04 43.50 23.95 81.33 76.42 25.15 84.52 48.42 81.09 9.34 92.35 91.19 88.00 19.23 51.75 2.23 33.70 50.17 80.56 32.78 87.27 1.99 45.88 15.51 90.11 64.10 2.19 22.90 93.47 4.98 19.52 54.60 91.79 24.54 98.78 24.74 10.18 48.00 45.53 7.99 71.29 93.45 5.68 20.45 58.65 35.96 94.53 20.69 76.18 24.57 20.73 54.15 94.21 80.62 15.43 50.56 13.38 45.13 3.57 20.43 47.87 36.26 69.65 27.08 72.73 27.30 93.50 76.16 75.84 73.19 19.87 87.08 62.90 5.94 47.58 64.79 92.29 62.70 78.85 86.83 34.66 98.39 47.58 71.28 64.44 32.56 25.81 35.61 -60.89 46.56 87.89 54.82 84.93 58.10 16.35 61.70 54.32 95.74 59.91 77.42 83.14 52.63 17.46 18.38 10.56 17.82 41.32 21.49 95.24 53.74 18.98 66.67 34.20 72.08 34.34 99.53 89.24 93.42 14.14 24.29 56.48 55.43 58.33 75.07 52.54 55.83 81.59 61.56 61.14 22.26 42.58 94.99 17.36 76.52 86.13 84.61 69.26 15.41 10.41 54.09 73.69 28.08 39.26 51.68 13.24 39.94 87.64 77.14 17.69 35.06 27.88 42.99 49.43 66.57 67.68 24.04 4.04 85.63 13.55 42.09 31.77 48.86 97.03 59.28 42.46 25.68 77.68 48.18 3.04 26.10 64.43 55.03 18.10 96.85 36.92 30.88 88.87 7.30 67.83 99.99 1.60 69.04 25.99 49.37 59.37 27.71 9.89 77.53 -64.42 19.90 14.26 53.24 4.57 0.56 56.30 67.66 13.52 62.11 27.84 81.75 4.23 60.18 16.96 98.09 85.48 86.11 0.05 99.88 45.18 85.59 99.55 27.82 11.08 75.91 51.83 14.93 27.91 67.68 55.07 80.57 81.70 1.63 40.67 94.38 97.47 72.71 5.07 98.05 45.75 95.92 69.70 70.74 88.92 7.66 15.24 84.70 92.42 42.73 13.56 95.20 87.14 31.92 23.51 48.41 84.35 74.87 24.72 41.84 54.59 39.45 31.77 9.68 98.72 97.33 87.55 78.56 26.15 50.29 65.03 53.02 82.85 57.25 38.57 17.34 26.56 31.70 19.55 54.14 86.35 15.96 58.02 68.70 64.27 96.62 18.66 14.12 16.05 78.14 30.29 14.45 49.43 66.52 65.10 14.55 99.43 33.59 73.46 58.63 -75.46 5.90 69.80 27.48 50.93 64.96 29.15 74.18 82.06 84.11 10.76 8.25 15.97 69.91 2.17 26.30 4.82 89.91 76.09 40.49 33.14 6.81 74.62 36.73 29.68 25.82 59.67 12.66 47.20 11.40 58.99 3.10 0.07 6.20 1.96 88.36 40.24 69.85 42.81 22.76 36.14 60.52 42.44 98.87 72.95 58.95 13.31 46.59 29.76 48.41 3.21 53.92 64.47 99.83 99.13 59.74 50.86 12.16 31.97 8.55 27.95 62.48 31.41 70.94 76.59 32.48 44.39 48.19 39.14 98.90 84.79 81.53 58.87 39.94 18.60 76.85 4.08 6.09 26.64 98.87 52.41 69.81 41.42 61.58 79.86 39.30 18.39 43.29 90.20 66.12 97.86 87.17 43.23 58.49 28.34 14.03 37.53 39.83 68.99 89.03 -77.42 25.77 55.76 94.27 63.32 39.51 48.35 35.02 19.01 42.59 86.32 25.82 86.09 8.05 16.54 78.41 22.80 27.47 95.12 18.29 76.62 51.54 51.77 21.36 39.16 42.51 33.99 74.86 16.67 87.90 71.37 47.46 18.83 74.66 68.48 34.60 55.27 93.05 45.24 60.41 71.48 11.07 17.92 78.69 48.76 98.25 95.24 90.31 61.33 37.76 38.79 79.30 39.65 1.90 73.50 56.92 20.16 27.94 44.66 17.73 41.39 6.11 28.23 90.12 64.29 60.95 78.55 18.71 66.57 40.77 98.65 87.76 20.98 12.38 44.94 30.51 65.99 79.49 27.14 31.80 11.24 69.16 69.21 24.94 35.20 16.89 58.32 25.94 50.45 22.32 46.38 39.18 42.16 88.79 10.94 33.22 56.77 8.32 57.50 77.23 -88.76 65.51 21.14 18.46 81.30 49.00 2.24 64.23 8.49 32.64 57.38 41.06 84.37 90.01 44.55 19.01 97.73 94.54 99.35 16.53 22.79 16.22 2.59 27.41 88.61 53.99 13.42 5.71 77.35 2.81 58.10 69.53 62.64 1.88 72.66 54.73 33.80 47.11 98.69 98.22 81.45 67.89 96.75 87.99 96.18 17.96 55.78 53.60 37.53 27.71 91.58 37.54 38.64 6.76 84.58 56.53 33.47 68.37 13.23 65.57 40.87 62.48 71.41 35.23 5.46 20.55 95.71 41.71 62.20 15.26 54.11 12.22 32.96 1.83 81.61 78.32 74.67 68.62 88.20 40.49 29.80 39.92 34.34 55.23 35.49 39.78 99.26 73.45 19.61 89.32 31.87 0.78 16.51 47.11 28.56 86.08 31.47 41.81 23.22 26.70 -66.13 94.43 22.02 22.88 49.56 46.96 67.35 87.11 11.29 74.36 3.55 31.90 68.17 36.14 6.06 47.10 99.45 25.18 21.46 16.21 34.42 13.69 86.77 99.84 32.51 82.70 43.07 98.45 41.03 86.75 24.53 76.42 96.21 97.03 17.65 79.03 8.11 39.64 95.89 55.39 51.21 0.69 55.20 0.05 69.61 26.16 68.71 36.09 40.51 67.32 3.24 55.43 98.28 32.00 65.57 45.10 65.15 6.30 46.29 47.46 70.87 30.40 34.63 7.47 22.20 51.13 99.87 38.87 81.67 2.17 13.31 14.32 40.40 36.77 39.51 68.87 84.12 30.21 62.52 71.93 41.72 29.53 56.89 55.72 44.07 88.23 51.06 41.71 92.75 99.10 77.71 44.99 77.90 26.29 9.01 19.45 8.14 7.78 76.83 11.43 -3.25 83.87 56.20 83.39 63.22 28.49 20.23 10.05 5.50 4.78 92.54 30.23 49.27 86.81 6.93 93.45 62.14 91.29 58.24 39.76 3.55 94.01 57.88 81.29 21.99 31.09 31.29 67.59 81.28 47.79 98.25 20.81 54.37 48.70 55.83 14.44 31.87 82.74 7.34 56.63 18.72 75.39 37.79 62.51 82.98 14.48 0.02 72.93 18.95 39.50 74.03 93.76 50.97 49.99 21.57 91.98 17.38 78.53 36.43 70.84 60.74 22.52 98.13 41.72 21.98 20.27 24.89 71.97 13.28 17.41 94.92 73.42 0.18 45.24 10.53 83.62 25.18 2.62 81.63 83.05 0.95 56.95 65.18 6.07 93.78 86.24 63.09 75.87 44.31 87.37 14.29 66.58 87.69 97.47 16.68 93.36 31.83 61.31 31.57 25.40 -58.82 81.25 55.13 44.52 64.06 45.80 29.68 82.38 48.34 69.78 85.81 32.41 84.12 13.66 43.30 87.59 0.37 41.85 23.82 93.97 12.49 6.32 98.22 55.71 45.29 46.89 0.34 67.54 86.40 60.65 64.19 54.58 77.05 87.83 42.85 80.87 1.53 26.86 98.75 41.03 37.68 78.27 29.66 56.16 36.06 80.43 18.11 88.33 39.95 62.29 68.88 95.30 6.10 22.32 10.12 30.97 19.49 82.77 5.44 10.08 87.51 61.19 22.61 24.72 11.51 82.92 23.41 18.68 63.64 56.66 30.50 48.14 78.46 33.08 72.80 58.05 84.00 77.74 5.69 90.66 10.57 31.19 70.27 39.91 84.98 82.62 2.56 83.92 17.45 90.75 62.48 63.16 44.84 52.66 33.32 67.89 84.20 45.81 71.48 39.92 -68.63 31.53 94.70 90.56 93.83 14.32 31.45 18.76 27.47 72.87 63.74 39.91 30.51 60.03 47.36 1.73 97.71 15.59 47.77 29.45 84.05 21.52 5.89 59.58 59.00 44.72 48.18 60.04 89.67 63.87 66.10 58.63 30.06 45.37 27.07 6.69 79.60 25.95 76.20 2.83 79.36 28.59 2.08 79.97 35.54 31.18 65.24 71.55 24.55 55.60 83.41 15.77 87.38 55.92 99.87 39.87 69.83 15.42 60.03 98.47 4.32 82.23 34.45 76.07 38.85 2.09 38.69 42.81 99.43 38.29 60.27 20.19 45.37 97.36 4.91 18.29 23.84 71.96 4.14 33.03 32.97 80.78 85.59 64.69 6.22 27.52 86.57 33.33 75.81 74.52 69.02 77.61 27.23 9.42 56.37 41.11 85.66 48.31 2.69 76.94 -77.05 95.77 33.57 52.43 8.35 75.84 78.68 72.07 81.39 13.05 3.27 85.58 48.12 31.53 52.18 48.92 95.25 46.53 18.27 99.61 13.35 56.78 59.31 41.42 86.06 10.41 78.23 5.79 6.20 16.24 42.24 18.73 87.85 20.24 42.75 71.69 6.75 46.20 76.85 9.84 62.03 7.79 10.87 24.88 60.31 16.21 14.85 50.28 49.03 88.78 21.37 15.41 4.73 72.65 83.22 97.36 29.27 21.83 11.61 21.70 60.29 11.67 86.97 37.13 56.48 18.14 60.55 2.75 18.34 15.15 54.83 90.52 19.46 12.53 70.67 19.28 64.13 50.84 82.22 61.98 22.62 93.01 61.56 71.68 70.82 21.70 7.82 69.57 61.35 77.68 4.27 43.93 31.76 75.39 33.63 6.58 32.72 55.91 73.72 80.73 -52.81 42.31 56.22 54.39 25.96 23.99 18.79 34.72 96.42 11.37 50.89 41.27 92.53 64.29 78.26 13.58 36.25 23.05 8.13 74.40 1.39 85.49 58.57 19.02 92.84 29.29 81.91 50.24 57.83 14.71 13.69 39.19 54.44 22.26 18.61 25.52 2.22 6.16 37.36 70.14 23.91 86.67 6.58 91.87 95.40 96.80 29.99 92.04 89.74 25.18 32.99 67.42 99.63 15.30 63.18 21.32 26.43 35.70 31.82 46.41 9.87 76.70 7.58 77.83 35.25 25.99 51.82 20.82 98.21 7.71 99.35 5.78 24.75 41.66 58.57 56.64 69.31 60.39 12.34 69.95 31.23 6.32 31.08 66.71 12.67 61.94 59.65 72.74 33.58 50.67 25.79 15.38 6.10 20.91 29.38 20.35 54.14 39.01 8.42 0.54 -INTERNAL -21.76 81.12 24.75 22.86 30.15 67.38 40.72 55.41 35.09 71.94 5.79 34.33 3.16 69.39 41.07 59.86 10.33 79.36 57.39 57.96 28.38 30.51 29.17 24.59 71.20 44.18 10.44 35.24 19.86 70.56 75.91 6.98 47.76 18.94 13.14 88.44 73.68 31.70 7.07 29.90 92.78 3.89 36.77 28.47 53.46 10.22 70.80 12.25 59.59 55.61 97.17 65.79 70.36 12.56 99.49 57.64 4.40 45.17 68.48 39.56 59.39 89.73 17.62 76.66 19.14 55.82 38.49 69.70 44.38 54.15 24.56 90.10 18.62 72.78 25.58 80.94 96.00 6.60 42.26 52.68 47.15 88.86 62.37 60.86 69.29 86.31 61.46 23.75 18.66 88.69 21.70 30.34 98.97 88.73 61.83 32.81 5.81 97.90 65.95 43.35 -26.79 85.66 37.00 38.47 2.36 4.64 26.80 6.19 85.12 83.65 20.87 45.39 8.22 58.86 44.74 54.76 78.10 17.95 52.40 61.05 52.76 28.23 74.57 37.62 14.01 7.48 98.01 59.03 6.40 68.49 47.55 7.61 26.64 36.27 42.20 48.57 21.45 9.61 31.24 94.24 21.95 18.96 33.04 88.56 95.66 42.92 17.70 30.08 98.37 72.18 57.05 53.28 44.03 48.29 94.05 20.87 66.86 0.64 99.25 96.50 2.41 64.19 69.77 53.87 34.39 97.59 69.84 56.15 76.43 81.33 38.77 83.55 60.93 0.85 10.53 23.75 40.21 95.91 31.62 97.63 16.05 77.03 85.59 56.31 92.48 83.60 1.11 95.46 42.81 27.73 1.52 57.47 75.86 30.83 36.20 82.27 30.40 52.06 12.59 26.82 -29.55 27.92 2.77 82.33 48.91 45.16 27.46 33.63 52.11 38.33 16.87 83.23 46.49 68.27 21.86 33.52 60.83 24.13 60.19 37.15 29.87 50.95 96.87 53.60 79.55 14.07 16.00 48.61 94.93 74.88 2.83 96.26 61.39 70.74 57.25 67.72 55.86 60.76 25.77 63.78 22.85 47.74 30.78 94.25 29.95 13.17 15.99 58.11 97.13 96.82 72.19 34.76 5.44 56.11 6.70 43.28 89.83 88.78 53.89 58.24 7.07 97.04 49.77 0.71 48.73 39.33 60.76 24.72 41.06 29.63 88.10 37.99 57.66 0.44 71.58 2.86 15.64 19.59 30.78 79.04 52.74 65.80 99.20 72.79 25.78 60.71 64.68 18.66 90.21 23.17 93.27 46.33 8.86 1.04 27.67 22.23 24.95 84.51 85.58 10.47 -10.93 74.78 82.80 40.24 40.15 25.77 94.16 9.67 49.76 47.34 21.86 12.54 64.93 83.70 90.21 63.09 34.25 60.88 58.70 13.14 81.29 4.48 44.55 79.99 62.18 38.07 49.18 2.46 59.55 20.21 30.55 45.27 86.89 24.89 0.68 32.13 11.80 11.44 25.97 62.68 41.37 18.88 54.20 29.64 68.52 48.38 88.18 66.42 15.45 13.65 23.19 29.24 90.61 91.14 98.06 36.23 17.68 50.66 86.33 77.23 8.99 5.52 11.84 53.80 35.87 98.18 97.50 64.66 89.27 37.49 94.93 46.89 49.34 40.21 3.93 61.66 52.37 66.61 83.84 25.45 59.88 45.82 41.97 7.74 74.35 74.75 65.16 0.52 48.35 58.46 56.24 58.55 83.57 82.04 58.34 26.10 33.51 33.68 27.59 40.94 -25.62 89.42 48.16 26.44 5.42 24.17 64.64 50.99 62.74 17.80 41.25 49.45 94.13 99.79 30.98 86.31 4.26 84.08 12.89 93.32 15.55 48.88 72.17 20.18 40.48 77.96 43.87 26.51 65.28 90.27 36.72 90.40 52.17 94.21 90.02 87.88 86.79 74.52 26.36 54.60 14.61 78.08 24.19 24.23 91.22 26.42 49.72 37.71 89.77 47.52 87.51 6.17 85.50 84.02 80.87 15.23 12.33 9.40 75.91 42.69 33.06 57.69 17.66 3.79 59.44 56.21 81.92 81.39 41.96 28.56 65.90 42.71 0.20 55.56 37.42 22.43 44.78 43.71 12.63 46.33 64.09 32.54 70.77 48.44 37.66 59.35 50.86 35.99 57.93 18.66 47.90 52.73 25.70 82.86 19.24 74.73 18.99 9.97 23.97 57.79 -62.14 87.31 17.19 7.23 18.03 68.02 82.94 11.87 62.28 52.84 93.43 89.85 44.47 70.07 98.87 35.76 25.42 54.21 17.06 98.29 41.30 17.37 68.71 14.33 81.88 86.13 44.66 11.80 54.34 16.38 39.90 54.26 34.06 11.17 11.94 85.73 36.55 53.77 2.79 59.63 86.30 41.60 81.97 20.67 69.05 95.43 67.99 92.67 69.74 11.81 30.68 23.94 38.29 99.74 77.57 27.02 23.70 4.30 71.10 47.49 40.76 33.44 66.94 87.41 89.84 53.38 91.64 16.89 45.13 46.47 60.44 17.65 21.20 21.66 60.04 25.38 22.61 89.05 86.34 59.13 85.78 3.18 55.93 72.37 4.62 41.02 13.79 62.66 3.78 33.66 75.81 12.41 52.17 43.90 5.22 46.22 63.46 84.79 62.78 90.22 -60.97 65.30 60.17 22.52 90.12 41.98 18.92 27.16 73.44 26.41 91.53 10.05 53.60 48.77 41.35 44.95 73.94 45.43 51.98 81.02 69.77 70.74 30.58 13.46 93.22 82.08 27.70 9.93 76.75 64.46 93.70 65.29 37.35 8.68 1.49 94.97 42.68 12.63 51.09 0.43 99.51 73.52 85.53 80.91 37.95 94.24 72.85 33.59 1.97 67.70 34.81 85.82 33.66 65.81 80.37 19.24 56.04 80.66 1.20 66.12 74.21 18.27 60.61 28.51 56.01 59.50 39.69 4.44 80.71 78.31 97.33 0.03 9.05 45.81 22.71 28.67 86.07 3.92 75.37 59.72 52.22 35.87 57.05 75.73 56.29 65.96 11.45 35.95 19.64 93.17 33.92 12.51 81.96 64.13 97.25 54.32 79.70 64.53 12.56 31.21 -30.84 22.79 69.87 38.71 2.49 75.32 5.03 96.81 46.16 40.24 24.70 1.70 44.27 59.19 98.74 91.56 41.19 43.18 84.92 55.45 9.33 23.51 15.54 90.97 45.20 59.61 79.64 5.06 97.33 67.40 62.75 73.61 17.83 37.19 24.51 36.92 14.08 95.82 58.90 90.79 85.44 39.87 89.35 7.22 88.46 42.07 51.96 77.57 29.69 42.37 38.86 41.70 46.98 95.22 27.16 2.00 59.19 29.01 51.54 92.47 0.75 23.80 62.53 54.12 74.46 52.41 47.40 6.65 24.04 23.09 9.56 17.69 53.68 13.76 73.63 81.34 93.43 82.72 24.26 88.41 94.79 35.94 1.36 52.83 75.84 68.51 65.05 81.26 28.79 42.94 49.03 17.21 83.04 91.16 97.93 18.82 23.07 56.75 48.07 86.64 -27.88 13.50 19.50 73.47 37.58 95.41 61.44 66.66 77.57 16.80 50.01 93.94 83.29 31.49 27.02 52.20 23.96 49.58 21.23 51.62 68.47 86.73 97.17 82.80 32.42 94.03 62.17 71.86 41.23 57.40 19.14 52.18 98.85 65.11 94.55 14.29 25.65 87.60 87.45 77.02 66.96 80.41 79.31 10.71 57.87 1.23 70.84 62.23 79.67 67.03 89.51 31.61 2.97 40.81 67.76 98.78 46.71 29.13 91.32 17.41 58.83 17.22 97.20 51.34 41.39 71.70 17.07 81.36 11.29 74.42 38.94 57.25 24.90 87.73 37.31 95.38 39.05 10.86 10.79 56.67 66.58 48.11 90.58 50.35 40.38 64.12 64.24 47.58 8.41 54.80 72.62 39.57 69.32 44.15 11.25 31.76 19.73 21.34 65.60 45.10 -49.97 44.32 87.73 57.97 39.95 85.18 86.16 8.11 63.25 43.80 69.78 83.02 77.73 26.61 39.91 79.73 2.68 77.19 79.59 26.39 49.02 53.89 99.80 85.74 44.56 72.36 0.36 34.73 0.93 46.29 49.38 69.75 11.07 71.30 1.67 64.87 8.85 50.37 53.55 40.26 65.91 40.69 98.47 75.20 68.87 50.65 14.45 57.91 73.23 88.71 28.14 89.72 32.42 43.48 92.44 10.65 82.30 77.95 6.63 14.69 51.43 14.86 71.51 32.86 27.76 55.21 23.69 71.99 81.06 89.37 5.15 70.32 89.84 25.14 71.58 82.16 68.28 19.68 49.85 51.19 21.65 23.09 94.34 7.33 47.13 44.56 20.34 73.81 64.03 96.91 35.29 80.63 49.60 16.47 26.10 14.03 39.59 64.81 23.05 55.18 -2.93 51.23 16.37 19.03 53.69 80.74 34.50 12.68 15.69 9.18 1.26 25.97 74.08 99.84 76.38 37.99 34.62 27.97 67.30 81.29 97.56 62.65 75.68 57.40 74.68 92.42 52.19 51.61 69.61 38.23 49.75 65.58 76.73 68.77 58.36 65.65 94.99 0.73 77.38 13.07 21.89 63.42 94.55 1.21 62.99 17.12 13.08 65.70 35.41 22.30 59.17 60.94 14.91 50.58 36.70 1.85 33.96 31.40 5.60 68.62 97.27 77.71 75.93 76.36 61.93 67.26 10.86 37.00 18.25 6.32 55.66 16.97 96.43 74.74 89.00 69.54 63.06 90.90 4.31 19.82 28.35 59.40 28.37 45.02 69.93 69.75 88.24 32.76 99.21 70.04 40.95 83.03 82.69 23.55 11.94 3.58 4.64 80.78 87.57 98.66 -74.06 82.97 89.09 22.93 61.70 66.60 73.53 42.56 80.78 2.06 31.45 43.84 16.33 89.26 31.78 61.61 33.19 91.79 15.43 84.10 2.30 59.41 30.85 80.26 59.23 31.81 26.26 6.15 68.60 7.94 65.16 18.35 48.91 60.66 29.89 8.01 11.08 31.69 71.00 92.97 89.52 10.01 67.53 19.90 89.95 27.02 20.40 68.25 50.56 91.90 55.78 88.41 41.37 54.55 87.64 89.91 76.82 44.13 60.96 90.20 56.36 85.23 83.88 7.77 57.76 70.73 17.02 82.51 99.11 11.79 63.51 80.02 18.16 19.59 46.77 18.43 26.87 5.23 20.88 61.56 73.31 85.63 16.43 43.43 90.14 19.53 23.29 8.87 31.40 22.38 22.06 17.56 69.19 14.78 1.38 77.35 71.67 54.67 76.66 31.24 -55.11 34.32 93.32 67.10 20.86 42.99 63.28 7.44 29.27 53.96 42.49 71.39 32.62 29.18 30.70 44.98 39.77 53.26 57.78 3.37 78.13 6.94 76.30 89.83 99.04 40.23 34.90 95.54 97.87 16.29 55.96 93.30 39.67 20.04 9.48 24.09 22.53 11.11 54.88 92.03 31.49 67.51 87.28 33.16 17.66 81.98 14.50 56.18 71.64 53.77 35.56 62.41 70.59 90.72 20.65 71.85 79.56 14.55 38.07 27.44 42.26 37.51 22.89 54.21 23.34 9.68 12.89 92.38 92.31 70.58 96.94 21.78 87.78 75.72 75.84 57.46 69.43 49.03 89.81 63.63 81.82 81.66 9.61 10.12 45.40 81.84 73.59 48.51 9.74 12.04 43.57 82.94 90.03 75.30 32.68 85.97 93.18 17.54 31.68 45.44 -9.62 36.94 51.09 10.78 47.11 74.62 97.53 5.75 30.58 59.25 84.48 31.38 16.52 14.52 1.62 27.07 11.18 0.18 15.09 23.23 34.51 32.30 96.48 15.03 17.57 81.64 0.68 88.92 16.01 25.67 64.15 81.49 72.44 70.55 31.64 17.72 99.95 38.67 31.95 48.48 37.99 29.46 82.77 85.66 17.94 58.32 48.29 37.22 93.45 56.81 5.94 82.56 85.75 45.77 53.13 28.29 8.44 72.27 66.63 94.82 28.32 31.33 16.50 77.70 93.50 75.23 54.11 16.67 89.52 47.78 66.41 88.50 86.78 87.71 27.00 35.27 31.79 16.82 81.07 33.05 99.04 88.84 98.29 6.41 58.59 36.94 83.26 90.33 92.03 39.32 61.80 5.93 5.38 1.76 75.56 13.98 52.05 8.66 56.70 25.44 -9.72 51.03 85.15 2.56 41.52 31.38 70.47 61.35 66.52 53.07 56.34 55.40 13.16 30.35 90.54 41.92 60.98 83.20 85.11 89.07 99.13 74.29 26.63 88.86 95.14 36.59 8.43 99.42 81.31 49.32 53.85 61.51 10.62 46.47 41.12 48.31 46.37 79.01 5.27 2.56 45.55 75.33 72.55 38.64 26.38 73.35 2.24 6.64 31.98 28.00 45.23 36.11 32.94 62.07 2.27 90.14 79.80 35.69 19.61 63.70 2.73 57.40 77.14 68.25 12.94 3.03 12.61 87.37 78.66 5.78 46.50 89.32 9.65 4.40 50.83 59.76 76.03 70.53 26.53 70.22 96.65 25.90 60.87 14.04 42.09 74.90 62.99 49.80 44.57 86.60 45.55 0.73 67.22 31.31 96.21 77.28 20.77 56.96 44.48 94.94 -75.57 24.50 35.50 43.91 46.00 36.38 39.23 80.76 36.64 84.96 78.69 1.75 7.87 28.94 92.04 39.38 49.57 55.00 45.90 52.61 68.48 90.56 20.24 32.82 50.84 87.29 88.90 23.54 55.38 26.00 19.11 3.58 24.69 98.42 94.70 12.46 91.20 0.54 25.67 98.50 9.50 2.60 27.94 61.96 53.28 34.56 82.23 33.24 86.58 30.77 97.07 30.11 5.66 45.27 59.26 52.27 2.65 72.42 87.87 67.68 31.20 5.80 68.04 31.64 32.92 46.76 76.03 0.98 46.98 85.80 16.82 10.29 1.65 30.20 5.61 11.27 84.72 64.43 40.38 1.39 0.15 77.92 32.52 22.03 80.02 73.88 48.74 17.51 90.27 19.29 46.13 81.90 73.92 38.27 21.64 52.81 13.75 49.48 36.65 91.25 -80.20 88.74 47.53 76.25 42.16 72.34 52.38 10.29 37.62 78.81 73.55 24.77 90.37 3.80 61.48 44.42 75.24 70.31 66.73 84.04 89.00 31.08 26.95 74.21 81.71 46.71 85.38 92.08 69.49 68.21 3.30 27.15 81.87 70.08 84.68 18.63 25.40 71.28 55.00 61.79 19.44 30.14 7.29 70.06 5.07 30.53 20.92 14.60 77.51 23.18 81.01 92.52 60.53 68.30 2.31 61.61 10.54 64.76 11.24 34.74 99.04 71.24 18.60 2.50 13.63 40.10 61.59 99.94 18.97 26.85 89.72 19.48 57.28 95.40 47.58 28.21 86.64 96.73 94.84 86.74 21.17 61.23 37.27 5.01 39.91 96.63 44.38 93.84 29.37 99.52 68.20 28.33 59.19 3.03 40.16 16.02 37.80 55.93 38.32 14.25 -99.05 21.00 62.17 24.39 3.26 20.03 90.60 83.77 34.17 33.52 29.46 47.79 89.98 25.40 36.41 84.69 26.47 98.80 15.70 73.53 66.01 89.53 40.95 33.82 26.16 7.92 16.38 19.37 10.95 64.62 23.20 80.35 52.14 10.88 71.43 95.86 55.25 29.73 80.22 5.60 20.30 44.80 20.74 28.33 0.78 89.54 56.56 10.03 62.12 88.23 8.02 82.59 34.89 77.16 34.34 50.16 44.80 79.39 83.53 39.28 33.74 55.37 57.42 11.88 6.65 54.03 55.36 28.24 2.95 10.18 43.04 82.40 61.25 91.50 6.18 82.96 55.69 91.63 14.09 53.59 10.66 80.14 95.64 58.12 43.22 37.94 83.04 47.67 38.91 24.79 36.00 3.37 86.97 20.35 42.21 69.01 49.79 99.16 44.86 45.99 -23.60 40.83 31.51 83.17 67.84 7.87 97.85 94.48 52.95 17.74 36.69 72.74 20.03 68.70 0.39 48.81 24.32 81.33 98.04 87.94 61.74 39.66 28.77 16.62 14.70 8.04 31.11 64.53 93.53 83.45 75.53 92.65 96.80 84.85 93.53 38.64 84.52 23.05 21.80 76.29 22.39 19.87 52.52 13.89 71.06 84.80 57.11 11.22 82.64 98.43 16.96 20.68 29.53 66.64 65.92 43.23 55.18 73.03 41.53 26.87 44.51 67.10 25.81 8.50 90.87 19.66 89.97 79.69 94.08 55.28 26.69 25.52 0.03 58.11 52.99 11.69 51.85 74.73 17.88 28.74 80.47 9.01 20.13 10.21 93.88 54.32 34.26 59.99 86.39 63.72 15.27 69.08 4.99 37.04 29.15 51.36 39.24 66.56 8.16 83.49 -98.77 48.91 31.21 26.69 40.44 19.60 39.63 69.93 49.47 74.74 2.05 89.90 81.96 35.30 14.74 13.08 16.08 62.52 58.44 16.38 98.85 80.74 73.87 70.71 74.23 67.05 40.88 88.46 93.78 42.86 80.65 8.52 45.77 55.93 17.35 61.42 45.41 45.45 99.36 74.62 80.30 4.45 71.26 3.99 9.82 43.95 93.78 88.46 83.68 70.38 12.15 46.16 11.32 98.12 60.17 61.37 86.11 30.77 85.27 8.03 35.65 86.23 33.23 52.64 85.58 89.19 75.46 4.82 12.12 97.69 13.42 61.52 99.12 71.11 10.21 34.58 31.65 4.77 74.81 36.71 39.84 99.97 27.29 65.70 17.37 7.88 46.83 66.75 32.17 66.16 53.04 45.44 17.48 53.39 17.27 54.47 63.69 91.02 51.59 99.85 -4.71 24.74 24.50 9.75 81.64 4.87 97.10 12.78 34.32 76.10 65.61 20.81 40.12 69.96 24.08 68.02 37.20 80.64 50.35 29.01 70.25 86.21 86.12 70.52 14.66 29.59 92.14 99.17 76.46 45.59 62.52 60.40 10.44 65.96 63.38 86.49 93.13 1.77 26.89 86.26 30.27 60.80 84.48 90.37 6.86 61.07 38.74 24.34 43.46 91.62 51.78 90.31 55.40 71.63 27.50 35.41 76.84 24.15 67.83 71.99 36.61 31.03 70.12 66.67 7.02 92.55 47.96 66.89 63.11 53.78 65.11 41.73 85.10 76.83 43.96 44.73 75.41 72.03 6.00 86.60 14.90 89.86 14.21 72.14 32.67 67.54 5.34 95.16 5.98 77.40 6.50 21.45 45.29 31.94 98.67 14.89 67.20 76.35 20.36 97.95 -27.34 31.84 37.28 92.17 77.22 44.86 39.01 60.40 86.51 94.18 42.38 82.13 57.25 99.65 77.21 86.18 6.29 31.66 6.16 19.50 22.55 49.55 84.34 51.88 81.45 46.79 8.51 10.71 94.78 38.64 45.10 93.10 20.57 50.66 74.69 13.82 29.57 80.61 67.80 91.26 25.06 73.72 90.52 71.79 87.83 48.37 35.03 94.13 88.73 28.48 61.34 91.03 74.81 45.77 84.58 19.25 37.02 93.57 89.51 58.92 72.47 89.48 39.59 32.58 75.04 83.40 59.26 45.96 3.59 13.93 73.96 35.31 25.98 34.89 69.90 69.66 63.51 49.78 74.84 76.28 50.86 34.09 57.25 60.45 75.54 52.27 39.43 78.57 77.69 41.28 13.61 32.69 52.88 34.17 77.10 72.57 36.91 72.77 21.96 11.93 -99.61 27.69 3.12 54.39 13.40 79.61 3.33 28.53 73.38 5.30 79.99 14.11 76.54 84.21 0.57 11.17 49.19 89.49 15.27 74.31 20.24 99.44 80.62 6.89 59.62 19.05 11.59 72.64 97.18 19.06 52.89 45.48 46.24 70.06 65.70 36.70 97.96 98.83 73.31 14.74 70.18 94.73 95.05 69.67 27.27 15.71 45.91 24.28 29.94 35.84 7.01 78.48 38.93 75.81 12.35 15.73 21.73 11.22 19.09 8.31 78.58 40.75 29.06 4.52 70.09 62.31 99.42 62.23 61.48 91.58 13.01 83.75 2.62 95.17 39.50 10.97 55.81 49.10 13.66 44.93 27.51 45.97 40.70 80.95 8.96 59.41 68.03 5.52 18.77 18.92 69.78 20.27 37.06 7.57 28.59 48.82 48.86 62.38 94.05 55.26 -63.03 79.20 97.02 57.16 14.94 25.15 0.21 76.85 74.58 88.16 25.12 95.41 29.73 20.12 60.76 67.75 67.37 92.05 97.27 26.62 7.62 22.09 26.72 56.99 71.95 47.91 73.52 55.38 47.52 3.77 63.29 79.38 17.44 46.33 72.57 32.17 31.71 6.94 88.83 64.96 62.03 45.88 42.30 32.88 53.96 72.49 47.69 9.15 81.71 96.57 28.27 78.36 28.68 56.44 49.57 61.57 58.71 18.26 56.22 36.31 73.31 42.76 12.93 66.91 2.44 5.41 97.02 14.62 67.45 77.22 0.75 68.37 72.62 37.31 38.37 16.68 4.25 97.46 75.57 62.86 31.90 6.33 20.55 34.44 53.88 79.68 97.86 97.43 13.02 90.02 75.79 83.54 86.31 46.31 79.42 70.79 55.28 7.49 82.26 52.22 -91.42 55.89 6.86 68.84 36.37 84.73 64.80 16.74 16.82 78.11 14.03 62.13 3.49 87.87 92.25 84.29 41.01 16.36 29.47 12.49 32.53 82.66 98.87 56.16 85.43 90.76 91.70 44.34 22.89 67.12 13.37 83.91 5.94 15.07 72.70 40.57 70.95 20.73 21.01 4.88 1.15 86.08 92.34 74.18 10.33 29.84 23.30 46.47 54.19 88.81 59.53 50.96 74.12 12.08 13.95 65.20 24.05 96.53 20.10 53.64 4.23 51.25 94.63 31.00 49.99 58.15 28.80 10.12 41.24 28.24 53.11 78.77 6.68 84.67 60.83 2.77 1.74 46.69 77.85 58.03 4.98 93.51 16.76 14.82 9.36 84.97 96.92 52.41 54.97 19.25 66.73 95.59 25.22 84.16 48.38 36.28 57.14 64.17 82.33 34.92 -14.77 62.90 96.95 3.95 6.55 44.55 48.76 35.69 37.20 23.29 73.63 10.95 86.79 91.24 72.21 55.41 64.66 51.29 97.95 56.09 51.64 55.58 26.57 9.13 33.91 90.90 74.02 65.24 76.28 2.14 93.81 13.05 53.12 74.40 67.47 36.73 90.22 32.94 28.10 76.75 37.21 4.56 15.48 91.26 20.55 8.94 80.10 75.93 32.96 79.02 75.23 33.42 88.93 70.58 71.04 17.46 76.75 28.72 83.17 71.83 89.55 62.40 67.03 93.61 19.30 93.03 50.00 93.52 89.96 69.14 49.81 77.77 79.17 45.86 69.33 96.59 48.33 54.19 26.09 23.10 68.33 69.52 41.05 84.96 88.74 81.72 75.61 25.42 90.67 31.53 3.11 30.92 91.38 79.31 99.45 47.98 37.61 61.13 73.26 57.79 -59.02 75.26 22.59 86.60 86.80 75.68 34.49 46.04 32.40 55.06 85.94 52.88 99.63 35.56 55.26 24.34 54.30 90.62 97.73 36.74 36.14 94.05 49.54 76.30 30.08 0.98 86.42 20.01 44.93 97.39 27.60 65.90 33.33 96.87 33.81 15.45 22.26 50.39 19.56 85.72 87.24 70.01 98.32 48.55 83.81 19.39 6.76 62.78 67.21 84.11 64.85 8.50 74.04 56.01 92.86 32.00 0.66 21.11 80.46 49.91 46.41 58.71 29.10 9.21 57.93 0.74 25.82 79.80 30.42 55.47 62.86 84.01 2.71 53.73 18.60 36.75 9.71 58.82 9.62 88.78 97.11 72.84 81.82 12.20 70.46 35.59 25.47 18.58 27.69 77.28 70.69 90.02 90.68 18.80 76.23 11.52 9.11 6.89 39.76 25.47 -87.79 35.10 57.32 44.54 11.99 85.94 37.32 10.05 30.91 94.04 64.67 10.17 91.41 92.17 81.78 15.78 55.50 70.70 87.50 91.26 3.72 80.00 97.95 67.77 21.21 6.99 2.50 74.86 21.37 48.15 77.66 58.27 50.28 53.91 99.71 29.00 13.38 26.17 21.56 21.88 86.07 51.77 39.15 58.23 35.57 51.28 19.34 12.41 19.75 2.07 93.41 78.25 93.88 56.69 50.12 69.96 25.82 57.11 21.27 63.47 1.44 33.91 24.17 64.48 84.90 55.26 49.95 91.06 87.95 59.08 96.24 69.01 41.74 89.58 2.31 95.35 71.84 59.03 22.21 95.02 37.07 59.51 82.77 55.54 27.16 36.33 52.07 87.55 43.01 35.20 5.84 57.83 34.64 58.52 19.71 39.28 46.02 22.90 76.10 60.45 -98.25 58.47 36.91 5.61 18.74 42.81 37.82 69.07 81.28 79.15 61.76 56.75 67.72 58.98 87.08 35.57 84.37 49.52 45.53 94.43 6.40 81.44 48.92 4.79 67.47 83.47 13.96 11.07 90.95 30.55 3.22 79.64 85.46 71.72 27.89 67.82 83.86 19.41 64.50 83.90 48.09 85.06 90.99 56.10 19.20 27.18 72.57 16.97 91.46 17.04 12.38 3.08 12.78 36.56 97.49 40.21 35.12 28.01 63.38 76.76 19.88 35.10 84.97 81.34 37.49 21.79 4.10 95.56 22.79 70.60 36.35 62.19 45.72 11.34 44.67 6.66 9.69 89.90 15.22 64.27 66.21 91.36 27.31 48.20 99.63 48.17 45.00 15.44 95.32 36.61 69.22 93.93 8.73 23.87 51.11 51.38 62.38 25.24 33.78 88.63 -71.26 78.27 61.77 99.65 18.05 67.22 14.17 71.06 38.64 35.98 46.69 2.80 56.78 76.33 71.98 50.07 97.66 60.12 99.49 2.21 3.34 90.06 7.52 88.00 23.56 22.53 72.81 14.69 46.10 31.77 18.59 74.31 10.87 75.78 41.18 74.50 10.98 44.83 56.52 27.21 41.85 61.31 39.58 87.84 88.30 35.43 89.33 53.75 95.32 99.47 12.04 66.67 68.65 80.30 95.02 95.07 41.00 89.69 23.72 33.24 64.45 88.69 80.77 20.23 16.66 69.00 36.13 12.29 96.14 65.11 71.58 67.80 91.17 2.89 42.54 43.65 78.36 76.63 1.18 17.75 85.55 62.38 83.33 92.71 68.74 78.94 6.13 98.62 84.12 96.57 5.51 21.71 28.08 31.70 5.13 18.70 1.61 46.77 62.21 26.49 -27.17 49.98 45.56 33.85 83.67 48.68 22.93 89.54 2.83 83.79 6.72 64.01 54.52 7.09 17.95 80.61 95.53 8.79 19.77 10.63 44.90 90.75 88.87 46.43 78.55 43.69 33.25 65.73 69.16 11.44 62.87 5.42 89.46 14.82 95.75 43.38 52.17 89.99 74.83 60.66 3.20 79.95 31.44 94.58 11.24 97.51 60.13 55.71 37.67 30.05 55.56 85.13 42.87 32.19 17.87 51.88 30.73 49.19 64.96 13.45 63.94 88.37 41.51 51.83 46.36 5.18 85.76 97.16 21.77 81.59 8.00 0.26 16.14 46.72 9.39 35.23 22.10 27.77 53.43 12.70 61.99 86.84 63.27 70.10 15.03 47.17 37.50 77.88 81.71 29.80 8.82 22.66 31.46 17.46 8.61 94.68 82.01 44.60 54.68 38.92 -49.02 7.06 20.33 32.65 20.00 8.85 39.58 44.10 52.78 47.13 58.23 68.23 33.58 29.33 27.92 11.32 73.03 34.00 61.78 83.44 34.96 34.87 63.63 75.84 16.26 65.92 36.71 77.84 92.13 85.24 39.41 1.77 11.88 27.37 93.54 92.28 90.68 43.61 7.42 37.24 97.75 7.14 22.21 98.73 60.51 68.75 97.45 56.72 53.36 27.76 38.61 9.24 54.86 45.47 99.89 7.78 37.66 45.58 40.30 16.81 36.15 16.38 79.72 95.51 33.08 47.91 52.09 81.50 19.19 41.46 18.20 75.54 17.95 64.96 56.14 76.55 37.39 87.73 19.70 73.58 89.10 30.38 30.38 73.05 17.64 15.83 62.14 18.30 78.52 16.68 33.10 53.69 71.02 88.58 86.51 31.44 97.97 64.96 10.59 46.64 -26.73 11.33 52.63 6.02 88.96 69.52 16.22 95.84 59.83 99.19 33.55 80.28 54.87 19.45 98.97 31.56 53.05 89.19 38.77 31.59 69.64 90.05 84.96 76.87 30.18 63.29 65.05 2.65 2.84 92.70 26.20 66.95 67.78 71.49 23.31 87.28 78.28 6.83 8.35 27.01 31.59 29.17 69.30 60.65 36.87 20.36 75.37 88.08 93.18 29.09 89.51 46.89 83.64 19.67 57.72 44.46 37.39 42.16 27.79 72.43 89.66 0.74 34.92 63.94 19.70 37.53 66.45 35.24 56.76 44.96 70.17 42.02 47.76 61.13 42.61 15.26 23.12 21.81 5.42 5.06 19.37 29.88 30.53 57.98 72.86 37.26 58.47 34.20 47.23 57.21 61.08 73.90 43.68 87.57 78.21 20.07 90.80 84.84 79.53 82.97 -12.18 21.12 58.82 32.86 69.59 81.07 73.78 96.01 24.27 73.24 47.10 51.06 98.21 29.36 94.54 95.49 56.65 89.45 98.16 90.60 83.31 78.18 32.48 66.21 47.99 28.15 77.73 15.75 78.58 81.50 43.07 12.89 63.41 61.75 37.33 60.38 29.48 5.68 28.75 99.42 3.25 56.79 99.96 32.04 52.89 64.60 51.05 43.73 96.94 0.16 59.64 46.78 32.74 58.80 60.82 61.28 78.42 70.89 4.67 40.30 71.08 5.73 65.62 20.99 57.96 64.92 39.51 68.75 77.12 37.97 73.44 27.79 95.02 80.38 0.91 23.20 20.79 70.65 5.20 38.46 11.51 42.73 22.29 55.25 89.38 16.70 12.29 74.34 5.33 56.78 8.58 33.87 7.21 0.30 7.02 27.48 1.82 69.59 26.27 23.59 -39.38 80.00 14.86 54.32 59.58 90.45 23.04 70.14 16.67 44.72 24.74 64.46 6.02 69.15 95.81 91.96 86.22 22.94 28.29 69.68 45.65 28.09 63.76 31.85 27.31 3.05 88.19 32.47 77.60 42.91 32.72 24.63 37.47 35.11 20.64 49.30 64.69 91.30 18.72 37.01 8.25 49.63 36.97 10.61 98.89 44.70 84.78 18.63 57.84 26.15 30.81 45.09 15.19 22.11 59.80 62.99 95.99 78.73 74.15 21.43 41.56 3.95 79.03 46.24 19.37 49.67 55.84 45.71 53.19 90.98 15.80 49.26 75.39 54.87 80.00 10.09 11.95 98.90 33.16 66.07 73.15 81.38 80.99 79.31 17.59 83.16 33.13 30.37 58.00 91.90 33.69 89.94 9.55 99.98 31.75 94.77 37.13 91.09 70.24 96.43 -11.43 65.07 67.82 89.96 14.47 42.78 70.93 55.56 73.40 13.99 90.22 64.47 54.39 56.97 60.96 32.65 34.24 58.47 4.57 49.95 69.49 1.73 71.75 38.41 70.08 71.65 52.67 79.77 61.31 86.21 73.66 46.81 53.77 7.41 78.55 68.02 68.36 49.62 30.81 48.78 80.96 29.52 6.58 13.64 35.14 71.86 57.01 7.84 65.86 38.02 24.43 86.24 33.06 27.56 34.59 54.95 63.14 78.16 78.60 24.71 86.93 98.03 95.62 29.56 64.35 83.18 15.99 23.82 34.04 64.71 28.46 92.21 29.36 56.23 0.63 64.18 86.66 91.79 92.17 18.06 25.67 29.35 13.89 73.15 13.59 6.94 82.06 58.27 38.15 18.78 39.00 88.57 99.11 32.76 50.32 79.27 41.37 34.89 0.59 95.37 -80.78 72.48 44.00 82.71 44.91 95.40 39.81 18.84 18.57 41.56 59.35 86.23 5.75 64.18 74.49 34.37 11.53 8.79 66.94 58.74 69.18 9.22 66.12 56.20 34.08 75.49 52.23 12.96 85.34 8.05 4.56 66.71 54.38 39.53 25.44 33.28 8.79 92.25 61.27 12.44 97.63 75.87 80.42 40.17 61.92 45.33 61.63 24.76 14.34 84.39 55.19 47.86 14.16 16.95 38.90 9.03 58.33 15.97 95.72 95.90 45.86 16.97 8.86 97.86 98.27 99.29 15.83 62.92 86.22 48.60 25.62 5.25 97.46 45.45 94.03 15.93 98.66 76.06 62.55 91.88 68.66 13.57 62.46 9.57 90.00 16.19 76.70 45.23 2.95 81.06 12.58 89.12 35.27 11.66 72.11 66.01 38.30 87.65 73.58 93.81 -84.41 55.58 36.83 85.97 48.99 92.94 1.14 32.34 65.04 5.45 55.14 73.59 1.37 31.92 46.93 32.31 18.29 26.30 7.25 87.33 84.63 40.55 59.05 3.09 51.36 27.44 36.43 76.23 94.87 78.88 65.23 66.83 41.65 75.86 95.94 81.63 7.44 36.35 85.43 21.67 46.88 98.34 33.19 11.12 57.28 53.44 16.59 79.76 13.86 91.82 80.97 82.90 26.09 47.22 50.78 59.34 62.48 87.47 17.48 31.59 31.71 10.20 6.87 53.03 63.61 92.86 21.86 86.49 11.76 64.91 66.40 37.33 65.37 70.19 26.01 10.33 7.23 57.87 65.68 26.20 53.34 61.08 27.75 31.26 31.53 91.40 2.95 86.54 14.98 15.20 99.12 87.40 84.75 21.43 80.40 79.54 93.28 25.01 95.34 39.25 -19.76 60.29 84.32 65.52 98.96 37.01 24.52 61.47 32.25 14.36 80.21 91.40 4.45 86.16 48.91 24.61 71.55 10.80 85.73 53.22 27.21 0.83 95.52 92.29 16.16 10.01 28.88 88.01 93.50 8.25 32.10 92.20 53.84 76.72 56.97 35.51 39.17 31.30 7.71 51.42 9.39 97.56 33.23 47.63 76.96 94.11 26.64 38.86 11.96 8.36 69.53 2.10 25.88 34.44 29.42 84.27 93.35 28.54 14.48 25.11 28.50 9.81 67.49 80.48 70.74 56.12 5.22 1.73 30.17 67.68 99.29 2.07 81.30 17.62 39.77 11.79 72.64 32.69 30.84 12.25 0.11 36.35 99.51 45.38 53.53 42.52 15.72 35.47 62.23 18.98 72.62 77.61 85.44 1.96 33.36 94.82 13.96 68.45 2.19 37.45 -14.41 13.91 20.50 26.70 10.32 68.59 73.73 77.60 97.39 42.25 99.01 47.37 3.97 94.47 81.68 10.60 22.16 85.61 20.54 32.69 56.70 18.35 18.44 24.79 93.08 93.54 6.15 34.79 57.16 36.47 12.88 37.61 91.69 22.03 53.65 22.67 62.50 17.12 14.85 38.04 60.63 40.53 74.99 62.25 41.13 47.88 22.04 22.54 42.07 60.98 36.30 9.17 16.55 80.76 20.29 4.68 14.19 84.64 23.32 32.98 59.78 10.32 95.23 39.70 53.88 14.99 80.53 25.34 76.47 92.43 27.97 99.03 46.09 37.04 4.82 36.11 92.36 23.75 57.13 35.29 53.49 77.41 33.24 78.02 14.53 42.49 64.10 93.91 70.05 56.45 69.57 63.95 46.52 63.79 74.91 34.01 38.64 17.86 56.73 9.50 -3.07 67.35 7.52 3.10 39.48 38.87 72.27 30.94 27.97 68.31 87.68 67.74 57.83 27.75 32.50 59.21 23.53 26.64 18.30 12.25 47.31 41.35 84.15 77.90 54.08 33.17 78.28 28.14 36.34 11.71 82.78 50.08 69.47 99.16 24.27 61.27 57.71 55.97 96.67 3.33 43.76 56.59 30.85 50.85 17.05 81.22 44.19 1.56 82.36 43.71 92.34 99.79 35.87 92.52 57.25 41.77 19.41 11.14 50.40 74.09 71.08 28.50 43.13 20.22 92.55 32.85 44.93 15.58 16.58 32.71 92.10 78.16 91.19 19.32 48.73 75.19 72.71 53.74 49.30 66.50 6.47 23.95 13.25 77.76 17.51 90.74 55.77 60.95 13.28 56.52 60.73 93.22 52.75 22.42 7.28 49.25 1.55 71.54 95.56 48.17 -72.27 61.61 47.49 48.49 28.82 68.95 74.30 29.85 86.05 62.66 68.30 51.50 18.21 18.16 20.19 27.57 89.61 70.50 74.14 1.58 68.33 11.29 56.04 6.91 8.79 73.66 86.04 74.28 87.61 27.05 80.37 98.87 86.19 8.79 90.38 96.27 65.99 5.02 69.48 34.17 88.62 13.71 7.14 44.96 45.99 7.35 14.04 2.71 50.37 67.81 64.16 77.08 25.26 29.21 20.57 27.72 27.65 0.24 39.05 61.35 37.28 0.31 24.99 12.48 47.39 61.12 20.20 89.77 94.95 53.25 25.84 74.60 6.32 1.97 9.67 87.00 95.87 55.93 33.58 53.39 74.89 97.33 82.15 31.49 4.73 21.82 31.32 92.46 57.80 91.76 54.56 64.64 96.06 38.17 32.15 56.15 33.24 9.32 37.90 17.35 -39.30 67.59 89.90 48.71 79.93 49.79 17.92 88.29 22.46 89.63 48.89 32.03 75.31 69.74 25.82 39.75 21.70 79.20 14.73 58.85 60.44 9.97 95.37 91.35 92.99 47.69 79.05 41.73 80.21 73.28 67.72 67.91 67.82 13.51 12.38 91.96 75.91 47.02 21.94 63.59 49.78 72.01 15.27 41.47 54.70 47.34 10.91 55.89 87.10 9.34 68.04 13.87 13.20 22.82 53.49 24.34 72.71 1.62 96.77 4.94 7.02 85.42 28.75 85.98 94.02 25.42 75.69 7.04 39.48 8.66 2.80 14.36 78.11 39.24 10.72 22.99 55.56 76.63 72.69 1.66 9.13 14.62 62.53 95.41 31.05 33.07 86.37 57.84 98.21 83.40 3.52 71.93 81.08 16.45 64.07 4.89 86.91 91.01 28.86 29.61 -52.88 26.35 46.56 72.44 12.93 63.58 36.84 12.00 9.35 91.36 67.28 54.67 60.36 64.12 94.45 97.31 2.68 62.87 0.46 91.85 69.74 19.11 56.96 32.69 30.54 47.68 37.51 41.78 32.85 80.01 91.03 59.29 41.75 43.82 50.69 52.72 37.24 51.90 12.68 16.64 72.51 93.76 23.21 30.66 70.04 60.26 96.78 5.44 67.74 52.32 91.46 42.67 47.75 34.66 63.04 1.79 49.11 79.73 12.01 59.22 91.22 60.11 88.68 23.12 65.13 3.33 57.94 46.33 20.64 97.68 63.13 32.34 3.32 41.80 10.81 71.02 21.18 96.79 22.76 29.81 52.04 80.39 46.89 49.10 24.28 82.79 80.14 54.20 2.98 81.59 13.44 36.46 80.24 5.06 72.26 64.42 99.33 51.22 33.47 44.38 -74.79 74.81 66.54 91.75 71.62 7.99 71.35 19.05 39.28 55.25 38.47 34.72 19.74 44.72 77.55 78.47 1.81 13.22 0.37 8.84 84.31 47.80 81.58 11.67 80.96 94.79 23.38 29.34 48.70 14.44 2.89 66.52 23.50 10.99 77.13 91.04 96.89 58.96 64.14 85.17 1.24 9.59 38.78 24.40 69.71 8.36 4.65 65.18 58.38 13.44 39.01 75.35 69.26 97.65 12.72 78.16 75.39 18.88 39.86 56.23 36.08 78.89 58.73 9.68 66.32 90.83 91.38 41.34 34.07 19.37 69.68 34.97 45.83 39.69 24.35 88.73 58.91 1.01 97.80 76.21 17.99 38.45 17.98 1.95 70.78 48.43 13.65 13.24 22.51 35.58 29.39 47.75 53.22 28.64 44.74 98.65 65.12 70.40 49.85 15.04 -50.44 84.92 86.94 88.48 53.71 18.66 12.41 24.38 84.72 83.89 44.55 47.05 40.08 77.97 37.25 69.32 36.57 90.62 45.86 18.09 25.13 77.93 52.09 16.03 83.59 61.32 91.95 67.34 67.61 42.04 93.19 7.77 92.10 31.72 72.49 64.33 33.43 68.69 11.75 15.10 60.57 84.43 16.08 71.63 18.91 5.18 36.99 55.66 88.01 40.79 10.42 56.66 33.75 17.04 4.71 47.69 89.01 37.31 63.11 87.37 96.57 29.64 90.87 90.77 87.67 33.56 23.52 62.42 57.16 8.41 17.35 80.68 78.81 69.48 36.98 59.52 27.15 87.01 61.71 98.59 53.51 76.50 24.34 14.38 52.15 69.76 82.67 33.05 94.35 95.97 5.36 95.10 57.14 65.89 75.31 99.16 83.83 32.12 9.15 2.06 -26.76 51.83 28.49 37.08 19.45 18.38 53.17 56.14 81.74 51.86 48.45 12.57 0.56 61.22 97.97 57.00 20.32 16.72 25.35 71.55 78.06 82.98 2.69 65.32 38.07 39.70 43.67 28.96 36.37 24.73 45.81 68.07 88.78 32.22 63.80 43.58 15.62 50.67 20.29 94.71 13.91 78.02 4.16 46.38 11.08 58.62 9.88 29.75 88.90 98.93 88.49 66.60 59.04 93.06 61.45 67.57 85.93 71.53 15.07 82.76 92.87 80.07 92.70 5.66 52.56 41.33 82.59 48.35 13.52 41.18 41.83 71.98 84.35 33.60 16.55 84.86 37.41 77.63 14.15 50.49 97.73 28.63 55.32 95.94 3.14 5.34 42.10 42.70 18.90 4.63 96.74 65.10 82.99 38.63 21.35 51.67 93.06 82.46 26.02 28.10 -84.62 67.25 59.59 80.66 16.11 25.48 33.72 30.07 13.74 52.34 17.20 91.80 79.10 58.77 98.00 7.64 44.62 91.19 79.72 73.42 96.83 14.15 77.15 99.06 70.68 27.88 50.52 37.07 22.26 63.70 40.35 9.29 20.18 96.21 17.45 4.72 13.80 7.61 52.93 84.01 80.96 34.98 66.46 41.27 29.65 93.69 64.53 49.73 62.97 22.43 2.46 29.23 61.37 6.42 75.65 47.93 57.59 80.67 59.31 98.19 90.41 81.10 18.99 21.16 98.40 19.21 39.69 41.99 23.05 11.60 19.47 92.62 64.50 66.56 59.52 11.92 87.74 85.83 43.06 52.55 57.51 7.24 89.71 83.30 40.57 77.36 14.84 38.68 97.86 79.74 55.39 94.13 9.85 2.59 42.87 34.64 95.47 49.32 15.27 95.66 -79.48 1.70 49.99 94.14 69.09 88.57 13.81 10.03 98.23 17.44 55.18 70.29 78.85 91.24 8.91 90.46 39.34 37.34 99.77 22.70 34.43 28.00 67.58 91.59 69.90 33.24 78.87 53.30 1.24 60.91 13.69 51.70 47.89 67.06 31.94 62.39 27.47 61.35 56.86 44.21 9.09 71.09 33.17 37.15 2.76 80.81 37.83 1.28 74.34 3.66 51.87 56.07 45.83 74.94 73.96 30.19 89.80 18.95 13.67 96.79 97.01 87.19 12.78 72.55 26.24 33.76 8.79 77.91 20.82 13.61 79.61 63.98 68.13 11.17 67.68 35.92 77.06 2.36 59.29 45.10 61.22 67.14 3.95 93.41 31.23 47.90 70.89 78.61 59.74 5.40 26.68 85.86 35.60 89.48 19.29 93.83 95.19 33.21 67.07 55.73 -91.77 92.24 79.35 88.85 49.74 18.73 1.37 7.82 60.70 10.71 91.32 67.82 92.41 7.37 48.78 75.66 91.27 74.82 67.43 56.34 0.46 69.97 69.06 72.51 17.24 22.50 92.68 88.30 40.28 87.77 93.21 83.76 11.75 51.77 34.50 67.31 4.24 61.96 97.60 35.10 75.15 71.12 57.52 25.70 67.00 0.11 28.31 28.31 17.46 14.05 42.68 51.02 81.97 16.74 29.98 16.02 91.48 75.17 8.12 17.21 36.27 80.31 73.69 0.94 5.74 41.12 22.22 46.17 98.60 5.99 75.19 75.39 6.61 3.35 97.63 31.56 13.06 30.57 92.47 66.17 28.10 22.31 20.56 81.80 51.93 17.62 32.26 50.99 50.93 12.78 91.21 92.67 40.57 20.23 23.75 38.31 57.70 13.96 22.52 63.38 -35.64 44.16 51.93 18.92 14.28 95.75 89.45 40.95 55.50 29.34 1.85 87.87 16.05 53.22 7.58 35.99 68.93 52.90 52.37 47.37 8.84 36.37 40.24 30.30 76.27 35.88 14.48 62.64 4.37 4.12 81.31 3.65 3.51 81.81 97.31 96.27 48.23 18.79 25.89 80.49 48.15 63.05 80.25 73.16 86.55 3.43 84.08 23.02 16.87 30.02 18.35 86.74 55.41 16.42 39.01 18.07 36.36 15.40 94.83 30.53 1.21 5.39 91.97 27.86 39.06 63.16 15.23 36.35 7.74 32.34 11.69 78.06 94.35 84.56 37.51 31.74 44.86 90.23 39.74 27.28 19.09 4.90 0.68 94.65 76.86 11.51 17.02 84.39 23.25 9.55 56.48 76.97 74.95 59.73 3.62 10.76 70.97 74.85 34.39 83.35 -24.15 18.28 87.20 32.71 33.04 85.70 13.22 96.63 29.78 13.57 96.38 61.65 20.35 89.83 90.13 94.02 58.91 41.07 23.87 40.95 58.71 56.52 29.43 77.12 31.05 40.96 57.30 21.26 38.39 91.85 64.90 96.31 77.03 77.28 48.31 37.09 49.67 31.13 6.87 55.18 67.38 27.90 73.16 54.80 60.86 64.80 32.05 36.98 66.05 86.18 82.71 70.78 0.42 50.45 7.43 14.20 27.33 58.38 11.49 7.73 66.23 75.30 9.49 99.94 7.49 17.20 27.09 37.26 47.87 46.12 45.92 20.96 95.24 66.60 13.79 62.06 62.48 83.35 2.84 17.81 99.26 76.63 45.50 75.19 55.98 60.32 20.78 15.21 86.76 22.51 81.89 13.38 8.58 88.02 45.34 60.74 87.36 49.82 6.09 14.55 -40.10 62.85 50.44 64.20 27.33 52.61 50.55 3.24 79.65 70.86 43.40 71.78 85.95 7.52 8.04 70.91 66.24 76.15 89.44 48.75 14.43 17.35 20.64 27.19 50.42 23.15 34.83 81.17 76.56 14.19 89.72 60.79 55.93 69.19 23.54 73.46 7.00 82.82 92.11 29.64 33.49 34.10 67.18 62.32 1.33 96.11 21.46 27.76 83.62 84.06 54.06 53.52 5.39 73.57 27.80 1.49 27.88 97.32 8.78 51.31 18.80 67.33 26.13 97.62 70.39 4.09 34.78 1.20 4.66 89.14 32.51 75.34 47.99 7.12 64.70 32.77 31.81 27.22 78.50 79.48 68.68 14.08 41.57 17.78 95.33 67.35 59.72 7.30 52.26 32.39 71.65 71.34 12.02 17.76 91.15 43.66 83.47 65.97 46.51 15.15 -29.48 19.07 70.92 8.11 33.13 29.65 78.55 61.20 33.25 95.22 23.02 24.66 82.58 48.80 8.16 26.54 78.42 64.47 19.80 29.27 10.65 9.35 12.37 34.45 51.30 56.67 22.47 40.87 78.86 39.80 43.13 33.76 53.82 6.70 96.73 36.36 55.87 66.55 55.80 33.95 83.55 21.37 35.55 88.12 37.23 70.47 64.24 69.91 28.38 65.55 83.06 21.48 50.82 91.47 65.45 78.06 84.74 30.76 55.21 2.18 93.56 21.04 82.48 54.11 71.08 31.08 69.94 91.78 84.16 70.68 79.68 98.43 28.73 61.91 84.92 54.81 84.58 7.41 21.53 32.60 41.36 1.54 61.87 83.94 36.08 46.16 18.63 98.48 15.83 19.26 89.01 38.94 54.36 84.71 68.29 18.16 0.72 43.00 16.40 50.45 -81.81 32.36 98.34 65.75 21.13 36.24 52.79 96.22 44.73 11.95 96.30 72.53 75.03 21.22 47.39 21.00 71.58 14.35 15.19 37.14 58.42 42.04 64.46 62.78 58.54 78.88 58.92 31.03 35.41 89.51 23.63 31.41 25.89 1.63 84.75 11.59 45.35 85.93 14.09 99.21 74.04 6.94 1.90 79.18 99.47 39.02 20.27 74.81 91.57 5.93 2.00 80.92 94.27 79.77 1.73 36.56 81.09 68.42 29.68 34.39 69.34 89.39 76.88 82.24 87.07 45.85 2.23 12.84 56.23 72.81 64.39 25.96 58.45 19.53 42.04 14.47 86.85 60.09 41.68 21.35 99.63 15.13 3.92 46.54 85.12 33.21 6.80 97.93 75.13 55.26 21.98 22.24 99.34 44.95 31.32 44.87 44.41 54.13 95.09 4.93 -90.83 68.19 91.53 58.13 76.46 99.11 61.29 39.86 8.29 75.20 86.04 16.25 59.79 77.14 81.83 13.59 41.80 66.28 55.86 57.10 9.55 29.89 72.77 57.85 71.88 63.50 26.75 41.72 38.05 51.24 26.72 79.01 71.80 28.93 74.54 55.41 34.34 0.73 52.68 39.74 84.76 52.33 74.42 20.30 73.54 90.89 18.38 22.55 6.99 69.14 55.10 84.35 7.29 24.50 38.42 98.01 24.54 64.20 77.00 14.59 13.78 88.03 74.79 74.12 40.27 57.53 84.04 89.34 66.77 72.48 99.92 11.82 6.57 71.21 34.02 87.42 14.69 59.80 89.62 7.49 93.72 22.65 63.19 4.23 38.06 66.16 25.14 24.81 18.68 60.62 42.32 24.30 30.79 6.15 25.90 7.89 9.85 57.51 50.88 57.48 -71.16 28.36 3.11 12.84 44.10 99.02 65.51 13.34 67.94 55.11 97.30 35.22 93.38 63.39 21.22 50.75 78.24 25.64 65.86 18.88 47.18 19.43 42.98 8.92 98.01 90.91 64.98 47.91 0.56 6.88 47.38 90.68 61.10 52.46 2.74 42.02 18.50 75.98 43.57 65.01 42.11 38.15 73.29 43.01 46.90 90.99 83.76 70.08 99.44 34.53 34.60 7.41 84.86 44.12 43.62 32.55 94.79 88.01 68.03 23.54 35.47 88.45 77.34 99.10 74.72 73.65 62.54 20.20 61.81 64.35 47.82 55.75 86.77 25.96 8.39 72.29 65.91 92.27 92.66 64.69 35.13 10.63 3.15 40.44 26.20 73.69 99.91 30.81 76.32 83.42 20.57 75.12 46.33 82.90 89.24 79.17 94.03 94.06 49.66 87.70 -75.53 6.71 7.29 80.97 31.66 68.85 89.88 35.76 59.73 6.13 67.23 69.85 67.12 77.90 93.15 33.37 33.61 97.08 17.28 27.17 95.90 16.00 19.03 52.12 81.68 78.56 49.24 85.47 15.58 1.76 0.26 65.33 16.18 23.04 69.07 42.95 82.65 36.99 69.66 16.65 3.79 21.44 55.10 53.11 71.57 40.43 20.08 59.47 10.98 35.71 33.64 61.85 65.44 91.20 43.97 38.89 24.22 32.11 90.72 19.02 43.61 47.30 45.27 9.87 48.90 19.58 3.34 82.77 52.26 29.16 34.57 24.98 28.19 47.52 32.11 46.91 61.60 99.42 34.49 9.46 78.20 27.47 53.07 37.08 90.64 71.18 15.24 70.43 50.94 82.74 93.02 59.56 9.88 10.36 76.63 12.80 29.78 80.79 9.03 83.77 -83.26 21.87 94.10 96.83 54.63 53.63 0.88 94.81 85.69 90.97 82.56 35.32 6.61 27.38 23.57 89.23 23.17 48.74 44.26 82.67 54.51 34.61 70.80 21.02 90.96 31.24 80.58 37.49 26.67 71.09 78.43 97.95 73.36 41.38 66.26 25.39 67.82 52.01 64.62 68.20 27.17 62.56 15.43 7.48 44.28 25.04 11.20 44.31 6.05 95.40 10.51 30.78 81.28 76.52 85.79 7.88 2.79 73.52 28.31 54.26 30.65 31.58 47.66 34.10 71.59 85.47 91.53 87.54 33.62 59.13 88.97 16.97 79.55 99.36 5.74 16.40 85.05 21.15 83.19 18.12 20.12 73.54 13.66 59.68 4.55 99.92 81.90 13.93 60.24 97.91 9.04 99.19 72.93 93.28 2.48 83.53 17.10 48.38 73.42 79.44 -18.52 96.22 82.13 19.33 49.07 78.52 33.26 74.88 60.27 2.49 12.62 44.48 74.92 40.10 15.96 53.00 84.26 58.34 43.54 17.53 35.33 77.99 4.87 56.88 57.51 26.44 16.60 97.28 45.86 72.11 12.78 32.92 55.48 77.40 84.34 41.36 12.74 29.64 70.48 71.80 3.78 0.73 12.67 83.81 24.43 93.77 20.12 54.82 48.03 93.58 75.17 27.29 57.40 10.57 39.68 69.20 51.33 95.35 52.73 7.35 55.19 59.28 64.89 97.90 27.57 80.67 14.61 76.00 72.71 98.97 3.70 96.93 89.27 83.67 5.77 78.26 76.58 55.23 37.30 68.00 93.01 49.70 53.04 85.03 7.10 46.13 34.35 34.46 50.79 87.28 28.89 10.97 96.02 20.44 52.87 32.86 7.80 84.25 59.57 76.70 -75.87 0.05 49.44 48.00 1.76 98.99 16.93 12.72 48.72 10.83 78.93 3.75 7.87 80.39 12.42 59.46 65.10 41.44 79.99 55.96 65.86 13.60 71.79 8.02 19.79 67.66 59.10 57.60 46.86 48.03 77.62 79.70 81.02 7.75 75.49 63.19 95.27 83.21 74.11 79.64 54.09 95.75 97.20 91.92 23.32 98.70 12.41 38.70 13.94 7.63 80.23 98.78 60.81 92.77 52.41 98.04 46.81 62.02 52.01 52.65 5.16 83.06 41.53 97.19 91.53 58.84 44.98 44.04 27.42 74.75 72.47 28.00 6.58 9.53 75.58 28.05 31.28 97.87 52.82 51.64 73.61 67.15 43.05 59.93 2.24 57.49 46.61 92.66 33.61 26.99 46.89 79.53 91.26 92.48 12.64 18.98 83.13 12.38 88.05 31.93 -80.56 13.84 84.82 13.08 74.09 31.39 78.17 83.55 99.73 61.15 73.08 40.03 14.20 21.02 49.57 62.33 67.13 77.90 75.26 16.56 98.74 2.80 56.86 8.94 67.30 26.75 5.66 45.15 80.55 80.93 57.25 54.40 24.18 19.15 80.18 54.65 29.43 12.34 69.05 64.41 21.99 73.38 58.60 38.16 80.13 11.83 43.56 7.12 74.23 93.75 35.78 6.30 66.94 65.02 98.69 37.17 7.34 44.84 5.36 18.47 91.79 45.37 29.58 3.68 3.45 42.55 20.51 66.89 67.77 45.99 84.07 73.55 69.87 90.70 15.35 46.35 70.19 92.71 37.05 20.56 38.58 55.37 62.64 83.43 20.53 51.72 96.15 2.16 55.20 2.25 77.94 52.88 96.96 5.78 31.08 8.69 88.16 21.95 71.29 37.97 -31.98 12.91 44.78 88.37 3.41 44.70 95.82 61.13 96.67 50.89 33.71 93.71 64.92 50.08 43.03 91.89 73.26 83.65 38.19 99.05 98.84 36.25 23.73 35.28 71.85 1.53 18.06 15.14 71.62 12.87 88.79 93.74 72.96 40.79 98.78 11.74 20.21 98.06 0.90 5.94 34.57 97.99 11.34 67.44 4.66 94.15 86.58 18.37 33.70 29.11 30.04 61.71 63.30 36.82 91.43 94.46 5.50 96.66 84.05 73.28 12.58 52.78 76.36 99.91 97.81 27.62 1.29 77.08 62.28 89.65 94.34 15.98 36.63 40.93 88.42 90.16 7.96 30.76 51.86 4.52 56.16 91.52 14.44 25.56 51.42 99.51 74.76 56.40 30.53 7.41 64.37 64.56 22.91 90.79 82.41 1.50 30.41 2.28 36.49 42.18 -50.44 63.72 47.94 16.62 31.21 21.28 29.42 41.08 65.58 53.72 22.19 5.87 39.92 49.69 18.09 88.43 73.50 24.30 32.33 88.55 15.34 50.74 11.90 87.59 52.18 66.39 46.43 11.96 41.38 70.71 87.27 11.29 57.94 19.71 7.02 90.25 58.45 2.86 91.08 11.58 26.67 77.59 5.43 45.11 30.33 99.96 50.72 64.21 25.01 28.75 94.88 31.32 30.39 69.26 29.43 13.85 48.38 40.77 9.60 5.19 40.20 36.90 90.34 96.95 50.18 96.78 25.29 31.14 58.44 58.44 88.36 47.86 1.07 78.29 10.65 70.71 25.67 72.52 51.06 84.94 99.34 37.29 21.41 83.68 72.14 30.38 32.06 81.92 1.46 24.17 24.48 62.15 1.25 54.47 51.50 26.59 4.18 27.17 73.37 9.32 -95.55 37.38 28.79 42.97 74.10 59.10 17.91 57.46 48.71 53.42 5.06 6.23 76.18 25.77 8.01 91.53 44.65 52.01 68.38 71.97 87.97 12.15 45.14 69.76 40.21 91.98 71.92 38.58 38.49 63.09 87.51 5.80 98.91 45.68 26.17 92.39 49.02 68.12 22.21 2.06 95.21 1.58 27.45 5.69 52.99 56.30 1.08 60.20 9.44 81.09 66.64 28.14 34.48 71.96 22.77 85.43 70.80 96.88 64.67 39.22 15.89 11.24 2.27 89.93 90.80 13.60 90.90 9.50 81.94 89.24 50.17 51.20 77.39 71.57 18.18 63.69 74.37 75.73 88.43 20.71 30.40 57.92 56.52 52.84 35.11 37.43 28.47 39.76 10.37 36.86 8.75 4.93 17.35 89.83 95.67 51.09 64.92 3.29 76.05 63.77 -57.83 85.52 23.35 29.59 71.18 24.86 58.32 98.27 99.06 64.24 80.32 25.22 98.75 66.71 23.33 20.86 75.99 93.65 91.75 14.28 6.61 76.96 68.42 30.98 31.24 46.18 56.34 73.10 33.25 53.41 4.92 98.45 34.53 33.92 67.71 87.54 83.07 43.75 98.50 52.12 17.60 59.08 19.34 65.68 9.18 94.10 46.40 23.48 6.09 6.43 83.02 81.66 51.31 14.81 93.82 29.03 84.65 63.99 75.27 3.15 75.72 45.67 5.09 83.48 3.33 19.54 40.61 7.06 20.89 40.20 79.66 93.55 69.40 93.61 32.37 18.36 84.10 72.83 69.77 90.52 0.24 31.56 64.38 19.83 89.73 72.71 0.69 96.69 89.90 5.91 51.97 38.79 55.27 96.97 78.76 48.90 40.84 84.38 26.41 32.99 -9.36 62.64 48.90 30.56 95.41 63.76 75.86 52.19 23.41 28.90 60.02 47.87 51.46 72.27 19.37 24.73 86.14 74.37 34.60 12.32 52.43 8.05 7.43 52.11 61.38 21.53 30.07 41.23 19.62 67.31 75.15 31.59 11.31 66.40 32.66 22.29 1.77 95.27 23.87 25.46 71.79 93.69 44.89 93.52 81.82 17.95 47.40 48.68 78.14 97.24 14.09 83.80 33.92 95.87 86.50 23.67 24.40 52.15 6.34 24.97 76.42 27.70 82.45 61.96 45.61 96.37 3.19 75.73 84.77 20.17 96.21 85.36 42.97 94.94 65.98 37.54 45.94 22.40 11.26 76.34 19.00 72.97 98.62 29.47 29.75 87.07 30.37 58.76 48.89 41.17 91.54 40.81 22.93 25.48 98.86 82.10 92.45 53.89 29.56 65.63 -54.03 14.82 27.93 36.22 45.52 2.63 82.53 43.30 34.57 37.57 44.67 24.37 75.72 69.17 62.29 53.60 4.42 69.12 29.19 13.86 82.79 40.09 70.90 90.12 32.14 16.84 46.01 25.24 27.67 30.59 99.85 6.70 13.03 2.43 73.48 77.38 46.59 3.87 89.09 64.45 13.33 23.66 25.03 2.47 23.24 3.54 40.04 80.00 65.94 37.59 18.21 86.16 66.62 32.71 60.71 92.74 12.17 1.77 66.13 4.30 86.43 54.85 47.65 53.06 20.44 68.28 71.82 99.05 0.92 16.47 87.98 80.87 68.89 41.30 76.03 38.81 4.78 97.66 60.29 32.95 37.54 9.90 79.93 89.24 39.46 55.64 84.76 68.48 26.78 59.76 4.39 47.84 66.02 31.78 48.95 50.11 39.59 35.79 44.42 28.61 -24.55 24.87 64.89 27.19 67.44 34.51 77.63 51.29 83.71 14.70 54.73 27.32 10.99 0.11 53.95 38.56 25.81 11.32 19.55 93.65 32.32 96.78 43.93 55.39 4.59 72.70 29.10 12.83 31.51 78.51 78.69 64.19 3.18 25.68 66.72 47.02 96.16 29.18 9.86 81.20 81.34 7.42 5.81 17.23 43.98 85.32 73.35 49.26 45.58 84.63 41.51 18.81 3.85 33.81 62.70 37.52 27.55 77.53 95.99 30.77 69.82 40.78 18.60 34.61 16.04 43.59 2.30 55.12 36.15 16.84 51.32 62.27 44.84 0.15 95.08 27.02 47.57 89.17 0.27 88.99 41.71 77.25 86.58 24.96 81.47 41.37 79.88 35.75 65.30 86.49 64.86 57.72 4.52 55.59 28.65 81.47 70.79 40.33 3.08 75.91 -6.70 5.25 58.93 51.21 21.28 28.72 84.46 48.81 32.09 91.19 49.12 8.35 99.96 51.33 84.40 48.62 61.36 36.08 41.06 2.50 71.17 82.03 95.93 82.17 89.05 48.87 62.30 57.97 44.06 88.49 44.96 30.64 37.42 96.87 12.14 75.43 10.57 9.79 21.97 28.56 12.85 61.85 25.13 11.95 85.56 19.94 24.56 27.52 42.38 28.57 75.29 18.08 81.92 52.89 73.84 91.92 54.54 25.94 99.90 26.51 46.92 71.61 55.09 6.27 27.29 57.24 47.08 35.99 61.67 34.12 5.25 55.66 38.20 68.67 70.65 90.11 46.25 99.21 61.73 51.38 61.70 85.94 43.93 93.49 25.85 90.20 86.75 13.77 60.35 35.97 16.95 25.19 56.88 38.43 75.32 15.27 47.85 99.17 44.99 78.43 -27.14 25.21 97.32 30.23 56.44 50.63 51.32 52.55 88.23 28.23 25.08 75.15 8.29 17.88 81.68 9.58 14.96 71.55 45.29 90.99 97.43 56.17 27.12 40.01 75.85 78.38 34.40 72.17 52.00 87.01 97.34 21.91 47.85 83.49 68.31 26.33 44.26 8.46 4.15 64.31 32.42 11.73 13.78 54.38 81.50 78.01 52.43 0.54 60.75 67.04 36.91 3.88 60.27 79.99 10.35 43.79 71.77 4.20 3.95 35.30 60.24 85.33 6.95 84.32 76.34 84.00 57.97 90.88 16.40 62.84 84.45 5.98 92.39 55.16 92.48 4.16 90.65 90.01 3.04 64.06 72.40 73.21 20.75 45.19 8.86 69.04 43.39 99.65 85.88 57.25 36.03 71.77 18.37 55.65 69.53 42.35 82.52 81.07 60.93 79.71 -16.06 75.67 21.98 27.59 86.22 30.15 31.53 3.42 54.39 54.76 39.76 1.63 0.08 85.77 77.20 46.03 36.86 43.27 88.40 12.63 15.90 39.90 34.51 64.67 71.29 26.66 69.87 24.43 70.85 37.74 48.92 39.47 26.96 44.65 42.36 7.76 43.81 21.53 26.83 60.32 6.73 14.12 90.37 81.31 18.40 1.99 50.12 23.01 65.61 43.32 42.86 20.49 96.75 89.42 63.56 10.82 68.86 80.74 84.00 82.47 65.90 31.32 66.47 53.80 84.76 91.72 57.40 67.57 78.72 23.66 30.83 74.19 2.26 65.81 32.50 21.41 8.99 69.98 25.08 62.92 45.35 57.07 18.98 56.42 21.71 18.48 18.09 86.48 94.58 37.16 52.01 1.61 5.77 6.87 23.61 83.61 66.65 28.84 78.91 82.43 -55.16 50.90 47.53 80.17 72.68 24.12 95.01 78.47 59.18 66.77 93.14 22.04 17.08 96.50 66.68 52.79 34.92 44.81 89.70 63.55 67.81 61.13 77.83 17.40 57.83 0.19 48.93 79.09 87.17 2.33 51.70 63.49 50.09 91.41 84.89 0.54 29.57 43.75 19.19 76.81 92.09 73.15 96.75 3.36 22.88 70.72 94.37 96.51 24.64 95.77 23.88 32.55 47.58 25.95 34.40 14.72 40.33 83.98 18.42 67.77 68.01 68.12 50.31 85.95 79.35 95.54 2.04 86.12 74.10 15.62 6.82 27.10 41.33 86.41 1.71 66.67 35.56 3.40 57.34 81.74 2.57 36.53 81.37 67.24 33.26 31.90 7.58 65.79 80.61 42.76 48.98 84.10 83.29 21.82 30.83 50.92 36.71 3.01 89.66 39.02 -40.36 38.15 29.07 32.81 91.07 0.73 58.33 24.99 79.93 86.49 61.40 71.06 27.54 63.52 85.61 81.32 8.00 20.83 95.93 45.87 33.07 75.61 21.64 88.33 64.62 17.77 75.53 72.09 99.90 6.40 21.46 4.33 60.38 86.96 47.11 89.67 22.05 87.23 5.20 45.98 59.93 48.31 79.34 58.99 4.53 11.15 27.60 22.70 58.19 56.97 1.40 79.75 1.88 67.33 68.46 29.32 98.30 0.47 47.10 58.89 34.57 47.82 52.84 65.12 64.02 81.30 63.40 71.96 6.75 4.82 57.14 54.60 23.32 85.41 54.65 87.81 73.01 25.41 54.88 43.74 43.20 23.91 36.55 26.03 72.90 11.39 31.16 88.85 83.42 94.05 56.07 76.18 10.15 73.13 19.75 27.05 63.76 32.21 3.54 57.39 -58.96 25.51 0.25 51.07 48.67 55.18 70.07 42.03 64.04 79.93 65.79 65.60 12.92 71.02 15.20 72.19 27.80 52.04 37.80 65.31 65.42 24.00 79.77 26.45 2.08 31.41 42.56 43.71 50.11 49.27 66.55 95.27 47.73 39.53 72.14 67.18 0.04 75.81 52.20 27.98 33.55 92.36 38.65 99.10 71.30 11.40 40.80 9.52 53.16 6.78 41.34 83.30 65.42 76.69 2.04 23.16 61.69 72.98 54.70 17.61 77.34 70.60 79.98 93.55 76.23 43.47 88.24 26.16 37.16 22.79 24.53 43.90 50.15 96.15 16.38 72.65 74.25 92.76 71.60 27.05 47.94 33.12 72.41 20.12 13.77 21.02 92.75 4.37 62.76 86.23 24.72 73.45 23.23 22.41 48.92 91.96 15.79 79.67 43.44 6.91 -20.69 67.03 3.94 25.12 96.20 12.91 85.08 65.07 14.65 79.24 79.90 51.20 52.59 46.02 57.22 16.79 77.05 6.81 87.23 53.31 41.34 86.60 29.02 37.40 83.19 98.58 75.51 2.90 68.10 6.48 19.25 34.59 33.61 34.13 35.34 5.56 90.09 20.46 73.50 47.60 26.31 4.43 78.15 88.93 40.68 76.33 74.34 5.23 18.72 65.59 71.52 39.98 66.90 41.73 26.90 17.15 83.51 18.26 82.58 93.91 1.28 39.43 83.89 10.57 57.28 92.70 70.10 70.46 61.21 22.22 49.50 72.22 37.28 42.61 23.02 46.81 84.11 85.78 20.36 52.38 6.19 25.16 92.89 92.18 41.49 4.63 25.97 96.55 55.00 97.32 60.91 96.20 61.99 10.37 61.31 68.71 36.39 83.72 48.67 72.95 -12.55 94.68 24.74 56.97 68.19 21.52 86.53 9.25 10.47 71.54 47.47 93.26 65.26 59.05 29.26 33.95 87.46 0.33 70.29 48.19 40.43 49.77 94.31 85.94 68.21 76.55 13.35 99.04 99.22 90.24 12.97 91.66 18.70 34.70 1.47 19.52 89.12 92.97 68.47 88.83 68.35 25.14 13.94 96.56 33.97 30.94 15.65 73.26 78.86 74.69 17.07 65.64 6.30 15.64 76.13 56.16 1.66 95.29 62.76 65.14 62.98 60.22 52.23 30.22 69.92 73.24 66.72 1.14 57.13 89.45 35.96 23.33 91.48 88.30 46.24 93.64 12.37 54.18 71.37 26.63 56.62 35.60 3.72 70.49 70.76 51.59 81.91 10.21 10.50 37.75 53.10 1.90 11.60 16.63 93.33 99.21 95.23 45.33 46.42 26.98 -88.07 72.41 29.26 17.55 92.01 37.64 8.14 58.32 50.71 74.34 30.23 46.06 14.42 86.85 58.60 43.78 39.18 60.09 45.76 35.47 30.88 72.34 67.45 61.56 53.79 11.59 89.05 98.45 82.63 89.41 13.44 69.25 50.83 66.78 97.03 32.58 29.77 77.54 2.98 43.10 7.84 67.62 94.52 38.52 28.61 5.01 75.81 36.83 47.82 49.32 64.98 20.82 53.13 8.63 83.14 88.63 28.66 94.73 21.73 51.27 29.55 15.82 35.30 96.71 41.53 26.47 52.42 76.77 64.27 36.40 68.43 96.85 30.54 86.97 30.60 27.75 65.07 9.99 85.16 78.83 45.23 7.08 77.47 23.56 74.21 24.27 84.77 97.66 56.13 51.09 42.04 2.50 15.79 85.91 76.76 50.30 45.23 18.92 93.01 18.79 -18.67 79.45 9.76 85.09 99.64 14.99 68.47 30.76 79.90 23.91 55.61 21.08 34.70 11.93 95.86 26.70 71.51 39.08 79.62 17.40 80.68 33.31 33.77 75.37 45.85 55.88 83.92 31.30 24.45 69.56 71.34 94.54 59.96 14.51 42.04 22.69 52.91 48.27 18.70 4.37 81.35 17.75 4.98 43.64 74.03 30.96 44.05 30.68 22.52 63.50 99.81 69.48 32.75 2.22 98.12 38.81 49.03 72.12 5.62 15.83 71.85 75.97 54.36 71.98 19.99 77.70 62.24 32.20 43.91 19.17 71.83 75.55 94.42 63.83 44.51 4.18 71.45 45.57 15.26 74.58 10.32 20.78 6.30 98.82 85.92 17.91 3.44 59.28 8.69 11.19 16.77 3.80 13.89 15.75 73.76 64.75 36.18 77.38 3.17 56.15 -41.93 59.86 77.98 25.05 27.56 78.83 17.35 58.24 91.08 34.96 46.35 29.98 35.13 14.05 79.79 36.30 24.72 70.69 95.39 78.10 44.16 18.96 38.03 28.48 0.38 46.61 96.98 35.62 37.99 30.62 24.40 29.85 37.93 1.79 38.86 40.79 23.30 20.25 26.13 56.09 22.62 66.80 0.40 41.94 12.20 36.50 90.51 82.72 52.04 92.06 47.62 71.62 81.05 20.62 24.58 35.54 37.65 19.96 9.69 18.83 59.18 77.72 15.93 72.95 60.44 75.60 83.84 27.85 83.22 71.72 63.45 99.01 3.30 42.04 79.99 17.04 77.43 62.86 95.66 84.14 64.53 55.79 71.46 76.29 57.86 86.10 75.35 65.39 21.00 45.89 43.81 95.77 53.44 77.66 88.00 47.12 12.97 28.25 11.38 68.11 -2.14 85.38 19.95 86.89 4.80 6.34 60.14 84.32 67.34 10.46 37.24 98.29 45.95 80.03 55.07 43.73 59.37 97.76 51.08 2.70 11.44 19.34 74.54 20.63 20.31 98.23 2.13 86.72 20.20 19.71 95.97 8.62 11.78 45.42 49.11 19.88 59.38 89.39 48.56 40.60 66.31 32.69 80.71 28.89 89.26 29.13 19.42 97.04 16.74 98.32 15.66 28.72 76.42 31.00 0.88 23.45 20.37 59.41 81.22 21.60 48.04 81.93 26.28 68.78 3.06 16.61 4.33 80.93 39.56 36.51 57.09 51.98 5.97 33.69 58.48 62.49 23.31 34.53 52.16 0.18 61.04 17.31 26.38 81.82 67.66 68.41 31.86 59.58 90.16 38.87 33.20 12.38 22.92 59.07 53.35 6.94 10.54 54.60 19.97 11.85 -89.88 42.66 18.69 46.14 22.60 1.31 58.85 92.07 54.63 39.30 80.61 13.57 13.93 40.52 6.99 31.49 90.72 69.64 67.74 98.99 17.43 65.42 16.59 86.90 13.25 78.96 91.06 12.21 6.97 94.49 75.39 60.70 46.33 41.42 99.24 4.36 15.05 14.61 27.77 83.89 93.36 4.91 4.20 82.96 43.94 23.94 47.00 25.83 32.59 83.97 71.58 56.09 1.84 71.15 55.50 44.44 61.29 10.05 62.92 52.10 46.30 9.00 49.99 2.19 41.72 95.73 17.54 58.22 92.19 79.93 85.48 86.05 44.50 11.72 74.88 84.61 9.18 27.43 87.48 72.37 79.85 9.18 48.95 85.20 45.97 92.04 15.98 29.78 36.99 49.30 59.45 9.05 53.14 13.75 48.25 93.95 63.89 7.22 72.03 92.41 -4.61 53.50 16.02 40.62 71.34 0.47 22.14 96.74 75.17 95.87 50.90 54.92 65.49 95.56 82.40 2.26 12.45 37.39 94.96 42.23 59.81 27.83 37.85 89.66 37.25 2.21 8.42 46.90 20.10 6.82 12.33 7.70 64.96 89.29 57.78 62.99 3.07 36.41 22.90 47.24 44.05 82.16 88.81 96.84 52.12 1.27 33.95 39.22 88.09 16.17 18.66 39.64 94.82 17.38 1.32 41.79 69.22 36.35 57.97 86.56 26.85 91.72 54.13 26.51 42.01 56.12 87.37 23.79 72.81 96.43 77.28 1.30 96.87 92.07 76.42 47.00 90.27 89.80 64.01 47.11 68.17 80.68 39.55 2.14 11.56 41.32 3.41 0.47 39.80 27.77 26.02 98.25 14.21 39.36 69.66 61.43 66.56 90.87 99.75 6.01 -18.31 37.90 64.07 69.82 73.69 16.40 68.39 27.26 93.39 26.72 53.11 72.06 50.36 13.88 79.60 70.31 37.16 49.70 83.68 18.19 92.66 94.09 29.77 13.85 69.69 53.83 81.06 91.87 11.87 26.52 52.39 35.30 65.92 89.37 74.82 98.30 33.81 61.08 65.15 5.13 60.50 61.59 70.98 28.22 76.90 43.25 1.60 74.99 44.32 8.93 41.72 81.81 9.46 53.53 20.33 54.90 92.82 11.40 70.84 29.94 51.11 54.84 1.10 77.36 80.59 33.79 15.88 70.97 73.90 43.27 70.28 82.24 2.46 10.03 92.35 86.83 8.44 90.99 93.43 79.12 98.45 5.29 36.89 55.96 38.07 98.25 61.48 58.82 41.24 60.39 18.72 83.22 41.25 56.36 51.85 96.53 8.13 30.71 92.25 91.12 -89.37 3.92 74.64 42.30 27.68 79.25 87.77 45.96 36.76 89.74 91.56 5.99 44.18 41.20 48.52 93.84 27.56 28.92 44.59 93.91 26.09 8.41 62.97 41.42 77.28 13.86 81.05 97.51 63.85 48.80 26.15 34.15 44.84 63.62 0.23 25.89 29.72 88.34 55.79 30.87 88.46 45.11 93.07 96.77 20.97 7.76 14.42 95.89 83.58 75.50 53.55 42.15 7.31 48.93 70.36 20.10 41.59 31.77 68.82 22.07 65.34 16.90 82.92 0.77 60.47 99.40 92.15 64.73 56.77 54.58 62.30 14.38 74.60 21.41 79.83 29.04 73.93 22.99 24.80 90.05 91.91 1.31 10.67 97.60 70.30 96.70 90.68 32.24 27.09 72.03 72.99 92.43 58.81 49.45 13.06 78.27 96.54 27.11 95.54 87.43 -55.78 47.08 47.48 18.41 39.53 48.78 40.87 68.80 66.88 60.20 87.12 7.76 58.53 15.99 12.73 14.43 49.21 36.41 71.00 70.77 43.49 6.68 34.31 14.41 15.78 54.09 77.59 21.14 76.08 83.30 24.43 49.27 9.95 73.35 8.89 91.14 86.24 56.77 12.09 62.64 36.52 71.26 70.76 50.22 21.28 83.41 63.49 69.79 26.43 29.07 41.17 9.73 41.99 95.43 49.07 77.22 72.15 80.27 17.78 36.01 89.89 12.78 10.21 70.57 1.15 7.05 60.63 49.58 46.17 14.28 54.92 72.47 50.17 49.12 17.88 43.33 40.71 11.08 75.30 68.94 28.90 13.69 56.74 7.32 73.46 95.37 48.41 81.37 26.75 95.34 96.65 70.36 80.82 5.50 93.35 93.93 2.69 16.50 45.06 22.16 -68.87 41.64 60.81 26.34 3.81 38.68 0.08 23.15 82.16 32.54 88.29 83.26 47.11 39.37 99.79 75.56 71.26 99.49 32.70 64.40 22.80 66.33 66.99 46.56 19.41 83.02 32.95 51.04 82.26 81.80 15.60 40.21 91.01 52.99 76.56 28.29 54.52 24.23 52.83 17.20 27.81 66.25 65.78 13.24 73.71 87.78 23.84 39.30 85.21 83.59 16.33 29.62 55.55 39.68 32.10 7.16 23.55 89.01 73.10 50.29 39.47 35.34 66.28 24.63 90.58 15.81 68.47 78.52 22.52 35.49 25.44 61.48 19.29 29.90 47.72 89.40 71.06 21.35 85.58 2.90 80.86 76.25 73.92 50.91 14.43 76.03 67.92 42.18 34.13 95.27 97.62 89.52 84.14 23.70 15.94 24.33 70.19 12.66 72.37 3.33 -53.98 65.07 55.81 4.05 53.11 4.20 33.07 60.84 82.15 14.98 25.07 59.76 1.79 47.27 22.30 98.52 65.74 13.92 14.61 16.19 13.68 99.11 22.51 32.55 10.51 46.49 5.19 42.32 52.57 96.86 13.48 52.39 48.86 93.78 63.64 87.82 86.99 1.46 65.43 35.35 40.29 26.81 61.02 4.90 95.49 73.45 39.61 81.48 94.56 23.33 7.15 34.36 77.24 56.39 91.43 29.16 19.05 76.39 73.86 83.58 85.43 31.24 14.65 40.35 20.29 86.96 1.16 51.42 77.29 56.83 71.70 10.70 7.39 60.81 76.38 36.76 4.57 52.18 67.67 47.66 13.40 23.99 40.76 14.40 42.94 58.57 79.27 66.58 32.19 94.79 72.45 62.13 15.06 63.04 79.94 87.10 10.58 83.97 90.78 40.31 -35.93 97.58 84.30 65.10 82.25 98.06 30.38 84.69 25.87 80.77 16.57 73.94 88.07 81.89 23.26 90.27 83.34 26.89 2.11 29.91 26.72 66.51 45.04 95.46 38.30 72.70 6.98 25.47 44.26 88.83 69.82 31.88 40.89 40.68 47.61 36.61 20.06 17.12 72.10 72.07 63.34 23.98 42.99 12.95 48.66 84.91 97.65 32.88 0.47 22.26 30.50 69.48 90.85 93.72 73.05 76.57 32.37 43.41 83.91 73.04 10.35 22.35 18.60 3.79 89.04 65.06 91.73 1.50 91.55 26.80 85.86 4.03 31.31 18.05 14.80 3.00 55.03 35.66 79.15 79.27 82.89 29.33 37.26 89.69 34.73 98.50 65.20 0.67 90.06 13.41 50.59 14.11 31.44 82.11 39.06 92.12 21.18 70.09 78.21 49.03 -96.21 38.97 32.63 56.38 59.24 70.16 79.64 86.98 82.48 31.00 94.71 58.80 81.25 64.05 50.42 37.12 69.18 81.05 43.00 90.99 16.15 43.64 56.67 70.45 90.32 29.58 56.95 91.64 50.83 65.63 34.78 80.84 93.25 56.79 2.57 52.85 45.47 37.77 85.66 37.64 77.07 61.36 29.65 52.01 32.45 10.33 40.12 27.62 36.81 73.43 27.07 43.83 69.14 17.30 75.41 37.60 82.57 64.39 22.64 89.75 58.10 41.89 67.45 10.72 9.92 70.21 31.45 75.94 10.81 60.69 12.30 35.25 87.97 70.15 20.60 63.75 70.75 32.60 27.73 38.58 71.76 12.60 2.29 93.44 91.00 41.14 20.53 69.01 25.27 6.58 67.84 54.78 51.90 36.13 42.76 83.43 25.58 78.67 86.11 9.94 -27.70 10.33 72.35 55.13 29.26 50.00 31.17 49.97 96.91 41.05 16.04 30.05 38.59 69.40 4.18 1.01 40.15 11.67 51.85 21.49 32.25 13.53 79.95 40.41 17.60 16.39 51.91 44.31 10.35 95.84 50.86 14.33 99.32 5.91 65.68 38.43 10.74 62.20 80.06 49.34 70.22 66.34 48.72 70.11 51.36 89.69 5.00 76.56 17.81 62.49 48.44 95.35 69.81 1.84 85.61 45.24 88.37 57.50 82.62 30.23 23.90 7.84 58.96 35.91 8.63 79.36 66.04 95.00 19.68 75.27 4.07 75.95 91.39 81.91 75.08 55.57 22.04 11.92 80.03 30.14 5.00 86.89 80.98 29.34 77.60 22.08 37.71 2.64 21.28 27.17 84.43 80.39 45.09 37.90 76.87 93.83 24.60 1.64 11.15 56.73 -96.66 74.04 23.83 38.95 33.38 35.75 62.90 65.10 25.47 65.01 73.64 77.28 70.51 66.76 43.39 76.92 85.74 78.57 19.87 80.02 48.74 40.46 7.57 84.54 79.55 36.33 32.89 20.15 77.29 83.15 77.02 39.53 34.39 42.82 12.47 86.03 58.73 9.20 97.72 58.19 55.13 59.47 94.70 42.29 4.08 71.95 63.39 46.22 92.13 16.61 73.13 10.11 36.41 57.65 38.75 62.51 5.95 12.08 92.88 45.72 9.81 19.82 36.97 74.15 28.87 13.97 74.66 52.33 29.15 87.50 11.89 62.21 82.78 53.61 28.01 8.33 77.29 71.27 94.28 39.84 38.90 44.56 33.03 3.93 16.82 63.84 58.33 29.31 9.68 20.79 11.50 32.77 51.77 29.34 11.15 27.24 9.13 35.76 1.51 25.42 -87.46 2.37 22.93 4.67 12.39 99.62 74.94 41.34 65.79 13.82 87.48 60.54 56.12 53.95 26.88 85.24 11.29 52.07 75.77 10.80 50.03 27.39 96.54 58.85 34.42 5.97 47.54 38.10 93.31 88.19 48.33 41.67 3.99 84.18 32.45 85.60 9.07 3.76 8.62 61.39 90.57 31.98 86.65 11.01 14.28 88.83 27.48 63.12 13.48 16.32 29.95 74.37 29.97 22.13 96.12 40.49 31.52 12.26 92.04 89.65 79.94 60.95 23.35 52.61 10.60 71.08 19.68 66.96 45.05 79.35 49.25 55.29 2.49 83.65 47.12 29.63 62.32 35.75 49.24 96.69 37.99 67.77 28.44 10.83 73.80 55.36 90.86 93.68 62.80 77.78 22.41 70.08 91.47 78.33 54.90 7.15 53.61 41.89 3.34 41.03 -75.78 28.23 19.02 45.06 25.85 86.93 27.18 23.33 57.46 97.41 76.10 11.71 88.69 42.99 2.83 4.27 77.89 27.02 29.04 56.01 12.02 36.30 87.94 94.51 29.82 4.95 28.87 73.31 8.72 58.74 67.59 65.93 70.33 40.09 46.56 33.00 67.11 70.96 47.74 34.82 75.06 73.31 14.05 87.01 43.92 46.50 16.79 60.42 85.45 97.93 7.19 77.91 81.55 84.01 52.44 41.79 54.58 88.80 42.27 69.96 97.35 29.97 69.73 26.14 0.41 47.14 17.26 0.76 61.11 84.63 96.16 45.21 63.28 32.96 14.48 55.66 86.48 2.34 12.87 1.95 55.96 66.83 61.82 31.10 39.20 63.34 67.00 27.81 53.92 7.96 63.04 96.77 90.53 75.69 68.83 78.70 76.82 19.62 58.54 4.47 -89.50 53.54 90.49 58.03 91.30 68.25 55.22 11.51 24.32 98.53 74.99 49.07 17.83 12.26 79.46 48.90 38.20 69.20 32.91 32.00 64.89 17.42 11.18 35.23 45.52 27.96 17.05 60.55 75.76 95.08 6.32 21.51 96.87 10.41 92.46 28.85 97.25 56.54 63.70 1.02 23.12 70.59 5.75 76.75 65.62 64.12 87.72 26.78 78.54 54.62 66.01 54.46 16.78 69.26 58.37 3.32 27.68 76.83 92.50 42.24 12.02 93.50 77.07 84.29 59.38 5.16 50.60 22.45 24.06 63.96 69.65 68.99 46.89 77.87 51.54 58.19 25.30 96.01 28.19 83.76 69.25 48.31 73.54 20.78 42.37 68.26 86.96 7.45 31.80 75.90 63.69 19.44 50.57 7.81 97.52 85.71 20.33 14.93 68.09 11.59 -39.13 54.53 93.97 4.85 29.51 85.03 92.97 85.82 22.62 89.60 51.33 65.50 73.35 16.98 95.68 36.67 37.13 9.49 77.77 65.24 70.29 75.43 48.55 51.50 98.98 66.67 23.79 64.69 75.02 36.05 29.22 71.42 49.92 17.62 73.47 50.13 77.81 19.67 30.89 39.54 57.69 46.46 13.00 60.70 58.72 14.51 71.80 52.78 6.34 81.98 87.13 52.95 34.90 66.80 58.14 37.20 35.31 65.73 28.48 37.98 27.47 63.34 0.30 73.60 31.36 36.91 95.85 47.35 94.67 99.02 97.96 36.74 34.47 44.40 3.90 86.04 3.27 68.81 63.15 44.36 3.80 86.56 99.49 40.05 87.28 54.69 8.13 7.87 11.04 33.86 14.08 17.92 8.10 53.82 87.10 91.88 60.04 55.92 29.38 74.85 -18.90 63.56 30.76 88.78 23.46 68.80 31.74 19.09 26.40 27.58 16.02 33.98 30.61 91.19 27.71 46.27 95.50 3.96 65.31 7.33 44.60 15.61 36.91 60.43 3.30 49.84 70.23 34.56 36.54 40.59 60.46 99.03 41.77 38.36 84.00 93.44 11.34 31.55 63.73 55.46 39.41 29.46 23.55 78.85 50.88 41.19 29.99 24.86 97.92 20.67 57.67 29.48 44.64 17.68 16.69 58.72 93.40 52.32 29.93 17.78 35.42 66.41 94.67 30.49 41.63 58.69 30.84 56.81 67.22 63.00 12.87 65.77 74.73 13.66 73.73 68.09 1.62 18.43 25.05 50.08 9.27 71.96 33.48 9.52 31.81 18.78 27.10 58.48 39.11 77.47 99.14 48.09 6.51 10.93 36.28 84.82 43.22 98.65 94.08 20.14 -11.48 5.69 67.74 32.38 60.24 63.65 69.59 5.76 60.24 48.85 87.73 3.44 76.05 80.84 11.67 60.96 96.61 43.49 57.11 58.66 19.39 39.79 95.05 20.34 83.90 92.52 76.14 24.21 95.42 80.92 25.05 3.93 85.24 9.86 38.88 19.35 60.81 35.03 29.77 85.27 68.26 80.34 10.49 68.95 66.40 52.68 59.29 48.23 37.22 51.35 75.06 1.46 1.51 27.23 0.56 27.44 26.18 63.70 4.46 38.91 51.68 53.82 32.71 70.63 37.74 19.67 11.55 30.09 11.24 67.69 69.40 7.34 21.36 52.37 20.82 49.91 13.56 11.71 79.83 38.20 74.18 67.56 51.16 96.97 32.33 91.33 20.72 39.24 29.08 34.45 74.46 23.86 88.13 99.82 8.11 32.35 52.22 22.58 31.74 10.02 -52.66 25.10 70.12 42.72 86.30 82.98 8.02 73.75 12.13 30.09 0.60 65.39 79.83 44.58 23.77 84.31 66.40 5.84 50.41 54.50 21.56 99.84 71.30 99.05 34.52 45.06 42.42 53.41 94.65 50.00 70.69 6.83 10.54 21.59 76.82 36.69 76.76 82.51 60.91 64.31 65.95 74.08 55.05 88.55 18.23 91.24 41.89 17.86 47.91 18.94 82.76 14.23 47.57 76.22 30.08 81.48 51.43 51.59 94.31 94.82 93.07 41.38 45.52 19.94 32.74 77.93 90.05 71.28 16.93 97.51 25.38 84.94 79.30 39.59 27.95 29.90 63.91 82.50 89.11 11.47 40.77 7.98 69.64 45.38 88.56 40.77 62.12 60.31 26.18 85.20 41.54 8.28 10.23 92.75 91.54 25.44 59.52 32.18 0.98 30.61 -57.01 58.32 19.34 39.53 66.08 26.18 76.00 41.48 55.69 53.17 90.46 42.47 70.79 30.21 38.19 83.00 38.06 85.86 5.61 71.45 29.60 28.10 22.50 28.76 44.62 41.55 39.88 47.12 87.14 41.03 59.58 63.93 28.03 61.47 24.35 13.87 70.21 1.88 91.04 44.67 54.18 88.04 73.30 16.81 10.48 49.84 21.42 84.61 95.78 96.17 40.71 95.36 24.89 26.51 18.66 13.37 31.27 75.18 1.40 14.19 60.51 77.64 6.71 70.20 29.00 67.55 25.27 79.74 46.44 17.94 59.28 9.62 58.40 66.49 67.90 38.02 76.55 12.34 27.69 90.74 89.66 84.11 30.33 92.45 36.24 42.16 19.71 71.49 13.43 25.50 79.51 21.58 98.75 46.14 38.49 35.77 75.18 26.07 87.49 27.13 -35.79 54.12 71.76 71.32 12.22 89.73 57.92 22.30 10.65 25.61 1.56 38.64 92.60 10.86 65.24 8.35 87.92 21.05 96.14 18.72 20.96 18.20 37.53 96.03 87.41 72.04 69.52 24.46 52.40 65.71 89.70 18.80 5.73 17.29 60.93 71.46 11.19 8.36 11.79 16.90 38.26 89.41 13.47 64.82 82.61 13.67 90.13 33.32 53.17 1.45 20.23 46.48 64.47 75.94 86.54 14.50 75.98 83.46 37.38 13.03 70.08 64.88 20.45 98.91 38.82 82.01 1.44 11.88 39.82 20.87 59.74 72.83 77.60 55.87 22.10 5.01 38.05 99.38 39.12 55.93 33.14 9.71 81.65 38.11 29.19 32.89 84.52 83.38 5.95 0.63 91.53 10.36 92.64 88.91 51.93 38.80 40.28 19.51 76.04 56.91 -3.98 15.40 4.15 18.25 45.13 24.50 89.48 15.40 50.59 36.36 65.49 87.22 13.34 41.99 63.53 64.33 8.96 50.72 18.22 1.85 28.79 16.96 3.79 23.25 61.71 90.47 48.53 37.26 96.75 37.69 19.38 80.32 6.33 47.33 4.65 84.43 40.52 12.25 47.07 50.42 51.38 5.56 7.29 21.39 64.78 93.37 21.30 97.64 77.27 99.96 81.03 61.77 2.02 48.12 31.08 73.95 17.62 84.00 83.31 84.34 88.52 23.32 27.17 29.89 3.99 7.54 36.33 33.60 76.12 49.51 76.80 11.96 24.60 82.23 10.62 8.77 19.56 78.98 14.41 44.10 8.30 92.98 94.69 97.54 45.23 82.46 33.56 17.29 1.46 3.73 6.47 71.27 93.55 87.71 31.72 76.53 43.19 61.95 6.69 80.54 -32.40 17.85 72.31 50.66 28.61 84.27 41.01 74.84 99.34 18.27 54.11 57.25 99.56 87.85 61.10 66.69 51.48 36.43 80.75 57.51 49.53 43.45 45.54 6.71 3.55 78.54 76.28 7.72 99.93 16.71 85.06 3.87 65.74 97.18 3.03 85.07 79.36 35.56 33.25 69.00 78.38 59.97 33.01 28.16 59.54 31.50 19.09 79.42 37.31 45.85 64.48 20.80 13.39 64.50 81.77 23.10 2.91 16.69 41.36 15.74 67.41 88.37 30.11 92.46 66.54 41.45 29.69 89.23 72.58 39.82 63.21 87.14 40.57 32.27 56.05 50.10 62.38 61.45 42.35 32.46 20.51 22.13 23.87 18.14 42.24 27.98 55.37 15.48 41.85 19.23 32.69 67.35 95.52 58.97 52.84 50.34 47.33 15.75 80.12 19.41 -37.45 84.20 29.91 68.58 12.85 57.44 66.56 67.01 61.48 84.71 36.89 46.43 4.21 68.34 20.38 63.29 74.55 45.49 82.31 21.65 40.20 77.10 91.00 35.66 89.72 19.18 45.05 43.36 39.14 85.74 31.40 2.83 3.13 72.54 44.65 77.80 24.79 51.00 58.98 94.76 31.21 63.23 6.45 84.36 36.13 10.88 36.61 26.92 10.63 96.70 15.35 11.74 66.67 70.17 25.62 88.15 59.64 5.56 4.22 82.35 64.30 85.66 64.25 69.60 0.17 74.80 2.83 46.23 94.99 55.86 14.53 91.61 81.47 37.30 36.13 73.44 50.03 69.40 62.83 91.87 82.14 94.74 50.20 74.25 5.99 44.59 10.32 29.43 99.66 19.49 23.22 22.93 61.20 89.91 12.71 29.13 85.05 17.90 13.41 72.09 -61.78 32.49 87.23 41.47 36.05 89.86 55.15 26.52 32.23 39.69 68.93 69.35 68.43 57.81 29.19 62.87 4.57 28.99 55.18 78.88 54.17 69.70 29.48 48.82 99.89 71.32 66.66 18.36 55.73 4.04 51.29 50.31 51.69 23.67 32.55 9.31 93.65 93.21 20.14 43.72 80.35 23.65 79.13 63.08 47.75 14.20 8.89 75.87 47.42 23.24 74.46 89.25 60.82 66.42 56.20 35.09 16.19 47.94 7.07 75.49 98.06 0.02 78.74 82.08 58.40 13.77 10.42 77.94 63.33 5.23 56.67 49.75 81.97 95.61 73.34 31.65 22.41 70.78 74.49 39.61 29.35 43.68 91.92 70.61 90.88 19.26 1.03 16.67 59.38 25.59 29.51 92.10 93.48 29.81 87.81 9.36 47.58 25.12 88.63 22.94 -71.47 47.34 64.49 93.04 72.47 37.04 55.94 75.92 37.11 43.68 62.24 1.70 54.54 75.25 95.45 89.59 69.60 65.93 3.42 25.51 18.57 98.23 36.72 86.99 4.42 88.04 68.24 68.72 21.01 59.84 18.97 62.44 60.29 46.49 58.07 50.20 28.25 30.38 83.38 40.96 27.74 84.09 71.27 99.44 54.59 19.30 96.92 97.77 88.35 48.55 37.05 73.49 68.15 43.67 51.95 8.91 84.40 40.38 62.67 82.04 52.11 15.22 38.65 87.75 17.01 61.21 33.25 3.15 8.43 30.14 25.38 18.12 46.14 46.42 34.22 30.63 79.62 5.43 54.20 21.14 14.47 11.34 61.01 47.62 66.78 85.99 70.07 8.88 74.88 88.13 92.56 49.14 26.80 66.69 90.17 77.54 60.46 1.66 82.20 30.72 -52.51 42.03 16.88 15.75 62.71 0.08 25.68 2.16 25.62 32.01 46.63 4.37 16.21 5.52 96.38 36.90 95.99 76.73 28.94 66.77 34.20 44.40 69.53 8.16 19.60 59.55 64.86 56.87 51.16 27.60 15.85 84.31 43.75 89.20 58.97 94.38 12.01 9.60 89.47 58.17 38.77 30.13 83.72 47.80 23.06 37.10 12.64 47.71 96.80 90.37 77.98 19.01 58.66 66.99 7.00 90.07 46.12 80.03 11.67 67.41 93.75 22.57 24.90 27.58 4.56 63.28 10.69 82.20 93.85 13.40 36.19 86.17 62.74 63.13 15.53 84.94 11.17 57.57 11.75 99.85 23.01 52.15 39.82 47.13 76.01 71.30 22.98 88.15 4.08 59.00 8.26 1.71 30.37 28.82 93.89 13.83 80.13 3.46 18.68 1.33 -26.48 68.44 83.69 81.89 45.75 64.44 79.37 35.61 54.63 15.09 41.98 83.44 58.75 40.57 17.84 64.86 47.07 31.42 26.72 76.03 6.76 73.72 12.68 78.09 72.33 68.96 16.58 8.55 3.04 83.50 55.50 18.08 10.00 18.33 29.84 65.92 46.81 98.20 20.04 97.98 91.93 82.68 80.19 19.55 6.18 34.93 36.38 14.55 39.50 5.61 85.67 83.78 65.04 60.24 82.26 40.72 42.06 4.79 64.47 42.35 1.83 63.57 38.24 50.50 62.16 49.57 42.06 27.87 28.97 82.97 99.13 34.48 61.30 81.75 81.49 93.59 62.05 41.73 92.67 60.02 42.74 31.33 45.36 4.51 79.43 65.13 8.40 99.60 12.46 21.37 73.43 32.13 33.20 51.72 56.06 23.32 90.41 68.37 58.92 94.34 -2.03 91.53 57.10 88.40 38.88 67.45 5.71 80.83 11.69 9.87 83.02 30.60 30.08 85.68 18.87 60.11 95.96 73.43 74.67 63.29 61.80 22.53 7.74 94.95 19.03 65.07 26.21 94.60 69.69 43.56 31.49 77.38 54.57 30.68 98.63 79.67 2.78 11.52 42.22 27.41 31.01 70.30 89.71 57.88 79.45 65.57 49.63 44.02 79.58 55.65 65.85 25.83 95.94 64.62 79.51 61.17 1.22 68.20 3.86 74.41 38.86 40.88 65.92 65.28 81.60 6.61 72.60 87.28 47.61 13.25 18.71 78.11 29.95 31.35 84.99 88.02 32.83 96.66 76.89 78.54 20.34 26.41 9.10 78.20 64.30 33.25 44.44 88.26 56.99 28.65 91.55 79.63 78.77 20.98 79.28 25.13 44.17 56.29 83.17 65.04 -52.13 75.17 66.09 69.29 95.99 82.81 59.31 87.55 19.88 12.89 8.90 84.46 0.96 47.35 99.67 2.18 19.64 15.01 5.10 65.07 49.49 62.88 5.49 33.74 58.47 20.43 82.76 80.49 19.59 4.16 86.44 82.55 68.33 22.72 63.14 37.25 28.33 23.84 50.99 49.81 89.16 73.54 92.59 36.43 93.33 67.39 50.51 68.08 26.65 63.19 74.91 66.68 66.26 49.81 42.90 25.15 10.22 21.07 63.42 49.17 77.15 43.28 12.04 2.63 13.00 49.54 84.70 12.95 22.79 35.07 98.52 47.31 62.29 51.57 16.43 72.10 97.19 73.75 20.23 98.67 86.56 9.58 56.31 3.99 99.43 82.07 63.55 45.81 58.56 8.84 60.08 52.70 68.47 61.90 2.21 95.83 32.83 69.92 37.86 17.30 -75.23 93.64 81.58 30.06 92.94 84.34 66.83 98.41 81.85 53.93 72.67 60.32 77.05 32.71 57.90 99.48 29.86 71.76 33.83 2.87 80.05 3.55 28.58 97.87 73.84 81.39 19.61 55.91 19.04 24.80 43.05 37.00 55.45 37.42 90.25 9.90 7.74 37.40 1.10 57.42 14.61 13.58 10.95 90.24 64.92 35.25 47.28 51.25 22.49 16.80 71.11 92.88 47.76 32.90 56.27 40.29 2.16 22.28 83.98 53.54 65.35 57.26 12.17 50.26 23.67 38.88 80.29 71.96 21.41 14.86 94.50 71.16 53.88 54.10 96.57 48.83 32.35 66.06 60.02 78.61 9.64 82.99 57.52 54.19 3.36 99.18 98.19 4.95 43.34 64.03 11.20 17.49 96.59 27.94 70.53 73.55 7.35 12.28 39.63 75.45 -6.38 66.72 47.39 56.90 76.91 34.66 46.99 21.44 13.98 55.22 26.99 25.05 30.92 29.57 84.75 7.26 25.11 16.56 57.92 45.22 5.54 12.64 92.81 79.82 63.89 46.42 49.93 71.69 14.26 8.12 17.29 64.83 78.35 68.22 95.97 57.09 93.58 24.90 47.92 54.73 42.39 33.29 89.97 80.13 57.65 52.47 42.55 75.45 97.20 84.66 43.73 10.26 78.22 0.79 31.93 41.31 55.70 69.17 26.15 7.30 44.87 8.55 71.46 72.14 5.39 43.03 78.49 86.26 77.21 53.80 46.07 42.61 6.19 16.35 34.95 52.10 80.73 76.00 10.72 14.96 53.79 43.53 87.57 60.94 67.07 48.37 13.68 47.65 65.64 59.33 33.00 24.83 6.81 94.97 96.56 52.62 7.87 88.05 52.69 39.94 -15.20 0.09 75.88 58.94 26.44 29.98 12.07 92.88 33.34 83.48 42.36 56.27 30.60 2.12 5.53 8.02 57.16 47.46 83.41 20.11 43.97 82.42 57.66 75.93 98.44 95.50 84.34 28.88 89.66 23.35 13.45 4.85 67.43 93.61 13.66 30.48 43.33 83.46 33.78 83.34 22.33 36.19 95.51 10.88 74.79 63.92 54.85 7.38 66.00 10.72 75.87 81.15 14.40 3.94 1.20 25.25 84.98 30.88 70.29 96.34 56.53 72.00 22.95 20.92 38.73 6.57 1.09 67.68 50.99 56.30 41.91 68.29 60.08 44.33 26.58 77.20 82.38 91.14 6.04 4.58 88.21 1.13 84.96 79.55 70.81 37.65 69.66 23.33 47.26 95.45 20.14 46.38 66.87 49.92 33.42 71.33 92.29 14.33 43.20 89.12 -3.50 19.52 82.37 92.80 60.20 27.69 34.06 61.49 50.94 21.42 21.09 60.15 17.16 36.45 0.53 16.19 25.70 53.47 90.90 92.13 23.46 51.66 94.91 38.45 43.56 4.11 91.05 58.22 18.50 30.30 30.69 84.14 28.19 90.05 10.28 65.91 92.93 98.87 36.75 59.00 88.16 6.05 64.49 35.96 35.44 78.06 53.05 96.75 94.98 72.67 88.44 2.85 72.43 51.03 39.98 73.93 75.96 73.90 21.96 96.78 84.10 10.32 51.85 2.21 31.88 97.58 31.58 56.48 11.38 79.07 36.03 58.03 93.17 3.86 74.20 30.10 12.80 40.60 66.19 39.53 81.59 78.74 61.30 5.17 63.43 69.05 16.38 91.95 90.32 50.35 11.84 24.90 60.36 40.93 57.40 42.12 28.41 99.95 33.82 78.51 -31.48 88.17 53.41 8.32 76.80 25.19 39.02 56.80 50.56 71.79 56.40 20.07 78.57 48.83 63.87 25.47 73.95 90.82 32.74 69.12 45.74 91.82 70.51 87.43 63.95 16.14 47.12 79.49 17.86 49.48 39.75 7.99 23.77 77.96 36.05 81.67 77.81 12.18 95.77 86.74 6.65 17.36 12.59 29.75 53.52 98.57 3.65 3.93 9.87 21.33 95.60 28.69 43.14 9.80 84.00 40.65 3.86 30.98 64.34 31.80 52.72 34.46 50.44 13.81 12.59 68.68 73.15 63.32 45.71 40.13 39.88 61.91 91.63 91.00 66.93 63.13 17.78 16.28 76.84 99.58 0.48 3.88 44.47 79.88 27.57 13.68 44.27 30.25 9.18 21.08 89.18 46.14 57.35 29.16 16.42 46.91 70.03 7.69 1.22 4.32 -27.54 10.05 87.96 27.97 76.09 0.51 26.47 13.29 44.01 61.51 65.29 73.29 74.64 59.71 83.01 81.60 77.90 2.71 90.93 72.94 68.22 4.44 67.52 82.32 21.66 22.52 58.44 75.38 26.55 65.36 20.93 98.07 54.27 44.51 91.75 44.97 12.61 31.64 26.72 80.03 52.92 41.91 13.17 61.83 46.87 98.18 49.11 29.14 22.37 6.67 81.06 92.66 2.23 52.26 62.65 18.67 64.43 41.86 4.92 3.01 98.44 9.65 18.88 43.38 96.77 19.47 62.10 46.57 10.69 99.33 83.58 37.23 48.92 77.23 32.25 67.92 68.25 28.96 97.64 62.54 3.57 79.62 24.31 84.58 54.77 47.80 56.81 79.20 2.98 28.93 11.34 61.52 59.79 98.81 60.38 58.39 46.03 70.83 2.87 35.97 -63.35 80.23 35.23 71.74 48.37 74.16 32.11 13.51 33.31 25.31 10.65 56.46 17.04 35.41 8.92 61.17 62.43 20.94 0.00 83.73 88.98 13.41 2.28 94.40 23.15 84.49 23.42 76.93 11.59 9.13 73.02 43.51 43.80 29.22 71.40 65.15 15.85 31.25 55.58 20.21 87.66 15.96 82.20 8.16 13.03 53.06 5.76 57.44 43.09 68.62 51.00 56.32 79.40 19.75 95.93 78.55 83.48 15.84 74.00 48.39 57.89 60.36 11.97 87.60 33.15 41.10 97.69 5.29 3.51 35.14 25.92 78.08 72.62 18.08 37.72 46.26 28.28 18.97 5.50 91.34 75.48 77.36 46.75 50.85 57.75 80.67 47.11 31.20 46.76 35.31 26.97 8.32 13.60 11.56 35.68 59.30 74.63 7.35 3.24 10.98 -74.18 78.94 41.82 25.44 5.34 12.96 90.64 23.54 20.92 74.20 5.50 54.68 3.58 19.97 44.01 77.78 0.67 43.72 23.22 99.45 29.02 56.51 78.65 77.69 19.88 86.67 3.81 15.48 1.38 65.26 67.95 48.19 83.45 10.58 69.39 75.88 90.80 19.75 9.81 98.23 15.98 30.03 2.49 31.54 6.83 64.36 71.20 28.09 84.92 81.45 97.85 48.08 30.48 79.77 58.02 3.19 10.04 22.94 10.94 54.63 38.78 54.48 35.63 5.72 39.96 78.14 84.86 46.88 86.58 43.85 59.03 47.74 86.81 33.20 18.31 81.43 89.10 44.58 69.72 9.77 61.72 91.15 10.32 64.94 60.90 65.55 66.74 85.85 29.07 97.78 4.47 15.31 78.38 4.21 67.37 84.82 96.74 67.36 80.21 44.84 -42.54 3.44 81.37 3.84 8.76 89.48 44.17 6.70 62.53 61.04 28.46 56.22 52.61 90.61 96.54 43.69 59.15 71.92 70.90 73.49 9.35 63.58 65.38 91.44 57.65 41.56 97.50 55.12 5.23 29.49 43.72 5.99 75.89 31.60 80.58 3.39 81.91 51.64 99.49 33.89 50.93 60.95 93.56 16.94 27.27 23.90 78.58 97.37 25.46 7.55 87.48 91.16 31.89 80.57 81.19 27.69 91.68 95.86 90.97 8.12 59.11 97.15 45.03 38.23 63.15 60.68 95.50 75.24 71.77 77.87 92.87 26.24 50.78 2.95 51.19 98.71 79.35 71.36 68.80 45.50 63.60 31.24 81.02 37.84 37.76 14.41 79.80 14.94 78.86 86.98 21.34 55.65 50.20 70.39 75.56 12.91 99.73 16.51 96.11 11.39 -62.21 21.36 90.48 62.81 46.22 40.77 0.54 12.14 58.09 90.07 61.82 82.74 93.74 83.00 69.22 86.13 36.35 26.33 68.68 39.86 27.81 78.28 48.29 71.68 48.25 90.36 48.06 80.00 68.63 75.33 67.16 95.74 81.56 59.01 68.79 22.72 28.44 66.55 18.33 88.13 83.06 28.43 63.51 17.53 32.50 17.24 79.41 10.67 34.15 78.47 35.77 30.63 54.53 10.05 84.00 84.50 98.66 9.50 38.68 16.86 72.08 22.54 3.95 12.02 18.41 22.52 67.63 90.60 57.28 72.95 50.03 30.50 76.81 60.03 40.66 73.39 33.81 23.05 5.09 90.65 74.78 87.17 22.95 43.87 66.35 60.76 32.38 71.96 29.12 74.11 35.52 92.72 55.30 68.44 73.22 4.09 14.67 73.18 72.02 65.27 -34.60 72.22 17.51 68.33 21.72 7.12 29.95 78.60 66.99 23.22 87.13 63.05 63.13 6.80 93.95 3.23 98.42 26.77 31.52 84.16 51.82 69.45 78.77 33.94 5.66 26.63 93.45 81.21 75.28 74.47 78.04 13.15 48.04 32.70 75.10 81.16 43.10 31.43 43.17 0.04 57.86 43.31 82.75 40.79 81.16 10.08 61.00 43.45 3.23 75.63 3.94 20.18 43.25 55.42 86.07 70.66 56.41 10.41 66.06 87.06 41.34 97.53 95.27 12.51 0.84 77.56 72.64 78.10 21.14 1.36 52.54 81.69 69.57 92.87 1.85 89.64 25.87 1.56 98.80 69.63 45.89 11.04 50.55 6.57 33.60 97.14 56.63 17.92 55.97 16.36 54.14 9.93 22.81 16.49 55.59 10.72 65.77 72.28 81.52 8.94 -63.70 0.70 1.32 82.95 86.08 76.93 90.23 3.95 25.72 3.74 49.66 85.28 20.16 41.35 94.62 36.20 78.64 10.09 75.76 14.78 50.44 37.89 96.65 5.57 17.78 64.70 88.72 11.40 7.67 94.63 98.79 75.07 32.05 61.92 5.00 9.95 22.87 6.72 94.15 57.68 36.43 32.00 68.03 63.90 41.44 17.90 22.85 66.31 79.23 44.43 44.70 35.17 55.12 24.10 43.68 61.75 78.66 49.02 16.16 33.91 51.34 83.05 3.11 66.26 19.95 31.51 87.26 68.97 44.05 57.39 0.12 15.49 69.17 69.36 18.77 16.74 49.68 80.92 20.66 65.74 56.79 38.01 73.39 15.68 97.85 28.63 53.25 39.82 1.46 83.12 54.87 8.96 21.59 43.82 8.28 74.13 63.18 61.09 22.78 76.08 -18.02 44.71 6.48 21.98 60.45 60.13 93.63 65.74 4.62 16.99 3.55 66.01 74.58 46.63 25.10 29.20 84.59 83.10 94.16 47.26 92.24 69.61 2.26 90.97 62.65 43.10 85.59 73.68 61.13 52.93 23.13 12.59 32.89 75.72 88.99 81.90 49.80 22.12 20.47 90.84 74.63 88.30 32.56 95.83 57.40 38.15 2.65 87.32 20.47 8.66 95.73 41.05 34.50 6.58 25.46 17.90 88.86 99.37 36.64 4.93 21.09 22.09 80.66 51.02 31.90 1.06 27.87 89.78 1.24 77.57 58.28 14.95 10.69 49.19 70.76 16.65 94.05 79.70 22.49 21.20 3.08 60.45 93.22 1.96 44.86 6.46 61.82 81.45 13.70 90.33 49.74 35.34 39.11 98.48 50.36 74.19 90.80 96.74 27.84 54.71 -47.00 45.16 74.16 34.32 18.01 38.30 91.09 35.81 50.91 31.12 9.90 94.22 88.07 80.19 35.64 37.09 4.01 2.02 62.17 71.79 87.80 53.77 58.51 53.28 64.16 68.05 71.31 76.12 5.29 81.79 67.12 61.44 49.94 34.45 55.35 60.90 10.70 65.20 3.76 14.19 24.82 66.34 72.94 48.59 33.46 30.57 70.01 5.90 1.77 85.63 14.62 65.72 30.27 21.64 5.87 98.86 34.10 57.97 83.12 89.06 39.07 3.96 33.58 29.81 76.06 97.45 53.80 28.68 31.48 63.55 53.11 87.35 94.14 38.90 65.13 30.74 39.25 70.40 51.01 66.30 38.65 33.99 26.78 24.49 54.29 25.54 79.51 71.98 10.32 41.52 52.03 4.51 86.48 61.73 47.47 68.77 93.49 97.66 56.45 3.84 -22.25 49.07 4.98 65.79 53.85 87.09 85.49 81.64 36.79 63.94 7.80 36.91 90.24 91.65 24.37 1.79 46.68 54.40 52.20 24.87 42.87 18.13 56.74 9.42 8.97 35.81 43.75 76.61 15.49 24.10 77.78 50.02 74.21 42.35 52.73 11.86 1.50 72.87 83.35 93.23 62.42 40.94 48.14 73.89 89.60 90.18 69.76 85.65 75.25 40.21 35.37 84.15 32.29 93.42 74.62 72.65 27.74 96.78 23.75 39.73 72.95 9.88 95.72 30.85 63.94 54.65 47.79 50.88 14.06 86.10 1.38 5.49 8.81 9.75 89.41 20.08 0.74 20.33 24.79 20.99 15.94 78.91 23.48 81.63 86.95 14.57 54.62 25.30 46.81 26.65 50.52 52.09 87.59 34.04 91.46 91.59 60.51 30.44 38.17 23.91 -13.74 39.73 7.73 23.84 58.53 39.37 73.65 50.37 17.95 16.03 21.77 96.22 81.37 69.64 28.83 96.88 98.52 74.45 27.28 49.20 86.30 69.71 86.69 87.96 93.61 94.90 81.95 77.05 9.70 33.16 99.03 86.18 33.73 14.42 42.80 45.77 49.62 93.18 17.77 57.90 26.30 35.70 42.50 36.10 59.66 17.17 17.73 51.35 66.01 71.99 99.73 99.78 73.82 31.40 79.81 30.97 83.37 14.58 90.75 88.59 1.33 56.28 16.40 28.13 91.68 17.82 13.18 93.23 47.27 21.35 94.02 43.05 57.41 49.32 88.10 42.92 79.05 2.75 6.68 55.92 26.08 71.91 40.04 71.32 83.98 87.00 62.55 16.90 73.09 17.96 7.06 39.45 67.53 38.24 83.09 93.79 57.88 86.55 65.56 10.48 -87.10 53.48 94.48 51.82 10.31 83.95 64.88 87.65 61.22 12.14 73.19 37.56 63.96 10.75 44.24 68.79 53.32 46.78 93.08 96.55 9.14 96.04 69.76 94.88 0.80 91.92 30.57 29.32 8.46 46.83 76.56 13.04 35.25 79.13 36.81 79.42 78.29 96.92 17.82 54.17 41.84 58.63 88.45 53.36 99.73 56.31 17.05 47.68 49.18 84.73 21.69 93.52 15.66 79.67 5.64 91.16 97.10 3.62 31.41 57.55 4.46 24.59 16.78 32.75 56.64 15.37 28.74 96.22 84.49 57.53 32.93 16.79 88.67 9.72 87.01 84.33 39.74 27.09 96.72 62.70 81.35 63.43 96.92 71.12 30.24 40.20 6.51 59.72 24.07 27.19 69.40 14.81 34.79 27.31 73.45 22.75 28.31 30.81 72.93 74.31 -89.95 86.97 7.65 63.84 37.76 84.90 16.31 79.42 82.34 35.68 30.90 51.96 41.47 64.91 86.96 10.04 50.49 55.08 84.44 22.54 5.14 77.62 56.45 36.84 53.82 68.53 88.44 34.46 13.02 40.80 3.33 43.18 76.42 84.51 41.42 18.37 31.51 74.46 11.15 3.45 48.68 32.63 81.61 14.97 1.64 91.50 2.55 86.96 23.82 85.25 45.46 98.36 32.30 79.56 76.13 28.85 44.45 29.46 45.86 2.16 69.73 34.91 64.17 11.34 21.09 81.59 95.22 38.93 31.05 5.95 85.84 91.24 11.34 88.39 36.18 85.48 32.09 10.38 81.76 95.31 25.00 64.01 97.71 91.21 96.12 99.93 54.11 18.07 19.87 77.80 86.27 65.36 24.72 44.06 87.09 43.68 4.80 37.85 27.37 83.80 -17.98 4.41 81.68 28.89 79.22 33.31 46.59 85.16 50.20 28.14 24.88 18.61 83.47 37.28 54.08 29.80 34.97 23.20 81.89 64.22 4.88 54.03 79.61 47.08 85.01 4.49 87.40 11.70 95.36 21.17 68.79 6.53 0.88 83.49 73.16 55.09 28.68 91.00 94.35 27.64 15.73 12.60 64.71 76.69 8.58 94.91 78.49 96.88 76.12 64.26 57.61 37.56 17.73 25.80 24.45 56.41 37.95 79.72 67.10 84.20 96.87 48.94 61.44 66.30 51.46 13.44 77.85 1.58 84.90 39.53 87.61 89.69 42.03 92.28 85.57 53.82 22.72 77.05 12.49 65.79 90.63 50.26 76.99 44.08 14.62 26.49 93.03 85.37 44.24 85.73 65.35 22.65 6.28 39.28 36.47 31.97 39.92 86.87 96.53 58.61 -60.42 51.49 85.35 98.45 61.98 26.32 57.48 33.37 14.66 39.46 26.10 31.10 77.86 74.03 38.21 71.60 54.91 9.01 41.87 62.45 81.97 60.40 25.40 64.73 65.74 53.02 26.91 4.22 6.10 25.26 56.88 8.95 44.40 59.58 53.52 39.44 88.50 5.93 5.21 99.13 20.67 3.08 60.96 55.77 55.43 25.97 3.70 1.92 59.95 7.80 24.78 88.47 60.03 35.36 89.52 59.66 99.08 33.38 58.08 21.41 95.65 4.40 48.38 90.18 10.36 56.65 23.84 85.43 26.62 97.17 35.93 70.98 32.05 55.67 35.06 85.35 42.10 31.80 46.79 64.18 96.48 56.60 95.75 11.43 55.73 28.71 46.11 12.80 11.92 15.45 1.30 66.77 25.58 56.25 8.85 23.78 77.62 95.98 74.85 43.86 -72.86 84.59 6.87 20.02 79.57 5.74 96.27 79.78 6.43 85.11 68.46 43.14 81.92 51.21 20.69 46.31 13.54 51.85 43.81 29.77 25.38 74.88 46.54 52.74 28.72 82.36 68.78 16.46 8.24 90.57 3.74 43.67 87.64 2.69 53.19 1.39 39.52 76.64 41.12 76.59 61.44 90.21 91.10 17.18 46.60 75.40 44.30 99.45 53.83 39.08 28.91 67.13 89.23 6.88 77.50 46.68 32.11 29.17 23.41 28.12 89.23 74.72 81.13 92.19 9.23 24.05 19.39 17.42 82.29 17.54 62.58 75.86 68.91 94.13 78.24 22.66 99.21 79.14 1.25 61.53 79.03 37.98 53.67 97.33 1.98 79.62 67.85 18.74 15.42 51.73 42.61 38.43 37.34 56.51 56.31 73.24 85.16 19.41 59.20 79.24 -32.94 89.43 24.06 23.78 52.55 61.23 27.87 55.52 62.54 98.39 17.99 18.03 73.82 67.73 87.13 11.13 39.85 4.55 70.06 2.38 37.15 35.16 37.65 35.35 81.51 98.78 23.89 97.86 30.80 97.13 36.83 14.26 27.09 10.89 20.78 65.30 72.53 8.72 70.25 0.84 11.02 73.49 94.96 76.28 5.39 28.14 21.89 26.09 22.30 96.21 45.25 84.37 38.03 37.98 32.07 11.56 13.85 56.74 20.60 3.19 43.87 53.65 17.68 93.95 59.46 96.57 5.05 77.15 86.20 61.96 47.52 32.83 78.66 89.92 10.85 23.75 51.36 95.81 75.51 54.76 43.00 46.82 84.48 88.11 53.78 25.90 41.98 55.51 1.18 86.25 78.26 63.92 40.47 63.72 54.27 95.23 17.13 59.02 98.18 16.55 -97.85 68.43 79.67 90.56 3.52 11.23 16.71 64.25 82.43 51.71 70.86 44.39 75.38 38.53 95.84 71.92 18.52 83.29 52.07 0.03 95.86 8.77 17.45 81.39 7.70 59.58 52.50 22.22 5.67 2.07 38.14 89.02 78.84 95.78 24.13 1.81 57.85 77.11 3.09 57.06 94.99 11.27 72.78 55.56 90.50 13.31 84.39 84.39 55.18 44.07 29.28 6.76 1.48 81.20 38.25 56.11 92.40 80.15 73.79 87.92 27.68 69.87 35.65 13.27 42.11 95.62 66.03 51.86 31.30 95.16 55.73 44.96 12.70 41.87 48.00 84.89 78.84 17.29 45.44 27.39 42.35 32.88 59.85 60.47 21.20 57.18 83.05 89.32 63.24 88.30 99.89 49.03 41.96 41.69 38.95 8.01 15.11 55.83 76.45 49.29 -95.63 62.33 18.16 40.06 58.28 67.43 76.92 40.98 97.78 80.67 94.91 64.68 77.89 13.04 44.42 41.19 23.96 76.17 74.14 3.71 85.33 99.14 75.96 17.57 51.10 65.96 27.43 62.80 45.54 38.40 57.04 20.42 54.12 75.18 29.35 44.79 25.65 12.84 72.67 72.74 70.68 5.43 55.46 48.47 30.14 95.64 15.03 49.59 95.43 47.39 68.36 69.91 37.57 54.41 87.00 4.96 29.21 59.66 74.03 33.24 57.33 42.19 25.84 4.37 48.95 7.51 49.54 55.30 5.60 24.97 61.71 49.50 8.13 22.06 97.41 82.23 31.31 15.56 23.50 77.02 97.72 74.06 62.39 68.49 45.97 25.70 82.17 77.87 24.40 82.39 11.62 92.08 28.92 73.40 16.27 75.44 0.96 24.63 4.47 13.01 -41.27 31.92 46.10 49.19 22.96 93.85 23.12 41.67 44.15 16.61 40.15 34.35 61.60 95.72 20.69 28.72 99.39 43.95 69.14 95.11 71.66 75.92 87.44 61.79 57.94 38.35 28.21 7.50 64.24 56.33 16.03 69.86 50.47 19.10 18.20 5.10 13.69 94.14 88.87 96.27 81.33 7.91 99.92 15.03 67.35 78.55 22.00 86.86 94.72 87.63 13.71 40.67 96.44 80.43 15.89 12.16 16.99 78.97 67.71 45.71 80.88 51.19 46.69 34.85 2.43 11.43 69.28 35.44 66.32 28.37 41.13 38.53 91.24 81.49 30.08 7.00 48.46 38.96 8.59 40.41 24.04 57.80 12.88 47.10 88.32 28.76 95.71 8.93 11.01 57.46 57.90 74.77 32.80 35.78 55.98 83.17 43.16 77.43 65.32 6.92 -75.04 95.50 80.96 70.99 28.78 66.51 65.19 58.22 63.29 61.33 98.59 96.72 71.36 42.81 91.60 93.00 3.92 85.25 67.04 21.75 18.21 32.78 70.40 16.72 89.29 84.49 3.15 18.66 1.91 77.26 25.31 64.33 18.43 0.80 3.18 58.22 2.20 21.36 32.14 49.90 80.69 64.62 29.91 80.17 8.08 19.95 93.18 85.03 38.47 59.87 85.45 53.23 93.87 59.17 95.52 51.67 30.10 22.69 68.52 12.49 52.38 81.98 76.15 11.55 10.61 84.69 46.10 5.33 93.51 20.67 72.35 63.47 32.17 22.26 93.82 79.09 36.05 68.18 54.27 88.23 82.11 30.46 79.66 78.88 98.09 97.26 17.31 45.08 3.06 43.47 23.17 78.28 54.04 22.08 37.53 70.92 48.25 61.32 0.44 12.60 -35.82 67.62 9.69 10.85 72.49 1.49 27.85 71.48 89.02 25.52 50.34 27.26 78.07 20.16 5.79 93.70 24.45 63.91 6.13 47.37 39.37 88.69 46.10 83.12 39.39 91.99 27.04 60.07 47.77 71.86 49.09 37.31 14.67 81.28 98.18 79.82 86.14 61.10 98.60 30.49 21.78 12.11 10.81 41.09 29.70 98.81 3.14 62.45 91.87 35.27 24.40 83.03 84.16 21.39 62.91 40.95 93.07 4.17 20.70 73.91 55.01 74.72 31.31 57.33 10.80 46.57 8.41 35.69 4.80 99.00 59.74 23.59 17.35 25.21 91.76 62.90 57.36 8.97 19.80 40.71 13.18 0.01 68.62 54.93 95.19 95.81 80.83 71.48 61.82 29.98 23.69 44.91 73.27 86.61 54.88 67.09 8.97 36.97 5.29 7.90 -27.32 85.58 49.20 51.05 16.39 30.68 11.52 97.34 88.95 64.02 89.59 63.54 32.07 70.65 70.47 4.37 9.87 12.92 69.15 38.26 53.52 13.57 37.94 76.52 70.53 29.24 44.10 62.26 68.46 36.28 38.12 42.92 95.32 63.81 48.20 87.12 42.97 6.83 70.21 20.24 31.26 68.06 11.11 72.72 61.55 91.20 17.67 47.60 58.29 38.69 36.03 97.96 84.25 45.51 31.05 53.10 92.48 95.98 90.74 2.85 8.22 75.73 90.95 15.21 88.81 24.81 10.73 2.73 14.21 42.08 33.11 69.65 43.29 77.41 89.20 55.41 20.71 30.01 13.46 54.89 96.82 98.90 37.35 33.35 98.72 86.85 20.98 18.89 16.44 32.75 17.94 15.08 80.39 42.25 83.87 54.40 61.38 16.29 62.86 68.85 -7.69 41.56 76.29 27.30 85.45 69.48 81.45 75.62 29.15 85.63 58.32 90.25 67.91 96.36 41.50 24.65 48.19 68.34 72.68 86.58 72.43 90.60 42.44 11.46 66.17 97.39 46.38 2.44 28.45 12.38 76.62 58.72 84.81 7.71 63.19 11.17 97.89 92.56 20.49 46.45 94.18 71.34 39.07 57.21 25.63 70.13 8.93 25.15 77.40 41.54 32.02 46.90 88.38 65.10 94.01 42.99 26.29 64.06 94.14 57.64 0.52 15.75 33.40 89.91 53.93 50.50 85.52 7.21 90.37 88.85 80.94 12.87 62.53 5.00 37.59 55.00 8.47 42.33 27.96 88.15 40.87 1.61 95.19 91.41 84.76 14.25 69.61 28.82 83.74 50.56 88.59 80.72 22.35 71.60 34.79 43.35 57.94 64.74 29.45 6.53 -14.44 94.58 37.25 55.13 96.77 90.61 74.79 4.37 91.35 27.77 42.52 17.20 12.47 62.48 69.35 9.04 6.05 67.97 26.74 39.25 59.05 21.29 92.54 39.23 87.97 32.92 38.83 84.43 19.17 32.18 54.81 87.83 94.47 52.22 36.61 97.33 99.58 38.64 48.84 74.35 93.52 41.72 27.19 3.63 25.89 72.20 71.49 19.03 76.53 92.04 96.22 91.99 62.55 43.50 12.51 28.88 28.71 33.67 4.74 31.65 0.64 60.28 56.14 71.98 25.42 48.93 50.51 74.80 3.81 39.53 60.14 2.23 27.73 14.53 65.23 61.12 61.65 96.70 79.46 16.97 26.14 86.62 5.31 99.00 22.59 59.94 93.09 56.29 73.95 11.59 16.44 50.39 83.35 17.33 43.54 33.17 72.13 57.81 40.85 85.88 -35.30 9.70 16.45 62.92 24.72 66.33 96.78 59.90 41.48 31.75 38.45 57.69 5.79 38.26 90.35 38.44 93.20 7.63 0.67 4.30 18.25 20.34 95.21 40.58 50.15 54.70 40.35 86.94 84.46 58.91 67.88 7.70 27.80 18.99 77.47 49.16 21.67 37.42 49.75 65.83 44.77 9.19 11.60 67.48 29.76 43.63 75.72 65.78 47.72 93.67 30.61 5.89 31.74 4.33 77.67 98.91 51.54 27.62 50.92 79.40 28.16 48.84 80.82 62.38 83.80 72.11 34.22 0.89 31.05 42.82 47.52 61.77 16.08 49.10 76.32 83.43 68.30 75.94 27.23 60.56 45.87 50.63 28.88 7.19 7.96 23.47 32.39 89.97 67.76 77.66 4.59 83.79 60.54 59.99 25.12 61.86 41.23 46.01 72.33 78.41 -70.03 57.25 2.59 16.89 77.58 83.80 0.19 14.11 53.68 7.92 17.87 98.62 18.42 18.41 44.29 54.48 88.47 23.62 28.13 9.40 60.62 12.85 51.91 12.32 80.65 77.52 41.99 80.83 84.16 88.41 52.95 46.39 86.74 94.51 68.03 71.14 78.69 50.58 2.30 32.76 33.12 45.06 11.09 73.41 3.75 37.76 50.39 6.68 60.67 24.76 94.03 75.44 70.92 1.90 41.68 20.73 88.34 68.27 87.41 6.07 76.23 71.11 36.94 18.37 55.58 60.42 69.54 61.78 86.03 57.59 2.54 39.77 91.65 27.85 47.66 69.28 93.51 61.74 80.78 14.63 91.41 65.12 85.22 13.38 70.05 36.20 60.74 77.41 12.26 55.83 77.25 78.17 88.34 11.93 50.04 13.91 65.71 91.43 28.52 57.26 -16.05 21.23 97.07 31.84 91.54 17.49 89.75 55.72 93.80 38.80 81.49 55.99 34.89 83.05 13.70 34.91 75.10 74.12 96.36 71.72 59.29 18.21 39.19 70.90 86.02 54.28 19.45 17.62 70.91 98.86 78.25 1.22 82.26 45.53 24.75 87.88 45.95 38.60 26.29 32.31 91.00 88.35 43.89 96.70 7.46 57.38 6.11 57.27 34.47 84.29 76.68 66.66 50.95 90.74 82.62 61.69 71.12 51.23 96.03 33.80 79.70 21.46 80.32 73.22 67.49 48.22 86.12 16.26 23.64 27.88 90.78 97.09 21.10 50.64 25.23 78.96 67.12 26.21 76.41 30.00 38.34 35.15 82.55 78.72 65.87 55.08 22.29 3.26 20.61 90.11 25.60 98.09 39.53 44.56 48.15 46.71 32.71 71.79 98.31 36.35 -3.25 99.49 61.41 54.07 71.85 59.80 8.30 64.01 86.70 18.68 2.98 8.86 96.11 48.54 40.70 79.46 10.79 46.50 99.81 80.31 20.32 12.25 37.67 16.28 58.21 94.31 25.64 69.61 0.78 19.20 99.03 39.85 19.53 57.49 65.65 71.83 77.82 59.80 64.86 80.67 82.04 88.45 25.03 88.51 67.44 50.69 37.89 18.88 20.28 13.12 62.28 93.18 38.03 47.53 65.35 10.14 29.76 90.56 61.11 27.41 57.06 33.22 85.09 56.95 64.76 15.14 9.05 54.53 73.29 43.95 74.17 54.24 19.27 86.35 65.54 76.34 65.85 83.04 95.31 62.53 51.79 63.90 33.91 46.84 40.18 22.35 60.49 42.94 8.83 32.39 78.92 12.49 89.36 37.94 19.45 48.25 81.25 66.45 3.73 59.22 -70.02 13.63 3.28 8.72 84.59 65.03 89.93 87.51 88.65 54.34 8.33 47.59 89.11 65.13 69.77 6.51 71.45 19.70 65.11 20.70 26.22 78.30 47.30 20.77 48.22 74.71 30.73 70.22 20.47 97.75 98.03 31.10 14.35 63.29 12.05 6.53 83.27 86.08 36.73 61.77 7.15 95.82 23.83 65.89 46.01 7.50 37.18 61.06 44.63 74.59 19.90 32.88 17.08 46.83 5.90 95.91 22.60 54.94 77.49 72.79 48.63 42.36 47.73 32.54 98.26 39.87 78.62 23.51 20.54 38.94 91.18 23.25 73.26 81.87 67.43 59.49 32.21 38.81 74.55 9.99 71.61 47.62 20.07 86.53 3.39 79.80 11.88 98.89 1.32 49.30 68.45 18.24 47.91 41.54 36.22 12.91 14.38 77.55 21.24 68.65 -5.93 74.08 4.14 43.37 51.94 70.32 49.07 64.81 97.80 13.29 8.34 15.90 79.45 96.20 2.69 72.18 72.99 17.66 40.92 34.92 94.63 4.60 50.28 26.97 14.01 1.75 25.14 52.91 85.31 71.77 18.84 13.61 89.85 95.52 98.24 20.12 79.10 98.82 65.85 49.01 87.06 1.72 72.70 66.71 59.83 37.25 53.32 42.94 64.32 36.57 66.61 10.51 14.95 78.89 51.88 3.08 93.00 44.96 99.76 59.84 1.21 69.71 94.99 40.14 90.21 34.75 48.16 59.86 27.45 55.36 11.47 48.24 70.40 88.68 17.51 29.66 58.60 57.20 47.09 25.82 68.89 92.41 32.09 48.42 72.57 72.39 19.62 36.64 66.37 89.02 88.62 51.91 39.25 50.64 15.76 71.12 65.28 50.19 6.46 0.34 -94.46 76.24 54.32 41.01 61.97 90.32 43.75 88.98 62.02 18.46 40.00 35.67 0.39 73.73 55.59 8.96 29.42 59.47 24.31 84.44 90.91 39.39 10.86 3.51 72.41 48.29 42.32 7.67 29.80 26.03 39.04 7.13 30.71 15.90 57.33 34.49 47.04 84.55 73.74 71.55 75.53 7.56 85.29 37.82 38.77 99.43 23.26 7.67 97.26 84.38 79.42 37.52 51.16 10.00 17.18 71.60 58.12 15.30 99.27 51.92 61.41 44.28 89.86 1.60 82.34 23.98 71.06 34.46 70.49 48.27 70.12 49.95 15.75 8.49 66.36 93.84 38.05 5.86 5.96 96.56 80.30 79.67 37.16 2.50 14.75 23.48 97.36 16.86 29.04 5.31 1.08 49.32 2.90 83.69 65.50 67.37 11.12 53.42 46.47 53.35 -74.09 55.60 7.89 81.19 82.61 3.17 72.30 49.80 43.58 23.20 23.22 83.17 60.70 85.99 49.78 81.69 57.24 36.51 36.81 77.25 48.98 38.52 80.12 53.27 73.24 24.63 18.70 60.67 9.16 98.68 52.46 5.29 9.25 5.96 96.77 59.52 27.05 70.57 2.89 38.58 83.44 56.71 16.32 36.47 75.66 6.48 71.88 53.21 10.42 86.23 61.31 11.79 84.09 14.83 33.90 20.24 40.05 65.01 5.40 24.06 84.24 57.48 76.24 76.58 92.30 44.58 34.98 80.07 39.87 80.59 40.79 60.37 11.04 90.40 62.87 75.12 37.67 6.95 7.14 92.74 62.28 36.23 38.28 16.54 84.41 42.78 24.95 4.06 94.23 94.96 47.26 43.16 75.45 23.56 70.79 44.52 49.06 81.47 34.74 2.47 -96.34 51.39 74.94 59.57 82.55 87.93 65.86 22.90 1.23 4.59 33.65 13.57 67.14 61.54 73.50 8.65 79.98 81.53 97.72 20.87 56.77 39.66 56.24 26.32 45.48 50.97 4.22 46.10 48.36 34.95 34.24 36.94 49.39 35.48 89.17 22.90 48.75 47.23 85.88 57.44 57.23 94.05 2.84 61.08 28.18 47.87 27.20 13.49 45.78 28.75 64.63 13.01 40.61 51.96 42.80 15.43 5.74 47.11 72.04 19.60 54.69 38.94 79.20 18.60 67.40 20.76 86.77 83.19 94.56 55.84 5.82 23.90 23.80 63.96 23.01 40.75 95.96 77.45 6.35 27.05 37.86 53.73 50.83 32.53 88.22 26.50 68.65 13.80 31.65 65.70 23.57 93.62 46.77 76.01 72.97 16.82 86.03 55.11 91.51 63.09 -21.48 9.44 20.60 45.55 49.95 0.54 32.93 73.65 78.20 81.83 9.00 70.49 48.69 60.77 71.44 43.28 89.59 32.17 55.81 47.80 56.02 22.77 41.29 9.25 20.87 65.69 50.88 29.34 68.35 91.02 47.91 77.08 31.43 81.62 88.74 96.32 51.48 27.97 82.43 6.77 89.61 70.28 40.86 55.34 34.76 32.99 61.40 62.88 66.19 25.94 78.53 58.75 4.28 14.50 60.58 12.85 13.35 7.42 57.15 55.85 16.46 87.81 16.20 44.87 14.59 83.75 16.76 44.97 64.66 67.46 91.46 61.43 28.79 40.83 66.41 11.17 11.44 25.72 20.93 43.96 17.13 42.58 92.01 86.86 86.31 29.13 53.05 53.77 53.37 8.84 32.48 47.74 88.26 89.38 12.61 71.20 47.20 44.85 73.49 53.60 -23.32 63.78 2.75 63.71 23.40 91.29 75.36 93.44 50.90 41.63 11.60 25.15 48.51 41.87 24.96 33.03 76.39 18.23 27.79 79.10 92.23 64.59 4.61 84.45 94.98 95.58 41.69 45.91 36.68 61.84 66.65 77.89 12.47 20.46 86.44 17.78 89.35 47.72 39.14 97.48 46.75 16.84 97.17 20.19 98.02 33.80 19.90 41.15 33.54 84.13 88.90 11.93 26.67 62.67 96.78 85.49 60.33 32.58 46.91 3.75 94.80 66.64 19.04 0.81 4.34 87.58 66.95 73.94 86.66 63.73 49.96 41.59 29.05 93.51 35.00 37.35 97.61 15.28 45.61 0.46 25.69 41.51 25.94 47.26 39.83 22.89 44.55 3.51 38.47 55.34 46.27 75.34 39.67 26.77 46.59 63.74 57.68 38.43 35.63 99.04 -41.05 99.17 7.40 98.75 49.96 50.97 31.32 76.67 45.30 51.86 6.59 52.13 94.49 33.31 60.93 86.79 55.44 12.90 60.53 8.80 12.07 4.23 3.22 8.79 57.99 75.38 80.85 67.49 9.89 84.80 61.72 59.86 51.05 55.61 17.71 1.72 81.36 56.40 77.66 19.98 12.63 1.93 99.52 0.78 75.49 97.54 69.41 85.93 69.87 96.73 26.62 71.12 25.35 41.04 92.45 54.22 29.83 35.92 28.54 15.88 0.03 6.17 69.55 6.47 69.71 52.43 51.47 90.10 62.91 17.37 45.09 94.95 78.13 12.15 64.58 75.47 2.12 32.18 32.73 81.63 9.27 3.92 52.17 12.48 87.71 52.19 24.09 2.45 29.72 22.22 68.24 65.98 15.29 31.78 49.62 96.51 90.83 22.26 2.21 65.48 -42.25 83.50 0.73 4.47 95.61 61.20 58.23 70.98 82.30 16.19 33.36 4.47 69.48 0.88 89.16 20.75 96.83 95.78 1.35 73.66 45.82 57.96 7.91 60.46 41.94 96.13 51.54 20.47 85.62 57.06 93.96 5.14 68.42 98.74 45.52 1.69 64.24 6.72 85.69 99.13 10.70 25.59 58.40 54.60 83.32 75.34 66.88 99.71 1.47 85.20 65.93 81.90 24.55 93.37 98.33 0.87 48.38 76.71 53.70 9.90 39.03 36.06 16.35 91.17 0.48 23.41 43.26 63.66 34.02 2.64 30.12 85.19 98.09 9.83 83.20 5.79 71.83 59.19 93.68 4.14 32.99 26.06 2.54 90.47 68.22 21.80 88.00 89.86 14.34 30.22 33.25 52.10 11.81 37.15 88.30 34.73 37.25 25.25 83.15 72.43 -33.28 66.92 24.39 19.81 43.29 60.38 93.24 21.76 28.55 96.04 48.97 44.43 37.96 99.27 35.42 11.30 66.91 90.33 62.11 59.93 34.04 13.75 74.26 87.59 67.18 98.37 18.67 45.71 45.48 73.89 74.00 86.70 76.72 24.14 18.45 96.27 12.96 31.18 38.16 94.44 39.71 44.16 34.99 83.18 18.08 14.52 78.05 87.39 60.81 33.65 7.54 27.97 37.48 27.46 15.23 86.55 21.11 28.53 94.94 31.84 46.23 58.69 36.72 4.10 28.95 2.18 33.90 34.98 78.81 22.40 77.22 22.67 58.81 46.15 37.80 64.14 17.69 51.53 26.31 65.52 99.06 19.86 88.65 98.37 31.41 55.45 70.83 38.10 7.53 30.06 79.57 2.45 19.03 47.71 78.45 1.88 51.16 1.90 4.15 3.69 -21.74 67.79 32.09 56.60 0.23 47.29 9.06 41.12 36.99 33.10 9.57 44.47 20.04 83.22 93.56 9.08 76.67 3.05 90.30 37.07 85.91 33.40 0.39 4.72 51.03 12.94 55.51 59.82 81.88 91.43 47.71 55.80 84.54 17.21 78.25 15.20 77.21 35.28 78.14 61.20 94.61 3.31 53.83 57.97 19.45 35.07 51.95 78.92 72.84 24.17 48.28 55.77 95.55 86.84 6.05 57.93 80.88 61.06 38.93 71.19 93.77 64.18 40.38 38.71 74.06 47.89 94.67 52.71 19.09 4.42 46.97 17.83 39.31 90.89 26.76 12.98 86.07 63.01 42.59 24.44 51.78 11.73 37.48 35.48 38.62 12.85 18.32 31.72 18.24 11.76 29.95 57.52 30.86 13.92 51.19 85.92 47.72 76.45 35.70 93.27 -40.88 13.07 11.69 15.88 59.91 26.42 47.45 86.94 35.90 68.88 64.32 67.74 72.88 68.12 39.73 65.67 82.40 23.04 51.67 14.66 44.65 95.44 25.34 95.55 15.39 64.48 96.25 75.74 77.30 24.73 49.55 63.86 11.90 74.60 68.74 49.83 2.48 62.00 49.10 33.45 30.05 6.77 94.54 73.40 84.88 90.65 43.53 36.43 13.92 22.30 87.37 2.23 34.49 59.10 59.23 59.50 62.31 92.55 97.18 71.92 30.92 2.46 73.45 75.91 78.76 43.49 20.24 0.41 18.10 63.61 4.90 92.13 58.67 71.35 81.50 86.88 64.64 2.41 95.22 81.88 17.85 25.61 63.44 93.56 27.16 98.00 19.53 90.55 22.16 67.22 68.99 57.32 24.69 21.27 34.52 82.57 40.93 89.98 72.08 60.20 -79.37 21.86 6.03 1.82 26.32 87.38 21.09 54.04 68.32 19.73 73.82 79.03 33.35 7.57 0.78 16.72 25.28 14.94 89.68 42.19 89.40 33.19 83.84 26.73 22.69 35.71 96.62 11.82 0.35 80.80 4.31 6.78 95.80 27.61 48.45 39.19 4.19 88.27 31.88 18.25 15.99 79.46 20.38 49.38 67.92 35.19 37.79 75.60 85.69 56.74 53.01 60.87 94.56 86.68 76.17 29.81 11.47 77.61 10.42 63.54 35.04 10.56 48.99 32.79 62.76 1.86 30.41 19.45 16.69 24.66 3.58 68.06 1.02 1.94 95.65 85.04 48.00 39.84 25.37 67.74 79.95 98.26 33.06 84.66 63.14 81.44 59.04 66.39 32.62 81.45 19.74 56.79 0.43 55.31 9.80 66.56 63.87 56.55 29.56 77.33 -56.84 35.37 53.01 7.04 57.46 79.31 82.01 82.22 42.61 92.75 13.39 49.75 93.44 12.70 64.84 59.28 39.96 33.70 61.30 1.99 98.98 72.01 81.33 36.07 59.51 11.68 67.12 62.04 40.13 12.88 46.77 59.48 6.50 30.75 39.82 17.67 18.98 93.40 99.73 4.20 26.27 57.45 75.89 23.17 99.01 20.71 0.26 59.79 3.44 25.12 35.97 69.99 68.01 43.29 24.17 99.65 1.36 78.93 68.71 35.93 90.66 63.24 58.55 77.50 24.88 36.88 31.93 8.22 15.60 72.52 48.41 7.58 53.07 68.33 57.87 17.33 96.02 30.17 80.20 93.43 9.41 69.07 82.74 26.36 31.01 27.64 20.28 69.19 26.68 31.30 39.47 66.50 5.19 34.96 82.51 27.89 69.71 87.70 66.25 16.40 -33.17 19.99 80.73 77.78 93.26 20.08 48.54 70.73 43.37 87.41 49.62 20.92 29.42 21.45 9.03 28.72 99.30 6.74 58.12 2.17 2.26 82.11 84.04 20.72 69.62 51.75 9.34 85.32 42.87 29.13 3.81 38.06 10.99 11.98 46.31 85.67 77.12 80.38 69.51 80.23 30.86 48.15 79.88 43.75 88.17 22.77 17.91 43.07 95.63 43.76 2.39 90.75 43.32 69.29 36.79 11.82 8.58 29.58 95.54 9.88 82.92 20.89 77.94 15.96 58.23 19.03 74.35 83.77 92.19 48.75 62.24 81.92 2.40 76.52 77.51 88.62 81.97 67.62 52.75 7.53 28.02 42.45 70.69 6.72 75.92 92.27 77.82 15.66 41.65 44.70 69.01 77.65 86.85 33.65 13.58 7.17 7.58 26.16 9.29 99.75 -9.67 81.19 39.26 38.11 72.97 18.58 77.54 71.44 87.35 12.06 7.65 52.18 48.94 26.92 49.11 15.73 71.64 6.68 74.75 33.18 73.63 51.18 99.31 60.23 51.34 18.55 62.70 88.08 11.16 83.41 34.68 28.20 36.60 27.75 73.92 97.67 40.77 92.28 9.20 77.43 74.53 5.05 72.39 44.29 64.20 48.92 11.12 61.07 15.47 29.47 20.26 88.95 97.74 11.13 13.26 56.83 31.03 45.14 35.84 27.96 6.55 42.98 46.70 48.53 51.95 86.35 90.34 10.62 28.66 88.53 95.03 49.30 74.83 94.54 43.05 79.49 24.25 80.77 11.03 94.81 51.48 80.25 69.74 90.40 61.77 56.73 21.79 14.18 6.60 80.84 77.37 29.72 32.30 37.82 86.96 75.16 82.05 53.20 17.98 20.97 -76.27 80.74 34.43 93.76 17.84 54.27 59.99 36.95 58.13 37.70 66.82 73.64 29.44 95.27 28.22 5.72 63.21 55.71 72.01 81.17 9.73 16.28 8.79 98.56 99.52 63.25 47.02 78.17 81.93 10.52 70.72 47.74 31.35 1.05 54.08 7.97 12.26 59.51 4.20 19.16 79.23 63.30 83.24 7.88 55.46 93.30 16.90 88.99 21.31 10.87 1.81 28.47 44.45 63.72 5.19 96.28 56.53 71.63 70.03 97.62 46.85 87.38 37.49 12.41 3.54 88.08 21.08 26.07 86.29 32.92 23.09 80.25 87.60 87.74 23.56 22.96 3.74 52.67 7.18 70.69 70.57 35.72 65.53 16.45 54.35 25.05 17.33 10.66 3.85 41.42 88.19 40.06 11.74 4.42 6.18 1.73 5.55 69.63 89.62 94.39 -56.67 72.04 21.16 4.75 19.74 97.00 67.36 41.39 13.19 18.95 38.17 31.24 76.81 11.64 35.15 23.13 20.45 58.01 40.66 39.68 55.17 37.66 35.54 85.36 29.15 86.94 76.05 53.64 31.94 78.83 87.33 98.73 53.70 66.04 41.90 31.44 25.90 3.50 84.85 84.35 33.30 71.69 39.85 74.57 95.47 27.85 20.47 62.37 94.48 26.61 88.02 26.45 13.31 82.37 93.77 89.50 41.18 70.32 81.27 39.96 31.04 66.31 70.26 92.37 56.56 70.24 93.73 13.13 80.54 58.72 32.20 93.54 76.46 35.40 28.54 71.57 97.58 68.32 80.72 65.10 82.62 47.87 24.02 89.41 38.30 61.19 49.38 73.91 46.51 58.96 63.45 66.40 15.44 4.96 5.37 68.87 65.73 54.73 77.70 2.23 -51.18 97.24 74.44 21.24 55.19 79.02 85.09 33.80 45.62 3.27 34.16 69.40 30.35 10.01 36.99 59.59 17.59 86.08 89.31 98.93 64.08 35.64 83.75 36.01 17.79 65.83 38.92 59.13 48.04 29.87 81.46 22.55 54.74 38.71 61.02 70.63 40.06 19.69 58.95 1.00 64.19 65.17 56.55 73.59 46.69 19.69 53.72 23.18 89.34 22.56 29.88 8.15 11.21 29.91 63.63 71.85 67.44 99.47 70.19 71.84 19.20 15.96 3.82 58.45 47.65 85.56 63.81 85.60 97.99 36.13 37.38 42.57 18.19 44.71 55.66 81.71 48.33 42.36 14.83 26.82 44.46 64.14 52.99 19.04 69.07 7.27 15.03 88.34 67.60 12.44 27.30 69.20 73.51 50.61 4.19 17.31 12.50 39.60 52.26 2.52 -58.22 67.89 60.18 77.46 85.19 57.15 79.66 35.07 12.30 60.20 38.67 8.34 30.46 8.20 95.05 85.38 8.47 55.21 99.56 63.15 56.77 56.55 10.09 60.34 76.57 16.53 55.75 3.29 52.72 24.25 99.08 65.07 52.53 22.22 0.18 32.07 58.00 32.09 86.02 12.59 31.17 97.53 49.02 38.74 6.53 33.12 46.42 10.98 23.47 18.29 52.73 70.94 87.11 74.11 81.59 73.92 55.24 83.66 65.96 96.03 92.18 56.71 51.07 40.85 0.79 34.47 43.90 35.58 17.74 95.14 35.26 91.53 91.74 42.61 10.87 79.22 51.56 61.91 7.47 85.28 84.16 94.02 92.00 36.32 0.27 68.95 43.53 31.30 65.12 98.54 81.04 93.48 64.28 28.42 5.43 99.20 74.99 98.57 7.47 2.17 -6.35 69.78 29.19 76.92 88.93 36.54 8.56 22.40 17.97 9.54 84.91 91.85 14.87 76.18 25.95 30.60 49.17 98.43 25.41 96.22 9.63 63.45 91.03 88.47 90.17 36.06 60.02 48.25 4.64 58.47 7.09 64.72 3.88 62.84 88.08 52.41 68.95 75.58 64.77 79.94 34.27 57.25 37.22 42.45 44.60 22.39 60.30 25.08 52.75 60.62 99.02 42.12 12.82 46.29 7.05 59.09 79.81 93.83 32.43 45.79 6.22 69.46 9.24 87.18 96.28 11.82 86.88 18.40 0.26 99.81 8.94 17.44 48.11 24.14 58.77 22.94 7.47 1.83 35.81 91.29 13.39 47.76 54.87 19.82 56.24 41.91 26.95 17.92 93.67 94.34 69.94 24.77 96.15 99.10 69.43 8.23 84.80 20.29 24.91 72.93 -66.69 42.99 16.62 84.35 88.89 56.40 24.69 75.53 60.69 63.55 47.79 81.96 7.23 2.75 46.40 56.15 60.09 5.24 73.53 36.57 6.21 88.20 44.45 61.03 13.60 24.44 15.76 54.21 93.77 50.49 16.92 20.24 55.25 95.06 96.03 7.01 68.69 20.48 13.05 84.96 76.61 2.89 94.93 13.15 17.91 68.54 10.30 98.16 27.43 48.44 94.71 45.42 60.14 10.45 21.62 91.66 72.29 4.52 16.09 0.74 73.58 2.04 3.07 79.23 55.03 4.80 53.84 31.04 91.47 16.20 43.68 1.28 83.52 78.35 3.53 44.85 77.48 13.84 6.15 93.33 30.43 70.20 21.97 51.40 24.76 5.28 78.15 59.99 49.94 99.10 99.49 27.94 35.85 92.74 56.42 73.93 12.31 20.70 71.65 18.27 -20.22 10.18 73.40 90.45 23.17 74.10 80.81 94.03 53.24 90.10 85.81 27.67 51.38 74.25 7.08 89.15 14.80 97.75 91.26 37.82 36.44 74.66 98.10 42.33 0.00 29.50 96.88 53.11 64.91 19.60 50.85 7.59 85.43 74.93 96.12 35.03 8.74 7.65 15.01 10.72 72.83 82.82 47.75 30.11 25.96 79.86 43.92 95.76 27.10 17.71 67.44 44.81 80.55 79.15 61.75 75.55 62.85 20.90 41.94 85.64 19.62 82.50 6.96 22.49 96.90 5.27 83.35 95.74 64.14 64.28 50.74 96.61 52.12 97.16 34.11 41.27 18.53 70.12 66.61 24.96 97.83 6.88 86.10 74.04 34.36 20.71 46.13 70.40 3.51 74.51 34.10 30.52 33.08 14.04 65.00 88.12 73.57 28.49 87.86 34.72 -67.88 91.95 11.93 71.81 41.73 88.53 49.91 9.19 98.89 20.11 60.01 4.42 41.69 73.22 5.68 36.44 55.12 8.42 61.43 48.77 19.83 63.40 73.51 85.48 13.90 1.66 99.21 20.16 74.52 84.76 75.52 7.84 9.64 70.10 76.55 4.35 30.70 81.24 15.65 88.94 15.59 47.53 39.93 73.08 50.02 94.69 40.97 48.29 38.20 54.73 37.28 42.83 42.84 88.79 29.28 61.32 60.51 79.62 65.35 58.36 6.29 53.68 24.19 30.85 28.25 79.06 5.89 23.48 15.66 53.19 65.58 21.94 74.07 52.37 55.10 41.94 35.56 83.75 69.90 43.28 97.17 1.95 73.41 44.59 78.24 99.86 43.08 95.33 32.20 2.66 17.21 73.91 15.17 20.27 11.00 27.13 86.75 0.11 28.44 59.50 -92.20 22.72 97.85 61.97 50.90 82.83 77.89 98.81 97.12 45.98 85.39 18.39 48.39 96.76 50.77 25.97 58.56 54.00 88.13 25.27 67.65 85.36 75.30 13.60 98.06 42.10 46.63 58.85 34.89 92.11 27.21 38.21 68.47 75.36 21.92 3.68 98.39 49.86 76.93 59.26 3.99 13.15 4.58 13.22 46.55 83.18 53.32 92.60 5.10 29.29 24.88 93.37 73.10 15.19 49.80 17.66 56.12 84.60 24.78 70.58 69.99 88.03 58.15 89.59 50.17 59.95 90.43 25.62 60.51 27.95 63.92 42.37 35.41 72.74 32.34 82.58 34.23 38.88 86.80 22.13 47.51 5.73 89.68 11.04 80.53 28.94 78.18 63.06 55.54 73.56 48.97 23.69 32.10 66.57 15.96 64.81 72.14 38.05 3.11 6.13 -8.97 30.12 49.91 85.04 73.40 20.64 72.80 17.56 5.48 50.74 16.98 87.52 77.99 5.97 58.22 90.22 13.61 85.20 47.49 50.62 81.20 20.96 80.44 74.31 42.65 89.62 29.46 78.87 94.70 86.45 25.13 18.16 78.65 41.44 9.52 81.93 52.93 66.70 58.12 60.04 46.44 41.25 70.03 35.68 55.41 57.60 15.90 73.52 69.81 33.74 17.90 80.92 59.83 93.61 60.63 79.75 50.86 8.00 27.79 42.43 85.89 8.01 84.39 46.35 27.67 45.43 75.06 69.00 69.77 57.83 58.50 92.30 43.66 87.94 7.93 62.57 65.18 68.29 42.12 67.79 7.39 50.09 25.71 14.03 6.60 47.61 7.86 52.96 13.12 5.49 44.10 74.31 52.75 25.02 96.78 52.53 93.55 74.60 46.23 21.80 -2.03 0.92 69.89 9.37 93.57 23.82 1.06 49.38 42.08 28.66 31.04 5.94 65.49 71.27 0.03 57.13 35.49 28.58 72.62 22.69 49.62 84.11 41.21 84.04 23.51 66.86 11.01 5.21 76.60 4.38 13.14 42.61 54.82 73.22 58.78 27.93 42.73 59.33 1.22 41.88 68.68 76.02 71.15 23.09 70.25 48.38 69.71 21.96 76.74 59.90 52.75 28.63 26.00 5.95 65.87 81.85 26.47 70.05 96.62 5.55 20.56 75.09 58.53 45.90 94.03 46.24 66.06 68.78 73.50 91.43 98.35 11.71 90.89 72.12 67.00 39.37 99.28 47.40 2.97 16.12 96.44 84.85 31.01 49.48 7.22 75.78 98.36 31.03 53.77 94.57 51.92 66.74 60.79 82.32 87.86 63.20 68.37 47.29 72.51 54.89 -23.23 77.80 43.18 89.16 84.78 73.73 80.06 86.88 65.77 48.49 81.71 8.45 26.29 32.88 39.79 13.05 17.89 59.07 9.36 98.04 31.61 79.61 4.99 9.51 56.33 91.09 34.87 23.76 89.65 58.79 17.71 79.99 49.60 41.56 82.54 59.88 4.58 21.23 4.43 32.96 82.60 85.72 40.23 9.12 13.66 32.26 92.39 89.41 77.96 83.18 25.85 15.89 61.66 21.78 84.23 60.90 28.27 39.28 76.83 1.45 70.25 40.32 91.17 28.81 46.40 61.84 57.15 46.94 25.97 21.21 40.22 33.81 16.30 23.99 42.29 46.04 44.48 53.43 72.79 25.41 42.78 7.31 97.18 43.60 17.11 44.89 41.67 66.71 57.26 19.32 80.74 26.00 34.54 17.80 42.85 86.58 30.84 56.40 93.05 11.49 -33.77 20.14 3.34 50.73 23.98 84.26 62.31 80.34 82.46 4.40 95.42 38.94 54.22 30.50 34.58 47.63 17.74 64.61 94.92 23.28 33.97 26.04 22.40 37.32 71.73 72.85 21.03 88.54 79.68 12.45 83.94 43.09 4.21 95.35 62.74 31.61 72.75 81.27 47.43 95.05 15.10 44.59 35.93 50.36 29.34 65.70 4.22 43.88 19.56 24.85 57.29 57.13 59.62 87.67 57.97 50.12 8.59 17.49 97.17 27.16 19.63 94.36 74.54 72.94 71.01 28.86 84.19 59.00 37.74 0.82 46.17 19.82 0.37 68.35 46.32 21.12 11.86 97.50 68.09 68.81 2.37 27.06 90.49 9.37 45.05 76.02 27.73 95.94 68.70 0.66 83.48 35.39 58.90 23.57 11.08 89.82 25.73 67.16 36.25 23.47 -78.60 92.81 63.87 67.91 49.54 98.78 6.90 98.48 93.27 75.69 97.21 15.74 85.00 2.08 59.03 75.66 91.06 97.76 97.46 31.85 48.44 53.76 50.74 37.35 99.94 14.30 14.86 71.52 33.98 35.92 32.02 12.14 88.07 4.98 76.06 14.39 62.38 47.65 55.07 61.13 99.79 17.46 68.17 87.51 85.01 78.10 17.91 33.28 7.46 21.40 49.18 28.78 68.09 83.78 14.33 73.48 14.09 26.42 61.92 39.75 49.19 3.47 10.01 1.02 40.71 79.79 28.72 59.78 28.26 1.43 87.91 91.05 79.41 76.94 98.31 43.73 46.67 45.47 3.24 39.47 67.23 74.13 92.70 84.95 11.57 63.81 75.87 32.03 31.34 64.74 22.45 66.13 82.71 48.92 59.46 15.01 34.55 60.07 95.25 14.72 -42.39 61.27 62.86 32.43 61.97 89.72 95.34 32.69 49.41 65.91 64.69 88.18 78.22 62.75 52.03 55.64 10.69 23.77 52.49 99.07 61.15 1.19 81.02 69.17 5.29 26.95 21.04 10.95 59.45 7.25 16.59 93.80 56.25 54.02 3.05 10.87 29.04 41.25 66.07 82.41 63.84 13.01 39.11 30.65 38.99 36.09 42.35 14.28 84.96 95.15 2.72 58.85 92.69 19.58 84.23 13.28 26.86 7.99 98.49 25.16 68.00 65.93 30.99 99.73 13.22 66.57 54.78 80.88 8.71 88.25 62.22 1.10 51.63 12.25 80.20 68.26 83.24 9.12 20.59 90.04 67.35 65.63 70.09 51.96 35.04 20.72 46.53 62.84 55.47 91.51 95.32 65.81 5.78 55.15 67.46 6.12 31.36 74.67 0.03 34.54 -78.11 81.72 56.99 12.38 98.38 39.91 4.23 31.21 68.85 57.20 16.99 56.22 78.46 73.76 71.84 98.31 60.92 32.64 29.76 75.63 20.80 29.92 19.76 2.24 15.83 36.35 2.30 58.39 94.43 99.98 27.39 42.13 11.83 75.62 6.64 20.54 75.07 87.99 16.53 70.88 69.18 26.76 57.61 58.23 0.35 3.98 56.40 75.00 42.37 61.16 95.42 8.33 82.40 47.89 70.56 63.18 42.94 93.27 55.56 49.08 13.37 36.67 40.21 47.67 26.94 34.57 52.57 33.02 78.12 3.36 37.02 20.79 5.26 88.96 94.81 5.34 87.99 51.35 81.62 33.11 43.93 66.68 23.40 31.83 35.43 91.57 16.99 0.58 23.56 1.33 91.70 13.57 26.25 94.13 85.14 99.48 25.77 30.37 90.57 79.54 -47.49 71.11 81.79 8.24 60.83 4.32 97.97 47.73 70.63 40.84 69.19 33.23 18.17 69.06 56.42 35.66 56.57 45.69 94.38 90.00 9.92 27.47 8.97 13.59 3.63 96.74 82.40 38.58 53.96 24.98 96.82 72.36 38.66 77.52 4.56 75.92 30.68 52.33 83.05 37.33 35.33 82.17 94.32 52.77 46.74 20.02 76.71 59.86 27.04 50.42 33.28 63.16 95.59 33.22 92.33 57.93 32.92 78.31 48.53 52.87 36.98 89.62 68.24 26.56 30.61 72.64 32.48 48.01 83.64 54.59 43.13 8.86 42.78 16.56 55.61 95.30 37.62 7.05 15.20 98.35 86.61 69.69 90.61 6.35 83.58 2.38 46.62 3.74 36.46 99.76 2.86 71.35 45.27 57.50 24.22 42.20 64.11 16.06 0.68 44.57 -43.42 80.66 61.94 67.72 26.95 74.05 91.61 14.93 25.66 56.96 26.96 76.77 77.76 46.48 79.40 33.02 17.60 25.87 60.75 8.35 92.52 45.78 98.44 97.04 13.08 8.55 19.10 42.35 75.94 75.69 30.72 57.20 16.91 96.45 72.82 32.68 11.02 66.12 39.81 86.14 36.70 61.26 94.65 23.67 27.41 4.36 53.30 95.65 10.06 15.69 18.58 90.19 92.27 60.50 32.12 84.56 43.82 39.38 72.26 42.93 75.35 83.42 56.06 46.40 83.21 23.31 75.23 86.27 71.59 57.63 44.32 65.35 42.01 61.28 18.42 49.54 69.95 72.61 19.28 85.70 18.03 58.31 95.69 80.85 41.49 60.61 72.17 19.99 76.98 72.81 53.59 81.77 89.07 83.85 81.26 60.16 63.07 5.76 12.62 34.35 -91.12 99.95 47.78 37.80 28.43 29.95 74.96 67.27 9.07 31.45 42.07 81.56 88.93 21.37 25.63 98.66 79.11 29.81 83.83 5.48 34.16 22.67 68.07 6.44 28.06 69.38 2.93 67.99 15.67 42.44 23.40 95.62 99.22 38.33 28.24 98.09 84.26 17.86 84.89 43.05 49.37 26.89 43.77 64.38 28.34 20.08 84.99 26.57 36.85 55.60 53.24 19.58 0.45 29.00 44.07 87.60 67.80 87.56 27.79 67.18 99.95 20.65 55.79 20.82 36.28 81.38 23.39 70.02 13.98 14.50 51.47 80.82 97.79 80.87 70.08 71.28 11.66 80.78 20.14 36.20 88.27 97.77 56.90 47.47 20.39 98.79 5.66 68.92 26.82 66.57 45.50 97.87 48.13 6.21 61.90 45.29 34.49 54.97 45.73 57.31 -9.62 84.12 37.40 2.57 3.55 25.58 66.31 1.84 51.44 40.17 33.41 88.59 77.13 91.37 9.87 90.59 87.29 4.64 4.10 24.88 88.59 59.07 71.21 29.01 14.48 42.13 11.27 85.35 74.44 36.44 13.66 36.51 84.73 25.83 49.46 59.58 26.02 83.17 11.45 76.88 56.80 76.32 86.22 73.85 88.37 7.25 99.25 36.62 1.36 31.14 63.87 16.56 50.45 81.86 3.49 28.82 7.09 7.52 64.16 39.33 31.34 35.36 75.50 55.44 20.17 48.98 15.21 83.89 95.48 39.79 27.40 57.29 62.76 97.74 38.38 67.90 74.86 18.04 23.85 72.13 16.56 44.51 19.13 77.66 56.63 16.39 9.59 51.40 35.03 15.64 3.81 19.79 44.23 45.72 43.33 65.00 40.67 71.01 75.03 35.49 -73.67 58.43 90.04 47.29 89.92 40.44 76.75 30.14 60.06 90.88 65.11 41.88 70.51 98.23 43.48 48.36 28.26 64.90 18.90 75.02 68.97 20.10 99.09 84.94 59.29 38.91 81.17 63.38 42.30 97.78 23.61 13.67 71.84 43.53 71.43 33.89 22.95 40.75 59.20 98.92 95.46 8.49 87.12 74.47 71.77 98.35 22.20 1.51 66.03 75.46 79.45 57.03 11.58 29.90 8.50 62.14 92.53 11.55 77.36 95.00 30.96 57.38 38.34 35.18 32.61 17.10 79.00 26.92 93.48 51.60 75.56 74.37 75.38 84.41 84.55 98.11 45.74 63.51 30.90 1.73 10.01 47.93 47.32 65.72 18.27 4.92 81.77 10.74 74.28 10.00 77.30 33.07 41.49 30.11 73.09 97.80 31.57 49.98 80.01 22.63 -52.34 28.88 44.00 41.28 25.75 70.85 93.57 59.91 43.44 18.09 22.65 74.87 95.03 0.92 16.09 44.50 75.09 51.18 73.31 2.64 95.02 47.06 78.29 58.88 28.22 14.50 69.33 63.23 95.62 79.28 62.13 50.44 22.95 86.67 57.95 17.27 78.54 90.79 23.65 32.42 33.04 43.57 41.34 37.68 56.07 58.66 99.99 76.26 63.13 99.16 63.12 20.33 0.87 67.23 42.31 72.86 14.49 73.31 83.20 16.96 43.07 77.09 51.86 24.80 96.90 39.71 75.65 36.86 36.27 79.62 5.42 86.03 76.11 90.50 82.45 87.97 91.87 73.80 9.70 96.07 99.03 48.40 87.91 65.57 14.49 24.78 35.14 17.63 79.25 37.51 85.36 90.24 87.17 13.50 4.93 28.46 56.25 28.96 76.98 8.09 -31.08 45.74 16.11 82.10 78.31 52.32 84.97 9.72 18.65 64.76 56.59 80.25 94.00 66.73 68.04 32.55 24.20 8.65 87.69 11.20 63.34 43.25 95.43 14.54 4.41 77.29 2.45 90.44 66.62 22.00 18.90 49.75 99.08 41.21 15.48 5.85 38.64 27.76 8.95 53.05 93.23 24.79 79.15 85.15 2.76 73.24 82.90 6.60 29.93 50.76 34.17 46.64 20.80 8.32 66.01 80.71 61.11 25.90 11.01 96.34 38.19 61.25 54.70 93.23 85.53 13.22 31.19 74.14 40.67 25.28 65.78 63.06 42.40 1.13 57.82 54.04 45.87 77.89 57.35 57.02 48.79 94.61 63.98 35.27 5.31 61.96 9.48 83.28 62.37 20.96 28.34 14.35 96.61 72.66 31.30 13.00 83.11 12.38 71.01 11.41 -84.57 49.08 68.92 98.15 20.18 33.68 36.23 73.86 60.18 3.94 93.64 13.26 96.98 94.67 53.06 45.87 15.59 19.87 36.78 55.67 88.42 17.13 26.07 75.94 96.60 36.95 38.71 59.88 77.20 17.30 52.99 31.51 77.64 38.56 47.77 86.41 70.97 38.59 2.39 15.83 3.19 83.64 52.06 54.77 63.18 41.29 11.69 66.47 34.86 33.64 19.64 20.91 79.07 39.99 82.45 0.67 68.07 22.54 44.82 21.62 69.07 80.16 4.04 8.84 29.65 86.56 9.60 2.28 99.58 3.21 34.40 59.97 40.32 49.91 82.34 64.31 0.83 90.89 64.31 31.09 89.38 74.06 30.40 88.56 70.40 56.82 78.86 29.02 5.70 55.56 85.53 13.57 65.49 55.67 27.34 91.95 79.04 34.22 29.11 4.73 -81.31 56.51 74.71 54.38 13.95 27.97 23.54 96.46 99.97 0.33 44.88 34.69 60.29 59.25 75.92 82.72 89.52 9.57 33.27 89.77 58.22 66.50 29.82 36.62 45.56 21.28 62.04 72.84 47.33 82.06 67.01 95.42 50.00 44.11 32.84 83.44 56.87 6.66 6.83 32.84 88.93 49.30 87.98 15.58 83.30 82.88 39.20 10.15 17.36 71.02 22.45 90.05 31.57 35.42 11.10 78.86 22.52 80.63 37.13 18.38 42.38 13.86 48.83 78.28 63.50 12.41 90.43 36.15 57.71 79.52 45.51 13.54 0.21 6.29 77.04 78.98 63.32 0.49 90.92 47.62 75.88 77.55 69.18 73.06 21.07 52.27 90.02 53.79 67.49 21.10 1.72 14.20 63.48 93.15 84.73 10.22 24.97 3.93 26.62 68.47 -42.22 8.64 67.07 52.03 56.86 25.67 1.56 64.28 98.43 17.61 68.39 78.65 69.84 41.84 10.72 88.72 10.39 5.59 60.68 86.72 5.33 90.14 79.29 41.30 63.60 47.02 14.28 68.91 29.31 91.96 30.77 86.08 78.03 24.60 62.01 62.90 56.39 98.63 72.84 98.21 31.02 85.23 55.04 45.26 85.60 23.22 76.37 87.60 9.12 70.83 29.38 47.63 41.25 97.20 88.43 84.99 38.79 38.22 77.65 51.96 19.46 4.21 29.67 11.90 13.63 83.09 90.67 96.25 79.79 77.67 11.28 92.34 79.87 89.70 6.61 17.46 92.04 18.73 90.38 17.16 43.62 88.98 58.50 58.29 66.19 40.92 8.77 62.14 0.28 27.13 29.96 78.65 85.22 47.40 32.84 86.21 34.82 3.87 1.15 41.89 -83.89 53.11 47.37 70.68 49.46 56.44 55.22 1.30 70.39 80.42 17.97 17.11 3.20 88.01 42.72 31.47 36.06 75.19 7.59 41.81 13.63 2.14 88.28 89.49 42.98 82.59 91.27 13.62 90.22 21.88 37.49 57.22 7.59 60.25 99.38 94.78 3.05 93.43 22.80 60.23 76.26 75.56 30.95 93.09 70.18 42.06 84.46 60.88 46.71 16.98 6.45 95.19 61.91 87.26 61.14 31.27 41.60 17.56 24.51 8.10 40.94 76.70 74.46 68.36 67.96 27.88 25.37 33.67 11.30 69.63 80.36 7.49 31.51 44.67 11.03 65.22 26.24 97.55 88.73 23.17 32.56 48.41 79.75 74.48 63.85 37.05 42.88 53.13 73.61 58.77 14.83 80.14 38.27 71.62 49.75 17.89 42.13 15.58 79.80 84.02 -54.28 20.64 93.76 85.62 45.01 50.95 18.34 72.54 50.84 98.00 85.32 30.36 51.59 33.97 91.69 85.73 7.33 32.32 42.62 77.79 23.21 21.72 39.67 40.27 35.09 82.45 30.94 27.75 94.04 19.51 20.20 72.45 38.94 0.58 94.68 93.94 55.74 23.69 97.33 54.44 25.69 61.48 72.46 34.93 11.89 10.45 69.14 47.52 5.12 59.84 42.93 54.79 34.10 53.22 95.23 25.51 30.38 57.75 48.21 40.01 32.84 11.18 73.23 15.84 44.58 1.21 61.02 64.19 16.03 52.06 99.63 98.39 56.77 71.59 98.58 83.05 29.48 0.57 85.43 85.56 46.38 33.73 0.77 58.12 76.89 40.71 11.98 32.87 26.72 48.91 82.05 17.46 1.30 76.09 47.69 21.67 85.89 63.35 32.77 8.63 -6.77 85.14 26.75 14.35 47.81 97.52 99.73 93.76 31.48 40.81 23.28 4.92 58.26 25.58 21.14 57.45 25.54 8.47 26.92 68.17 1.03 12.02 8.07 65.17 90.33 83.54 62.86 30.94 93.28 77.43 75.91 80.77 19.49 95.63 49.67 74.64 61.40 9.91 14.83 74.87 91.06 77.58 28.72 71.91 59.90 68.22 16.09 6.61 3.02 37.88 78.75 69.68 21.04 75.56 82.09 31.99 92.55 44.19 29.70 13.81 5.40 65.89 14.22 80.57 1.04 0.16 0.74 62.64 99.43 11.31 98.55 36.90 64.40 60.10 45.11 56.55 36.41 50.62 63.52 9.56 65.46 64.63 77.92 67.73 32.43 75.01 52.94 65.53 30.40 66.54 70.07 22.81 18.98 60.63 6.47 93.81 67.82 78.45 40.81 22.38 -78.47 25.21 91.46 87.33 54.94 71.97 13.28 46.52 24.76 37.41 16.37 28.68 56.33 15.17 12.70 29.25 86.52 51.94 10.30 94.28 70.98 58.78 93.28 62.14 40.13 6.30 39.12 29.61 77.63 41.25 94.54 50.88 44.31 88.81 37.72 18.28 75.79 7.12 28.52 12.94 76.33 19.02 42.91 45.17 43.59 69.06 28.65 72.84 65.02 79.90 74.32 77.35 78.31 5.07 79.24 57.82 28.78 45.97 33.90 62.93 71.59 12.99 70.27 28.46 17.65 20.49 90.24 30.13 65.29 11.11 36.32 49.84 39.02 52.75 13.73 67.75 47.17 17.31 63.03 21.07 61.92 86.63 74.12 89.36 46.43 97.14 85.25 53.52 88.73 22.65 82.52 2.55 31.44 48.53 31.58 14.28 76.15 96.13 88.28 85.75 -94.07 82.93 40.99 9.23 38.04 33.45 28.65 14.55 34.82 42.24 41.84 82.26 83.55 77.78 59.12 32.25 93.36 71.06 39.49 99.78 23.24 74.55 33.64 33.06 73.56 37.38 50.78 37.00 40.40 58.56 23.63 71.30 45.20 80.72 87.24 65.62 48.17 38.72 78.98 14.04 77.43 32.45 16.89 34.96 42.46 67.47 52.27 68.27 60.34 51.91 37.55 66.32 11.68 1.41 54.40 25.11 39.51 50.08 12.36 64.55 27.94 48.26 33.06 75.32 98.80 26.87 57.05 52.30 33.30 4.88 88.72 77.42 41.34 20.93 7.66 14.59 21.43 33.96 70.46 23.77 83.01 23.78 1.70 21.68 28.74 64.02 22.72 33.77 90.08 31.49 71.85 38.04 41.30 69.91 51.53 56.97 60.78 99.13 78.61 4.52 -69.01 84.91 47.91 83.80 32.89 84.41 80.72 44.93 7.46 76.23 83.78 97.04 9.59 52.16 72.20 68.71 82.85 32.71 13.11 53.09 91.25 88.34 60.80 61.88 46.50 75.57 4.16 61.53 87.00 81.06 30.99 22.31 41.87 15.40 28.38 70.08 9.29 78.57 61.79 75.76 44.72 29.67 87.98 11.22 3.79 48.32 37.20 79.24 15.40 88.98 63.71 78.64 48.26 75.54 67.30 46.63 22.33 1.86 13.29 58.26 24.75 93.00 21.90 3.22 72.63 73.89 83.06 3.80 57.69 60.87 60.98 74.65 24.87 90.19 1.65 27.64 34.04 75.17 78.09 32.66 97.71 40.29 15.29 66.46 81.76 28.81 14.04 35.84 22.02 15.68 39.24 17.14 26.51 93.19 1.83 56.14 50.72 88.45 53.62 34.59 -42.68 76.36 48.58 69.91 2.51 32.41 61.68 19.40 53.41 38.91 56.13 26.45 36.69 9.41 42.15 88.99 15.38 17.50 55.99 95.60 92.96 82.91 48.68 17.26 62.07 86.13 33.31 75.40 18.00 87.46 88.56 82.91 16.15 30.18 3.59 24.52 61.28 17.43 41.56 79.00 47.39 0.85 1.57 29.65 33.81 32.28 84.67 57.84 10.63 30.66 78.28 3.96 6.75 30.92 90.20 50.75 21.00 0.28 45.01 14.29 58.22 25.92 46.98 25.35 17.72 64.42 69.05 38.92 43.09 61.90 78.45 46.05 5.57 73.16 65.75 98.66 31.08 27.40 55.57 80.03 99.54 28.03 35.57 85.36 1.56 2.66 48.06 42.73 40.36 31.15 51.87 8.30 2.83 31.55 18.96 36.14 64.44 39.07 56.03 58.26 -36.86 43.59 66.04 32.32 84.03 11.22 59.59 56.67 31.94 58.66 42.05 84.45 43.11 43.10 68.04 76.64 37.71 91.45 82.22 7.76 47.41 38.87 54.16 49.01 36.71 23.55 92.23 64.94 94.16 41.01 70.68 18.46 36.09 80.79 88.73 18.32 66.19 44.73 98.26 78.57 70.76 83.30 5.77 61.50 78.20 16.00 34.03 41.10 98.18 99.68 3.63 27.72 85.72 83.31 68.73 91.90 90.63 73.95 94.53 26.81 83.20 21.64 35.83 24.56 57.21 41.67 97.67 28.68 66.93 70.18 4.61 74.30 58.65 8.97 27.16 4.14 39.42 4.53 49.62 68.03 43.82 12.56 99.11 85.67 71.30 15.18 5.04 19.66 85.98 47.29 13.66 68.81 97.03 48.34 79.47 91.71 67.54 28.29 63.11 5.88 -9.79 78.12 13.93 29.41 83.28 69.34 32.07 84.03 51.45 6.66 76.61 12.09 48.98 14.79 75.41 16.58 39.55 81.79 11.57 23.54 96.62 74.89 0.22 18.33 24.99 98.15 78.36 66.10 42.66 52.66 27.56 74.93 1.38 1.72 75.25 58.11 54.85 32.26 95.36 19.92 84.47 47.17 16.57 71.42 89.09 64.17 92.16 39.24 82.99 28.22 34.69 83.20 46.95 93.40 71.80 8.25 52.32 89.86 3.64 18.86 20.11 14.22 8.90 59.01 4.46 45.20 90.08 7.89 76.12 10.56 57.41 82.88 35.16 90.06 71.80 47.07 76.03 59.02 4.71 72.90 8.37 0.74 20.51 73.71 96.65 21.74 34.82 48.07 2.88 0.38 38.12 57.30 84.34 70.70 74.20 67.55 62.94 85.22 91.79 44.61 -63.50 77.28 92.02 55.19 41.21 19.31 78.96 3.90 73.38 74.56 53.45 39.19 71.03 21.31 40.01 8.45 91.64 4.09 31.46 2.35 11.27 25.33 12.15 33.96 15.72 23.26 98.32 69.94 27.34 93.12 1.09 54.19 91.30 84.66 52.19 61.07 25.19 46.00 28.96 48.62 55.74 13.76 66.02 73.46 34.85 48.03 84.12 12.74 96.51 68.96 18.64 94.88 80.64 36.09 10.61 75.32 15.69 26.63 10.93 44.57 8.69 38.92 60.45 19.21 1.20 41.94 19.54 68.17 34.81 14.11 74.96 43.98 76.53 59.85 29.53 8.65 66.47 13.99 32.21 11.99 38.22 87.71 91.21 89.96 2.46 43.49 45.76 11.61 27.96 58.59 77.51 73.58 1.27 26.55 14.37 29.42 57.54 86.33 96.81 99.22 -18.36 46.27 74.86 82.92 11.86 75.65 43.76 60.03 48.26 2.95 22.72 34.03 65.44 91.81 29.99 35.24 38.82 74.04 67.24 88.18 34.74 96.24 97.91 39.61 23.16 38.99 44.81 62.41 52.58 18.54 71.73 99.11 3.77 87.10 55.28 68.92 83.26 61.00 57.88 47.89 68.14 3.43 18.75 22.21 59.38 5.26 38.70 10.43 72.89 52.32 27.81 3.11 18.41 91.18 81.62 87.47 76.04 79.78 15.47 38.23 40.63 28.17 58.97 53.63 82.70 22.45 17.60 45.64 77.06 11.78 78.20 62.78 15.90 21.27 91.82 22.14 56.23 17.84 66.06 50.52 65.40 78.25 26.03 44.69 88.32 58.32 80.27 98.37 0.24 80.07 6.96 79.75 58.29 45.32 66.56 7.07 32.47 44.23 40.43 98.29 -64.42 79.41 53.64 22.94 41.53 13.96 96.54 32.53 17.73 12.61 9.45 25.39 56.27 64.81 14.84 87.35 98.67 4.07 59.37 74.16 57.05 77.01 58.93 99.03 58.83 53.37 91.52 59.17 90.65 68.91 40.70 57.46 63.13 98.85 81.82 45.46 11.89 91.47 51.83 84.21 52.99 71.58 18.26 29.99 56.01 16.79 81.14 61.04 55.86 53.84 23.35 26.78 28.81 11.26 26.49 40.53 55.12 75.84 53.29 41.68 53.05 82.01 80.02 93.29 55.16 91.89 25.88 0.73 99.20 75.77 39.09 71.03 13.41 3.08 77.23 76.41 49.36 42.30 27.47 49.67 45.15 17.38 58.43 82.28 23.75 25.53 16.81 72.25 21.32 30.84 70.72 20.73 32.69 35.91 15.82 53.82 43.70 70.89 81.13 30.80 -70.58 83.70 1.63 6.31 55.16 98.47 41.81 70.15 40.92 80.38 91.74 12.78 1.80 6.35 28.06 35.75 95.77 47.74 44.79 0.19 26.96 24.31 17.87 24.41 24.78 27.15 77.94 10.39 8.34 95.75 81.76 30.80 90.70 56.90 17.06 25.52 1.24 58.64 45.96 37.53 5.55 96.33 34.98 33.36 13.17 32.15 97.80 61.21 13.10 51.26 40.44 17.68 42.65 68.29 76.11 40.76 40.95 49.41 93.17 37.63 29.31 73.42 14.83 70.84 97.29 97.70 18.54 26.78 53.78 2.30 29.48 32.42 92.04 3.06 64.75 44.00 72.88 67.95 4.05 84.90 20.06 56.35 58.03 17.80 20.97 56.18 28.62 86.70 90.83 1.62 98.32 76.18 77.89 90.68 17.08 60.83 12.49 43.66 84.89 21.92 -65.73 93.68 81.33 72.96 23.50 14.46 24.18 21.44 39.97 79.35 45.41 63.29 82.34 70.97 84.51 25.75 31.42 48.97 74.38 92.42 26.94 94.46 71.19 88.64 4.63 60.98 73.23 60.87 1.00 63.35 40.91 29.18 22.29 35.12 44.63 76.13 60.89 40.64 54.40 28.37 7.85 93.17 27.11 48.44 45.41 80.08 46.89 17.77 10.37 60.43 96.75 4.72 66.38 25.10 37.04 6.72 28.74 36.49 33.41 93.91 94.40 81.66 36.17 32.26 6.12 34.47 50.18 49.61 30.96 57.00 29.57 3.45 4.59 40.06 19.27 98.75 70.31 49.40 51.10 77.76 38.65 4.67 76.72 25.85 7.61 12.02 55.68 34.71 2.44 71.80 62.66 3.54 89.05 62.80 94.38 54.38 80.29 92.21 1.01 71.73 -69.58 55.89 49.74 12.36 48.63 86.85 46.28 24.90 38.23 43.56 35.37 99.38 65.34 47.11 38.62 16.25 59.25 88.15 46.63 64.50 93.10 95.24 70.94 40.45 90.22 16.63 31.01 81.89 70.51 33.51 79.92 58.71 61.67 97.56 10.61 25.78 85.93 17.43 3.09 88.04 52.24 70.46 82.44 52.47 75.73 50.17 55.56 68.09 41.92 75.82 53.60 97.34 44.00 17.27 61.63 14.79 35.12 5.29 82.42 76.51 45.72 98.46 76.03 45.95 19.90 79.41 52.49 87.73 54.48 79.13 80.72 11.23 64.52 72.45 81.70 70.36 83.61 0.42 91.35 36.67 89.35 81.16 90.53 40.41 47.23 48.29 51.54 92.63 77.03 89.86 83.87 36.11 6.20 89.13 92.53 22.32 42.99 55.73 65.24 30.85 -13.96 87.77 84.16 36.13 17.56 99.56 40.63 90.14 74.22 11.55 92.55 36.52 27.86 81.35 15.49 19.96 69.58 33.93 78.07 96.86 8.44 84.30 70.05 40.03 51.50 42.89 89.51 76.68 45.95 32.40 96.24 75.06 61.29 74.02 54.79 37.42 19.63 7.29 98.17 67.39 3.04 80.06 18.54 23.61 61.07 2.83 51.52 43.11 5.56 92.56 51.21 6.42 41.27 18.69 1.83 81.64 81.41 81.85 47.31 78.33 91.87 88.63 33.52 93.51 80.84 51.62 3.51 7.55 11.94 57.34 52.01 49.56 93.60 0.21 89.14 80.00 92.08 77.25 78.64 1.31 54.52 10.43 9.66 69.70 39.26 100.00 22.03 94.44 19.75 33.09 51.62 7.06 63.18 69.05 31.47 1.23 86.30 91.21 79.73 43.20 -23.10 30.82 42.26 22.47 72.56 78.41 93.38 31.33 74.13 85.21 49.40 28.63 79.45 87.32 90.52 1.33 9.97 72.75 69.92 23.35 26.14 82.20 14.29 55.26 1.24 68.54 61.07 86.52 93.34 63.89 6.92 13.21 80.36 16.97 40.91 38.40 4.03 55.93 73.73 18.23 26.49 34.50 11.64 83.10 20.60 80.62 8.02 53.96 20.38 80.71 74.49 20.05 92.89 59.93 44.47 44.48 33.74 63.54 27.91 16.01 80.52 96.53 15.75 56.49 7.69 31.97 43.52 77.76 53.87 23.30 65.31 98.37 27.90 16.63 42.45 98.46 6.03 18.05 83.34 37.99 49.16 56.60 42.90 19.59 39.73 12.94 55.13 85.59 15.18 45.26 69.14 5.67 12.46 28.90 19.93 21.86 25.81 80.56 88.20 31.56 -21.09 67.74 7.56 23.45 28.11 92.48 72.19 92.72 68.38 93.27 94.65 66.70 89.20 48.11 1.17 51.07 92.83 81.84 32.31 20.38 56.53 81.88 63.73 59.60 53.06 68.95 94.62 51.27 94.29 33.45 98.18 10.12 14.49 67.01 42.57 52.88 78.77 24.02 8.94 43.53 72.26 22.88 86.70 62.89 87.54 20.41 52.66 15.16 35.12 4.13 74.18 69.00 52.16 84.63 77.11 53.51 49.01 79.74 33.58 54.26 21.58 83.25 32.01 70.18 39.35 10.37 80.82 72.88 4.50 61.91 43.25 85.05 41.86 41.85 6.96 56.23 7.98 30.32 18.33 18.43 92.90 95.37 73.35 38.33 79.00 63.62 96.83 97.85 66.91 74.14 58.14 92.89 10.78 21.07 71.07 96.13 15.76 67.37 95.39 5.29 -27.44 93.93 55.02 61.63 94.33 45.34 70.29 21.39 63.60 48.15 19.53 86.49 51.29 18.73 70.90 44.08 29.17 24.91 96.86 28.80 36.39 82.95 29.48 75.91 8.96 2.55 46.45 35.57 2.03 33.02 28.89 92.75 49.12 44.31 50.15 50.39 38.26 55.85 79.64 40.38 85.38 99.44 87.15 64.45 75.99 87.28 61.46 19.41 9.42 33.29 32.57 90.60 85.95 94.12 90.45 90.17 36.68 5.40 73.70 29.78 55.61 39.74 39.28 10.49 12.91 53.42 94.47 8.21 12.04 61.61 79.20 64.07 99.58 99.97 87.29 27.96 31.28 58.12 98.32 85.24 9.42 93.86 85.82 49.02 19.57 99.20 69.22 99.80 25.25 55.53 84.28 83.81 44.81 5.08 21.81 42.47 23.59 27.89 92.88 24.03 -55.29 89.75 4.67 67.25 26.56 47.23 21.17 78.68 10.87 91.99 52.61 96.54 15.48 1.81 59.14 19.87 31.04 58.75 99.76 10.12 79.93 1.38 49.83 94.64 39.24 84.76 36.44 79.81 67.76 92.76 78.89 13.75 96.11 74.05 68.08 62.96 49.39 82.83 40.57 69.13 91.73 5.06 28.30 46.27 22.47 21.95 59.88 91.66 51.84 88.41 38.14 88.37 37.18 68.65 50.16 78.35 55.11 24.76 84.16 28.37 75.40 81.18 1.01 82.85 40.41 95.12 26.39 19.28 24.60 76.90 51.47 77.86 11.53 83.04 90.52 94.50 81.45 46.18 2.02 85.47 65.98 59.25 13.75 76.75 15.60 0.67 43.53 22.69 14.38 78.73 57.01 68.62 77.68 43.18 79.24 95.29 84.92 13.33 77.63 96.95 -33.13 1.77 91.84 52.86 96.09 68.71 64.00 87.15 26.71 35.50 53.46 24.07 83.63 32.31 77.55 4.59 11.52 29.72 33.53 92.57 7.30 95.07 23.91 5.68 94.98 78.89 77.33 64.95 73.31 96.03 95.03 93.92 87.36 70.59 56.95 31.22 46.64 28.09 52.31 77.31 87.93 92.02 59.51 29.28 10.59 94.15 37.46 45.57 97.17 60.20 61.24 90.63 78.41 59.18 22.97 30.89 51.55 79.83 73.95 45.09 31.63 12.10 2.64 85.37 77.33 53.17 89.67 46.41 54.09 25.61 85.67 28.87 14.62 35.97 98.91 41.31 9.91 91.64 89.15 66.12 60.29 72.35 82.07 71.59 62.82 38.31 45.83 66.76 62.97 87.22 38.18 94.26 0.09 72.81 73.28 22.23 91.12 13.43 80.44 56.33 -76.60 42.54 36.50 84.65 86.99 4.79 43.22 19.04 22.17 27.36 51.95 27.52 13.84 35.91 90.67 61.35 83.55 70.53 37.36 51.43 45.14 11.30 35.14 33.91 99.96 69.57 75.08 99.56 88.05 26.49 99.11 5.92 74.29 32.49 36.79 26.00 16.74 92.33 52.34 4.45 56.31 73.97 40.29 44.35 57.18 30.76 48.81 37.83 5.91 42.44 3.42 57.00 98.52 48.71 43.48 4.49 18.51 59.80 40.94 30.19 13.99 36.03 52.35 23.22 27.89 18.68 47.26 93.41 74.31 60.15 97.98 21.58 9.39 27.93 51.12 44.94 3.74 75.41 67.14 75.68 13.72 54.41 66.09 20.30 79.88 75.47 4.87 89.75 95.85 85.06 58.25 43.12 87.39 70.53 67.17 90.38 4.84 25.86 15.82 99.69 -94.24 6.38 28.54 80.40 43.08 63.26 4.80 0.22 70.84 19.44 21.78 10.62 14.93 6.62 86.62 53.60 19.39 40.57 58.00 8.33 5.01 99.70 16.14 8.89 3.02 47.01 16.11 69.52 13.54 52.19 5.00 65.59 12.17 2.45 1.71 44.68 27.23 10.75 57.92 22.19 91.29 40.78 29.90 32.64 93.70 45.41 89.62 46.49 30.08 12.24 52.83 93.38 10.76 74.53 20.10 89.35 25.30 34.06 12.31 36.91 44.31 18.28 99.60 32.00 65.09 88.58 49.06 56.76 81.74 5.75 95.76 24.23 71.54 65.76 28.34 99.58 32.58 22.31 58.85 22.80 26.40 55.08 91.26 61.44 50.05 15.23 91.29 20.25 93.01 74.77 13.47 33.23 6.51 74.81 47.12 79.72 10.94 53.12 70.46 61.21 -46.02 35.15 19.54 39.83 3.16 17.62 69.00 75.97 83.34 45.88 59.74 68.15 36.31 76.23 38.13 7.12 51.65 79.88 14.89 93.13 90.94 54.36 6.59 8.03 61.22 33.83 56.85 94.82 48.14 69.41 5.28 96.33 66.29 13.88 73.71 0.06 78.01 6.07 81.12 59.04 58.78 70.91 38.28 13.59 29.00 82.62 73.67 25.04 3.23 96.08 41.36 27.36 87.18 69.55 89.07 54.31 52.93 86.45 73.60 72.82 76.10 29.27 21.14 46.42 43.20 50.61 74.54 9.39 34.98 33.61 96.88 98.03 3.64 64.23 37.57 66.13 29.66 19.44 22.05 71.12 72.64 92.02 71.34 36.16 22.79 91.01 70.12 89.60 35.15 6.65 29.90 54.77 97.15 57.27 96.25 83.20 92.83 78.41 76.69 96.98 -83.69 43.14 62.21 73.90 54.16 77.34 56.41 18.65 76.19 97.28 50.69 49.37 29.09 9.41 26.80 69.74 12.45 38.35 69.19 68.12 14.65 44.56 41.57 82.84 53.51 30.47 19.63 45.42 58.55 49.47 2.86 27.11 90.73 40.06 98.18 92.58 57.37 50.57 41.09 94.51 17.13 95.93 48.19 26.24 97.92 52.87 33.53 14.46 37.95 70.34 94.36 92.92 12.49 66.28 64.61 4.32 49.17 24.46 35.25 93.95 42.17 3.40 77.78 57.22 58.22 49.07 74.54 64.72 46.24 75.48 46.76 5.56 15.95 96.31 31.73 73.26 51.17 12.39 0.64 57.81 90.31 25.65 87.93 60.44 81.03 32.43 29.31 48.58 66.95 16.07 48.62 64.90 84.40 92.66 87.27 27.68 46.17 15.95 31.78 19.80 -33.65 34.75 62.36 96.20 97.08 34.56 61.92 17.22 73.83 84.10 86.18 72.92 76.02 80.61 20.26 1.69 73.70 67.90 82.34 23.46 78.02 44.00 24.61 78.34 87.33 85.10 38.01 1.22 19.96 50.29 68.51 2.21 71.24 73.48 73.82 62.55 12.67 77.41 33.48 91.19 95.71 24.00 29.71 57.46 20.36 84.34 18.49 41.89 4.07 50.34 83.18 26.50 80.79 35.84 82.44 1.11 69.67 88.09 16.83 89.14 7.97 53.32 38.42 23.78 24.92 78.34 92.54 42.52 76.35 62.03 18.27 1.48 61.34 11.44 94.05 63.08 27.51 6.25 73.19 39.06 49.87 67.16 99.47 26.59 62.02 76.30 2.34 85.35 77.15 76.35 30.79 32.07 51.74 54.05 96.42 6.82 71.60 38.45 59.58 13.79 -37.56 69.19 35.71 67.12 68.90 89.93 8.33 81.48 73.24 25.71 82.40 62.01 51.42 37.71 32.51 90.49 70.89 57.55 65.87 46.60 68.00 59.94 27.93 65.84 19.55 33.81 79.03 86.51 89.93 28.88 75.52 94.72 50.89 4.64 85.65 75.69 0.87 88.14 4.07 55.50 46.39 22.73 77.05 24.59 21.08 35.96 51.93 97.44 13.28 15.38 41.09 34.88 99.25 97.72 6.07 65.14 97.44 24.93 55.66 81.86 18.44 32.20 89.60 33.66 48.92 41.23 9.73 61.96 72.11 15.95 79.84 43.43 68.38 43.83 43.62 8.85 28.24 51.93 29.51 19.74 33.04 45.88 48.68 86.21 18.66 58.41 39.96 2.42 97.00 8.81 30.46 77.89 82.53 89.32 46.14 2.41 9.98 62.04 20.85 74.17 -1.74 60.87 13.38 72.37 6.68 49.74 81.00 92.33 2.32 4.92 47.42 79.30 27.65 28.31 24.56 57.41 6.23 16.91 28.98 88.80 56.39 73.35 34.07 87.97 55.18 24.51 78.99 32.24 33.75 28.20 18.88 54.54 68.25 97.32 2.02 37.92 8.41 95.75 88.80 23.98 58.04 51.79 74.27 69.40 40.94 62.01 23.36 32.15 19.70 91.71 15.77 49.04 94.98 73.37 8.05 73.23 91.21 25.76 75.17 72.88 15.57 25.20 77.07 93.53 75.24 29.58 59.53 73.23 36.79 36.02 19.84 75.01 25.53 88.35 77.61 67.57 98.18 8.59 90.22 64.98 69.99 27.48 54.46 72.20 33.50 98.14 99.85 59.46 85.04 44.64 56.68 33.03 11.34 36.96 78.53 46.07 93.52 71.67 66.81 28.81 -17.26 29.59 59.32 29.02 32.54 90.99 43.80 45.26 32.38 26.89 53.27 9.24 85.65 79.71 54.40 86.36 54.97 44.03 38.89 75.87 59.94 72.64 83.46 45.40 31.18 82.22 57.57 18.78 12.97 94.53 16.50 28.58 65.76 8.52 98.65 84.82 54.60 31.67 51.11 4.79 6.27 14.29 52.69 36.01 13.34 11.27 38.24 92.42 57.45 23.31 28.21 11.43 36.02 33.96 72.73 84.97 48.18 33.15 49.98 14.08 75.39 64.19 50.18 74.06 68.99 51.84 44.01 68.04 2.37 77.66 94.85 14.98 22.08 72.76 62.77 78.59 62.04 54.65 83.01 40.87 86.89 70.73 21.97 41.37 54.67 93.22 12.50 30.43 41.28 83.11 20.02 34.76 50.29 20.96 36.78 83.67 38.65 78.97 92.34 10.17 -79.29 62.64 52.67 52.62 42.35 82.35 88.98 79.70 51.32 12.13 30.49 6.45 40.89 19.37 88.64 95.76 78.96 9.53 62.61 92.52 35.54 61.40 50.02 29.83 13.73 43.77 10.40 74.67 5.18 85.69 27.86 33.54 9.08 93.87 34.39 8.69 69.89 68.01 7.03 47.59 47.44 87.66 53.85 31.78 12.78 86.05 14.78 16.61 33.87 85.89 81.90 66.26 30.94 89.91 62.77 60.27 53.18 82.91 67.51 76.49 76.95 76.34 69.91 50.26 94.34 14.23 73.19 9.83 33.68 95.36 0.70 26.73 17.29 10.72 9.05 84.81 79.23 74.95 33.62 89.09 98.18 25.36 95.05 18.27 28.82 68.07 12.53 30.65 56.40 89.68 69.91 15.47 75.85 55.16 68.72 24.36 21.52 33.13 64.39 17.98 -42.35 45.69 81.38 18.67 94.31 22.45 99.09 33.25 75.02 37.84 1.74 8.31 3.26 90.49 75.20 18.62 63.25 13.09 34.81 66.63 67.96 7.37 47.21 7.41 23.23 47.61 1.97 72.33 13.21 45.26 79.52 54.48 9.04 64.02 3.95 33.71 2.28 53.28 73.64 7.74 26.04 60.16 98.88 34.40 95.97 50.29 85.28 6.36 32.47 29.54 96.15 41.73 7.77 75.35 32.36 37.01 54.93 62.31 99.90 5.42 11.46 20.39 84.50 64.96 84.65 54.29 25.22 64.87 8.58 46.00 14.56 73.83 57.84 23.45 32.41 75.96 53.17 58.28 7.94 53.52 98.33 99.37 11.62 82.01 63.08 49.74 15.20 4.08 28.56 22.35 59.73 51.13 64.16 0.71 34.97 92.59 78.07 56.27 43.54 22.53 -27.08 49.04 3.28 43.27 87.67 50.37 45.22 93.99 89.84 49.40 71.26 96.77 3.98 86.53 52.70 76.16 34.92 0.60 53.04 17.86 57.07 42.01 33.40 12.33 76.99 26.70 21.59 48.94 84.28 24.34 58.47 2.21 81.41 84.81 68.76 67.62 17.89 85.97 4.49 99.01 41.54 11.61 19.33 36.14 50.60 77.73 63.49 19.25 39.11 48.64 22.05 61.10 19.74 6.41 26.54 0.59 6.19 15.49 97.50 92.27 76.58 59.72 94.85 1.15 7.85 43.23 93.35 12.55 88.06 35.08 99.35 73.69 53.00 9.82 64.74 37.16 72.61 73.86 51.00 77.86 11.69 92.80 97.75 31.33 62.80 21.89 67.55 48.82 97.21 7.43 56.53 37.00 14.96 56.16 29.65 32.84 74.25 81.35 47.23 48.25 -74.35 14.77 96.26 44.18 10.86 93.39 85.35 39.57 86.13 33.87 86.14 16.86 74.39 16.43 85.68 71.79 95.34 79.63 50.87 20.89 86.06 12.41 91.72 36.99 62.44 66.26 12.30 53.94 59.40 51.60 32.17 10.27 82.97 41.52 65.46 6.65 8.43 44.75 70.65 94.29 85.62 11.73 55.25 24.14 60.97 83.21 1.95 11.33 79.94 12.95 46.03 55.08 69.71 72.73 23.44 31.72 24.86 91.55 8.70 0.65 27.62 79.52 62.39 28.79 94.36 11.92 22.25 30.64 22.85 26.10 50.99 43.42 78.74 32.92 59.90 48.10 22.65 69.69 33.77 4.40 4.16 95.29 99.80 64.98 78.28 26.35 2.79 31.52 48.75 11.46 16.06 7.17 43.04 84.27 68.04 41.36 7.71 98.21 76.07 38.12 -71.81 91.86 80.99 8.17 21.05 27.41 7.06 76.70 48.54 63.32 13.13 59.80 83.52 54.49 54.62 52.74 74.37 13.73 58.16 25.88 78.44 30.46 10.74 39.92 29.21 60.47 31.51 0.39 58.55 3.17 16.26 7.50 32.66 23.32 38.86 94.81 88.87 75.22 94.97 4.53 49.46 71.26 30.94 93.94 34.82 35.92 99.72 81.29 90.29 20.56 93.84 76.46 38.95 70.55 33.58 55.60 7.93 52.54 89.83 33.51 17.74 38.67 37.08 81.12 84.75 67.20 25.09 20.94 34.91 19.31 97.92 68.47 34.65 50.82 41.03 78.05 3.95 19.11 66.93 3.97 32.14 23.19 35.16 10.21 19.26 94.99 80.93 16.79 57.81 67.27 18.10 59.67 79.55 83.10 62.55 49.22 28.30 90.67 86.32 16.09 -68.72 12.14 93.35 24.68 43.60 92.03 71.25 5.34 53.97 54.65 78.23 73.44 10.48 42.29 5.13 37.75 89.99 23.98 8.29 71.53 21.79 46.65 67.11 73.17 4.74 68.27 58.82 40.19 49.27 20.75 16.40 96.95 24.15 7.73 81.90 77.12 47.80 71.90 67.50 22.04 92.87 47.08 25.63 24.92 77.96 32.85 77.46 14.60 86.35 65.33 0.37 48.64 36.66 81.69 61.27 8.48 90.06 59.18 94.07 6.31 49.92 33.18 98.90 68.56 58.50 92.25 36.18 53.73 92.78 84.35 74.70 1.77 45.20 72.67 94.87 45.75 73.17 50.40 99.86 52.59 87.65 53.47 63.29 14.94 40.47 30.69 50.72 83.89 57.13 25.61 19.87 64.42 94.02 53.11 7.78 79.95 71.59 79.55 60.08 97.78 -63.88 39.52 94.05 21.56 25.18 84.47 70.57 62.18 47.40 63.57 35.55 91.44 61.54 42.74 49.86 64.01 53.72 80.98 66.96 71.73 28.64 92.56 56.26 95.73 49.70 69.52 14.15 3.25 5.79 71.89 63.33 86.46 43.45 89.50 74.34 93.16 98.86 74.39 96.32 29.14 26.24 16.22 59.97 79.25 40.54 8.56 96.23 75.75 1.32 96.74 61.07 98.88 97.48 2.11 93.99 81.05 42.32 59.56 15.32 69.69 45.61 80.09 90.24 83.38 6.04 50.96 77.36 14.24 25.50 67.01 80.37 40.41 3.51 76.99 34.34 64.51 54.61 46.96 21.47 5.09 80.49 26.03 59.70 76.29 17.56 46.29 44.63 36.28 25.00 60.68 99.28 35.94 71.96 20.88 39.88 6.63 27.70 14.78 54.66 5.17 -32.48 78.96 24.67 64.43 60.58 10.18 91.65 49.85 70.33 62.52 59.53 16.55 65.93 51.33 87.32 44.43 61.16 80.00 82.77 87.80 90.88 83.42 95.80 25.17 6.15 79.13 4.05 44.50 33.35 43.88 41.15 43.45 43.41 38.20 24.52 31.92 46.68 29.90 56.21 89.10 24.88 63.06 26.31 56.68 35.27 95.87 86.78 85.94 13.61 42.05 12.61 30.55 16.58 78.34 86.47 40.06 96.56 51.96 60.44 29.96 43.86 4.69 18.15 60.70 89.68 75.37 53.54 57.46 62.63 6.96 57.10 14.67 37.23 57.45 37.15 16.48 10.36 18.32 5.96 94.74 52.83 56.86 66.96 3.34 38.55 89.24 97.18 58.50 98.39 6.81 37.66 46.06 59.60 96.92 29.91 85.32 36.06 31.41 15.11 1.15 -46.29 67.49 53.82 48.10 43.79 62.69 38.10 0.86 73.41 0.66 97.76 20.90 81.06 60.90 98.32 42.00 11.63 49.82 93.88 57.94 53.92 43.37 62.65 76.78 11.27 43.79 85.32 96.22 52.06 62.31 30.08 95.22 17.79 15.08 17.56 7.30 69.18 29.80 7.42 69.53 22.83 71.94 27.06 88.41 96.88 46.95 54.13 90.53 22.06 12.62 31.10 18.68 68.44 74.05 45.82 39.63 64.63 86.50 33.79 3.34 32.17 52.38 92.29 83.68 52.84 69.49 41.59 89.90 73.75 76.12 90.72 42.09 21.03 57.30 38.05 94.06 82.03 28.09 59.77 27.38 20.88 72.40 87.97 72.54 64.99 56.86 8.13 13.24 39.82 19.19 25.05 20.58 39.63 72.23 7.19 47.69 76.11 75.62 1.70 54.95 -56.66 91.74 21.06 23.69 70.80 98.14 58.19 9.35 92.24 12.17 69.75 60.51 62.44 32.05 68.21 59.39 51.09 19.24 78.74 31.97 66.91 36.75 58.67 96.62 40.06 10.97 6.37 72.25 63.20 91.02 64.46 94.29 43.41 23.47 82.80 15.27 63.72 19.19 53.68 66.04 32.04 79.60 58.16 12.05 44.42 84.02 73.53 0.88 64.82 91.03 5.28 13.23 42.86 74.97 78.64 16.47 59.04 69.61 95.81 18.94 50.96 73.05 11.61 20.63 37.73 10.70 37.76 25.99 11.86 21.57 18.62 5.24 76.84 21.83 4.15 44.00 32.38 16.86 59.75 32.21 66.35 34.76 87.89 94.50 71.10 22.59 85.25 64.82 42.54 8.09 37.36 67.13 86.38 71.48 38.89 58.77 59.24 53.37 85.83 48.76 -96.00 59.79 26.88 68.33 8.03 92.90 21.18 27.54 21.67 34.88 38.45 74.55 94.71 17.46 41.31 4.73 73.18 43.12 65.38 57.97 32.17 48.22 61.76 80.64 87.27 57.34 95.50 56.45 44.61 64.50 50.09 50.11 29.39 78.97 40.23 79.76 3.87 71.46 3.96 60.03 90.29 23.61 52.18 60.89 53.82 29.22 80.91 86.09 44.87 62.20 71.11 89.52 75.97 48.18 61.14 1.87 38.16 86.65 86.25 83.76 93.03 17.64 70.18 43.90 59.25 69.29 91.74 41.04 38.65 51.51 38.86 83.94 61.41 72.86 6.63 95.40 6.61 71.78 22.90 44.30 75.91 37.87 36.10 66.77 64.52 97.33 69.65 44.36 22.70 57.85 16.87 10.06 23.17 96.57 0.77 57.50 33.42 42.74 27.42 72.08 -92.63 8.01 13.15 75.11 50.68 14.16 62.98 47.74 42.43 62.92 79.59 77.15 28.96 70.73 80.81 96.69 28.49 35.56 94.45 84.38 10.01 20.37 50.62 78.09 36.40 47.11 30.64 52.58 71.82 89.49 84.30 33.39 45.72 92.78 6.82 32.52 5.52 99.97 38.40 10.81 15.08 47.84 78.85 23.06 90.25 24.62 74.17 46.77 87.18 90.25 43.15 45.24 37.63 85.83 25.23 73.11 96.29 44.53 33.46 43.74 2.73 91.72 29.09 78.80 48.72 74.71 36.05 98.52 14.53 61.11 27.67 96.52 89.65 36.72 32.14 36.20 3.44 2.62 17.53 22.67 66.18 6.22 3.43 63.81 83.54 95.99 16.58 27.87 92.89 8.90 24.06 4.52 95.25 49.27 1.71 7.08 48.08 12.56 82.87 51.87 -38.97 36.31 45.72 17.78 27.62 41.07 21.30 11.25 44.64 84.96 64.80 52.54 97.83 0.96 46.64 74.60 72.14 91.52 68.48 48.94 97.22 15.91 91.74 53.82 68.10 77.58 13.38 91.99 56.47 44.25 9.11 84.07 46.62 86.48 74.46 40.68 22.30 99.24 18.84 52.42 74.69 29.03 10.11 98.67 22.60 52.04 91.43 84.05 23.34 88.81 14.97 16.07 13.99 98.43 2.17 46.92 23.23 4.92 97.33 43.47 39.17 43.01 48.67 92.53 80.45 66.91 79.68 19.92 43.80 84.14 98.70 56.35 80.01 62.84 65.72 12.43 16.16 80.88 69.84 96.80 95.57 18.59 23.99 59.88 50.16 22.60 5.65 85.08 86.19 94.25 86.97 45.48 13.70 57.52 61.03 9.93 82.03 61.34 19.07 97.79 -0.20 26.78 36.35 26.27 76.08 49.88 64.27 93.64 24.26 67.68 63.82 27.23 92.75 22.01 69.56 38.07 14.48 71.52 99.74 23.64 29.69 30.09 33.00 17.85 12.37 93.49 94.35 3.18 96.80 10.46 41.27 53.50 25.16 73.50 0.96 27.30 22.92 82.90 21.41 61.10 44.09 71.24 37.59 7.54 90.99 10.03 48.88 22.63 50.45 41.86 86.01 64.94 24.48 9.88 89.67 36.37 9.28 47.16 56.12 23.70 51.07 98.05 94.59 66.56 10.25 1.68 81.06 7.56 10.60 68.16 49.03 38.31 77.70 17.06 6.13 12.86 26.78 57.14 3.69 25.74 18.34 3.12 42.55 79.48 77.41 36.58 47.30 89.65 48.04 97.46 27.40 45.84 72.53 53.06 29.50 41.71 66.44 60.57 21.49 20.14 -57.46 37.16 67.66 27.18 9.27 95.77 21.71 11.55 73.32 65.81 84.52 31.00 84.45 20.83 71.21 55.14 86.24 15.05 48.33 48.31 59.63 29.85 87.63 1.02 22.83 40.75 90.52 92.20 74.00 92.83 56.39 35.23 31.38 12.21 87.66 58.76 35.68 96.27 11.97 3.56 71.79 93.47 88.83 28.47 11.28 37.73 81.21 32.61 90.73 81.66 8.45 55.06 58.73 98.70 43.37 71.94 15.79 84.34 86.34 45.33 69.23 20.38 55.90 27.92 65.82 17.69 1.52 64.65 94.86 9.26 53.06 85.56 70.48 31.96 9.38 14.07 30.66 77.84 98.33 2.02 33.62 34.90 42.65 23.77 23.67 56.24 80.97 29.57 51.17 58.34 93.40 87.17 55.73 13.02 76.44 40.41 68.15 33.65 78.21 47.59 -95.32 14.08 81.31 13.86 41.14 76.35 43.48 33.43 49.15 7.31 65.33 26.01 10.81 50.01 37.04 70.71 87.18 3.27 27.39 28.11 100.00 10.16 44.23 94.95 81.35 32.33 84.82 92.63 1.21 25.63 40.26 60.75 43.09 0.68 60.45 3.89 80.71 98.21 90.64 79.12 98.20 80.29 67.87 76.90 66.62 95.96 53.31 77.96 74.47 60.89 24.09 45.70 90.60 82.55 87.25 67.52 64.37 76.81 80.39 9.79 1.97 24.09 52.37 89.88 30.62 6.22 69.28 55.64 85.08 39.45 36.02 5.41 38.59 37.01 8.67 36.28 68.75 44.17 28.64 37.22 65.15 94.18 17.83 1.47 42.19 53.02 43.41 46.16 86.88 90.02 41.96 67.33 77.78 32.18 32.56 75.42 28.44 77.18 7.23 58.76 -62.71 53.34 79.68 70.20 84.79 30.63 49.72 15.13 77.02 8.15 74.04 51.56 19.87 12.28 95.48 48.77 98.94 79.89 78.06 9.63 4.60 78.39 99.45 92.93 53.78 41.82 91.86 7.76 99.28 40.38 32.20 86.85 73.86 54.73 0.88 49.18 35.76 73.47 45.37 35.33 76.57 48.26 75.24 8.43 14.84 47.54 56.57 91.91 66.91 64.70 30.64 85.53 56.48 7.45 88.56 24.82 4.84 83.30 14.96 71.63 7.73 67.51 74.75 92.92 44.89 47.43 56.26 3.51 79.35 31.46 53.38 21.56 22.08 58.07 62.94 60.85 51.20 2.98 49.55 34.91 99.32 80.29 17.63 45.77 92.88 45.27 56.92 56.62 72.66 75.48 2.99 35.69 25.71 51.85 54.07 51.60 92.02 17.30 18.16 99.65 -77.80 62.05 22.81 2.11 57.17 20.86 72.76 12.79 64.68 99.58 13.80 2.19 58.02 90.95 40.35 6.09 3.30 2.36 35.60 25.14 0.56 49.31 66.98 94.17 73.86 27.58 19.39 95.12 49.33 21.38 45.85 88.02 72.50 53.71 80.14 83.31 92.42 46.54 95.22 0.38 44.78 95.60 89.95 45.94 16.78 37.33 23.56 96.83 31.54 97.47 29.17 64.28 33.28 88.76 31.35 12.49 39.28 81.20 48.02 44.69 25.07 68.43 85.88 98.41 73.04 10.22 88.34 31.13 84.11 46.45 22.78 12.08 29.89 94.28 44.49 40.67 22.27 22.51 53.43 69.54 68.69 74.06 29.11 96.96 90.43 84.53 93.23 81.17 90.76 49.28 80.35 51.73 56.12 13.70 31.42 3.58 17.36 52.25 37.96 12.09 -19.19 89.57 43.30 52.68 72.92 28.70 82.62 6.26 19.20 72.51 16.64 44.39 92.40 72.12 59.13 44.30 84.57 73.10 19.53 59.57 3.56 79.94 68.13 4.19 77.28 66.71 81.87 22.11 60.97 81.54 30.23 90.79 75.37 15.90 11.13 63.13 53.77 95.51 24.35 92.60 44.62 18.55 82.35 4.33 96.96 24.75 21.17 3.95 72.97 54.99 10.15 78.87 36.73 17.25 50.23 56.64 97.04 11.95 87.07 86.44 55.43 87.52 96.85 87.70 79.33 52.40 61.54 68.07 60.46 7.39 75.81 25.61 60.86 83.16 15.29 81.41 91.32 22.42 97.58 59.05 46.61 45.90 74.01 16.94 11.58 29.31 67.07 0.65 2.13 69.40 81.20 89.05 66.99 22.73 8.12 49.09 13.11 0.02 3.77 50.16 -63.24 39.83 72.59 7.76 9.16 63.85 48.37 37.11 81.70 13.43 16.53 2.78 2.17 84.31 53.50 35.05 57.18 92.91 9.42 37.64 85.99 39.32 29.38 63.93 93.72 7.84 10.96 6.51 95.49 74.34 85.42 28.27 29.05 61.08 75.81 86.71 93.55 47.60 76.78 90.68 94.67 8.82 34.79 13.78 80.45 72.51 85.64 7.43 46.43 65.64 99.91 87.08 45.75 39.93 92.22 41.17 11.55 53.03 83.53 62.83 69.37 21.53 44.21 57.60 14.24 15.92 21.32 58.59 33.43 76.80 98.24 13.77 20.27 51.95 47.07 87.05 50.32 98.62 33.83 88.37 20.76 49.76 24.62 72.41 16.76 55.45 94.48 21.00 8.72 81.54 58.40 78.41 46.05 12.79 18.22 25.31 8.62 13.53 58.70 49.43 -88.72 72.15 92.87 69.93 81.53 1.19 81.80 79.82 27.64 67.82 36.62 88.23 99.95 16.18 46.60 1.54 49.93 3.98 82.79 45.17 0.85 80.36 34.55 95.31 2.36 96.86 98.81 46.98 1.81 45.65 46.62 31.79 51.41 55.46 86.22 75.90 26.49 69.57 83.71 32.89 13.29 72.38 92.16 70.12 42.55 29.22 68.70 36.42 71.54 95.09 35.80 55.06 85.20 89.54 7.05 66.59 17.01 13.19 30.38 47.12 63.60 3.10 42.97 30.22 44.77 3.63 2.65 26.94 35.55 48.84 14.37 91.76 14.62 74.61 74.88 27.72 77.17 15.68 58.42 63.40 45.11 45.11 26.69 71.75 79.55 80.59 84.84 29.09 58.91 69.86 46.98 22.97 33.84 21.32 70.35 74.36 4.64 85.51 70.05 51.15 -8.65 25.96 35.74 87.03 22.19 97.27 87.74 54.87 27.60 6.26 41.29 78.96 37.13 47.34 77.95 14.24 75.34 58.01 15.66 84.66 78.48 79.82 88.78 33.42 1.06 99.56 92.44 86.04 54.95 92.63 54.59 37.35 19.33 18.58 57.42 16.39 64.15 63.14 47.74 72.37 95.30 42.61 47.79 10.74 60.09 67.58 63.29 36.79 97.64 33.60 5.15 3.52 29.47 91.95 17.95 9.95 27.21 8.20 90.38 95.05 29.74 2.70 45.38 99.43 0.90 90.89 10.70 71.35 39.99 71.12 65.24 76.60 73.79 41.85 50.88 93.40 12.32 23.50 45.38 18.35 19.09 88.69 89.74 77.45 55.91 25.42 53.79 70.69 55.07 23.61 4.30 55.57 45.96 5.13 17.16 10.06 30.44 31.80 7.33 32.22 -39.61 55.19 17.80 39.81 58.20 39.03 94.81 30.93 45.15 60.96 34.35 97.36 22.09 7.25 9.06 20.15 35.59 69.22 86.99 25.93 55.83 17.48 87.06 44.34 92.67 74.90 36.79 92.84 5.79 55.48 98.60 12.03 32.18 84.16 95.63 8.00 59.50 88.68 62.19 39.49 7.45 10.96 9.89 16.47 45.71 30.22 57.06 39.16 3.48 74.17 75.50 77.28 0.93 21.24 89.87 72.46 81.02 26.12 81.39 53.37 44.07 94.32 74.50 78.37 41.19 50.26 15.23 95.73 1.07 66.91 29.06 97.07 22.02 64.22 12.33 12.39 15.49 98.91 55.48 87.10 79.65 50.19 20.41 39.45 54.84 19.43 48.96 47.83 56.47 19.57 21.78 51.15 50.15 11.95 44.29 83.40 31.98 40.42 38.99 31.24 -23.54 69.46 55.42 38.65 72.32 31.96 92.01 34.04 10.05 56.87 71.36 8.60 41.32 75.18 19.64 56.01 73.78 26.20 98.25 52.76 21.70 76.77 36.59 68.00 79.59 99.75 54.89 77.16 3.31 31.79 32.20 67.91 32.75 51.47 90.66 80.96 5.00 81.57 27.97 31.96 24.49 89.72 11.30 8.82 85.62 34.64 24.14 52.49 28.99 29.36 15.73 83.42 76.05 34.84 80.85 86.26 47.12 58.85 2.41 75.69 6.36 2.89 50.20 83.07 1.95 23.85 72.99 78.50 49.02 75.66 81.98 35.15 67.77 77.41 95.77 36.85 5.24 25.03 59.17 29.56 36.04 59.12 60.36 99.95 86.46 75.90 29.14 16.09 90.25 15.78 96.38 54.53 50.66 61.21 6.79 19.79 60.82 31.53 13.34 14.84 -11.86 35.50 92.83 96.45 92.53 72.36 13.07 69.97 63.44 33.16 62.77 22.12 1.97 79.43 97.19 4.09 18.76 31.59 27.10 49.19 67.68 44.40 21.25 56.94 1.85 67.06 10.36 5.48 13.27 97.75 50.11 91.48 48.00 46.78 62.34 71.34 1.35 98.55 86.57 54.17 43.23 12.66 11.20 95.61 74.02 9.11 80.54 65.84 78.94 12.94 60.74 59.08 28.45 27.26 52.41 63.54 22.59 82.22 53.42 77.74 42.17 9.68 63.40 37.64 36.92 99.95 29.56 19.64 99.96 8.51 71.33 6.15 32.34 15.62 9.72 81.07 5.21 42.87 43.43 82.11 30.75 15.52 5.64 62.68 13.64 57.77 14.99 56.74 56.81 72.73 34.55 80.31 66.25 73.50 69.90 82.15 30.29 9.94 44.16 15.74 -19.82 41.14 87.65 19.71 15.63 95.32 94.80 70.51 34.37 24.35 95.10 96.00 36.99 61.42 73.39 66.41 20.56 5.51 95.13 73.62 3.75 42.86 12.76 6.94 35.84 8.66 54.97 40.57 62.01 2.65 85.22 81.88 73.61 11.56 86.91 97.93 73.46 62.19 65.20 85.74 69.58 94.00 75.40 22.18 44.19 7.36 29.43 54.60 69.97 88.94 52.88 44.60 26.31 45.00 66.20 35.44 94.71 97.54 38.45 36.21 65.64 22.39 12.88 44.60 61.19 93.23 26.39 50.54 1.56 94.56 33.52 55.60 95.18 74.74 45.09 63.57 60.69 47.74 83.24 27.99 61.81 21.64 76.64 1.29 13.31 32.69 66.19 39.10 5.64 86.87 45.82 66.56 90.07 27.63 79.89 42.78 30.68 87.85 10.69 23.44 -21.73 52.10 33.34 35.34 66.78 63.82 4.23 77.89 89.88 60.00 56.73 18.91 70.32 6.41 96.31 61.20 20.62 28.90 5.16 25.07 13.81 82.68 14.15 45.39 50.05 70.46 79.79 76.04 56.63 23.93 2.95 43.68 29.61 38.11 55.23 81.77 48.06 58.63 97.50 91.02 9.86 98.36 61.54 35.57 45.70 68.78 57.88 48.01 23.20 89.04 80.52 13.61 87.48 37.62 5.00 37.54 55.89 23.52 18.65 72.42 21.27 66.43 59.10 25.40 81.30 73.05 29.53 87.28 41.11 21.01 8.17 85.54 9.64 5.06 43.88 79.18 18.92 97.80 19.47 87.59 4.51 91.44 34.26 78.43 54.31 5.00 29.03 97.33 92.14 69.29 34.96 98.59 37.35 19.25 39.15 89.32 46.03 63.06 40.62 18.31 -87.62 73.31 22.59 29.11 89.20 98.78 86.62 56.41 60.90 9.74 65.50 29.39 25.91 24.97 69.30 91.61 70.10 45.74 36.44 40.70 3.97 37.30 13.14 84.03 40.34 56.15 40.36 97.70 93.05 7.42 87.92 54.10 33.70 53.71 84.91 87.23 51.46 45.88 32.20 64.00 51.03 33.31 23.20 36.03 83.47 94.60 40.86 94.15 24.81 0.58 36.56 14.04 55.52 90.10 98.69 88.41 79.95 96.14 68.65 71.82 86.74 75.47 5.81 92.48 80.03 99.43 89.77 50.81 96.09 13.02 41.18 17.54 15.47 55.56 45.34 46.96 3.42 22.87 34.60 42.34 45.31 15.08 20.80 65.07 84.86 97.12 45.68 29.17 83.15 53.82 45.59 72.65 80.12 25.09 59.18 48.43 44.46 28.91 95.59 73.81 -49.57 8.33 63.05 35.35 74.24 59.51 73.03 23.91 80.25 13.42 5.03 36.39 55.30 23.61 74.22 13.24 32.57 46.12 40.46 48.55 94.28 43.27 57.61 85.92 2.16 32.17 48.32 90.38 99.03 91.72 3.79 0.38 53.31 20.23 22.12 39.56 68.39 77.93 38.37 20.77 97.03 29.44 94.46 76.81 36.63 87.30 30.48 13.53 74.17 40.69 70.48 49.84 72.13 57.98 47.25 22.91 81.54 58.87 34.09 70.53 80.55 71.23 91.63 28.44 35.96 32.62 40.65 0.96 12.79 60.45 23.06 1.65 73.91 35.88 11.48 27.10 16.97 21.74 63.06 45.42 66.15 19.46 14.72 6.07 10.60 41.91 81.48 74.79 14.86 62.78 3.82 53.37 35.68 31.10 87.08 23.49 99.71 99.50 95.97 98.40 -52.23 80.33 79.59 72.47 94.21 8.55 7.43 37.74 34.35 86.22 60.93 69.51 89.07 89.87 51.54 63.37 42.61 75.94 34.22 27.73 0.54 74.11 4.29 86.41 40.43 84.62 97.38 71.22 21.93 27.43 32.17 90.53 43.22 21.81 98.28 34.45 69.65 49.31 78.22 15.91 54.16 82.50 26.60 82.87 12.67 30.09 7.61 42.40 20.00 37.95 60.81 66.45 79.14 91.60 21.78 21.01 37.87 67.18 97.81 23.58 60.74 9.78 11.06 15.96 29.24 41.68 94.37 16.64 37.56 85.14 7.91 69.41 88.57 11.45 95.17 46.82 49.86 62.00 70.04 50.30 99.70 53.18 52.59 0.42 9.84 89.80 20.15 14.15 15.40 87.44 4.38 70.37 74.37 95.88 45.33 19.05 81.68 39.42 37.97 49.48 -54.98 43.67 32.42 34.70 13.04 76.49 61.62 77.10 25.86 23.70 82.93 16.16 57.39 69.25 94.56 26.59 31.98 38.18 81.92 12.43 67.31 37.10 6.17 52.74 45.44 36.65 2.23 44.29 55.40 40.37 81.60 1.58 47.49 46.19 78.63 94.64 31.11 39.52 44.71 99.34 40.54 57.22 52.83 18.10 94.97 4.92 41.61 85.08 82.67 10.08 50.45 92.82 51.22 85.26 93.81 56.70 11.57 9.86 10.08 15.23 34.87 74.41 45.33 66.61 91.84 3.52 57.94 19.75 87.14 0.81 52.33 16.76 52.83 61.92 21.40 80.19 8.24 70.47 6.88 18.95 73.97 89.66 92.73 9.71 10.74 80.69 28.32 17.28 55.26 32.19 71.41 83.70 56.19 3.88 22.81 29.21 34.65 81.49 31.91 21.75 -17.50 76.48 96.80 42.57 65.28 59.04 74.37 95.70 91.90 82.32 97.08 30.14 76.67 96.43 32.00 56.11 53.89 31.31 93.15 28.08 95.90 46.40 22.63 69.92 88.11 99.32 34.56 62.70 7.83 82.74 36.03 3.83 22.91 18.36 33.12 69.76 98.09 54.51 55.75 26.25 7.95 30.31 10.13 90.35 3.91 98.08 66.52 8.92 53.69 92.18 73.30 46.33 18.61 34.12 68.57 50.60 33.78 58.67 48.96 20.57 28.10 51.76 75.17 26.45 1.60 44.55 85.36 24.36 97.68 63.13 73.28 12.50 60.55 26.07 64.67 55.30 81.62 9.76 76.88 31.42 74.90 67.37 10.83 82.44 17.19 80.26 68.67 5.94 30.74 25.87 84.18 48.09 47.08 83.09 68.30 4.37 30.81 64.92 45.51 10.94 -59.55 77.51 64.78 67.05 2.32 41.70 57.69 79.90 14.54 41.94 14.13 32.02 82.88 37.09 38.10 65.47 74.90 59.09 41.53 84.93 35.96 88.14 49.19 19.60 33.21 90.13 6.83 4.93 15.58 22.60 96.00 36.52 58.31 3.40 41.69 9.80 49.18 53.01 50.24 52.81 91.11 39.01 19.90 91.16 30.78 19.35 21.81 14.06 73.59 79.50 3.26 38.36 22.38 29.74 88.91 56.70 81.24 6.20 29.71 70.30 1.27 84.51 78.28 0.14 69.76 76.64 55.64 41.57 5.75 58.53 65.36 72.09 53.33 62.07 21.64 18.75 78.88 78.46 18.76 12.95 33.16 28.88 90.62 18.54 0.57 32.15 30.32 76.26 24.64 15.40 52.82 72.37 2.10 3.93 96.44 21.65 0.42 52.55 96.04 64.62 -41.40 61.34 31.18 92.30 24.28 27.76 2.59 90.29 6.31 67.59 75.66 88.99 32.14 76.81 83.29 72.16 61.10 17.54 98.59 66.12 7.68 15.15 51.49 42.89 26.76 54.08 28.59 16.44 59.88 23.16 62.50 91.47 20.31 18.50 16.72 42.34 85.22 22.55 78.41 67.54 81.05 28.20 17.09 52.39 90.59 68.17 47.15 48.46 38.74 36.14 76.70 22.30 68.37 19.09 25.06 50.30 70.11 32.58 28.43 62.88 61.95 67.96 75.51 85.73 26.34 25.33 28.93 72.68 73.30 76.22 84.22 28.40 80.56 10.51 8.66 54.32 83.91 37.70 98.38 52.68 18.96 69.64 25.58 84.22 72.12 80.25 79.54 13.70 4.18 60.11 94.51 32.49 34.30 0.26 86.52 10.44 70.24 48.02 3.97 99.15 -18.01 19.45 87.86 30.64 81.59 43.42 81.45 88.04 58.13 8.53 90.76 72.53 52.06 45.32 36.74 96.84 17.20 70.13 68.47 76.66 87.31 51.22 72.64 48.41 46.81 39.91 20.83 28.86 16.58 38.05 0.07 17.35 1.46 56.75 49.91 10.90 62.94 9.74 70.46 78.61 9.93 14.30 64.08 83.53 33.54 49.63 70.25 54.03 56.04 94.64 98.59 87.69 31.69 52.34 72.32 4.78 87.46 1.15 40.62 40.37 98.34 62.69 84.87 49.75 36.78 80.46 31.54 48.53 45.06 34.54 45.60 58.91 68.88 83.37 21.06 86.89 23.85 31.53 63.63 72.18 87.46 64.45 42.73 80.46 98.70 19.19 0.58 65.88 55.61 6.74 30.37 13.30 44.76 97.21 40.46 94.51 36.63 5.18 86.33 66.16 -29.24 22.44 54.64 27.52 87.13 11.43 32.59 93.95 93.06 15.92 93.13 56.65 22.24 88.53 93.71 26.91 89.75 49.96 99.70 7.11 83.45 86.99 96.48 25.83 20.19 74.72 48.51 50.58 5.28 74.31 36.42 78.82 53.73 99.21 52.57 76.31 35.11 14.60 57.66 58.92 35.82 88.41 55.54 48.94 84.28 76.70 47.92 75.34 32.57 83.72 90.59 44.13 95.09 68.49 47.53 20.27 13.19 56.57 35.72 23.61 14.54 7.35 58.11 3.44 62.29 7.68 15.36 17.06 50.46 92.77 33.13 37.53 88.89 30.81 89.71 86.27 65.81 58.61 39.49 19.16 99.45 96.09 41.82 15.78 93.21 16.36 59.05 67.41 64.54 54.27 80.14 74.01 87.40 15.62 93.82 69.30 73.85 3.10 17.73 9.96 -7.01 45.10 93.80 69.15 30.46 10.62 83.28 29.34 85.74 96.06 29.87 74.93 50.98 7.16 21.55 56.42 9.29 94.98 83.77 78.52 71.93 11.13 43.94 26.89 46.91 44.28 56.26 48.05 10.20 79.62 24.12 37.77 95.28 21.80 73.22 8.03 93.63 46.32 10.42 81.18 2.58 6.44 61.96 87.57 84.04 96.86 17.02 40.76 61.54 45.86 19.46 56.86 19.51 62.26 21.85 18.56 38.33 92.57 27.27 40.47 47.56 94.39 48.22 96.54 44.72 34.94 56.78 57.13 65.27 26.32 92.33 21.63 45.10 96.81 66.03 51.39 64.52 32.87 44.18 73.51 92.34 83.00 86.68 61.20 48.71 54.76 11.37 5.54 13.16 99.37 4.12 29.37 31.80 71.71 45.26 79.17 82.94 12.70 90.50 62.27 -72.95 27.30 59.13 42.68 39.86 30.33 14.40 21.76 24.38 82.66 3.30 67.35 11.49 77.90 38.32 71.95 54.03 47.20 15.20 61.29 64.26 60.06 91.14 48.58 7.02 12.33 72.29 64.89 73.75 27.59 17.99 10.62 50.97 52.54 77.40 20.12 27.10 46.87 69.15 69.82 74.69 81.47 28.69 90.47 64.81 67.46 39.85 13.71 93.58 36.00 12.76 72.98 22.33 50.48 93.53 10.83 64.25 93.54 81.89 13.50 89.18 73.44 44.36 68.69 46.99 84.84 21.45 89.51 71.01 13.32 76.02 16.31 69.44 57.87 51.08 11.14 64.00 72.04 41.46 86.57 26.09 13.15 90.08 1.00 11.21 52.95 78.52 88.23 52.64 7.37 82.74 52.48 92.80 17.90 81.17 12.01 60.35 27.80 22.14 77.50 -51.09 85.09 63.54 31.96 55.34 55.98 65.58 88.16 83.04 23.32 67.49 91.93 1.51 37.35 92.94 84.86 67.69 72.45 38.50 49.91 18.82 89.55 0.32 92.20 84.46 43.30 26.39 44.47 65.86 82.00 55.64 9.69 47.66 58.25 56.88 36.38 78.56 29.79 80.63 84.07 26.90 50.49 1.41 35.98 14.79 8.81 45.80 41.76 19.37 39.69 97.19 24.82 86.11 82.40 95.56 24.75 48.49 9.50 25.18 37.21 41.83 37.36 92.58 58.63 37.44 73.82 42.60 22.90 58.55 9.77 51.05 28.82 58.78 94.50 16.46 20.85 66.84 26.43 99.33 72.37 16.71 7.52 51.68 41.23 82.00 78.90 82.99 94.01 84.40 61.03 1.02 63.55 7.24 86.37 68.36 59.57 10.45 96.54 75.93 42.06 -15.07 60.19 96.72 17.77 91.87 38.34 24.14 11.28 80.39 79.36 50.77 61.49 77.24 60.04 4.43 9.73 75.18 22.99 23.61 21.63 26.10 59.56 28.79 59.34 95.81 5.51 21.96 24.16 0.20 26.39 47.09 19.40 43.20 6.62 51.47 26.02 40.38 49.14 7.78 93.33 91.32 26.08 63.65 32.08 58.68 93.63 10.14 69.15 36.68 79.05 30.97 80.14 13.18 25.70 60.48 71.79 14.16 96.23 72.03 14.82 4.24 94.88 26.06 86.26 44.03 22.63 37.72 39.04 42.59 8.33 45.80 28.03 45.07 79.54 54.28 6.72 46.29 5.56 85.18 63.97 94.22 35.94 31.02 89.63 46.71 20.95 50.99 42.90 92.30 78.27 64.11 87.76 66.07 62.11 13.01 59.47 51.02 83.82 60.05 15.14 -53.77 49.19 30.87 81.23 47.73 67.85 60.87 32.50 27.16 60.13 58.20 91.46 28.62 71.06 62.36 89.36 93.10 35.93 82.56 10.40 43.94 31.42 39.29 82.74 74.71 99.11 12.51 71.17 83.64 81.70 72.15 12.53 10.41 36.73 11.28 90.12 97.47 29.95 21.67 3.85 51.07 34.99 4.53 12.59 78.41 97.72 86.33 26.02 60.93 48.46 0.23 87.32 87.17 73.09 69.99 63.05 32.63 35.71 27.72 86.95 7.33 53.07 72.71 48.47 89.70 68.53 95.29 9.63 99.79 12.09 64.82 65.61 94.95 65.02 20.61 47.48 95.54 17.61 73.94 36.07 54.30 75.80 95.34 44.12 32.15 7.66 32.14 79.57 79.61 97.13 20.33 82.41 93.55 23.58 23.54 83.10 37.98 65.80 81.44 4.05 -49.31 73.91 76.25 99.74 35.37 74.75 40.99 54.04 45.33 20.96 26.34 40.90 66.40 45.60 5.18 10.76 47.87 8.37 37.39 4.19 26.53 45.10 4.93 55.13 89.73 63.78 91.38 64.70 34.33 56.91 6.87 94.13 88.41 7.14 13.60 79.47 75.02 85.53 47.13 25.44 79.26 6.20 8.23 88.18 9.70 82.27 85.78 22.99 2.44 41.62 48.91 59.84 69.72 75.26 77.22 77.35 52.49 74.58 70.28 59.84 62.85 56.76 57.85 40.27 69.94 20.52 6.50 99.95 54.48 55.55 90.71 15.78 50.69 43.51 4.80 12.04 99.71 5.07 91.00 42.43 59.64 66.38 84.48 54.87 48.40 11.88 16.95 29.62 52.55 53.49 49.82 89.65 65.50 76.00 2.41 45.23 36.83 59.97 39.60 43.45 -88.09 44.24 7.73 88.95 89.73 57.95 88.13 27.89 99.36 60.02 40.01 12.80 84.56 16.74 83.45 67.49 83.45 20.31 65.22 20.90 28.85 62.54 6.13 26.35 23.52 53.78 85.61 11.98 68.55 25.33 80.37 61.71 27.80 62.57 83.40 32.04 36.44 75.49 19.90 83.00 77.62 44.47 98.57 93.47 93.86 90.24 11.79 91.84 62.75 48.95 65.71 31.96 88.09 61.34 58.39 79.28 20.50 80.57 92.10 95.37 25.55 95.04 4.61 82.17 42.45 46.71 27.10 20.79 76.73 33.68 42.04 85.43 10.77 23.93 89.72 66.86 89.04 99.95 17.23 87.45 66.31 65.25 29.59 9.82 25.11 62.91 11.10 99.66 73.01 62.79 23.53 98.79 14.22 97.94 90.20 90.07 11.30 1.22 47.42 74.51 -98.88 64.11 32.69 23.73 6.56 45.00 52.79 2.41 35.54 50.92 52.18 81.67 74.26 26.19 95.62 4.94 19.44 78.43 47.56 47.29 77.81 21.26 65.18 82.49 65.05 7.70 80.96 60.28 23.72 63.49 56.83 70.46 93.34 84.36 36.25 96.78 25.55 36.69 58.92 85.68 88.24 50.65 11.58 35.28 88.83 67.40 76.06 5.31 65.28 37.53 75.06 16.09 17.51 62.49 99.37 46.75 22.87 4.22 79.13 88.40 65.07 83.62 63.36 68.07 47.79 97.04 16.85 72.12 15.38 12.35 36.61 73.80 79.85 91.23 75.22 96.30 78.87 75.33 39.56 36.28 4.45 3.78 74.71 35.52 55.84 91.86 18.33 76.89 75.36 50.74 35.43 50.05 62.47 74.01 31.57 87.58 73.39 16.05 38.23 40.61 -95.68 86.26 9.81 17.25 55.14 29.50 63.54 28.99 69.49 35.41 46.51 88.28 62.45 44.03 27.98 10.27 49.42 19.76 45.36 6.27 2.78 97.29 48.71 46.23 56.49 41.06 62.34 82.28 19.85 95.59 91.93 43.22 54.72 23.32 33.79 60.58 83.54 20.95 82.44 51.21 63.75 1.08 70.85 88.31 13.95 41.85 28.58 89.52 31.50 94.70 94.45 34.38 82.89 99.58 53.01 66.64 99.47 90.20 87.29 52.64 26.14 45.02 71.20 4.69 80.51 55.77 97.76 22.06 51.17 62.36 10.88 17.20 7.52 80.52 1.36 0.01 76.50 88.17 81.36 43.58 70.07 86.15 80.76 3.84 2.28 99.32 10.87 57.05 19.19 21.55 41.99 97.37 34.44 31.44 42.65 23.20 90.33 41.13 95.59 58.77 -15.88 2.76 4.96 0.45 60.77 87.62 62.69 70.06 4.49 28.88 20.97 51.62 98.19 84.82 9.06 97.91 82.02 65.62 56.07 26.08 45.84 77.17 4.18 29.23 61.10 10.30 6.16 50.15 80.40 49.72 86.02 32.92 68.03 1.24 45.63 39.31 87.03 40.60 66.12 96.00 4.50 41.91 51.81 5.98 39.59 64.54 27.75 17.18 98.14 58.45 69.82 74.83 40.32 12.34 46.83 44.96 63.16 55.43 55.07 93.46 15.91 87.58 20.06 49.71 56.43 89.33 14.33 41.68 6.33 69.57 6.58 91.53 43.78 72.96 58.81 66.43 3.68 65.92 96.23 77.18 11.45 53.93 4.64 4.70 48.18 8.70 26.49 61.86 25.29 17.85 82.86 31.52 81.87 62.39 35.83 99.86 63.45 1.53 17.60 57.04 -68.42 2.08 9.43 44.59 86.79 79.03 78.38 84.74 28.77 64.44 34.51 10.86 63.02 42.96 45.95 54.89 6.56 42.09 58.39 79.16 8.17 23.76 13.87 49.36 62.06 48.11 64.73 38.51 45.34 85.05 55.62 61.09 27.82 21.20 67.44 4.86 98.53 72.57 93.81 65.31 78.05 52.15 54.66 36.62 38.85 78.47 89.02 77.51 79.05 45.10 60.24 61.57 95.65 3.87 54.46 42.16 63.23 12.50 99.61 22.27 18.58 49.94 36.89 65.62 9.27 17.57 13.06 15.68 27.09 37.96 75.28 67.33 41.65 46.82 56.36 62.35 73.85 95.84 74.35 93.88 37.37 21.87 23.41 50.38 14.07 54.46 8.77 62.73 75.96 3.28 32.10 66.17 49.03 34.14 66.52 66.83 61.86 55.18 93.34 97.54 -28.35 77.49 72.00 19.12 46.48 98.70 55.66 39.49 20.29 41.09 20.13 19.91 5.91 80.38 55.95 49.65 34.63 82.40 17.49 80.76 77.40 73.80 58.15 84.21 98.63 85.84 37.15 37.03 40.53 41.28 21.12 12.93 97.38 49.18 8.57 47.57 31.09 73.61 82.97 23.70 61.73 95.33 90.42 74.71 42.67 54.70 77.25 43.49 66.85 44.27 70.80 51.90 96.69 72.13 60.32 35.99 9.40 54.51 48.56 12.31 15.49 87.58 88.01 81.58 82.90 10.12 49.00 51.40 59.79 23.39 43.09 65.82 42.46 47.47 67.55 3.42 44.20 17.35 31.45 61.18 49.39 15.17 82.85 35.32 54.81 53.22 45.37 34.39 8.12 32.50 5.51 19.87 26.73 32.80 84.83 46.89 98.08 50.04 74.80 35.72 -1.93 32.03 3.92 6.53 78.24 11.87 14.67 59.66 15.75 68.55 34.93 63.20 33.81 26.92 57.40 38.33 42.57 14.12 64.11 6.28 85.82 30.04 40.86 53.05 97.42 64.00 26.39 78.64 53.14 96.15 28.21 17.47 84.41 26.47 93.93 52.57 50.45 22.19 97.20 36.19 14.48 29.74 93.96 51.53 16.21 89.16 50.28 18.56 34.89 36.26 96.20 87.33 37.47 90.75 48.02 73.93 3.96 78.58 32.60 26.25 13.19 57.58 29.34 46.35 87.05 0.48 26.93 53.31 7.61 21.81 77.67 17.57 79.11 83.30 26.23 8.18 88.60 26.81 16.96 99.82 73.01 79.77 19.44 67.59 64.59 3.74 47.51 38.03 90.14 62.85 24.85 25.13 47.85 88.60 50.87 59.44 30.78 82.04 9.20 48.70 -67.71 29.66 24.50 57.15 1.04 24.88 88.77 90.02 26.42 43.39 44.19 88.56 62.18 33.61 79.24 5.31 11.56 39.76 30.61 67.93 88.44 41.88 85.71 78.12 90.05 95.36 65.68 28.85 82.11 50.74 95.54 95.05 96.61 30.76 13.36 93.00 49.00 71.03 69.14 59.05 89.48 44.67 91.76 41.42 54.42 52.79 39.65 44.81 26.55 39.43 51.44 85.03 8.64 64.18 50.69 15.89 25.78 94.26 17.72 63.82 36.69 60.63 63.17 46.93 77.27 12.80 68.22 52.55 29.94 75.86 85.90 91.36 53.31 85.39 66.33 19.70 9.93 79.96 77.40 90.02 45.69 7.85 76.37 1.77 43.67 71.19 46.34 5.19 89.62 48.55 3.20 21.59 54.40 18.99 69.53 98.16 90.64 29.36 51.47 77.25 -43.14 11.87 68.21 79.93 6.01 75.23 24.48 77.29 38.11 91.15 30.73 95.35 76.27 65.58 88.41 34.15 29.30 63.83 90.50 4.56 21.29 69.39 90.40 93.41 48.07 73.66 69.12 51.30 7.37 69.34 83.57 21.73 10.13 6.95 9.30 88.53 84.55 61.34 60.09 17.30 76.94 63.18 46.97 30.16 72.68 61.84 76.62 97.98 45.67 42.42 27.10 15.09 5.84 56.19 68.83 94.92 36.77 35.15 85.74 48.92 87.01 55.43 66.71 34.69 47.07 98.51 87.30 50.40 96.96 55.46 42.94 16.33 55.50 35.06 72.76 59.56 66.82 67.13 93.67 70.87 97.80 33.82 69.67 13.71 60.83 34.00 83.69 16.44 95.43 20.45 77.71 18.59 27.24 55.87 73.44 43.33 73.06 64.93 71.44 40.22 -47.75 56.85 60.83 28.79 13.98 83.14 10.55 31.48 93.13 89.08 97.09 51.67 20.21 66.30 29.28 56.68 9.90 71.94 89.66 22.22 58.22 3.42 80.44 77.71 48.82 80.95 8.83 38.53 69.69 4.98 9.79 57.77 77.71 3.45 59.93 78.18 15.29 96.55 33.96 1.62 42.85 92.19 25.07 44.61 36.86 92.61 71.24 48.52 71.64 18.38 44.62 68.35 82.36 46.27 96.19 36.22 49.55 76.23 97.88 77.87 54.06 56.08 14.69 41.68 34.56 66.03 44.54 49.34 70.77 5.98 33.99 93.28 10.94 31.20 98.47 30.80 17.16 9.75 97.31 75.47 97.49 33.80 96.62 36.17 12.93 63.28 43.49 60.52 84.37 85.28 89.67 27.16 12.77 77.96 6.62 21.39 94.40 47.92 10.33 21.50 -10.95 16.11 92.08 68.66 18.59 33.32 86.29 17.03 43.62 24.02 59.80 70.24 69.99 22.01 21.67 58.31 88.18 36.42 36.05 21.00 80.14 4.71 58.73 58.26 30.44 38.68 85.26 19.17 30.82 53.73 93.80 41.08 19.78 81.93 11.23 33.13 26.41 61.22 33.25 66.06 96.98 84.48 56.45 39.02 85.16 37.16 62.43 9.24 43.62 94.66 17.91 90.25 38.00 55.59 98.40 66.18 3.68 25.74 78.50 0.73 40.57 18.35 83.10 81.53 24.13 15.66 31.34 80.98 73.87 27.53 11.08 42.93 78.25 29.87 34.89 55.39 83.95 20.25 31.11 52.52 14.47 40.89 8.75 86.96 72.87 57.54 63.26 66.55 98.81 68.11 76.39 59.04 20.82 99.60 89.40 18.66 33.62 79.40 72.54 13.56 -21.62 2.60 22.71 6.06 8.83 15.54 86.46 36.16 19.18 1.65 50.69 81.05 18.31 87.73 40.57 66.12 31.29 27.90 42.16 79.50 6.57 4.29 84.70 93.84 73.22 98.73 15.05 38.37 31.23 55.95 13.56 87.73 86.11 73.71 82.73 41.03 65.58 64.68 12.08 82.45 51.83 77.88 28.43 96.65 59.61 22.10 53.28 85.16 26.32 54.89 52.22 60.45 85.91 64.01 27.19 0.96 31.47 21.87 64.40 12.60 47.37 17.98 86.67 47.25 30.43 59.86 10.89 51.32 55.21 69.84 99.66 23.30 40.61 56.70 73.46 48.19 91.38 25.27 27.07 5.05 7.94 15.57 84.35 3.20 98.79 25.87 7.91 77.82 50.70 20.31 18.91 48.66 0.44 93.18 14.78 79.90 84.91 51.74 84.73 11.20 -54.33 45.19 39.33 49.98 88.42 69.24 42.55 27.98 7.78 79.91 88.94 80.24 16.32 77.83 74.66 58.52 64.62 59.94 58.72 20.18 92.89 61.12 20.32 91.98 75.17 2.79 75.69 6.92 41.36 34.73 94.77 6.68 34.22 62.59 35.69 99.14 81.30 81.75 50.27 27.39 53.38 93.49 59.05 64.29 91.26 94.74 21.79 34.15 63.73 24.41 71.60 2.64 85.18 30.92 84.19 62.97 72.81 39.34 12.58 92.41 88.72 11.22 49.73 77.61 77.41 19.45 49.10 57.72 58.12 87.14 85.42 32.84 19.62 46.17 91.14 13.96 23.28 17.45 46.17 50.75 48.50 77.86 40.55 71.15 89.16 17.28 24.24 61.38 42.87 15.79 42.05 45.78 32.90 52.68 53.29 50.93 86.18 14.57 98.40 23.51 -4.05 71.51 48.61 62.64 58.73 44.83 31.80 0.24 94.05 2.38 62.08 40.91 0.08 73.33 98.31 32.66 32.85 28.20 94.88 63.54 39.08 7.51 13.25 4.97 5.33 15.89 86.06 73.10 82.07 88.65 33.89 11.45 78.18 3.44 15.30 57.56 68.37 62.71 59.47 78.94 74.70 67.98 59.76 77.70 70.85 54.75 74.53 90.10 32.99 6.39 36.78 40.56 88.51 63.85 42.17 57.63 53.98 57.83 53.60 34.17 82.76 60.47 94.14 68.04 96.25 6.35 67.82 1.73 12.26 50.65 84.26 35.06 71.33 68.43 15.46 79.53 45.77 88.29 19.20 94.71 30.20 20.61 64.31 12.25 41.27 72.69 99.23 5.24 51.14 80.13 43.39 97.38 75.90 54.46 11.15 80.06 20.28 4.84 62.67 3.03 -83.32 0.84 90.50 33.52 42.48 69.99 1.10 56.79 91.05 27.03 21.86 46.68 34.75 23.39 69.89 82.04 96.85 35.71 71.67 17.88 13.18 76.89 5.29 89.33 74.66 70.12 2.54 48.73 98.96 89.58 90.34 84.64 65.47 70.94 32.95 33.47 50.82 88.55 94.33 30.91 95.98 51.45 97.29 28.96 54.66 50.39 30.04 99.46 19.42 5.49 1.67 59.64 73.35 86.28 41.20 79.97 38.55 65.32 85.38 80.73 84.73 89.88 7.44 53.25 0.29 52.86 80.53 86.90 30.47 39.02 72.01 87.78 30.33 67.13 10.16 89.56 70.70 63.95 79.13 21.17 57.55 37.75 91.87 11.15 39.75 75.17 68.29 6.06 60.28 69.53 39.52 86.63 2.15 90.42 63.47 93.19 45.92 68.45 3.29 31.46 -2.98 15.79 14.07 46.18 18.62 88.14 17.35 56.48 31.62 68.37 4.61 7.21 38.66 59.97 82.98 41.24 11.33 28.16 46.50 66.93 1.91 47.94 64.72 39.80 24.64 3.93 3.28 83.06 34.64 31.13 64.69 1.23 31.28 38.17 30.58 20.75 75.60 35.75 38.79 45.65 14.34 33.99 22.79 25.47 73.77 66.73 4.22 15.12 17.38 82.19 50.82 13.24 1.94 43.18 38.92 13.95 94.05 53.32 8.92 93.81 71.55 80.99 75.13 95.46 94.17 41.06 64.67 11.89 23.08 4.84 3.88 1.61 98.22 74.84 53.97 38.16 80.89 58.16 1.95 1.92 7.36 43.38 64.95 91.35 73.29 38.85 57.28 3.86 42.91 21.60 46.25 63.13 34.56 17.21 76.41 9.68 64.95 27.06 36.03 30.59 -63.86 60.29 14.75 71.76 35.49 64.35 58.52 61.75 37.17 17.11 57.63 82.42 98.41 3.85 76.55 2.72 84.08 60.33 73.53 12.10 96.59 59.16 25.23 62.81 6.70 10.75 88.87 15.88 15.00 62.56 52.70 79.15 68.08 46.58 8.58 32.52 59.81 78.84 2.21 96.22 43.28 62.34 48.26 32.22 85.13 38.75 69.51 78.58 38.67 47.13 28.08 65.89 93.14 34.50 87.02 55.72 82.66 62.50 1.73 42.88 29.76 2.05 56.73 7.77 38.72 12.11 7.49 14.59 88.41 46.73 19.33 63.63 65.73 40.45 87.78 71.70 68.79 37.78 7.05 0.28 24.76 44.36 43.20 19.00 43.24 57.05 67.49 22.56 75.41 17.42 15.50 56.56 84.98 78.68 49.86 96.70 74.46 45.22 90.02 48.25 -57.25 96.95 5.16 33.37 7.97 92.27 39.04 18.35 49.41 71.83 82.05 60.82 83.43 39.22 21.03 26.82 65.95 42.49 36.94 57.78 66.67 33.21 21.53 77.33 43.06 35.78 88.60 20.52 13.68 5.74 60.51 0.84 99.54 50.93 48.93 56.84 11.90 39.31 41.49 72.47 0.73 65.36 65.09 72.72 92.03 95.67 42.25 53.48 74.24 83.46 5.62 75.60 10.99 66.43 22.16 59.53 48.07 3.02 21.97 31.89 85.29 31.12 28.87 69.50 1.71 47.26 38.26 8.48 33.29 12.33 35.21 76.66 68.63 3.00 84.58 37.58 31.58 46.37 28.32 66.33 43.35 5.30 39.42 47.62 77.97 48.79 88.67 91.58 83.75 92.06 13.59 25.13 15.79 24.25 0.18 65.75 94.63 41.06 95.58 8.79 -97.30 92.64 41.94 79.62 90.28 70.29 29.86 72.98 90.36 39.52 16.50 60.58 9.30 35.40 56.90 78.03 18.62 69.82 78.00 7.57 24.50 74.27 37.11 76.88 33.44 80.24 41.75 50.16 41.87 95.34 27.83 46.65 65.38 1.29 25.07 63.43 48.89 46.94 91.17 69.24 99.20 92.06 34.56 79.23 22.50 67.79 86.05 39.76 89.35 24.37 95.52 51.59 92.73 61.34 99.09 95.42 42.44 62.15 45.46 30.08 91.27 68.12 21.14 74.36 18.87 98.46 92.71 73.32 77.87 62.82 19.18 14.41 88.82 17.60 65.37 26.24 53.96 32.79 0.75 69.43 55.09 99.98 76.57 98.52 86.77 96.12 46.22 14.54 9.40 9.81 87.16 15.42 4.21 26.58 74.62 66.39 93.06 42.53 57.06 24.93 -13.75 54.28 36.03 4.78 25.76 15.87 53.90 60.02 19.61 37.53 67.75 36.28 78.07 95.17 25.04 85.88 32.69 6.89 60.78 85.79 53.89 95.31 70.63 62.35 46.88 79.09 32.53 52.58 91.33 88.83 59.52 13.52 11.89 55.47 35.91 39.76 1.91 66.52 99.98 37.27 28.61 27.78 58.09 89.73 30.91 5.00 48.39 52.92 10.36 54.98 53.17 22.78 92.69 37.38 41.68 23.81 4.67 25.44 52.80 87.72 45.90 4.10 98.53 2.44 42.84 43.76 82.37 28.75 17.06 33.30 81.09 14.18 40.29 11.58 9.96 81.70 68.09 32.09 24.25 85.08 48.62 95.71 56.72 27.17 31.91 94.14 83.64 74.56 95.59 29.81 49.10 32.21 25.31 30.40 9.30 40.66 31.57 61.07 63.88 92.01 -49.92 82.19 96.06 98.15 55.80 67.14 77.67 92.24 28.15 10.99 19.81 30.91 5.68 94.99 58.10 81.40 64.65 38.06 11.89 32.34 98.90 72.34 71.97 98.90 59.51 43.26 27.83 17.10 38.25 39.01 14.71 59.00 25.46 14.49 46.34 80.37 41.70 39.53 47.30 90.57 52.19 80.63 25.08 85.45 58.44 17.77 36.91 80.05 88.19 20.39 82.26 88.82 37.55 61.21 57.83 46.50 43.45 78.96 53.79 61.98 46.22 20.79 76.19 75.89 67.98 31.99 24.09 85.97 15.27 35.44 35.02 86.08 26.25 91.18 13.54 52.00 1.41 23.01 95.59 58.32 6.37 19.53 67.26 42.20 30.54 46.63 3.42 33.49 65.08 62.92 26.23 91.56 67.16 55.05 16.32 40.94 86.44 21.23 56.72 99.76 -56.57 86.96 12.59 97.52 58.58 33.78 78.96 11.27 93.24 34.07 98.96 42.95 68.44 64.28 63.07 97.01 8.58 19.23 60.39 96.30 4.56 64.69 70.72 30.56 40.13 67.67 46.57 54.42 42.54 43.93 89.80 24.83 15.31 70.82 40.68 2.51 72.42 86.12 40.85 36.93 75.95 68.00 75.19 17.72 66.36 49.58 58.12 33.59 84.04 1.60 26.57 65.84 21.55 12.36 25.82 19.69 90.68 19.05 38.59 24.95 76.11 17.48 17.21 37.07 91.18 9.73 74.72 33.44 57.40 82.12 78.51 82.30 6.96 22.93 60.98 2.92 12.40 41.90 92.09 17.71 64.47 29.00 20.05 34.45 17.76 1.58 37.30 66.28 97.74 17.02 9.72 22.93 73.04 72.96 7.09 42.02 17.56 25.68 74.85 45.43 -57.90 32.88 76.82 68.58 7.47 34.62 24.93 98.84 22.63 34.54 90.69 91.64 55.39 50.45 53.65 47.78 62.37 9.86 77.49 3.86 52.94 6.54 73.07 63.92 69.34 16.17 54.14 87.54 12.84 27.41 55.59 18.39 60.97 91.61 94.17 57.19 47.12 99.18 30.38 52.43 89.72 96.97 3.30 10.82 97.05 83.05 89.35 2.65 4.38 70.08 74.35 97.22 80.43 38.42 3.76 94.96 61.80 37.77 82.98 22.27 99.97 75.91 81.25 67.92 53.77 14.01 32.37 86.35 11.65 0.44 10.87 34.89 69.07 0.91 32.29 41.67 88.86 22.71 77.44 43.15 2.67 4.83 25.73 30.30 83.97 85.25 33.93 74.84 24.86 77.26 42.44 21.50 63.46 58.61 64.48 24.25 29.50 15.10 58.99 17.28 -8.22 17.90 38.73 39.22 72.69 45.22 7.99 2.08 95.80 95.45 33.25 57.56 69.87 23.76 21.33 83.82 94.13 69.32 35.82 9.15 64.90 88.29 90.90 50.78 10.14 52.87 10.55 11.87 96.91 3.66 1.92 38.00 30.55 76.11 34.79 30.06 71.20 35.37 6.71 94.48 18.37 13.67 30.84 74.85 68.04 51.69 43.31 46.16 78.62 98.55 18.61 35.77 97.06 89.54 80.56 25.69 84.38 26.93 20.55 8.79 80.19 42.75 23.46 29.51 85.91 32.17 73.82 33.59 1.98 64.28 1.13 80.89 95.07 40.05 82.06 81.25 51.33 9.74 70.94 36.23 50.61 62.51 74.69 57.94 52.49 30.65 20.80 4.25 18.03 29.58 0.66 72.62 73.80 45.92 15.21 64.91 47.95 13.44 98.80 15.56 -61.97 12.51 68.50 42.78 72.04 27.21 24.19 34.40 8.78 90.48 38.94 53.88 73.35 61.94 14.89 86.34 93.00 52.81 52.34 89.44 44.16 93.62 59.52 63.37 30.44 92.47 84.09 14.16 12.31 12.39 0.59 69.00 96.64 58.29 98.00 15.89 20.44 10.30 52.51 46.44 37.83 40.53 99.81 48.71 27.98 18.70 68.72 33.89 0.14 70.94 67.03 16.17 28.90 39.17 29.29 6.37 7.97 9.82 47.18 95.39 37.79 3.51 48.11 85.25 94.45 61.09 24.28 68.61 61.83 0.85 89.24 87.12 47.44 7.33 50.51 52.68 80.20 10.03 45.53 83.90 34.22 23.87 8.83 72.51 42.84 79.41 15.77 53.99 37.43 10.36 46.94 61.30 61.11 85.23 47.75 85.81 39.65 1.21 80.12 3.54 -41.80 6.85 87.25 10.69 1.67 55.12 27.00 78.23 11.43 18.01 81.49 13.42 57.19 61.04 96.48 20.04 57.19 88.77 65.79 52.85 20.73 69.18 56.28 41.45 71.75 91.94 62.86 81.47 86.05 19.99 49.01 5.33 13.28 28.00 49.08 9.27 69.93 16.04 78.83 57.29 68.70 1.17 38.03 11.97 18.15 17.93 47.11 95.99 82.79 6.76 49.67 14.54 79.82 54.02 49.78 65.06 84.51 88.30 43.51 96.11 82.58 38.38 34.80 89.56 31.64 0.65 50.00 2.53 0.73 55.58 65.29 51.45 62.58 46.92 14.35 67.57 75.14 51.32 57.69 63.26 10.76 87.01 65.61 5.79 70.55 28.25 81.45 42.07 83.63 24.52 10.56 28.21 21.82 21.00 71.54 67.46 16.45 28.16 65.82 29.09 -33.66 8.01 25.06 96.94 99.39 22.63 9.97 82.27 31.54 7.86 95.56 75.43 78.04 59.10 43.57 65.52 93.77 36.28 55.42 9.44 90.63 73.76 84.64 97.21 19.93 27.95 13.49 25.27 35.37 48.52 80.16 75.96 16.89 40.05 70.63 58.48 49.05 50.90 49.24 85.67 93.35 93.93 9.03 87.98 41.21 40.96 50.39 96.40 8.81 12.52 75.01 81.65 63.57 51.41 53.59 4.06 10.32 37.64 76.58 84.17 32.91 23.17 30.11 24.86 83.18 73.43 94.29 91.37 27.86 35.89 26.68 4.72 73.42 70.25 57.46 42.47 28.53 21.12 67.42 46.09 0.15 34.10 55.16 39.20 23.95 99.29 81.39 68.22 21.01 54.43 52.74 82.55 12.73 31.17 69.07 77.97 27.44 14.13 1.11 7.00 -29.75 49.33 28.19 49.61 3.46 58.97 38.16 88.23 76.46 38.60 2.04 5.40 47.00 83.64 95.89 75.71 47.61 10.79 98.29 54.57 17.16 32.74 30.69 55.54 60.85 86.05 98.94 51.12 30.99 47.16 93.92 40.27 40.67 26.82 61.81 6.32 91.11 80.95 55.31 73.62 62.20 81.74 30.32 37.25 83.58 2.05 28.84 34.67 30.11 0.83 96.45 47.53 8.47 71.09 44.92 96.79 51.56 32.25 30.19 0.10 33.99 90.39 3.00 58.37 46.56 86.39 3.86 38.75 60.13 34.97 24.07 22.69 96.48 82.39 91.69 26.12 65.01 0.58 15.91 76.36 95.13 27.44 95.54 36.11 50.67 41.93 6.20 15.64 93.27 75.61 84.90 38.16 85.39 71.46 37.54 56.53 11.62 76.96 25.97 84.21 -4.65 6.51 76.90 12.24 75.45 11.03 21.64 81.46 89.02 17.74 26.75 11.12 56.39 29.04 18.13 48.52 92.53 95.74 76.36 46.92 26.97 67.83 14.79 20.18 11.46 99.59 5.34 60.34 42.47 61.62 96.85 24.63 41.85 98.32 18.69 95.19 90.87 87.14 70.18 36.61 44.46 31.28 67.26 44.15 96.08 80.08 23.39 27.36 52.83 99.27 22.63 75.97 10.14 53.56 83.47 89.54 57.18 38.16 65.68 74.52 32.36 29.86 68.78 76.97 67.20 53.25 43.86 66.28 69.43 26.58 3.97 90.45 19.57 31.38 88.51 74.30 93.33 80.11 53.87 8.25 78.75 45.67 39.09 65.76 24.38 30.01 12.10 36.47 24.87 74.98 48.40 47.68 44.98 9.34 7.93 63.88 38.81 31.40 66.18 56.92 -8.06 71.63 44.13 53.62 93.82 85.14 67.94 51.09 62.96 85.58 27.11 50.87 84.32 10.73 7.69 64.89 67.26 49.48 79.54 42.16 6.54 8.54 76.53 49.39 96.87 38.39 58.53 27.02 77.01 84.25 93.44 95.10 87.25 39.34 20.60 63.10 99.79 31.35 49.01 67.24 58.24 1.66 58.48 38.39 74.08 30.58 57.82 72.96 45.77 11.36 17.54 63.01 95.24 64.09 13.38 95.58 8.42 54.42 98.94 71.22 48.38 31.71 39.79 87.26 43.42 80.85 72.96 5.54 31.87 42.53 25.96 81.67 5.43 23.74 6.31 63.99 6.01 54.38 64.69 19.23 96.72 85.20 1.54 6.88 35.57 90.60 12.00 79.23 52.89 85.35 13.48 67.78 70.81 38.21 10.86 26.70 6.13 75.22 34.40 24.88 -25.79 7.45 65.38 70.38 51.93 14.78 52.04 36.07 73.80 89.13 30.17 90.54 9.99 87.44 23.87 20.12 45.62 28.74 32.92 1.35 66.90 82.88 93.31 1.53 17.04 51.78 74.01 74.98 77.65 60.64 1.13 58.55 83.24 35.90 93.15 69.72 56.08 60.40 31.00 6.15 55.41 7.52 35.37 9.16 10.92 64.84 93.67 15.72 24.41 15.27 93.67 59.47 98.28 29.35 90.65 65.82 89.01 44.13 64.27 12.25 65.10 71.55 34.41 91.86 70.45 56.22 34.31 37.75 12.81 81.55 81.23 47.72 79.28 48.30 27.47 99.33 91.60 6.22 63.08 89.57 45.47 5.43 64.42 37.51 23.99 44.63 62.31 59.71 94.24 60.68 87.92 94.76 86.91 55.23 99.82 57.88 56.89 14.30 73.29 36.77 -66.91 29.93 75.75 42.84 17.74 14.29 6.84 12.38 69.44 96.75 91.84 78.44 99.40 77.34 59.42 9.39 71.54 18.30 3.68 93.99 62.49 68.66 58.80 55.51 8.50 15.89 16.48 79.73 88.26 29.47 90.03 6.14 0.73 10.11 59.43 63.93 30.61 0.73 64.99 40.42 81.17 5.08 23.54 46.51 79.72 68.91 29.98 64.19 38.43 27.39 7.66 54.60 35.56 87.85 6.47 61.82 96.82 71.67 18.90 7.41 75.83 90.83 23.72 59.93 35.38 56.48 9.30 7.49 78.44 99.25 49.42 34.98 91.51 16.41 25.69 26.77 56.99 59.56 79.61 95.30 74.54 75.53 38.95 39.91 69.16 52.86 89.51 8.46 3.20 73.36 33.60 60.03 6.27 60.83 9.87 3.25 37.11 38.55 87.29 3.92 -30.93 47.55 22.60 18.93 4.19 47.25 17.73 41.04 14.96 59.18 65.48 9.04 54.50 42.85 32.92 33.98 18.61 59.73 20.41 34.36 62.78 25.83 67.69 33.42 56.73 25.73 40.66 41.76 83.22 55.67 85.00 22.10 26.88 55.11 84.95 86.82 95.37 64.93 18.99 26.61 7.93 80.12 50.98 41.85 96.34 10.53 80.01 66.30 41.29 23.40 55.46 39.05 24.28 94.74 57.18 34.08 30.29 76.44 0.25 38.69 99.22 72.52 26.25 92.96 52.29 25.21 45.34 70.84 99.30 59.22 74.73 0.93 49.15 50.53 4.03 14.30 33.96 28.62 64.42 21.29 45.19 12.17 61.88 84.59 28.35 77.56 69.41 34.67 39.01 30.08 32.96 37.53 79.47 29.06 45.76 19.81 77.93 36.13 46.84 80.75 -37.56 37.35 56.05 96.70 88.02 88.02 87.23 75.66 68.70 6.81 4.26 11.62 23.52 79.41 85.09 77.66 36.31 36.75 98.61 79.98 18.86 85.47 55.55 65.90 58.66 87.38 92.17 54.07 78.83 73.83 77.70 41.22 97.07 45.27 42.25 18.48 3.62 4.89 98.49 53.87 81.57 27.96 74.09 31.62 29.14 64.59 90.37 11.17 57.91 33.05 47.41 56.09 58.06 13.09 28.07 56.75 46.22 98.12 85.67 25.41 34.11 52.53 71.28 18.10 38.27 17.18 6.40 21.23 25.58 77.92 74.81 81.99 1.63 81.72 97.20 79.86 99.29 13.98 70.51 99.48 11.60 11.90 75.13 48.31 32.97 75.14 72.13 85.64 9.58 51.68 4.63 62.89 88.51 94.35 77.76 13.80 35.10 64.85 85.12 40.86 -95.12 29.89 82.38 18.19 2.45 53.45 17.74 65.01 15.58 58.87 99.43 37.68 56.33 57.24 29.20 26.10 31.19 55.92 66.92 73.96 3.49 88.16 33.45 67.14 56.04 24.99 18.51 6.37 92.26 56.33 81.87 21.93 84.69 75.73 44.73 56.46 5.81 68.41 27.43 28.35 78.88 39.22 58.37 80.23 60.40 12.03 50.49 79.32 44.58 21.36 39.99 6.23 98.93 6.01 60.54 93.98 17.70 27.63 1.37 61.85 39.12 76.11 74.42 68.32 80.93 12.85 44.88 97.58 98.13 52.72 58.77 71.35 6.21 12.78 69.70 28.99 64.24 90.76 42.03 77.23 43.62 66.27 84.51 34.88 89.93 37.01 47.93 89.57 71.57 96.10 96.98 55.40 17.52 77.47 64.27 1.74 86.93 94.82 96.38 63.80 -40.08 97.22 79.99 54.70 66.69 11.15 31.12 85.41 0.66 78.59 1.05 33.18 17.21 62.45 78.64 95.62 59.78 73.61 16.36 85.82 99.47 6.97 78.53 11.59 61.59 97.82 22.05 12.98 58.36 99.86 65.43 25.22 98.89 94.87 21.71 94.25 9.28 14.23 21.57 67.54 8.81 1.97 48.76 26.28 37.30 28.57 45.49 92.35 74.73 7.19 49.25 24.55 32.33 14.39 78.56 56.00 46.73 40.84 2.31 85.08 0.30 64.85 12.25 20.06 66.50 58.35 1.47 29.88 36.50 81.73 47.50 39.79 89.10 70.08 83.44 43.95 89.17 88.03 30.44 9.56 8.25 85.29 90.09 80.16 26.65 76.45 77.20 18.91 25.05 25.40 52.95 3.48 51.88 6.91 85.42 86.29 86.22 97.62 17.35 82.24 -30.39 90.78 84.54 60.42 56.50 99.56 39.97 37.67 13.55 74.58 18.08 17.07 10.85 54.13 56.00 21.34 11.19 20.04 10.77 57.21 99.64 96.32 79.53 46.25 1.67 38.69 35.70 6.77 77.84 85.74 22.38 55.82 54.65 95.44 73.16 17.56 81.02 18.20 85.68 26.38 79.68 17.11 84.41 63.16 32.37 13.15 79.59 15.02 35.45 10.46 21.90 60.87 99.05 50.09 12.54 22.06 58.13 41.21 9.41 49.68 72.42 14.75 38.79 47.69 0.28 56.03 35.88 61.29 19.18 69.91 61.12 30.82 14.80 75.19 93.79 92.99 4.85 79.03 74.85 21.03 52.56 80.20 29.46 0.87 63.84 95.35 50.13 58.84 44.57 47.38 48.37 22.68 16.94 47.75 49.06 45.67 10.09 92.30 45.88 31.64 -22.04 26.94 29.35 2.36 58.89 47.96 10.43 93.50 77.70 30.74 71.17 32.28 92.53 75.48 21.23 97.87 82.77 42.94 67.52 98.19 9.90 74.48 6.73 61.91 14.50 98.00 75.40 30.49 10.99 62.69 87.58 68.66 8.74 62.29 63.22 47.30 14.39 67.05 93.23 16.43 2.82 0.14 44.97 42.83 19.95 98.72 89.60 81.21 41.69 97.79 74.23 62.95 90.68 7.81 60.52 44.39 85.81 66.25 37.83 35.95 48.21 40.91 58.09 90.67 88.08 2.54 8.03 42.18 97.28 96.50 56.06 64.63 40.23 77.62 45.59 24.90 93.99 15.45 44.31 70.94 60.48 61.97 1.34 91.09 9.55 6.06 79.55 32.10 91.60 96.96 3.72 25.97 68.40 28.24 15.05 52.55 99.30 6.18 58.79 75.58 -99.40 78.72 12.21 2.81 91.18 7.93 30.92 46.57 40.95 51.66 85.69 97.77 0.60 65.04 56.71 9.16 4.39 79.13 12.42 4.74 70.92 29.89 53.96 10.25 58.70 46.30 71.08 14.84 50.54 48.56 46.91 84.59 95.82 35.97 5.60 46.94 41.72 86.45 38.35 76.88 3.60 20.11 14.91 86.80 28.93 24.62 39.34 73.13 26.51 82.28 77.63 84.03 93.70 1.02 91.74 86.91 60.58 20.02 61.84 72.39 1.24 67.28 50.94 5.39 49.07 75.71 33.53 35.57 44.56 83.75 20.37 82.28 21.72 0.49 73.12 38.97 27.80 20.21 83.12 68.25 67.88 31.49 18.07 45.09 77.68 12.56 45.56 47.92 85.87 40.08 76.89 92.17 15.97 54.07 34.02 26.48 90.88 66.94 62.49 66.63 -57.85 32.93 41.28 37.80 95.93 33.39 63.36 34.81 79.26 13.33 91.94 40.36 3.48 48.29 65.01 34.72 89.48 75.90 71.43 87.60 35.98 54.66 66.01 8.43 23.12 72.04 40.27 73.09 92.08 60.18 14.67 71.03 93.72 55.69 34.04 75.91 17.57 0.14 28.16 80.39 44.51 64.31 18.51 68.13 18.82 52.05 29.01 31.50 22.92 64.52 50.15 62.84 38.09 48.38 85.32 89.07 12.85 51.38 18.06 52.36 82.73 5.46 54.33 18.65 90.02 46.30 19.78 54.15 85.13 78.26 16.31 94.62 58.03 85.08 39.49 99.98 65.52 85.17 17.90 74.10 63.88 65.08 80.70 34.35 69.48 64.17 92.46 42.57 4.56 58.79 87.83 7.36 26.86 64.31 51.27 16.27 72.64 48.51 36.92 14.56 -42.38 38.69 13.11 75.72 53.36 87.85 55.10 60.34 67.50 24.57 60.35 37.44 48.49 99.57 35.51 1.20 5.00 88.77 25.84 6.79 21.00 47.69 34.17 6.93 10.00 61.53 41.43 10.77 91.85 17.07 55.55 85.33 49.30 71.69 83.02 78.30 50.29 48.96 20.05 30.20 16.97 65.73 80.79 57.73 71.89 36.05 40.66 20.09 15.01 27.30 40.53 21.31 22.16 42.29 4.23 86.50 99.64 16.32 11.68 67.67 27.08 91.93 95.10 67.17 89.17 15.48 7.63 77.56 18.70 57.42 15.38 30.24 42.12 27.16 64.52 36.70 42.64 84.59 49.91 24.97 97.66 99.99 26.67 46.94 39.64 94.25 76.46 72.39 78.81 80.39 87.96 23.49 20.58 82.89 78.55 10.90 19.43 90.28 68.19 40.29 -8.33 80.53 85.58 95.56 44.83 42.77 89.12 71.02 75.96 38.69 14.74 87.21 91.14 63.52 52.72 74.18 77.04 58.94 21.45 88.22 73.04 40.92 80.49 5.70 96.19 56.60 56.25 70.43 18.40 72.48 59.00 98.54 46.12 84.43 41.44 20.02 84.75 83.09 2.02 67.40 2.03 15.16 35.56 19.98 24.58 79.32 48.42 8.60 6.24 93.19 56.05 92.15 57.53 26.53 77.35 22.85 16.34 88.37 55.16 21.87 19.81 54.79 43.45 93.74 94.96 61.20 79.35 68.07 5.94 58.52 82.39 8.53 51.87 80.46 38.33 41.46 8.64 3.08 90.41 68.93 63.36 36.44 8.84 91.68 21.36 51.77 46.63 58.68 40.49 61.51 16.17 23.39 83.51 42.40 92.46 89.40 95.24 30.08 85.84 12.59 -11.46 78.29 12.35 54.51 66.85 11.11 10.15 74.60 92.07 47.63 69.79 73.17 70.38 82.88 58.42 87.22 47.56 6.93 86.97 95.87 67.85 39.15 56.06 17.37 99.24 23.64 21.65 78.55 56.34 86.85 43.09 86.33 44.87 83.19 29.94 37.12 45.73 41.74 57.61 41.22 92.67 61.01 82.55 29.77 26.86 3.64 0.67 93.26 52.76 37.98 13.66 64.87 54.21 32.65 26.24 58.53 69.41 98.98 52.29 63.00 58.78 86.65 31.89 69.43 77.09 43.60 3.47 87.09 17.48 49.60 83.20 8.59 86.62 83.14 58.01 14.53 54.83 1.27 39.21 82.20 89.80 13.01 23.05 97.67 85.06 75.36 25.67 22.47 79.18 92.40 65.81 1.94 43.47 44.50 27.31 52.88 92.33 24.66 68.25 85.72 -74.64 6.52 10.70 71.22 13.60 89.05 83.54 54.62 29.37 41.05 52.08 13.89 41.80 0.11 22.48 92.03 90.72 75.72 96.70 62.62 62.10 98.95 40.88 94.11 26.90 29.24 25.10 87.89 16.06 70.08 99.10 57.58 50.64 21.76 40.65 54.13 45.73 48.62 30.83 95.39 16.97 33.42 84.50 6.62 8.72 46.29 48.55 43.03 98.85 5.92 16.87 94.33 93.93 40.77 7.55 5.94 22.34 85.11 2.74 54.78 43.35 66.07 46.08 49.16 11.14 77.09 11.47 11.43 45.67 3.51 68.49 5.65 58.16 6.44 86.74 28.68 49.04 60.63 32.67 87.76 92.34 24.67 13.16 52.44 16.01 19.07 47.79 88.64 15.84 1.66 99.23 27.37 59.05 42.45 50.10 55.82 2.84 31.72 73.82 86.78 -19.57 34.20 36.38 3.48 49.36 75.33 59.51 95.30 13.85 11.84 17.13 55.91 24.43 81.68 90.07 46.33 94.93 35.79 16.63 23.64 6.11 2.06 45.07 2.70 66.86 95.19 24.68 62.69 84.08 27.07 20.29 51.83 80.42 18.00 71.76 51.79 37.87 17.12 10.74 14.47 17.92 33.37 12.60 98.17 71.23 16.71 41.00 31.99 82.20 95.42 52.87 43.38 1.77 64.55 66.00 28.10 89.66 76.39 2.98 50.32 42.99 62.87 56.58 82.02 14.50 31.70 2.71 24.98 53.25 6.79 91.27 37.11 39.85 54.21 49.35 33.91 45.98 13.59 87.15 75.23 18.16 24.46 36.70 61.39 77.45 72.22 1.97 72.98 10.98 64.52 77.40 3.51 73.70 51.13 96.68 95.90 32.62 57.43 0.98 81.58 -23.43 91.49 26.32 1.21 13.71 96.09 74.71 50.46 90.37 45.72 78.04 8.51 50.91 45.26 51.51 12.58 42.05 35.78 72.03 22.56 96.32 70.04 20.74 98.53 15.46 93.92 22.02 72.09 0.29 41.39 38.27 57.21 0.41 82.20 35.56 63.18 93.41 6.84 55.46 68.41 46.95 6.50 52.81 76.58 25.86 55.05 7.14 31.33 62.79 21.44 27.72 40.39 77.06 57.50 79.19 49.38 70.66 27.26 40.59 63.86 56.53 69.43 22.16 82.16 33.54 62.50 36.12 84.82 20.96 11.75 52.14 72.66 37.68 19.86 3.00 36.40 9.80 24.75 1.23 91.06 87.53 3.25 2.51 25.09 6.53 17.80 77.14 85.32 90.67 7.59 75.05 23.99 57.37 3.02 15.95 11.12 96.46 75.68 36.77 4.94 -45.34 79.73 76.52 35.29 70.78 48.54 40.14 9.90 66.05 75.51 72.99 81.51 16.98 58.83 74.80 54.10 32.90 14.74 13.85 78.43 15.21 98.81 52.32 18.22 20.08 15.93 78.87 83.68 59.63 35.44 97.63 84.12 19.49 86.65 35.70 76.67 41.99 2.51 54.59 69.27 62.90 68.03 21.63 30.28 49.37 92.78 64.11 13.37 71.74 2.12 96.50 2.50 53.34 18.47 73.84 52.56 91.41 22.40 98.28 77.53 74.13 86.84 89.59 36.26 14.58 56.94 67.38 0.68 4.63 13.84 35.81 85.72 96.12 99.71 5.72 8.93 96.53 52.08 82.55 16.61 79.43 24.31 51.60 46.64 5.93 4.85 21.81 14.75 74.63 1.01 76.35 18.41 96.11 11.55 5.86 0.91 89.75 22.69 44.73 33.20 -13.13 1.65 65.51 18.39 58.18 89.42 49.21 57.89 52.93 30.21 4.97 52.25 6.43 7.94 17.01 86.43 90.70 76.97 37.75 5.64 50.67 15.08 9.95 62.86 66.94 3.46 61.31 55.24 2.58 33.98 68.59 95.93 25.90 10.09 65.67 9.18 69.47 39.11 40.78 50.28 36.14 79.40 15.70 39.50 80.82 64.60 7.48 58.26 53.09 57.51 12.41 5.36 13.34 94.07 63.44 87.34 14.31 22.25 64.96 50.89 18.54 14.14 77.35 63.57 56.68 82.09 50.34 3.01 76.09 60.98 14.66 71.93 91.35 95.58 75.26 58.18 10.93 13.32 37.79 22.76 20.46 20.85 29.04 1.74 48.88 32.74 50.49 41.79 70.24 6.04 62.81 61.40 69.99 10.39 2.81 54.81 40.30 37.94 16.51 70.60 -20.02 59.78 20.55 36.24 61.41 85.38 11.15 53.21 71.46 70.83 43.33 53.60 69.00 47.51 38.43 10.01 47.14 21.80 17.86 52.06 66.95 61.06 86.18 27.80 75.38 81.44 38.22 6.36 9.14 49.21 13.60 39.32 79.07 91.81 40.68 41.60 96.49 21.55 90.71 71.88 59.59 59.34 19.30 45.97 51.63 78.27 20.46 52.58 60.03 41.61 40.98 70.22 70.93 66.20 0.47 14.67 88.38 38.08 86.38 23.59 25.33 33.53 76.12 14.62 38.82 90.95 4.85 9.18 99.66 43.53 7.57 1.75 8.57 99.54 15.19 47.58 65.66 11.17 94.10 48.13 60.16 60.60 26.95 60.56 1.73 78.41 96.20 88.90 7.32 91.95 85.78 24.45 81.49 3.00 12.53 68.95 67.77 70.88 64.60 19.28 -53.92 19.60 55.93 21.05 23.91 98.34 26.97 49.74 40.38 96.41 18.14 97.13 52.06 22.88 87.20 70.62 94.34 83.00 97.24 45.79 68.28 99.34 90.03 70.61 16.44 61.61 43.19 16.64 29.24 36.33 39.56 23.89 80.19 50.65 81.14 4.86 54.18 19.12 81.63 97.58 29.26 59.89 64.02 63.89 90.07 1.26 45.73 33.24 60.81 67.13 83.74 90.32 99.78 46.66 76.98 47.09 28.26 92.06 28.14 66.96 11.25 12.85 73.51 56.60 35.63 22.08 93.89 19.97 18.01 12.16 36.18 82.64 38.52 3.38 49.87 82.37 47.69 18.32 85.43 93.03 44.90 54.63 56.36 84.08 87.47 7.71 14.19 75.40 34.06 86.21 92.30 76.33 30.51 11.75 75.76 57.78 38.55 56.90 73.85 75.33 -65.25 48.28 13.26 60.94 37.94 86.08 67.19 64.97 46.27 61.55 43.55 11.24 34.30 6.47 6.56 30.46 94.95 57.98 45.34 11.75 24.40 23.78 71.34 59.16 74.10 54.95 64.34 97.69 27.37 33.08 13.49 63.46 13.74 78.42 86.91 89.58 32.02 31.61 35.51 82.46 87.66 1.21 69.08 23.10 26.49 3.59 32.54 57.67 10.41 97.45 9.44 43.94 85.56 22.15 90.10 63.98 72.53 94.11 77.98 79.10 63.65 18.41 76.87 63.81 68.54 69.87 97.54 69.00 92.60 42.16 94.64 81.05 53.35 84.76 52.76 92.69 51.63 55.49 15.25 82.10 52.56 12.77 89.46 26.94 27.25 16.26 94.12 26.82 95.15 10.65 27.92 65.60 72.65 57.73 37.18 53.46 95.51 52.47 55.19 86.13 -52.87 33.46 74.25 19.26 20.99 75.35 6.47 97.35 61.11 97.67 96.05 35.38 37.83 55.47 63.43 82.24 19.37 76.74 35.77 22.53 38.30 99.42 71.29 29.02 88.19 9.82 86.48 66.39 75.39 83.22 68.64 53.72 35.80 40.96 55.07 1.12 81.09 69.32 7.78 17.39 90.75 54.54 96.28 30.66 4.53 69.57 95.17 38.43 49.29 86.22 35.06 87.09 36.50 84.74 74.02 91.21 23.94 95.61 31.15 85.25 32.23 8.79 9.35 78.39 12.97 29.21 76.15 58.30 40.85 53.15 96.65 31.40 26.37 52.76 47.35 11.88 23.86 81.67 20.32 80.95 62.18 75.26 54.97 26.38 25.49 80.31 12.88 15.47 54.57 94.75 42.86 79.66 76.40 29.27 12.48 95.24 5.30 10.46 81.50 43.17 -34.85 57.62 89.27 33.19 69.03 46.25 41.47 37.41 52.97 93.31 92.39 88.99 95.30 50.42 55.77 26.99 14.17 80.66 76.62 9.07 57.87 54.74 2.05 21.27 2.84 75.42 80.73 18.41 75.42 92.72 3.66 75.38 40.87 15.34 31.33 96.45 45.88 96.23 25.86 41.51 72.99 67.74 78.69 93.09 59.37 44.02 12.27 82.71 40.48 94.73 93.42 1.68 42.80 56.10 9.46 57.00 78.62 76.93 64.09 20.39 84.84 85.49 89.67 75.11 76.54 80.90 19.72 7.65 33.84 40.66 50.89 37.51 62.37 74.39 35.73 27.00 82.11 43.48 20.14 31.15 80.49 22.38 65.35 53.84 63.79 64.14 98.92 88.27 9.17 82.56 58.35 43.49 96.64 96.97 79.73 13.15 10.28 37.66 62.96 68.46 -7.73 38.05 66.20 36.57 71.33 54.09 44.63 47.06 80.09 14.24 89.70 54.17 65.92 85.61 22.57 19.80 94.90 86.38 31.85 8.53 76.94 24.96 14.91 68.20 76.45 75.90 93.70 34.77 67.58 15.31 95.65 71.67 45.52 25.46 55.26 97.40 78.82 53.49 91.14 31.76 7.23 15.71 85.53 70.06 62.91 63.48 93.76 55.27 27.08 55.64 57.25 25.56 63.61 98.71 73.61 48.68 44.60 57.42 81.29 1.73 33.97 7.07 37.95 13.58 7.46 49.27 78.80 26.14 66.63 84.83 45.41 41.82 8.00 22.95 40.53 41.67 75.77 25.96 3.78 51.76 31.66 71.57 85.78 58.89 84.47 64.72 99.76 76.62 29.57 55.09 41.67 77.93 34.63 20.12 77.00 76.45 52.24 54.68 41.93 46.49 -96.54 23.90 60.97 66.36 92.92 73.29 62.60 6.04 13.84 8.17 27.49 90.79 42.76 31.14 27.77 90.22 4.56 59.14 46.43 99.84 98.07 34.57 39.23 5.67 40.63 76.51 39.20 34.23 25.78 68.80 10.18 55.12 30.44 97.34 9.32 58.71 96.66 34.62 8.08 76.18 73.82 67.72 16.13 96.19 19.68 30.16 49.72 57.38 33.25 89.29 22.68 35.04 94.19 94.65 7.49 87.65 52.13 47.11 8.60 0.72 81.11 73.52 80.59 84.02 93.36 10.10 53.31 96.73 17.05 32.07 95.72 59.08 64.22 85.45 91.39 44.79 32.26 5.71 93.47 93.64 17.20 75.75 4.36 47.87 88.01 58.82 2.41 30.32 3.18 59.85 10.93 53.03 33.58 15.42 82.16 79.09 40.48 61.14 93.13 93.41 -0.24 46.62 18.29 51.98 66.70 89.29 66.19 3.76 68.79 50.86 9.53 15.16 17.51 25.64 69.35 23.59 62.21 59.85 74.39 12.03 21.00 25.43 66.58 77.95 74.82 65.30 26.83 42.01 4.40 7.83 99.00 91.15 22.57 88.38 94.17 38.11 93.60 78.04 58.74 69.55 97.67 95.58 57.37 58.86 12.95 21.89 67.57 73.39 55.68 5.44 68.61 85.03 2.41 40.08 63.30 75.71 19.67 98.44 77.67 71.31 87.12 14.96 32.91 50.92 71.90 95.44 41.58 97.17 46.50 79.40 84.69 50.36 14.57 41.89 29.91 20.62 48.99 52.76 90.31 41.91 34.84 6.87 17.92 14.45 60.72 24.60 38.89 95.11 31.84 70.88 35.55 93.54 36.13 49.21 77.45 52.15 46.98 68.24 75.17 45.68 -70.05 45.66 8.11 99.60 60.30 26.34 64.17 45.27 24.67 13.17 52.55 84.36 70.72 20.32 3.00 37.19 59.32 66.21 73.88 56.65 67.73 16.36 35.89 97.44 1.99 95.83 89.77 20.24 80.33 21.07 70.22 44.86 28.25 62.68 86.26 79.87 9.15 92.11 13.76 43.02 41.84 56.23 1.51 47.75 83.54 33.45 76.00 22.63 72.29 10.60 71.97 44.61 21.42 6.13 34.53 56.66 4.86 88.33 22.77 73.88 21.06 58.98 59.80 97.05 43.24 1.07 27.14 47.55 80.84 46.33 75.14 41.99 27.83 79.60 38.94 47.57 93.77 5.17 34.06 71.38 86.53 79.37 85.36 5.98 36.77 84.25 21.05 79.04 96.88 11.08 16.16 5.90 69.27 79.11 54.04 15.58 21.27 85.72 46.46 9.35 -8.35 59.25 17.76 4.25 6.66 86.30 15.86 99.18 42.46 3.74 44.38 67.40 46.81 12.91 35.10 16.10 40.06 59.50 10.28 60.68 39.24 42.64 47.50 96.08 31.37 91.59 19.08 86.31 43.56 36.17 25.74 85.33 81.59 84.35 94.61 23.91 80.88 14.91 32.33 20.11 21.68 53.89 97.11 16.89 36.72 27.41 14.60 86.50 84.38 87.16 88.12 36.13 99.70 98.25 62.68 48.27 81.92 52.17 34.33 55.10 16.95 11.21 39.56 57.69 68.40 84.83 50.21 26.84 21.98 65.04 32.84 91.90 35.56 42.92 88.73 66.46 45.25 64.13 31.46 67.99 59.11 79.53 29.55 50.33 80.24 21.38 67.08 9.94 4.53 0.97 63.22 55.74 38.50 10.79 72.02 17.77 50.29 19.16 13.01 18.93 -60.01 80.09 39.76 92.29 95.00 15.38 5.48 96.81 6.98 72.92 14.29 55.64 91.91 71.32 49.57 88.35 59.39 83.19 30.53 1.55 97.65 63.63 29.59 13.76 66.73 91.07 45.08 49.69 26.95 55.64 83.26 39.82 88.66 43.13 26.44 98.76 66.27 13.14 85.31 25.92 92.85 99.11 83.85 57.67 84.17 41.55 33.57 98.25 90.14 93.37 59.21 8.63 80.07 77.35 92.05 24.88 55.26 74.73 68.21 40.21 2.12 78.42 30.59 96.22 98.42 3.20 97.24 65.05 58.73 31.18 99.07 21.50 25.77 5.05 86.01 21.21 23.89 98.23 55.39 77.32 17.37 71.29 28.33 45.26 39.45 17.66 74.83 88.10 86.68 5.91 96.05 95.63 55.91 20.00 45.01 70.03 60.49 68.79 16.24 80.82 -19.69 56.42 13.17 92.96 17.65 84.09 49.14 37.80 72.72 30.61 87.73 45.21 57.79 4.53 43.07 61.75 18.79 80.21 61.73 99.82 97.36 3.63 52.51 90.02 76.98 18.18 94.36 5.82 24.43 16.21 65.71 72.59 81.21 48.98 23.64 79.33 97.54 4.96 75.65 43.53 94.78 74.94 19.83 59.81 49.47 46.93 37.68 14.54 17.65 79.08 65.50 52.36 98.56 34.61 52.08 87.96 93.05 83.02 37.59 31.51 55.63 92.08 75.60 57.70 11.00 43.82 92.38 33.58 81.92 67.19 23.97 86.20 2.36 15.69 78.76 85.43 37.70 85.78 76.19 33.44 66.70 61.14 86.40 69.43 86.05 71.87 47.26 65.02 36.41 21.30 23.75 76.01 19.87 53.53 12.05 36.30 43.28 24.54 64.33 0.08 -49.02 65.85 78.52 86.50 66.62 16.79 93.22 47.55 34.64 16.24 13.65 30.08 44.07 78.07 10.05 68.68 94.59 60.46 45.97 25.03 69.39 50.89 96.99 65.75 8.96 72.83 54.71 29.16 59.14 75.87 42.48 31.46 30.09 69.17 64.08 0.39 59.62 29.85 91.57 44.82 81.44 50.01 94.86 99.89 71.87 78.17 44.21 23.60 74.59 63.80 35.75 23.87 86.03 50.44 63.84 55.24 19.93 53.45 37.79 13.88 11.14 87.64 17.67 93.40 9.01 97.70 27.05 92.79 95.67 59.07 63.47 21.66 3.85 67.03 80.42 31.70 91.01 72.02 88.43 17.12 48.10 31.49 7.43 54.82 71.71 87.94 98.49 62.17 59.42 54.36 82.92 51.07 35.47 38.16 66.15 97.02 53.58 15.36 84.63 32.26 -24.33 70.48 52.33 12.65 72.40 50.38 9.19 91.55 76.22 68.43 11.85 60.07 53.60 53.13 70.76 48.35 69.34 36.16 88.19 57.54 98.84 69.99 58.25 53.60 57.87 36.88 40.68 48.17 55.14 41.79 67.17 30.45 20.17 38.27 65.68 86.37 15.50 90.36 87.75 47.30 83.25 6.35 76.18 20.28 21.70 1.96 62.12 7.08 2.75 54.27 16.87 7.61 33.93 89.00 62.33 61.55 26.82 67.60 12.74 55.40 74.09 41.67 98.31 23.64 65.97 5.06 94.69 79.22 88.52 49.37 36.63 19.32 28.48 64.17 27.43 94.04 70.97 4.57 82.14 80.25 22.61 86.77 46.94 65.34 71.66 11.38 10.50 97.24 38.75 89.20 19.11 31.05 5.71 43.44 49.90 74.40 87.96 7.63 89.08 91.33 -65.97 34.78 30.63 96.34 11.02 73.55 28.70 75.29 42.91 11.07 48.91 83.05 39.96 49.98 86.51 86.46 28.81 8.68 84.77 67.91 60.15 88.67 43.70 41.48 43.90 1.14 35.14 72.31 70.86 74.49 62.61 15.23 66.32 82.26 5.37 85.84 93.72 21.72 71.24 34.64 54.28 84.55 93.60 78.88 62.72 12.00 49.74 38.68 78.15 16.36 52.57 62.46 37.53 86.44 30.35 81.86 85.72 16.27 83.12 22.67 29.68 53.02 11.64 21.49 70.90 58.00 84.19 46.47 34.10 23.00 33.58 58.42 3.49 5.27 6.36 96.33 78.73 43.37 60.28 38.77 49.14 82.37 66.54 62.08 32.72 29.94 61.79 88.77 87.13 68.45 53.73 45.55 11.58 19.43 38.10 42.87 68.53 31.27 34.70 89.69 -21.29 97.72 99.52 29.59 97.96 86.51 2.35 18.32 71.86 11.01 71.15 14.02 37.48 13.63 39.84 42.06 96.86 51.62 71.70 52.12 1.85 84.44 22.68 39.68 28.92 87.76 38.36 57.01 50.79 7.59 93.48 73.35 34.37 85.08 79.09 47.91 56.00 74.00 1.37 87.31 79.50 77.55 77.57 31.11 95.99 12.87 15.01 33.01 28.38 3.00 37.50 30.19 2.47 83.39 67.88 41.61 28.08 11.69 69.48 50.02 65.19 47.66 32.27 69.61 85.73 45.10 38.85 74.59 58.41 62.26 9.34 93.65 31.76 29.43 26.90 89.99 43.33 19.12 69.84 79.74 26.15 16.14 22.60 43.89 87.97 91.80 8.66 97.94 87.42 78.87 67.15 88.84 25.53 23.95 13.30 72.53 39.47 72.10 90.50 36.22 -78.87 33.25 23.73 30.21 7.29 72.59 50.74 79.66 57.98 59.71 21.95 3.62 93.32 83.77 99.94 26.08 27.68 56.39 9.30 80.65 48.80 40.39 80.42 15.91 65.34 75.27 11.22 9.57 19.09 65.42 0.73 2.85 41.88 88.12 86.64 68.33 51.98 64.94 62.57 96.63 39.18 17.53 33.41 42.43 74.45 14.06 48.34 2.71 42.44 60.08 19.58 36.14 42.77 82.49 21.14 12.12 22.66 33.55 49.32 62.66 86.18 84.20 22.07 49.88 73.67 41.46 98.36 88.63 63.29 16.15 5.01 21.47 55.58 56.32 73.12 63.95 37.49 72.40 12.90 28.93 35.93 28.77 9.08 74.15 28.02 88.53 30.30 15.74 71.86 50.02 63.87 22.56 10.65 92.44 40.87 20.42 43.03 95.78 40.28 59.49 -27.08 65.11 64.34 74.30 39.03 15.30 56.73 30.07 96.53 31.07 44.20 13.50 22.76 84.94 34.49 23.68 28.64 24.60 62.29 82.64 21.77 38.91 51.24 75.30 88.78 85.42 24.98 47.53 51.90 86.13 36.11 75.36 4.59 94.75 7.24 27.42 63.99 29.54 25.46 52.10 77.60 81.49 29.67 55.22 59.24 42.42 44.07 2.37 47.02 2.43 13.13 35.38 72.52 87.04 51.39 88.29 44.73 54.52 24.18 28.37 95.20 51.19 33.27 54.45 57.71 11.29 77.97 42.82 51.55 62.20 11.94 85.28 9.21 81.73 53.78 98.23 54.19 1.97 27.50 35.84 80.25 33.21 31.87 1.37 51.67 49.57 44.49 27.26 95.87 96.80 50.73 44.31 50.17 44.05 9.52 34.15 90.25 99.40 10.10 87.12 -8.75 48.65 2.29 4.04 64.53 23.71 88.24 1.84 84.67 99.03 28.66 41.47 52.91 8.93 14.36 66.68 44.48 97.37 66.70 48.38 79.01 55.38 46.99 8.72 29.07 64.66 7.54 27.26 45.13 94.22 24.68 31.90 70.21 6.42 14.20 93.04 56.04 51.23 79.09 83.61 31.54 96.19 46.06 63.78 15.41 77.94 65.28 41.47 12.31 73.80 67.67 10.73 59.53 67.05 99.69 48.78 41.15 55.95 44.98 55.84 34.20 28.75 98.72 83.19 7.85 38.95 8.78 90.84 71.39 44.56 21.04 32.57 94.63 97.04 49.30 16.76 15.74 79.57 6.83 32.85 34.61 90.29 33.62 12.32 16.28 46.06 87.67 49.80 51.80 65.55 80.04 56.73 22.03 84.50 58.77 24.93 9.21 39.48 0.37 1.08 -95.85 86.77 6.95 53.67 63.84 35.06 93.46 40.51 4.49 7.05 34.46 80.92 24.55 25.31 74.82 73.93 24.13 31.05 57.03 52.23 12.49 4.77 57.14 13.68 43.24 30.23 28.86 38.58 31.40 11.73 39.14 74.30 48.70 8.93 93.65 7.63 27.68 54.06 85.27 99.54 68.91 86.03 70.84 8.59 2.18 66.55 69.71 98.69 86.87 61.44 26.69 1.68 53.31 38.67 16.95 48.27 36.63 61.94 26.67 47.61 52.25 46.57 19.20 78.67 20.05 53.17 3.71 1.76 6.82 44.75 88.58 14.26 47.17 62.94 98.10 19.00 1.73 70.25 83.62 75.03 20.20 89.05 15.80 22.56 42.89 65.06 13.90 55.75 32.69 28.10 62.08 10.35 93.21 82.26 66.08 42.05 94.24 9.86 51.17 40.82 -15.61 70.15 66.29 9.48 23.08 91.56 19.82 30.70 25.02 94.03 30.52 85.84 95.12 74.23 12.20 80.98 0.04 1.81 86.43 11.25 51.23 3.98 6.08 27.04 31.45 47.16 72.69 50.75 97.84 20.24 73.38 24.80 46.68 88.66 0.37 83.08 49.85 59.42 50.78 26.85 34.16 30.30 54.20 5.58 26.62 47.31 98.20 52.80 24.32 74.81 87.09 41.55 31.57 82.47 34.06 14.74 85.32 18.89 6.30 57.48 50.89 45.42 31.12 67.76 77.99 92.89 16.21 96.21 36.34 89.29 42.35 95.05 49.67 56.38 78.63 81.40 7.12 45.47 76.47 98.34 82.19 35.30 24.48 46.56 99.71 48.04 31.12 86.89 82.38 35.34 90.91 67.40 65.19 18.13 78.57 83.67 32.31 91.28 0.61 38.62 -57.19 69.58 4.48 48.61 87.75 31.60 72.68 10.29 91.39 16.14 31.81 58.45 74.04 9.69 20.75 62.92 47.33 71.74 11.42 8.40 41.34 53.02 40.62 35.67 98.10 4.08 63.14 70.43 26.65 26.04 39.91 17.89 94.05 75.66 41.06 60.24 57.46 31.16 32.47 72.92 77.25 7.83 99.76 66.42 21.16 86.33 70.41 48.13 52.04 83.25 67.85 77.16 26.94 34.96 95.05 3.83 67.73 56.12 35.66 71.63 78.27 18.80 64.32 59.54 37.93 52.92 26.28 38.27 91.77 93.21 22.64 98.10 33.06 86.31 51.60 66.08 23.06 59.14 24.38 38.84 98.15 27.51 39.75 81.80 68.13 90.45 62.04 40.39 30.64 1.46 33.86 60.75 42.70 60.52 28.81 99.39 64.65 82.29 19.47 42.16 -46.03 71.44 61.55 57.64 44.39 20.24 47.85 39.85 75.21 75.49 37.55 88.61 91.16 28.36 96.94 46.39 69.60 16.44 23.12 7.15 92.09 3.50 69.19 71.56 70.97 25.41 26.34 49.88 8.01 78.45 33.92 57.77 71.56 30.16 0.25 51.79 69.23 38.59 96.41 97.25 31.11 19.20 38.40 40.67 1.90 98.55 27.15 57.55 84.37 53.91 96.42 38.76 33.83 28.50 62.25 22.91 82.62 32.33 71.62 52.07 73.09 76.34 29.15 71.51 22.42 82.35 3.40 46.36 0.39 65.00 9.78 14.11 11.88 26.18 29.39 2.15 71.37 24.49 3.55 0.15 8.98 55.40 28.70 11.98 69.26 62.36 30.08 56.38 71.24 46.31 10.26 35.03 12.70 1.73 82.50 20.99 65.60 65.20 37.57 93.33 -93.70 10.49 60.23 59.77 48.92 90.49 38.28 5.80 9.39 99.37 10.81 20.70 81.41 73.03 89.64 38.63 63.16 60.61 2.99 89.69 40.96 95.02 76.42 67.19 51.63 52.38 86.28 85.42 74.78 91.25 21.79 43.23 80.32 25.69 17.82 86.58 90.38 48.57 41.69 88.96 1.97 91.51 95.55 36.33 82.21 40.96 28.84 34.63 97.37 16.24 13.45 90.08 18.16 31.55 77.07 99.53 7.46 70.91 13.72 79.95 32.68 71.06 73.38 24.71 6.28 11.60 25.53 84.55 74.86 54.82 99.04 9.27 40.22 36.93 4.96 26.14 37.42 27.80 41.85 88.84 76.74 17.41 34.25 62.51 82.71 76.06 29.21 87.90 2.31 5.31 29.53 69.19 2.76 36.56 31.21 91.52 73.86 15.31 95.13 33.11 -57.39 58.54 60.89 38.89 78.85 30.87 30.51 62.03 36.59 33.05 41.68 66.45 61.64 37.06 28.52 9.25 35.78 60.14 75.62 41.18 64.00 73.47 74.28 28.20 40.01 11.04 86.28 8.27 79.59 36.35 79.29 16.05 86.12 67.07 95.00 8.08 5.40 32.23 35.38 89.33 69.42 69.36 60.89 87.70 87.09 7.73 75.78 6.85 12.83 95.55 72.63 0.58 12.31 31.39 17.29 86.87 16.78 37.20 66.38 7.11 35.87 84.45 45.40 85.31 89.64 49.21 82.70 22.79 95.14 68.43 10.27 48.98 25.05 7.02 84.48 48.30 83.50 61.57 4.14 23.47 57.00 94.85 92.68 56.65 25.89 22.94 29.78 97.41 31.12 77.24 90.66 60.30 14.23 97.03 73.08 58.95 34.67 22.45 74.94 34.81 -69.00 84.42 61.91 16.85 82.39 56.18 18.64 45.86 3.73 28.47 35.00 74.08 90.21 0.97 98.29 44.99 13.83 44.27 82.18 64.02 87.69 94.81 26.79 74.17 36.81 59.35 96.88 33.58 49.85 36.00 64.41 21.02 33.26 41.24 74.51 76.43 2.88 32.78 13.82 97.48 57.25 49.68 32.09 73.00 76.79 87.71 17.47 16.13 8.85 13.53 25.29 5.22 7.12 50.06 13.39 51.49 48.33 26.98 21.04 6.13 55.60 50.37 94.45 94.73 37.86 67.84 89.65 8.07 71.41 85.38 41.42 22.29 77.80 31.84 23.30 51.55 42.49 46.70 48.48 93.60 19.39 28.90 66.14 59.36 92.25 69.46 56.11 13.90 42.91 67.28 49.66 58.67 78.53 37.75 28.01 9.08 80.53 1.67 91.93 53.71 -47.83 23.28 77.36 87.20 34.59 36.90 24.57 53.51 55.93 84.82 20.66 30.08 24.38 35.96 12.95 61.93 2.93 55.96 85.13 61.55 33.50 57.26 47.74 86.79 84.44 52.44 8.16 32.22 58.94 33.60 33.52 64.71 69.16 10.38 22.82 68.75 80.51 94.41 52.05 42.55 25.25 5.92 40.11 94.16 23.80 3.23 10.46 36.98 43.53 82.08 10.82 35.69 69.53 98.29 41.51 4.83 63.25 52.07 32.33 41.47 94.75 35.62 22.05 57.69 19.89 3.61 94.04 74.05 83.29 37.95 76.48 31.77 90.03 45.89 85.41 19.92 6.98 3.78 80.90 37.78 51.73 42.64 68.99 82.58 65.78 63.61 55.50 5.12 81.53 5.11 45.67 65.03 31.02 94.98 24.61 53.83 79.55 13.72 1.44 72.05 -46.10 66.96 28.49 97.70 56.36 94.87 70.59 72.04 54.47 84.39 69.24 90.54 2.02 54.50 27.08 62.39 32.03 60.30 65.90 66.53 77.95 69.50 91.67 37.58 21.71 31.96 72.82 89.97 84.76 42.87 29.37 98.98 35.62 70.29 43.11 7.67 41.95 55.76 46.35 55.23 21.46 44.43 45.17 66.67 30.82 44.57 47.06 9.20 97.51 72.35 94.46 70.57 51.88 8.70 43.82 54.03 3.82 85.79 74.44 93.11 32.77 26.67 27.59 13.08 59.52 63.42 82.00 29.89 4.95 70.97 55.79 9.88 37.10 98.89 30.32 63.74 69.25 65.99 28.40 15.35 64.21 91.14 92.39 31.26 74.26 10.24 51.23 5.97 44.32 64.37 31.31 98.07 74.55 86.16 52.63 86.80 78.66 99.22 46.96 8.93 -6.40 33.66 33.45 42.62 68.76 55.86 47.90 6.92 56.98 12.14 77.17 68.32 3.26 33.29 41.90 69.51 88.33 16.67 71.29 26.47 55.64 28.94 18.56 1.96 52.57 54.48 45.84 39.29 26.12 17.63 41.27 46.37 13.01 62.52 40.60 35.59 18.37 89.60 5.06 6.65 35.69 36.92 65.69 36.82 78.25 41.08 51.93 11.39 56.72 8.76 80.32 71.66 99.82 9.95 61.44 34.16 68.87 70.35 83.79 52.71 27.97 26.58 23.69 12.85 0.88 89.14 68.82 31.13 3.40 34.23 68.80 77.31 16.87 13.53 67.12 45.02 77.31 45.41 67.99 95.72 66.49 82.14 40.81 35.23 77.46 67.18 30.27 64.89 54.56 83.46 43.57 99.31 54.85 77.62 40.72 22.13 54.47 43.26 89.59 3.50 -74.90 82.56 8.88 56.32 12.13 22.45 55.78 94.52 77.71 73.17 50.90 38.23 94.63 7.64 34.15 27.20 81.65 97.93 45.46 68.77 48.35 76.63 6.90 79.25 95.99 57.71 67.76 24.57 16.60 31.02 84.06 49.41 80.21 61.40 66.89 6.75 5.79 47.02 6.12 78.53 33.25 94.07 56.98 90.22 24.91 81.55 91.21 46.29 12.45 47.08 3.96 17.22 50.54 78.10 15.76 87.65 42.06 93.82 14.69 0.61 12.68 75.83 73.69 63.22 92.52 7.50 6.39 65.35 69.31 2.55 63.46 59.89 31.95 49.63 46.80 73.33 43.02 92.35 42.34 82.35 69.76 43.99 77.91 80.63 36.99 43.87 79.75 75.49 13.69 2.81 8.58 39.89 57.56 25.72 99.62 70.12 60.66 97.79 79.32 76.19 -40.08 10.04 89.77 54.73 98.72 85.28 76.98 61.36 72.98 40.06 58.39 19.83 11.90 87.38 63.30 69.70 12.38 67.52 9.45 33.29 44.97 78.55 66.16 20.27 22.24 39.77 24.84 0.70 44.94 24.69 96.79 32.18 73.88 67.39 41.25 44.18 99.10 1.76 4.95 8.17 60.22 15.37 84.35 53.53 11.02 66.91 41.20 2.23 59.75 84.38 54.88 23.79 36.94 63.28 32.43 60.17 48.76 98.38 27.34 37.61 92.12 93.51 3.86 99.89 17.81 52.36 61.58 69.73 59.63 39.39 76.17 5.95 66.54 25.46 57.94 95.36 55.90 35.46 96.32 65.86 36.75 94.99 2.96 77.45 21.22 96.67 30.63 55.35 20.29 93.57 10.81 98.91 41.31 58.66 22.18 72.31 17.23 40.33 48.64 6.11 -23.08 65.50 32.38 64.21 98.44 87.85 60.24 85.73 9.54 72.29 77.89 45.76 61.07 20.20 88.18 73.81 73.88 52.01 34.19 80.00 76.66 11.10 27.86 6.96 47.98 9.96 71.18 9.50 11.72 12.51 41.26 89.44 21.00 70.39 86.36 74.54 68.79 28.61 37.87 93.38 62.21 47.78 60.11 35.99 4.36 25.16 61.10 78.77 46.26 79.89 68.19 53.89 80.66 81.06 99.74 75.31 27.81 83.62 45.53 96.68 73.59 8.63 22.09 78.55 64.36 48.35 94.49 88.96 95.85 99.01 53.35 31.44 16.08 16.12 11.56 24.06 69.41 10.78 65.20 0.39 73.85 10.67 78.75 63.51 54.58 18.54 51.12 43.50 68.92 16.88 76.35 6.06 1.56 34.28 24.81 93.75 84.81 40.81 29.05 76.88 -39.08 11.26 38.11 48.45 50.48 91.20 75.59 40.66 75.50 19.22 11.62 37.83 78.09 71.05 12.86 92.81 44.53 68.94 87.67 11.15 90.02 68.54 52.30 58.52 85.47 1.85 29.04 37.03 30.70 97.74 50.56 23.81 22.74 97.93 11.95 52.78 62.31 86.11 3.25 38.14 4.67 10.34 90.94 0.84 87.15 49.33 92.54 34.88 18.11 67.22 0.00 80.93 1.78 70.77 38.21 47.22 13.73 27.03 81.21 26.73 58.06 9.90 57.64 86.17 79.34 92.13 66.28 67.67 85.03 10.14 88.62 60.91 10.26 84.34 58.33 59.87 41.15 42.78 67.20 17.35 85.81 5.56 12.76 92.79 29.77 85.05 47.98 87.36 90.79 82.44 88.61 32.64 24.82 91.27 98.83 23.73 90.44 93.99 23.35 25.59 -63.72 64.39 83.22 50.60 78.69 95.81 82.77 19.66 86.40 62.17 92.71 53.82 37.97 81.37 61.64 31.38 69.53 0.11 71.54 54.29 92.87 41.97 87.54 60.71 94.31 28.14 91.54 33.60 14.16 78.57 53.86 17.98 92.33 10.85 27.62 78.12 71.02 30.01 45.02 77.17 36.00 6.71 83.59 12.93 73.49 8.88 24.41 23.56 81.73 16.60 48.48 82.19 65.11 50.04 46.87 89.92 55.69 12.83 50.91 78.91 64.38 91.08 77.88 89.67 14.27 32.08 45.51 30.38 65.74 87.00 67.05 27.56 68.72 5.71 58.99 73.62 77.52 62.18 73.78 83.82 71.51 23.11 9.73 34.41 75.43 60.77 77.72 6.43 64.85 60.41 43.30 81.84 46.92 65.76 7.80 5.50 11.93 35.10 65.48 98.04 -82.25 16.73 73.39 97.41 57.79 53.68 95.66 40.97 18.43 2.69 71.87 62.23 84.92 42.16 21.37 50.67 87.82 15.19 49.86 11.30 44.32 5.84 59.35 79.76 69.68 83.99 27.99 25.63 47.49 25.21 74.82 0.97 29.53 1.24 64.19 74.21 52.53 43.58 56.89 59.78 59.21 71.73 59.47 43.81 17.78 58.21 77.43 80.86 13.48 34.93 95.92 88.41 53.27 95.20 78.81 26.99 33.13 12.12 9.56 46.29 35.51 17.67 96.53 19.42 57.78 13.94 29.13 0.98 64.92 75.08 56.09 25.11 24.68 94.41 77.21 54.30 99.51 85.82 98.50 9.21 47.29 90.37 19.86 19.98 22.13 70.38 16.00 23.09 29.65 35.46 87.50 87.71 65.15 54.88 0.78 53.65 31.82 66.88 66.50 27.92 -22.72 82.04 12.61 51.17 31.48 6.15 16.87 15.04 28.23 93.45 1.72 67.04 56.95 83.83 74.64 23.01 30.56 94.50 54.84 10.94 32.97 80.33 91.19 43.37 74.52 42.65 37.48 53.09 88.68 14.13 34.39 31.04 32.90 16.74 25.02 90.35 26.40 91.00 31.62 88.36 62.33 79.22 55.40 94.82 43.81 4.04 65.99 74.64 79.45 5.60 92.61 69.29 36.06 29.83 78.10 12.73 29.02 38.14 43.93 6.65 65.45 95.02 3.24 76.03 15.72 7.78 96.95 72.25 47.11 88.10 92.92 81.83 68.77 35.72 33.31 31.54 26.76 42.68 73.79 58.87 95.58 80.26 26.07 72.15 65.84 52.64 69.15 61.91 36.87 6.25 59.01 64.44 25.89 23.21 28.82 97.95 95.94 37.80 9.37 51.28 -34.58 13.32 27.46 52.50 43.65 37.05 58.97 22.92 49.80 6.77 37.10 73.87 78.69 3.97 72.26 42.57 39.93 84.57 18.07 4.72 24.08 30.62 82.62 18.58 86.72 45.65 67.91 53.38 29.05 97.14 75.50 13.10 40.59 95.48 37.99 35.71 12.40 67.87 12.91 18.89 3.66 24.93 0.68 54.80 16.82 44.59 13.30 7.09 1.80 77.28 73.46 17.64 32.01 17.14 84.36 26.89 61.45 98.22 53.60 64.29 83.03 60.35 44.10 50.76 91.35 9.09 26.80 64.88 28.22 24.39 53.20 84.22 46.90 38.96 28.30 72.01 97.25 99.73 36.35 18.71 9.03 9.30 69.15 47.06 35.77 83.21 20.90 94.60 98.77 8.03 27.35 6.32 10.72 61.60 46.16 69.69 88.40 2.56 64.55 54.21 -2.22 17.11 79.19 15.55 84.45 29.91 62.12 73.27 90.85 98.74 21.30 64.42 71.13 11.71 88.61 55.70 58.88 3.15 64.24 81.68 34.77 38.36 76.71 58.50 72.53 5.21 6.40 2.98 7.65 11.26 92.94 31.01 65.62 64.00 69.01 99.66 29.21 19.82 15.93 50.77 44.22 83.16 54.25 59.66 68.70 53.11 70.01 5.58 56.54 10.23 44.66 10.27 17.65 9.73 18.80 9.47 10.75 42.43 64.73 74.60 34.96 0.82 20.70 73.34 90.88 78.88 81.43 25.62 25.61 43.46 65.63 32.56 15.81 94.08 35.44 75.04 57.45 65.09 60.00 18.28 30.80 28.86 71.73 75.90 47.17 77.20 10.15 5.44 97.49 32.09 97.96 88.14 68.33 76.65 68.30 39.73 15.18 47.20 34.47 62.83 -62.76 11.39 91.07 16.86 39.78 35.11 54.28 76.66 21.77 38.62 96.99 68.81 79.80 1.54 64.16 66.22 23.19 47.75 5.61 3.64 48.00 90.98 49.09 72.01 24.30 55.46 70.93 55.34 39.18 91.29 56.33 69.88 84.12 93.84 28.40 14.32 22.50 36.11 20.29 44.72 42.95 66.86 43.16 25.64 71.54 95.36 55.17 97.19 61.34 92.02 32.28 32.98 32.96 90.21 36.96 59.45 28.85 52.36 70.62 69.85 98.68 17.96 58.11 58.66 19.94 62.37 5.47 80.46 27.54 35.04 81.08 81.05 28.24 68.06 19.10 72.03 88.53 91.08 32.00 86.18 89.73 6.82 20.39 89.73 81.36 55.46 32.64 3.56 76.37 40.88 91.83 55.75 0.12 40.82 86.99 58.47 6.77 17.04 62.74 79.10 -96.02 14.55 5.24 45.76 71.37 51.29 54.83 96.65 44.15 18.71 3.04 71.46 32.58 0.71 67.26 64.69 3.61 6.22 21.62 61.72 57.99 8.63 73.09 59.89 45.10 75.81 39.05 62.26 35.88 0.34 38.22 64.05 11.60 44.49 52.11 37.22 15.02 39.42 89.76 16.82 90.20 55.36 72.26 82.39 49.20 23.82 45.70 85.98 52.82 12.27 66.80 99.98 5.71 55.22 32.11 16.63 41.10 98.84 75.49 68.06 13.28 36.28 76.41 49.42 66.27 79.71 49.89 65.66 20.37 80.75 45.55 30.89 72.29 52.44 28.63 74.99 10.47 51.00 15.87 40.19 59.89 71.19 97.17 32.48 16.98 3.52 24.67 30.82 63.86 7.82 81.03 26.92 19.48 22.05 93.88 58.13 75.85 65.73 24.55 41.11 -0.38 41.47 47.39 55.69 3.84 91.59 21.62 55.46 74.10 52.54 74.51 77.96 68.35 4.01 77.63 56.11 35.74 78.67 57.08 63.41 65.51 59.02 18.05 42.78 84.48 55.34 33.85 52.16 64.09 38.59 26.42 27.44 75.67 81.98 25.15 66.32 17.48 9.51 86.02 4.48 86.92 30.78 85.02 32.80 52.61 76.32 59.28 36.29 49.42 24.29 46.26 66.77 84.79 33.51 60.79 26.22 99.40 67.51 1.99 85.91 74.46 77.36 51.19 95.82 47.14 89.68 37.81 87.93 43.98 33.99 73.18 19.04 19.91 24.92 79.63 70.79 99.14 94.35 1.48 9.80 89.76 73.14 53.09 86.13 85.55 98.84 94.23 60.72 49.68 5.07 10.73 84.68 1.30 94.43 33.25 41.14 92.65 47.67 5.70 8.95 -57.87 99.76 62.59 7.74 32.34 45.44 38.43 8.47 14.32 96.83 40.35 61.71 34.41 34.31 97.38 84.87 21.03 72.19 50.78 58.60 11.78 4.76 11.36 43.86 78.60 4.32 13.37 49.15 0.10 95.97 42.54 96.87 53.23 51.22 27.52 34.04 12.36 82.74 83.16 17.28 25.32 68.29 26.06 55.65 33.57 62.86 70.61 51.62 97.00 26.82 55.25 66.59 32.14 75.19 59.35 43.49 91.67 7.13 21.39 11.24 27.22 53.84 43.31 72.52 10.82 32.59 45.85 74.33 90.91 92.75 64.55 35.97 58.81 65.50 37.54 10.50 39.58 8.32 51.75 56.04 18.83 38.11 65.82 15.63 13.77 6.29 59.50 96.70 68.58 71.96 25.35 53.74 30.75 59.27 2.27 29.90 36.76 46.88 60.15 78.45 -83.25 74.95 70.67 17.77 0.89 44.26 40.32 68.03 27.43 2.51 33.86 50.25 82.23 8.82 9.15 1.80 94.17 41.80 44.56 2.32 47.67 44.52 27.48 94.25 87.44 95.47 13.59 24.90 52.73 68.48 20.87 38.52 99.40 91.08 36.19 16.50 88.97 42.89 18.19 41.47 57.21 29.52 65.69 77.84 9.96 67.80 54.10 45.05 93.36 78.23 65.92 34.87 82.30 54.03 87.31 64.57 98.44 7.06 69.69 53.43 44.45 35.26 20.87 47.25 7.45 34.10 11.62 39.61 92.57 50.45 89.48 57.28 78.08 65.47 85.38 28.13 78.74 60.77 97.52 24.50 58.54 28.57 78.29 11.80 2.26 6.98 14.92 90.63 52.49 87.87 69.34 58.81 70.23 2.11 35.27 52.40 72.66 82.35 20.04 66.58 -44.64 63.64 26.53 59.26 5.40 98.89 36.20 21.29 71.96 57.84 98.85 36.75 47.57 51.41 8.55 85.76 50.98 12.94 47.41 57.35 37.12 6.64 80.63 97.87 24.40 22.84 14.74 11.16 89.77 52.27 83.51 15.52 17.43 19.50 66.43 99.41 45.43 40.74 32.53 94.82 18.09 5.37 23.20 96.24 2.19 69.35 92.56 45.77 57.04 95.56 12.30 5.56 63.83 73.04 34.71 87.25 39.06 69.55 16.25 35.11 82.65 74.10 34.80 98.87 40.69 89.22 28.10 17.58 56.32 58.95 88.94 25.32 19.88 93.42 82.58 57.32 25.11 82.50 24.01 49.74 74.30 84.09 97.58 85.26 36.19 12.69 29.42 5.06 39.16 2.65 51.41 85.14 94.03 5.91 86.58 75.03 55.31 41.77 77.10 81.45 -43.18 19.81 79.34 48.16 11.66 14.70 39.26 53.76 53.27 16.92 80.13 81.72 8.59 48.59 77.92 68.10 57.43 52.33 18.48 78.67 13.10 84.52 82.10 48.02 11.13 54.16 99.33 58.80 51.96 3.36 96.21 9.37 86.77 74.60 3.17 1.06 49.93 7.37 86.73 69.41 70.37 21.54 25.76 51.28 37.91 42.12 17.19 6.10 5.62 9.00 11.06 95.14 83.91 81.37 51.36 31.92 0.30 71.00 23.62 51.64 20.16 99.94 35.66 74.27 65.10 4.00 98.69 61.03 75.19 0.17 81.68 28.07 69.91 33.80 44.60 1.63 34.09 63.36 27.82 16.35 73.86 70.18 28.14 52.84 26.57 97.80 89.69 23.89 17.14 52.74 55.60 62.28 65.00 64.71 64.76 90.00 17.80 46.73 79.94 49.23 -78.70 18.29 75.91 6.58 80.94 2.41 74.52 22.23 86.69 88.72 11.89 84.99 91.67 14.62 35.41 98.95 5.77 66.75 94.93 15.29 26.11 15.04 45.57 72.25 39.20 65.70 44.95 46.99 36.01 21.50 46.07 78.01 30.31 56.68 19.81 42.27 76.36 7.79 33.38 9.44 85.56 9.37 28.91 29.92 7.80 51.75 47.20 83.66 99.71 68.19 58.23 66.93 62.15 18.40 96.14 59.13 93.80 45.76 0.83 12.78 95.89 75.50 5.93 50.96 4.95 84.25 26.43 59.24 5.19 84.80 49.47 23.06 49.54 0.97 97.61 48.36 61.76 48.97 49.46 93.57 95.93 91.94 33.64 40.59 24.46 6.27 81.04 29.78 83.01 96.28 55.49 24.49 10.34 48.55 16.16 90.46 5.94 22.99 33.96 25.44 -1.64 8.14 45.32 88.30 89.52 73.64 4.57 74.04 22.25 95.58 84.43 16.45 34.53 34.34 12.70 68.18 15.78 97.94 56.52 0.13 15.04 22.31 72.73 67.42 20.48 76.01 76.48 5.93 38.92 77.83 38.90 71.24 70.08 8.40 75.99 76.78 82.25 65.23 85.36 96.82 31.47 57.16 53.58 76.12 45.05 27.35 0.93 97.15 12.51 45.41 65.27 9.10 81.23 26.03 17.17 8.71 0.98 56.32 12.52 45.03 30.56 27.40 31.08 88.68 76.44 74.97 14.71 13.48 77.95 57.94 72.84 51.16 79.37 88.35 38.42 69.04 78.85 37.84 56.44 61.02 38.60 64.74 92.34 27.78 13.40 58.80 14.67 55.89 86.63 70.32 11.26 63.12 69.04 9.20 87.22 97.21 25.56 34.62 60.05 39.37 -99.29 14.35 0.06 76.31 52.51 97.82 81.96 79.78 85.21 1.58 48.09 41.27 58.16 81.11 38.65 81.30 23.00 49.25 11.80 17.21 99.58 70.76 92.04 91.97 6.23 39.86 35.21 39.70 7.06 95.66 32.86 71.62 87.22 63.99 12.72 55.30 26.26 28.62 23.87 12.14 73.35 93.48 88.98 11.00 94.33 52.90 40.60 43.43 19.79 50.66 49.24 59.72 98.11 49.20 6.76 47.93 98.39 35.15 20.93 32.79 12.12 43.13 57.85 3.77 68.32 57.60 47.56 0.19 86.27 15.65 23.83 59.57 2.92 43.64 99.85 57.01 14.16 6.43 70.75 33.93 95.14 27.60 81.57 14.26 57.29 79.57 13.77 18.79 46.06 41.86 69.25 29.73 21.40 62.42 19.25 57.84 80.29 4.98 39.05 78.83 -53.52 94.92 26.19 2.87 9.36 89.17 67.04 17.61 19.35 37.21 22.57 91.17 99.53 14.65 18.00 69.83 36.92 76.41 77.84 3.30 80.06 61.15 10.18 47.10 93.53 80.28 68.02 53.87 48.81 53.92 84.88 78.17 24.58 44.40 93.02 57.87 59.23 97.75 8.79 44.16 51.16 83.92 52.53 49.07 88.22 33.75 12.66 60.31 30.87 30.96 4.89 17.61 73.90 90.51 21.45 60.75 48.04 90.72 37.30 32.21 5.02 4.31 81.84 94.26 42.34 21.50 76.84 49.68 14.08 48.71 32.04 37.84 64.56 84.22 25.40 43.45 41.25 54.22 82.11 16.82 67.69 89.59 12.40 94.71 99.99 64.63 8.20 30.55 47.22 73.79 15.61 37.29 65.92 20.54 23.52 96.35 92.47 74.99 66.47 0.33 -93.15 89.51 83.27 36.21 13.48 82.45 85.28 37.16 57.50 66.24 62.44 10.84 74.91 74.07 12.84 51.10 37.72 89.32 96.17 24.70 84.66 67.66 13.17 33.47 5.56 84.45 78.55 32.12 54.76 85.43 95.33 6.21 1.56 23.36 77.54 55.96 89.37 39.61 97.97 58.31 95.28 88.40 80.52 69.90 31.94 18.59 10.40 30.71 18.72 57.35 4.16 86.02 66.68 53.39 15.53 17.62 60.01 97.84 14.99 33.11 71.18 47.76 94.63 55.57 38.36 99.92 71.27 94.95 96.79 80.49 74.65 71.02 28.67 81.83 66.70 11.10 98.23 33.78 48.93 34.52 75.24 70.94 73.33 16.16 91.13 72.17 98.07 11.62 73.32 82.06 58.61 45.00 63.66 41.68 51.11 54.61 3.47 83.85 71.07 43.89 -76.82 44.97 93.55 39.43 18.03 42.33 13.66 57.40 24.62 77.29 97.49 41.92 70.32 97.79 42.59 35.12 0.19 31.90 72.30 25.95 27.84 78.66 60.07 14.90 29.31 49.51 42.09 76.07 53.90 93.04 39.53 98.90 31.93 3.64 35.63 1.19 65.86 29.21 2.37 20.88 41.35 64.43 35.21 14.61 94.02 77.80 24.09 94.64 81.16 71.34 67.48 75.73 90.83 86.27 24.47 58.32 23.19 7.62 16.20 84.50 99.05 61.68 55.92 14.97 66.94 10.10 37.62 41.73 91.69 30.03 16.60 40.43 25.45 1.67 82.24 92.50 31.63 14.44 31.26 16.70 55.37 30.33 83.15 69.77 39.76 96.15 26.62 83.43 28.62 52.20 56.42 8.34 82.04 83.15 37.46 15.92 68.78 83.14 28.85 81.60 -62.33 31.94 47.53 34.73 14.75 26.79 5.67 68.94 7.92 92.00 0.10 93.66 45.40 50.14 73.90 35.91 49.05 28.74 47.13 14.56 47.59 100.00 36.00 32.64 83.15 64.88 23.93 3.74 22.60 16.42 56.30 91.14 46.74 6.42 86.05 80.96 12.41 29.14 86.44 35.65 17.16 78.01 66.76 15.75 7.36 9.50 30.00 4.30 57.22 99.44 83.55 61.17 22.03 75.52 80.62 97.10 98.12 86.04 8.47 77.88 66.16 29.23 88.87 76.52 91.94 93.12 76.46 79.04 0.45 64.57 83.09 80.72 24.72 70.76 17.44 17.69 40.54 80.60 97.26 23.12 92.52 40.33 28.77 72.59 81.71 8.80 71.20 92.84 21.38 6.55 93.85 89.38 6.35 56.36 58.95 85.37 64.87 92.58 91.44 1.02 -89.47 85.58 0.45 88.80 85.82 89.53 58.63 51.87 83.24 53.99 86.08 89.79 90.53 5.24 93.48 79.43 32.72 84.57 85.57 78.13 53.02 66.62 59.47 0.68 80.75 5.49 78.95 78.02 29.32 3.95 4.15 3.84 25.63 37.58 22.22 39.00 75.53 95.39 46.19 47.22 55.10 43.72 44.75 72.46 23.73 8.54 85.75 54.81 18.45 92.83 83.84 41.35 43.14 35.81 6.76 23.94 64.64 91.21 60.27 92.11 55.59 50.88 65.13 73.28 61.49 58.99 76.36 11.67 83.72 87.85 72.32 18.82 39.29 1.54 81.05 79.74 54.53 80.82 44.28 84.07 17.66 87.51 47.87 84.66 51.02 20.43 21.43 40.80 79.78 70.52 2.11 41.93 51.23 60.84 74.61 17.37 26.31 31.03 70.43 19.00 -1.00 65.38 2.91 98.81 32.40 17.44 7.19 29.36 48.54 94.97 23.17 5.17 21.77 30.35 25.12 91.79 26.84 27.40 47.35 76.77 79.69 17.72 51.71 78.93 72.60 58.37 78.25 37.65 83.87 99.91 71.58 57.92 57.70 58.89 14.75 76.83 67.88 72.28 62.01 93.55 5.22 92.46 88.97 95.98 48.01 99.35 39.82 14.55 62.77 72.04 81.53 57.75 90.29 39.78 46.63 68.59 16.98 8.56 89.08 46.64 38.49 35.73 26.10 36.51 43.72 84.15 22.56 20.15 25.92 75.26 12.53 95.76 21.35 94.98 70.41 66.24 34.87 9.42 42.97 30.41 67.38 46.07 15.80 2.12 15.54 65.11 95.70 77.65 2.00 0.19 83.01 58.21 65.91 44.56 12.55 30.22 77.37 94.59 52.28 93.86 -80.45 71.39 71.71 89.55 20.52 63.20 1.20 23.82 76.79 56.75 88.18 72.19 90.80 32.27 16.02 60.25 37.00 58.63 84.27 33.43 71.26 88.22 88.71 46.47 45.48 4.04 82.86 92.08 33.38 16.53 76.09 33.88 13.12 20.46 27.52 46.15 46.98 11.63 5.85 11.02 95.49 16.41 89.11 92.87 31.73 24.49 52.39 55.06 29.50 27.50 6.07 42.54 70.00 77.16 39.34 16.39 58.77 67.44 27.03 49.96 95.91 9.21 95.61 53.81 16.21 96.78 84.56 88.98 73.93 41.21 70.07 61.04 61.74 84.43 74.84 89.58 27.50 7.91 92.57 63.29 74.02 18.95 53.63 95.15 92.01 64.04 83.86 93.49 38.45 73.55 10.21 31.75 79.06 70.21 25.95 1.13 91.44 3.73 7.07 15.77 -42.82 63.55 52.17 60.81 4.05 26.65 7.39 14.84 66.18 72.14 67.23 80.36 67.06 93.70 5.30 36.06 62.22 7.65 34.73 74.18 27.46 69.07 13.93 6.20 92.70 86.17 10.01 17.95 77.30 96.56 76.76 19.29 87.56 54.32 11.23 90.55 31.67 97.59 44.34 43.39 0.38 7.11 84.92 9.18 79.99 30.63 11.66 64.68 99.97 71.36 78.17 48.63 46.24 81.06 79.28 40.28 85.15 86.20 36.96 47.65 25.77 63.40 49.93 80.64 14.85 41.36 95.60 14.75 65.37 33.21 20.49 68.76 61.56 78.28 43.25 47.94 89.93 25.02 63.00 5.66 57.88 23.72 12.15 40.65 94.77 36.78 30.36 92.74 36.59 37.87 53.92 58.55 51.34 70.86 15.35 98.83 49.46 98.77 83.32 84.72 -10.72 69.35 19.11 24.39 29.46 10.20 95.49 7.29 53.93 61.40 79.25 99.78 97.49 40.88 93.32 29.27 28.71 47.58 99.36 45.51 61.16 9.27 89.16 77.97 54.25 35.84 11.83 98.02 98.98 23.49 79.89 25.23 93.55 88.71 37.63 46.44 92.93 64.38 11.48 48.75 18.13 34.09 34.65 16.20 75.24 17.98 85.09 67.28 47.80 54.13 85.76 54.73 41.56 39.91 19.34 84.69 23.64 99.56 21.14 20.33 54.19 19.12 76.35 96.56 91.40 72.50 59.39 96.40 70.19 62.92 27.32 10.31 54.31 81.22 84.52 47.21 5.06 38.72 26.70 16.45 18.34 57.14 32.58 96.64 34.12 10.29 36.52 72.77 94.80 42.48 48.52 62.49 58.02 4.40 39.58 97.63 30.79 28.80 28.36 45.87 -2.60 69.73 84.96 83.85 43.92 9.05 79.61 51.25 16.61 11.89 55.28 6.17 74.67 42.86 10.93 54.16 43.65 93.99 88.23 72.97 23.06 18.91 91.97 46.70 82.37 30.94 94.21 65.42 19.41 67.41 67.33 6.94 63.45 25.36 94.89 11.01 48.24 20.88 8.96 87.81 92.65 15.52 85.74 22.12 35.72 78.82 25.78 73.76 28.17 28.33 70.13 23.22 10.32 70.36 53.83 44.38 67.65 43.90 86.01 83.84 95.67 91.67 11.32 90.14 45.95 30.32 16.67 8.86 93.62 15.88 83.00 30.97 75.36 10.78 49.39 36.62 5.79 16.89 22.66 0.43 17.20 37.20 47.43 10.45 78.07 68.08 28.95 6.36 56.26 20.95 11.31 68.69 30.64 22.24 17.95 5.71 82.13 75.94 23.44 63.36 -23.45 25.08 45.56 74.35 17.45 79.63 55.24 25.31 22.93 0.53 21.79 26.00 28.15 19.66 30.27 29.99 66.02 46.88 14.56 63.66 84.37 66.65 60.85 55.05 2.01 4.33 76.58 9.71 28.87 37.04 13.47 24.61 16.43 26.25 1.55 2.90 83.53 16.51 40.47 63.89 6.83 54.95 23.79 10.83 39.33 28.59 89.96 64.97 58.05 58.83 20.65 8.64 38.94 32.84 75.82 63.91 64.82 9.94 54.58 27.21 2.93 96.65 65.37 30.67 49.48 18.14 9.90 13.14 6.99 82.57 75.88 54.72 70.07 67.18 11.93 99.53 28.17 26.37 28.05 67.86 54.07 51.40 83.94 10.60 21.31 40.20 58.59 81.30 50.27 45.64 15.58 79.33 34.13 25.55 65.73 0.99 72.43 37.93 95.69 96.99 -49.38 71.02 74.71 70.99 64.94 10.33 32.29 12.95 99.91 67.74 88.56 10.13 22.91 89.38 4.09 47.22 15.08 29.84 95.20 52.79 31.83 35.43 98.03 50.25 13.72 96.78 48.57 24.94 94.17 24.46 67.55 0.66 20.54 33.60 4.75 75.60 68.56 32.42 93.20 37.47 45.87 46.93 30.19 34.39 98.18 23.68 94.70 95.81 40.82 33.81 83.78 62.26 58.47 26.26 21.86 82.58 20.48 92.15 26.37 32.36 44.37 92.61 28.82 8.14 79.57 29.26 18.26 66.23 57.04 28.49 49.86 2.77 8.36 21.87 79.28 31.68 26.83 27.54 21.50 37.56 31.60 68.29 80.12 53.84 95.61 25.85 40.29 46.13 28.77 52.59 72.08 95.61 11.58 87.05 57.54 69.06 29.88 46.75 54.57 57.28 -65.30 25.70 76.73 74.81 10.45 44.24 51.88 93.64 24.24 73.82 18.98 67.19 43.56 35.28 31.70 22.37 88.84 17.55 23.47 88.84 81.56 47.46 92.60 35.45 48.15 56.46 76.91 83.90 46.79 65.37 1.44 1.46 93.34 81.31 77.49 76.79 88.77 44.14 12.81 80.32 13.66 10.20 22.12 86.56 57.83 46.48 63.62 50.90 57.31 49.96 89.52 32.87 11.58 19.39 85.49 95.17 65.36 29.17 57.44 8.48 36.92 66.53 97.84 32.47 23.92 73.77 86.83 49.67 60.64 62.26 96.31 4.46 18.75 14.66 52.11 13.25 61.39 42.75 18.95 23.53 6.75 51.60 0.90 3.71 34.84 4.12 29.09 85.12 11.29 81.22 52.71 97.35 73.40 5.91 58.07 50.06 57.53 2.53 31.58 2.50 -55.80 42.03 66.40 39.34 36.65 10.03 2.52 60.14 16.45 81.40 87.60 39.58 47.52 60.65 68.53 9.58 55.40 65.40 56.27 80.55 61.57 69.41 33.05 24.69 82.05 82.46 95.20 57.07 72.22 59.75 25.21 84.34 9.22 55.72 80.57 79.87 99.79 84.03 45.39 53.96 86.60 18.07 89.23 50.91 57.34 14.92 73.33 13.74 45.52 6.90 84.73 99.13 80.14 25.00 39.01 55.51 75.20 82.88 98.65 40.77 23.50 80.89 12.42 7.70 33.87 45.52 37.02 20.71 16.66 67.59 57.53 83.49 99.54 96.05 59.52 87.42 77.69 6.02 53.74 42.59 32.84 91.95 18.23 13.72 66.53 88.22 15.75 87.28 63.41 26.78 44.78 88.86 74.77 3.74 60.98 71.65 43.32 74.35 43.19 0.32 -50.92 22.73 50.18 95.62 85.48 95.37 12.78 36.98 92.37 65.34 24.87 56.47 21.71 12.11 34.02 77.63 43.24 34.51 21.38 94.16 81.28 99.75 45.47 7.92 83.19 19.18 29.20 11.32 22.56 67.20 50.18 43.94 72.93 93.31 2.57 14.28 29.26 63.39 28.42 54.70 24.71 1.35 15.91 3.49 22.48 83.10 89.90 48.14 72.88 41.32 74.30 43.81 68.70 18.58 99.99 87.22 39.12 3.90 54.44 89.30 98.64 42.50 71.91 70.52 41.23 49.46 70.18 10.22 51.56 74.57 26.44 61.77 7.27 28.94 98.09 80.91 66.35 7.01 18.21 56.66 92.93 25.91 0.66 11.88 19.89 68.82 79.68 47.64 82.20 33.52 47.03 2.92 92.34 44.22 62.63 69.95 32.52 68.35 41.01 85.59 -67.93 47.21 56.47 78.60 36.91 51.96 67.93 56.71 43.23 86.16 77.82 71.07 76.13 38.85 57.62 27.67 67.39 33.77 90.03 43.56 99.32 70.29 13.62 28.99 74.21 72.27 42.13 61.54 37.56 42.42 56.37 93.66 14.82 76.36 48.09 46.62 64.94 60.64 52.52 18.86 52.11 60.81 43.90 43.26 12.17 2.32 99.03 22.41 54.80 26.28 20.16 38.03 90.26 80.36 50.81 41.63 9.01 43.62 82.74 25.69 76.78 14.42 94.92 44.90 3.70 53.91 84.28 25.11 46.05 87.14 51.28 57.68 67.82 85.30 70.60 8.70 54.70 34.06 31.85 0.30 65.08 13.12 94.88 88.62 44.27 72.82 66.92 74.99 73.27 80.46 38.16 21.85 59.98 2.13 42.08 59.54 83.29 77.33 48.22 6.19 -54.51 65.70 96.28 41.66 28.32 11.15 82.35 45.10 90.43 30.34 67.90 57.49 10.93 79.94 37.63 15.38 7.80 57.95 73.94 39.79 39.12 53.29 4.08 24.31 68.74 37.33 39.38 8.80 17.34 59.78 40.96 87.11 53.55 67.42 40.47 35.33 48.94 52.67 43.85 49.02 81.81 56.19 44.39 21.96 90.73 21.93 19.39 47.32 37.24 22.06 18.55 17.73 43.37 66.34 34.72 11.63 95.35 35.37 16.03 62.19 91.33 73.00 26.01 21.81 74.21 17.27 89.39 75.66 33.63 60.32 57.48 32.11 78.72 11.43 97.69 43.94 82.45 5.56 6.86 54.63 1.23 88.94 27.04 4.15 79.11 46.66 5.91 20.57 51.68 26.00 93.27 22.63 12.50 57.88 9.43 10.38 71.01 27.97 15.50 69.37 -43.06 45.76 40.83 17.76 33.09 52.17 38.53 45.72 45.52 20.01 22.76 7.78 59.89 14.15 47.15 46.68 35.92 1.97 25.86 62.85 80.84 9.80 75.33 92.72 68.99 28.06 71.72 59.33 20.18 24.86 11.44 40.26 72.33 29.03 7.24 54.37 57.46 46.56 7.23 63.52 23.79 89.61 83.88 74.33 29.36 94.26 38.22 32.38 95.36 94.55 23.59 50.77 12.75 41.95 67.84 29.35 50.36 72.82 57.31 83.37 69.52 89.10 40.89 66.20 54.26 58.64 83.95 98.16 9.08 88.96 83.71 97.30 23.25 59.44 37.20 80.82 63.64 15.67 55.14 67.30 61.43 64.15 8.80 19.62 9.52 91.49 92.61 37.45 48.53 29.71 50.61 83.16 60.74 23.84 58.76 82.73 34.35 53.30 61.17 37.52 -76.54 43.85 85.31 73.05 5.65 94.55 18.01 82.09 92.59 57.94 74.44 62.03 69.42 17.54 44.28 54.42 57.74 24.91 19.80 79.84 75.36 17.38 18.09 42.92 79.65 53.66 14.05 39.44 76.26 38.32 38.98 56.76 78.64 45.97 35.30 46.76 16.71 20.91 43.47 54.12 86.89 86.95 99.66 13.96 85.09 32.54 25.37 88.17 57.21 27.00 15.77 83.33 36.85 57.18 21.11 83.95 18.61 91.79 61.29 10.62 84.31 41.24 68.07 71.35 17.78 66.22 23.77 46.18 42.06 53.98 38.14 97.23 61.43 94.80 91.41 79.74 61.94 22.25 24.89 88.40 67.13 50.67 58.58 42.14 11.81 44.73 2.21 19.08 7.61 13.17 73.92 6.45 20.57 67.97 26.28 93.59 81.31 53.84 100.00 19.66 -4.97 80.14 50.11 49.67 86.16 36.78 66.25 1.18 15.45 1.20 41.01 42.79 36.89 42.29 77.67 86.14 36.51 20.85 55.18 22.35 54.63 69.51 61.81 70.28 80.94 28.27 54.58 23.09 61.36 59.26 47.31 99.51 11.67 20.85 43.93 71.94 79.74 34.55 62.39 62.93 16.29 68.11 75.85 64.71 49.18 67.84 54.50 53.84 3.81 96.92 88.83 12.76 46.17 21.88 75.83 37.61 52.87 85.61 36.33 58.02 45.67 12.21 50.74 79.12 8.85 47.77 40.56 12.47 14.49 59.34 77.16 64.81 42.61 67.49 41.71 63.13 3.86 55.20 6.39 43.05 30.63 92.07 56.85 72.19 66.86 78.81 13.57 13.57 37.16 17.26 92.24 75.01 27.60 77.15 80.20 12.69 49.51 98.27 23.13 95.00 -36.73 81.74 44.84 92.51 41.57 74.20 53.34 40.39 85.19 19.52 28.14 32.47 19.94 27.93 41.51 29.56 82.91 20.29 34.01 46.91 55.21 93.27 4.57 73.00 36.49 8.79 7.21 9.47 20.49 97.21 50.24 45.34 20.50 49.44 80.31 95.61 43.84 92.52 9.48 28.79 92.35 98.37 82.32 46.05 22.88 14.31 63.37 76.87 12.92 34.44 39.76 38.43 95.97 52.20 28.55 69.31 96.70 9.95 53.11 95.23 81.22 95.32 50.29 36.37 17.41 36.82 76.80 61.15 2.99 95.48 14.99 22.46 68.38 48.34 35.05 83.94 15.67 86.73 85.47 28.12 18.45 62.52 42.14 20.22 65.46 60.09 71.39 42.42 3.48 11.98 55.45 78.24 93.24 32.38 85.06 42.40 99.13 17.99 20.83 6.52 -98.64 59.60 72.11 73.92 45.61 96.74 71.36 39.88 55.99 42.21 54.24 33.74 94.60 62.17 10.60 41.00 13.50 51.65 87.92 31.09 14.77 22.72 90.54 83.08 81.43 18.85 83.44 33.99 44.82 99.29 49.03 45.78 54.05 55.07 46.71 27.40 92.62 70.37 19.42 41.29 5.57 69.79 15.48 29.32 32.92 51.47 64.21 90.79 71.15 12.12 6.09 82.67 49.00 0.84 57.12 83.77 41.41 21.76 11.59 75.71 30.97 0.18 92.09 93.90 74.68 3.82 54.72 6.27 55.36 96.13 98.83 13.95 62.89 67.43 50.92 1.76 26.29 8.16 75.58 84.54 88.05 64.90 80.90 84.49 17.47 97.94 28.10 31.10 0.48 77.85 67.60 26.29 14.24 65.63 95.93 74.26 3.25 11.28 42.96 18.64 -68.43 92.84 71.48 2.49 65.84 31.75 47.13 22.21 33.44 40.21 15.70 38.09 35.74 81.68 18.76 53.50 64.89 57.59 23.47 47.75 2.07 34.69 69.56 89.23 20.99 83.68 84.94 47.87 67.75 76.23 57.56 68.24 16.01 70.99 28.60 7.25 30.63 74.75 64.61 57.62 70.83 79.59 10.78 87.40 13.49 87.55 21.14 16.27 89.60 50.10 90.62 79.08 53.60 83.95 38.22 46.52 5.43 82.38 46.76 33.95 79.76 10.02 53.57 41.27 50.16 43.34 27.62 54.87 58.68 47.95 70.69 22.34 0.82 64.81 97.86 5.52 39.51 31.05 96.70 31.39 23.31 38.61 95.61 13.66 61.05 81.01 3.38 61.21 48.85 10.29 64.46 55.45 45.03 33.82 1.36 6.31 16.67 58.53 12.39 19.17 -11.77 64.82 92.02 27.80 10.16 58.78 48.65 55.32 39.49 88.81 16.61 92.69 42.12 34.54 79.27 69.61 79.25 63.87 24.78 51.74 12.76 4.28 51.07 75.75 15.34 54.42 67.13 60.16 73.38 34.40 24.72 3.52 58.67 74.18 45.54 96.40 10.87 68.77 45.83 46.16 76.93 58.57 54.40 52.85 20.15 29.47 49.23 50.93 96.89 85.85 7.42 2.51 65.41 48.54 57.40 63.58 38.38 34.82 78.93 38.42 45.90 17.01 62.06 82.17 96.86 57.51 27.04 43.66 95.49 30.62 85.60 85.70 30.03 71.86 39.98 37.99 99.60 75.48 97.14 74.79 64.10 22.32 54.79 10.14 40.35 99.16 36.75 44.43 93.08 32.67 34.91 39.71 47.11 49.41 82.70 32.91 35.42 37.37 86.45 13.98 -60.79 60.85 81.30 53.89 52.92 80.54 16.83 3.30 80.14 74.91 14.48 69.43 44.64 52.48 61.27 33.63 45.11 49.92 75.52 38.66 15.70 9.87 34.64 32.03 22.69 83.90 14.73 43.65 2.69 89.47 89.06 78.99 40.09 51.91 62.57 57.78 97.26 79.15 74.59 59.21 25.39 9.03 28.51 83.92 12.78 39.97 29.02 22.50 47.26 8.02 82.84 71.72 25.83 48.49 63.77 83.31 46.02 3.58 88.02 64.10 75.29 86.53 65.60 92.39 56.98 84.17 88.62 64.64 74.01 54.77 58.51 6.74 87.74 22.70 38.32 5.58 74.76 32.59 79.82 41.31 35.84 6.96 97.24 42.54 58.54 20.12 81.33 82.83 73.82 28.44 25.16 29.51 4.48 2.50 79.84 8.05 64.24 80.20 42.48 29.84 -19.07 28.04 25.24 64.59 42.57 47.05 56.04 34.38 14.96 72.54 79.62 87.74 24.10 65.39 62.70 53.80 77.38 17.28 86.20 30.89 51.11 73.76 72.02 46.14 94.17 78.65 5.40 18.80 24.85 17.05 56.10 15.32 27.78 3.04 45.45 77.28 28.09 29.41 75.76 62.33 39.91 11.58 30.16 31.63 79.79 37.22 85.87 30.35 0.31 81.51 98.70 25.12 72.11 76.16 27.02 35.24 47.00 28.94 22.15 25.87 28.43 30.58 61.73 66.18 2.11 59.52 4.15 70.42 28.26 85.91 42.14 47.43 71.24 50.55 58.33 11.84 13.50 16.07 86.57 90.46 93.46 61.49 34.19 42.71 22.23 48.89 11.35 80.97 95.13 67.22 21.71 1.24 88.12 23.98 73.92 77.20 91.11 39.94 97.02 79.89 -19.36 55.38 36.71 12.09 76.23 55.14 94.07 25.79 55.32 65.67 58.14 86.96 29.65 57.32 62.07 73.94 68.54 22.11 51.84 69.04 90.99 93.58 26.05 25.43 99.13 53.98 67.29 44.60 4.59 10.00 58.04 85.90 43.16 58.89 53.75 48.47 90.83 68.96 89.30 66.63 95.18 86.56 66.79 43.18 96.95 28.20 27.11 83.82 13.47 62.53 68.82 13.95 97.09 87.53 34.10 4.85 40.89 68.02 73.29 64.14 95.30 66.92 43.49 10.55 80.56 38.64 1.09 48.44 93.01 70.88 6.77 76.78 68.87 87.00 49.81 69.92 15.54 74.29 26.67 38.76 85.77 97.96 68.14 84.63 72.00 6.01 8.77 34.01 12.46 97.88 1.06 39.46 60.10 91.49 90.87 27.42 42.70 65.20 11.02 7.00 -76.24 48.49 59.88 79.25 77.57 86.87 59.90 88.06 74.44 68.16 78.40 4.21 37.81 65.92 33.01 82.40 0.69 82.97 16.78 45.92 9.01 26.86 28.98 87.14 28.17 73.26 74.22 97.98 43.47 68.77 7.28 65.38 37.73 17.71 84.39 35.55 98.18 56.23 26.68 62.93 84.42 27.27 93.59 75.41 13.21 76.47 82.39 69.08 48.26 47.52 67.54 75.00 14.54 84.69 81.52 13.25 36.73 0.47 91.80 71.90 70.84 69.39 90.48 5.42 48.33 76.53 69.84 97.94 11.89 22.67 60.87 66.74 79.08 71.96 76.38 82.36 77.84 83.10 74.94 72.43 48.53 15.86 96.80 46.96 45.33 39.50 19.50 27.11 50.15 78.91 9.77 68.06 93.86 80.84 53.32 3.68 4.23 87.56 13.27 54.68 -41.20 72.58 15.50 13.66 23.24 89.77 59.06 44.89 89.27 74.95 48.34 82.90 0.87 46.01 10.85 17.00 49.52 4.97 98.36 13.50 78.44 64.92 40.78 1.65 76.11 36.33 94.12 23.44 97.14 18.52 97.77 67.91 1.53 49.70 25.53 15.55 79.83 35.28 75.22 31.79 41.36 70.03 12.15 19.34 57.47 57.73 24.39 84.46 81.41 47.41 19.29 31.40 51.58 26.15 49.09 49.48 91.66 9.77 40.63 55.95 52.62 74.43 11.72 2.35 40.38 99.23 89.37 1.30 38.08 26.31 72.21 45.53 85.60 95.59 92.31 26.07 66.77 22.77 94.19 76.10 22.51 91.82 88.03 37.74 2.66 46.86 34.09 51.07 90.83 50.90 67.36 65.29 56.92 73.51 99.16 66.05 85.64 52.12 15.53 36.41 -8.65 91.35 7.75 91.76 68.82 32.30 28.71 21.09 92.41 85.89 61.06 24.62 15.61 12.45 74.13 21.60 14.33 13.61 95.09 63.99 6.13 0.00 39.85 59.59 83.74 8.78 50.80 23.32 78.72 59.15 86.67 12.61 50.79 72.38 46.72 89.12 66.11 60.77 81.20 47.34 74.59 95.69 72.23 50.39 27.39 64.86 71.32 91.14 24.36 82.28 11.31 63.47 94.71 43.47 96.01 95.15 29.66 83.73 25.76 20.15 62.93 78.89 32.68 11.46 33.89 18.90 77.44 64.09 54.95 51.56 11.42 98.96 11.99 89.03 85.02 24.40 58.75 54.17 56.02 49.44 31.68 41.71 3.77 54.53 63.89 92.29 60.77 13.19 87.43 79.88 74.03 0.38 70.19 35.69 43.85 59.01 67.48 87.18 77.28 46.59 -81.10 73.01 43.16 13.71 45.91 62.24 40.26 26.41 96.94 17.81 23.98 67.25 73.88 62.14 97.66 20.32 53.21 73.25 52.49 5.59 88.19 67.30 50.30 4.18 14.22 20.39 21.26 70.77 17.24 61.88 0.76 49.64 67.17 68.55 86.58 26.41 97.05 56.08 59.64 95.08 52.00 98.98 34.60 24.20 27.84 31.29 39.84 75.11 67.41 48.39 31.23 32.79 71.16 71.40 74.99 93.53 71.22 65.54 1.39 29.95 2.65 57.86 22.04 23.42 59.42 18.00 70.33 97.50 98.27 16.24 57.06 34.33 74.50 77.37 23.06 19.05 8.53 29.84 18.55 42.44 8.29 4.19 30.45 19.36 4.85 70.41 41.27 26.06 91.72 2.37 63.08 49.91 19.63 89.27 74.81 28.65 44.73 85.95 58.24 78.26 -33.04 43.38 52.66 59.72 58.18 42.19 15.71 74.87 45.62 72.96 64.44 84.44 89.93 33.16 46.67 41.22 30.12 66.56 68.59 87.28 67.58 92.00 7.98 90.61 15.71 49.05 60.16 52.15 64.94 53.32 80.72 70.11 74.06 50.80 56.99 48.96 6.00 82.08 2.33 23.78 28.73 7.59 59.52 99.95 21.74 30.59 75.40 75.66 20.85 15.99 86.12 41.01 83.56 41.98 64.97 26.75 88.67 86.68 57.98 3.10 18.32 85.02 49.69 13.16 55.98 80.36 62.72 77.31 42.49 50.42 16.51 55.99 7.28 72.50 73.47 61.72 94.25 25.64 48.16 73.62 15.93 18.27 85.95 58.33 85.62 86.49 38.30 26.75 50.80 32.19 76.30 25.40 40.10 40.20 21.97 6.81 69.32 0.60 0.39 12.36 -45.39 88.22 54.01 61.14 92.55 99.38 38.41 90.99 11.91 46.88 58.41 34.03 40.16 10.35 83.06 26.90 99.81 4.83 32.35 3.63 70.10 1.59 40.12 63.21 4.84 11.58 30.61 32.72 45.83 18.13 56.33 43.91 13.76 41.27 46.93 84.63 52.37 59.12 67.96 15.70 7.94 78.78 52.15 48.68 89.03 6.66 93.90 19.36 60.32 29.70 9.35 57.23 18.47 7.64 25.11 82.77 20.25 40.65 25.57 87.22 67.45 30.31 23.12 83.52 22.60 33.84 70.64 77.46 3.18 14.41 3.21 73.90 62.52 25.35 89.35 87.91 63.81 85.89 23.65 5.04 57.74 97.04 74.22 35.67 18.78 73.78 91.72 3.40 23.90 20.01 5.52 9.64 8.54 83.62 7.64 43.54 23.04 49.10 59.20 85.95 -14.00 13.23 10.62 16.12 80.90 69.24 32.26 23.17 25.93 84.74 4.02 84.11 62.68 73.65 76.48 33.43 43.81 86.18 84.22 94.93 27.87 21.88 67.66 87.05 12.30 39.82 25.75 40.50 75.27 44.20 36.21 87.57 33.99 96.73 32.40 59.11 51.47 25.56 97.14 56.17 93.02 1.28 6.94 70.19 67.69 1.68 45.47 51.50 56.76 36.09 94.36 72.83 71.72 42.64 7.73 76.04 60.98 74.38 88.17 93.38 89.53 39.94 68.08 73.81 92.07 76.10 8.54 8.75 73.85 89.01 1.85 89.65 15.95 85.99 77.06 25.97 96.73 34.34 95.73 20.08 27.90 18.15 74.11 46.17 22.49 90.07 91.49 65.70 6.16 59.82 67.23 19.01 60.66 98.57 88.12 77.54 74.83 48.00 30.11 47.64 -3.26 87.22 29.18 67.04 97.73 56.55 16.81 98.04 78.30 33.36 13.81 37.59 21.77 11.46 99.64 0.66 80.74 32.94 78.98 42.28 20.74 19.34 46.34 80.90 43.70 11.19 7.20 4.58 59.41 98.39 4.43 67.37 9.85 52.26 29.87 57.78 7.14 32.93 15.21 76.64 49.42 61.59 0.64 79.89 71.42 31.18 49.13 63.86 92.45 53.16 1.63 7.04 70.96 62.82 68.07 17.74 45.67 10.42 34.92 64.21 69.27 60.86 11.40 97.24 43.59 38.92 2.32 87.84 96.22 71.45 0.03 21.45 10.51 85.90 81.15 93.46 14.21 4.49 13.90 37.16 77.70 65.12 0.90 23.94 98.91 47.77 81.48 88.55 46.27 20.56 99.67 37.22 15.77 80.01 23.50 72.66 40.52 44.17 84.53 94.70 -54.76 56.90 39.07 43.43 90.84 25.40 3.05 47.52 34.61 92.73 52.40 27.95 70.55 74.26 35.36 25.72 89.85 84.19 25.55 89.19 7.39 23.45 51.19 1.13 35.32 26.22 88.34 32.92 83.10 13.96 57.24 93.22 71.61 91.96 67.59 97.08 55.61 21.39 46.41 25.02 23.34 29.79 68.55 44.48 27.84 54.78 4.81 35.06 78.39 3.27 60.42 55.40 69.41 53.51 36.37 68.13 17.89 86.99 65.51 29.10 38.21 31.74 44.16 65.73 37.85 56.41 99.57 15.39 44.03 56.39 55.63 72.15 75.45 27.89 68.01 12.06 84.15 51.80 57.67 3.64 50.81 43.68 37.83 51.89 99.29 80.62 75.81 0.51 63.17 94.07 67.20 32.91 24.36 47.37 75.58 16.02 33.42 97.09 41.55 27.71 -54.30 28.93 86.80 24.40 91.67 91.57 87.33 69.67 72.57 25.98 43.45 82.10 62.68 7.27 1.76 0.56 68.98 35.51 76.42 51.62 84.20 41.13 83.81 88.99 26.92 95.49 14.04 67.39 51.07 36.20 62.23 11.70 5.33 58.55 34.26 36.79 99.71 13.50 5.51 30.19 74.33 88.58 8.01 53.14 31.18 88.59 19.78 36.11 27.10 27.67 90.16 88.58 87.99 3.40 53.37 2.49 70.53 47.31 59.90 83.13 97.80 13.25 28.72 99.95 7.55 93.40 15.86 24.97 48.30 35.30 29.31 88.69 14.98 87.54 79.26 48.28 9.44 33.04 89.25 99.38 81.52 19.76 26.88 51.66 64.44 8.45 11.90 2.49 45.19 83.06 10.67 32.61 34.96 17.55 77.18 83.31 75.12 45.66 87.07 27.53 -58.54 17.43 59.69 9.73 71.01 66.04 47.72 2.26 60.88 21.57 3.27 94.57 38.84 76.86 92.19 24.80 12.80 51.73 87.82 6.91 67.13 46.93 13.47 25.43 80.16 94.36 83.69 21.37 81.28 89.98 60.96 1.57 27.53 72.56 0.42 63.33 94.66 11.19 95.21 90.89 11.65 32.33 0.72 56.63 45.99 50.21 26.24 25.13 59.25 69.16 83.75 94.89 2.79 34.50 79.85 54.04 4.60 42.27 94.46 96.33 33.54 77.71 80.40 5.81 46.40 2.83 78.33 11.30 15.92 13.58 97.98 9.31 3.49 58.74 63.67 25.56 78.28 68.69 40.11 6.13 22.68 90.34 73.30 61.96 10.70 52.16 82.86 26.22 48.94 63.72 63.71 15.27 70.27 49.56 14.47 79.50 26.92 77.12 35.15 28.73 -22.45 11.79 12.11 53.12 47.74 86.62 65.74 9.16 48.68 88.25 65.31 96.81 89.82 80.78 11.02 61.26 94.34 63.15 30.69 15.02 26.26 1.95 1.61 47.30 95.17 78.40 38.50 57.43 66.18 77.34 54.07 89.78 35.83 34.19 42.59 5.45 66.49 91.10 91.19 22.36 36.83 45.32 76.03 82.28 37.59 98.94 27.12 85.78 41.09 55.93 60.38 29.01 66.29 61.82 17.31 28.31 89.51 27.15 29.14 48.25 41.84 72.34 35.24 68.46 3.37 63.16 42.46 62.34 64.62 63.93 1.15 72.80 37.20 20.32 71.78 23.06 8.43 67.60 29.96 77.51 54.07 15.64 60.47 4.75 18.58 24.86 69.17 66.17 77.50 75.61 98.43 62.37 67.98 93.55 52.37 85.58 24.28 48.90 58.40 82.23 -2.73 22.05 3.84 93.72 88.94 76.03 18.41 40.94 50.34 74.79 91.14 32.35 83.09 75.35 44.13 60.05 68.31 37.51 21.11 49.35 69.68 69.62 58.35 56.22 95.56 28.07 75.21 6.02 74.24 13.20 95.92 88.30 3.63 96.87 52.01 52.88 25.00 20.78 3.68 93.00 36.45 50.13 23.26 4.09 69.37 39.17 12.26 62.65 92.13 78.11 87.35 14.80 15.95 57.47 25.10 77.97 13.25 70.12 71.24 93.07 81.49 82.54 21.61 3.21 41.26 42.68 13.30 75.69 73.08 62.71 18.83 96.77 58.65 46.43 91.79 4.25 67.39 91.20 37.90 39.22 60.80 71.79 16.61 32.67 0.42 16.82 1.87 71.54 35.81 29.72 74.26 60.96 5.69 21.76 40.96 21.35 71.40 0.85 37.73 53.80 -92.62 31.28 75.54 1.41 2.77 53.47 19.38 22.88 21.22 44.78 35.56 9.58 55.64 59.32 21.51 65.16 43.00 36.85 8.14 1.31 62.02 12.75 91.25 27.50 96.55 18.40 23.27 68.17 86.10 73.25 8.51 6.32 8.89 67.72 5.46 96.09 27.60 71.58 85.51 1.06 55.38 59.09 13.16 91.95 85.27 18.72 5.83 95.38 88.36 99.86 22.80 69.39 32.56 68.25 28.33 94.95 27.62 37.68 25.05 27.81 99.93 29.48 88.62 56.87 42.92 70.95 66.69 2.98 77.60 36.55 8.58 56.76 13.04 83.43 81.18 26.37 73.07 68.27 91.34 13.36 14.98 93.40 38.81 84.82 77.20 9.05 57.93 66.22 91.04 44.15 70.80 81.58 45.26 33.76 53.88 95.77 86.80 41.92 15.37 90.93 -50.94 74.43 76.16 76.79 96.55 23.53 55.00 37.70 48.32 44.68 85.29 9.17 23.28 80.59 58.78 52.96 51.32 94.27 80.71 87.39 53.82 71.31 11.98 89.93 26.61 97.55 68.38 14.77 0.94 61.40 42.37 36.02 18.48 76.88 65.61 90.51 83.28 74.64 69.19 67.28 68.11 27.09 54.94 82.73 17.19 10.58 54.68 23.82 29.42 46.94 78.14 25.92 88.74 24.84 55.45 2.36 70.07 94.12 54.89 88.36 5.22 76.31 65.78 97.43 50.24 66.59 13.32 83.21 35.27 20.98 10.62 72.77 87.85 8.00 38.99 62.79 73.11 94.48 76.75 85.51 78.01 96.19 31.98 71.76 75.48 70.74 8.89 87.44 67.43 22.29 66.57 18.90 8.13 79.24 22.71 46.30 84.80 72.78 6.29 92.33 -23.40 41.06 30.15 53.14 11.59 38.31 50.36 3.70 99.84 0.73 82.24 53.50 65.43 85.18 78.39 32.63 41.61 4.38 59.35 36.72 98.27 1.99 55.26 29.44 95.12 21.71 63.17 85.07 66.93 91.84 81.42 78.50 61.20 44.94 61.29 97.59 81.95 34.11 11.11 91.81 88.71 30.54 44.66 71.68 89.39 42.19 92.23 90.47 28.42 31.92 13.80 51.14 23.82 35.52 50.97 80.68 35.26 8.76 33.21 62.53 57.02 70.08 74.17 39.28 98.25 29.90 20.20 30.43 73.94 6.90 15.28 42.60 53.33 10.72 1.94 5.12 38.46 85.92 7.96 41.88 28.64 7.70 99.14 61.72 92.52 32.86 15.33 47.01 34.49 84.43 57.03 47.03 61.76 19.94 9.57 67.79 62.38 23.46 15.84 15.33 -35.32 93.43 18.37 93.57 64.75 64.32 74.47 81.70 70.26 6.93 39.15 89.54 35.87 28.90 20.31 92.98 46.13 35.76 27.18 39.01 90.21 53.52 39.22 38.92 1.61 68.08 17.10 77.67 37.45 77.55 26.61 75.30 96.82 42.00 3.13 41.95 7.84 39.45 82.09 95.79 0.45 4.83 56.39 20.35 66.98 44.14 70.23 78.39 35.79 63.45 74.50 41.82 29.60 89.98 78.69 13.20 25.13 18.39 83.98 2.37 66.95 78.16 91.60 80.19 78.40 95.09 58.96 47.97 73.93 74.82 18.90 32.01 81.21 53.46 79.05 32.86 72.32 58.52 89.06 14.90 49.76 28.78 57.75 75.38 29.07 80.62 54.45 84.83 19.04 44.61 41.71 74.21 57.32 63.01 83.17 96.18 66.16 24.19 70.21 41.75 -52.35 73.41 11.92 94.40 77.14 22.65 38.08 96.52 55.39 53.13 4.21 86.86 29.91 42.25 33.72 72.90 31.38 66.16 49.74 75.13 39.55 17.29 46.35 18.22 82.54 43.21 2.16 34.81 21.20 24.99 24.14 85.53 99.36 91.02 47.52 75.03 26.49 86.46 8.71 41.28 43.15 73.18 4.91 23.41 1.48 38.79 83.61 4.17 4.32 35.96 32.82 73.59 69.66 52.25 74.06 72.74 55.98 63.26 13.83 37.14 25.33 16.49 54.25 25.89 83.07 51.51 77.27 62.96 36.35 59.03 42.47 67.57 43.04 13.78 97.48 38.19 35.41 10.04 73.71 38.66 32.19 46.14 73.67 0.45 3.12 2.15 62.01 72.76 48.21 56.18 52.72 54.72 48.48 98.20 78.36 79.35 4.55 6.36 70.96 56.59 -17.36 94.71 50.70 84.02 31.29 99.83 13.69 86.07 51.76 75.00 39.94 26.44 98.31 60.53 11.27 92.18 70.62 52.25 88.52 1.71 76.06 27.03 83.08 27.31 15.96 95.99 31.42 87.57 72.95 75.31 77.59 39.36 69.56 41.30 3.00 5.27 31.58 74.78 5.42 6.07 7.81 84.71 24.51 22.98 81.09 40.02 54.98 87.90 36.96 74.94 12.80 82.63 73.38 1.29 89.76 34.85 8.34 93.09 12.29 50.17 91.92 48.88 68.90 21.24 55.96 88.57 50.68 49.05 83.38 54.22 58.18 6.93 93.14 46.84 38.04 57.33 78.23 56.65 34.86 22.24 27.74 28.44 23.46 38.03 12.04 90.20 82.10 47.26 76.54 53.29 38.02 64.97 64.05 12.22 26.08 22.08 82.10 33.10 60.61 64.75 -61.06 78.89 85.88 55.52 73.62 63.45 97.07 19.56 1.76 14.63 78.40 87.77 70.36 63.69 5.34 20.54 38.70 7.43 0.32 30.85 48.10 89.06 40.18 58.66 56.34 30.53 4.34 75.85 66.61 82.93 88.52 54.03 50.92 28.11 6.64 42.63 43.93 96.44 46.73 74.86 13.61 26.99 56.02 2.19 33.88 87.87 36.58 23.80 44.89 46.48 16.88 5.99 87.71 95.52 30.22 68.75 27.73 65.68 8.09 99.35 49.36 76.01 92.19 31.12 4.63 65.83 38.25 56.69 46.37 56.06 97.16 38.81 8.93 3.33 17.97 5.33 46.83 38.72 61.07 49.82 82.04 76.95 69.02 72.86 39.29 77.92 51.38 75.99 7.80 91.84 85.01 1.57 4.41 1.44 18.68 9.91 65.79 83.70 16.69 25.40 -94.33 53.69 68.43 56.08 1.56 46.67 83.53 93.50 79.31 40.45 52.23 65.60 86.14 86.38 60.75 98.19 42.57 95.29 9.08 87.40 11.36 64.84 98.09 44.56 95.69 75.15 30.93 58.90 78.89 82.37 55.94 64.95 5.68 1.32 71.35 37.26 13.45 43.78 63.48 24.33 25.48 15.90 6.30 11.56 92.50 90.94 55.15 84.30 25.39 89.62 74.08 93.45 61.93 46.63 83.80 7.64 83.76 55.38 27.18 64.29 25.19 60.51 71.03 38.04 13.34 94.82 91.66 21.36 26.04 11.76 97.38 35.48 37.16 35.80 64.16 78.84 71.13 81.75 69.39 22.73 63.51 51.27 17.00 84.93 11.11 71.53 73.70 76.72 45.53 1.31 26.74 17.79 9.52 54.83 30.59 21.26 53.73 93.71 91.93 84.51 -69.42 41.44 29.33 3.47 24.33 70.62 42.34 37.23 48.09 60.91 18.66 98.93 87.26 77.38 12.26 73.83 23.40 71.55 92.56 23.89 9.75 18.06 66.29 72.19 99.79 40.28 22.83 1.66 0.57 70.13 7.45 57.95 16.75 20.09 78.28 78.97 24.77 28.36 42.49 77.30 76.22 52.24 60.55 25.63 97.49 41.07 26.67 77.67 61.08 11.22 38.19 9.85 70.33 24.79 18.59 56.92 23.95 94.71 44.42 53.67 0.38 30.09 46.45 72.34 37.55 0.76 54.23 56.09 37.71 94.79 97.94 10.01 84.54 52.60 19.43 73.54 77.18 64.51 48.52 57.34 29.64 49.07 49.43 75.82 26.86 8.42 77.08 62.88 79.06 52.07 96.51 54.66 34.97 38.65 1.59 58.30 5.67 70.56 41.61 34.91 -26.30 70.73 3.35 11.85 16.93 6.11 53.43 30.20 29.24 66.82 88.50 39.05 24.27 9.85 21.04 23.35 94.43 55.69 31.69 1.40 92.62 86.38 20.62 25.44 6.16 25.73 29.37 8.80 81.68 20.37 90.11 33.61 3.01 25.59 66.46 17.30 57.24 3.50 37.68 25.34 30.57 48.88 5.04 80.88 28.32 1.71 67.92 28.71 80.47 21.98 96.81 42.74 31.04 42.68 34.10 51.79 55.38 65.10 90.83 67.06 64.34 94.36 32.43 55.32 12.79 19.98 61.16 11.12 40.92 62.59 66.74 11.05 31.70 20.87 10.39 86.02 47.02 27.24 51.60 68.84 26.92 97.30 51.05 60.46 59.59 17.72 41.72 99.18 13.38 3.83 40.74 4.17 87.48 97.26 18.16 87.66 19.63 52.19 17.96 57.32 -84.22 52.44 37.13 51.44 61.76 11.96 51.79 53.58 7.14 45.59 95.11 64.51 44.84 25.95 52.23 44.98 38.98 71.62 86.60 19.31 90.05 10.13 58.38 86.57 14.70 85.62 10.17 7.22 52.97 90.22 35.19 63.90 85.96 98.00 74.45 21.49 23.57 86.05 77.98 16.95 71.95 79.59 70.49 58.11 69.07 10.41 14.80 26.29 28.15 4.48 42.39 37.97 98.22 56.08 52.91 79.00 41.72 3.79 86.24 12.30 52.07 64.79 40.95 74.84 69.92 43.89 35.13 53.44 96.01 54.95 63.96 23.38 14.39 18.24 90.59 20.30 59.33 37.21 5.23 41.14 52.52 35.80 47.17 75.87 43.20 53.48 14.34 67.01 38.17 38.30 38.67 16.64 87.10 10.66 80.72 83.72 65.33 97.75 69.54 47.04 -30.35 38.05 30.65 98.10 33.83 71.51 24.64 13.73 66.68 33.79 96.92 94.82 23.51 93.28 2.97 81.37 19.51 96.18 79.02 17.88 46.72 11.55 93.53 82.24 62.97 62.67 13.39 13.37 28.54 25.47 41.78 98.09 61.86 91.55 47.68 39.34 9.83 79.03 73.85 26.32 21.26 67.96 72.58 3.83 37.05 33.45 46.14 90.17 87.71 4.29 79.58 39.27 80.81 6.28 57.35 2.21 64.15 4.57 3.89 46.86 26.35 76.51 27.62 95.13 29.62 81.76 21.86 79.15 76.92 45.50 5.02 28.18 89.55 20.04 76.03 41.36 26.80 53.90 14.54 61.71 24.44 19.79 60.80 55.46 71.43 7.04 19.24 18.89 42.93 1.53 62.55 84.45 37.16 37.01 76.57 90.66 27.88 72.91 52.38 88.72 -89.82 11.84 35.86 11.88 3.61 63.48 98.28 56.46 75.52 5.74 19.55 34.37 45.08 6.84 98.77 61.55 44.51 82.85 3.61 97.55 94.59 64.66 14.84 33.36 43.38 65.29 72.80 21.35 96.01 27.02 49.68 47.40 90.02 52.76 84.29 6.62 35.23 75.53 92.59 23.78 84.00 60.41 19.98 38.47 65.45 31.57 56.58 88.79 67.36 75.86 99.38 62.07 14.77 45.96 70.31 45.54 10.26 41.58 6.47 32.85 38.88 28.44 38.62 89.49 76.22 83.56 99.34 85.06 16.28 97.33 84.17 41.99 54.87 83.43 2.78 36.41 48.74 23.61 14.67 36.47 69.39 21.99 16.65 7.38 80.35 2.94 56.89 25.59 97.54 66.21 49.65 6.40 37.83 93.00 80.39 92.92 35.27 16.45 96.49 77.74 -50.63 67.46 88.78 60.72 79.30 88.40 19.23 68.25 45.58 50.86 70.60 26.62 6.23 4.95 54.17 52.43 62.90 81.96 70.47 24.52 92.49 66.63 52.72 70.17 56.82 66.42 83.82 87.57 6.03 86.76 40.76 62.98 77.30 32.08 15.31 76.66 23.21 93.82 72.90 80.88 26.24 95.46 58.85 43.84 80.71 92.38 14.50 97.89 74.06 11.54 8.36 98.74 42.93 5.74 4.15 59.64 87.69 4.94 25.29 99.12 45.84 24.80 29.29 68.12 72.38 53.50 72.95 12.27 56.44 99.04 46.36 21.26 72.78 87.72 32.92 63.10 33.47 69.73 16.58 22.43 99.81 33.14 59.88 41.85 29.04 0.43 45.96 2.55 19.54 57.19 61.68 3.85 47.70 2.80 49.97 93.74 26.65 98.17 71.53 29.20 -68.49 18.65 72.07 13.28 61.27 14.17 6.00 52.36 52.71 34.51 95.32 96.78 81.55 76.05 96.45 46.18 21.80 14.63 30.46 74.80 16.13 26.00 81.94 42.80 12.85 46.18 76.67 2.85 68.46 88.53 39.39 51.43 20.90 49.72 6.57 22.56 63.15 90.39 71.91 27.17 88.81 2.64 50.64 54.95 60.29 85.26 44.17 76.64 43.33 7.28 70.29 6.28 22.76 23.26 52.37 64.78 31.03 95.54 88.33 61.01 28.71 26.88 62.63 6.96 54.20 62.42 52.48 30.52 16.97 26.32 25.54 86.07 28.71 57.78 89.56 75.35 8.56 76.82 0.91 81.11 15.74 31.90 10.81 79.31 64.33 9.31 52.65 99.33 51.06 4.89 46.27 36.21 5.28 62.11 74.61 67.87 39.40 77.26 0.63 68.55 -58.56 79.11 75.01 20.98 60.43 63.16 53.31 12.20 20.11 45.39 54.25 11.99 37.39 0.54 41.60 57.09 71.11 2.12 76.14 66.67 12.62 46.46 20.28 31.43 99.14 2.31 51.44 64.99 35.29 66.24 87.44 53.37 56.59 14.52 29.79 79.76 78.52 45.27 18.32 31.83 86.45 62.21 44.87 77.04 3.65 24.62 6.92 36.34 59.50 75.47 13.33 85.70 5.45 66.82 0.93 73.60 16.01 93.83 10.48 88.68 92.61 99.55 32.19 72.32 17.92 7.69 48.44 60.33 74.82 46.47 74.83 42.91 27.37 46.51 35.96 82.87 56.46 64.46 66.72 55.00 20.92 99.43 85.05 98.66 85.10 71.11 63.43 14.41 58.63 77.94 15.37 99.46 8.33 33.63 47.43 64.67 61.74 13.45 54.72 50.48 -46.06 15.71 2.81 65.60 74.88 88.38 78.38 66.03 56.90 26.68 69.84 67.41 87.37 66.72 63.74 22.25 15.93 16.58 57.22 90.52 29.44 71.63 5.30 4.25 25.29 17.01 88.69 67.37 51.41 47.35 15.82 93.76 40.08 89.16 44.41 18.86 89.16 28.89 56.62 49.32 32.84 90.99 4.97 61.24 5.44 6.26 42.71 17.09 10.45 98.97 74.62 18.50 47.49 31.60 75.07 58.54 70.93 3.65 90.02 94.07 79.08 39.54 24.93 88.57 1.14 46.48 3.23 31.89 17.94 97.62 89.88 95.95 67.98 77.55 17.96 75.07 93.30 65.26 58.58 99.21 51.99 90.14 93.37 25.66 46.96 7.96 93.94 97.07 32.63 8.28 99.75 22.44 83.92 75.99 20.52 28.32 93.87 10.98 65.57 0.48 -84.46 48.97 13.13 20.48 25.41 65.91 53.48 32.73 3.65 94.74 9.76 14.04 37.95 82.52 84.19 61.98 84.67 30.96 27.16 42.42 85.71 74.77 32.82 6.77 61.50 7.52 73.55 53.46 64.17 5.53 30.69 93.13 35.27 74.32 29.27 5.75 63.58 26.36 92.91 60.90 85.49 0.90 67.79 64.33 23.67 28.33 84.31 46.50 58.08 34.72 85.49 16.85 14.61 25.62 90.16 17.48 96.03 4.79 28.37 42.09 65.16 39.91 33.36 73.22 52.08 84.33 29.74 73.73 15.41 97.90 90.86 81.88 48.54 16.95 66.43 54.68 87.74 24.93 73.70 78.33 41.64 40.95 13.39 67.02 34.08 43.11 42.94 1.33 23.71 66.18 84.64 67.43 88.13 68.13 5.79 30.79 71.40 79.56 41.37 42.39 -17.30 66.79 75.88 16.96 64.05 66.51 88.75 48.34 41.18 60.52 62.89 59.27 49.55 30.12 46.20 37.79 49.98 85.99 90.08 83.00 12.16 66.76 2.64 26.88 79.02 15.45 20.02 37.95 98.11 1.87 8.34 13.33 24.31 69.40 17.09 75.34 90.43 44.96 13.31 63.88 36.35 38.88 37.98 38.99 14.06 1.56 87.21 5.38 39.93 81.49 36.22 94.50 2.38 59.11 16.52 3.03 80.16 75.25 14.75 2.71 32.02 66.30 85.11 68.85 7.33 20.80 23.12 33.50 3.17 78.17 86.03 24.11 65.00 8.69 43.76 81.56 82.27 60.43 81.03 32.42 36.49 73.36 46.09 34.14 72.50 9.24 54.58 8.08 55.18 79.74 65.62 76.74 22.79 67.01 30.68 19.04 24.76 38.81 29.77 17.77 -96.68 98.15 97.89 85.27 70.63 97.70 93.74 56.78 30.89 5.59 81.22 9.48 40.55 32.68 89.67 60.99 1.19 59.33 72.32 2.82 23.44 3.53 17.06 96.67 31.22 62.48 14.38 25.51 47.63 69.45 33.34 20.21 46.90 52.80 79.77 78.61 44.78 50.75 60.45 19.52 20.64 55.81 7.39 35.88 18.50 95.38 84.36 50.81 16.45 23.22 31.99 29.85 67.15 86.75 72.08 89.61 52.15 84.03 59.58 9.19 29.34 34.19 11.40 12.61 30.07 31.09 74.49 84.94 67.94 61.80 92.13 26.40 17.79 81.73 43.89 31.61 93.94 92.67 25.08 15.97 59.97 58.24 40.16 19.64 22.80 27.80 0.41 4.15 58.89 43.02 81.10 69.32 2.04 82.33 98.48 71.02 1.17 71.55 94.15 3.73 -38.04 59.27 4.45 48.62 66.99 57.80 28.56 0.50 81.95 67.34 16.19 39.62 81.37 84.67 41.58 46.03 88.61 44.55 62.61 12.53 72.63 89.38 84.35 16.95 89.46 70.85 74.95 75.57 58.44 67.72 8.34 6.53 75.82 20.14 47.90 18.41 33.79 78.08 90.16 86.73 66.71 22.17 16.78 66.92 68.12 32.90 23.61 5.59 93.82 45.38 0.04 57.25 60.51 1.09 54.29 51.68 65.36 59.63 8.18 89.10 61.15 0.85 2.73 42.79 29.20 25.82 68.15 36.00 4.10 59.45 8.13 23.08 29.23 69.93 10.36 11.50 25.79 11.70 58.13 63.32 34.20 76.53 79.63 96.40 40.60 40.51 95.54 40.60 75.44 74.53 53.30 25.05 59.89 50.29 62.90 26.62 37.14 20.15 5.50 96.09 -19.38 0.74 0.01 78.17 50.50 44.77 84.18 68.06 48.31 11.97 44.27 28.66 34.76 7.02 51.85 83.29 44.72 78.99 14.02 6.87 98.49 59.17 50.69 74.43 83.34 88.38 87.65 71.32 49.64 39.90 23.73 69.63 0.81 12.49 12.59 42.86 86.45 53.60 22.04 64.84 0.93 77.41 40.01 5.34 87.41 85.69 36.54 97.99 45.63 22.81 18.35 10.80 54.46 6.78 71.30 76.05 60.26 75.96 49.96 75.80 40.69 24.86 40.00 10.64 43.24 43.34 18.57 60.47 84.80 73.52 33.70 16.19 8.84 8.32 52.86 47.05 46.38 92.33 90.33 78.55 68.78 51.74 8.92 63.11 2.35 86.33 35.12 80.63 43.74 30.48 94.34 81.01 83.14 89.29 98.68 7.37 29.31 52.71 63.70 50.13 -97.84 40.71 32.04 51.17 12.16 63.55 53.16 30.72 84.00 83.60 68.79 86.50 40.91 87.64 55.21 57.64 27.38 48.25 4.24 34.23 38.56 41.14 38.58 53.21 81.12 47.05 40.67 52.48 99.80 16.14 32.01 81.89 40.69 0.33 57.95 83.62 56.04 14.19 99.18 68.65 37.55 87.70 64.08 99.43 44.66 18.24 9.11 46.83 52.16 81.29 25.16 51.37 30.88 27.82 78.36 77.02 36.63 80.69 59.10 38.60 1.61 32.31 85.14 32.95 40.32 74.30 93.57 21.42 41.35 88.61 65.20 65.97 6.60 90.13 38.24 95.16 13.24 92.19 96.74 84.60 11.47 67.72 67.93 60.08 10.72 95.16 78.80 70.10 33.62 34.72 96.71 3.08 55.26 56.35 15.39 74.38 81.75 25.68 89.17 16.46 -66.62 77.08 31.78 18.80 64.35 42.61 41.61 95.06 96.36 85.26 88.90 69.59 21.43 59.40 11.26 60.67 9.13 30.68 14.49 77.08 6.86 89.19 97.80 38.82 40.81 87.26 36.64 76.25 94.42 41.68 63.34 7.82 33.75 26.28 96.22 1.86 92.15 39.79 10.88 69.11 50.77 87.27 11.80 54.11 19.43 19.59 81.38 20.01 99.47 70.79 64.72 3.70 37.35 90.61 96.02 61.61 23.40 49.32 47.02 52.55 94.84 10.73 1.72 49.08 76.39 68.60 57.13 70.01 92.24 92.47 66.93 63.42 52.49 39.11 20.19 54.39 33.62 57.55 47.26 69.21 1.69 7.88 81.80 4.08 20.13 74.53 75.28 12.73 83.92 55.45 1.01 25.73 6.77 99.84 0.86 74.53 89.34 80.68 75.00 51.75 -78.49 85.74 96.58 47.90 76.70 62.12 44.80 66.76 28.71 88.73 98.67 27.14 33.95 18.27 93.11 98.22 74.20 42.58 5.48 87.57 36.83 49.06 27.16 2.07 23.60 92.89 92.95 6.78 59.06 68.17 14.92 60.48 84.88 52.13 39.25 85.94 81.69 87.09 77.13 99.13 21.28 29.21 84.89 90.32 65.66 57.54 42.93 46.51 9.98 91.27 81.91 35.05 17.38 75.41 48.76 16.32 76.29 93.36 56.61 53.54 76.43 99.65 49.61 95.58 93.44 38.39 60.82 52.17 64.61 35.53 0.98 63.59 87.57 59.12 99.08 22.00 18.79 71.93 87.19 54.46 33.73 75.28 52.31 2.82 0.73 74.66 25.37 56.89 47.54 48.06 97.57 66.56 57.42 58.35 96.21 81.93 69.47 14.88 30.13 64.17 -44.19 52.71 44.87 9.91 29.38 30.69 88.38 96.27 86.57 24.77 72.68 63.20 59.92 57.90 4.69 95.77 88.23 94.65 46.24 28.29 87.70 23.92 53.70 30.77 80.25 62.69 88.89 16.87 44.40 62.11 22.60 30.18 97.12 56.88 87.13 11.10 59.37 68.77 79.87 65.33 46.49 61.25 63.73 85.30 56.54 48.24 91.29 81.00 25.48 97.13 43.44 24.13 30.61 3.47 96.59 22.46 37.61 93.11 75.22 79.16 60.88 97.09 59.89 33.36 38.37 46.65 74.30 9.30 92.27 0.20 94.43 58.35 31.77 18.58 63.77 84.79 37.08 50.98 0.86 2.41 66.41 69.74 31.99 33.13 6.02 79.27 88.40 57.38 68.20 91.61 64.58 32.99 38.70 79.81 7.07 49.38 74.55 57.56 18.51 6.98 -46.26 98.69 46.32 45.79 90.27 36.68 65.78 3.30 22.56 66.74 27.05 56.75 51.63 95.06 19.89 36.63 12.79 62.38 57.98 69.27 16.95 79.53 23.10 44.01 57.13 4.14 94.88 86.32 98.18 48.33 74.02 44.18 50.35 37.30 43.95 93.59 62.25 77.04 2.81 64.55 68.02 0.42 77.60 96.93 26.37 2.61 86.82 57.39 80.91 14.05 74.36 62.46 39.36 26.72 14.05 42.48 51.62 93.64 19.61 7.86 95.39 58.85 43.37 55.88 31.96 77.44 98.67 35.45 93.09 33.77 91.48 53.62 47.22 4.95 92.84 78.33 62.53 74.48 55.76 57.12 40.16 62.52 44.21 65.01 26.68 85.78 38.02 83.40 8.45 32.30 52.37 30.03 23.72 90.65 61.86 24.15 63.61 17.30 79.47 9.57 -77.91 31.35 27.53 4.89 2.63 43.01 77.07 47.01 43.97 80.20 34.55 13.12 56.02 63.94 54.73 46.92 70.59 79.24 96.03 96.73 88.15 32.03 84.70 23.76 57.94 87.84 84.61 44.48 92.88 21.23 5.72 54.70 71.82 78.57 49.39 79.02 61.83 34.52 91.16 62.99 46.52 40.99 37.84 44.51 45.00 45.25 81.79 89.57 10.52 73.79 55.71 5.18 13.24 28.79 95.74 4.48 62.99 43.33 24.34 90.54 45.46 0.35 27.15 37.82 17.96 44.81 64.77 34.70 30.82 9.86 59.78 49.56 26.39 3.43 67.42 88.51 63.13 90.69 92.55 11.17 38.96 76.36 80.01 39.77 74.97 5.48 75.04 19.28 23.23 75.84 53.66 40.46 73.60 91.29 6.34 91.00 8.99 95.19 34.02 94.98 -40.67 0.79 37.76 54.44 77.12 51.29 48.95 22.82 16.78 75.60 33.05 54.09 27.35 31.25 41.45 67.81 25.05 15.59 92.59 22.94 85.16 52.07 44.02 39.55 8.81 79.22 71.48 1.14 78.60 62.45 15.22 78.03 87.68 66.44 15.40 2.04 73.20 42.53 46.15 8.56 0.99 59.94 3.57 20.36 11.19 69.63 48.59 13.81 70.25 49.71 33.84 7.81 80.03 96.65 22.80 39.54 89.76 84.05 98.93 54.98 33.15 30.63 90.48 75.82 53.79 71.03 9.05 55.83 57.84 56.65 93.91 71.57 61.94 42.29 77.06 20.50 65.48 76.62 17.50 37.00 35.88 53.34 32.91 44.39 98.90 27.09 94.72 66.78 53.37 84.42 57.92 96.30 81.57 4.26 12.47 20.06 58.30 70.53 77.36 70.03 -17.96 65.90 12.62 14.70 95.90 25.15 74.87 49.41 45.25 89.52 8.20 84.46 76.67 36.26 7.68 9.13 18.44 49.33 59.67 70.24 8.13 67.54 55.83 96.83 52.48 62.60 27.52 60.38 52.31 67.96 73.63 16.88 25.35 71.42 83.18 78.63 61.59 73.37 17.25 36.34 24.67 22.97 82.09 52.48 55.57 24.94 64.40 8.98 24.41 4.19 86.70 98.76 91.68 57.64 49.37 62.93 72.13 69.34 66.27 13.24 29.97 97.19 49.85 43.46 35.17 29.04 63.14 77.45 28.71 53.84 71.01 80.20 45.12 98.64 83.86 91.17 50.88 58.63 29.12 20.30 99.04 67.13 83.32 59.91 3.52 89.86 49.08 66.13 8.15 86.12 37.67 62.53 51.86 25.98 29.32 97.82 70.20 32.44 76.18 3.28 -46.76 48.36 21.80 13.22 33.83 62.23 69.30 8.36 96.02 46.49 84.80 20.70 77.18 74.72 45.25 77.56 1.99 71.06 69.24 93.92 66.45 66.11 74.31 29.23 7.89 35.67 84.32 71.00 78.35 58.91 65.07 56.14 55.75 48.29 15.17 24.84 66.51 2.45 7.50 97.82 72.03 1.57 3.87 14.42 38.81 86.01 68.41 96.05 15.52 1.03 70.89 95.07 90.19 12.11 69.16 41.53 18.60 67.04 41.17 63.52 45.82 43.77 15.66 40.49 98.27 41.65 97.87 64.98 7.87 26.13 23.68 86.35 66.34 12.93 9.07 37.10 93.11 22.38 39.58 42.54 16.46 65.00 35.32 19.93 89.63 27.46 78.91 11.87 86.94 50.29 63.08 89.38 82.12 47.40 55.25 2.44 49.90 3.43 33.02 90.14 -94.35 28.84 47.27 32.71 53.64 7.65 70.08 74.65 60.83 19.15 26.39 43.82 40.90 72.30 18.71 73.36 14.57 86.11 37.10 61.55 68.91 50.42 60.00 71.95 2.00 3.29 35.04 37.10 23.96 12.11 60.09 81.55 72.70 0.34 61.59 17.58 90.35 1.25 27.53 80.86 97.28 52.17 57.25 53.53 1.19 79.74 52.42 87.76 43.53 26.77 97.19 72.06 24.93 44.78 26.81 95.50 16.38 95.12 27.15 52.90 73.19 91.86 12.62 6.56 73.95 92.80 82.75 14.73 81.76 14.54 34.84 18.18 80.81 58.32 57.73 66.33 72.14 47.38 81.58 83.63 47.10 64.16 45.02 12.68 61.28 10.17 32.67 88.60 91.64 9.62 81.29 53.94 66.45 52.53 98.18 3.19 12.42 98.65 69.44 65.58 -54.55 16.19 69.57 90.75 39.94 93.26 16.96 66.52 22.02 20.10 1.79 50.06 46.36 79.67 68.89 9.89 58.52 34.47 22.79 45.92 77.55 54.43 58.48 12.19 19.91 54.08 12.75 19.68 75.53 27.44 76.54 44.00 79.23 56.91 31.26 57.25 47.52 2.72 62.13 76.24 85.62 72.28 38.16 10.24 34.99 57.41 33.45 5.02 1.63 80.33 45.66 41.72 23.90 68.21 11.62 45.33 39.98 79.58 2.53 5.70 95.28 98.78 52.63 37.95 54.00 35.75 99.12 8.54 61.47 84.48 88.58 26.11 46.91 72.47 28.09 26.78 22.40 2.22 62.84 41.60 74.39 87.72 26.97 86.66 65.09 34.61 69.13 8.50 7.53 84.21 62.45 55.77 37.51 93.54 86.15 60.01 92.08 56.08 81.07 31.35 -29.23 37.74 14.42 14.34 83.23 12.50 71.25 35.26 32.25 20.67 90.29 56.44 97.15 8.15 94.68 22.36 66.39 31.03 11.99 5.42 88.46 53.80 79.75 28.70 3.63 64.96 50.40 65.25 28.39 7.03 66.83 14.05 80.78 31.71 93.79 54.86 65.62 29.96 77.41 24.86 89.55 99.11 49.39 14.49 87.22 99.20 31.37 52.98 92.22 34.56 5.01 28.00 34.08 83.36 41.64 38.03 18.53 65.07 49.98 33.26 57.34 4.04 38.39 37.68 57.34 84.45 17.14 37.96 20.82 84.89 99.07 46.10 84.24 91.20 46.92 71.63 22.85 22.64 88.00 91.47 82.45 39.54 0.70 11.38 12.57 60.04 67.44 36.63 69.70 21.23 79.52 58.79 19.44 46.33 73.43 65.87 64.19 20.57 17.33 27.88 -49.61 14.49 51.29 1.36 65.61 44.67 33.41 3.97 95.83 30.59 91.40 6.55 38.91 79.42 93.68 77.86 9.28 46.07 39.72 86.36 95.52 1.67 76.96 60.38 85.91 76.60 64.41 87.72 68.82 76.24 20.53 46.03 37.55 57.55 78.91 83.96 14.09 98.61 44.58 23.70 89.15 92.90 50.28 3.93 15.15 58.64 79.52 68.64 91.49 30.06 76.72 90.56 84.39 70.93 98.37 21.91 40.00 29.42 77.35 50.87 47.43 65.60 0.17 89.15 6.78 13.95 4.56 19.76 53.21 84.00 88.95 86.30 57.77 23.25 0.32 62.79 77.49 24.00 82.99 61.61 52.99 19.70 64.13 55.91 85.19 53.35 29.82 11.76 47.85 1.26 86.65 61.84 7.90 30.57 0.30 15.21 41.10 3.79 66.68 19.96 -82.96 39.98 33.86 64.72 49.21 99.47 26.74 92.52 94.03 32.41 65.88 16.31 97.40 16.22 42.10 9.24 2.10 37.60 94.50 93.24 24.73 26.65 10.98 11.05 67.43 64.70 10.00 13.66 65.23 58.53 4.52 18.42 84.37 68.10 52.78 76.68 78.50 65.54 85.52 42.55 18.44 81.13 27.30 84.71 26.09 21.20 83.33 86.04 94.58 25.66 86.75 15.83 20.36 85.77 19.53 22.78 5.55 62.91 29.26 88.72 14.49 12.48 89.92 17.46 80.47 17.65 45.98 27.95 5.14 26.69 43.93 13.05 21.45 73.88 31.28 49.53 4.29 27.09 33.80 61.97 30.09 11.98 43.41 45.37 30.45 49.23 94.22 59.84 71.31 68.56 67.83 80.21 36.70 92.45 24.79 55.64 13.32 26.52 89.10 5.89 -95.27 82.98 89.96 8.53 78.54 57.59 96.94 98.55 42.81 92.98 10.04 92.28 66.44 64.41 2.75 23.68 19.90 97.31 72.42 22.96 12.21 42.11 36.96 75.29 78.91 26.84 29.99 14.92 24.96 80.68 72.86 73.28 0.35 25.59 32.54 9.31 66.58 62.31 94.15 87.68 1.51 59.30 97.88 52.29 47.00 62.34 10.69 62.43 25.46 14.84 11.49 63.37 5.47 22.67 63.18 81.55 59.11 53.13 7.62 2.17 93.08 87.73 74.87 12.01 41.30 87.42 86.91 20.18 74.21 0.66 98.15 66.75 23.70 60.51 53.32 61.06 36.60 26.59 95.67 74.11 47.90 47.62 74.91 87.47 51.56 78.78 80.01 11.46 73.82 30.09 1.33 95.93 80.34 59.51 37.07 69.22 54.27 1.20 96.32 75.28 -45.81 88.42 8.57 40.79 7.08 17.75 71.87 34.16 46.51 14.22 73.99 56.90 84.50 56.54 38.61 72.83 55.85 75.01 89.75 5.45 62.88 6.86 17.40 17.09 94.75 91.82 69.90 71.52 17.14 18.88 47.33 39.47 50.46 11.59 8.62 7.44 46.11 25.24 42.19 65.97 2.09 12.69 57.00 9.23 93.55 89.04 19.48 21.95 47.13 29.83 86.63 29.41 75.59 55.25 43.98 96.83 83.14 8.66 49.06 71.15 73.44 80.91 72.85 87.47 78.70 75.44 90.63 80.61 51.73 63.29 14.25 38.66 70.57 8.95 10.94 27.02 30.80 67.23 20.27 85.25 97.24 76.21 44.71 43.42 5.20 16.34 31.78 19.55 99.76 28.27 2.13 19.46 97.72 22.37 30.43 48.15 14.01 53.96 94.28 73.07 -85.68 74.00 28.13 0.29 33.86 10.28 56.94 5.63 18.48 31.81 96.37 74.13 83.19 95.20 18.26 42.73 99.91 32.69 61.55 89.72 94.60 52.58 69.21 30.04 67.45 39.32 47.86 4.98 29.90 26.11 52.61 65.76 84.06 42.01 33.15 67.69 14.98 5.58 17.62 50.16 85.69 40.70 9.44 49.46 24.68 82.56 38.75 73.71 49.10 97.57 77.09 3.48 54.30 61.19 18.92 86.74 12.62 14.30 38.31 80.87 68.55 35.49 3.48 58.85 22.06 31.77 85.07 82.61 95.06 34.81 10.65 46.74 80.21 95.20 62.06 76.27 13.31 42.60 62.55 84.70 77.53 29.64 6.04 86.66 2.15 73.72 52.92 85.70 4.42 48.12 73.62 54.82 13.90 67.44 46.25 94.38 35.02 74.81 56.48 15.90 -27.58 52.59 30.56 45.90 5.70 62.35 16.16 56.91 5.48 99.15 10.32 75.44 76.85 53.89 45.47 43.53 92.08 97.58 75.93 96.40 50.93 83.01 45.80 65.38 29.33 88.21 66.44 95.18 1.88 93.24 94.81 22.51 68.77 98.85 94.53 8.15 71.41 6.50 75.14 19.71 23.95 52.38 60.06 23.46 57.32 66.15 43.65 42.49 11.73 65.37 9.69 14.52 55.54 79.62 36.90 6.02 21.89 56.46 28.00 13.99 3.43 12.69 66.42 72.32 40.55 42.95 81.70 12.13 10.67 70.58 60.49 29.95 67.90 73.55 42.73 17.33 8.95 28.45 89.22 87.77 27.87 80.50 42.46 86.28 18.91 94.46 32.36 60.88 80.88 89.78 42.86 89.40 59.72 83.30 64.25 12.90 63.61 73.58 65.96 16.95 -80.09 16.02 54.69 15.65 33.78 19.97 81.27 49.38 95.70 57.14 28.81 29.03 65.64 10.31 14.11 79.13 48.59 24.56 24.79 41.15 88.48 49.20 61.48 29.28 73.56 52.58 29.37 11.08 77.75 41.86 62.11 26.22 54.51 95.34 92.79 11.31 67.46 99.65 6.98 19.32 54.33 73.40 46.88 19.30 80.70 78.46 99.79 90.60 26.10 3.68 35.59 93.50 93.76 49.49 57.92 92.08 53.47 28.16 10.14 39.31 16.73 37.96 17.23 82.44 92.08 90.25 50.60 4.21 30.57 51.15 55.71 30.29 44.97 42.54 38.51 66.05 56.95 81.55 15.66 54.96 55.72 65.81 71.03 46.65 25.34 7.19 93.44 14.37 96.09 23.73 12.21 22.15 53.12 37.95 79.11 73.40 69.57 58.24 3.11 48.27 -95.91 45.68 53.27 64.92 95.76 89.09 3.64 66.07 85.08 64.02 36.86 58.82 28.98 72.12 58.49 45.16 30.36 14.06 0.91 45.63 43.56 50.29 59.80 74.68 67.12 29.37 79.02 35.79 70.60 31.70 42.53 72.08 91.49 72.87 13.58 94.55 29.30 41.83 70.34 97.17 7.61 69.32 52.60 27.67 16.59 97.28 39.46 18.83 49.85 35.95 62.80 9.11 44.50 25.16 46.42 22.79 16.81 94.61 25.81 30.12 93.42 49.72 98.68 4.99 87.13 89.94 69.48 7.75 62.15 37.75 39.58 58.18 55.21 58.76 23.72 18.73 71.85 75.05 25.24 21.37 54.80 43.64 12.91 87.24 56.79 78.96 63.92 91.56 49.50 0.39 64.39 68.62 65.66 24.13 63.94 0.48 36.49 70.48 97.70 1.61 -84.26 77.05 64.01 91.89 89.17 53.58 91.31 88.21 68.93 75.38 8.92 50.03 14.06 32.28 54.23 9.59 23.09 1.26 48.55 65.89 61.85 22.01 85.29 31.65 13.15 41.28 49.77 55.15 51.70 82.09 92.36 6.27 2.66 35.57 34.15 60.14 6.82 68.36 6.17 5.51 7.92 58.57 91.55 67.54 23.68 0.50 92.55 0.66 20.43 38.18 50.97 54.52 63.95 83.46 15.81 1.32 83.77 15.98 39.00 23.81 73.46 2.06 44.47 9.00 90.34 10.60 72.29 14.69 35.55 50.78 75.79 99.39 26.89 25.71 39.35 15.02 85.04 47.71 37.39 18.75 71.80 57.38 57.64 38.53 67.59 57.67 58.26 12.22 0.80 43.15 7.90 52.04 59.94 60.75 68.68 8.65 59.82 58.60 28.92 50.52 -38.95 51.03 34.40 77.62 13.86 62.21 87.95 13.65 79.82 37.64 81.45 30.73 0.80 77.65 37.21 70.85 82.71 51.50 82.02 32.66 91.89 99.54 18.12 96.31 50.69 15.47 60.89 37.80 0.95 47.25 10.90 90.84 6.19 73.99 41.08 47.72 76.98 68.29 49.11 30.84 94.61 91.34 11.15 85.85 50.10 23.32 12.79 94.24 33.37 24.18 91.15 31.53 84.94 76.13 24.77 52.76 82.67 95.66 51.25 9.03 75.47 36.44 10.74 73.61 86.00 93.37 33.98 41.54 96.91 71.56 69.58 63.80 18.83 86.41 30.53 10.67 13.31 41.32 95.12 87.65 74.89 73.42 33.14 17.92 17.45 46.31 22.20 28.87 6.34 38.60 7.36 93.14 65.91 42.31 27.02 16.28 10.04 58.20 67.20 69.59 -83.23 18.52 9.47 80.79 54.45 15.81 47.45 52.58 87.87 67.13 48.61 59.82 90.69 51.57 98.91 88.70 18.38 79.98 64.62 6.69 57.41 70.84 94.06 85.01 46.14 60.64 82.03 19.24 79.36 35.52 64.41 14.64 1.60 50.23 22.54 87.89 26.56 64.13 33.66 92.92 11.01 82.72 81.90 61.15 77.86 45.37 26.42 36.83 7.75 88.13 61.32 13.05 79.51 59.59 52.51 87.69 52.09 44.95 24.09 31.41 7.62 46.13 14.42 86.19 57.62 84.38 21.93 7.41 75.39 23.37 82.05 22.83 98.56 21.39 38.20 23.47 20.16 52.16 41.14 53.79 95.06 38.47 17.77 67.90 87.74 98.44 10.44 47.85 17.07 69.95 70.57 41.86 89.43 98.07 56.00 79.01 68.36 27.02 2.32 55.75 -25.87 94.06 74.28 9.66 31.58 36.26 54.48 73.71 13.36 5.61 30.85 18.07 89.72 47.24 54.60 95.83 99.86 85.58 96.91 2.95 29.93 63.99 46.98 71.37 91.06 48.51 83.11 74.00 59.33 98.51 69.27 66.95 18.16 22.00 4.89 82.38 57.06 68.46 81.27 34.13 48.55 21.22 28.94 96.18 23.11 40.92 33.69 82.04 20.45 15.26 21.23 51.48 41.92 41.05 10.32 67.21 40.17 65.55 54.90 48.54 32.47 33.97 39.76 98.36 52.47 6.89 56.59 3.37 21.42 82.05 26.54 80.37 58.49 64.01 73.06 52.85 40.74 66.15 44.95 16.91 0.11 22.52 0.69 85.78 14.20 77.01 37.48 98.77 74.89 59.79 64.45 69.82 65.16 17.74 85.20 30.38 91.30 3.13 48.73 82.32 -87.34 86.28 10.99 89.53 18.23 41.52 99.15 37.17 48.73 32.21 82.30 1.80 31.20 96.14 71.61 65.56 21.53 18.85 26.93 45.00 56.78 38.02 81.66 13.49 79.58 85.03 57.17 57.64 65.80 7.39 89.79 81.90 15.15 11.96 93.61 9.47 40.34 74.59 88.56 88.59 12.83 76.64 77.15 34.47 38.33 8.42 94.32 99.59 20.25 50.70 99.52 2.52 57.26 43.74 47.38 81.83 88.50 0.86 81.91 29.86 37.75 47.99 4.76 27.10 47.14 0.34 87.44 79.98 94.83 16.41 21.34 3.06 42.56 87.62 76.38 59.00 71.54 22.10 50.67 29.93 10.32 91.45 97.88 36.56 90.44 0.27 41.26 12.83 18.76 86.02 36.62 97.05 88.72 66.67 5.86 9.70 8.47 30.83 62.08 56.87 -4.53 97.92 58.42 98.89 10.86 43.76 48.17 45.79 58.67 69.62 54.27 89.37 79.87 4.68 7.85 35.23 77.49 48.95 15.25 30.04 19.47 59.24 48.57 51.75 89.30 61.60 33.37 12.85 29.16 77.83 73.89 49.00 35.36 37.09 1.63 70.69 64.74 85.93 78.45 23.62 93.06 43.66 42.32 16.16 83.16 38.98 63.36 67.05 90.04 2.42 69.66 7.32 19.37 66.37 77.26 83.77 2.03 93.15 59.45 48.18 42.00 68.19 23.49 91.28 95.13 73.12 11.20 64.51 42.63 33.92 27.59 98.90 99.46 25.23 93.75 21.16 21.54 79.69 52.19 1.31 21.58 70.20 34.32 7.72 70.83 57.74 68.67 38.42 34.45 82.66 27.33 64.54 77.66 38.40 19.14 48.69 14.86 84.58 22.72 84.61 -48.70 25.87 26.35 37.54 23.70 75.70 12.41 89.07 37.12 71.18 27.15 92.96 88.89 22.95 50.67 82.07 4.93 10.64 66.77 11.02 80.60 13.18 22.56 58.76 43.98 13.52 56.55 67.34 48.24 21.58 79.54 45.33 27.66 16.26 38.90 80.02 27.88 51.43 88.56 16.46 81.30 11.30 78.75 17.49 3.07 56.07 99.57 60.64 12.05 39.04 20.28 90.11 57.76 56.94 8.25 0.20 67.53 82.41 42.37 66.05 72.39 90.64 65.24 87.81 42.61 67.22 35.66 24.89 85.40 96.13 89.08 18.27 44.32 33.82 22.20 10.45 72.21 91.30 9.27 28.76 2.03 24.89 23.22 31.68 31.22 83.74 35.84 19.33 12.34 76.51 4.01 33.14 60.11 0.45 17.16 18.29 16.03 22.67 44.54 77.84 -20.40 93.49 92.25 5.20 96.06 63.95 1.04 69.97 45.22 7.14 17.17 88.84 97.37 96.60 62.02 75.41 34.14 37.48 86.27 53.52 5.93 8.97 50.16 77.01 76.30 68.37 53.53 99.07 73.10 25.28 75.30 13.81 20.73 11.45 84.40 20.88 94.43 62.03 77.14 67.22 50.80 51.07 8.94 17.87 76.37 6.12 95.80 24.37 71.04 65.48 19.11 98.80 2.42 51.89 10.42 66.66 45.33 37.20 2.90 72.82 47.97 68.33 89.53 4.92 13.07 65.05 79.05 36.89 24.56 88.61 23.10 72.94 41.41 23.97 77.33 47.73 16.95 84.76 93.67 73.68 7.87 88.64 86.05 86.14 75.94 4.77 69.92 75.92 63.13 50.72 43.11 65.64 79.84 55.31 51.78 40.31 77.14 18.76 34.18 30.58 -87.29 8.33 33.20 50.43 41.41 70.51 48.32 38.68 34.11 69.00 30.95 91.33 89.78 24.24 75.01 82.50 91.59 86.09 22.15 28.18 99.01 6.99 39.07 98.33 30.21 37.92 22.50 58.14 77.06 17.75 97.27 88.00 83.49 12.39 24.30 0.75 26.21 71.96 20.83 44.17 49.62 52.20 73.25 99.55 77.48 66.99 98.17 85.51 12.99 84.11 19.82 94.87 43.99 2.09 10.28 21.45 90.49 93.94 42.16 23.10 37.08 54.11 53.74 79.44 53.51 37.22 0.91 52.86 94.68 64.11 17.21 9.87 34.70 35.95 34.48 52.02 5.00 87.57 4.90 3.92 41.13 77.54 82.00 86.08 14.71 79.32 84.20 60.55 83.96 88.91 49.70 14.41 43.43 88.07 60.35 66.11 74.46 66.92 23.03 3.40 -71.32 28.03 24.31 53.10 73.06 88.73 70.67 97.70 4.21 46.95 10.82 44.30 53.47 54.88 44.51 29.07 29.48 87.17 42.06 24.94 4.96 29.94 52.85 68.78 45.81 31.05 66.06 26.32 77.80 33.25 19.29 17.49 88.37 29.00 98.25 34.43 53.02 68.29 28.67 65.99 86.36 62.94 46.20 5.41 90.57 78.96 1.27 27.80 3.35 30.84 64.65 94.77 10.43 36.80 24.54 19.69 62.15 55.37 18.51 79.59 6.65 92.92 12.43 93.95 79.44 98.15 87.22 36.99 96.44 1.77 22.86 98.63 56.66 29.45 76.64 62.39 77.96 43.31 51.96 26.37 50.94 6.93 85.14 33.55 9.86 65.41 1.98 50.81 59.37 45.06 19.16 10.04 72.44 6.84 51.53 60.67 29.73 31.57 47.49 8.41 -9.48 57.20 98.35 9.92 57.84 5.42 7.06 52.23 21.31 25.58 46.36 89.79 98.39 21.00 50.40 43.68 34.90 29.57 9.21 51.61 54.52 18.31 61.14 6.16 39.21 27.98 21.97 46.85 50.36 40.75 95.75 58.36 30.72 15.40 27.41 2.54 87.92 97.61 38.14 68.95 33.02 32.01 27.84 69.01 35.93 81.25 32.25 42.95 82.39 62.05 61.72 39.78 59.57 18.52 66.81 28.15 37.40 72.90 47.39 46.02 97.18 27.24 97.56 52.69 66.79 55.05 65.87 10.25 90.19 60.39 84.97 16.02 71.96 74.87 21.19 25.23 73.76 52.36 26.30 68.73 85.60 85.29 64.56 57.55 8.08 1.12 85.45 23.23 75.28 37.22 7.32 24.48 87.39 1.03 58.43 98.50 12.33 30.52 40.31 90.18 -73.47 96.04 39.62 11.25 71.58 96.20 28.02 52.56 52.90 12.58 39.06 82.46 52.18 3.93 97.11 99.35 22.01 86.96 63.88 68.32 96.07 10.06 94.46 4.29 62.60 66.43 96.57 28.32 60.35 42.40 65.80 82.22 10.26 18.60 38.45 73.35 76.13 25.46 83.69 95.55 74.50 7.89 12.45 30.77 39.14 18.96 38.99 60.03 94.37 99.20 68.64 32.00 98.01 30.68 98.34 28.75 55.42 24.65 59.66 31.32 28.74 48.59 89.55 69.98 14.34 83.95 39.05 56.04 58.49 60.75 21.81 81.25 58.15 62.54 95.67 1.79 97.29 38.71 60.21 41.39 60.27 77.32 20.44 34.27 38.65 82.78 97.05 62.98 25.27 2.62 54.95 75.77 77.82 23.45 87.49 1.74 2.25 4.49 21.88 26.46 -12.35 31.07 30.11 71.00 8.49 63.54 45.76 41.36 29.79 82.45 88.57 8.75 51.65 88.24 33.08 85.60 35.94 31.13 27.93 14.39 20.33 93.82 12.66 71.77 75.12 85.38 8.14 73.73 99.64 12.65 69.88 36.39 59.15 42.15 97.59 34.35 99.95 17.32 1.84 73.52 60.68 75.56 7.00 70.33 0.23 98.91 60.55 74.03 7.84 14.40 96.97 13.41 84.23 15.65 86.81 41.84 22.61 7.52 50.46 42.65 49.21 16.85 93.90 26.16 66.67 3.86 80.28 15.19 24.88 24.09 7.67 10.73 50.28 10.71 33.72 50.85 20.04 9.71 18.14 69.79 4.80 46.40 65.95 8.68 40.74 60.80 38.42 21.25 73.18 13.03 75.05 48.03 80.41 47.55 31.59 94.42 77.08 15.25 92.46 70.65 -87.14 3.59 3.77 35.38 58.00 43.40 89.52 82.46 5.42 20.36 95.71 41.98 37.54 17.70 16.74 54.76 38.70 7.78 47.59 15.03 77.37 23.42 67.05 27.10 41.35 59.76 13.51 14.73 14.81 33.60 44.10 23.73 40.34 92.14 95.80 65.50 33.12 15.22 84.78 40.72 46.16 92.76 2.51 24.54 79.48 64.46 74.03 77.68 43.49 63.79 9.11 12.13 69.74 98.25 89.06 98.12 32.65 5.30 35.15 19.02 80.84 42.54 47.98 29.96 68.48 23.57 24.73 29.18 95.65 90.50 9.61 86.89 68.22 13.81 88.25 6.10 94.11 94.60 73.10 92.37 57.36 69.98 14.73 0.36 89.30 59.74 61.41 34.84 70.48 4.15 57.44 37.80 9.63 36.13 95.01 57.93 9.72 29.26 23.06 47.83 -33.58 31.43 65.85 86.98 93.10 79.95 43.01 86.29 10.68 29.43 98.29 48.52 81.46 66.19 66.73 30.32 82.42 7.59 57.10 69.38 3.35 30.85 63.41 18.00 94.45 11.69 96.53 79.73 53.64 90.22 19.37 33.05 98.39 61.31 28.21 58.01 65.15 24.47 91.41 39.77 35.88 98.44 34.32 83.44 70.07 93.82 24.49 86.22 18.00 60.41 57.57 57.00 21.23 41.14 87.08 28.31 37.32 73.41 83.18 83.66 1.18 15.52 29.47 39.15 18.54 84.50 1.30 29.72 5.11 19.61 23.12 93.30 76.47 0.29 0.34 0.50 20.16 79.13 11.18 10.54 26.99 23.56 50.39 64.93 63.10 71.60 86.98 32.78 98.88 22.13 84.37 51.58 43.07 70.14 68.92 5.61 10.61 17.81 63.35 20.41 -64.66 52.71 0.15 75.58 21.58 71.28 48.73 22.10 4.34 0.12 1.56 59.36 21.79 91.93 96.38 37.02 96.02 91.71 15.18 6.21 69.77 58.31 87.97 84.72 77.20 30.18 8.19 49.58 91.05 15.82 99.92 86.99 45.68 91.48 68.74 94.36 86.02 84.23 78.98 8.93 44.52 70.53 20.56 9.59 95.27 57.83 48.43 93.15 49.80 96.10 74.21 87.16 63.58 49.89 21.40 10.26 97.10 74.87 19.01 59.33 18.46 20.60 70.02 62.20 83.41 64.13 23.21 32.16 14.46 85.73 83.65 17.03 29.08 37.15 46.44 29.38 8.32 17.61 62.30 58.41 6.34 71.52 57.80 76.16 49.02 35.64 43.23 83.99 0.25 38.96 33.89 62.59 73.38 76.07 18.79 28.87 73.67 69.34 96.31 4.71 -60.29 8.75 11.98 94.92 86.70 36.74 18.70 14.79 11.52 32.55 47.54 79.86 6.46 90.82 73.63 47.77 30.90 72.50 89.62 12.83 80.84 57.68 23.72 23.43 89.58 76.53 35.09 44.77 0.95 71.54 43.52 42.20 79.25 16.18 56.65 23.41 29.15 86.58 0.92 7.78 64.94 11.36 9.61 91.95 22.65 73.38 84.62 90.27 45.77 54.78 60.36 88.72 80.40 93.54 51.47 94.06 17.81 23.94 24.03 6.36 55.68 50.04 37.60 33.37 73.70 29.48 46.89 5.35 50.23 99.09 43.76 52.09 78.36 94.07 84.45 45.46 46.10 98.29 40.50 12.32 24.14 1.18 59.28 80.07 34.98 68.92 74.22 95.94 80.04 45.40 98.83 90.33 42.90 38.47 89.84 26.11 41.19 84.22 88.29 45.16 -41.33 99.85 58.63 26.35 99.89 71.58 42.61 91.56 27.72 35.26 46.25 86.13 11.90 3.97 25.48 92.78 89.79 49.61 98.49 88.57 69.34 23.94 67.20 59.76 66.75 80.78 87.63 54.90 22.65 12.81 5.83 38.24 13.00 9.40 82.97 93.05 16.09 7.08 39.23 1.80 67.48 79.69 64.84 21.04 3.96 77.54 53.25 15.76 65.02 25.66 30.49 27.25 21.84 15.25 71.57 76.10 15.12 88.20 58.08 80.93 25.55 20.13 88.16 30.92 24.38 13.05 8.04 99.02 0.11 22.71 46.36 22.28 44.63 87.47 81.18 56.72 4.49 72.81 15.77 40.14 6.96 85.78 4.07 86.50 63.97 28.78 26.20 37.85 84.73 96.88 96.69 3.21 22.16 74.95 31.07 44.11 9.59 23.46 7.10 90.17 -91.75 3.50 32.18 68.74 55.76 95.44 41.15 58.65 70.65 22.01 14.12 54.12 44.87 5.97 11.07 4.05 0.19 11.75 87.41 68.74 52.13 24.65 3.19 7.47 92.76 35.69 52.36 97.79 13.13 87.06 6.49 68.11 72.66 62.23 87.46 29.84 22.99 36.70 65.60 8.26 45.79 27.63 94.99 44.86 55.00 25.43 84.47 60.74 52.89 39.55 54.06 54.98 97.29 53.91 12.17 98.02 61.98 59.94 98.39 25.10 83.30 6.46 97.58 27.72 20.93 48.45 45.70 36.69 93.22 97.20 15.34 90.38 32.65 31.27 22.61 3.27 90.21 53.19 95.30 66.60 21.20 93.35 67.24 40.08 43.24 53.45 91.84 60.83 74.22 96.87 84.01 98.34 2.88 44.31 43.77 25.27 26.46 67.47 36.11 79.37 -88.93 77.90 32.51 69.29 97.67 39.33 40.12 41.64 80.89 5.61 40.70 62.30 58.69 92.17 57.67 28.48 77.41 59.07 93.38 96.35 53.45 44.93 66.29 37.56 73.83 7.04 38.32 60.12 24.29 49.16 91.81 0.41 31.76 9.38 62.57 5.64 15.55 76.02 27.16 4.99 73.21 4.64 57.42 6.71 68.74 34.15 67.34 41.43 63.28 50.98 85.41 8.37 39.23 72.25 96.60 15.93 0.57 51.96 57.85 38.50 17.56 2.41 18.79 23.90 30.19 42.75 61.74 68.31 23.21 74.18 70.99 4.72 68.17 13.96 3.65 8.21 28.20 25.70 90.79 41.10 6.26 35.91 91.13 12.88 62.69 87.22 13.60 97.91 85.57 31.99 72.66 68.34 9.26 15.83 76.48 7.95 99.99 30.81 3.88 39.03 -73.81 24.67 90.81 39.47 34.10 21.12 44.48 17.77 64.95 51.16 35.88 10.56 60.42 13.90 54.45 89.78 42.48 39.20 28.09 30.60 13.83 64.16 18.66 11.50 77.58 85.16 68.08 41.09 22.24 61.76 96.44 10.74 25.28 89.98 99.18 73.20 27.33 14.28 87.27 67.02 16.56 23.85 86.53 94.04 3.00 33.99 52.96 16.89 28.20 46.06 91.59 9.86 56.83 61.53 36.32 11.60 93.01 89.54 43.48 30.31 91.54 55.05 72.40 89.84 93.62 82.41 28.89 47.31 50.75 15.56 42.15 86.42 74.48 37.30 85.53 46.52 0.23 90.18 30.65 32.45 93.10 81.77 32.32 47.23 61.64 79.69 48.93 82.50 41.87 22.29 17.83 78.48 22.65 23.76 41.89 53.91 87.77 37.76 64.82 75.07 -6.84 55.56 81.61 69.80 68.25 37.13 60.49 53.77 25.67 81.88 10.21 87.88 70.36 85.82 14.18 11.90 86.16 44.63 79.88 80.04 61.42 2.68 92.33 1.19 35.39 85.91 66.55 63.08 59.03 10.39 69.19 91.46 65.98 11.97 91.68 92.44 56.78 2.49 64.81 47.26 16.43 85.32 82.26 20.65 21.89 0.04 15.15 64.12 31.99 53.08 26.15 27.80 16.41 83.94 97.76 34.04 42.93 53.61 4.20 78.81 37.08 71.20 18.36 9.77 29.82 92.29 67.50 10.93 48.71 37.77 58.79 85.86 70.70 85.83 77.57 80.36 42.93 61.74 83.90 53.74 83.67 66.52 88.57 17.13 35.21 67.57 66.74 20.91 67.20 5.60 7.66 57.14 82.58 7.00 82.17 83.58 83.53 13.01 98.04 77.24 -6.71 79.13 15.15 7.12 76.35 57.84 99.21 38.28 56.02 51.15 88.17 33.54 88.64 26.44 68.36 79.44 62.20 36.03 49.46 0.84 69.16 71.34 70.64 55.06 65.72 44.19 79.26 28.66 37.58 46.51 13.16 58.85 72.82 47.33 14.57 65.85 37.30 55.25 82.14 99.83 72.35 97.00 91.04 73.05 85.75 89.29 3.43 82.36 76.72 84.82 3.56 50.48 29.52 91.25 27.05 79.54 1.51 44.44 82.56 1.36 7.37 53.11 34.21 62.34 55.18 92.78 92.97 78.04 78.29 71.52 67.86 40.93 79.34 21.19 97.61 72.40 56.58 64.02 98.49 52.51 48.43 72.28 34.80 46.41 75.03 15.06 27.49 3.01 13.28 94.51 1.04 62.78 11.31 20.25 26.42 21.63 61.85 33.44 24.18 27.21 -87.18 25.39 3.28 50.65 60.86 89.42 3.12 23.29 76.43 75.51 46.55 37.59 24.63 31.51 58.99 9.37 39.74 4.62 41.46 46.89 1.49 67.53 64.52 62.38 69.72 79.67 68.86 76.45 46.22 74.48 39.23 78.30 55.53 82.86 51.90 28.43 47.22 65.17 32.73 49.26 63.03 38.62 85.41 65.09 52.32 81.17 38.46 76.15 1.06 16.38 61.06 99.44 69.19 95.31 52.36 57.09 86.41 36.47 73.87 29.04 16.13 34.08 87.79 98.47 70.43 77.24 75.78 38.56 69.18 4.76 62.95 18.16 22.71 59.01 32.29 46.08 58.25 16.53 32.33 45.82 6.28 20.09 19.01 16.51 83.62 99.71 97.79 18.34 99.38 7.06 16.97 61.27 33.42 68.20 68.88 11.62 0.27 76.53 30.05 62.40 -66.17 45.92 41.23 76.55 12.04 49.50 57.73 12.00 39.87 97.08 16.82 35.67 28.97 50.82 94.64 82.34 96.22 95.69 95.21 40.76 99.68 87.77 23.04 80.40 9.03 55.36 29.97 99.06 45.93 23.20 6.06 47.40 87.38 86.04 48.36 55.61 5.86 16.99 11.04 81.70 62.64 0.35 13.08 94.74 56.11 66.20 30.59 57.46 64.82 12.87 69.92 71.87 45.56 55.39 62.98 23.58 39.44 66.41 42.51 51.66 24.87 35.89 75.74 48.60 15.36 63.37 67.61 91.15 23.18 70.47 14.59 86.74 89.41 32.46 91.28 50.68 56.39 74.01 46.39 91.74 50.17 77.44 60.88 78.28 63.82 64.36 19.80 0.83 15.45 29.73 64.11 80.99 28.94 67.56 9.43 60.47 55.78 43.47 14.68 82.12 -4.94 11.94 8.73 92.08 42.78 5.12 54.89 93.52 71.98 76.98 24.94 39.32 22.29 32.49 35.15 94.88 8.85 30.29 82.17 2.56 10.30 0.21 22.88 31.02 37.78 97.28 44.56 12.94 57.15 7.04 95.84 12.41 76.77 94.69 28.41 45.56 1.93 67.86 74.33 82.88 11.38 61.38 92.13 48.02 17.53 5.30 41.78 32.07 32.70 34.53 6.62 27.49 46.75 12.42 25.19 2.34 1.45 25.38 96.11 15.72 95.10 95.29 72.71 88.98 32.32 38.33 12.05 14.77 24.38 94.58 12.19 54.23 41.72 43.98 75.73 39.56 14.21 39.30 78.25 83.86 64.24 35.44 7.86 42.73 87.06 77.73 80.52 68.94 85.59 0.39 24.53 91.62 20.66 65.53 65.61 24.50 65.66 21.79 5.99 77.34 -19.04 7.84 33.95 72.96 21.40 79.12 41.86 30.01 6.12 86.92 63.58 58.23 22.80 69.28 46.72 45.70 19.18 64.75 18.31 55.58 79.78 46.51 60.05 35.84 59.83 80.17 7.87 24.29 52.81 52.36 3.56 72.67 14.41 68.63 71.65 16.86 13.11 48.12 72.41 43.76 99.73 66.83 88.15 35.53 77.59 83.81 40.80 19.66 21.86 61.49 87.83 73.64 84.79 9.02 85.50 1.70 54.49 88.49 22.53 88.59 0.26 51.51 93.33 48.45 37.60 31.16 79.66 91.37 98.87 0.03 23.54 35.06 48.20 49.18 41.82 95.20 37.92 45.44 75.28 31.86 77.99 22.94 97.61 88.39 35.66 92.19 88.61 59.23 46.81 66.35 62.62 40.27 78.09 80.54 46.02 97.33 52.69 13.08 3.75 44.79 -52.26 5.10 98.31 0.21 64.27 4.24 19.96 80.85 44.90 30.62 54.27 18.98 89.63 73.28 24.01 46.62 8.73 81.11 14.95 86.59 14.73 97.36 27.42 21.78 47.77 21.37 28.71 70.66 3.37 98.80 81.55 36.43 24.45 45.14 15.80 31.66 55.72 67.30 88.35 87.06 55.03 77.85 67.42 31.18 81.72 76.86 9.42 80.80 55.81 8.73 13.68 99.18 32.61 88.73 26.31 23.85 66.19 8.01 70.14 13.00 57.48 35.79 21.72 48.87 96.96 84.38 59.83 53.98 40.08 8.48 62.80 94.71 87.24 74.60 86.79 46.40 66.77 98.87 71.49 84.91 96.58 31.22 64.40 51.65 98.53 62.73 13.72 32.60 36.74 63.44 9.66 54.04 19.09 96.60 31.80 40.15 98.19 96.65 9.05 32.72 -32.95 50.43 29.59 32.25 26.73 54.59 13.65 33.43 33.19 13.92 58.27 78.93 40.84 91.65 67.24 61.80 22.52 84.84 34.86 71.49 49.63 36.27 42.31 39.67 91.64 26.11 30.82 87.65 95.98 77.57 31.35 66.05 92.98 15.06 72.29 48.97 7.81 29.41 58.04 7.83 77.14 90.06 14.45 83.22 83.62 80.63 90.52 92.43 48.32 55.50 32.29 24.30 86.09 91.80 11.09 30.42 29.59 40.65 97.25 58.30 98.53 69.30 48.57 34.42 18.82 89.60 1.07 40.66 95.44 82.24 31.47 1.34 7.25 36.84 32.66 64.87 90.11 1.80 7.12 42.46 1.57 64.26 37.03 2.32 82.24 82.80 6.95 20.08 0.41 93.68 1.22 60.64 95.57 14.07 30.91 80.90 28.22 89.37 68.38 30.77 -63.73 89.86 37.26 62.39 10.15 60.99 34.26 41.75 18.84 50.12 51.67 83.60 54.77 48.11 45.50 77.73 57.32 9.51 80.12 10.68 39.05 82.81 17.01 10.34 86.73 17.02 27.80 13.49 39.76 85.71 41.75 24.17 86.42 90.86 19.42 74.58 18.97 89.44 50.09 65.91 30.26 14.88 24.56 42.50 53.75 27.87 69.32 87.96 56.42 4.09 65.69 25.85 98.62 3.77 26.77 54.68 91.85 28.20 87.69 51.20 63.64 9.00 58.15 54.48 2.51 82.93 41.37 79.84 9.13 45.93 89.02 29.44 26.15 92.33 80.59 95.74 83.03 19.59 29.45 66.71 88.55 61.75 74.47 62.08 0.69 26.99 11.54 76.25 98.55 91.95 29.08 12.22 56.58 1.42 86.71 16.68 32.07 21.56 82.97 54.88 -82.96 59.39 45.34 23.00 2.42 78.78 66.51 62.07 17.08 28.09 95.46 16.22 74.52 33.69 89.94 51.83 74.19 82.06 96.00 90.64 5.95 52.20 17.80 43.78 98.68 73.56 42.37 64.50 58.81 20.62 19.55 13.72 5.85 81.27 33.83 50.22 21.83 47.52 23.97 78.40 26.58 38.25 34.07 52.11 86.42 48.67 25.26 73.06 83.94 90.31 85.65 86.53 43.29 66.12 80.69 89.65 55.98 75.32 28.93 10.41 58.00 3.61 62.15 90.86 77.96 92.14 95.59 97.82 91.56 42.73 38.28 53.70 48.38 54.48 20.52 45.10 78.90 23.29 37.84 5.16 41.40 75.12 74.80 24.50 81.48 53.75 13.06 74.76 71.67 66.80 63.30 31.30 93.69 0.31 53.15 21.40 0.26 67.73 6.18 77.88 -43.98 62.71 36.90 97.50 20.26 24.03 36.51 69.14 32.86 25.54 74.20 6.59 1.51 25.28 76.17 60.00 36.23 34.64 99.78 13.82 90.57 11.09 37.35 95.33 43.00 52.01 81.75 68.98 63.20 21.04 99.05 93.12 69.82 5.61 74.86 43.55 48.05 68.25 69.87 15.76 6.39 81.57 81.57 37.63 30.46 57.51 55.85 62.80 6.14 64.67 56.21 33.25 25.88 54.46 72.60 29.57 93.69 86.97 20.68 4.72 14.64 49.65 24.38 40.27 52.68 11.67 83.43 99.23 30.59 63.51 61.49 48.72 46.67 94.28 81.90 66.66 33.31 39.20 15.30 43.19 32.46 79.16 64.25 14.41 55.33 50.45 35.38 59.11 73.35 28.23 13.99 28.05 78.73 29.20 6.98 31.71 76.83 94.15 17.81 17.85 -14.48 65.74 44.07 98.65 42.14 76.69 49.31 51.38 42.91 43.46 52.70 31.31 76.69 2.26 86.22 7.18 96.84 1.53 27.70 17.86 31.54 50.80 25.74 14.90 29.54 41.40 6.30 43.60 65.32 92.02 28.48 75.13 20.94 84.46 4.59 44.47 8.34 94.92 72.98 91.14 22.29 87.09 45.23 50.33 23.96 90.40 16.42 56.19 56.37 78.60 78.70 67.98 64.64 88.97 18.65 22.82 24.67 72.18 95.81 83.19 72.91 37.61 11.47 90.56 83.60 12.69 38.54 75.80 45.14 53.71 82.37 90.79 51.38 42.09 11.60 25.50 99.45 13.26 11.79 1.29 78.65 5.16 25.40 88.95 93.14 96.56 75.74 89.85 27.01 70.02 42.98 1.97 56.66 31.94 63.96 73.78 29.53 7.32 80.91 18.07 -81.42 32.96 58.72 96.55 92.86 62.56 13.99 89.42 20.93 65.13 72.46 31.04 1.01 38.73 58.26 23.25 92.06 97.96 79.15 35.29 56.34 73.04 78.01 23.09 69.51 91.18 86.96 3.17 90.06 84.50 56.05 13.58 72.72 27.55 17.81 50.50 12.08 8.98 67.91 49.53 60.51 54.80 12.43 8.16 72.10 57.28 18.48 25.51 16.39 97.11 97.72 5.95 44.76 84.00 94.43 38.56 62.86 59.66 80.63 46.13 8.20 37.72 40.15 32.78 67.66 52.30 1.77 99.68 40.72 67.14 67.15 67.47 4.35 22.81 38.95 90.30 10.33 40.88 75.15 19.72 1.69 54.07 94.33 80.95 64.44 11.61 82.07 49.84 28.65 30.39 85.46 55.15 1.87 87.86 14.03 54.07 77.61 6.12 89.79 29.24 -94.59 18.58 94.18 2.43 93.84 86.93 38.15 87.82 23.77 59.09 60.59 86.01 10.17 18.63 24.36 58.69 52.35 59.68 32.77 81.70 54.33 82.22 8.77 6.27 37.04 77.16 58.69 5.35 92.16 96.97 94.07 72.83 45.33 29.00 53.31 51.70 88.14 8.78 91.78 73.92 58.11 99.74 34.38 56.91 74.64 99.86 53.92 66.01 75.00 17.66 6.21 80.03 47.73 38.91 28.54 48.67 41.52 58.84 54.52 84.13 25.22 22.23 83.19 18.17 57.00 60.01 39.46 21.14 81.89 50.76 6.52 79.27 36.42 4.15 58.97 74.02 44.86 45.90 86.98 10.89 99.53 0.92 89.74 50.55 20.32 76.10 15.56 66.84 90.23 4.23 56.04 85.99 99.46 25.41 1.49 52.51 28.36 5.76 74.79 32.46 -64.60 20.37 68.47 44.99 61.56 28.63 78.79 72.51 92.52 92.51 12.95 89.49 24.15 60.78 66.89 1.75 85.75 61.30 18.15 52.75 54.45 20.96 39.12 34.08 54.62 89.53 65.47 88.95 30.21 57.94 93.31 64.15 36.85 3.83 72.55 84.27 33.36 13.85 71.06 50.57 15.49 18.11 74.29 59.95 83.33 8.78 63.69 9.88 38.86 86.15 42.11 78.55 28.73 67.97 59.43 33.18 54.52 98.54 30.29 32.30 34.83 73.96 11.34 70.55 46.22 99.43 18.39 26.16 8.88 41.42 53.34 28.60 88.15 81.31 21.58 67.30 46.68 22.36 58.46 38.54 76.68 65.44 51.02 15.92 55.71 3.38 16.71 82.79 93.51 51.11 93.86 98.87 41.62 40.46 80.34 25.81 69.50 21.98 57.79 32.71 -1.82 95.25 84.37 32.34 94.22 16.22 50.57 73.94 17.00 39.25 85.23 37.80 3.49 79.80 17.70 25.12 79.74 60.11 11.68 80.89 85.42 86.03 44.76 87.30 49.52 86.31 49.17 92.07 69.08 90.06 20.20 87.18 34.68 61.55 77.91 8.69 17.85 31.34 97.19 13.10 52.15 16.66 37.13 77.44 34.21 11.19 63.12 57.65 91.69 14.22 24.97 64.76 25.56 78.77 30.79 40.02 59.29 24.23 13.40 45.60 12.33 31.22 68.41 84.60 51.29 66.24 25.50 21.25 59.21 72.63 8.94 19.64 21.79 22.32 81.35 72.41 49.34 57.86 30.31 7.04 82.17 59.50 84.20 75.37 69.49 88.34 22.15 31.32 75.02 49.95 90.70 47.91 72.45 58.98 3.56 83.45 6.73 50.09 13.64 55.71 -64.62 26.19 80.94 31.04 46.20 0.35 6.90 68.56 22.03 41.53 80.38 92.58 25.24 36.94 81.84 50.69 78.05 78.65 78.08 85.81 78.71 77.16 43.95 45.78 24.79 84.40 74.26 22.21 67.01 21.37 99.37 27.17 46.33 24.09 30.69 41.49 26.53 57.09 90.61 49.40 57.58 58.63 41.25 2.11 68.12 27.15 65.02 71.39 4.14 77.40 54.62 78.57 77.61 93.39 61.52 17.58 84.38 8.20 65.70 31.53 4.57 61.34 39.62 34.94 30.20 37.49 71.39 35.72 12.21 41.43 31.73 13.85 72.26 19.73 13.60 14.00 43.83 19.98 59.20 22.80 8.10 37.38 32.33 36.92 33.32 36.31 55.47 74.19 15.97 70.93 89.90 21.35 74.25 28.10 10.25 32.00 95.67 74.05 74.77 89.99 -35.56 72.77 5.90 63.30 95.65 43.61 93.53 84.80 47.25 88.56 15.60 44.76 9.49 64.86 97.04 59.00 36.84 44.58 40.58 54.06 50.94 15.24 63.10 65.68 54.23 68.59 72.45 59.27 92.54 26.81 74.88 61.36 19.40 89.39 92.63 89.63 23.60 1.33 88.25 72.65 39.97 54.08 94.86 7.01 60.41 98.99 14.30 94.72 22.96 73.10 96.92 49.20 64.10 48.85 39.76 25.25 78.60 61.09 41.28 69.12 31.80 16.75 17.42 42.59 35.46 92.76 19.06 29.70 72.83 92.02 24.84 68.83 70.90 31.07 57.98 69.28 32.64 89.81 76.76 93.45 85.59 59.39 32.89 77.43 73.32 8.85 67.81 75.29 47.00 23.22 45.43 54.59 1.57 92.51 93.47 26.20 52.61 80.74 9.24 43.32 -84.71 71.16 64.88 28.77 17.29 83.59 31.63 11.08 83.85 89.38 70.87 21.41 37.17 73.02 80.98 55.12 82.33 16.02 66.35 84.50 35.65 74.65 42.08 51.44 86.89 21.78 10.37 79.21 56.40 29.41 3.97 48.20 25.91 22.86 50.48 24.66 78.32 20.20 88.35 71.39 62.23 96.84 97.07 26.67 77.53 7.44 35.74 56.26 81.16 33.95 83.48 67.10 66.88 71.39 5.58 24.55 93.94 1.39 66.48 54.46 18.72 70.49 81.62 59.91 22.11 48.63 11.12 15.60 15.78 20.39 86.71 33.50 85.99 85.19 35.24 84.06 58.11 23.78 41.69 25.92 29.77 43.97 23.18 74.86 97.71 96.36 42.98 96.52 21.77 73.13 22.61 40.59 58.49 10.71 75.05 85.33 84.25 20.81 75.27 46.68 -57.06 53.34 30.85 75.67 7.03 99.32 29.23 99.51 7.34 46.30 11.17 80.50 77.06 48.41 38.86 50.00 66.88 18.04 9.94 61.81 99.21 78.34 58.46 4.06 14.85 12.76 97.02 0.75 55.29 58.15 28.53 75.85 54.79 92.09 49.79 23.88 57.57 40.49 4.81 15.93 40.05 92.94 40.29 95.45 91.38 78.16 62.26 90.65 69.15 42.07 6.43 76.99 49.27 16.28 92.53 90.91 39.37 44.85 46.70 10.42 4.56 51.39 96.79 5.87 70.35 64.22 59.66 93.85 38.72 5.19 88.40 38.30 95.43 91.28 3.14 57.24 10.05 85.08 69.48 35.14 76.10 79.73 28.99 15.39 70.61 36.43 26.78 42.76 17.80 70.79 20.13 21.07 6.59 24.75 8.68 40.35 67.37 75.40 31.00 6.51 -99.05 23.71 77.97 76.19 5.07 22.25 63.60 3.23 87.97 54.24 0.26 55.34 44.49 72.35 38.75 52.04 86.81 0.36 86.30 96.05 58.95 67.82 90.38 40.23 71.37 66.52 86.95 15.19 0.20 92.34 3.74 43.68 68.32 66.94 19.17 44.23 39.13 17.14 80.42 66.08 71.89 29.42 37.80 37.38 67.72 14.24 29.87 7.46 78.18 57.62 33.31 1.74 29.14 84.55 74.55 46.62 97.86 98.57 89.39 86.34 5.27 71.29 84.37 25.31 37.13 14.93 90.07 54.61 78.31 11.49 4.82 99.50 59.42 34.92 28.95 69.86 17.30 71.52 40.55 44.20 73.25 28.91 12.71 0.72 21.36 59.69 8.90 65.20 84.10 56.46 12.75 84.30 24.59 71.50 24.82 15.92 76.95 13.40 89.78 22.83 -37.36 40.91 41.50 88.20 48.05 35.57 62.77 18.15 88.15 78.73 47.36 8.84 44.14 77.75 45.12 65.86 0.12 23.49 27.50 12.96 85.93 89.88 58.61 47.84 91.03 26.04 89.80 92.56 6.52 19.98 29.24 81.91 28.74 15.85 23.36 4.42 24.15 46.67 3.74 67.85 53.43 98.15 33.81 82.29 3.23 38.56 85.38 89.83 95.54 17.58 95.41 98.46 45.16 97.77 90.21 37.23 50.82 58.68 41.40 66.99 46.18 57.75 27.92 55.01 69.82 24.32 84.73 67.81 41.22 14.21 1.20 92.69 4.59 93.81 3.77 59.47 73.13 86.53 21.34 79.81 7.00 53.19 11.73 52.75 66.79 31.74 36.92 60.60 24.18 99.26 75.44 92.88 30.39 39.08 97.78 53.03 75.75 73.77 93.36 81.54 -73.30 81.28 86.13 73.47 41.03 32.90 43.55 96.16 31.92 51.15 81.37 74.30 10.58 14.58 93.18 89.87 82.36 55.21 42.01 12.51 91.84 15.14 67.47 70.70 71.49 23.23 77.95 13.51 46.75 82.74 92.64 29.15 40.78 5.06 70.33 54.89 27.41 51.39 6.72 15.95 41.53 59.16 37.77 32.58 25.16 94.84 89.00 11.59 17.37 0.00 28.81 10.19 70.04 84.63 73.27 67.84 33.41 5.99 17.15 54.45 67.85 31.18 94.31 10.25 45.78 61.98 51.45 23.04 72.37 4.45 45.56 37.66 62.84 61.60 43.51 98.93 33.99 24.93 55.66 84.55 38.58 39.49 28.81 76.61 11.16 80.37 16.96 69.39 10.00 13.15 45.95 84.56 12.51 29.31 26.33 63.85 47.99 53.38 66.80 59.78 -98.27 38.19 65.66 83.79 81.67 39.68 87.00 4.17 96.42 37.90 56.14 22.20 10.95 10.86 30.18 44.26 84.52 73.53 71.07 60.95 42.54 8.08 62.77 23.78 89.71 28.62 69.17 68.31 98.80 21.58 57.44 96.53 1.75 66.21 1.35 96.64 65.31 88.48 29.73 38.75 51.07 36.93 53.61 26.32 60.44 69.62 92.89 33.16 58.85 98.41 19.44 10.34 56.96 79.22 24.94 39.84 13.95 20.41 75.15 95.30 15.82 24.80 68.89 11.34 23.93 13.94 46.50 27.66 30.44 32.70 85.26 1.68 39.23 19.82 6.50 76.04 5.95 49.52 6.93 13.70 90.93 57.91 42.67 14.33 27.84 96.53 30.09 34.44 14.76 10.83 60.87 34.24 31.45 78.54 82.75 20.18 52.92 89.78 90.54 18.12 -21.89 83.11 19.95 23.66 8.04 1.91 79.74 26.84 65.74 45.36 48.91 58.73 26.71 97.88 32.70 7.26 6.88 48.06 85.17 40.57 55.12 32.65 1.01 71.92 49.63 53.75 92.74 73.97 65.11 46.40 29.09 67.97 41.21 78.67 22.33 52.72 9.76 2.45 59.08 53.98 78.74 58.26 39.39 70.93 50.53 69.78 55.01 98.22 50.86 28.20 49.62 59.57 83.16 83.32 46.68 51.88 74.27 97.77 74.41 47.13 92.60 89.92 0.64 11.86 64.45 76.33 87.24 66.39 16.81 29.80 24.11 16.75 97.44 91.12 89.07 27.83 8.04 44.64 90.61 79.25 90.17 55.74 25.97 55.82 52.67 9.58 67.40 89.30 40.23 49.45 59.48 92.80 27.51 74.72 49.88 24.67 59.73 22.34 40.44 1.98 -98.05 39.27 11.28 50.90 10.76 1.84 15.03 58.53 73.53 65.01 70.42 93.12 27.27 72.02 20.89 45.38 0.61 41.25 39.66 63.74 19.75 70.91 21.65 18.96 36.15 98.29 18.38 10.33 50.81 7.73 99.98 16.36 38.20 98.32 85.67 93.48 57.30 48.21 7.29 93.60 54.49 53.02 9.48 90.28 11.81 60.68 25.91 63.50 27.92 1.52 31.47 6.65 90.02 84.48 86.75 3.24 21.51 6.72 84.23 52.14 80.01 81.12 45.41 5.88 32.95 36.24 44.06 29.97 72.87 74.39 13.93 43.61 89.75 94.77 0.17 28.07 85.78 0.44 7.27 45.07 78.55 34.53 45.29 3.91 53.82 80.39 2.00 55.87 52.91 58.93 49.20 87.74 10.90 97.32 9.66 14.21 14.41 55.05 16.20 50.10 -93.16 65.08 98.48 6.00 47.13 38.02 96.56 50.36 7.80 24.27 2.56 72.12 38.60 11.08 44.35 3.51 16.12 70.87 23.40 46.02 60.97 42.34 29.77 32.05 41.92 74.20 90.47 36.54 52.71 61.61 37.56 85.87 17.14 41.86 91.51 33.47 2.19 64.69 66.18 55.94 85.29 32.60 18.50 11.98 94.54 9.40 91.19 94.13 18.90 55.57 78.72 98.68 36.98 55.82 44.85 27.45 51.95 48.78 3.16 77.33 50.74 49.42 59.24 32.85 36.31 76.51 31.41 45.56 77.27 80.82 56.16 58.69 90.35 37.99 60.77 69.56 34.85 48.34 85.71 71.43 74.97 18.99 97.73 62.94 91.44 42.75 52.69 51.85 91.34 52.32 33.01 64.30 59.00 10.89 3.14 61.39 55.58 55.40 24.49 95.46 -44.09 1.55 7.67 92.67 78.45 75.31 64.99 98.23 92.79 76.17 37.15 53.96 44.19 30.32 57.01 94.60 71.43 88.54 73.68 62.39 3.39 29.71 69.88 51.26 66.21 10.36 0.90 87.75 95.90 33.99 33.78 6.56 89.58 86.71 11.93 58.13 79.18 65.98 5.32 61.92 36.97 38.08 89.63 49.27 10.32 30.99 83.28 4.41 85.44 65.73 76.74 5.92 25.68 61.93 16.60 1.02 2.19 23.54 30.98 66.56 88.57 19.95 81.24 20.58 34.47 10.24 13.93 86.03 18.48 11.09 3.55 82.66 73.89 3.98 85.17 69.63 9.67 90.80 99.21 24.88 75.44 71.38 45.33 60.85 93.99 56.60 66.95 26.01 34.62 7.12 96.24 46.02 73.92 77.94 50.61 39.74 11.39 25.85 9.17 75.04 -0.09 49.57 20.55 67.87 61.24 9.39 73.46 70.49 94.57 46.75 89.24 52.35 4.81 91.70 4.29 12.21 6.27 66.85 55.95 20.50 18.04 87.26 31.07 50.87 21.24 33.02 6.73 65.70 51.10 64.84 9.17 77.68 91.57 62.13 55.87 38.07 85.85 78.98 43.49 30.27 52.94 33.54 26.74 82.73 71.18 85.10 90.49 37.69 0.40 61.56 87.62 24.62 53.94 22.14 20.02 55.58 20.62 69.87 31.99 22.10 47.08 24.24 77.37 89.27 88.06 21.55 61.79 65.30 50.41 90.52 42.35 71.24 12.09 57.18 55.53 78.47 78.39 97.10 85.82 28.96 89.14 87.76 6.61 43.24 16.12 54.93 33.28 93.09 66.07 6.95 32.74 10.08 63.90 42.45 34.90 81.89 78.33 13.83 66.78 29.58 -66.46 15.19 57.27 61.68 5.53 63.56 13.65 38.91 60.86 36.05 13.96 71.80 1.78 41.30 39.38 88.56 0.09 82.49 90.29 66.71 48.22 8.51 81.91 14.22 17.83 72.70 75.42 42.19 91.10 61.52 16.20 47.81 36.04 34.97 48.94 92.64 95.99 69.01 38.62 19.66 89.93 63.00 27.10 34.24 95.42 76.97 90.42 91.97 15.88 11.30 49.51 81.68 53.89 46.46 22.17 91.89 27.00 98.74 47.83 97.06 98.63 89.39 24.54 76.18 59.31 25.99 59.72 64.30 10.63 32.97 76.86 61.14 24.03 75.95 39.40 21.65 59.63 92.37 24.74 69.43 13.58 73.71 20.61 12.15 26.00 59.66 69.96 29.04 92.75 79.69 98.69 33.16 26.10 13.00 79.18 44.77 51.91 12.57 3.24 47.33 -40.37 96.87 92.00 32.09 82.34 12.83 23.90 80.96 51.76 90.44 8.23 80.42 80.42 74.13 70.74 77.98 80.92 40.30 48.34 9.41 2.49 47.21 17.26 72.30 59.90 0.21 53.95 32.30 18.04 17.00 93.95 0.89 65.33 72.99 1.15 71.66 49.06 88.51 51.92 77.20 61.23 22.49 67.47 25.98 59.92 3.49 4.13 60.51 23.06 2.46 74.99 91.53 86.64 31.63 61.83 61.46 84.49 38.54 58.59 38.60 99.21 39.88 64.06 58.18 1.45 29.66 35.84 33.70 59.13 64.29 9.27 76.85 22.06 91.17 46.51 6.19 66.55 71.35 58.62 68.17 94.28 74.94 69.89 96.89 41.35 11.28 61.84 35.97 54.21 72.17 51.99 7.05 38.74 29.45 79.22 41.90 30.46 67.67 55.44 13.98 -82.01 36.61 10.37 59.61 60.58 57.37 73.60 97.48 66.44 92.50 57.94 95.48 85.49 24.71 64.76 15.78 44.12 57.31 77.44 35.42 9.85 83.29 99.16 72.51 46.18 70.28 16.34 51.40 4.72 85.35 3.97 15.31 2.74 92.71 7.19 29.70 66.55 44.06 93.14 67.65 2.98 50.06 25.79 79.96 65.32 65.16 12.05 35.05 79.51 7.73 40.60 20.06 94.46 83.80 17.11 56.52 87.68 0.93 19.10 97.86 82.15 44.23 50.40 94.76 9.13 38.29 47.12 18.38 16.58 73.18 10.32 30.35 95.72 10.95 17.40 32.34 14.92 31.61 56.43 88.82 43.49 92.78 49.12 87.78 66.48 6.57 42.56 34.63 32.71 3.63 4.52 72.80 19.22 91.58 51.68 60.02 96.93 81.85 19.62 90.83 -88.98 78.07 52.24 12.22 35.44 54.30 22.67 52.21 70.62 91.20 70.27 23.58 41.64 38.34 87.28 34.95 94.70 94.96 14.06 62.82 31.26 92.64 79.17 52.58 3.43 46.65 18.42 40.60 36.26 18.26 43.75 64.13 13.45 44.05 37.35 15.03 3.99 87.85 27.22 21.76 58.79 64.28 74.87 23.74 64.20 41.85 23.42 81.09 87.77 45.99 92.52 79.33 60.14 15.69 96.47 25.06 59.05 49.72 9.72 40.15 92.59 46.39 49.28 61.81 82.11 44.53 29.53 12.87 92.95 4.12 33.10 11.01 24.22 1.48 13.15 34.67 51.66 34.73 13.87 12.36 45.38 9.68 40.49 69.61 71.77 88.32 49.23 42.87 66.27 65.55 95.66 4.95 46.29 47.46 41.89 45.21 67.75 20.94 8.12 50.51 -7.82 61.43 54.89 69.03 95.80 10.20 92.17 77.31 4.55 3.32 53.10 2.22 66.06 91.59 40.23 82.31 75.63 49.33 39.23 35.98 11.74 36.37 14.62 10.45 66.45 78.19 40.13 96.48 68.30 34.14 20.26 0.17 12.90 61.34 0.03 95.73 70.39 61.06 0.08 18.60 45.27 31.67 45.21 96.22 15.70 42.53 64.54 61.28 56.38 22.99 39.15 13.63 93.86 17.56 88.80 5.93 66.16 58.87 74.61 73.63 50.19 66.45 64.14 68.15 93.17 14.80 91.01 53.05 49.55 88.93 22.64 57.85 85.68 70.02 23.72 33.45 31.60 18.53 48.70 60.82 26.45 58.82 53.15 72.30 86.28 74.44 94.40 38.49 5.97 98.93 45.93 36.06 81.90 85.33 28.42 41.22 55.26 39.74 89.44 61.62 -56.84 49.22 88.77 4.11 90.47 36.52 22.18 67.15 37.68 99.67 92.06 91.46 99.94 37.72 66.49 30.02 93.12 40.14 53.97 34.97 76.29 3.36 74.09 23.51 74.57 50.69 74.56 1.66 93.07 10.67 88.20 45.64 66.70 79.69 29.57 6.51 53.29 99.10 61.76 96.54 14.63 36.68 2.77 25.58 68.99 82.32 79.81 49.38 28.48 41.09 5.41 10.41 84.73 46.71 94.74 3.06 30.47 81.61 7.08 48.82 24.05 66.42 22.87 89.43 91.24 62.48 27.12 64.58 87.45 80.01 2.80 20.73 95.98 48.49 53.72 3.07 81.04 54.36 88.05 19.13 27.75 31.34 46.81 10.47 40.34 26.87 4.65 37.49 57.90 53.67 72.92 87.97 79.78 61.24 47.64 80.71 28.92 92.97 75.46 73.97 -38.11 0.29 15.13 95.01 93.91 31.55 96.80 9.93 7.31 68.29 43.04 66.82 68.84 71.62 2.45 69.00 62.89 76.81 69.23 98.39 58.50 48.94 32.16 68.13 33.50 56.10 15.35 96.21 42.77 90.05 90.80 63.22 7.09 46.12 82.17 35.56 35.32 93.69 55.03 70.23 85.38 55.27 32.28 36.62 40.63 90.72 67.60 2.25 32.23 56.57 29.92 49.33 82.81 19.01 97.68 33.81 87.95 41.16 18.73 64.43 27.35 98.47 42.03 29.38 48.34 14.34 27.91 16.77 47.77 22.98 23.09 46.39 9.12 92.85 33.35 78.57 12.07 57.78 42.25 85.28 49.05 94.64 99.50 33.92 65.76 50.52 90.81 1.55 60.53 17.25 64.49 4.31 13.01 54.13 42.55 54.40 54.91 24.24 41.50 97.94 -22.77 35.41 70.42 48.79 34.95 72.95 45.29 42.68 39.54 9.57 85.06 40.09 27.17 73.35 89.90 36.58 85.40 66.71 71.75 39.46 32.69 96.14 33.08 16.32 51.58 52.93 90.55 66.24 93.33 32.92 99.24 26.75 41.12 79.22 19.18 60.28 66.26 62.25 21.38 85.73 57.54 49.19 63.87 26.45 40.94 62.91 61.51 25.60 15.00 24.77 60.55 60.54 80.28 80.63 41.58 88.53 77.13 19.84 25.31 95.40 30.68 97.02 29.63 81.07 3.44 44.08 1.00 83.98 53.12 26.22 48.94 94.68 6.88 19.49 47.05 39.92 36.96 5.71 38.67 65.02 71.06 13.30 76.68 68.57 94.51 19.78 14.41 41.45 93.97 70.05 22.93 99.74 54.16 24.34 56.37 54.95 2.73 39.20 13.02 40.45 -85.24 47.32 9.00 54.71 67.03 28.91 47.79 49.63 40.68 50.04 39.59 86.45 22.63 90.92 6.19 31.65 77.87 89.20 91.29 77.10 72.59 63.64 16.56 4.56 91.46 63.16 64.45 72.38 62.95 12.86 57.04 79.20 43.32 97.98 16.88 34.53 66.37 79.36 85.57 15.16 47.62 95.80 64.27 38.04 54.15 10.97 71.70 72.37 74.84 58.51 33.48 13.74 18.11 64.56 2.47 19.94 47.81 40.97 98.06 47.52 14.86 55.56 92.77 90.07 85.00 59.14 36.51 10.52 96.77 88.87 28.60 1.89 77.89 26.08 58.25 1.15 46.05 3.88 40.43 54.47 94.73 55.23 51.45 20.85 93.08 68.58 59.56 79.10 18.61 54.01 80.63 13.66 60.44 42.10 91.38 7.23 17.90 7.76 88.78 78.64 -99.16 47.95 0.46 67.62 65.97 21.20 20.99 23.28 58.22 45.44 32.47 61.99 82.47 75.69 94.24 27.91 38.78 45.99 48.69 6.83 79.29 41.59 17.31 91.43 11.53 43.44 90.85 18.63 64.04 90.83 42.11 52.44 70.20 54.36 83.47 38.04 49.35 24.60 75.84 36.10 75.35 80.57 47.05 58.50 45.08 73.62 73.71 27.77 63.19 8.10 25.41 55.17 13.71 49.42 35.42 53.80 43.71 49.78 89.95 87.21 16.39 60.03 52.21 41.35 33.63 11.51 72.00 87.17 21.95 34.07 83.43 0.90 66.22 60.31 43.00 91.04 30.71 86.90 66.64 43.71 3.89 3.04 55.33 20.27 64.82 82.80 51.01 9.48 14.26 23.12 34.76 36.03 12.69 82.67 98.31 40.30 45.75 21.29 78.64 47.08 -82.87 38.03 46.08 51.42 22.30 95.33 89.56 69.29 87.41 79.16 0.73 6.40 70.64 53.72 79.72 44.88 25.68 38.08 28.58 48.66 16.69 57.11 1.75 46.99 23.90 21.99 46.04 9.79 50.44 1.64 98.06 74.64 9.12 70.73 16.56 65.38 87.76 97.29 78.25 29.60 6.24 44.02 63.24 19.27 94.03 9.13 40.00 70.49 75.12 45.12 31.46 4.39 43.07 67.55 46.03 68.47 56.37 49.75 17.75 45.14 44.16 30.02 42.13 47.11 20.11 3.46 0.53 13.84 94.31 90.87 7.64 90.05 82.22 76.89 61.47 71.42 27.82 22.93 86.55 54.31 62.30 92.76 93.19 87.69 3.43 58.02 61.95 28.68 38.95 9.16 55.57 23.20 73.45 28.91 45.26 57.32 88.85 94.67 28.76 46.49 -49.04 7.19 4.13 52.40 43.23 16.75 92.44 22.45 82.29 34.62 48.15 22.80 42.31 94.87 20.97 75.28 99.56 53.91 95.38 24.75 67.38 49.84 0.26 24.74 55.21 50.67 85.96 44.76 6.63 0.82 26.31 0.54 75.03 12.50 80.97 79.02 18.64 71.40 8.47 10.14 29.49 58.25 32.16 5.64 86.19 77.99 23.86 43.36 89.71 20.06 66.31 66.80 6.80 69.14 8.71 33.32 91.31 22.46 72.42 60.81 39.80 21.50 22.73 66.76 57.73 83.07 24.19 34.73 21.76 58.50 84.49 28.85 12.88 9.47 79.25 6.85 72.36 82.85 10.54 29.76 21.28 7.55 6.53 81.55 7.73 38.95 44.05 58.15 39.73 87.00 30.39 14.39 13.49 49.86 29.57 70.83 86.96 19.12 93.40 31.38 -16.76 91.85 46.23 63.29 29.03 35.03 33.25 0.34 90.85 98.56 34.85 69.51 0.34 2.50 98.73 41.70 29.44 28.52 82.08 34.93 19.32 63.56 42.45 88.84 66.30 16.71 48.96 36.10 84.43 88.19 66.16 35.67 9.93 67.11 71.40 49.59 49.83 51.58 51.35 25.30 56.62 97.09 97.33 58.03 27.89 92.98 60.51 30.32 21.66 12.38 2.60 57.39 37.44 10.59 88.78 93.71 51.14 62.77 56.79 28.83 48.98 90.46 42.15 91.34 52.85 90.76 55.58 16.33 44.40 28.97 71.99 68.04 22.91 79.08 61.81 51.72 68.33 54.25 57.58 25.38 87.85 31.86 96.31 5.70 53.57 46.02 44.45 47.42 75.58 12.56 38.62 99.20 26.25 68.63 4.07 95.06 41.98 25.29 45.47 70.10 -68.38 99.42 16.67 25.94 0.28 2.23 94.71 12.74 15.29 7.19 28.87 38.13 93.98 3.57 6.29 65.28 96.24 58.25 59.78 18.66 18.19 5.55 83.70 61.01 38.90 97.15 30.63 97.61 92.93 93.18 2.92 86.38 56.17 67.05 96.99 5.71 43.13 76.82 36.45 11.20 92.08 85.99 84.89 54.12 56.26 37.81 57.65 34.15 10.25 94.92 34.16 25.78 62.64 36.58 79.46 37.09 75.62 91.75 49.89 41.99 72.05 67.85 37.42 14.12 34.77 78.82 67.04 47.26 32.52 15.07 74.12 20.58 4.76 50.59 86.13 75.46 11.97 90.24 6.28 84.67 99.49 53.37 87.18 99.44 19.74 37.22 73.55 4.13 36.33 61.82 99.17 96.16 99.25 38.87 86.62 39.68 71.87 91.19 28.77 8.33 -15.01 38.93 70.35 81.71 51.52 93.45 59.08 77.11 35.53 48.14 29.95 68.70 99.07 17.80 82.38 48.20 95.01 22.23 91.36 6.13 14.81 23.35 96.73 3.95 30.07 61.76 8.97 15.85 76.34 89.51 51.22 78.11 17.05 9.00 17.84 0.96 6.31 10.09 88.02 86.10 34.49 29.27 47.68 63.13 31.94 48.90 34.12 59.61 21.11 54.52 3.93 7.11 23.19 48.72 36.05 19.25 53.83 15.68 39.95 6.51 62.21 11.90 56.22 67.97 63.46 81.60 84.21 72.33 36.20 43.14 76.41 95.49 88.81 2.09 67.89 34.50 79.42 26.33 64.94 58.48 23.06 25.28 3.41 31.08 69.27 92.01 41.43 36.30 39.19 50.86 69.10 22.51 38.51 88.42 54.30 83.76 7.85 19.14 47.58 72.88 -10.44 41.18 5.90 69.01 73.36 66.83 19.98 58.97 97.73 61.90 72.39 22.17 34.83 86.47 6.26 54.80 5.86 23.81 39.61 52.22 60.58 92.23 30.97 14.88 96.72 58.66 31.42 89.21 64.91 36.16 77.62 62.64 17.28 0.63 10.84 97.02 95.83 2.21 88.81 65.58 78.60 29.91 44.25 57.91 41.48 48.38 82.53 75.39 10.80 49.63 16.46 70.71 47.17 24.40 58.14 85.67 26.88 14.05 54.01 50.26 0.05 49.72 68.34 21.56 99.66 47.85 30.78 53.39 13.01 66.85 61.69 94.82 32.10 91.28 69.94 39.01 85.10 6.73 36.25 88.63 76.52 35.43 14.40 92.52 49.74 82.62 55.47 13.35 98.53 32.05 6.66 71.20 41.90 89.32 12.99 39.57 88.61 12.08 91.76 42.19 -43.45 94.55 20.55 55.29 91.45 14.01 97.02 69.60 22.70 85.35 67.98 5.24 92.82 5.59 32.47 23.56 77.23 99.17 58.82 56.38 58.64 7.34 77.93 57.85 1.84 95.09 47.51 46.67 24.66 99.15 79.87 97.44 64.13 32.62 83.81 31.82 11.50 87.87 4.82 98.52 35.19 2.99 30.60 19.29 17.75 49.92 85.90 26.12 15.67 45.25 13.25 13.69 14.86 69.89 94.82 19.03 30.91 11.35 69.44 0.76 97.58 9.79 76.40 80.40 5.04 10.68 42.07 61.22 78.47 99.07 52.40 8.66 64.27 82.01 62.14 72.63 62.11 75.60 46.83 85.59 52.00 43.76 41.03 1.42 30.72 73.64 14.24 50.84 72.99 99.95 0.55 13.34 78.23 19.12 45.43 39.63 96.10 61.25 82.93 88.85 -7.39 83.00 44.65 78.19 38.71 79.91 95.72 46.42 67.29 79.62 89.10 96.41 25.18 40.11 23.46 92.53 27.48 64.60 12.53 82.58 91.09 92.65 22.96 85.47 57.99 61.20 47.05 29.07 9.70 54.45 51.16 40.07 92.37 59.40 53.55 33.41 54.55 87.93 49.27 50.95 49.55 25.39 53.22 14.46 84.72 40.70 39.55 56.41 83.95 24.34 3.69 18.17 73.27 61.46 2.21 95.07 61.92 77.49 68.48 67.64 88.20 69.57 94.35 33.81 90.66 73.80 79.42 96.90 26.73 62.03 42.80 42.85 99.58 19.38 46.83 1.75 42.91 71.82 27.89 8.51 55.49 6.13 47.05 87.66 23.91 57.81 60.21 4.33 26.98 84.54 48.06 12.17 32.68 32.84 87.74 85.03 16.56 95.99 94.43 11.44 -38.37 52.30 51.22 4.22 70.30 60.66 20.08 67.57 73.65 85.57 26.53 96.89 69.09 78.38 71.87 30.67 94.04 3.89 60.13 30.48 3.06 5.49 45.13 25.85 69.34 47.07 31.26 84.06 17.33 28.38 65.68 70.12 72.41 1.30 81.66 82.13 25.15 29.71 69.40 90.90 53.23 94.94 33.79 62.95 41.82 29.03 38.73 8.21 81.54 8.38 17.35 97.66 39.20 11.95 4.80 82.99 45.99 45.50 31.44 60.82 63.14 90.29 60.07 87.62 19.59 84.12 20.62 95.57 39.84 45.31 50.70 10.39 60.18 64.39 33.23 83.11 20.69 71.87 3.59 52.94 75.47 49.03 64.78 6.41 1.95 9.42 68.02 75.04 49.59 18.27 93.93 86.60 17.96 88.57 4.42 15.34 77.69 62.56 35.04 16.86 -83.05 22.31 60.13 58.26 37.39 72.85 83.21 75.92 76.70 15.95 15.13 8.93 66.59 85.89 57.80 20.08 56.70 82.92 69.23 44.70 88.23 43.53 46.78 0.47 63.16 2.53 3.38 50.95 29.15 11.53 5.66 15.14 38.24 60.93 45.82 81.19 47.69 65.78 90.69 36.82 98.33 79.38 38.65 77.03 88.08 92.35 93.77 9.67 35.40 54.84 94.80 81.99 92.67 50.29 52.93 63.53 45.27 46.09 74.48 15.65 47.96 66.05 74.71 66.26 90.22 1.61 97.24 61.85 12.49 10.93 42.95 90.79 18.55 83.19 23.43 89.54 94.72 99.55 84.48 96.91 25.47 53.63 3.14 70.28 35.00 93.46 1.76 42.85 44.61 68.23 4.69 28.80 44.83 70.75 49.98 77.61 55.05 56.04 35.73 53.32 -8.12 26.50 85.32 44.76 2.68 97.39 9.78 47.99 65.91 63.13 9.46 56.69 17.90 6.84 82.26 75.55 53.79 86.44 41.06 5.24 3.61 21.52 24.28 66.55 79.68 93.02 59.31 81.07 24.09 95.58 7.99 31.58 3.80 58.31 45.97 61.81 20.38 86.47 13.11 59.63 76.24 8.81 79.35 9.00 91.95 34.75 69.91 1.36 96.43 94.41 12.47 89.06 37.97 11.26 7.29 92.15 79.11 97.60 29.60 96.06 32.36 62.92 86.02 57.02 9.86 63.04 93.18 6.12 85.36 31.54 95.36 19.85 32.19 29.67 19.99 90.96 55.84 89.49 58.27 33.28 10.07 30.26 94.53 41.58 3.82 66.38 34.65 62.88 17.91 82.56 4.89 56.19 60.77 6.09 19.53 4.82 77.64 44.91 32.38 73.07 -3.12 90.85 79.58 22.69 39.09 50.91 3.17 3.21 62.52 79.33 45.32 65.01 32.61 40.95 42.09 58.39 58.89 9.62 10.40 51.72 95.13 50.99 80.04 36.37 70.89 32.73 43.15 62.75 62.92 33.07 92.43 4.15 32.56 20.10 60.29 45.15 0.01 97.17 27.62 50.26 21.48 18.31 32.04 11.52 44.13 10.21 44.36 35.59 81.02 40.72 40.96 35.91 64.35 54.89 31.03 35.15 85.75 1.29 40.04 4.15 86.41 28.38 77.61 64.91 65.11 19.05 43.65 48.64 22.77 31.68 96.44 71.53 94.93 90.73 87.34 34.78 13.58 87.41 64.85 52.55 59.74 20.35 4.42 56.90 2.91 38.43 81.05 23.44 42.24 94.63 45.18 95.47 34.38 94.83 9.11 5.46 76.32 81.72 21.34 88.42 -67.83 45.04 83.94 96.94 58.65 53.45 25.27 64.46 80.92 79.07 75.23 13.36 81.53 44.25 83.97 88.04 11.46 91.36 25.78 60.37 52.93 95.42 85.07 62.81 71.62 89.30 35.60 10.51 50.26 60.40 59.25 44.83 50.61 99.89 67.51 45.35 48.93 49.25 21.81 11.55 27.67 35.89 12.62 61.65 11.97 37.43 20.88 95.82 29.15 61.62 73.49 2.43 79.03 96.61 92.03 70.56 43.08 57.86 51.66 59.14 57.30 46.27 20.48 10.35 32.77 83.89 15.71 86.89 57.79 39.04 85.73 4.29 35.12 69.21 33.11 35.14 16.96 73.08 87.45 61.38 40.99 92.94 21.94 35.24 48.37 22.48 97.93 42.89 47.43 84.77 82.52 81.90 30.27 58.54 94.66 83.02 60.38 79.73 2.38 35.50 -66.54 48.65 45.92 3.46 52.90 67.60 66.80 19.66 55.39 55.25 59.72 46.40 67.02 58.47 65.29 46.85 64.46 30.93 79.76 26.46 30.01 87.98 31.17 94.16 19.66 44.62 26.88 94.83 60.23 53.06 36.89 6.19 10.75 44.81 12.08 86.55 79.35 67.04 77.48 18.88 83.19 55.82 25.05 91.72 13.33 88.27 26.56 2.10 18.00 83.94 61.27 71.71 52.65 73.03 42.44 46.90 71.41 66.38 12.69 58.93 27.21 0.63 20.31 73.34 88.94 57.80 91.96 71.08 18.37 49.71 59.50 48.98 62.66 19.52 62.02 83.60 25.05 18.58 27.30 77.88 85.81 11.81 67.44 16.39 90.31 91.21 30.49 22.08 39.77 92.09 6.91 72.52 70.32 65.88 38.88 65.80 53.85 13.67 27.43 45.30 -24.93 43.74 91.67 6.80 8.30 64.83 23.34 95.77 72.19 40.95 94.99 15.17 5.01 20.98 53.90 97.47 56.65 21.27 79.24 96.02 17.58 44.26 42.67 18.65 70.44 12.38 57.06 3.75 15.10 57.26 26.47 32.07 9.66 57.17 73.30 88.98 94.42 86.46 37.28 79.76 38.15 11.45 46.24 11.42 42.51 55.84 98.16 96.49 85.26 38.94 25.01 31.79 15.21 7.63 97.21 77.92 1.81 43.29 82.00 75.41 82.54 7.01 4.24 16.41 4.66 29.50 50.72 51.09 43.57 73.50 75.15 62.03 94.41 62.56 13.17 90.84 41.78 28.68 50.24 17.23 72.11 48.82 85.20 69.06 74.64 33.69 37.37 62.04 40.13 99.02 11.25 66.95 38.85 84.00 88.90 61.59 25.29 58.11 30.90 52.31 -56.58 10.09 56.09 6.12 49.14 25.40 0.24 71.36 34.88 84.91 61.46 88.01 41.79 27.54 98.15 97.30 80.65 53.53 40.57 34.67 28.03 51.40 47.76 6.96 94.09 97.08 35.74 80.12 46.59 33.51 7.43 80.17 17.51 78.85 30.00 74.06 81.47 50.72 1.76 75.44 0.30 44.04 26.64 39.82 15.61 72.16 92.98 79.15 63.52 39.55 25.31 72.96 18.48 33.64 31.28 50.52 97.97 93.45 6.00 63.24 89.90 67.07 35.13 73.47 20.74 27.50 88.76 23.72 41.06 2.31 94.81 86.76 61.35 44.71 26.52 11.84 2.89 13.29 19.30 52.12 58.97 3.37 0.47 17.36 35.35 6.10 52.64 73.07 97.03 37.56 43.79 25.56 77.04 17.33 42.80 2.60 8.18 79.01 58.90 11.82 -51.48 27.47 71.93 25.02 34.45 93.25 75.06 33.58 3.87 39.01 12.82 98.72 58.38 50.34 91.48 75.28 50.49 80.59 37.96 92.56 15.94 14.22 36.26 46.60 67.88 10.27 91.83 16.60 95.65 25.83 86.45 52.89 58.52 74.38 99.75 80.51 61.18 28.75 45.94 89.51 48.54 73.93 84.37 16.29 95.85 63.81 95.93 48.16 34.50 38.19 81.99 76.91 12.47 20.80 10.33 96.80 48.85 16.56 68.28 27.08 38.71 58.89 37.96 83.34 17.85 54.75 38.59 41.96 45.40 50.10 94.58 73.51 79.03 13.85 89.92 47.56 11.45 26.24 0.04 62.08 31.98 96.36 94.09 80.84 90.47 42.62 39.91 98.13 27.45 49.53 1.10 7.66 62.97 38.44 57.45 37.02 52.78 83.97 60.69 93.15 -38.96 41.60 28.52 10.77 68.28 16.24 48.94 80.90 17.19 7.24 52.78 20.10 94.28 42.73 41.05 19.82 35.77 19.04 15.13 87.32 34.11 29.75 7.58 11.12 64.15 85.00 99.58 69.49 28.88 70.38 44.41 80.08 64.11 88.89 14.38 6.44 30.08 9.25 38.57 93.35 35.95 30.62 93.91 40.88 78.93 75.81 28.90 94.23 5.33 49.20 78.77 84.76 47.86 44.67 77.78 85.97 26.39 31.04 33.93 99.84 26.85 59.21 31.74 24.03 4.00 89.69 46.36 92.64 83.98 58.42 54.15 0.42 25.04 4.03 26.49 13.55 10.16 24.55 80.91 14.43 89.10 35.34 73.93 80.58 24.95 62.34 85.79 46.32 82.55 4.64 28.77 78.21 59.55 83.22 1.69 91.62 5.82 84.45 50.11 65.60 -64.59 24.28 62.94 7.79 34.48 68.55 12.42 41.33 48.36 87.08 94.21 21.63 68.71 28.39 26.57 96.88 75.32 98.05 42.88 1.40 82.05 99.53 6.34 34.29 7.19 67.76 61.22 3.79 0.37 35.21 92.64 71.70 19.30 37.55 5.59 49.97 98.66 23.50 79.21 92.21 5.55 69.22 48.59 43.82 76.22 45.05 59.27 0.31 63.37 52.66 74.65 78.82 38.36 50.93 8.25 0.96 30.51 30.51 13.26 20.93 43.10 32.81 95.72 97.69 79.96 61.22 31.86 5.69 9.57 52.70 95.98 24.39 24.92 52.06 98.55 96.37 64.68 10.06 44.90 53.90 7.46 57.05 52.88 48.79 24.01 11.37 67.49 13.23 94.02 76.29 54.17 48.82 93.11 18.60 85.81 54.17 3.65 26.82 83.53 4.24 -9.18 88.61 76.24 89.26 12.92 61.17 20.65 5.30 39.14 98.49 57.42 91.38 64.07 81.47 78.30 94.45 92.45 53.88 33.78 35.46 35.44 49.53 64.10 0.12 97.10 98.41 12.71 36.73 63.15 44.74 51.46 96.88 86.42 20.43 67.59 72.40 16.58 58.37 39.81 17.17 73.40 57.43 64.19 96.68 90.69 71.93 57.73 91.80 59.04 77.46 71.76 71.42 15.81 67.58 12.29 66.36 30.81 89.53 81.40 72.30 92.73 79.70 52.51 99.76 31.29 34.78 16.86 29.23 47.59 6.03 87.88 82.00 74.05 6.60 9.05 13.23 26.99 43.20 3.27 52.36 36.37 85.40 23.36 72.63 66.00 65.35 45.45 19.78 24.52 65.32 42.77 67.94 16.24 2.99 73.03 73.24 8.58 98.74 27.28 95.65 -86.19 55.58 10.33 1.70 17.76 98.61 66.79 44.51 88.08 66.26 78.60 61.82 49.57 78.24 61.62 1.82 70.82 74.74 92.30 43.64 92.53 76.79 46.46 66.58 20.37 18.13 12.45 55.49 26.22 57.20 65.46 51.29 31.63 78.27 74.98 77.62 15.44 44.54 46.82 71.37 67.96 7.62 74.16 34.75 16.30 72.90 66.68 36.48 85.80 81.57 48.91 67.04 98.57 37.86 25.45 72.72 10.11 63.82 78.05 64.67 35.18 51.14 94.76 13.70 24.81 16.33 18.57 28.06 93.52 23.96 64.18 92.00 99.25 21.34 27.25 97.74 58.01 5.00 93.46 54.08 65.61 56.68 79.20 7.14 87.10 36.69 87.09 5.27 83.49 4.43 62.15 58.18 70.84 33.21 65.78 36.46 70.59 81.09 74.82 93.85 -44.84 43.27 39.75 14.76 85.98 38.27 30.38 10.63 96.84 42.22 72.23 0.03 31.64 81.17 10.68 61.48 92.34 68.95 5.41 32.67 69.19 49.47 85.71 54.14 89.31 81.17 26.18 65.57 32.90 48.12 96.71 44.91 17.80 15.57 13.16 56.14 41.86 59.61 6.22 98.63 50.01 81.97 58.37 66.65 35.64 88.20 37.88 94.52 44.00 47.83 79.53 88.89 2.68 99.06 32.74 89.19 28.45 97.91 6.65 43.75 14.30 78.24 66.25 81.13 9.77 18.95 59.78 37.00 60.62 23.18 13.25 93.21 34.60 84.23 23.90 0.13 75.20 61.58 31.88 37.31 56.37 54.92 85.72 8.06 71.60 61.55 48.75 78.45 19.60 20.16 55.64 52.56 35.41 43.26 2.46 68.30 3.02 32.45 3.70 40.33 -76.94 88.75 19.12 99.43 88.20 61.74 66.07 92.08 42.78 37.60 44.44 13.95 98.55 32.14 15.31 54.75 73.61 44.75 18.36 33.11 85.83 10.48 38.29 96.88 98.35 26.78 35.41 39.70 55.22 21.85 74.46 25.95 16.13 73.99 62.53 87.74 79.21 28.82 1.41 7.27 16.22 6.97 92.46 72.18 33.64 80.28 27.22 81.32 29.50 29.21 65.97 81.91 32.06 0.83 29.11 38.06 84.39 83.11 5.80 16.60 25.61 6.92 97.55 58.83 55.28 45.34 44.60 41.76 47.72 32.56 98.60 76.91 86.14 71.41 91.13 28.76 48.33 58.37 61.12 1.44 68.17 90.69 29.07 99.05 89.66 94.45 16.86 62.32 12.19 58.55 32.20 54.38 85.64 81.14 68.77 73.00 54.47 23.05 30.55 14.18 -36.59 28.00 32.89 98.76 56.75 80.69 87.08 17.13 29.18 80.17 36.28 19.80 53.71 7.57 19.14 30.35 5.91 63.74 28.34 53.98 5.85 47.36 88.80 31.65 85.13 82.79 44.88 22.41 86.71 34.79 9.62 71.02 17.40 69.08 68.46 1.16 96.82 85.33 86.94 74.71 91.79 97.92 0.09 93.28 42.51 24.01 36.89 76.56 32.46 26.23 90.51 95.67 11.42 6.43 16.07 88.58 75.14 20.65 69.22 80.55 76.80 78.98 47.43 17.94 1.38 29.98 97.08 29.23 64.43 16.97 28.30 79.98 10.06 92.11 92.02 58.04 64.90 35.59 98.35 84.12 99.69 64.34 52.75 48.12 39.67 16.88 91.16 93.61 29.14 88.86 39.94 84.07 54.72 19.81 89.50 11.92 80.66 60.10 40.70 94.97 -24.63 87.12 38.58 28.91 19.76 18.73 49.48 49.77 77.25 8.13 64.55 0.02 87.61 96.13 39.42 19.57 68.16 83.21 57.41 91.08 38.14 41.21 8.77 95.57 57.82 67.78 21.56 22.62 11.36 93.84 86.17 21.48 60.76 83.03 78.82 96.69 93.64 67.17 84.50 25.03 0.87 95.07 27.52 96.20 8.11 77.86 45.32 47.30 2.78 59.19 13.76 10.55 40.59 12.35 47.49 30.87 90.78 72.28 20.94 69.68 28.16 26.26 3.05 44.12 80.45 97.84 44.20 23.78 1.47 19.47 60.16 80.08 69.12 1.32 20.56 62.86 44.57 41.51 74.34 32.42 61.42 88.39 82.71 19.21 7.54 46.07 21.96 28.03 12.59 21.35 75.67 87.37 69.77 46.56 70.47 54.32 46.58 9.41 29.99 40.34 -85.52 18.55 80.20 78.95 64.76 13.44 95.08 70.04 61.59 64.96 35.89 81.83 58.85 43.48 94.98 4.22 50.54 99.54 18.96 48.76 56.61 86.27 83.24 59.36 22.04 35.93 55.24 25.50 58.50 42.82 49.51 13.43 6.52 32.86 69.66 23.68 64.26 61.15 37.13 73.00 65.11 5.46 26.28 48.29 62.54 1.86 54.45 80.88 58.22 85.68 82.08 47.41 57.91 50.88 85.88 73.58 56.85 23.24 31.55 54.43 66.27 98.81 80.85 64.36 67.61 66.42 45.02 75.24 67.95 56.16 19.10 55.11 23.77 87.03 75.71 23.85 27.14 72.18 62.58 44.30 0.70 94.62 1.79 85.88 93.69 13.95 65.61 16.72 14.51 50.71 41.32 25.56 81.79 38.59 94.00 84.25 82.10 94.93 60.18 62.87 -28.56 7.61 42.68 7.44 92.61 88.97 9.71 72.86 50.84 60.65 69.51 60.72 56.07 7.18 99.70 91.31 13.46 64.37 29.29 50.00 80.61 93.35 84.50 9.46 67.71 45.34 61.03 90.48 2.46 36.20 42.67 56.64 25.82 94.42 86.28 86.15 6.97 70.49 7.82 84.78 43.40 18.97 75.30 13.34 4.91 80.01 31.89 97.90 52.61 7.94 32.92 13.94 54.42 47.26 52.19 93.44 93.03 46.08 55.18 5.40 33.14 12.60 68.97 68.71 72.06 1.69 55.49 38.98 62.89 32.43 37.66 24.26 87.28 5.97 68.94 18.91 52.47 98.84 95.67 15.21 29.22 2.26 29.09 40.42 51.54 25.89 51.64 1.59 73.86 13.86 13.96 88.91 40.61 9.03 15.91 33.93 16.20 26.00 37.08 95.65 -68.77 12.07 94.24 30.11 41.47 35.07 37.59 79.33 96.91 9.77 47.25 63.34 25.87 25.40 93.69 59.15 27.74 90.30 91.57 15.90 52.08 87.17 48.06 93.95 67.83 79.04 17.06 20.46 64.94 83.23 7.63 39.69 84.01 2.81 93.16 71.87 89.62 91.12 25.13 84.36 10.44 66.09 39.39 79.13 45.97 73.37 53.74 1.12 1.49 67.04 18.25 78.96 66.52 42.51 97.82 12.77 16.25 72.13 56.82 1.48 33.52 14.83 55.89 55.84 10.21 84.88 65.49 35.06 34.31 8.54 5.89 33.71 14.43 77.03 61.57 50.40 48.36 57.00 73.69 91.24 57.46 62.72 73.11 3.52 16.33 70.79 87.56 2.48 76.66 65.66 39.47 32.53 25.22 34.03 20.37 19.74 4.21 58.19 56.41 82.74 -77.23 62.65 30.40 50.88 35.32 13.18 8.26 23.02 73.26 51.18 42.86 14.53 76.27 40.57 96.73 66.24 6.03 83.68 31.99 38.55 14.41 44.45 62.37 95.42 59.32 49.61 4.42 60.35 42.05 54.78 1.46 7.85 68.61 58.24 11.17 23.00 98.70 29.03 84.15 41.54 7.81 62.78 44.24 41.11 1.81 91.86 71.71 57.70 86.28 11.12 88.81 33.15 39.31 32.03 81.76 37.06 40.50 85.85 71.37 48.06 39.04 74.43 59.18 21.44 12.87 68.43 91.41 65.39 20.78 31.23 84.29 98.19 21.68 97.39 38.57 1.75 28.96 43.50 93.61 92.34 82.93 95.65 8.10 42.92 47.91 98.86 24.78 96.48 85.60 46.45 75.46 65.43 80.09 98.61 38.01 77.16 46.07 80.18 95.71 51.04 -12.78 29.51 62.61 33.70 54.73 86.36 93.42 30.11 11.10 72.96 35.46 98.85 84.19 43.70 35.60 27.06 62.59 72.21 35.68 83.38 84.00 8.81 27.90 43.95 59.82 49.08 71.40 33.16 93.13 36.62 9.23 48.59 97.67 54.01 63.36 4.48 95.11 35.16 59.09 29.26 71.42 89.52 19.85 96.75 59.98 96.60 98.78 55.69 50.95 63.69 80.48 9.22 95.13 77.43 57.22 0.79 81.85 90.36 63.46 57.53 10.38 62.20 13.24 13.23 78.41 42.45 75.79 98.41 33.33 73.61 5.89 77.92 96.46 78.05 47.85 72.20 56.96 53.23 66.50 52.82 52.72 14.52 7.70 26.77 99.08 2.36 14.45 15.62 84.68 19.71 34.61 22.31 20.09 65.80 49.70 97.92 25.02 25.88 20.17 43.81 -30.83 18.33 45.61 88.29 19.17 65.51 82.21 56.84 87.38 96.44 97.69 11.54 55.22 54.88 76.16 13.12 56.44 34.20 91.34 12.06 78.12 72.58 70.19 79.29 58.59 82.36 19.01 51.68 4.36 21.57 47.54 75.39 23.20 71.62 16.12 77.02 74.43 33.04 49.06 99.53 15.69 73.51 22.37 98.13 3.46 41.49 87.68 89.82 73.78 76.95 4.21 1.59 50.58 36.62 70.66 21.04 95.22 53.72 55.22 17.18 1.29 71.25 36.13 55.19 41.71 89.90 13.26 50.43 24.93 92.71 85.24 28.31 86.53 7.33 3.43 52.28 38.88 40.85 6.26 13.62 37.86 3.73 84.89 94.51 27.48 29.36 7.38 5.64 33.37 4.97 12.32 61.19 15.58 89.72 74.69 16.28 8.03 59.72 26.55 17.10 -55.22 16.73 17.64 76.45 85.71 70.74 12.95 5.56 56.90 52.49 63.02 24.16 42.59 55.31 20.79 63.79 73.84 88.22 11.05 71.45 67.47 60.59 84.63 78.11 33.65 91.16 24.51 51.32 97.68 68.33 38.81 68.06 75.14 93.23 83.85 79.51 77.81 44.79 5.10 99.99 49.51 84.30 56.44 62.57 38.49 34.34 84.88 12.47 28.56 76.77 97.64 39.97 98.81 46.37 42.94 90.38 60.63 61.91 31.25 73.57 17.60 17.20 50.91 8.90 29.03 2.06 80.51 57.39 63.26 72.74 20.03 3.37 72.59 34.69 71.69 11.93 27.90 24.34 45.33 24.54 46.45 31.72 17.46 51.17 70.08 67.60 74.32 80.42 47.46 13.41 61.28 61.78 71.34 37.27 13.62 27.06 52.76 93.00 23.58 33.21 -55.57 53.93 67.60 96.51 48.09 14.27 4.86 71.20 37.47 13.01 53.67 35.53 45.13 17.22 40.78 47.08 31.09 59.02 73.62 15.71 94.92 85.14 24.16 98.52 35.60 81.86 2.98 46.91 63.09 86.80 89.84 91.95 88.08 38.19 64.26 66.77 77.22 37.92 74.26 92.20 25.35 45.99 0.73 73.00 96.17 76.42 76.66 9.10 15.49 18.66 93.71 91.31 42.88 25.38 42.72 59.27 36.61 31.04 14.73 0.19 95.08 99.82 42.90 1.78 69.99 19.98 68.00 61.20 93.71 42.20 7.26 72.07 62.61 7.74 72.13 32.27 19.85 41.37 78.05 35.39 13.61 56.00 14.50 90.44 39.60 81.28 84.36 97.28 50.07 73.06 87.44 64.18 43.73 92.19 24.75 35.60 92.70 5.59 58.79 64.68 -11.25 81.26 97.35 99.44 96.91 26.92 63.29 95.86 54.61 18.29 51.08 63.16 40.14 43.08 71.14 61.57 75.71 15.00 14.63 62.88 28.55 74.80 4.31 26.55 77.29 84.86 0.04 89.15 76.54 80.45 0.44 37.56 24.04 10.52 33.19 2.07 21.97 35.18 84.50 19.52 89.49 8.16 36.01 46.87 71.14 41.49 55.97 66.72 64.37 8.71 2.44 70.78 90.96 65.80 75.57 98.23 79.70 0.90 92.19 20.80 48.66 87.39 33.19 76.49 73.35 80.85 4.82 33.29 42.15 33.91 72.62 35.72 70.39 54.19 87.27 21.51 24.66 81.92 13.53 18.53 22.83 42.88 64.70 10.49 41.66 71.49 3.93 55.30 43.97 41.83 45.32 95.15 57.73 16.83 96.96 22.63 76.67 60.48 25.14 58.74 -4.42 19.19 26.57 79.29 86.61 31.78 51.56 14.53 41.74 82.66 80.59 68.86 68.82 12.80 11.01 95.58 84.40 12.20 2.70 2.93 48.75 49.05 30.60 91.77 33.59 76.00 43.75 37.96 66.33 78.17 55.27 67.34 56.84 83.50 91.37 54.10 9.31 3.70 13.03 73.71 13.09 36.28 56.74 23.59 84.14 37.99 83.18 37.59 45.59 43.36 1.81 15.81 36.63 40.60 17.66 64.74 93.31 78.02 92.71 73.28 91.64 1.72 94.10 73.48 3.30 93.27 63.14 32.81 67.18 5.71 65.73 92.17 6.36 31.02 44.58 53.24 67.68 17.25 58.28 3.49 3.28 68.72 44.89 52.72 53.63 50.86 49.94 46.62 67.66 64.72 83.97 44.57 38.55 10.92 2.45 89.67 17.62 12.34 87.57 59.61 -63.05 15.33 40.65 57.27 78.20 21.31 37.46 46.50 6.63 1.14 80.87 26.08 25.50 21.73 79.39 2.66 52.86 89.11 63.79 35.07 23.91 32.30 89.04 0.19 41.48 49.65 30.29 7.27 27.25 7.57 66.82 90.67 84.98 93.80 45.15 5.14 88.08 92.65 53.09 44.28 55.86 80.05 60.51 3.70 48.42 13.90 50.70 86.71 25.24 77.99 28.23 69.44 72.60 87.02 99.99 1.25 62.61 95.68 5.46 6.56 94.87 79.10 67.52 23.49 12.88 93.03 50.74 23.41 70.78 76.77 91.18 15.41 28.52 71.08 12.08 25.67 61.06 53.94 51.21 47.69 91.13 34.23 23.08 63.94 91.93 57.83 61.20 63.69 88.33 78.23 45.10 0.95 97.42 44.26 44.28 35.93 64.24 76.23 60.60 63.72 -77.50 6.85 50.53 73.54 71.56 3.94 96.52 68.72 36.88 37.89 21.52 26.35 24.67 99.98 42.70 29.92 45.98 25.42 13.01 33.70 57.92 73.36 3.30 82.77 32.56 75.64 23.27 80.52 10.58 70.96 25.31 89.72 86.42 33.05 61.82 68.55 98.54 85.71 62.46 55.75 33.37 26.70 27.15 7.65 17.24 51.51 96.76 51.84 50.56 26.44 96.83 80.10 10.69 73.46 86.18 71.66 14.36 86.48 28.33 59.39 17.82 62.62 70.23 25.22 64.54 48.87 10.62 5.16 46.59 32.71 80.75 17.35 57.48 49.29 65.18 27.92 83.55 25.42 79.20 4.32 25.83 94.50 14.56 74.83 62.01 34.04 96.59 89.14 77.71 76.81 35.79 81.52 67.85 44.25 0.93 94.75 47.17 28.34 86.21 36.15 -57.44 11.95 78.60 74.98 10.60 71.63 24.86 72.32 69.86 80.27 73.15 21.88 83.33 95.52 5.98 5.88 72.26 38.35 2.90 21.34 4.54 1.82 19.97 11.47 37.13 34.82 58.66 61.08 87.88 97.81 16.96 13.39 15.75 91.54 17.25 85.01 16.29 30.65 74.29 73.60 99.64 70.51 61.00 8.00 75.28 39.82 33.69 56.75 12.85 92.43 1.34 0.02 87.78 65.70 5.86 12.80 44.45 52.61 96.21 93.09 1.06 74.43 90.40 14.91 63.06 76.72 41.65 1.00 52.36 82.32 93.05 71.44 64.19 18.27 35.51 68.90 15.31 51.10 44.02 59.25 87.22 60.16 13.10 19.31 65.02 44.63 93.19 57.94 74.05 79.92 91.42 16.98 72.51 8.59 52.08 51.18 84.55 6.18 50.97 15.50 -91.79 54.24 46.91 73.31 81.04 50.54 37.11 57.48 5.00 41.81 75.28 88.08 48.25 13.13 44.93 2.95 4.07 39.56 55.91 76.74 92.05 77.42 58.08 55.40 61.51 89.62 40.87 76.17 54.80 43.56 42.12 19.21 86.25 97.02 56.86 60.34 61.23 97.36 93.15 4.36 67.70 73.02 22.19 92.08 26.16 59.39 46.03 47.15 45.01 96.91 79.52 27.41 49.69 88.02 20.66 15.93 77.76 5.98 27.19 69.46 78.61 68.45 32.01 78.18 77.42 10.89 36.10 2.52 84.31 94.17 13.81 52.88 81.95 70.03 11.08 68.82 14.34 19.25 97.00 21.38 87.27 17.05 21.53 35.89 44.24 41.49 99.19 61.15 87.03 19.58 94.40 51.52 75.96 54.90 61.15 34.88 22.17 26.02 89.79 54.02 -81.70 13.52 9.36 72.18 56.01 30.99 73.07 60.31 33.27 37.99 95.54 12.11 75.24 6.25 56.55 3.41 2.94 68.08 50.83 42.69 4.00 99.69 76.27 70.81 20.10 9.73 60.45 46.95 69.53 25.14 58.00 25.19 10.19 58.93 31.41 35.43 29.61 98.97 16.85 64.35 31.11 98.53 71.44 79.97 5.29 69.98 4.28 69.30 27.26 89.49 49.22 48.39 62.93 53.54 98.31 56.65 68.61 52.61 55.57 43.17 25.24 55.19 67.64 62.88 69.31 71.77 84.85 57.25 34.68 98.41 95.95 97.95 16.48 2.32 2.34 88.33 5.03 25.33 61.59 56.39 86.12 98.30 62.72 85.50 35.73 98.95 28.88 53.20 49.96 31.40 50.34 28.10 68.11 54.00 9.22 31.77 45.25 3.21 43.56 60.73 -64.15 7.44 25.29 54.38 39.83 12.30 12.81 17.17 32.16 4.24 85.76 78.35 76.93 45.68 5.21 73.15 99.91 75.10 33.77 41.54 14.21 56.86 9.95 90.50 88.56 47.87 72.87 6.10 48.14 19.89 22.51 46.33 61.03 5.81 76.55 37.24 45.04 93.07 78.00 34.07 38.60 51.97 13.48 23.67 66.18 98.69 54.04 15.22 84.52 39.40 15.53 43.92 17.19 66.58 94.10 36.69 1.12 23.34 48.19 48.99 68.78 77.06 22.04 16.01 72.78 2.60 19.63 3.37 32.39 21.89 59.21 34.71 46.60 48.07 67.15 19.18 30.73 20.97 67.59 84.73 83.08 59.35 37.65 42.43 13.22 59.85 65.55 98.71 45.16 82.39 53.87 59.48 26.93 72.10 75.90 96.18 12.77 76.73 67.13 35.89 -83.34 35.48 24.11 44.80 3.43 56.18 35.02 52.93 57.94 55.50 49.98 76.39 54.79 34.11 54.63 73.48 50.58 55.46 26.79 3.55 88.07 92.95 13.47 45.07 89.32 59.24 46.27 90.70 78.70 81.67 77.05 91.57 1.18 39.39 11.74 12.80 34.39 89.00 74.88 46.62 53.81 74.37 24.07 12.58 67.19 59.50 52.62 83.97 49.18 57.37 75.01 92.78 28.87 2.33 1.77 50.95 49.19 55.90 77.92 36.77 68.20 86.79 6.28 94.08 68.76 62.82 14.10 11.27 73.69 56.98 27.49 21.18 15.01 5.85 90.55 32.45 37.36 95.38 35.60 35.15 40.61 64.78 14.94 78.56 81.11 87.82 67.72 17.73 9.09 60.07 97.83 15.42 66.38 75.51 1.92 3.78 78.55 51.63 95.72 56.51 -79.41 23.45 86.96 68.19 71.94 71.96 54.24 86.34 41.23 52.58 70.14 99.82 36.21 11.71 65.53 3.55 24.13 5.15 36.10 42.24 45.19 41.03 51.24 43.42 95.62 76.12 15.46 57.97 0.64 30.02 65.07 47.18 84.79 39.77 0.49 54.28 54.11 59.20 85.97 39.23 29.55 13.76 52.86 62.74 50.90 79.16 27.42 86.62 56.07 37.69 38.50 99.19 9.29 36.92 2.58 14.96 48.91 25.98 48.96 88.81 14.61 3.57 43.44 69.39 93.28 66.16 65.89 2.90 78.60 15.47 63.74 5.42 95.63 54.06 33.38 72.70 6.89 17.46 17.75 28.53 79.19 81.81 70.78 97.88 5.51 5.98 60.41 8.30 76.46 94.57 26.10 69.24 8.40 42.04 21.51 19.99 19.25 52.32 50.01 66.89 -77.64 7.69 10.90 71.66 79.31 66.99 42.77 13.11 42.64 35.07 34.86 55.48 32.43 20.63 42.52 44.79 79.52 37.88 71.96 70.33 9.04 26.62 98.54 16.91 26.32 66.98 30.71 27.00 93.66 4.75 4.30 6.66 64.65 75.15 57.24 60.75 30.82 44.88 64.20 25.15 85.00 24.70 57.75 18.13 98.33 17.28 3.88 24.71 57.67 84.72 97.70 87.28 71.86 2.42 82.36 38.95 62.52 86.77 65.23 41.28 91.18 10.29 1.36 30.76 50.07 38.55 2.73 84.11 36.51 36.66 10.91 2.40 36.93 49.67 22.62 0.30 79.52 65.01 86.56 96.05 32.91 77.04 30.97 84.51 98.55 25.49 45.87 23.78 45.13 57.97 30.43 45.66 82.35 84.24 97.46 60.38 15.56 1.63 12.38 73.83 -88.25 86.12 44.19 90.12 36.42 1.09 55.92 64.81 99.02 73.55 0.84 32.63 85.46 39.40 27.56 47.51 89.35 38.00 67.94 66.17 20.99 27.16 80.61 99.17 80.16 3.63 60.89 62.63 95.84 59.56 59.75 50.42 30.15 36.01 2.26 63.35 95.24 52.82 96.94 75.56 73.74 84.08 78.98 23.52 73.49 16.14 49.13 14.14 42.51 11.33 54.35 73.86 47.20 92.19 96.04 78.03 54.89 35.30 66.95 19.08 61.41 32.99 90.26 49.60 74.68 59.03 42.39 42.16 39.68 59.95 30.61 11.70 76.53 41.93 39.20 38.73 10.18 80.98 89.47 21.80 88.94 8.54 25.98 22.40 61.87 10.25 57.20 62.38 82.02 36.17 16.16 88.07 21.99 38.00 62.77 81.54 8.50 39.67 53.66 87.19 -77.56 85.47 78.87 10.43 3.01 82.90 14.25 69.02 19.53 38.44 91.25 37.51 50.79 17.76 4.52 74.09 51.60 5.66 9.59 11.97 51.28 28.46 56.00 56.30 72.41 49.26 95.98 0.22 87.93 39.08 52.52 52.49 10.22 77.62 90.22 59.92 70.69 85.40 65.03 74.01 95.53 46.25 64.98 38.07 0.20 20.67 92.10 30.03 34.99 65.26 31.31 8.63 69.30 10.77 62.45 15.84 65.09 25.41 40.72 31.51 56.96 40.13 56.55 65.93 18.46 91.50 48.09 37.44 81.62 25.23 21.85 3.09 41.82 75.48 22.84 88.57 25.42 24.83 48.26 37.49 5.60 42.64 98.09 2.12 9.57 59.79 47.55 1.71 16.12 96.27 50.85 27.94 21.03 51.97 93.70 99.91 41.87 9.22 74.24 45.69 -75.43 52.96 86.26 9.51 13.80 91.46 1.68 15.61 84.71 99.24 1.18 49.01 30.15 9.72 74.19 80.28 6.94 36.04 65.19 51.18 61.86 43.21 86.90 71.79 95.53 3.31 21.38 34.01 22.51 94.24 74.05 64.13 58.84 36.15 37.35 44.80 82.28 56.10 71.52 7.68 35.31 29.19 13.24 56.46 49.17 36.01 61.30 20.72 92.39 93.83 21.71 47.46 93.87 55.25 43.44 17.60 38.64 6.70 55.97 4.44 81.93 78.42 42.32 10.16 9.38 4.23 84.22 20.37 62.42 70.56 73.49 66.71 56.31 48.43 66.78 11.14 48.28 42.71 27.07 36.41 62.21 13.49 92.25 71.80 76.88 51.13 82.73 56.12 21.71 68.53 47.05 80.62 84.01 16.66 57.35 53.32 65.02 99.68 7.45 89.36 -37.53 43.29 84.30 88.44 56.93 45.84 12.11 27.39 58.54 40.29 23.54 40.91 8.46 67.80 71.01 36.38 56.39 74.79 53.46 48.44 45.13 6.12 74.80 80.11 66.24 73.99 3.03 41.94 12.43 18.47 92.51 52.39 55.10 71.50 17.50 43.51 19.01 86.11 62.16 10.94 80.21 56.46 37.12 15.48 28.77 78.04 13.98 40.02 59.70 89.15 19.61 45.64 59.29 2.91 54.00 96.99 13.22 72.33 97.49 25.38 40.21 54.87 87.20 21.07 62.95 25.02 8.10 30.48 99.00 70.88 95.00 50.29 65.80 29.30 78.04 47.88 0.78 67.28 80.83 23.60 35.82 3.67 17.59 10.15 52.35 37.62 11.88 77.61 31.85 65.63 94.56 83.46 49.22 77.30 62.73 95.67 37.28 98.44 47.74 8.54 -56.46 62.86 68.92 45.33 92.82 18.85 32.93 29.00 55.40 44.46 73.17 51.61 35.43 36.00 47.22 19.25 82.71 84.40 92.42 25.38 27.85 66.97 23.79 71.55 69.93 8.88 92.85 37.89 13.93 51.82 61.06 83.22 36.38 75.58 0.70 82.67 97.38 80.29 9.04 76.46 0.61 47.09 62.77 64.53 23.14 25.26 82.26 46.72 35.98 90.99 38.21 38.40 95.81 80.65 52.31 63.88 57.71 6.05 51.04 8.01 83.91 65.48 38.26 64.28 67.65 39.83 14.06 84.87 57.91 61.72 61.46 59.15 13.50 7.99 28.27 15.74 76.31 99.78 73.73 74.97 5.94 36.87 43.86 26.36 73.62 17.63 15.23 19.58 22.71 28.06 24.18 68.46 12.18 51.42 30.22 77.93 76.63 98.88 83.36 24.75 -87.22 0.53 7.47 58.31 45.17 30.09 42.14 45.88 49.12 48.90 80.40 91.18 41.51 14.07 37.61 84.68 29.63 61.30 62.65 19.28 97.96 84.48 7.89 84.63 53.88 31.76 53.14 17.16 38.08 2.48 63.50 69.50 17.84 16.03 51.83 5.86 24.53 99.22 7.80 35.96 71.25 43.83 75.17 6.67 90.59 73.90 24.76 49.40 8.62 28.27 88.35 71.14 55.69 41.71 20.38 76.65 8.39 56.23 51.46 65.51 68.52 42.03 53.72 25.66 40.97 22.14 29.01 92.00 12.28 61.78 45.01 98.68 47.15 83.19 28.23 7.32 98.30 30.97 59.06 35.08 90.27 14.97 20.82 50.44 47.63 21.16 70.21 65.09 13.11 70.81 35.08 37.61 13.92 37.67 79.85 66.30 32.88 93.14 3.96 2.99 -19.65 35.87 65.74 17.78 11.60 41.41 7.12 68.22 33.33 81.85 48.10 15.68 91.39 27.28 54.20 77.20 21.38 40.86 43.64 84.07 89.65 71.85 37.07 91.82 5.96 0.23 81.05 70.04 70.76 1.41 46.08 10.81 5.96 77.85 22.75 37.60 89.77 74.67 28.17 27.87 56.61 35.20 62.82 51.32 78.25 2.35 19.11 59.91 37.97 7.26 15.97 60.96 21.86 27.10 18.25 26.47 87.04 44.35 15.72 50.99 10.76 27.68 33.16 32.24 14.43 72.84 6.57 59.01 27.79 56.11 1.62 38.62 0.88 72.42 93.36 95.11 57.73 26.26 29.15 1.96 39.76 81.69 50.19 87.93 77.80 56.88 9.53 23.72 81.14 36.76 27.32 67.70 44.72 68.52 6.21 48.13 40.47 6.01 7.90 65.81 -65.51 64.67 43.06 23.92 92.48 90.96 41.98 17.36 17.69 8.60 3.33 33.60 49.98 84.11 28.22 78.49 87.52 33.35 8.34 1.00 2.23 19.68 88.83 64.81 98.64 95.87 19.68 90.38 9.93 27.30 82.95 79.17 63.05 74.98 26.23 43.25 59.91 63.11 69.83 86.67 89.02 13.20 22.00 72.05 43.37 73.71 38.33 24.60 40.34 6.55 79.31 28.64 8.81 75.47 99.04 94.66 71.08 90.30 54.48 90.44 47.92 30.33 88.94 8.95 97.14 75.74 65.37 44.55 87.85 44.41 45.35 86.38 90.58 55.72 96.19 64.20 96.35 72.83 4.29 67.67 85.74 22.27 74.00 60.65 25.04 5.77 83.95 95.57 58.92 50.45 96.78 75.43 44.72 7.43 14.24 73.72 49.52 19.51 28.08 22.93 -8.46 86.65 30.19 17.94 93.06 66.27 91.42 63.66 47.04 73.15 93.59 91.89 15.37 5.18 42.75 14.32 58.37 75.83 82.62 14.78 10.85 46.31 84.43 64.18 91.05 33.14 55.96 9.02 49.96 82.11 11.03 0.80 29.08 54.46 34.52 15.32 80.75 95.07 61.10 96.20 60.06 24.36 94.40 80.67 28.78 54.44 43.05 1.20 15.78 77.12 28.44 74.84 26.19 16.57 43.72 16.11 59.21 84.54 94.19 32.66 51.63 68.04 99.55 96.51 43.98 93.28 0.73 56.81 58.91 6.72 60.51 30.69 70.79 19.18 6.52 69.21 26.64 90.81 19.10 11.52 3.70 42.27 37.80 1.76 49.16 67.56 52.79 37.68 37.68 58.37 54.31 20.64 84.82 87.87 37.52 95.95 75.85 84.07 12.17 81.83 -99.12 90.25 92.64 23.87 64.13 60.55 83.58 28.25 48.07 79.60 34.93 17.49 98.00 50.05 45.62 87.38 98.15 55.10 20.71 51.77 35.05 84.83 72.90 86.46 22.26 94.76 34.54 58.23 54.41 79.67 36.75 77.28 74.73 23.46 48.51 87.98 75.82 86.36 68.55 59.45 74.63 20.17 25.52 44.85 51.03 68.95 23.60 38.05 5.59 10.05 13.70 37.12 80.76 35.36 26.46 86.40 1.66 3.89 57.10 56.97 12.39 77.41 62.09 22.88 89.18 59.60 35.98 4.22 63.29 47.70 88.66 74.83 13.33 84.85 91.38 62.49 1.19 73.00 77.86 31.06 89.22 86.07 56.37 86.85 87.65 92.12 52.91 5.69 79.12 30.02 43.39 84.55 28.29 70.61 20.24 75.08 5.47 73.66 79.66 16.84 -99.69 92.57 83.80 31.13 58.47 44.09 78.46 16.18 78.45 85.22 25.19 54.35 2.51 9.21 69.54 26.86 33.89 47.02 76.24 40.75 49.85 99.84 74.83 78.44 69.43 64.63 30.14 22.92 43.14 75.29 63.56 93.35 15.39 53.25 27.24 25.81 59.82 76.64 86.40 5.78 37.77 55.82 59.96 37.00 2.57 64.81 33.61 62.34 99.70 9.86 81.28 95.65 16.43 42.71 32.37 69.37 84.54 64.31 6.56 10.95 3.20 17.48 16.85 99.12 12.46 55.81 90.42 5.80 95.58 3.89 6.41 97.53 50.86 26.76 26.82 99.25 48.32 10.87 79.76 90.44 19.19 76.10 37.48 65.74 91.45 2.34 80.27 35.16 24.44 8.63 58.76 40.89 24.43 12.87 9.02 25.62 60.65 83.48 40.49 94.37 -58.35 65.92 9.82 48.56 42.86 6.49 30.31 50.29 98.74 98.35 58.98 87.32 23.88 10.76 63.73 11.20 28.44 7.84 66.22 63.41 16.68 98.08 62.02 29.63 20.94 43.51 18.94 52.14 2.90 70.17 75.33 36.64 42.42 44.18 74.23 12.21 34.96 67.07 87.03 88.54 40.24 15.73 8.09 83.08 22.68 50.64 37.71 10.49 83.62 2.58 69.13 14.10 56.34 33.60 19.55 30.60 92.15 92.04 57.26 11.90 81.69 55.87 97.62 16.70 52.08 29.82 16.78 14.99 67.51 95.52 82.48 94.94 97.56 89.70 78.38 10.65 94.56 29.37 50.03 54.06 84.02 89.82 33.89 68.40 16.21 51.08 23.88 74.33 85.62 14.60 60.72 79.53 11.90 88.60 95.44 44.67 56.35 94.76 64.20 80.56 -8.08 7.50 96.11 61.68 58.30 85.23 93.17 12.79 22.38 4.87 29.15 23.31 74.28 43.02 93.71 42.72 83.24 69.94 75.97 6.52 87.31 69.85 29.12 43.45 50.58 54.13 14.48 92.23 36.63 93.76 0.15 73.47 12.27 96.28 75.41 82.11 62.78 57.27 63.56 81.72 3.61 21.87 25.70 93.28 19.35 61.46 84.24 31.02 73.80 99.26 8.18 19.10 65.17 99.30 22.66 68.52 91.27 42.87 52.53 51.98 48.40 84.32 1.35 16.36 61.59 72.51 46.04 46.09 33.33 84.88 70.02 29.82 71.54 43.98 75.84 77.62 33.62 8.67 55.53 72.73 24.42 85.53 58.15 8.05 92.26 39.31 55.67 23.96 98.55 69.67 87.19 25.77 7.14 97.63 18.62 3.60 52.71 0.76 90.50 60.22 -68.58 17.02 35.67 42.10 44.98 50.58 55.24 24.09 71.36 78.90 72.80 33.89 46.94 8.52 8.41 45.73 55.52 83.64 55.79 32.59 61.94 71.71 98.13 57.39 52.55 16.08 69.16 69.52 53.54 36.85 0.20 78.38 55.72 52.26 71.87 62.67 4.95 7.03 46.37 64.01 54.94 28.95 45.20 66.59 94.45 92.43 93.16 61.58 98.85 60.14 46.34 82.99 98.94 66.17 56.33 73.65 9.98 0.73 92.56 89.71 46.25 36.47 36.32 54.66 62.89 23.32 14.53 60.31 86.62 39.18 18.84 23.24 29.93 94.84 78.98 38.86 90.08 81.62 94.97 73.52 46.32 61.36 29.21 35.04 43.04 31.36 63.73 48.00 35.02 61.71 74.56 81.00 74.97 6.02 14.52 58.24 4.44 12.57 96.43 43.31 -68.62 52.96 16.58 33.62 30.14 69.58 69.71 68.13 11.29 32.04 50.43 72.37 91.34 35.87 73.30 2.98 26.86 0.69 99.38 40.48 67.51 74.19 26.88 68.75 83.28 56.12 16.02 5.05 52.80 45.79 42.51 59.92 61.49 51.37 90.10 7.44 66.01 55.56 6.27 84.18 50.82 21.18 65.07 26.54 90.12 11.74 35.74 97.49 47.51 69.32 80.22 68.64 76.43 10.96 12.35 89.14 45.87 58.72 86.54 64.98 39.13 76.71 26.38 93.56 54.62 55.26 51.94 56.56 68.94 12.41 75.67 84.73 71.79 62.56 36.60 91.64 58.74 26.84 30.33 37.07 56.26 22.80 69.36 43.52 79.76 40.10 36.16 35.53 62.15 40.42 39.78 39.59 22.53 40.87 80.67 23.68 9.24 81.79 44.87 74.75 -89.85 58.49 40.93 13.15 88.80 64.65 1.26 49.07 15.09 85.32 53.64 90.21 94.94 88.99 51.45 68.37 45.91 31.54 15.96 32.98 40.12 89.93 79.53 52.55 15.14 3.97 79.82 99.46 52.65 1.92 49.82 79.26 64.09 13.71 59.00 8.36 58.85 46.72 62.44 92.24 75.66 19.63 65.37 7.33 38.43 21.88 86.27 78.74 0.39 79.81 51.29 29.44 36.19 41.93 5.14 21.97 45.10 74.03 48.48 27.27 95.71 43.49 36.13 56.66 24.94 36.43 0.06 82.16 36.73 68.68 92.93 20.76 94.44 32.90 82.56 0.32 56.50 43.67 33.34 55.43 22.28 30.25 49.24 3.42 50.17 55.37 4.80 59.44 64.80 11.03 77.97 27.02 80.77 72.98 50.11 71.71 58.42 99.36 97.21 24.15 -71.23 34.66 88.06 96.50 36.76 99.50 31.60 35.53 23.01 16.87 30.51 22.89 5.98 21.85 80.52 32.35 97.22 98.18 99.80 86.55 46.60 82.23 21.59 71.57 57.88 15.74 89.04 20.46 8.66 87.14 29.20 69.77 91.40 70.34 62.13 91.28 55.31 59.19 77.44 35.82 15.78 59.32 55.13 16.77 91.77 90.86 2.77 88.89 11.37 67.12 29.16 19.84 79.35 51.33 76.73 26.45 0.91 96.35 12.32 68.33 87.75 73.86 98.46 66.37 74.54 80.36 12.68 98.25 51.08 68.22 21.61 29.73 51.60 40.71 30.15 70.64 77.10 63.14 53.00 29.54 54.88 48.23 57.08 99.99 31.61 16.63 65.75 90.19 26.14 58.87 21.94 32.71 11.65 96.58 36.39 62.88 33.67 50.56 90.39 95.73 -28.90 31.04 14.19 73.48 5.73 61.78 24.06 72.13 88.84 50.87 99.63 51.73 32.76 17.12 37.33 0.78 37.50 26.31 86.58 95.97 83.44 19.11 14.74 63.79 86.82 37.41 96.89 32.18 72.87 33.69 16.10 3.35 61.19 80.34 32.83 52.40 4.60 90.09 51.93 62.25 2.18 60.72 72.60 50.47 41.15 44.45 82.34 64.91 16.58 27.44 31.37 77.98 13.78 25.90 60.19 91.47 78.06 11.96 86.28 37.12 33.62 38.94 65.36 73.78 98.08 89.99 53.69 37.72 34.68 89.62 40.01 5.42 89.94 68.67 61.87 80.01 69.46 70.49 71.36 91.94 44.72 44.71 72.79 99.03 28.07 49.29 37.00 13.49 52.35 82.26 7.16 49.73 46.35 97.63 34.70 3.55 24.51 99.48 42.23 23.50 -8.69 37.97 95.50 17.21 51.15 95.24 30.80 9.89 63.42 62.86 47.88 82.61 33.39 91.66 38.66 75.61 51.11 83.99 90.99 16.37 59.44 94.42 55.63 21.59 96.12 47.81 2.20 89.73 1.97 99.31 28.78 37.84 90.86 51.38 18.08 76.00 59.45 96.68 29.10 96.30 69.10 11.88 13.22 32.61 4.95 86.85 63.25 66.55 4.27 75.29 99.85 50.06 5.07 48.85 14.94 42.61 92.88 84.30 94.52 52.04 66.97 66.45 29.40 90.05 25.77 75.63 22.53 35.58 90.51 39.74 84.13 4.87 46.03 50.04 46.44 36.23 30.73 91.88 68.62 20.28 6.86 48.97 77.32 29.76 81.70 31.78 55.46 50.85 55.18 81.28 55.17 94.44 83.80 49.75 22.23 24.29 46.10 77.91 58.94 64.05 -99.94 47.66 35.87 56.57 14.27 16.47 72.95 81.28 28.24 69.57 99.09 56.01 75.05 19.49 26.53 69.50 49.41 1.72 99.87 61.50 30.48 26.72 5.58 50.70 20.51 35.01 16.30 1.16 43.24 7.40 73.69 64.91 87.77 35.56 48.70 28.11 16.57 53.49 58.96 57.54 82.49 60.40 19.22 15.80 60.97 53.26 43.30 17.14 1.01 4.42 33.33 6.29 43.42 59.03 5.81 90.07 53.76 54.69 94.82 44.72 78.83 48.74 51.00 56.21 55.52 80.31 57.60 97.49 99.09 45.78 20.31 41.87 62.65 30.24 64.07 34.44 51.33 90.81 24.39 88.29 21.06 68.65 18.77 63.93 49.10 46.61 4.49 57.37 41.38 29.19 16.46 61.41 71.87 64.30 40.82 96.98 82.40 78.36 59.72 72.70 -48.11 40.15 58.14 58.98 19.28 91.50 21.12 81.14 5.87 41.37 12.56 84.97 51.69 30.54 42.67 9.82 8.13 41.99 97.17 48.66 93.98 25.42 10.27 53.98 9.98 43.32 73.26 28.29 17.97 9.85 35.11 41.50 40.22 71.12 60.03 17.85 68.85 56.34 19.57 97.62 85.90 6.23 25.09 8.56 26.98 68.99 67.23 70.89 17.43 30.94 20.32 74.69 56.50 74.32 47.33 86.37 16.78 85.04 74.62 13.62 80.64 24.87 26.37 19.35 93.05 62.25 76.96 76.70 86.82 87.22 77.64 11.95 16.37 27.84 84.58 76.23 99.43 12.35 72.22 12.69 31.44 12.90 13.12 44.01 69.02 39.97 80.31 93.37 36.62 9.06 54.71 90.09 65.08 69.97 54.23 92.33 47.01 92.49 32.71 10.11 -28.92 11.36 52.78 25.22 23.83 73.52 54.74 42.29 16.02 54.81 58.26 67.57 23.77 36.72 80.09 3.04 79.67 42.67 49.81 6.41 74.10 7.83 77.20 99.04 94.92 67.11 79.32 81.54 99.51 61.67 74.31 41.24 26.17 52.54 55.74 88.00 75.32 12.36 89.61 76.04 89.95 15.63 23.13 38.51 40.52 15.17 44.80 50.89 41.04 99.09 31.88 42.23 64.32 80.57 88.08 7.57 17.66 40.53 19.79 82.76 28.21 20.06 74.30 82.07 90.55 89.36 71.34 34.18 15.97 3.29 96.92 42.72 68.04 82.97 43.27 92.10 87.53 12.93 99.65 37.60 68.34 0.01 7.36 57.62 98.78 46.17 45.05 72.60 83.49 72.23 29.74 6.15 73.06 52.74 27.91 68.16 18.72 74.23 70.78 45.46 -62.05 71.74 97.77 8.54 71.55 1.39 70.72 97.89 34.17 10.59 8.60 73.70 93.28 65.84 59.97 91.57 93.57 93.43 48.50 48.90 36.82 48.80 15.43 40.01 51.76 29.13 44.41 78.47 11.35 1.02 78.27 32.97 70.84 87.52 62.36 10.31 59.14 98.41 41.66 11.66 54.72 96.37 7.21 51.08 54.39 28.71 24.52 63.76 85.09 69.31 50.62 17.44 24.13 19.61 79.68 59.28 70.65 35.41 47.41 61.87 86.52 56.17 23.33 48.34 46.77 66.96 9.10 44.94 28.42 28.58 28.62 51.64 20.22 84.71 56.84 4.02 65.00 98.62 64.31 92.97 96.06 43.14 17.74 90.21 19.58 24.79 81.14 84.82 29.60 36.04 68.67 29.63 84.31 33.48 30.57 50.28 45.61 94.10 7.70 84.68 -53.78 61.58 11.26 87.27 94.18 29.49 42.32 97.14 81.54 44.93 69.22 31.99 68.22 80.69 9.67 45.68 70.43 63.24 21.57 79.16 0.32 64.04 95.84 22.36 32.46 34.70 77.01 84.11 20.37 6.86 31.18 57.04 48.43 50.56 30.57 93.85 74.84 25.15 36.96 67.22 77.88 47.12 79.06 8.30 78.24 50.68 30.03 66.68 57.74 33.13 39.40 38.69 14.50 82.76 18.78 81.57 35.87 38.39 86.93 66.55 14.14 93.14 12.80 95.67 97.19 0.28 61.66 66.87 63.84 92.80 33.86 89.32 83.33 72.89 89.66 92.68 2.63 5.97 49.23 18.69 1.31 44.41 73.24 26.82 93.49 52.29 56.45 99.23 60.29 42.03 98.68 98.91 57.74 77.56 6.22 15.21 84.42 51.73 26.32 87.54 -43.93 96.92 31.24 99.65 95.62 99.81 29.35 34.94 28.66 32.16 7.62 87.55 14.58 76.65 75.04 29.62 51.19 76.34 60.02 12.70 43.46 61.12 61.83 86.79 46.64 23.47 59.88 0.85 34.26 30.20 22.90 22.77 99.33 99.68 28.54 35.77 82.70 88.11 68.07 45.54 57.80 53.56 52.79 26.70 89.72 42.10 56.59 64.35 69.78 50.79 5.83 51.86 65.92 96.43 42.22 57.09 22.14 31.41 33.79 77.63 16.57 88.01 92.23 46.97 95.37 87.29 31.13 30.01 71.42 90.41 62.33 53.75 20.17 32.05 44.86 9.66 68.38 93.11 46.96 73.91 7.32 38.91 67.59 85.28 66.73 84.37 81.90 91.82 85.70 53.38 94.04 96.97 79.25 89.50 25.69 47.99 47.32 13.92 37.73 49.07 -95.40 33.59 46.01 3.08 69.77 88.15 72.89 57.47 63.80 72.18 33.57 14.40 29.91 80.37 77.10 25.24 31.50 46.78 97.56 51.09 86.43 58.77 19.89 62.98 51.12 59.31 85.13 79.09 1.61 85.17 14.74 67.59 69.40 65.03 94.47 88.61 56.91 94.42 23.69 6.41 17.69 60.33 72.63 69.44 63.68 20.40 24.72 51.17 33.43 4.68 97.70 23.38 21.20 41.21 78.21 39.30 41.53 48.20 13.79 80.87 40.24 74.42 99.87 75.00 51.43 45.94 16.81 64.40 20.61 55.06 40.46 50.47 43.24 31.54 93.36 8.39 95.49 27.91 77.48 4.06 67.79 24.27 13.70 17.95 22.97 67.35 99.32 70.54 58.32 55.98 2.83 76.87 41.30 66.46 61.71 8.53 97.59 41.07 97.50 97.03 -41.80 29.99 28.75 15.66 25.29 95.81 72.71 65.86 72.88 77.44 77.26 54.25 80.88 78.14 72.57 99.29 63.07 52.19 38.47 4.56 79.35 41.33 60.10 5.34 13.46 94.30 51.64 50.17 70.26 79.22 32.38 82.93 5.13 17.36 88.68 94.02 69.51 88.09 63.39 59.43 67.52 84.65 79.36 80.39 77.97 91.03 33.46 19.12 45.01 59.47 43.57 41.03 79.18 23.59 12.32 30.86 51.77 93.33 28.51 42.41 51.93 84.21 33.65 18.61 78.77 86.20 92.94 79.76 94.72 96.47 95.66 41.53 8.23 19.91 28.40 90.35 43.80 9.71 94.16 92.02 77.96 80.92 29.31 88.81 71.81 19.16 47.20 97.25 75.73 6.71 84.28 19.46 78.44 74.89 87.34 54.87 32.93 18.36 60.49 94.43 -85.74 74.79 75.18 57.07 61.39 72.52 2.33 82.05 83.42 45.15 66.32 85.62 77.72 16.64 64.69 97.88 63.45 43.02 74.43 6.16 37.07 51.91 4.82 36.09 64.65 40.16 4.52 94.80 4.91 19.78 5.37 49.44 3.65 90.04 35.90 17.53 33.48 79.36 24.97 70.38 66.02 88.90 80.93 73.16 58.95 58.68 90.88 5.71 42.86 31.46 1.25 58.66 13.37 47.55 90.27 48.92 48.98 13.08 55.84 51.72 2.18 85.25 75.57 38.44 25.21 94.85 36.14 91.59 80.24 67.58 90.81 50.92 60.87 94.03 84.58 37.65 68.15 35.91 76.24 5.20 98.04 12.60 90.83 67.92 19.21 17.36 22.56 38.33 60.29 72.54 29.53 89.74 51.16 75.85 60.30 21.30 25.99 45.63 64.51 64.63 -72.94 27.53 37.57 68.75 89.44 39.97 74.13 52.99 14.68 31.46 36.54 22.58 4.62 78.11 25.71 2.34 43.65 35.99 70.68 89.65 22.46 74.14 34.56 72.60 27.41 74.61 95.44 60.84 81.16 3.96 14.65 14.03 40.11 74.66 80.73 28.07 12.56 27.16 13.93 20.34 12.49 77.84 83.64 75.63 37.43 62.19 88.39 69.48 69.67 30.54 74.78 18.78 55.85 50.08 80.22 54.24 57.19 66.20 30.08 44.06 35.85 57.40 68.66 12.55 25.58 50.50 31.77 85.38 0.69 83.76 76.38 47.03 3.27 90.85 20.38 23.72 23.98 87.73 69.67 17.04 38.08 33.42 2.06 34.33 39.35 24.53 82.95 33.27 99.02 87.24 13.14 69.03 12.78 46.04 27.38 81.23 52.53 45.36 96.22 63.33 -8.81 83.24 53.52 77.51 18.46 13.22 48.65 79.34 15.67 53.77 30.00 35.27 26.91 85.36 84.85 90.61 82.62 33.53 69.79 92.53 1.32 48.51 39.36 82.63 6.78 60.30 95.39 89.06 40.72 1.92 88.24 53.19 8.21 5.42 24.41 79.99 57.17 22.73 10.86 19.01 13.65 31.24 82.73 13.93 67.18 0.20 76.54 66.47 66.93 73.48 20.78 37.53 84.32 21.84 41.24 10.07 40.14 75.82 97.41 37.32 94.35 6.59 84.32 56.49 30.81 38.92 15.00 65.89 0.86 65.57 88.19 49.68 81.78 80.70 18.71 70.89 77.21 14.02 7.10 17.35 26.31 76.56 80.92 36.95 76.76 88.36 17.50 73.27 16.43 32.52 11.67 79.51 87.13 11.30 50.39 78.44 92.14 41.52 69.44 79.58 -26.49 92.76 64.70 49.55 33.32 92.06 74.92 15.23 25.19 27.96 84.07 16.25 80.51 27.49 99.16 13.19 12.65 55.69 70.51 64.64 3.51 44.50 46.86 21.14 31.59 32.34 5.51 46.52 80.64 43.15 27.00 82.11 6.20 28.66 77.73 98.93 95.07 52.81 27.63 33.66 61.98 93.19 68.25 3.01 49.78 81.11 15.32 93.22 99.40 20.77 0.21 25.35 36.58 28.36 1.51 43.58 4.28 15.73 17.02 17.91 4.57 31.09 49.45 37.20 48.08 17.42 67.91 14.20 85.30 29.71 3.79 48.01 11.57 74.88 22.92 14.12 36.12 37.16 64.92 80.81 11.62 15.24 97.94 27.62 35.46 5.47 98.93 45.04 8.92 19.14 70.06 61.95 3.57 92.00 9.34 99.28 29.77 62.79 23.10 91.08 -89.05 34.17 37.77 86.82 90.66 31.50 32.89 83.46 68.59 53.27 99.18 91.86 4.35 82.93 64.24 9.29 72.61 43.21 38.72 60.11 68.82 43.20 61.52 80.35 63.78 30.69 63.68 92.78 81.00 11.16 78.31 68.95 99.64 43.27 99.04 27.41 0.19 12.36 19.71 56.94 73.04 29.26 59.97 98.04 28.54 14.92 70.77 94.87 80.36 90.54 14.61 43.83 7.18 37.00 67.22 43.28 19.51 73.60 46.21 97.60 86.53 8.18 25.72 81.80 45.74 54.57 31.57 75.25 13.76 80.63 30.35 65.05 10.97 58.34 50.65 79.80 95.04 14.24 40.29 53.46 94.09 66.62 32.06 59.36 5.50 93.95 78.60 11.70 73.42 44.65 49.64 50.96 72.52 78.34 93.92 59.25 85.89 92.43 91.09 28.32 -17.51 1.41 78.92 55.77 62.73 37.74 69.19 19.44 77.90 42.72 93.12 32.92 71.07 54.15 42.96 49.28 96.78 92.44 75.59 76.03 23.56 37.86 16.83 58.68 61.35 4.67 66.67 64.64 41.38 16.79 52.86 9.21 0.76 51.27 4.07 14.20 61.24 22.73 5.86 9.93 83.66 14.69 55.91 31.66 47.68 84.00 24.43 27.24 30.92 27.67 51.25 76.07 51.42 98.08 17.69 70.87 39.58 51.27 22.26 2.30 9.86 30.45 13.50 11.24 96.02 25.04 28.04 83.62 74.61 20.82 88.25 57.83 22.67 4.69 48.38 86.27 64.15 12.71 91.44 17.05 36.48 96.82 31.10 94.36 29.45 75.89 3.07 82.40 49.30 46.87 86.47 37.16 29.79 80.28 83.64 8.13 58.13 46.50 36.76 85.46 -90.45 29.28 93.97 24.10 32.04 34.82 5.12 35.87 36.60 73.90 96.11 42.46 83.19 95.84 34.11 76.85 83.55 22.07 19.40 20.50 42.52 15.48 26.17 6.03 18.05 0.72 3.12 3.11 62.92 35.21 22.78 2.76 37.58 84.33 97.54 22.50 6.86 73.51 18.05 15.76 95.05 24.01 41.92 52.42 11.02 56.56 34.30 93.57 48.93 67.73 27.25 81.90 71.94 57.28 5.89 58.84 43.79 67.37 16.19 52.55 74.91 44.46 94.12 86.07 96.25 83.49 84.93 5.46 32.12 55.40 80.02 96.35 48.31 10.39 73.50 40.41 98.44 32.32 26.73 22.02 14.24 19.20 52.77 48.31 67.65 8.76 47.33 66.46 66.30 49.81 23.49 66.76 89.00 20.58 86.50 80.28 99.69 53.74 85.55 13.75 -67.88 82.53 50.67 79.33 50.29 80.04 19.32 47.98 77.54 89.41 92.60 59.42 72.62 9.61 74.63 0.85 45.14 87.99 46.26 23.35 1.92 25.22 50.77 93.90 19.03 20.59 40.47 51.12 6.80 22.49 33.10 24.46 1.99 2.95 93.79 59.94 72.21 6.82 68.86 39.94 31.01 74.66 30.80 74.81 91.89 53.52 27.71 1.88 66.92 52.23 5.74 39.97 78.25 51.91 86.41 44.93 83.82 52.03 59.87 22.50 51.00 91.88 71.06 99.87 33.03 80.15 83.44 83.35 78.68 49.09 82.85 42.31 63.19 65.06 94.60 19.97 42.78 77.08 39.51 11.32 54.26 6.11 81.58 94.61 96.63 32.17 74.14 4.72 55.45 74.16 44.77 27.58 21.82 19.84 8.37 81.30 67.19 10.51 26.36 15.82 -91.72 3.47 99.09 99.99 45.80 30.40 90.87 68.06 65.60 51.85 53.70 6.35 13.59 27.44 84.02 48.01 80.45 52.07 19.17 51.79 78.17 33.04 74.39 18.03 2.70 22.05 99.33 61.68 21.67 5.84 44.69 53.98 21.19 39.41 46.30 97.95 56.21 0.66 75.75 93.47 95.29 18.80 96.34 24.46 33.90 46.61 75.28 76.48 90.33 8.20 83.97 16.07 1.10 4.05 74.24 11.67 68.53 76.37 4.86 88.13 30.77 66.99 49.23 45.04 79.93 37.57 79.22 36.13 33.70 79.09 49.94 91.95 84.59 11.04 89.37 97.91 95.18 79.96 12.20 55.01 50.99 90.27 91.93 13.72 75.95 57.27 27.90 95.68 43.52 79.34 92.60 36.16 95.17 23.14 73.75 3.92 27.49 46.62 47.42 41.51 -85.32 94.31 65.40 86.58 3.97 49.83 44.22 96.09 33.59 22.40 91.68 78.21 27.65 50.04 72.29 19.35 13.41 73.31 49.43 37.19 66.47 21.03 58.74 28.50 15.61 14.17 5.49 92.49 5.57 95.86 86.63 31.99 88.80 39.24 18.23 45.42 7.68 74.08 71.93 13.94 32.15 70.68 99.03 86.65 92.34 7.50 11.45 81.23 4.58 94.33 59.69 93.22 21.45 48.60 88.38 54.34 54.78 82.01 95.59 97.25 95.56 36.25 10.59 46.54 52.69 93.42 78.25 44.01 15.36 48.26 71.92 86.68 51.13 71.98 18.19 1.55 95.14 59.36 64.95 18.16 44.13 5.62 60.55 7.51 83.04 32.33 45.61 6.45 51.31 98.11 62.16 99.84 90.12 33.86 3.30 31.93 17.85 29.05 71.47 4.67 -50.55 72.23 64.79 25.87 4.73 51.30 50.59 30.72 69.96 76.42 58.51 84.54 68.34 42.42 3.03 23.08 45.44 18.72 66.14 30.86 54.31 6.96 33.14 37.75 21.29 68.59 67.37 91.94 24.38 33.68 44.02 70.75 49.25 74.90 95.40 47.25 80.19 74.91 90.80 62.78 8.33 63.44 58.58 90.99 95.31 82.45 90.62 16.86 43.43 91.86 92.66 13.58 38.09 21.66 87.28 47.31 57.06 1.85 39.20 81.11 22.69 75.29 11.58 54.29 43.48 53.49 30.22 26.41 17.99 79.27 11.49 86.52 23.34 54.92 74.83 67.92 76.95 42.27 6.55 28.75 98.11 88.68 0.72 94.66 3.32 63.19 54.64 37.62 76.96 54.02 26.19 86.34 57.49 53.92 65.77 15.11 8.07 73.32 50.19 24.22 -13.99 95.34 78.62 94.56 34.48 27.42 29.63 93.11 59.71 89.65 16.98 88.94 84.46 85.17 59.68 75.11 20.18 3.20 60.58 74.75 84.64 34.74 46.98 18.17 25.67 14.25 61.25 41.21 43.15 73.79 44.25 61.30 35.42 10.63 15.73 14.71 79.29 7.80 53.33 28.57 11.22 62.26 22.75 70.86 56.51 42.28 69.00 52.03 0.67 17.51 74.38 73.13 84.03 49.50 32.91 99.88 35.34 33.53 88.70 16.76 13.48 65.28 19.54 63.43 88.15 78.19 16.06 34.38 73.19 64.42 72.36 32.71 21.93 43.39 98.14 13.58 22.98 58.21 5.57 18.60 86.28 61.41 86.18 1.28 84.92 6.65 74.56 95.98 67.93 81.64 12.61 59.72 90.20 22.91 29.52 23.12 96.88 14.14 93.27 8.19 -83.90 85.23 29.72 51.20 27.40 94.88 63.57 39.05 79.16 78.44 66.32 90.72 68.38 60.06 68.35 93.14 60.99 32.24 53.25 67.29 37.43 39.74 48.06 88.45 50.11 65.85 92.98 18.86 83.10 71.13 7.40 32.47 6.00 8.04 27.22 54.59 97.67 41.58 91.67 18.54 18.03 77.08 22.96 51.68 34.05 69.39 24.24 61.70 88.32 46.19 58.75 63.00 30.85 39.74 7.48 9.08 96.87 95.36 27.75 80.89 32.16 33.42 76.99 47.79 22.79 25.96 47.82 59.03 39.71 18.97 10.69 96.26 17.67 49.76 63.43 23.73 87.67 59.57 50.65 81.74 69.40 51.02 47.80 16.30 72.65 20.80 61.93 78.54 14.75 85.65 8.15 6.13 42.31 61.65 19.51 76.08 16.51 1.97 15.68 97.12 -11.51 29.32 70.65 99.85 41.02 17.95 48.06 90.86 40.49 25.02 33.95 12.73 12.23 16.69 85.18 56.73 49.41 60.93 12.32 1.76 48.39 27.38 44.47 29.89 97.12 84.73 88.01 30.11 96.62 59.51 62.39 97.18 53.48 6.34 45.61 86.49 48.33 30.39 20.41 82.21 87.05 4.18 21.89 35.92 13.39 17.80 22.28 37.61 32.17 78.75 33.34 38.77 37.40 91.12 59.78 14.85 43.36 14.70 94.51 79.53 37.39 62.38 7.27 38.01 80.79 12.31 82.05 72.22 11.11 33.84 56.89 46.13 70.62 93.24 63.48 27.09 66.50 11.43 17.06 43.09 99.15 78.12 25.61 86.81 78.65 73.86 43.34 30.64 15.69 39.87 13.38 84.45 40.91 15.39 11.51 5.82 33.10 5.73 89.92 85.38 -27.51 68.48 53.80 13.20 70.13 67.76 36.08 47.16 43.60 52.83 53.89 22.81 51.44 8.03 34.91 21.83 77.39 29.48 90.62 10.56 56.08 93.14 35.90 65.53 50.88 53.65 42.87 52.52 91.46 60.66 87.65 8.23 10.14 66.07 71.71 14.99 72.53 65.73 76.99 94.92 99.07 64.92 20.79 29.55 27.02 5.44 69.24 7.05 6.94 25.35 79.80 46.94 85.59 82.63 4.05 16.97 62.95 84.66 11.15 81.26 11.64 13.54 49.44 27.26 88.51 85.88 0.95 28.37 69.55 30.72 35.20 64.84 8.62 17.50 46.37 5.62 68.14 3.01 99.02 9.86 37.02 32.78 36.83 48.31 52.32 20.00 31.72 9.12 38.45 99.96 48.32 21.96 3.93 64.96 41.21 31.26 43.23 92.74 68.37 6.49 -68.19 82.71 77.44 39.63 85.16 47.82 55.26 38.79 36.34 66.05 62.68 59.87 66.16 3.41 20.69 75.59 43.21 25.05 43.97 4.38 76.21 60.41 84.79 83.45 18.93 70.07 67.63 50.74 37.95 9.04 82.31 6.58 13.46 96.01 65.99 24.99 60.93 29.85 73.04 2.01 51.51 71.69 45.93 88.31 29.52 11.53 73.65 62.90 7.62 6.63 68.68 62.61 45.71 18.82 52.11 83.12 41.07 3.11 18.81 47.22 23.37 76.60 29.67 16.54 1.04 90.19 63.96 95.49 99.25 58.13 98.86 5.64 93.62 38.84 34.12 54.81 81.03 48.08 75.12 39.48 15.78 95.63 29.22 88.93 40.65 67.40 0.09 84.80 9.88 8.97 91.53 35.94 65.54 51.84 18.03 52.68 19.96 21.66 17.69 4.27 -78.03 49.51 51.76 5.24 84.08 72.95 29.86 38.93 37.59 20.21 14.67 66.54 80.68 72.65 63.61 27.55 10.13 29.38 12.39 75.32 52.07 58.78 95.49 64.09 98.27 92.89 48.68 91.99 27.91 14.50 16.16 54.95 3.65 58.81 50.85 38.75 5.47 15.25 36.95 11.41 73.87 40.96 17.57 97.13 30.16 28.97 70.29 37.72 12.07 72.99 14.99 69.19 8.90 74.22 94.40 86.12 61.75 49.34 20.17 15.86 20.95 50.51 58.08 81.67 26.53 55.15 78.05 79.64 9.32 55.11 70.53 97.04 90.81 45.20 7.32 94.32 4.90 12.83 83.31 28.04 70.41 6.39 83.94 37.16 80.74 19.13 62.10 99.59 53.21 52.66 61.50 72.59 72.30 88.23 97.08 31.76 16.07 47.67 36.32 77.74 -84.57 75.57 89.25 87.61 7.52 49.93 28.50 75.77 22.90 92.55 54.05 1.86 36.83 78.73 22.33 2.08 57.21 75.10 31.39 76.46 8.52 83.13 43.83 87.99 95.24 27.96 19.11 84.77 23.07 41.68 39.66 96.82 10.49 79.26 44.86 78.53 63.92 57.89 12.03 3.44 54.29 57.94 62.21 55.69 17.40 32.74 69.65 67.99 91.93 49.76 62.15 42.66 65.60 34.65 76.05 84.15 93.86 65.15 96.09 41.66 75.02 91.49 9.00 83.42 0.67 38.13 53.98 83.38 75.88 3.32 80.33 97.77 40.16 42.58 42.44 71.21 58.56 37.77 41.85 25.98 83.06 5.43 62.12 79.23 99.89 47.86 70.66 24.03 18.23 98.41 30.13 72.33 48.94 41.82 61.72 36.35 24.65 60.71 13.85 75.59 -17.09 19.08 15.28 32.22 76.14 79.90 97.30 98.93 91.34 82.92 45.35 49.17 73.12 68.19 41.09 12.85 88.29 11.48 79.72 64.53 75.36 77.88 74.66 0.37 37.27 19.97 84.78 8.02 12.40 15.48 77.37 56.77 7.10 85.20 77.05 8.90 38.21 29.66 66.38 85.31 94.97 43.02 51.76 47.39 63.36 67.43 45.28 50.93 83.85 56.66 66.50 66.39 85.58 85.14 51.24 39.82 98.02 14.95 25.82 68.71 75.08 33.82 48.13 69.97 85.05 2.91 25.22 25.75 72.85 80.13 13.21 17.94 34.05 72.83 53.12 24.13 29.66 99.56 75.80 23.11 2.36 98.77 93.45 14.23 66.97 82.68 91.38 10.37 39.75 90.24 62.59 54.69 28.89 96.40 14.31 47.06 65.31 73.68 24.40 15.23 -40.26 57.27 89.48 96.79 89.44 86.73 32.69 99.95 51.29 3.99 88.75 33.08 33.24 65.71 28.85 56.57 90.20 15.84 29.88 17.64 65.74 91.24 49.75 1.84 33.84 29.41 16.99 41.82 91.44 88.82 50.14 16.27 32.13 77.26 54.64 75.43 41.14 79.44 78.26 39.32 99.42 20.44 15.37 17.42 95.21 77.26 45.01 95.75 63.45 25.07 98.82 7.36 40.65 24.59 9.95 13.11 50.36 54.64 7.50 1.50 4.69 94.99 39.11 24.41 14.50 57.98 54.12 2.00 21.69 80.66 92.78 12.26 68.27 83.05 55.26 42.21 11.86 85.93 5.97 20.14 86.63 98.70 22.93 71.46 83.94 35.04 22.02 44.49 96.11 85.14 90.31 8.20 78.57 93.48 80.30 56.40 32.41 5.06 20.54 94.28 -24.80 90.96 11.98 48.16 79.72 10.07 73.23 26.66 33.08 31.00 91.60 81.43 68.65 95.59 12.63 20.66 70.03 73.29 19.86 39.49 99.16 50.75 28.67 87.86 75.80 8.53 29.35 77.56 65.24 74.29 44.45 39.53 49.08 3.09 1.24 91.10 72.88 35.80 8.38 99.83 61.90 66.37 17.43 1.33 24.31 71.96 72.36 97.89 21.16 39.26 34.93 59.45 72.04 80.65 93.35 25.54 33.45 77.09 35.30 6.89 43.33 63.76 93.99 80.47 6.64 61.23 92.65 52.49 97.62 25.89 61.90 68.66 59.02 76.96 26.31 93.44 29.86 72.95 55.24 30.87 13.88 13.87 78.73 98.22 39.40 61.57 77.83 86.86 7.98 38.64 34.59 25.23 66.18 70.32 75.43 58.10 56.37 40.15 72.38 34.50 -76.72 90.39 74.97 11.39 42.50 17.91 24.88 97.63 67.09 76.48 27.25 90.85 2.23 22.93 19.04 50.06 88.51 10.74 28.28 70.50 91.77 93.93 5.35 54.47 98.31 37.99 12.61 21.24 1.93 13.81 83.93 70.07 14.86 15.10 73.46 48.35 29.14 67.57 87.94 57.72 58.55 2.05 8.62 69.79 54.03 23.92 21.17 19.20 86.58 99.24 79.70 0.11 98.05 53.12 68.12 80.59 37.79 55.55 98.12 98.58 20.17 20.05 23.41 29.68 69.61 81.54 97.90 29.31 99.57 34.29 5.33 75.09 99.90 44.00 74.18 26.93 1.36 30.71 15.08 72.55 10.30 76.26 93.58 37.26 7.37 22.91 52.98 10.55 28.73 98.29 66.31 26.47 10.58 73.56 9.69 50.63 78.06 79.31 22.19 11.28 -70.72 93.74 68.89 77.91 74.29 34.37 26.85 60.10 56.09 33.81 41.82 31.81 5.89 24.09 9.86 6.68 75.30 28.65 98.15 47.75 95.08 56.88 21.41 5.44 15.02 64.40 65.61 33.80 46.76 15.41 83.21 41.42 90.35 16.26 36.59 77.61 33.87 76.02 55.43 56.09 4.36 14.98 8.32 67.56 71.06 61.18 52.99 72.96 58.83 31.24 96.67 3.00 38.78 37.35 36.17 81.09 11.79 7.44 80.65 67.25 64.09 82.47 66.06 99.87 62.80 19.59 80.52 69.54 59.74 23.16 73.01 33.16 16.42 23.99 27.29 90.48 2.67 53.61 5.74 9.49 31.07 5.44 56.33 85.31 24.52 93.85 99.88 84.83 41.18 18.68 68.21 2.64 11.16 50.00 25.81 52.15 57.20 98.27 13.19 96.08 -60.12 19.80 26.92 32.25 82.30 54.76 72.22 20.56 39.29 12.16 10.17 83.19 19.84 33.97 54.75 56.46 28.59 89.27 71.67 40.25 57.30 86.57 3.05 81.25 67.38 24.10 55.81 43.44 43.02 24.71 30.97 95.62 78.27 22.89 36.18 83.72 60.64 34.82 59.41 71.41 58.99 81.31 49.40 45.68 74.44 50.05 29.53 13.87 40.84 93.23 77.85 9.47 85.99 56.11 6.32 34.85 38.71 43.21 72.03 9.16 13.35 7.27 98.94 67.97 89.22 28.34 3.74 82.81 27.67 5.60 85.17 68.26 70.59 0.22 47.86 14.31 98.98 4.10 72.55 83.42 58.71 5.98 48.56 19.58 23.01 59.34 27.90 2.80 60.40 84.36 83.66 34.88 71.98 34.62 9.89 16.94 0.24 5.60 12.24 67.28 -0.28 5.36 93.79 97.56 57.10 42.88 41.00 34.88 16.01 75.54 32.33 42.80 47.69 10.53 98.00 67.85 96.02 6.39 88.05 82.45 91.55 98.71 90.18 96.51 33.08 26.42 0.24 90.72 90.53 36.96 63.29 24.65 90.50 59.47 75.82 0.03 87.78 13.85 16.18 58.53 31.17 25.20 77.79 54.73 15.96 77.85 52.93 10.53 98.67 22.99 54.59 24.37 62.15 82.56 85.49 65.02 58.97 95.42 0.92 5.09 88.46 69.20 72.16 49.88 92.41 58.64 77.91 91.88 95.18 37.12 22.06 46.30 63.34 72.43 94.60 63.13 30.88 34.07 17.26 26.27 53.47 40.00 77.82 31.18 35.25 21.99 91.40 88.70 69.92 17.07 61.34 10.90 93.34 37.01 73.20 86.91 68.35 22.37 76.65 94.57 -13.77 87.73 48.30 35.74 32.55 59.68 55.50 89.76 8.42 70.08 39.29 71.21 9.06 80.67 45.84 7.50 65.01 37.18 70.83 71.02 19.62 15.40 32.01 18.29 23.72 54.27 16.79 74.94 38.18 7.24 51.23 21.75 92.73 30.66 9.71 4.71 32.78 77.34 53.12 56.29 36.80 50.04 50.72 23.77 96.28 17.62 18.19 14.44 78.68 11.47 7.93 85.03 72.87 27.90 3.91 13.85 77.78 76.15 82.05 95.87 40.67 31.94 11.21 44.82 82.73 31.40 13.49 47.48 21.26 65.42 22.95 27.73 17.86 61.10 40.29 99.60 9.25 94.78 27.67 16.13 10.45 99.80 89.86 17.50 80.73 26.58 58.84 16.13 59.79 13.96 12.44 7.71 70.60 54.17 76.49 62.28 94.79 87.37 71.88 31.88 -80.78 90.22 18.37 5.09 40.76 0.14 80.73 12.04 45.42 33.33 70.37 44.40 64.36 38.38 25.50 66.38 80.75 86.07 66.21 69.31 84.48 16.32 12.99 92.85 75.97 41.44 93.27 78.19 66.20 3.90 62.73 45.63 72.02 88.50 7.51 77.92 46.59 43.41 19.47 86.87 94.91 5.47 42.69 32.00 55.39 63.14 33.13 31.75 61.46 64.98 49.51 63.21 93.93 11.07 80.76 2.63 69.20 99.26 77.18 42.56 6.76 88.42 25.49 17.30 80.76 57.29 22.42 29.58 86.34 85.33 66.28 4.70 41.41 9.99 8.16 99.52 54.87 37.35 19.96 81.80 18.94 30.74 28.48 13.39 3.78 49.75 14.28 9.88 5.30 55.62 34.99 22.95 13.72 8.43 59.79 33.74 75.90 31.27 59.21 1.53 -43.75 49.55 35.81 56.06 34.30 63.07 53.76 59.72 33.26 75.23 26.86 25.06 1.83 53.16 61.00 69.85 5.10 66.95 88.67 90.20 15.87 30.89 63.12 77.16 90.39 63.29 46.07 31.07 1.43 23.43 59.29 81.95 86.54 17.22 21.57 47.18 43.32 18.41 72.46 7.57 65.60 88.96 91.73 70.26 11.26 48.45 9.68 69.64 40.57 93.55 57.65 76.58 0.54 43.64 87.98 80.31 53.96 66.87 46.52 44.31 2.96 45.94 83.05 51.81 84.83 21.53 81.65 45.63 42.91 77.11 54.66 56.92 29.79 61.12 57.27 41.98 63.19 88.21 4.42 29.68 84.20 61.69 7.68 82.44 6.19 81.03 80.03 13.57 33.27 62.68 6.68 3.83 89.24 83.52 26.37 25.42 20.48 38.80 81.38 30.69 -73.75 29.86 27.71 52.31 45.19 2.11 55.52 4.90 53.37 53.20 47.37 54.61 25.02 83.43 97.38 83.62 19.69 57.59 30.47 26.21 14.20 27.60 14.94 32.22 90.71 55.31 48.88 79.87 39.29 85.01 65.62 42.71 45.83 40.43 53.21 67.75 53.41 15.90 20.18 71.79 18.52 92.48 34.31 93.23 74.84 48.91 2.44 50.84 71.10 72.70 43.35 63.88 69.72 32.70 35.53 89.20 4.91 3.28 88.34 71.82 71.03 45.55 23.29 73.52 42.22 52.13 47.69 31.03 23.55 72.58 30.59 2.68 36.70 36.39 39.61 48.50 44.23 15.35 27.48 30.82 68.24 17.19 14.87 86.97 14.03 49.89 83.72 99.33 82.86 83.84 38.40 92.61 97.36 90.53 93.81 24.64 63.54 72.53 50.26 34.62 -64.27 62.15 81.77 96.54 86.17 28.43 51.52 8.55 83.68 60.87 82.24 68.41 88.27 56.64 55.92 36.46 41.32 51.39 13.81 77.49 30.27 69.30 43.28 70.29 25.28 59.58 76.15 53.74 96.10 2.85 12.66 17.34 37.11 49.36 7.68 62.93 91.04 38.51 62.14 54.77 99.04 93.20 56.99 68.47 6.30 49.13 93.26 67.94 18.65 75.91 63.22 34.17 35.84 9.73 7.19 62.62 44.91 54.91 48.38 20.65 68.85 86.54 24.66 4.22 71.45 59.72 56.28 26.48 6.91 65.76 83.95 65.74 79.39 30.67 82.23 6.28 0.01 85.71 91.19 54.46 56.47 56.76 41.58 16.77 28.57 95.77 43.35 47.51 73.55 95.69 82.86 19.61 54.01 74.11 58.01 19.77 18.60 44.24 65.25 45.43 -63.72 79.68 26.48 96.63 26.53 92.85 91.76 48.60 12.96 37.30 44.11 46.64 51.88 90.59 96.98 37.32 38.75 70.58 0.65 76.59 79.47 27.52 96.05 49.07 69.81 67.07 87.79 5.72 34.51 58.06 48.27 34.72 65.50 33.09 25.84 55.36 42.46 16.89 95.47 6.41 97.13 33.69 53.06 61.58 98.59 38.06 55.07 25.67 12.67 12.25 71.92 14.68 19.78 86.13 8.68 50.17 72.96 17.39 36.01 93.04 36.83 75.58 18.05 55.45 17.57 41.48 13.29 3.90 90.79 60.36 9.11 8.00 29.61 61.38 79.54 49.69 90.40 87.09 82.20 85.31 60.28 24.50 32.08 1.33 18.59 51.69 73.23 37.86 7.41 23.20 74.71 84.82 55.23 71.37 98.64 61.32 16.00 19.16 85.33 19.69 -59.12 70.74 97.04 55.73 15.99 12.73 86.84 61.81 84.57 24.43 27.89 55.44 8.43 1.55 38.37 13.65 60.29 43.58 65.54 38.35 38.85 58.01 29.41 46.98 5.60 58.14 99.28 62.55 39.94 5.14 14.15 96.84 9.66 87.97 3.06 41.87 3.69 95.70 51.97 69.21 31.89 55.60 23.11 2.21 1.79 30.92 6.84 27.38 24.17 65.01 25.05 91.05 78.59 93.24 24.08 7.70 17.77 58.02 24.48 75.24 51.09 12.05 89.19 43.89 2.62 25.70 74.63 77.65 53.28 16.28 91.78 67.06 92.59 39.52 0.29 65.09 97.63 28.48 46.40 51.51 36.04 74.60 91.81 8.80 4.37 10.18 91.25 74.51 54.42 37.54 81.14 38.13 95.33 31.76 98.24 61.07 19.99 27.92 27.20 45.27 -19.90 66.83 84.70 42.81 65.54 33.05 6.65 35.91 83.90 32.28 29.76 56.88 24.04 7.92 31.81 17.13 64.31 24.88 59.37 9.34 86.67 26.00 50.14 82.64 0.96 16.62 18.50 39.89 93.06 95.72 95.14 59.08 14.48 58.89 38.25 44.09 81.87 7.97 83.64 89.92 13.58 56.95 39.72 9.39 53.08 13.71 18.63 16.39 38.05 84.23 27.65 60.43 68.44 54.97 73.56 45.70 55.87 82.53 74.57 30.48 61.13 34.21 51.47 30.28 69.65 23.60 79.19 33.67 5.15 82.45 15.83 3.28 14.15 75.77 61.07 21.72 44.00 78.44 43.53 61.92 37.07 24.17 28.72 25.78 11.75 26.28 8.24 93.99 76.56 46.51 62.91 95.61 85.93 99.04 32.05 31.86 32.42 28.83 10.34 11.21 -65.84 78.26 1.27 73.19 88.79 56.97 41.24 17.62 65.92 21.31 57.73 77.16 6.73 45.81 0.03 60.30 35.67 47.52 70.34 83.05 57.01 81.78 32.29 68.02 61.05 62.29 24.01 99.66 22.59 6.21 14.65 70.74 31.02 89.10 75.44 44.65 97.91 93.43 15.59 54.45 81.05 74.35 46.36 15.92 68.43 62.32 12.01 8.47 30.59 14.36 38.31 70.57 21.91 65.27 30.02 89.57 73.37 52.99 42.83 42.64 75.29 2.46 67.74 86.00 91.88 63.90 89.94 23.27 42.94 18.67 52.78 59.80 11.21 97.19 26.44 86.03 43.58 9.36 29.68 26.40 83.54 61.07 11.76 41.39 48.79 74.47 14.58 9.41 74.61 75.62 66.00 29.43 46.90 71.17 31.37 36.88 21.18 73.34 60.60 87.45 -68.18 50.96 26.72 9.11 36.73 40.15 12.92 64.01 99.83 41.08 69.07 6.55 50.52 49.20 42.52 49.65 81.39 84.66 4.40 63.75 63.95 66.48 50.75 4.36 44.43 7.83 83.01 57.17 15.71 46.74 5.55 85.54 48.79 73.27 82.76 48.77 69.50 20.21 45.75 41.48 0.74 63.63 95.76 88.98 70.03 88.44 31.42 38.42 81.86 60.00 7.05 41.93 73.65 83.67 95.46 55.72 59.22 9.95 55.56 29.57 10.86 80.08 93.30 22.05 68.52 15.93 25.79 85.85 3.25 78.05 17.83 73.35 19.00 64.34 61.69 69.56 94.62 57.97 49.81 66.72 66.79 62.78 33.32 27.12 19.42 98.48 40.72 65.68 93.70 96.56 11.15 22.51 30.79 34.86 81.78 72.91 97.72 13.40 8.42 75.35 -79.98 60.91 68.19 14.05 1.00 63.01 58.05 70.04 94.39 78.91 39.71 77.90 63.23 34.76 49.94 68.68 87.82 96.43 25.14 14.24 37.48 87.34 25.22 89.09 6.01 88.30 44.50 19.04 69.84 28.88 6.33 65.38 44.26 54.93 14.73 60.45 72.56 69.55 18.05 58.23 76.38 51.68 62.67 32.46 87.15 56.41 55.05 50.82 98.50 56.40 93.08 60.83 29.04 24.33 2.69 27.15 73.86 85.71 32.96 7.69 30.16 81.99 5.61 4.67 59.58 86.51 25.54 58.50 49.51 18.46 49.75 51.72 65.93 99.86 29.93 26.93 46.07 2.68 82.02 1.11 16.95 73.89 74.57 1.95 2.55 28.84 94.77 69.07 51.38 77.62 26.49 28.04 31.64 58.08 40.97 16.23 10.70 85.35 31.81 7.38 -52.16 56.36 38.01 49.28 15.93 84.17 80.90 59.74 1.78 93.62 4.46 87.95 78.20 79.76 49.47 97.97 68.11 22.16 8.24 15.68 35.69 46.48 12.70 4.54 4.67 87.09 44.31 41.87 2.66 95.30 6.37 0.80 34.23 46.39 56.25 80.02 21.50 75.34 56.54 69.39 10.94 99.88 70.62 64.39 55.80 31.00 6.23 92.38 40.79 81.73 52.87 16.50 76.03 13.85 3.67 79.64 86.37 23.91 22.45 8.66 86.26 56.14 68.06 47.90 12.61 66.51 36.36 19.04 77.19 24.10 91.45 87.58 48.38 66.77 69.39 18.02 77.46 85.93 49.49 38.87 33.75 25.39 26.53 45.31 43.15 49.76 16.54 56.31 35.14 42.11 30.42 23.43 26.39 40.91 19.61 45.55 29.66 7.41 50.31 80.15 -49.76 16.22 99.08 96.76 63.66 82.36 49.84 29.75 0.86 46.77 6.12 7.56 18.88 78.73 47.72 25.37 1.24 30.85 53.15 54.70 46.81 58.88 94.65 12.17 3.67 95.70 9.55 20.85 92.70 87.41 96.86 2.39 39.79 99.18 86.90 5.81 93.04 21.58 81.97 47.06 47.86 33.18 21.76 11.13 70.45 43.62 44.15 20.72 44.55 71.27 67.68 68.68 13.94 28.06 83.57 57.72 49.32 3.87 74.27 13.03 13.47 68.33 39.49 80.95 12.61 49.47 65.35 72.95 29.42 80.11 47.43 93.18 77.62 44.10 74.98 90.83 6.84 14.09 95.23 35.94 42.00 51.49 51.19 14.46 66.18 57.61 6.22 97.30 37.39 22.48 14.61 1.59 24.71 9.98 65.79 21.05 79.87 2.64 2.73 65.14 -31.35 81.97 54.12 36.26 52.15 56.23 70.16 42.25 66.38 13.53 86.21 97.31 66.91 25.04 74.07 5.87 73.05 6.99 51.77 5.24 21.56 91.12 53.81 43.10 68.00 37.20 57.85 44.27 10.00 37.00 95.78 5.63 60.13 98.71 85.06 83.16 72.22 42.06 43.61 65.75 98.95 32.84 98.73 18.02 4.05 39.63 42.01 58.52 2.06 84.73 10.07 27.91 79.10 98.23 5.32 2.78 73.78 88.43 0.98 95.12 44.89 86.99 28.18 32.17 8.27 83.04 62.84 83.39 77.82 13.03 33.26 52.78 9.29 25.83 45.57 41.93 28.11 24.01 30.81 58.06 17.64 12.29 47.14 85.40 34.85 88.78 98.88 57.66 99.43 52.51 14.72 99.10 12.26 1.46 6.23 73.66 96.12 14.72 83.40 22.97 -2.73 14.31 28.19 98.38 78.57 38.59 79.77 25.70 54.67 75.74 99.66 12.51 22.85 75.66 57.95 66.25 7.14 3.81 20.87 10.62 81.55 93.13 30.14 11.64 29.94 26.39 5.46 12.15 78.47 2.41 47.75 99.31 30.52 23.27 97.72 89.15 81.51 96.47 59.88 30.05 51.22 17.17 81.21 7.79 54.59 30.72 66.93 37.73 29.46 53.52 64.51 8.12 92.53 19.02 23.63 35.07 53.51 59.84 44.21 80.71 37.28 74.32 60.10 14.78 63.34 31.95 20.21 61.47 46.32 56.67 8.15 78.05 93.09 80.57 31.93 36.45 42.86 44.23 8.25 70.88 46.88 90.31 92.54 95.05 35.41 32.03 35.55 50.83 30.16 86.11 26.31 35.46 88.34 52.06 58.96 64.02 75.62 88.71 3.29 98.33 -41.15 45.33 0.12 92.80 31.26 44.29 73.68 75.66 26.67 96.82 37.96 53.70 41.21 13.05 7.24 56.82 82.49 24.10 72.87 15.30 20.85 8.33 8.81 21.82 12.56 63.57 20.37 46.22 85.54 41.39 23.60 68.99 69.67 59.95 27.28 45.40 15.31 15.62 88.60 97.77 34.92 18.40 35.69 65.96 65.22 66.34 40.07 69.39 74.57 67.48 83.71 19.58 5.91 87.17 65.92 86.19 59.27 54.80 66.15 17.16 28.01 69.63 19.07 6.35 34.23 86.03 94.00 14.78 91.39 45.65 20.44 10.19 1.17 44.66 75.73 0.39 10.80 24.51 87.97 63.71 96.30 48.31 82.69 24.73 85.86 66.60 50.77 52.57 68.09 34.31 22.62 6.95 98.79 56.63 42.31 50.66 35.39 81.35 67.07 13.80 -90.70 87.22 63.13 89.03 55.97 66.05 60.44 37.71 38.22 92.42 68.79 52.38 13.27 44.11 67.70 1.56 11.17 35.32 97.38 33.80 63.09 89.49 10.77 53.75 34.85 67.69 29.13 30.29 32.20 51.61 39.94 46.75 84.09 5.34 53.41 49.58 50.69 71.85 53.96 0.52 57.24 63.26 9.54 66.50 31.60 68.60 7.64 83.31 12.94 44.45 26.03 7.35 29.43 6.40 49.58 88.54 50.55 82.31 50.40 76.07 93.78 12.48 62.63 47.70 56.29 26.43 83.63 30.50 50.30 81.49 50.51 48.05 77.29 99.14 55.68 80.52 3.17 3.50 12.14 96.78 61.08 50.54 13.85 51.32 82.21 21.31 73.81 33.65 73.83 72.54 75.18 1.36 54.76 8.60 65.71 32.24 81.65 24.63 20.00 21.48 -59.12 4.98 28.19 32.46 60.11 9.46 52.05 44.57 31.01 32.35 29.29 35.70 61.13 76.17 64.06 51.24 83.16 16.40 21.80 53.70 49.12 19.54 72.24 58.97 41.85 96.19 73.95 55.25 11.99 91.61 11.19 43.58 91.42 67.96 96.18 17.62 92.93 26.36 60.12 10.58 68.22 40.95 8.99 80.61 38.81 22.98 73.92 90.54 37.68 18.67 41.44 90.92 37.56 67.53 50.04 36.91 22.27 75.52 14.15 71.35 63.44 17.74 66.89 50.08 53.30 31.56 45.02 65.41 96.11 26.86 72.77 53.94 98.96 68.46 94.42 41.22 55.97 60.14 35.08 36.62 88.49 43.14 18.57 99.85 2.61 8.54 80.47 54.34 81.16 38.75 10.83 91.34 9.02 18.79 92.85 18.22 71.80 99.50 90.46 39.73 -88.03 45.38 64.03 7.36 55.75 23.51 64.85 5.09 57.00 85.14 45.15 94.38 52.05 51.75 19.53 0.86 9.60 5.96 13.26 23.88 89.24 64.26 18.25 89.83 57.12 73.45 77.70 46.57 44.14 39.66 25.78 10.32 72.92 77.20 68.76 93.44 46.24 65.54 81.47 61.30 17.37 25.94 91.28 95.05 15.61 84.40 44.79 45.18 96.48 88.19 61.79 27.09 72.03 43.71 96.04 14.20 16.01 5.33 37.43 53.92 41.79 47.21 37.50 88.31 27.13 54.34 75.97 2.00 10.87 16.88 2.73 43.17 45.74 69.66 59.63 50.22 25.35 21.51 72.74 27.49 48.95 77.86 61.69 98.30 52.44 14.93 26.71 58.76 94.80 68.34 81.02 95.35 6.62 48.04 23.54 18.96 64.32 74.14 59.14 79.70 -39.91 21.60 0.57 91.51 13.45 63.01 63.07 4.53 80.66 31.47 84.93 45.92 96.07 61.63 70.17 62.50 31.51 19.39 60.93 26.84 30.95 27.41 12.73 40.85 24.57 42.29 90.37 56.06 13.43 13.38 69.93 92.99 23.11 20.78 1.13 11.37 36.76 69.46 57.31 42.97 3.52 77.66 3.30 60.47 62.33 19.29 23.25 92.21 88.34 8.66 70.76 89.89 42.07 61.95 62.69 67.26 82.49 80.09 56.90 96.95 98.40 68.50 80.29 6.25 76.64 89.71 82.21 10.85 83.73 44.63 95.87 76.90 14.11 76.39 26.98 74.39 17.90 27.55 75.95 65.03 61.88 50.09 90.28 21.49 13.62 27.43 15.67 86.11 5.83 92.20 86.88 39.80 95.29 63.88 82.85 98.51 21.00 31.71 61.34 37.67 -15.06 8.05 45.00 23.13 93.34 29.39 67.74 99.64 11.57 81.04 17.20 89.08 95.84 85.10 44.04 71.73 17.11 53.21 9.11 66.50 72.64 93.90 95.96 96.79 62.92 85.27 94.54 1.35 32.76 98.27 33.34 56.85 59.79 25.52 44.70 23.54 95.22 75.91 48.63 96.88 17.78 39.34 77.24 81.40 42.84 38.42 88.43 53.14 39.86 69.39 9.07 77.24 1.51 91.17 95.41 14.58 49.02 41.81 14.90 84.73 31.48 22.74 11.01 99.78 10.74 54.94 62.17 22.83 72.21 25.80 6.18 30.73 51.91 82.32 9.55 44.51 18.83 29.28 48.21 31.98 64.34 70.66 31.57 11.08 53.80 45.38 8.91 11.05 88.45 18.43 22.48 88.35 48.04 36.58 25.14 40.18 80.40 85.86 38.42 29.14 -70.04 50.14 71.15 74.58 95.01 84.97 0.89 51.82 91.60 69.22 34.11 99.41 5.18 71.24 37.44 34.75 39.37 37.58 27.40 39.61 8.77 56.30 43.12 67.74 97.25 43.58 93.82 41.59 16.08 11.71 75.87 76.52 79.46 17.72 8.52 65.68 78.15 72.67 95.94 46.24 93.06 72.62 73.83 24.68 89.81 86.52 90.05 40.64 15.27 9.61 75.71 12.12 63.34 54.05 32.74 60.79 33.03 62.57 16.69 49.85 96.63 27.71 68.78 75.41 81.00 72.62 84.29 16.64 43.18 78.67 97.10 12.49 35.40 3.59 84.56 30.01 20.17 55.38 69.27 25.01 20.91 11.70 22.39 55.91 92.18 50.77 55.89 75.39 56.56 19.58 93.23 52.35 26.50 19.50 40.82 95.78 53.54 78.36 25.33 41.49 -90.46 71.37 73.27 1.40 34.40 93.40 71.29 47.80 11.56 42.34 69.34 49.06 95.73 82.30 95.37 10.38 29.80 27.49 39.52 13.67 53.09 72.70 97.27 64.05 78.64 70.66 46.99 3.21 22.65 46.85 16.72 73.16 3.22 26.51 60.38 66.55 52.63 18.39 95.71 35.23 42.17 30.06 60.61 48.12 9.38 6.34 93.40 55.01 21.23 95.17 81.09 73.55 78.88 90.03 90.91 73.16 0.16 69.37 1.11 42.33 12.30 29.33 41.38 85.33 30.70 19.93 7.09 56.34 2.36 46.42 13.00 59.05 21.68 84.62 25.17 7.00 50.84 27.10 99.84 52.61 43.55 97.49 27.23 89.67 5.05 40.32 72.88 53.97 51.39 80.26 83.51 69.92 90.82 96.93 35.55 25.34 36.25 87.51 24.78 20.04 -67.01 84.75 19.90 9.43 86.32 31.51 43.51 22.52 32.60 15.49 83.40 62.60 57.51 95.62 80.48 45.61 33.10 76.71 25.64 26.62 23.96 97.16 6.50 49.40 37.93 15.22 97.00 47.50 43.24 65.70 3.08 43.88 40.61 72.80 86.55 78.95 21.72 40.76 40.48 23.31 19.65 78.87 65.67 67.84 93.35 45.09 66.29 22.93 17.94 79.38 56.17 9.29 67.65 25.84 4.55 69.69 29.56 33.90 41.32 78.79 49.85 74.12 22.61 18.28 38.26 35.23 79.10 38.28 79.43 86.11 21.49 88.17 5.78 84.67 62.19 6.61 90.43 31.12 40.22 84.32 97.54 30.97 14.00 22.17 79.95 12.22 71.46 11.60 13.02 2.50 53.67 67.50 5.00 31.21 88.16 75.15 48.28 27.72 58.84 81.02 -82.32 70.38 25.94 59.44 73.66 71.15 32.11 48.08 54.29 69.23 76.57 36.42 45.57 45.96 17.12 44.48 5.33 6.26 46.23 95.13 8.93 70.38 77.89 20.21 68.57 79.87 76.91 71.17 41.50 41.95 26.55 24.77 27.15 42.30 18.00 6.66 14.67 56.91 30.45 1.65 94.08 67.94 55.49 70.24 85.99 54.54 95.85 52.17 19.43 35.36 22.20 24.57 5.87 75.08 46.10 69.09 76.46 14.80 52.98 35.74 34.22 49.61 47.97 62.76 15.59 16.51 70.92 13.76 10.63 0.49 85.03 75.40 19.46 72.39 21.10 54.72 20.20 96.04 63.63 38.98 49.19 53.84 1.15 14.29 14.42 40.59 81.70 6.26 80.16 45.21 96.91 80.71 43.62 95.13 66.35 40.07 0.93 45.82 72.55 0.71 -31.35 77.37 13.29 69.85 85.64 67.60 23.97 20.05 65.51 28.86 49.94 87.00 47.75 3.65 10.00 72.20 49.47 29.95 20.92 52.84 10.05 2.97 4.43 47.59 97.22 60.65 15.17 24.20 41.76 41.76 12.17 59.91 93.29 16.94 10.10 97.17 13.33 58.98 96.64 20.75 18.33 60.90 29.87 71.04 69.89 39.19 60.21 28.13 26.95 1.70 56.10 80.32 66.35 31.32 90.47 78.22 32.60 75.93 99.19 67.43 2.67 15.40 59.36 99.62 84.72 2.86 97.76 93.07 50.55 84.36 68.15 85.91 9.03 85.02 80.38 20.44 8.16 23.88 36.15 26.02 72.89 52.72 13.18 14.51 26.16 29.95 91.05 87.29 11.20 7.70 94.82 27.17 43.25 46.65 86.77 85.70 15.99 82.84 97.55 4.34 -87.03 21.20 89.58 34.98 95.39 25.69 99.74 16.86 70.34 6.91 34.32 37.59 57.86 87.01 90.18 68.34 18.23 0.19 90.77 32.57 27.51 72.25 88.66 39.58 10.86 94.63 98.92 87.38 57.92 80.77 67.27 4.37 63.79 14.13 25.97 8.33 26.69 4.71 23.49 92.89 51.68 9.09 90.68 58.80 6.01 49.54 83.23 78.16 73.66 51.26 47.27 86.63 84.13 38.19 48.41 31.09 41.71 68.10 84.76 62.17 28.20 61.10 11.10 74.10 11.76 9.34 58.83 78.80 96.75 4.82 54.67 35.25 70.28 61.94 61.90 43.37 6.59 19.47 74.31 19.59 73.53 87.58 94.43 31.69 81.88 10.53 65.28 20.98 92.95 98.92 35.75 95.83 95.44 78.64 19.29 63.44 71.73 4.30 49.09 35.21 -60.64 38.26 77.16 3.75 54.28 98.18 77.46 78.13 10.12 79.76 53.01 96.47 78.54 65.51 6.29 72.39 45.55 83.46 12.54 20.16 42.87 16.57 51.42 59.21 0.93 96.51 86.92 30.20 6.19 17.31 62.55 97.56 23.10 49.95 98.57 40.02 10.98 4.91 55.61 22.37 27.38 63.74 61.21 96.98 11.54 80.54 33.23 43.08 79.83 67.78 28.02 2.17 91.12 37.03 45.37 29.15 47.60 12.54 12.18 11.50 3.17 96.63 41.82 6.12 22.61 63.81 41.05 72.64 34.59 65.41 65.80 75.91 66.70 4.84 28.44 1.39 60.42 10.06 69.89 15.30 27.86 76.43 44.71 34.51 6.26 73.03 24.34 89.69 59.31 26.60 75.90 37.78 68.21 79.88 7.59 84.99 53.13 33.13 6.20 57.53 -58.39 8.86 87.92 41.80 10.14 88.73 42.29 58.83 42.78 46.32 59.57 1.94 38.01 0.68 10.68 31.28 16.06 82.78 45.30 62.39 47.05 79.45 64.91 20.88 80.23 88.17 15.50 14.10 64.77 44.59 54.48 5.19 6.08 28.91 65.95 76.15 92.27 65.49 66.51 53.60 18.49 59.56 67.93 13.28 16.05 46.88 85.41 39.44 70.94 64.70 39.65 5.06 47.42 92.94 38.81 24.51 31.02 33.96 86.53 25.36 99.85 39.99 67.44 63.20 5.73 23.74 80.90 8.27 25.54 45.33 73.97 83.66 61.29 92.34 95.20 67.70 88.60 36.03 33.30 62.47 27.68 15.18 69.67 91.70 9.30 13.40 39.89 4.32 46.95 48.55 65.85 49.64 34.21 45.27 36.85 74.44 21.50 5.90 55.20 18.54 -8.60 57.26 16.31 67.29 55.59 30.75 13.51 49.74 30.66 41.11 79.95 40.33 54.92 97.38 75.30 15.73 31.17 60.85 95.29 19.80 62.41 76.87 59.12 35.02 98.21 89.70 37.74 55.70 29.12 55.67 73.84 38.34 42.93 54.97 8.98 43.07 93.44 32.45 98.37 74.88 44.32 55.10 45.89 92.58 85.18 67.48 99.54 15.52 20.86 0.36 79.57 4.74 50.10 65.63 29.18 28.47 65.06 66.70 46.18 25.93 25.37 87.41 42.43 5.38 14.80 98.75 5.51 18.11 35.89 41.64 26.38 53.22 52.04 82.47 19.72 72.19 36.87 16.42 63.79 11.89 67.78 52.88 95.63 95.69 81.85 56.31 91.42 97.87 36.54 18.78 6.51 99.34 58.47 26.07 94.38 5.34 37.13 51.42 69.57 37.43 -56.59 49.98 91.31 71.64 96.50 55.48 58.18 88.99 59.45 6.19 27.20 34.08 57.83 62.69 45.76 25.67 22.62 3.44 90.36 21.28 40.66 30.45 0.56 98.78 54.40 97.80 23.51 99.12 3.34 60.27 0.26 70.48 46.09 32.45 60.56 48.67 82.78 40.27 80.32 49.69 45.39 5.57 62.55 46.10 6.63 78.88 30.58 36.01 9.16 92.21 96.25 98.37 51.28 51.42 88.64 3.13 7.70 90.84 53.34 27.90 40.33 35.28 84.23 78.58 75.51 22.29 53.72 16.92 74.00 59.77 21.82 64.58 58.09 25.15 52.64 15.78 59.01 41.84 43.33 86.87 5.17 10.70 69.63 45.30 33.96 74.68 57.75 16.78 8.64 12.29 24.92 83.67 88.61 46.21 23.29 7.36 19.61 50.61 4.93 18.91 -62.75 40.06 53.82 36.25 89.31 61.40 98.91 73.04 23.62 82.13 68.98 89.06 75.75 5.06 71.99 54.93 21.96 70.14 59.53 15.93 11.74 74.18 50.86 19.40 13.58 36.18 58.74 62.96 98.08 92.32 18.00 83.58 23.83 98.77 29.87 52.42 70.12 79.21 98.02 41.96 22.53 53.62 16.27 92.40 18.98 2.47 24.54 52.01 48.77 80.98 80.22 34.15 52.62 64.59 94.97 96.50 76.71 90.09 32.50 1.92 42.96 48.50 5.85 94.72 79.55 21.36 26.59 5.36 77.35 46.88 55.90 25.22 72.32 52.75 49.72 15.94 83.16 65.42 73.54 48.43 26.30 97.96 97.44 61.19 1.38 1.80 67.53 51.70 74.48 13.26 81.35 83.52 27.19 94.82 22.90 64.55 91.74 77.36 34.02 62.69 -62.86 78.78 57.45 89.18 53.43 27.75 27.49 54.01 33.28 93.60 17.99 52.15 10.15 27.59 98.74 54.18 12.40 58.17 79.57 43.45 68.79 66.15 13.56 53.98 85.13 13.74 88.58 0.00 86.70 58.06 11.29 8.01 31.59 67.21 14.65 32.98 22.11 63.91 11.95 29.64 30.18 70.36 85.57 88.31 93.06 85.28 63.84 96.95 65.22 91.23 27.08 59.88 43.22 44.34 95.29 21.70 99.36 22.20 72.10 68.98 1.21 55.02 29.10 88.24 32.65 83.38 43.63 57.95 68.45 65.65 78.31 64.52 20.29 40.25 74.08 45.15 2.29 57.85 9.84 30.73 68.09 71.60 65.69 37.46 80.63 86.69 72.12 81.87 74.01 66.34 85.75 87.99 19.87 61.25 97.79 57.76 30.66 44.92 42.91 17.00 -91.92 28.83 49.64 84.77 3.22 56.05 10.17 32.98 75.58 97.37 17.80 33.17 56.29 70.70 63.60 83.37 77.16 50.01 17.47 17.57 7.00 12.12 69.67 59.72 78.16 18.91 95.48 9.50 26.25 50.62 36.60 92.82 3.55 79.35 81.67 69.35 70.90 97.22 67.69 45.60 32.44 62.91 28.36 24.24 59.24 20.41 88.28 19.56 99.35 96.98 34.08 83.61 41.64 23.90 71.71 55.03 58.30 2.81 84.20 91.14 0.31 35.58 81.42 80.25 89.07 30.02 66.68 80.00 19.38 89.34 62.44 29.21 3.41 75.70 47.35 68.33 13.58 78.91 35.82 84.29 31.80 33.56 60.98 31.32 89.81 92.48 42.66 28.47 32.72 21.13 12.43 73.20 16.17 84.22 97.55 33.08 37.01 31.19 0.14 23.69 -81.05 5.26 84.75 41.45 80.67 20.38 55.98 85.37 89.96 23.66 21.78 94.44 50.23 50.48 0.36 25.06 6.97 26.63 90.87 2.08 62.36 25.05 82.64 64.85 66.05 96.35 39.47 48.38 27.99 16.78 71.91 5.51 6.67 18.40 13.41 32.23 52.41 29.69 17.70 19.12 79.86 29.97 19.21 67.04 31.40 23.01 27.28 79.95 59.12 93.97 3.09 68.85 23.70 35.49 67.27 5.35 28.42 62.65 61.24 11.08 49.85 90.58 38.93 81.06 63.66 12.31 48.39 95.71 64.94 86.33 90.95 52.20 63.36 90.07 90.59 30.51 53.93 25.54 63.60 37.26 33.38 55.15 9.81 94.47 13.71 66.75 82.25 16.57 14.62 33.00 99.11 40.64 27.65 14.63 62.88 40.39 90.46 62.08 29.46 11.66 -97.58 98.06 39.97 8.33 12.91 63.31 36.03 12.07 11.52 87.91 72.66 48.57 78.36 2.36 59.60 46.44 69.18 74.96 79.12 26.34 31.08 94.25 51.29 37.80 86.53 76.84 7.69 58.35 35.86 21.86 44.09 34.59 73.02 74.78 57.32 82.21 69.69 71.55 20.53 46.41 19.37 73.24 96.72 81.80 25.71 66.19 63.24 33.34 76.13 79.86 83.34 62.50 81.10 30.76 38.36 15.75 15.72 62.63 88.72 92.73 31.24 7.33 56.92 17.04 38.75 96.68 20.47 81.79 71.93 84.53 18.74 18.88 18.78 61.35 96.41 75.45 90.14 90.59 69.35 5.33 25.38 9.34 25.18 48.01 71.82 73.05 14.51 42.69 22.42 76.24 65.79 94.01 47.80 76.10 75.17 86.88 84.78 89.60 77.49 23.28 -16.27 80.77 14.83 92.30 11.49 28.37 91.41 21.79 81.40 58.04 70.80 26.81 51.84 32.19 40.39 58.40 6.13 19.22 29.36 38.27 97.68 96.14 24.63 84.02 19.23 10.53 1.27 73.90 89.70 49.11 73.40 2.38 35.82 37.85 69.37 89.71 32.73 22.63 54.73 43.41 49.93 32.37 79.36 86.46 2.32 51.08 11.51 17.59 99.56 34.05 92.07 64.17 29.88 98.14 28.48 6.12 99.69 34.35 46.98 28.28 18.66 83.43 76.26 68.97 91.31 10.85 28.66 12.55 32.53 67.26 12.17 21.97 55.65 92.08 1.15 95.55 88.87 78.23 5.99 23.75 14.45 90.38 72.02 0.49 93.95 8.10 7.40 23.48 95.21 7.09 82.77 2.11 95.40 15.17 37.92 55.76 12.88 48.43 36.96 79.90 -72.84 79.02 69.44 71.41 33.62 14.63 51.81 57.60 63.61 27.88 92.37 45.05 10.17 15.97 29.36 34.29 84.75 5.67 10.12 51.02 16.99 8.49 16.80 23.77 21.26 77.48 53.37 9.02 29.51 89.37 34.42 68.62 94.48 15.37 41.00 9.82 75.01 83.51 8.07 31.01 46.76 47.89 88.01 76.12 25.64 68.41 75.09 44.14 49.88 46.65 30.43 89.67 26.52 59.69 35.50 51.92 99.98 17.76 65.52 5.41 10.99 69.65 12.15 73.17 74.90 80.84 33.80 29.54 67.17 98.71 90.77 79.36 77.79 51.68 7.06 45.63 31.02 14.41 32.07 21.30 37.49 59.31 21.44 20.46 16.60 63.57 86.70 95.38 3.91 94.96 62.83 75.13 91.18 81.74 4.77 74.94 63.56 65.72 20.51 12.93 -63.25 74.21 42.63 27.11 5.87 67.30 99.73 44.61 57.77 40.54 33.62 36.51 13.14 10.83 73.25 15.58 15.04 94.98 39.09 80.08 26.53 51.75 93.04 22.55 71.46 88.73 36.23 73.50 97.29 45.20 35.61 17.88 14.32 46.07 73.77 37.11 87.02 90.44 40.49 63.42 41.29 98.32 88.21 9.80 89.71 38.00 92.24 62.26 85.88 31.54 26.31 34.43 10.82 93.24 11.40 42.37 18.03 3.22 68.51 89.00 23.45 51.40 60.49 51.37 51.91 10.54 54.51 12.11 5.14 91.34 22.82 7.16 72.04 89.81 82.02 32.69 0.77 99.73 82.94 21.17 5.09 65.95 89.27 39.75 2.16 61.84 37.06 35.03 33.38 44.85 76.41 55.56 53.71 62.40 99.97 35.50 88.91 53.70 41.48 88.30 -8.66 29.47 21.85 69.86 3.94 80.87 9.44 71.99 24.32 96.24 45.76 29.17 76.38 51.43 93.52 71.63 64.51 25.87 27.42 55.67 54.58 46.46 35.47 66.69 89.22 53.44 50.73 89.72 16.18 92.43 94.89 0.99 45.43 0.37 92.25 77.52 10.03 24.42 22.48 32.79 59.17 25.98 21.57 27.01 58.24 12.70 18.65 28.48 92.42 36.95 49.05 30.74 82.75 11.21 22.98 51.95 35.08 55.41 41.58 95.38 84.80 86.39 17.22 96.85 21.28 49.54 3.39 51.15 99.92 14.75 18.31 23.22 24.05 92.58 63.15 30.43 73.95 35.05 80.55 21.70 75.02 88.56 85.16 25.16 88.59 2.87 77.02 92.62 22.39 85.70 68.03 75.81 9.53 54.33 57.98 74.89 47.31 75.66 2.74 49.73 -89.95 41.63 17.12 76.74 73.43 80.32 89.70 67.63 12.04 15.83 8.30 79.97 12.57 78.35 74.87 75.31 96.32 66.63 33.49 11.73 81.14 16.15 64.49 58.49 50.71 23.77 57.74 51.63 15.07 6.59 89.04 7.84 26.82 91.58 78.85 29.72 51.58 65.12 57.38 22.02 73.76 62.66 88.08 25.71 21.30 34.97 85.37 25.78 68.63 77.23 77.08 43.93 11.10 36.75 45.89 30.34 30.65 23.42 43.62 25.79 43.63 46.86 86.97 81.92 55.74 32.17 52.21 46.92 86.63 36.77 64.80 81.45 43.38 24.86 34.10 74.47 40.21 40.77 67.93 11.21 82.12 80.53 54.91 8.66 82.90 57.10 71.19 19.60 89.19 11.88 95.55 24.73 28.00 45.53 73.23 13.35 77.52 2.26 57.16 19.22 -93.01 98.71 25.60 47.68 2.40 3.62 61.61 30.35 91.33 85.77 61.98 53.91 60.02 71.77 30.07 45.31 6.37 19.05 95.74 81.22 79.63 67.84 47.52 47.39 34.44 58.66 1.33 17.74 50.34 0.52 5.63 84.99 71.00 28.36 93.39 59.91 38.13 24.88 54.96 56.72 70.10 76.29 98.88 61.84 43.74 82.78 50.41 75.49 0.80 9.96 51.56 83.71 53.45 40.53 61.43 11.41 90.17 25.68 16.65 67.59 27.31 20.22 67.61 55.07 68.25 10.01 46.19 44.42 92.45 78.00 0.30 32.91 90.38 1.01 4.48 91.53 69.92 75.47 71.04 72.00 82.59 4.36 7.96 31.94 8.62 48.43 60.60 44.07 88.01 44.08 18.53 92.41 41.24 32.07 2.40 14.36 63.10 37.23 98.75 30.37 -25.99 34.53 4.07 78.81 30.85 96.65 11.58 47.83 85.23 79.98 96.14 8.44 5.34 98.01 95.02 74.18 0.48 8.72 29.10 72.17 65.92 47.46 26.25 50.38 99.04 13.84 41.50 85.58 99.32 71.98 2.40 10.79 42.73 19.66 48.88 13.63 63.82 60.27 62.39 68.10 35.75 88.70 94.17 30.79 79.71 37.25 61.49 42.34 96.70 95.99 42.03 45.90 40.60 38.90 45.47 92.30 77.61 97.37 34.62 11.76 94.87 47.49 43.33 74.53 51.76 49.10 67.76 0.15 13.24 48.20 51.72 1.85 97.43 33.65 4.24 88.98 26.88 13.38 92.06 7.49 69.75 30.80 51.79 34.74 22.06 85.75 37.23 89.16 87.27 70.15 17.70 78.93 43.29 77.61 79.89 60.12 57.00 81.27 30.23 18.14 -33.38 81.69 42.13 76.36 85.76 8.60 27.61 95.07 5.44 58.60 35.03 92.90 84.00 25.38 30.20 90.29 22.69 42.70 11.78 56.18 79.76 94.45 16.25 50.81 56.95 23.24 33.99 91.40 82.90 52.16 65.21 57.46 48.69 24.91 65.93 25.71 68.71 86.50 16.62 14.60 22.36 61.89 86.68 76.87 91.98 76.67 38.48 87.69 65.36 6.16 59.45 89.74 94.61 49.90 15.66 73.96 91.53 67.46 50.99 97.26 78.16 82.38 18.97 68.31 79.45 80.14 90.55 16.18 59.91 71.75 37.97 89.06 36.62 9.79 93.31 44.41 11.59 11.16 1.97 77.14 13.13 45.35 76.57 47.32 28.73 87.66 58.32 40.83 56.75 21.84 39.22 31.72 15.53 50.26 43.66 66.62 41.54 40.01 23.22 20.76 -88.25 41.00 52.05 6.08 9.64 95.27 77.81 4.91 73.86 27.95 37.26 74.89 36.54 41.63 5.23 32.81 45.88 15.54 6.20 11.59 71.34 58.57 46.04 67.21 44.59 35.49 21.53 67.08 98.62 82.82 30.74 2.12 37.92 43.27 5.94 66.71 78.84 71.26 36.71 65.10 35.30 66.25 95.19 18.08 77.38 7.48 4.82 28.35 55.15 49.32 20.38 55.08 64.60 49.36 36.92 35.19 75.50 76.26 44.01 77.47 82.64 69.10 68.87 48.77 9.86 28.63 66.25 95.57 60.73 17.99 12.04 93.51 78.04 81.93 61.38 22.79 47.74 8.71 62.46 48.86 79.60 63.02 71.01 93.33 47.53 18.22 73.77 98.75 29.38 7.67 42.11 65.51 97.90 94.86 88.73 60.07 23.68 56.95 85.61 92.34 -43.12 64.71 76.05 27.50 99.64 85.16 4.71 0.60 13.84 39.01 92.16 36.32 77.10 9.73 64.63 57.50 77.04 55.88 60.59 96.66 15.72 10.23 96.31 53.50 15.76 85.48 35.56 89.19 75.00 33.76 18.74 67.91 74.08 40.79 37.24 59.64 3.88 52.55 73.99 72.72 74.19 78.90 52.05 84.05 29.21 61.21 26.63 38.09 35.08 74.25 59.49 72.91 83.88 0.57 30.46 0.06 96.78 46.49 21.57 53.44 5.12 9.61 40.14 3.33 94.48 65.91 81.68 7.37 69.09 16.83 84.13 6.29 59.76 15.12 33.98 9.58 40.47 19.77 37.79 65.37 58.57 95.89 63.47 32.73 26.08 67.98 94.48 72.90 87.01 44.64 78.74 63.84 32.77 34.96 35.20 16.37 19.53 53.99 46.53 76.37 -62.95 27.67 76.15 80.43 17.99 44.44 5.88 26.68 18.63 40.34 13.54 38.43 99.95 60.41 69.66 0.41 27.84 36.35 60.74 24.36 26.09 85.03 62.20 70.44 73.54 72.57 55.75 88.84 37.00 87.35 8.20 46.66 55.53 37.13 97.46 64.34 52.50 89.03 85.04 12.52 89.24 24.37 96.53 70.45 40.07 87.57 95.31 60.30 79.34 84.26 11.39 39.60 16.06 96.92 40.65 23.22 85.56 18.85 0.75 61.15 90.39 49.30 41.54 53.44 12.89 88.13 9.41 85.86 1.92 82.95 65.41 27.98 71.35 14.32 90.79 4.79 30.28 15.41 66.44 78.89 33.29 67.28 72.26 71.17 33.91 84.61 67.94 43.81 15.45 70.07 47.57 3.49 94.09 54.84 48.67 73.40 15.13 17.70 74.60 16.72 -59.41 61.51 55.84 22.36 28.85 59.62 18.09 79.51 95.44 27.86 0.27 30.98 69.27 11.88 84.01 10.33 63.93 40.10 33.71 92.11 31.82 84.79 6.26 83.59 50.42 23.94 2.60 24.44 35.73 12.64 57.40 43.98 38.45 39.53 89.80 11.22 33.95 52.68 6.52 79.38 55.95 57.39 67.59 60.90 62.30 42.94 24.73 62.76 18.10 41.53 33.98 93.64 94.68 41.07 85.99 36.54 92.86 11.79 7.04 77.70 20.33 7.29 13.03 43.47 88.43 39.02 4.66 17.08 68.05 5.79 30.74 57.91 83.00 64.02 43.75 59.41 92.79 6.33 2.67 67.91 64.15 98.07 88.36 52.39 27.72 43.96 68.32 40.77 38.64 57.78 0.06 10.01 86.33 67.50 84.50 24.46 78.99 72.73 52.69 41.90 -29.10 25.15 96.92 87.54 26.06 1.45 73.35 19.34 55.06 35.35 14.01 80.10 66.06 18.31 88.93 45.57 94.63 95.46 69.27 37.07 69.48 20.58 16.47 23.60 97.60 40.02 72.26 28.55 94.74 30.83 75.44 3.81 75.45 30.41 37.15 7.50 35.31 44.62 6.97 25.31 99.23 33.20 25.04 30.98 84.97 54.23 94.68 66.22 72.25 16.32 24.13 95.08 51.43 91.01 72.52 97.03 46.76 46.50 42.71 7.77 91.58 68.05 54.78 31.10 3.05 70.26 85.39 35.89 70.63 40.84 69.39 57.67 66.28 98.72 94.42 33.25 68.45 15.01 49.94 14.18 11.19 0.07 95.97 73.72 0.90 55.73 83.27 86.47 11.74 74.19 92.35 75.07 79.34 43.96 51.83 39.25 92.97 87.42 18.67 26.18 -58.63 61.28 49.71 68.82 87.59 99.84 22.83 31.95 62.52 91.48 88.58 37.04 36.64 57.67 49.64 76.50 31.97 76.17 40.48 23.30 87.69 3.93 78.84 66.46 92.32 58.43 98.59 63.00 36.80 67.62 42.83 26.58 11.11 11.11 28.89 7.26 23.65 47.17 69.51 81.70 15.06 4.57 72.90 37.90 13.06 14.38 50.03 12.47 90.88 13.84 71.01 30.83 56.82 81.01 87.08 68.78 58.67 81.77 12.22 39.73 56.47 26.78 80.83 20.55 60.99 58.33 14.36 79.76 27.75 27.65 96.79 13.18 33.24 55.40 24.23 97.52 31.63 77.46 41.37 73.54 12.43 0.38 90.58 51.96 69.08 30.97 22.87 95.72 13.34 8.32 18.39 65.85 37.69 94.70 95.34 45.87 31.04 35.86 38.54 23.94 -56.15 63.10 53.84 98.95 51.97 65.23 45.30 92.68 24.10 71.62 13.60 76.25 44.71 84.42 86.83 84.82 29.77 38.70 41.96 82.03 81.23 5.25 21.14 33.19 25.76 40.14 63.23 20.98 33.44 13.79 18.78 83.22 12.13 35.26 42.60 96.75 95.78 87.11 98.00 41.17 91.28 78.45 68.38 80.86 83.21 41.21 69.10 80.58 86.28 59.90 95.77 33.18 70.49 74.56 81.23 26.81 41.78 11.06 84.24 18.01 85.03 35.67 99.64 2.04 40.49 2.94 75.04 6.16 60.07 17.83 62.01 36.84 0.24 72.76 98.69 90.88 12.57 7.81 27.30 77.65 7.34 62.00 81.21 58.33 76.81 59.02 66.38 55.05 65.94 54.80 21.81 94.07 94.99 66.44 15.44 91.66 43.32 21.74 37.64 77.25 -69.05 7.26 47.26 88.16 11.63 28.63 36.93 18.39 9.64 38.86 94.08 9.16 44.43 38.50 75.13 62.34 57.92 21.46 76.04 69.86 5.01 36.93 88.69 42.71 46.69 59.52 62.56 76.03 80.16 82.95 61.17 75.22 74.91 47.81 33.35 37.90 86.62 60.18 21.83 13.65 61.22 65.15 0.90 78.21 71.62 34.40 95.07 40.25 32.44 15.10 12.20 23.16 73.17 46.05 91.13 44.07 60.17 74.91 7.82 17.35 75.12 60.21 4.52 14.82 40.48 68.04 69.78 34.60 1.63 87.43 44.90 89.92 20.81 32.66 28.46 80.20 80.45 99.02 84.43 50.88 87.99 62.57 64.54 15.23 88.89 99.88 76.74 89.90 39.04 48.59 65.21 79.72 18.80 16.54 10.80 23.09 73.30 40.91 21.99 68.50 -66.48 66.02 68.29 81.39 48.34 36.65 83.29 67.85 26.22 67.30 45.49 94.68 87.44 70.14 15.61 73.53 12.29 72.50 11.39 34.62 18.30 32.44 63.63 52.14 0.52 38.14 64.24 68.53 82.41 48.34 84.47 62.77 70.96 75.15 88.35 41.37 44.97 77.88 17.64 47.34 37.75 90.41 86.32 66.89 96.52 60.84 5.11 22.91 77.18 88.41 33.74 82.03 52.89 78.00 98.52 30.92 73.96 0.85 88.02 24.46 19.48 34.84 29.56 15.14 65.06 11.11 61.71 45.22 41.37 77.88 50.78 85.54 40.24 59.95 97.74 41.29 95.73 72.72 67.33 93.93 31.67 92.46 81.52 89.68 3.44 59.96 99.89 95.72 11.73 41.99 23.22 97.54 72.98 92.42 1.75 89.67 7.19 86.17 45.39 45.24 -72.99 97.26 45.45 48.43 74.89 62.03 95.46 11.40 26.76 68.06 59.84 21.30 57.88 69.55 80.73 19.71 56.67 69.11 15.80 86.45 47.97 31.15 21.00 75.39 76.19 84.02 14.98 39.16 8.34 85.17 91.63 71.51 32.20 20.44 34.23 45.62 72.04 98.35 19.81 21.31 62.38 55.93 60.46 32.63 34.94 76.58 89.16 64.48 79.43 98.23 92.78 3.60 89.36 73.91 46.42 90.79 78.26 8.78 62.10 58.68 93.88 29.97 90.82 90.48 58.52 2.67 35.75 72.68 32.26 27.73 42.54 41.84 38.93 80.14 55.83 7.51 68.48 23.57 26.02 87.24 71.36 93.38 80.44 74.30 36.19 33.05 10.10 69.47 7.48 24.16 63.08 48.20 18.23 82.96 3.75 79.23 84.82 15.48 21.66 7.31 -0.37 86.02 73.29 56.52 78.43 64.80 0.27 32.96 95.10 58.60 65.42 45.51 25.69 82.66 65.15 7.34 91.24 34.77 87.97 90.19 54.36 42.87 38.75 68.93 73.73 53.27 42.87 32.91 25.51 26.06 57.69 62.02 28.79 43.64 81.27 74.77 51.53 40.29 56.35 49.48 1.24 98.43 42.22 73.83 74.13 50.46 5.62 21.88 27.28 36.49 1.29 91.92 96.24 21.28 63.56 20.75 79.73 44.20 42.30 56.95 62.73 24.30 9.17 52.95 64.52 92.92 58.83 79.08 79.51 84.37 64.53 16.89 67.38 27.28 39.96 74.66 34.10 59.27 34.85 93.04 28.71 93.09 50.67 14.01 84.83 84.42 20.92 79.88 13.94 4.98 83.47 75.78 61.49 92.44 76.95 12.04 6.27 83.26 75.65 32.95 -16.12 6.77 51.74 1.80 48.00 3.06 23.37 9.08 10.00 81.33 98.02 46.52 44.11 92.44 67.81 69.36 27.92 35.41 47.13 17.26 73.76 91.59 44.94 72.40 37.99 25.93 53.55 12.68 29.98 76.48 93.80 7.89 92.13 56.91 12.43 96.78 98.76 79.85 23.38 77.89 36.50 84.84 96.95 53.46 49.89 67.71 54.87 12.00 32.46 73.30 87.18 54.24 16.49 77.80 36.74 17.11 23.88 29.78 50.90 67.12 66.10 11.35 71.50 51.77 25.38 81.18 97.32 98.98 39.95 99.57 25.25 8.88 3.97 57.73 29.09 79.13 32.58 66.36 14.69 39.77 58.26 55.64 9.76 62.81 63.61 75.12 27.93 70.69 24.98 61.04 39.21 81.49 47.62 61.16 29.95 17.10 5.97 52.40 70.46 40.54 -66.38 77.70 97.26 35.36 70.18 50.60 20.81 33.23 62.54 57.29 92.88 44.25 19.47 73.89 36.94 48.69 68.37 88.82 22.93 68.23 32.15 62.92 83.58 65.69 0.47 98.06 4.15 15.21 89.69 17.68 23.03 42.91 14.00 9.31 55.21 70.86 94.68 5.57 7.38 49.93 87.48 89.98 17.57 91.78 84.89 26.48 8.79 7.06 0.39 39.08 12.95 96.83 96.78 96.39 14.92 56.35 46.66 38.62 40.91 95.16 79.33 95.40 86.03 13.08 82.73 0.72 6.77 69.24 24.00 71.13 35.42 18.33 23.37 43.77 17.06 33.94 68.16 52.52 38.04 1.95 4.11 92.75 83.13 88.97 29.44 98.76 5.37 34.42 31.60 27.96 94.06 6.24 33.46 51.05 72.26 28.96 61.03 1.96 18.07 56.29 -34.43 4.91 96.14 99.99 24.34 33.55 18.60 68.49 36.78 0.35 77.72 52.02 84.72 70.76 38.66 33.74 67.19 3.71 87.01 77.50 59.18 87.42 61.11 37.12 60.87 77.39 22.98 7.42 1.60 28.62 30.80 58.73 60.34 38.90 71.81 72.04 41.63 85.22 99.28 4.63 46.01 31.46 48.67 59.97 95.79 10.52 39.41 95.44 45.77 9.96 28.04 45.86 51.67 91.34 75.28 48.77 83.53 63.64 39.51 97.93 83.11 11.98 89.40 32.30 67.18 25.05 87.96 3.52 4.83 4.35 3.53 98.57 57.81 12.96 96.97 23.73 43.92 17.44 29.69 28.31 47.38 4.87 9.74 60.94 71.70 9.24 34.53 82.06 95.91 93.92 41.11 83.06 60.39 35.59 50.99 90.92 84.16 81.81 84.59 23.21 -38.46 53.49 83.27 20.90 55.21 25.02 17.64 33.53 73.39 13.63 53.43 82.25 93.83 2.59 57.60 93.66 33.85 74.36 87.61 35.33 51.20 38.44 10.69 62.18 43.16 54.96 6.94 82.62 97.30 62.40 60.79 51.08 31.49 61.64 95.23 30.58 53.32 89.01 17.98 19.95 37.52 1.37 69.76 2.31 70.57 73.61 19.27 14.42 92.42 33.74 78.89 76.93 69.16 42.38 17.72 59.75 29.71 46.88 7.71 18.63 82.65 34.21 51.22 87.73 25.79 8.99 66.41 0.86 5.93 48.90 68.22 86.49 57.31 91.05 70.69 27.60 38.69 16.86 66.29 43.63 8.66 75.93 42.54 85.92 85.56 76.87 23.57 31.87 48.20 9.52 99.90 18.17 49.47 51.11 5.35 72.17 42.88 91.33 11.37 15.41 -71.53 66.98 2.57 15.35 3.94 66.58 44.09 10.50 8.38 56.96 54.69 92.41 62.06 43.36 48.29 18.26 78.84 90.29 28.82 89.48 27.39 60.50 45.80 75.67 3.73 68.97 0.74 97.01 48.14 86.56 74.66 1.84 34.74 40.28 19.96 56.77 89.49 32.95 65.89 55.33 13.06 90.53 40.46 71.03 91.80 72.87 67.85 77.30 54.69 86.04 58.35 91.20 42.11 76.94 85.77 71.94 41.16 25.49 24.15 62.42 48.96 70.96 20.43 47.73 90.89 20.98 43.77 47.35 42.02 30.05 9.80 83.43 34.02 30.63 67.06 62.41 54.92 24.57 31.43 28.80 56.31 9.97 31.86 20.13 7.73 15.48 64.64 11.01 24.53 53.62 0.37 10.10 52.59 81.76 8.99 87.79 68.51 57.25 6.45 12.95 -21.89 79.65 41.87 50.47 39.08 74.19 9.78 90.41 94.14 82.88 41.11 31.90 26.70 55.26 84.64 14.11 91.13 52.11 55.38 34.24 86.30 93.63 15.47 34.11 97.55 85.59 13.09 58.64 21.62 96.25 94.13 45.78 38.72 1.67 33.91 0.32 83.71 5.94 18.90 37.52 78.92 33.66 26.78 27.51 19.95 56.13 58.29 62.10 92.96 41.48 56.85 53.01 53.85 97.35 26.47 17.62 80.52 48.95 83.00 36.21 69.25 24.17 15.19 26.80 14.15 12.51 94.99 51.07 63.15 74.58 49.23 71.59 84.73 86.44 60.16 68.03 7.70 44.31 17.71 37.90 44.36 1.44 70.12 46.55 64.91 34.22 13.14 33.84 71.46 51.31 30.54 57.34 38.68 95.92 75.79 48.09 47.10 35.20 8.89 73.94 -44.39 42.87 39.87 39.71 68.10 59.10 72.43 65.24 41.01 26.19 91.64 46.19 30.02 72.29 79.37 42.48 76.51 13.58 27.77 14.14 53.72 25.35 83.85 57.98 27.54 2.17 71.37 19.40 10.10 21.40 56.26 68.92 96.26 96.98 46.92 57.49 85.45 42.17 3.14 77.34 14.09 44.65 36.18 97.67 72.90 91.45 86.57 96.80 81.32 40.11 71.46 99.09 53.26 21.58 10.69 75.29 35.05 95.32 79.78 58.22 26.59 81.51 33.28 81.97 5.52 69.20 2.14 77.37 96.03 63.27 27.71 14.46 78.09 50.88 41.74 79.67 73.07 65.09 62.97 95.82 99.37 54.00 7.77 10.52 56.10 39.92 84.74 70.92 72.75 17.97 65.38 73.97 31.10 8.28 88.49 37.33 43.47 98.43 51.85 83.38 -68.50 95.66 79.67 26.97 91.52 26.01 36.97 94.96 70.84 54.13 18.93 68.78 56.49 28.60 75.20 54.48 77.92 5.18 5.88 14.66 5.87 3.53 15.92 96.55 84.39 25.87 49.84 70.23 62.97 73.36 54.51 25.83 95.29 81.76 63.78 28.48 18.88 41.88 93.41 2.34 35.50 72.12 1.48 13.87 82.84 76.49 90.74 4.85 81.75 11.58 98.36 65.79 53.54 47.35 59.66 20.24 93.41 71.93 64.80 66.77 59.65 48.14 67.34 78.25 7.51 83.67 62.79 31.88 57.13 21.07 39.65 27.00 56.64 74.99 19.70 52.15 66.14 65.07 94.90 6.29 27.32 79.41 60.40 17.84 24.37 47.09 56.75 27.01 68.40 72.55 81.31 97.30 84.98 14.21 94.74 84.26 10.38 68.10 3.89 78.04 -3.00 41.05 9.86 67.31 70.58 46.46 91.52 55.40 18.00 95.56 46.55 79.03 3.62 4.46 51.04 13.98 23.90 34.70 36.02 5.49 8.65 65.36 48.27 52.74 15.35 29.37 27.51 23.99 29.80 26.67 45.59 27.05 86.07 63.28 11.26 71.15 63.22 97.61 40.48 80.98 83.11 88.55 74.92 1.93 30.50 78.01 89.15 85.26 25.59 37.42 17.52 57.48 25.40 77.29 3.69 42.72 41.17 83.52 45.00 97.61 43.56 2.66 33.12 80.77 45.43 91.45 41.27 99.59 32.58 95.93 8.55 95.75 70.96 49.73 25.13 8.94 14.40 8.16 85.54 50.21 54.86 6.54 8.65 11.52 51.53 86.58 12.24 74.94 48.38 28.90 33.39 31.13 68.77 94.87 21.82 90.13 13.49 86.75 77.63 92.00 -28.23 11.43 81.75 9.85 55.41 49.96 77.30 39.80 81.91 18.21 89.63 88.57 8.31 30.80 84.89 6.18 31.57 72.78 67.97 61.66 11.79 52.90 35.76 15.45 27.84 48.20 91.35 26.58 18.15 3.11 77.85 87.66 54.83 28.49 24.42 85.69 85.89 71.04 71.11 95.74 6.54 8.62 38.93 17.21 54.27 35.13 53.09 9.76 29.89 65.31 11.55 56.66 0.43 66.68 29.39 67.88 41.21 16.98 94.80 25.57 12.36 68.87 72.56 54.43 67.32 32.00 98.52 66.93 65.81 25.78 62.51 25.51 38.95 10.71 78.67 32.37 47.41 3.88 22.02 51.54 56.13 13.20 40.94 58.50 35.17 82.87 47.93 23.17 19.88 33.84 97.79 23.78 94.21 94.75 57.99 37.10 5.34 83.54 37.17 60.75 -15.13 79.57 69.88 73.66 57.80 47.07 56.49 42.40 72.46 5.61 90.75 74.11 92.29 11.63 92.15 95.60 31.95 14.96 26.41 26.37 90.04 50.61 92.72 3.47 35.61 97.51 62.93 91.43 22.95 31.32 12.89 19.94 88.68 15.62 1.96 17.62 63.56 13.08 75.49 7.08 87.66 76.58 50.73 71.47 44.73 87.03 7.69 13.93 83.36 82.19 80.25 1.12 87.16 11.92 17.83 72.07 9.72 39.32 93.04 25.28 4.99 14.63 28.17 77.85 54.18 97.71 21.51 64.98 49.10 1.28 85.81 69.74 75.82 96.63 1.63 89.48 74.43 53.25 19.04 28.67 5.44 96.52 72.11 37.50 86.37 76.03 83.61 24.89 4.29 7.80 92.76 99.17 4.63 79.02 8.96 46.59 34.55 7.36 87.95 95.02 -15.58 71.42 21.33 88.65 94.40 80.27 94.85 58.26 84.85 14.54 74.40 92.34 72.17 15.19 78.61 72.35 37.89 53.98 99.73 88.36 2.12 58.58 81.50 65.08 22.50 63.84 55.78 23.77 93.37 54.28 85.23 67.29 67.99 52.82 56.26 18.31 36.06 94.17 38.45 78.14 89.81 57.64 11.56 99.34 0.45 23.19 95.12 10.11 58.32 69.06 92.22 11.35 38.59 25.61 93.94 59.08 59.93 90.95 56.79 88.34 3.12 59.96 34.01 6.14 44.03 98.48 32.07 7.59 46.03 33.96 48.93 89.38 10.49 38.16 53.30 39.87 40.46 51.97 41.32 54.41 47.47 87.56 40.56 95.09 67.93 29.19 32.13 78.90 5.65 33.29 11.65 54.02 20.00 30.78 58.49 71.31 66.23 48.71 98.15 90.37 -65.65 68.82 8.65 59.06 75.39 24.01 52.56 89.65 3.79 26.28 60.52 4.04 50.41 52.45 20.02 68.28 56.73 24.05 44.29 98.89 84.65 77.52 35.21 60.30 9.61 5.42 27.65 5.79 36.21 12.42 66.80 4.93 43.11 49.35 93.85 93.88 59.58 46.56 94.12 25.04 64.67 11.93 52.69 20.61 93.97 41.81 88.83 90.46 81.91 36.64 78.08 1.46 38.75 28.68 38.88 69.44 54.22 76.67 87.44 52.65 61.99 64.12 3.60 13.38 63.30 45.83 81.36 20.51 14.94 38.85 15.24 49.56 78.46 86.39 86.62 97.31 69.76 64.04 11.88 43.13 80.02 84.35 67.26 70.39 44.19 24.99 98.30 60.55 56.51 48.18 70.23 92.99 97.15 95.61 90.04 43.48 39.95 60.38 30.41 6.13 -28.70 31.38 27.99 41.19 93.25 53.82 89.78 15.18 84.42 78.20 62.40 33.54 19.19 60.60 50.09 71.50 31.63 45.99 6.12 94.17 15.49 65.24 9.29 83.55 77.26 56.00 88.15 26.16 23.45 37.84 82.72 49.57 74.88 77.50 13.02 60.59 52.67 55.80 93.48 67.49 94.84 26.63 58.48 55.01 42.34 63.52 98.81 30.10 27.44 42.65 64.61 26.94 26.02 91.94 62.71 17.90 32.86 95.81 24.42 25.17 3.85 26.02 68.59 2.16 17.67 8.50 62.05 7.98 6.18 16.92 8.15 26.93 43.69 75.67 95.51 86.07 55.05 73.78 89.36 34.78 39.95 56.71 29.13 39.14 90.38 62.74 76.17 73.06 45.91 49.64 2.59 36.73 11.10 61.96 11.37 62.54 11.74 1.51 58.97 13.23 -90.08 94.09 93.52 91.87 26.09 11.69 95.81 37.96 0.03 94.62 52.65 8.79 84.31 13.60 47.57 18.44 39.66 65.12 1.26 62.12 93.15 32.74 78.35 62.64 67.06 45.45 51.43 41.75 7.08 19.66 99.88 54.25 72.56 44.96 76.81 92.82 8.41 63.79 30.67 97.18 45.85 70.80 47.52 30.72 49.81 65.23 21.32 66.02 41.04 53.53 20.02 17.41 50.64 48.11 53.99 83.32 79.77 71.67 24.52 0.03 86.89 91.77 80.86 97.42 46.10 51.57 59.96 59.55 54.50 10.26 69.74 18.19 86.58 0.29 49.97 4.33 90.02 43.65 7.88 62.06 12.36 44.85 47.09 6.80 90.30 30.89 24.10 59.63 77.47 29.65 28.06 5.98 95.38 28.40 73.23 96.92 91.93 84.81 86.77 47.57 -84.48 11.89 73.66 95.88 51.94 33.29 66.86 77.15 34.01 1.34 24.11 36.24 83.45 3.82 14.14 16.66 88.62 60.08 13.87 67.59 46.54 0.05 93.08 20.48 33.56 78.84 3.25 27.99 51.91 3.27 1.84 25.02 6.91 38.20 50.49 12.56 2.10 54.49 42.29 8.54 11.76 31.19 66.44 39.63 78.47 27.18 0.89 32.49 87.47 6.30 23.37 2.18 2.45 45.95 24.10 0.68 44.86 0.08 73.75 57.13 18.84 78.15 66.26 67.39 6.64 34.70 58.27 79.58 75.51 84.48 54.34 42.06 48.68 73.48 70.64 40.47 37.28 82.06 25.69 50.54 78.32 78.02 1.32 36.57 90.52 86.16 88.87 78.42 90.83 94.61 6.93 50.47 1.19 16.17 30.22 37.18 60.08 50.52 75.69 63.50 -79.11 31.91 20.53 12.93 25.42 54.31 45.79 55.65 66.74 26.84 27.39 11.22 80.67 94.61 76.38 68.23 43.29 66.60 23.39 3.00 77.98 99.84 44.86 71.84 11.60 88.87 57.93 75.52 16.40 75.71 5.15 69.81 82.37 18.88 83.86 24.89 76.85 72.42 6.57 93.17 2.94 63.96 8.51 64.59 57.95 34.99 93.57 89.71 83.60 20.60 79.28 92.61 93.93 12.98 45.61 91.89 96.20 42.54 58.92 49.79 66.10 81.32 98.71 84.62 37.23 27.38 61.52 40.43 34.95 76.90 93.81 5.19 40.57 33.29 79.81 29.32 70.29 39.81 60.40 42.23 31.41 16.33 87.94 13.64 63.30 4.89 16.66 26.64 48.57 29.72 85.20 89.10 2.66 48.35 87.41 18.58 89.80 30.71 43.46 38.35 -2.13 59.13 18.95 73.50 62.12 45.53 66.52 1.49 73.20 2.52 30.00 23.91 84.05 15.02 75.02 2.67 9.94 65.16 10.22 97.31 22.10 86.23 84.97 61.15 45.93 72.96 38.15 65.11 54.11 27.53 58.04 2.03 30.46 57.14 45.89 13.04 9.41 95.02 3.66 90.62 13.42 73.92 46.95 58.82 26.79 5.31 29.10 58.53 29.65 80.48 72.95 98.35 41.45 86.76 24.09 49.47 13.87 55.00 29.79 17.95 61.21 0.95 76.38 26.27 44.72 24.47 28.35 59.56 41.43 44.32 4.41 88.96 23.04 61.30 42.46 48.88 65.18 54.40 48.32 14.85 85.02 10.73 94.36 45.15 75.13 91.80 4.14 24.75 9.07 62.79 28.87 71.88 20.24 5.98 74.08 51.18 50.70 14.90 25.65 26.12 -75.50 65.44 1.88 2.92 88.18 88.22 81.98 53.68 24.63 99.41 49.36 7.31 88.48 15.67 18.42 10.48 23.16 22.80 48.87 8.39 18.21 33.23 57.97 28.30 91.87 3.09 37.67 30.72 20.09 41.05 71.70 50.52 59.73 97.24 5.65 55.37 66.36 85.57 96.70 96.72 97.83 22.00 84.80 43.18 50.40 66.18 26.35 31.46 49.79 67.97 2.26 38.54 42.07 8.73 41.28 7.60 89.03 20.84 23.97 0.13 61.55 73.67 74.84 0.68 40.69 3.98 32.83 38.90 60.10 43.17 0.16 70.29 92.22 7.22 21.83 13.81 13.41 25.32 42.79 66.28 54.94 61.11 62.38 57.01 15.29 38.51 84.35 23.93 85.96 17.03 95.71 1.26 0.41 31.28 27.39 25.98 77.13 88.33 45.95 67.96 -80.02 51.93 11.75 96.98 9.19 24.15 17.20 72.24 67.57 43.72 76.39 85.97 44.11 14.12 26.97 99.76 79.31 25.53 69.78 16.61 18.22 61.25 61.78 66.73 63.25 39.68 26.35 92.82 2.75 16.55 38.59 45.85 0.96 14.06 95.40 94.84 19.31 69.13 4.11 22.25 50.69 22.20 57.49 60.28 81.76 97.33 95.92 89.31 89.05 31.89 55.23 80.25 30.95 14.33 2.72 78.27 92.45 85.69 64.10 70.22 33.56 87.62 74.83 60.41 5.27 53.41 32.76 29.83 62.07 57.52 23.30 12.16 17.34 32.02 77.52 27.18 86.33 98.19 87.76 61.28 49.97 71.44 64.55 48.87 92.20 8.41 76.78 28.51 63.07 21.90 66.22 55.59 89.86 47.12 72.19 74.01 55.67 54.69 32.90 22.00 -44.89 56.77 23.67 8.99 2.59 11.05 39.28 54.63 49.71 32.49 71.59 70.72 83.21 13.04 37.19 82.03 11.68 43.04 97.60 54.08 10.96 51.79 44.82 81.21 55.81 8.63 88.97 40.09 75.30 19.26 92.47 8.18 85.50 42.89 53.25 21.86 41.95 82.99 49.69 80.54 34.77 22.04 17.52 93.30 95.06 47.40 7.48 86.30 60.59 10.14 80.37 58.07 72.67 66.55 96.24 6.81 65.57 77.88 73.63 33.04 92.56 75.01 38.55 13.64 24.59 95.43 67.40 50.97 24.60 52.44 25.12 87.13 13.56 81.08 94.38 5.31 1.24 81.84 14.70 75.93 50.49 86.51 6.88 89.13 84.94 69.64 52.37 9.11 18.92 97.63 22.94 43.93 42.99 36.83 11.81 9.51 94.60 36.79 30.08 3.34 -46.90 49.46 16.96 54.95 86.90 67.27 19.92 5.75 18.45 38.33 72.54 68.48 3.27 75.91 95.15 90.85 43.44 90.28 47.98 32.11 35.85 60.39 23.20 80.54 23.82 66.47 36.59 67.90 45.99 46.28 23.05 94.43 49.15 96.91 53.28 81.05 33.44 39.00 7.01 9.35 97.51 91.13 8.08 91.49 86.59 8.28 46.97 71.89 53.42 11.73 88.40 94.35 54.16 53.19 75.90 50.12 49.59 78.56 16.77 56.71 68.93 84.99 16.69 54.31 17.24 25.24 61.06 87.43 63.45 14.95 36.95 96.91 13.50 41.07 46.31 20.99 16.57 87.35 30.71 8.91 40.76 52.85 84.52 12.29 92.96 87.57 38.56 55.07 23.38 63.65 20.99 76.57 42.13 19.43 62.07 90.86 49.11 60.64 71.35 85.23 -36.29 59.77 39.49 83.22 81.15 94.89 63.28 42.13 79.37 84.46 64.09 5.95 12.08 22.99 94.89 0.34 12.74 35.50 13.07 17.07 3.32 51.61 64.70 84.32 40.66 39.76 55.38 16.78 83.96 83.09 32.03 54.77 59.83 67.63 31.90 6.16 4.07 75.80 87.07 94.56 86.97 3.12 68.27 83.63 84.94 14.68 30.52 41.33 3.80 93.04 69.07 7.44 66.57 81.45 58.09 59.10 76.84 61.65 41.64 31.99 44.93 52.92 29.59 10.12 13.98 38.89 98.36 25.67 4.99 12.18 49.04 85.27 48.79 52.61 92.36 80.18 22.33 83.84 92.83 22.01 66.28 67.60 39.91 39.23 54.23 86.24 92.06 28.40 90.35 7.16 82.22 18.49 31.60 38.24 62.73 41.28 95.16 64.66 43.83 92.08 -52.23 28.62 43.31 84.71 67.87 73.60 58.68 93.78 0.31 3.89 70.48 84.64 7.58 89.22 51.18 73.63 7.60 21.70 16.21 71.30 88.13 72.18 5.08 28.03 76.10 14.16 32.29 27.80 2.18 84.86 72.18 52.47 16.94 33.49 90.12 24.26 77.70 87.15 81.57 53.06 48.38 31.96 97.18 14.48 30.64 83.74 62.22 4.00 34.62 58.57 33.31 66.48 26.70 78.92 51.76 46.75 98.05 99.01 44.32 61.55 26.11 12.33 86.94 8.80 77.56 92.87 22.48 31.45 7.79 96.25 34.96 49.67 67.64 8.33 78.08 46.31 56.91 42.20 12.68 19.14 14.45 40.85 82.94 8.84 82.59 38.20 2.08 62.44 19.76 23.47 88.67 80.75 29.22 81.58 29.98 37.47 98.77 21.57 70.68 93.50 -96.99 16.38 89.11 87.42 72.40 46.56 92.51 61.47 71.48 4.53 70.00 81.95 49.86 9.57 34.16 49.10 71.38 67.04 65.30 30.60 46.60 15.13 67.28 46.50 57.56 6.76 48.65 61.37 34.75 18.92 59.75 64.15 11.88 30.48 63.65 19.02 32.81 11.79 95.67 6.71 52.53 32.47 65.57 45.14 29.89 85.30 78.88 91.23 65.34 44.34 72.19 34.18 19.42 80.40 92.87 86.87 4.97 53.89 22.15 4.58 90.27 95.01 24.98 32.62 32.85 10.18 30.02 59.53 50.12 28.44 56.06 56.64 72.99 99.37 97.40 3.58 5.13 84.04 14.96 89.95 48.94 99.50 79.73 52.43 54.98 21.78 36.67 25.24 39.53 92.72 25.99 46.60 43.84 63.63 94.39 91.01 46.48 4.09 59.51 80.76 -38.54 8.96 62.71 61.06 7.48 15.23 12.10 72.58 23.29 24.39 88.23 74.24 73.41 43.36 67.66 70.13 67.45 84.03 55.22 57.54 76.26 48.91 49.07 68.99 98.12 56.58 34.52 42.50 37.28 64.62 73.74 52.83 65.16 66.04 75.03 57.61 8.39 22.51 28.90 78.37 83.42 28.81 68.28 25.11 65.49 26.63 29.17 43.74 95.38 72.03 42.61 63.57 93.26 36.10 24.23 26.40 3.19 69.05 69.31 93.53 26.54 64.54 68.28 1.28 36.20 31.69 7.71 48.46 22.35 58.27 80.90 92.57 60.13 5.82 6.80 0.29 39.73 85.39 11.12 91.70 66.56 78.43 5.94 62.53 77.96 51.47 34.75 49.32 68.17 81.13 44.20 50.95 62.25 18.54 64.61 63.44 85.59 82.49 39.34 87.22 -79.73 27.96 86.41 18.39 47.05 92.71 14.31 56.35 18.34 82.64 87.11 39.45 67.79 29.03 27.21 0.27 92.11 58.62 22.41 16.96 53.29 70.51 22.34 57.01 23.98 40.66 65.35 26.89 58.78 9.83 46.33 47.32 67.01 72.97 22.77 33.67 32.74 0.10 7.57 87.13 2.44 15.20 88.66 27.18 97.10 4.75 33.50 48.57 0.24 94.92 39.78 46.88 88.57 44.45 98.96 93.82 28.71 83.96 89.08 78.84 53.73 43.63 14.25 93.68 94.69 4.31 37.69 13.68 19.79 6.73 47.70 69.57 5.87 10.52 18.13 20.88 84.54 11.99 82.96 90.76 75.55 67.40 8.88 94.27 19.10 82.50 33.20 5.94 79.38 46.19 58.22 17.67 81.81 26.68 97.43 18.83 45.88 91.45 16.57 82.87 -31.57 81.93 93.02 19.92 14.66 58.27 19.77 0.17 12.82 68.53 59.11 88.34 89.76 63.60 98.48 23.22 0.65 97.21 62.23 88.68 43.81 18.63 29.98 98.48 95.74 17.68 51.22 54.58 75.51 17.34 14.11 91.13 99.60 20.92 30.83 2.37 88.54 35.87 22.56 26.55 3.06 71.81 2.35 9.47 17.15 58.67 84.09 28.81 60.16 23.76 84.66 67.93 75.74 10.88 52.89 76.65 55.76 64.93 68.34 16.26 83.36 85.11 50.42 63.53 49.07 58.07 20.80 43.15 25.38 6.45 25.83 26.71 14.96 88.01 16.12 18.81 89.45 53.95 34.37 81.19 82.17 37.05 80.33 40.70 52.80 29.21 87.79 74.72 81.02 16.56 81.84 20.92 99.29 28.12 80.49 30.63 22.46 34.93 2.58 64.50 -56.73 51.48 14.93 70.08 40.20 75.25 73.12 70.37 41.48 40.83 28.63 53.45 24.32 88.60 52.43 98.27 26.53 48.17 60.46 26.64 19.30 79.12 89.47 63.60 64.95 40.81 84.97 2.99 76.68 8.49 16.71 13.25 64.55 45.96 9.29 9.28 44.24 18.36 13.37 61.72 4.68 7.99 68.84 26.75 74.69 33.75 50.13 34.80 34.13 66.35 86.86 72.18 52.85 12.85 94.17 19.77 39.50 30.48 78.25 66.42 75.42 84.08 62.39 37.58 23.06 36.58 35.07 37.25 37.08 72.17 76.92 83.46 76.38 9.17 17.32 53.21 70.54 5.44 59.82 70.00 86.56 54.55 91.63 77.20 38.14 20.13 41.16 48.92 45.97 96.01 52.28 38.09 5.97 54.87 50.11 54.32 28.91 16.86 6.39 20.56 -46.31 8.02 22.39 19.94 81.15 48.76 13.21 65.77 2.58 79.39 63.56 19.42 81.91 19.76 17.01 59.81 43.10 46.88 43.56 57.10 22.07 30.10 82.74 64.74 45.27 5.36 61.94 42.51 30.94 14.48 61.56 48.32 74.41 44.88 92.64 79.40 20.94 48.40 0.09 51.78 28.85 91.12 21.53 89.49 63.23 39.16 24.07 35.64 67.00 87.75 0.84 70.51 91.56 21.81 61.11 28.33 91.28 92.60 64.22 18.11 43.18 88.51 17.86 41.66 39.57 58.51 23.37 63.16 82.27 64.16 42.69 24.13 11.72 99.64 87.33 76.25 21.45 64.62 18.21 21.86 26.40 17.98 68.93 22.09 16.91 18.69 98.37 13.29 21.78 9.28 35.83 5.82 7.50 80.20 10.42 94.70 50.50 12.47 45.63 57.38 -55.24 25.25 27.83 7.84 40.98 69.95 79.67 97.52 79.36 30.49 2.01 29.94 13.83 27.35 78.18 12.63 69.67 84.61 73.28 78.04 41.69 60.34 9.81 24.84 70.91 10.98 42.30 50.06 14.54 21.90 80.20 50.04 5.07 29.31 84.76 68.87 87.03 95.68 15.98 97.24 20.96 0.98 42.81 27.04 75.14 92.37 88.40 50.89 61.10 65.32 62.29 36.37 76.41 20.73 33.18 31.15 87.94 85.53 94.52 35.05 64.89 25.76 59.56 12.90 52.58 74.85 70.15 1.27 66.53 32.12 66.44 7.84 43.36 12.04 33.66 77.73 46.75 4.89 43.57 59.20 93.81 33.64 76.31 68.79 28.89 16.68 14.19 11.53 32.06 69.97 69.95 75.57 78.63 63.37 32.59 61.67 92.92 8.54 40.44 56.71 -2.08 61.97 1.51 76.14 24.12 72.12 91.81 22.36 40.24 54.73 51.01 86.34 90.83 22.59 90.02 26.20 6.78 63.84 50.53 79.96 71.06 7.19 31.68 10.49 32.45 91.68 54.05 93.76 97.66 71.95 65.51 69.55 12.47 87.39 92.40 77.79 67.19 3.93 54.44 32.53 92.15 96.93 31.19 88.10 9.04 54.52 48.20 76.72 48.62 26.66 55.76 5.32 8.53 0.78 0.06 64.84 91.31 97.95 57.29 90.60 92.64 50.29 81.72 4.70 19.61 9.20 92.12 36.18 46.04 2.87 27.94 15.09 60.02 74.19 67.84 78.21 46.02 84.58 49.92 57.65 60.53 30.13 29.54 84.07 74.96 36.40 71.75 5.87 96.43 91.15 25.98 85.37 55.11 37.50 28.65 45.79 62.52 54.89 41.33 2.27 -32.67 97.33 90.91 49.67 65.09 58.66 35.23 32.46 85.12 30.34 49.20 69.31 1.44 10.36 68.60 25.12 6.47 70.44 21.45 11.69 76.02 75.55 47.84 85.14 34.03 83.53 80.77 65.09 10.26 29.93 65.66 78.26 65.27 99.63 15.77 80.84 76.15 84.15 15.69 61.68 6.69 30.89 82.84 58.44 98.06 97.33 5.30 44.92 94.52 57.36 87.25 82.43 30.26 12.24 64.30 25.88 74.72 36.64 14.43 94.10 1.21 66.64 97.52 14.20 96.24 37.05 45.13 91.65 51.86 15.25 65.76 18.57 79.70 58.64 98.12 83.31 28.84 28.98 31.44 52.37 48.49 94.49 47.00 3.19 50.57 21.36 71.77 73.88 51.46 7.32 12.68 90.80 13.79 12.44 21.90 11.88 54.17 64.54 86.13 89.63 -73.81 65.14 40.21 32.14 6.66 64.50 89.16 9.27 10.77 84.44 26.50 66.77 88.32 3.97 75.74 12.82 38.38 94.78 65.58 3.56 61.95 92.84 15.48 52.50 13.75 98.73 33.47 33.90 26.70 0.93 4.76 27.24 92.28 68.67 46.08 58.78 90.22 5.80 44.85 86.25 91.75 24.51 25.36 48.97 84.11 59.06 78.63 40.57 98.41 58.44 98.58 8.18 12.78 90.22 19.46 36.84 31.43 21.68 93.69 89.32 56.70 16.16 6.71 83.18 96.03 44.94 87.76 87.71 47.72 52.46 17.47 28.05 9.97 59.82 93.71 99.64 71.74 60.33 94.14 20.05 60.64 17.50 3.84 2.15 18.30 82.25 12.88 67.62 2.44 3.00 89.62 13.27 73.43 59.65 64.59 41.15 80.27 3.02 88.75 5.16 -47.72 56.33 69.73 13.58 91.18 89.14 43.55 26.97 27.68 11.20 99.56 97.27 28.41 10.63 30.40 77.98 83.03 87.01 84.22 27.19 35.74 12.04 3.98 29.77 26.59 96.74 33.44 66.96 94.66 67.45 66.26 20.21 81.78 29.38 3.18 70.41 60.93 79.86 69.56 43.74 44.24 58.02 14.61 57.57 40.32 93.03 32.39 21.41 74.39 2.31 67.81 68.02 37.97 64.37 35.61 58.22 89.44 20.43 42.07 15.25 25.71 72.19 90.97 84.36 35.38 37.71 57.76 98.11 94.50 74.15 72.68 13.71 81.84 70.14 67.95 20.98 70.38 84.02 11.09 69.36 53.04 24.00 3.97 96.33 68.83 79.74 30.34 45.09 3.35 9.64 8.18 54.63 96.58 86.82 36.54 27.71 90.35 3.86 89.10 11.91 -47.43 42.68 90.28 95.91 89.00 46.63 67.53 36.41 22.86 98.06 44.36 37.76 45.30 94.27 27.89 4.52 89.29 34.30 32.14 65.30 45.74 81.96 12.51 27.65 13.66 20.16 55.69 64.80 24.87 4.12 0.67 75.84 8.74 88.68 94.00 86.61 52.55 26.19 75.17 80.51 11.18 70.21 17.01 3.77 14.67 30.36 23.88 8.96 48.25 32.00 53.93 32.55 66.45 4.59 82.41 14.92 45.01 59.64 22.04 33.49 39.36 20.25 65.26 91.51 52.76 78.91 89.70 8.55 57.30 34.02 3.64 89.91 81.46 65.41 20.43 4.53 90.20 26.97 71.78 96.56 82.81 22.60 21.12 1.09 88.92 18.12 25.43 60.60 27.26 21.22 74.55 81.34 21.87 99.42 79.16 84.72 63.41 20.03 33.51 37.77 -83.75 25.51 66.92 84.90 90.94 50.81 94.00 73.20 95.57 20.93 31.57 61.00 54.67 33.15 7.79 49.48 75.46 96.95 89.72 89.43 38.30 18.30 74.26 39.96 80.08 80.77 43.25 3.04 64.51 82.86 24.09 75.24 78.19 96.69 62.43 76.37 28.33 37.05 55.84 70.63 10.44 92.50 97.95 77.91 89.28 58.92 35.49 23.21 9.20 76.44 71.35 57.49 53.07 40.94 4.01 37.12 62.23 57.32 76.76 20.98 66.75 0.20 57.67 46.38 2.61 71.06 39.76 35.97 10.84 36.14 51.92 4.12 10.78 55.30 63.59 98.01 5.88 25.15 59.26 30.95 7.34 76.54 12.45 42.12 58.03 91.35 53.59 31.86 47.65 20.44 66.22 44.77 62.55 11.75 21.94 69.46 10.94 60.41 67.14 28.05 -21.97 97.91 38.52 52.09 99.67 9.91 16.43 78.00 86.72 87.75 65.26 89.05 16.43 3.65 91.09 3.54 43.86 58.19 35.74 27.50 62.44 48.62 53.47 6.41 36.82 49.95 23.42 29.97 77.60 36.17 52.04 4.10 54.30 5.48 73.04 96.84 24.59 12.41 9.79 97.52 79.24 0.74 65.92 30.90 15.33 75.45 52.20 61.05 84.09 86.22 56.01 82.73 54.49 73.06 96.77 30.58 97.37 47.50 45.12 16.88 66.89 38.28 10.49 77.08 45.54 40.76 39.44 32.53 53.19 17.47 11.63 17.69 11.86 12.36 9.44 39.44 77.54 70.80 99.07 22.51 13.04 50.29 23.95 35.43 5.83 12.79 56.49 69.71 60.41 23.71 87.37 85.28 89.69 65.30 65.93 11.91 23.76 78.39 73.66 61.58 -94.47 78.91 89.52 5.64 2.40 24.58 49.83 69.37 22.85 17.23 76.24 87.54 85.63 73.07 55.82 65.30 48.92 13.00 64.37 13.67 51.60 89.16 55.52 54.01 69.76 39.44 29.20 47.81 40.20 76.60 92.27 79.91 57.60 87.02 74.93 22.45 73.17 80.22 64.23 22.11 38.29 0.07 33.19 41.77 2.02 81.97 8.50 88.39 21.69 16.75 80.27 27.69 58.68 64.79 82.78 11.18 0.73 65.43 67.29 29.02 74.21 69.91 33.66 65.64 44.84 85.09 36.93 59.36 40.35 36.22 11.99 16.66 75.42 75.15 82.01 86.71 17.54 35.86 97.35 15.34 1.01 16.53 29.23 51.65 72.58 93.27 99.34 99.50 86.95 45.43 72.25 54.77 96.61 97.51 64.87 4.70 92.05 76.46 25.87 75.26 -94.59 18.10 9.36 52.31 58.01 65.71 97.79 16.59 7.30 60.94 49.38 79.64 38.94 46.96 70.57 49.42 29.71 97.94 95.70 60.68 77.08 81.11 13.34 93.80 11.85 66.94 94.90 56.70 23.43 40.45 48.64 9.74 21.87 34.46 35.51 8.91 24.88 94.82 78.83 61.67 35.08 73.73 87.01 35.15 31.05 50.58 46.06 36.73 38.07 84.19 33.84 37.47 81.30 31.50 97.69 89.29 59.21 95.13 25.26 57.62 7.66 32.75 97.41 16.62 88.83 59.80 6.41 23.22 0.45 65.11 30.57 36.90 46.92 31.43 47.34 56.03 12.58 70.71 53.85 69.73 29.67 45.17 34.14 97.33 3.14 12.20 49.61 11.19 1.93 71.85 53.26 96.95 5.22 65.75 29.37 33.69 26.77 75.74 5.06 70.06 -47.57 29.64 20.19 61.95 65.70 32.01 89.04 97.12 99.28 95.34 17.16 92.54 78.71 29.14 29.00 56.24 25.16 55.26 2.34 11.63 84.00 64.60 67.51 55.58 47.66 8.97 58.41 40.04 50.40 39.92 61.70 12.90 71.87 24.49 99.29 42.62 62.25 98.08 0.67 26.73 64.88 30.86 54.19 16.45 5.84 14.51 52.45 26.56 52.83 77.52 46.90 32.54 45.41 36.42 96.10 28.50 53.83 87.48 16.16 45.56 90.62 95.05 64.43 44.49 75.80 52.39 9.10 63.51 59.51 10.72 23.66 37.88 98.50 39.54 74.09 27.32 68.42 28.42 66.65 99.65 80.85 77.08 56.14 95.41 17.83 3.10 57.06 54.59 62.75 97.46 96.14 84.82 9.98 68.76 21.91 28.46 61.15 56.54 7.10 61.96 -16.36 44.24 80.18 64.48 2.90 21.16 10.62 61.91 15.65 77.54 76.13 87.36 39.70 58.65 45.72 97.18 89.53 52.54 37.23 41.30 14.45 50.64 42.79 11.65 97.45 27.55 53.58 46.48 33.93 93.77 75.46 57.88 5.10 77.48 4.27 63.31 71.16 57.31 22.10 16.75 55.07 89.90 73.41 50.80 4.05 3.80 91.15 23.18 77.02 30.12 63.58 90.18 90.05 84.12 98.18 17.09 15.28 36.31 92.79 1.51 39.47 17.35 37.73 55.81 81.51 21.27 47.13 29.63 50.24 93.88 47.06 48.01 22.43 31.00 26.85 45.77 79.28 23.47 82.43 87.67 43.69 3.06 21.61 27.89 12.32 48.95 61.81 13.52 16.02 15.22 95.55 77.46 19.69 56.14 95.25 7.25 93.96 14.12 31.05 2.73 -36.45 13.00 17.51 53.38 67.40 95.54 6.20 13.32 19.48 30.21 35.12 55.73 32.07 47.14 29.76 54.76 71.21 27.21 51.34 6.12 21.62 81.23 36.31 56.79 27.83 37.18 91.04 59.04 79.59 25.19 72.56 99.91 34.38 55.97 45.70 16.86 70.04 48.49 51.29 19.12 95.49 12.54 3.71 36.82 28.92 0.80 60.34 91.29 18.91 51.07 43.09 58.21 23.10 39.92 30.65 16.29 48.33 43.25 66.00 85.66 43.92 58.76 46.14 12.70 71.17 32.92 73.38 49.85 83.54 56.18 56.43 92.33 80.51 68.53 86.63 60.42 56.42 64.82 63.97 7.14 16.84 70.22 99.90 54.96 85.63 84.46 65.14 30.93 85.15 47.05 36.80 85.68 37.19 28.36 52.09 11.56 80.91 9.30 4.97 56.73 -33.23 65.13 34.53 24.34 89.24 7.36 4.60 22.46 94.64 77.30 67.39 51.62 62.64 61.37 23.70 42.55 86.81 85.06 41.04 22.83 77.79 71.53 86.16 82.62 84.65 83.35 24.59 75.78 74.73 4.88 25.63 19.78 72.57 29.09 89.30 33.87 97.65 3.28 74.42 66.29 50.50 75.22 48.71 98.23 58.15 71.05 54.13 70.11 69.61 67.96 68.64 36.11 19.84 71.03 38.95 60.06 27.31 47.81 81.53 22.29 8.39 96.51 84.82 40.44 51.59 87.26 99.08 99.38 6.18 23.33 99.26 81.00 71.50 46.31 49.66 48.08 15.93 97.76 38.80 76.11 74.55 7.16 43.53 17.52 9.43 54.40 31.52 94.22 95.13 0.60 48.04 69.88 6.90 45.88 96.87 9.68 48.79 51.48 27.02 97.78 -12.31 4.49 53.58 49.29 3.31 51.17 99.12 16.83 1.92 98.69 11.55 76.60 31.26 82.30 66.62 66.15 39.61 87.66 35.79 97.76 76.00 9.47 83.75 10.23 54.53 64.25 60.76 37.08 5.48 89.98 87.38 90.01 35.34 65.59 57.68 46.76 56.83 46.78 19.79 44.88 16.74 79.57 68.88 45.46 41.23 8.85 61.94 62.96 42.39 69.85 90.74 72.76 44.68 60.05 67.92 81.14 88.81 28.44 19.29 86.81 71.28 23.19 86.71 31.83 9.87 61.12 84.89 67.59 99.91 93.89 27.61 54.72 87.31 28.56 82.35 69.20 43.39 87.82 31.70 64.63 44.55 53.87 55.40 23.36 36.92 22.10 49.46 1.24 8.86 54.40 49.94 38.87 95.03 41.97 40.56 26.07 23.33 10.89 54.86 46.27 -51.74 26.10 9.41 3.41 83.58 31.74 7.64 57.71 37.18 62.50 56.43 59.75 85.66 51.36 98.54 17.40 85.81 26.11 32.28 22.33 41.35 46.62 0.93 64.55 95.50 59.46 85.70 44.66 37.94 42.14 29.13 33.78 67.30 71.95 42.12 88.03 34.38 71.05 50.24 53.19 51.55 31.70 32.42 79.00 82.36 95.68 24.89 81.59 65.24 52.93 50.88 61.01 13.78 3.28 22.91 95.12 69.97 64.64 38.05 80.11 63.33 62.54 75.34 97.94 20.27 37.87 78.89 41.98 83.94 6.31 46.05 37.19 44.40 5.85 39.35 34.64 56.66 43.02 86.98 94.50 12.45 11.50 17.58 61.80 86.14 0.36 1.00 0.75 60.47 12.97 32.46 26.36 65.44 42.88 47.08 18.12 93.82 46.08 40.45 0.58 -34.72 79.05 44.80 1.02 53.56 20.31 34.79 23.18 9.82 88.69 73.67 37.59 58.99 36.14 9.60 45.42 99.86 95.46 79.32 43.15 37.55 94.97 56.75 51.33 83.07 55.08 25.33 45.04 77.16 79.97 14.28 46.12 44.19 1.69 65.57 90.49 34.77 33.05 75.18 50.90 82.48 95.93 70.32 8.32 51.55 98.01 51.49 17.09 43.40 8.94 90.29 81.42 96.29 38.66 14.03 76.17 62.81 49.63 41.82 67.27 25.29 95.36 50.76 6.59 74.04 93.07 27.86 90.24 53.29 6.34 42.80 37.88 45.51 30.93 61.76 10.43 15.80 48.77 95.30 2.52 82.49 30.00 59.72 79.58 6.78 52.37 14.39 0.72 29.81 27.65 70.71 11.35 11.13 73.65 81.27 43.68 87.72 60.50 10.24 0.02 -30.85 8.43 15.98 31.10 55.19 11.27 10.05 8.92 11.79 98.72 58.67 78.35 55.82 46.42 32.38 13.25 93.97 55.03 95.92 69.19 11.31 30.37 93.89 63.61 4.24 39.46 85.83 36.57 65.18 9.00 12.29 18.81 2.99 67.86 1.73 92.46 73.72 18.49 43.56 92.51 36.34 67.05 90.15 85.29 53.81 31.42 71.93 34.82 28.78 14.36 15.23 3.37 20.29 77.71 30.67 64.03 14.08 48.95 42.51 28.84 28.69 29.21 95.82 90.64 54.85 2.70 34.02 55.53 13.72 18.05 82.42 32.13 97.46 92.40 66.47 47.38 40.56 18.79 60.54 66.91 78.38 50.69 11.60 12.69 10.48 32.79 43.26 16.66 2.45 85.15 55.95 85.67 94.79 54.11 94.33 87.87 39.32 10.92 58.19 20.34 -72.92 26.64 58.76 1.78 68.62 38.55 0.02 96.95 37.10 61.73 73.75 52.85 7.95 18.81 41.44 34.50 46.43 50.76 34.01 42.14 83.74 98.64 58.09 42.48 47.98 60.91 49.82 33.18 94.58 97.76 84.79 99.68 96.71 18.01 16.58 30.39 95.01 69.88 18.42 34.30 7.81 46.10 90.45 1.57 51.61 89.51 37.40 59.26 12.77 25.53 73.61 78.41 51.70 46.54 87.31 77.39 45.92 53.33 9.75 22.46 5.18 93.93 46.71 27.11 95.03 83.98 65.54 46.05 2.76 78.03 8.78 37.77 44.33 93.81 54.41 48.78 60.65 62.25 55.47 11.49 74.88 24.82 48.67 24.52 62.53 36.46 63.61 25.70 82.71 36.57 79.27 41.21 85.74 21.29 1.22 90.57 41.48 17.90 52.00 85.44 -19.62 7.45 63.16 64.25 98.93 2.70 59.12 72.20 3.48 18.30 49.36 44.23 4.63 51.26 59.96 86.37 44.89 30.36 97.37 14.36 14.33 71.97 78.50 84.42 55.76 13.48 75.38 14.30 64.58 5.35 33.23 46.49 51.92 41.60 66.16 68.39 8.42 88.30 4.27 55.37 71.14 32.37 71.41 56.24 38.35 46.91 40.10 39.76 44.86 88.68 86.74 76.22 77.30 84.99 30.81 9.55 91.58 55.97 13.09 63.23 86.76 56.56 74.97 31.84 31.13 32.59 51.41 70.73 51.82 40.53 13.41 18.35 13.49 95.38 51.55 94.29 10.27 41.43 61.93 54.81 19.84 12.40 33.33 22.21 96.71 44.68 1.37 75.80 13.11 81.81 48.04 40.02 24.28 11.99 69.23 0.33 4.90 34.33 45.66 46.97 -42.61 52.79 61.10 88.58 87.82 11.05 42.68 72.47 79.42 11.22 38.00 67.53 59.74 19.90 91.19 16.44 33.53 48.75 90.24 69.51 44.91 57.62 85.28 6.54 43.58 45.40 16.85 94.17 10.60 18.67 92.85 51.26 3.78 62.79 65.96 82.09 54.80 59.95 52.14 41.44 58.58 76.12 17.73 91.52 62.51 35.08 5.86 24.51 30.71 95.80 98.53 59.57 7.77 0.87 50.87 58.23 61.37 68.24 83.65 81.78 49.63 31.44 96.00 43.21 76.92 76.83 93.64 81.45 96.12 36.45 18.62 24.09 54.79 97.90 40.49 81.50 23.21 53.13 94.35 81.05 93.39 7.87 7.53 47.90 7.33 19.73 66.41 48.17 55.72 76.79 46.38 18.48 47.79 39.76 80.99 96.38 4.54 16.76 52.29 1.19 -87.32 21.68 61.62 77.22 90.09 97.57 77.30 19.88 80.61 64.45 37.42 85.42 6.41 4.05 89.44 26.25 43.02 27.22 88.08 12.97 22.57 98.84 64.42 7.29 51.53 71.43 93.87 92.55 76.51 47.68 20.06 85.42 67.02 23.22 18.73 33.05 2.07 18.61 67.02 20.46 79.80 99.37 76.60 33.72 48.41 67.59 51.59 63.58 17.52 7.48 97.08 60.37 4.60 42.00 93.07 65.10 41.83 82.23 22.18 50.65 22.10 99.42 78.00 38.67 13.84 40.13 16.48 54.66 0.94 34.50 74.88 96.18 25.05 51.23 3.79 11.95 78.69 52.65 4.48 90.37 8.19 64.88 73.51 8.77 70.51 19.69 35.25 56.38 51.29 34.69 83.40 1.86 16.25 28.94 18.38 99.67 63.09 81.46 78.74 20.46 -65.13 83.29 98.93 54.51 51.58 65.11 95.45 75.35 69.52 60.80 6.49 50.98 16.90 78.63 92.62 44.25 37.71 29.69 69.89 38.15 98.79 1.44 80.05 14.98 85.44 55.82 57.78 19.63 57.03 61.59 63.37 1.20 77.95 54.01 41.79 18.80 83.32 93.01 74.36 18.00 23.57 27.50 1.16 53.41 37.90 47.07 35.90 40.17 68.88 94.24 58.83 59.75 88.72 82.93 84.24 52.46 27.93 39.21 3.37 35.38 82.34 18.14 78.60 15.33 94.28 22.89 21.26 38.86 0.92 42.05 44.78 4.21 80.34 33.26 84.05 37.02 33.36 82.18 3.69 86.72 79.04 15.53 43.91 96.55 25.32 5.69 39.19 62.85 77.35 92.13 28.78 13.69 79.93 14.05 67.93 31.33 67.33 7.20 2.67 18.06 -19.34 83.64 41.58 86.18 72.91 49.99 12.62 4.96 35.68 86.92 69.47 98.43 54.93 1.13 89.91 76.12 3.16 2.67 92.95 6.68 12.60 10.43 80.87 98.66 47.37 91.00 28.31 82.51 95.16 41.05 28.70 39.09 31.09 22.15 10.59 3.66 45.67 90.87 7.89 75.10 43.75 72.65 88.15 64.59 0.80 28.89 74.25 65.08 81.04 62.09 70.61 82.46 54.85 83.81 62.90 97.82 83.67 15.12 44.65 97.86 20.19 25.05 47.39 44.97 51.62 5.14 65.24 54.08 25.87 50.02 51.07 57.56 52.80 96.65 24.21 58.97 50.30 36.68 50.94 60.10 43.92 51.82 24.69 46.05 36.90 84.05 62.78 65.65 34.43 47.15 4.97 65.62 40.59 64.21 45.84 74.29 28.52 89.45 1.32 68.72 -24.48 97.14 67.30 88.68 67.47 73.67 33.91 42.88 78.92 20.40 33.65 93.59 63.00 4.14 22.27 74.80 21.80 81.08 66.36 42.74 38.73 73.50 60.14 66.33 83.96 28.36 72.75 19.29 98.29 87.36 46.70 33.71 90.33 33.79 6.60 90.03 99.95 79.41 23.70 67.31 25.88 45.96 39.01 39.23 18.09 80.51 17.16 63.58 29.42 63.73 35.21 74.48 50.45 91.05 59.21 89.66 80.76 3.41 38.37 84.21 4.33 57.46 44.40 44.70 91.47 26.05 43.30 41.75 13.07 42.26 39.61 30.81 22.59 70.23 12.41 4.94 53.68 21.62 26.58 29.19 16.15 17.99 78.77 81.30 1.72 13.82 37.83 10.12 46.41 76.30 43.77 83.08 10.98 12.45 3.45 63.89 84.04 77.66 67.85 82.90 -93.44 51.73 81.96 38.94 73.47 10.16 75.59 31.91 90.15 28.34 41.33 57.91 64.42 98.93 75.73 98.76 23.75 60.31 86.84 84.02 37.38 57.46 28.58 11.98 98.50 65.85 49.58 74.32 68.42 45.51 78.54 20.49 61.38 95.00 3.43 82.23 93.71 71.66 52.65 36.63 67.47 1.17 62.70 98.85 8.61 54.92 54.27 13.58 83.01 23.74 96.02 53.85 44.63 81.95 53.36 88.06 14.64 3.98 72.91 81.04 64.04 11.66 96.92 1.75 68.07 83.73 96.90 62.41 33.33 99.57 88.49 43.26 10.96 48.68 95.15 0.05 87.56 24.45 80.96 63.99 44.50 94.17 95.09 14.40 8.98 11.84 6.22 17.57 29.71 17.80 35.66 88.89 45.09 35.06 5.15 33.56 62.69 84.16 61.50 30.37 -3.14 67.67 76.25 57.25 56.63 17.42 33.93 87.26 55.62 51.57 24.17 53.01 71.50 48.33 4.06 80.22 55.60 19.86 83.53 13.98 72.32 25.99 89.43 52.45 30.19 29.87 78.31 0.65 18.15 36.36 23.39 11.23 76.82 22.17 73.90 4.16 74.99 4.12 24.24 96.25 99.22 10.35 35.52 82.54 13.53 55.23 17.55 90.53 20.87 88.56 11.72 20.42 15.98 22.04 35.58 12.67 5.99 94.57 64.33 68.09 29.10 0.93 21.64 24.99 31.21 33.46 57.16 2.10 75.79 74.08 24.37 19.69 21.57 36.99 2.02 31.89 42.27 62.37 42.73 2.41 53.54 86.04 50.45 49.03 21.79 86.06 51.87 27.85 8.59 57.47 28.84 66.60 87.21 33.93 44.82 46.43 17.27 90.64 76.17 41.28 -26.48 67.02 33.53 80.02 85.42 31.50 32.62 98.07 53.34 78.30 4.81 70.12 45.59 42.22 30.31 56.58 51.92 20.33 88.83 22.07 55.18 7.88 3.89 34.23 51.40 86.31 53.88 71.43 60.18 31.03 34.96 88.53 55.70 55.61 74.78 88.92 61.44 38.67 26.25 12.41 36.72 46.50 28.13 94.59 87.80 49.65 38.37 51.33 52.44 93.04 26.03 62.65 26.06 27.17 1.64 19.36 24.19 86.29 67.24 30.04 41.85 28.70 62.32 87.87 0.05 38.24 76.15 83.09 57.92 81.41 79.73 41.91 66.05 58.21 14.21 55.48 15.92 10.98 45.30 89.35 46.56 54.01 30.67 41.39 47.49 99.87 47.13 13.97 37.74 27.13 11.68 46.19 20.93 21.45 10.25 74.58 51.93 36.17 60.90 81.86 -16.24 7.41 18.03 19.21 59.77 72.15 78.85 79.01 98.43 18.69 89.59 55.14 77.23 73.07 39.85 11.85 96.97 9.80 17.70 46.81 76.69 5.37 86.77 59.60 41.80 62.17 74.31 83.24 1.59 59.15 98.59 14.47 29.00 89.60 8.38 48.81 6.65 5.52 65.76 17.70 15.50 2.10 63.47 23.31 98.75 12.27 44.38 31.98 9.60 70.61 50.77 74.95 29.72 35.17 33.21 42.17 79.09 16.00 46.48 21.24 84.13 69.09 41.44 82.32 11.68 22.87 13.97 1.71 84.37 95.51 16.57 44.57 11.51 41.86 97.03 90.46 63.52 41.26 34.56 26.64 83.17 27.34 48.57 31.40 9.09 21.73 81.20 75.09 72.23 75.03 78.39 99.47 81.28 67.56 60.45 26.19 35.85 39.16 9.86 31.93 -71.45 89.37 63.94 46.44 36.55 54.82 26.69 37.59 62.18 81.44 69.74 35.11 76.79 22.35 59.87 63.52 7.59 37.78 3.93 2.94 19.37 98.41 92.12 9.39 25.42 14.41 30.15 12.22 71.94 67.57 49.83 26.68 64.37 73.23 44.27 54.83 18.63 53.14 53.09 49.97 91.48 41.47 61.10 25.29 94.16 80.41 36.63 36.76 79.70 77.54 49.31 12.99 88.16 36.89 72.44 88.56 13.83 54.77 83.80 53.87 32.27 74.19 2.12 41.69 71.19 87.19 66.45 45.64 16.59 80.02 54.11 10.53 41.79 2.89 4.96 20.18 46.15 49.18 53.51 39.35 51.27 24.31 82.56 73.14 72.12 4.29 54.68 70.56 68.70 30.74 71.46 8.86 61.56 78.11 48.06 47.74 54.35 98.70 77.13 79.33 -83.06 99.30 47.90 68.51 24.50 92.17 27.45 13.25 71.58 47.88 50.58 37.00 82.09 63.08 53.86 9.46 9.86 20.17 48.97 9.43 61.83 65.38 56.18 7.96 66.60 49.01 69.64 73.25 66.24 15.94 3.34 9.53 38.70 51.00 54.48 18.72 91.58 51.49 70.47 3.35 12.28 87.97 42.73 80.48 42.88 68.97 90.19 8.78 93.68 69.21 41.57 39.58 74.52 44.42 33.33 12.80 70.57 73.30 8.79 31.22 87.46 34.80 70.16 68.59 20.77 63.72 82.77 21.42 32.87 30.81 80.93 59.08 18.45 95.49 38.94 21.44 87.82 25.97 59.81 66.85 65.36 74.09 38.30 24.84 51.72 2.95 63.70 47.57 38.12 75.91 99.59 63.43 73.03 82.22 17.70 45.67 32.08 72.18 74.24 33.57 -9.29 79.90 72.86 13.98 32.61 13.25 11.05 61.01 75.44 74.32 3.50 5.08 78.85 61.86 49.34 27.53 15.36 32.21 31.57 22.86 91.78 4.55 48.17 58.51 16.97 54.57 61.91 47.57 9.33 10.82 23.97 82.95 26.97 92.04 39.24 58.54 39.87 78.37 46.18 32.19 88.30 61.64 73.35 70.47 35.07 13.38 49.40 38.29 74.35 48.34 1.38 97.55 10.91 64.19 61.06 27.28 47.81 34.45 98.59 68.32 16.76 46.95 42.77 92.10 18.62 35.96 30.85 98.32 90.08 6.44 87.19 20.14 8.88 82.63 6.56 66.53 30.35 63.54 42.80 49.88 81.77 40.42 92.94 92.34 79.96 23.79 9.03 65.26 76.21 20.26 75.95 96.15 77.20 39.15 85.73 5.12 80.88 4.52 83.36 44.91 -47.86 46.00 30.39 69.13 37.01 16.47 63.29 75.05 37.95 27.39 80.81 35.81 18.62 55.12 84.44 27.77 25.79 65.17 28.93 31.43 3.83 63.21 1.77 72.63 73.77 16.31 19.60 41.73 75.72 73.73 49.90 41.98 46.84 33.15 89.18 87.56 81.22 12.98 32.48 83.64 43.95 49.56 44.96 26.74 43.40 86.77 86.20 22.32 19.16 71.74 68.90 98.96 63.34 80.57 38.07 21.26 47.07 95.51 42.63 67.77 54.81 47.68 42.90 95.99 97.63 28.51 23.67 90.04 16.47 95.47 18.24 1.47 73.37 61.11 25.20 89.40 87.12 3.67 91.08 92.30 11.90 84.20 52.56 83.60 64.68 36.71 10.39 76.74 87.89 88.72 64.50 47.54 74.99 65.84 78.55 93.92 24.41 63.93 21.14 86.11 -40.36 82.86 13.92 71.27 1.61 59.42 29.50 74.79 89.21 67.56 45.57 72.15 69.11 95.68 35.34 49.39 50.82 75.03 95.69 29.81 88.50 1.22 64.00 11.37 63.94 64.64 74.88 74.89 14.10 14.10 24.00 88.03 15.91 45.31 22.82 28.60 6.80 15.50 90.08 64.18 30.33 14.02 1.48 23.40 67.84 37.56 5.63 13.68 79.75 62.89 41.66 5.08 15.96 65.91 54.53 93.19 22.00 65.65 49.10 51.51 39.09 25.27 70.42 49.95 58.10 18.18 95.24 70.11 86.47 56.25 74.01 22.71 51.66 30.45 60.72 25.61 26.45 22.84 78.87 23.29 3.11 97.81 65.02 47.00 20.72 49.66 26.72 18.83 68.25 46.62 12.53 48.59 16.92 95.80 55.19 4.04 14.01 94.65 99.55 75.64 -99.11 53.78 63.41 79.55 54.58 65.92 35.46 17.31 63.83 58.07 90.71 66.90 53.87 30.54 40.46 29.23 17.04 38.98 38.18 62.53 91.31 97.11 27.95 25.90 43.20 97.72 49.27 34.12 97.95 72.96 12.82 32.89 89.87 95.25 38.07 83.35 37.75 1.58 86.25 87.50 3.66 71.65 40.19 43.01 67.93 46.10 20.01 85.13 56.63 17.55 80.87 87.34 40.21 39.16 82.30 38.37 84.41 23.56 78.06 71.84 28.06 73.84 77.66 80.69 32.70 71.81 82.75 11.64 20.50 55.85 20.30 50.15 1.19 91.38 59.66 25.45 16.58 94.05 51.07 4.83 14.31 18.29 24.48 91.83 43.33 36.13 44.84 14.27 14.71 22.97 84.36 92.96 22.71 7.22 27.86 12.92 43.83 16.91 71.13 24.22 -46.37 5.85 72.47 54.06 78.18 10.28 45.00 79.04 56.43 48.65 83.22 5.80 88.65 64.11 10.84 62.23 11.96 44.83 29.18 69.73 13.53 49.78 43.63 33.73 79.79 28.65 7.77 5.73 67.24 45.81 99.55 60.37 68.55 17.96 35.57 88.36 99.71 48.62 74.97 78.94 90.48 83.46 2.97 65.33 54.08 55.65 11.06 57.96 36.04 7.22 28.40 71.61 55.85 5.00 61.41 70.77 72.26 35.54 10.40 36.05 0.86 51.50 61.68 16.72 97.41 13.42 5.70 7.72 79.19 67.43 49.81 14.49 76.39 9.85 77.57 33.95 73.42 40.81 42.67 64.60 92.31 51.24 81.10 68.41 97.55 7.20 13.51 56.60 87.65 66.17 50.32 89.53 50.61 6.63 62.37 95.88 31.13 76.90 26.23 6.09 -30.43 18.83 22.08 57.56 53.07 46.46 55.39 11.65 86.72 53.06 18.08 62.45 66.52 40.98 53.28 8.03 32.70 50.16 97.22 19.90 4.51 46.42 84.19 78.77 7.49 41.27 51.71 34.78 86.96 54.31 33.01 57.37 56.60 88.03 36.66 61.46 83.52 46.73 19.18 51.59 65.35 33.56 73.24 60.24 99.14 32.75 60.28 50.66 8.77 36.05 45.83 0.87 62.24 28.65 9.38 0.84 44.38 9.44 13.14 60.76 22.57 95.85 7.05 68.09 98.85 46.74 45.61 26.80 14.40 82.70 16.34 31.56 25.09 91.06 84.50 1.87 98.58 67.83 92.01 85.99 90.54 68.89 69.29 97.17 11.97 52.06 80.44 9.70 70.46 9.44 44.13 80.05 7.71 2.76 31.08 37.25 49.68 6.50 27.87 46.14 -96.81 16.05 79.84 98.02 6.92 43.50 35.70 77.61 6.00 73.52 86.82 81.41 40.01 3.81 36.69 9.59 13.07 11.08 16.87 50.08 1.47 28.25 16.19 41.57 70.89 57.73 92.18 34.63 17.24 47.82 22.52 52.05 72.03 89.98 53.22 0.87 34.59 45.69 72.78 60.66 35.50 8.45 14.10 41.38 56.96 12.37 92.23 41.08 60.34 77.62 77.30 4.51 27.34 51.39 42.89 71.08 60.95 51.02 98.74 27.78 82.48 91.23 0.76 98.02 12.29 71.54 55.03 46.30 22.12 35.83 21.57 62.46 67.58 55.14 55.30 78.11 11.85 32.77 27.32 5.18 88.23 82.80 64.98 9.27 91.03 90.49 26.61 80.17 74.57 73.12 34.28 8.76 78.49 14.95 17.29 14.41 87.14 16.56 29.93 55.45 -35.26 7.93 66.87 90.48 24.63 42.10 59.33 89.51 56.52 33.33 68.33 45.47 87.37 85.16 1.83 3.91 15.35 76.89 62.38 60.37 63.43 97.62 57.29 90.98 76.40 78.60 80.87 14.29 65.85 67.65 97.82 58.75 7.71 63.16 3.16 5.20 18.87 15.31 2.83 85.01 98.27 23.93 47.98 74.14 2.82 90.19 10.69 66.74 82.00 43.67 18.86 53.90 67.33 50.51 69.54 33.43 8.05 60.16 29.19 8.94 57.14 0.16 22.02 74.26 27.37 29.48 66.33 92.40 59.10 62.52 14.67 55.02 4.92 50.85 70.45 59.50 51.30 18.31 70.46 6.62 36.63 55.25 25.33 45.19 87.57 74.58 88.38 73.71 37.70 29.49 95.15 15.71 35.70 17.26 37.26 10.06 47.13 60.68 44.68 36.34 -67.67 11.16 34.98 67.38 89.48 26.99 69.88 33.24 58.09 45.44 67.42 87.76 16.12 84.14 84.03 45.09 3.54 91.80 56.27 88.14 6.86 77.03 99.55 9.04 54.63 67.33 52.85 82.86 5.95 76.37 94.44 37.80 76.06 66.45 11.93 33.10 67.63 29.90 97.47 6.24 15.28 51.53 1.07 77.41 24.78 11.56 32.54 4.12 40.88 12.23 6.50 60.24 13.16 44.09 41.15 94.94 18.44 67.51 88.51 48.16 33.61 38.18 91.10 48.60 12.14 61.50 21.97 34.43 69.18 16.72 60.83 2.20 76.86 23.88 38.66 25.08 12.96 79.87 45.09 85.17 77.55 26.96 78.06 71.91 86.78 94.02 62.95 45.09 90.20 8.46 68.12 39.92 66.63 62.76 85.86 41.99 95.53 40.48 30.53 46.72 -26.22 63.96 78.41 45.08 78.18 12.70 60.73 83.02 21.60 84.48 32.24 49.21 98.15 33.82 77.62 62.55 31.90 65.95 41.16 39.01 95.24 60.19 74.07 74.32 96.46 0.57 90.86 85.18 66.46 4.75 46.12 21.19 76.01 25.08 40.08 16.65 4.57 17.23 94.70 54.53 93.30 80.41 79.32 76.84 9.89 1.24 7.80 89.26 30.01 82.37 21.76 94.53 4.75 35.33 86.40 1.99 92.34 8.11 35.63 21.60 99.66 22.06 38.08 94.81 96.16 3.22 39.86 28.06 89.76 62.27 55.81 96.89 2.48 56.13 56.60 45.29 66.92 76.29 11.53 50.93 48.15 57.67 77.89 39.53 23.39 79.28 79.72 89.76 42.68 52.80 69.20 22.21 51.96 41.78 81.07 54.96 41.77 49.68 61.27 57.71 -18.04 3.49 70.77 9.35 41.47 96.42 80.55 99.29 78.60 29.34 14.02 25.48 34.55 4.96 53.72 88.32 92.60 89.35 0.23 93.25 48.91 92.47 42.16 6.51 11.55 91.79 58.97 99.50 92.13 67.36 92.43 98.45 23.32 87.95 38.27 78.51 52.85 49.01 7.09 50.81 83.59 23.31 55.86 42.15 90.67 24.52 45.08 53.04 78.20 71.36 63.33 50.37 92.83 48.44 15.37 86.78 37.71 33.75 73.94 19.65 49.14 22.73 17.50 84.75 96.51 65.52 8.00 78.18 88.15 26.60 18.92 76.52 54.42 59.31 13.05 99.53 66.93 25.90 83.54 10.62 73.31 62.65 51.44 97.14 33.94 28.86 51.56 91.97 28.71 2.50 18.94 63.55 1.36 97.63 72.69 69.86 91.63 25.59 82.53 31.49 -60.24 60.04 39.76 41.62 37.75 47.41 38.06 61.10 33.11 34.10 6.08 95.57 53.96 71.92 79.46 60.63 61.86 21.52 54.17 82.24 46.15 7.03 49.43 17.82 90.53 47.73 78.13 2.20 92.71 10.15 94.78 72.23 87.51 86.28 94.06 46.90 44.20 52.75 93.14 35.51 16.57 24.05 30.14 39.62 59.82 27.46 82.43 17.84 60.95 77.50 95.60 58.09 21.07 96.29 47.83 61.14 50.55 14.01 11.07 51.11 59.66 14.80 59.22 81.77 27.00 36.68 19.10 56.03 93.65 27.01 36.10 9.47 30.71 28.75 53.70 3.94 95.65 45.44 58.08 69.00 15.91 82.03 76.00 49.15 8.29 28.21 48.11 65.81 59.37 11.66 25.62 50.47 92.42 8.20 84.63 17.18 35.15 26.16 23.35 89.07 -72.19 42.09 68.42 85.30 83.23 9.57 9.72 35.51 4.23 25.35 93.47 73.75 95.36 39.50 69.21 34.36 97.25 15.97 55.26 52.24 73.13 78.93 28.18 33.50 33.95 20.62 63.58 87.32 19.89 83.47 15.19 25.97 7.04 26.00 0.74 72.22 44.26 83.21 7.99 67.97 14.11 41.09 86.53 90.28 1.41 26.23 21.82 31.34 29.08 66.35 80.71 48.25 30.63 50.46 22.83 28.91 83.13 77.16 7.42 71.06 92.94 89.87 33.32 26.96 14.23 60.65 55.65 88.90 78.97 5.98 70.02 28.54 17.02 15.85 93.15 82.49 35.09 73.30 90.67 37.11 72.62 1.19 93.84 58.17 60.75 54.55 6.67 94.82 13.26 23.83 10.08 85.54 4.01 63.98 5.14 13.11 93.13 95.81 13.62 94.24 -77.96 81.65 51.50 51.17 28.85 32.34 87.91 33.60 94.81 41.29 43.81 89.40 7.88 79.76 32.08 88.97 68.32 47.26 24.34 41.41 41.58 57.67 47.52 51.94 19.59 18.66 33.95 26.71 30.67 77.61 25.25 97.34 69.26 10.52 62.76 9.66 98.82 70.77 62.56 74.90 28.89 9.88 19.83 98.70 49.69 37.07 82.20 76.48 12.02 17.59 13.80 74.47 79.35 76.96 50.15 71.96 63.86 47.99 90.13 38.76 82.63 23.41 68.93 19.80 14.14 66.03 23.42 85.21 89.48 61.49 75.77 60.90 1.35 90.12 16.32 83.90 81.76 85.01 58.73 13.52 58.22 85.95 29.06 20.46 28.27 97.32 45.77 83.60 15.01 73.78 15.44 67.37 97.64 8.24 22.82 67.51 97.40 46.00 13.98 31.23 -73.60 93.79 84.06 47.92 62.64 47.88 55.83 33.63 90.38 42.70 38.77 10.35 51.17 93.60 24.39 42.88 31.78 8.92 12.77 13.72 87.73 78.21 89.57 93.26 46.33 57.66 69.62 38.68 89.20 47.88 11.01 64.00 19.04 15.40 58.01 32.86 22.83 57.41 59.35 17.86 8.46 37.86 71.60 44.39 88.83 36.25 21.98 15.49 7.43 62.69 99.06 41.43 48.22 48.06 60.09 41.01 60.23 17.43 80.92 74.38 12.70 53.53 97.96 48.34 99.02 32.41 50.27 40.38 81.99 10.96 54.01 15.71 53.59 82.61 21.28 29.46 51.17 76.06 12.50 5.51 27.47 67.59 30.94 59.16 33.33 11.99 66.22 95.36 99.10 66.76 6.71 18.12 97.45 48.56 52.48 96.80 32.79 60.01 40.53 29.86 -37.62 94.08 45.52 84.81 28.66 76.58 99.60 12.21 78.83 18.81 10.13 24.60 64.24 63.20 36.75 37.74 53.04 71.34 86.83 38.24 65.27 53.10 87.85 82.50 27.23 22.99 0.53 31.11 89.73 41.60 82.89 48.21 38.01 77.89 90.64 34.00 40.67 46.02 13.44 63.04 67.80 57.98 47.58 17.04 98.33 37.85 0.46 92.39 52.07 43.35 40.13 93.98 82.61 67.84 88.54 17.20 47.30 32.30 77.17 7.33 10.77 83.05 40.43 65.51 27.74 54.82 35.30 2.65 71.62 11.75 78.56 45.04 29.90 93.36 41.96 97.97 78.12 46.88 37.92 73.97 59.24 3.70 31.69 74.74 55.23 76.67 4.14 44.91 57.48 99.79 14.83 60.68 22.58 3.32 11.94 11.74 80.28 15.28 25.01 78.60 -91.62 98.88 56.46 7.17 70.03 93.78 54.73 11.30 8.59 90.08 47.03 8.12 55.30 89.87 23.49 96.73 14.19 55.89 4.73 77.57 17.21 33.77 96.05 40.23 50.45 64.73 19.35 63.14 70.42 75.90 88.68 36.97 92.85 45.67 44.85 58.98 10.98 97.43 91.23 48.80 73.41 36.43 96.02 11.57 18.19 83.94 91.50 59.16 48.00 88.69 23.77 1.92 91.54 25.54 27.64 15.01 60.01 80.40 32.18 35.79 16.66 24.20 67.29 72.25 38.28 18.65 18.02 88.36 48.51 71.87 46.69 20.09 19.39 42.52 17.71 34.07 45.32 9.87 82.43 6.53 24.57 71.52 85.84 32.19 7.36 34.65 54.12 33.10 93.75 68.14 97.23 32.95 24.68 17.23 85.80 20.96 61.89 37.11 48.84 62.42 -79.95 5.29 55.05 5.47 8.26 66.60 40.08 62.64 86.68 64.51 78.20 59.39 51.52 77.11 60.68 85.98 41.45 54.61 61.18 75.68 69.54 49.08 8.40 50.21 77.73 14.84 24.77 74.03 84.77 8.01 9.85 1.98 70.97 89.46 27.61 15.73 94.81 39.40 36.45 66.99 35.52 96.10 73.38 95.41 30.09 79.27 46.92 67.85 29.08 97.89 85.27 34.42 84.05 66.68 16.09 35.14 14.25 67.43 47.45 22.34 75.51 31.57 70.33 68.38 88.86 37.95 63.55 95.20 46.49 79.42 5.19 75.34 93.29 46.93 51.55 58.10 74.49 60.05 63.37 27.48 91.83 42.17 87.47 59.28 58.66 19.47 40.95 19.10 13.36 25.22 27.72 62.96 34.08 97.73 16.24 36.04 13.25 53.31 93.35 49.10 -75.19 47.72 14.33 40.59 79.94 54.74 46.93 31.05 11.72 12.51 86.05 48.05 82.64 48.63 89.73 26.02 29.35 53.67 62.93 16.95 82.09 38.76 74.59 92.62 97.31 76.20 92.38 96.14 91.57 2.02 85.56 92.82 35.07 62.12 50.40 53.05 14.41 18.14 16.11 76.82 22.35 6.29 78.85 51.58 8.61 69.93 3.23 29.72 21.35 51.55 56.33 31.53 58.45 80.18 8.95 82.29 56.50 11.01 98.53 74.43 63.94 79.80 62.16 46.24 69.01 49.27 3.25 24.04 6.78 28.52 47.21 11.47 64.60 1.89 75.54 72.33 17.71 31.87 7.88 27.25 37.04 67.97 3.19 57.97 54.64 21.82 53.23 79.44 63.29 26.56 62.98 28.26 2.27 99.30 37.73 80.37 81.45 58.78 79.23 96.35 -25.14 86.14 94.42 8.03 13.27 26.99 29.21 88.81 47.14 71.32 5.00 88.50 43.42 39.20 80.53 18.97 77.99 79.90 59.41 58.62 59.97 7.43 12.89 74.92 97.15 33.91 36.06 69.91 28.57 50.95 19.11 95.79 85.46 89.22 16.60 75.39 93.95 66.50 38.49 87.62 42.75 55.62 99.48 33.33 33.68 25.93 3.32 75.37 39.57 59.44 47.45 94.33 76.50 36.68 51.97 28.19 64.00 92.98 89.04 41.96 10.66 32.76 16.44 1.54 54.35 45.44 42.91 36.99 40.35 38.09 5.67 60.37 4.99 75.85 40.11 48.53 19.45 12.74 73.59 8.03 12.32 4.85 3.92 26.15 30.93 87.73 55.89 30.96 29.56 91.76 44.95 50.00 34.86 47.78 11.20 45.37 83.60 5.17 54.72 17.17 -44.56 65.27 9.60 89.53 82.09 16.87 33.75 57.78 41.46 32.34 40.59 52.24 51.82 46.03 35.07 93.60 61.15 39.61 9.91 20.73 14.58 79.45 93.88 44.95 29.31 12.29 97.73 56.46 49.70 16.49 46.49 35.48 57.28 23.18 89.18 96.84 19.09 90.25 59.09 30.31 58.81 45.32 52.89 88.07 70.65 13.69 34.96 8.29 96.52 63.96 45.01 88.76 24.94 24.64 76.67 20.18 19.18 17.40 19.65 39.95 99.18 45.82 32.79 20.04 92.35 81.81 24.48 44.42 17.68 38.26 24.23 38.05 1.55 24.21 42.69 11.01 50.64 3.61 20.37 47.13 89.28 80.02 39.20 66.08 40.86 88.27 67.38 76.65 29.17 48.13 31.60 11.02 55.78 62.01 24.26 85.16 15.88 48.55 75.39 84.13 -17.48 97.80 56.93 38.29 18.30 24.88 48.77 32.18 45.69 80.41 22.12 35.14 29.15 3.47 90.92 63.67 39.72 76.85 47.53 53.74 73.05 20.62 62.10 39.04 13.10 14.77 18.87 65.74 31.16 69.97 57.95 23.39 7.04 22.34 53.05 58.52 73.42 32.99 22.13 53.18 30.84 81.54 89.84 95.40 31.47 85.27 8.47 30.09 50.57 16.43 61.74 45.00 35.62 48.99 20.57 96.74 57.34 54.07 93.98 33.80 18.88 34.26 44.06 76.49 94.69 58.79 54.52 30.22 28.55 90.53 10.09 74.62 94.98 10.73 13.72 54.08 23.66 62.31 86.03 33.85 3.57 58.75 79.35 47.76 52.29 86.42 59.81 69.48 22.73 93.65 61.93 13.93 16.43 1.52 6.29 0.02 97.97 28.45 51.53 28.39 -74.28 25.54 29.69 16.58 52.57 26.26 33.70 54.85 14.68 69.91 23.76 34.43 64.85 2.98 78.19 60.82 42.41 86.20 18.05 39.04 90.35 94.97 39.26 66.66 95.26 78.98 53.64 21.15 76.05 14.12 20.75 26.47 76.61 33.15 2.22 41.52 28.13 7.90 2.30 43.28 56.32 55.28 46.34 76.08 67.76 82.45 78.10 69.75 90.71 47.15 66.24 80.79 52.64 99.49 80.94 48.27 71.04 86.14 49.78 39.81 44.22 70.01 43.71 46.25 80.02 1.85 33.84 84.26 31.24 62.73 28.06 32.91 26.35 31.72 92.34 87.04 0.96 68.88 59.84 91.01 57.64 8.51 92.12 35.97 30.35 87.11 52.67 93.65 68.41 17.28 62.08 25.56 62.00 68.81 13.09 86.41 39.47 35.78 38.45 58.27 -8.31 60.37 48.15 1.35 95.68 96.54 59.38 41.40 8.40 73.63 91.28 38.01 77.07 42.05 99.68 20.21 38.67 12.38 30.05 98.45 49.98 80.52 87.47 63.41 74.08 81.23 58.35 74.42 11.01 38.84 69.04 21.39 39.00 69.19 15.30 11.45 86.08 16.77 82.34 26.15 4.31 8.14 16.07 13.40 62.95 51.25 27.85 19.44 61.35 92.21 91.29 90.71 51.60 99.11 3.52 16.10 14.54 57.90 58.65 96.33 3.08 78.41 82.06 24.59 13.43 26.09 16.40 60.49 24.04 25.24 74.17 49.58 66.83 13.39 97.07 93.71 90.30 98.08 45.64 65.28 37.89 93.93 42.06 63.25 26.94 88.64 94.70 37.30 63.09 91.82 12.75 67.54 60.03 95.47 78.09 13.36 10.30 53.21 34.84 62.22 -38.04 96.39 2.47 88.37 27.81 3.99 86.27 38.03 37.59 10.15 59.65 61.07 85.48 90.44 2.22 13.35 7.32 11.22 4.28 30.70 40.00 34.10 91.38 38.22 94.32 87.17 23.63 62.41 70.95 74.41 20.03 97.18 57.97 28.70 29.77 58.68 26.24 54.01 72.32 85.18 55.04 11.02 60.99 75.28 61.65 62.37 15.73 44.02 46.93 72.46 6.69 64.11 83.71 71.21 82.42 52.03 59.33 55.05 93.85 53.68 74.98 51.36 91.67 62.61 17.98 90.15 2.97 9.27 39.42 58.79 68.96 22.56 0.37 27.35 66.23 79.78 54.38 76.53 40.95 59.75 52.22 70.50 55.42 12.23 32.22 41.79 7.95 41.06 64.75 92.49 51.20 60.38 91.90 57.66 30.54 49.27 67.49 60.46 9.92 79.92 -70.60 87.46 9.29 18.03 76.62 51.81 9.56 53.42 76.60 14.50 26.48 93.32 16.08 84.56 2.40 61.14 87.73 57.19 91.15 1.49 32.82 7.72 33.10 13.59 74.20 35.81 69.11 86.13 72.23 92.45 27.22 26.90 36.50 54.79 36.78 62.79 84.96 67.79 71.25 94.46 56.22 59.72 26.86 71.26 70.96 56.80 29.14 72.76 48.31 78.10 30.93 94.07 59.60 7.67 18.95 44.24 48.26 32.48 17.41 22.20 24.23 17.35 63.39 76.44 77.47 59.43 36.05 61.73 83.77 62.03 94.56 69.14 50.97 76.93 87.08 14.01 56.17 9.45 88.14 68.59 45.24 60.01 39.87 45.49 83.39 25.03 15.63 50.54 58.87 93.26 47.40 87.72 81.77 0.30 72.40 11.87 38.00 66.67 39.42 54.07 -21.24 51.91 94.03 64.27 82.39 32.36 77.92 87.38 63.60 35.86 15.90 35.51 33.19 52.54 90.40 92.07 35.63 74.21 9.80 23.25 34.14 44.20 78.91 27.53 66.55 44.38 97.40 95.32 1.73 65.25 10.55 23.29 65.95 40.28 61.94 53.86 64.68 28.98 70.15 48.62 14.98 38.24 15.43 14.70 16.29 8.83 74.23 95.91 99.49 18.16 39.78 28.26 82.37 1.12 19.96 45.87 56.33 27.13 26.39 60.01 52.68 9.56 67.35 12.34 30.74 40.93 57.99 40.72 25.82 98.90 50.61 33.77 20.29 55.76 10.48 20.22 14.32 74.05 35.33 54.40 54.41 71.31 3.19 39.40 74.25 19.73 20.58 68.98 24.03 6.71 8.59 24.84 41.47 23.04 58.18 33.16 98.11 44.71 25.67 3.39 -26.23 24.73 69.22 24.97 9.10 84.88 2.92 13.18 98.72 52.19 23.18 4.89 23.89 86.53 28.90 47.84 22.58 82.68 88.83 4.29 34.08 75.32 65.17 94.93 63.40 31.49 52.39 47.01 84.60 88.90 45.45 54.21 67.62 47.61 38.58 36.48 18.54 78.18 65.55 74.20 0.83 14.89 57.61 90.77 86.92 75.55 89.74 6.86 45.14 61.28 42.85 22.88 6.05 83.57 33.99 51.02 45.82 73.61 42.45 83.41 83.34 30.65 10.96 98.38 52.34 92.78 57.76 76.65 35.72 57.00 29.35 56.99 84.52 56.23 41.21 33.68 3.26 5.63 35.43 90.55 75.11 88.28 81.06 69.79 78.04 2.87 32.58 68.34 49.57 18.26 82.32 4.06 85.10 92.93 6.09 86.95 56.58 65.33 11.24 9.30 -67.94 19.56 84.53 82.07 83.37 44.70 27.27 47.81 96.16 44.03 35.78 70.52 79.76 7.51 91.75 94.21 11.17 18.54 91.81 28.59 0.15 0.99 73.99 88.81 40.42 27.39 97.93 98.45 29.63 90.51 76.32 94.47 7.92 55.52 23.14 89.98 55.39 28.31 38.02 92.58 67.90 3.58 91.28 78.38 29.03 46.86 56.71 69.95 44.14 12.86 28.08 34.03 41.84 90.93 98.82 45.62 87.16 83.88 18.02 78.10 58.49 35.02 4.34 64.45 27.17 16.29 45.42 13.44 50.36 12.91 26.95 48.64 59.96 82.97 93.26 87.60 30.43 31.22 20.54 35.76 5.28 27.90 78.83 45.42 89.38 46.94 22.88 7.11 54.68 46.04 92.70 1.62 27.56 74.81 76.53 3.05 17.84 63.62 64.58 42.42 -76.07 83.71 6.17 83.65 43.40 57.63 8.28 6.15 58.25 29.55 45.76 38.31 99.27 63.15 61.63 53.15 34.25 8.22 72.59 54.83 75.50 79.94 59.90 13.08 62.46 21.30 16.32 21.82 68.83 67.20 94.34 80.80 79.93 66.93 71.10 37.05 91.99 50.71 14.13 17.52 1.05 99.40 59.64 68.49 23.19 22.69 12.13 86.20 16.56 32.31 9.01 70.41 16.64 30.70 29.40 61.29 4.97 36.90 15.79 18.44 76.59 86.17 98.84 67.53 11.44 71.88 89.69 16.52 82.07 94.62 88.06 37.98 41.27 17.47 35.53 23.93 39.50 61.74 75.38 54.69 14.60 41.69 93.65 99.51 91.99 20.15 95.60 80.89 74.25 1.03 79.86 54.23 47.71 87.10 57.98 88.83 89.01 37.48 97.77 56.15 -70.40 49.97 85.87 85.77 56.94 42.24 20.73 25.89 91.25 16.64 77.25 7.84 4.96 38.55 20.24 71.23 33.72 81.44 25.15 45.48 94.62 21.07 59.62 10.38 94.76 98.06 57.17 62.22 43.84 16.43 96.21 46.19 21.36 47.04 0.63 54.93 86.37 68.49 86.05 39.82 10.62 61.33 20.96 84.59 1.34 55.60 46.46 8.54 37.75 32.13 7.35 20.14 70.89 52.62 66.11 30.42 11.00 85.43 91.04 48.85 4.68 12.98 69.72 69.47 30.56 59.23 94.94 60.10 1.84 93.10 45.76 82.97 57.29 52.40 5.31 34.09 74.43 26.00 62.54 52.16 96.83 45.94 37.45 12.23 2.58 77.68 99.27 29.63 58.02 5.75 46.22 43.97 98.07 1.94 38.52 78.04 92.52 35.53 64.94 94.65 -94.06 95.34 82.87 51.64 98.23 27.03 78.67 22.24 18.53 10.56 57.27 3.48 40.49 65.67 78.93 44.14 50.32 70.14 42.26 17.55 12.37 8.79 1.45 19.73 55.06 31.22 31.33 82.80 15.95 55.24 98.23 41.34 34.11 68.42 30.40 82.95 65.56 80.75 20.79 60.93 45.85 6.36 14.10 30.91 90.55 61.57 65.52 26.56 65.74 81.01 76.06 6.51 70.01 6.01 97.52 23.74 15.83 81.26 82.76 77.79 98.94 30.87 40.46 73.48 20.00 47.69 23.15 13.04 71.69 70.00 5.52 1.79 14.37 17.36 31.65 57.90 90.18 6.90 22.32 40.27 26.22 36.67 34.28 46.77 70.44 93.77 18.21 44.99 65.09 89.05 72.89 47.77 13.81 92.26 64.52 69.96 57.12 31.17 55.16 0.09 -74.44 94.28 71.02 30.50 93.43 14.02 28.30 77.40 18.80 88.66 18.70 34.70 49.83 94.75 51.25 60.43 16.15 30.82 38.68 41.54 43.09 31.48 39.95 18.85 59.80 40.72 9.30 61.45 69.73 27.35 9.25 62.48 40.21 95.18 48.97 41.74 48.27 15.68 75.94 50.05 28.69 55.58 26.08 76.95 13.48 16.21 72.50 37.28 82.46 45.00 88.85 86.93 85.77 87.77 44.07 93.91 94.54 99.78 68.51 30.43 7.89 3.10 21.93 84.63 40.27 49.44 95.21 70.37 39.40 64.49 17.07 84.53 11.09 98.03 45.54 82.19 73.77 20.18 78.27 30.88 55.88 56.37 77.22 31.07 16.88 85.18 45.53 87.10 17.38 59.53 84.52 50.01 7.89 31.76 19.15 55.98 19.39 26.52 49.68 52.91 -84.84 85.19 25.64 6.43 89.68 32.35 90.07 72.15 32.39 79.12 42.67 77.02 94.72 83.19 56.54 75.81 85.81 38.75 10.56 7.37 29.93 51.02 45.78 95.07 40.37 93.65 66.66 66.24 14.15 62.20 54.33 76.98 57.26 16.99 68.17 19.75 14.09 15.08 57.43 74.13 66.25 19.05 45.30 92.97 82.24 21.41 58.60 54.28 61.47 76.90 67.29 56.00 87.66 73.71 9.87 54.70 8.42 91.26 96.40 62.56 47.04 94.71 82.93 10.76 81.33 68.32 6.92 99.31 56.99 77.81 21.22 27.82 43.14 99.06 35.69 19.53 62.60 15.41 40.44 16.65 87.29 29.33 83.09 94.27 33.80 40.74 21.32 64.65 2.80 27.33 53.26 12.78 2.05 28.38 2.22 56.40 36.82 61.06 80.87 62.01 -80.34 77.05 2.03 40.07 69.70 37.16 10.23 30.46 15.91 96.59 37.71 64.90 14.83 95.23 0.54 91.05 54.72 58.85 33.44 66.48 8.77 8.81 40.38 47.02 61.31 6.76 91.13 12.84 89.13 56.41 98.89 59.28 15.47 61.71 52.48 43.40 27.23 76.49 6.01 95.58 64.92 8.65 70.38 72.60 91.27 60.27 40.63 25.35 98.25 72.38 52.04 53.41 4.94 86.09 78.69 4.27 71.56 26.62 96.14 31.12 14.70 17.30 21.12 71.29 67.88 78.63 2.45 27.75 41.79 2.31 36.21 25.48 73.54 47.21 28.66 76.92 14.41 21.90 4.78 92.61 32.46 16.65 4.76 92.03 74.21 31.72 92.82 13.01 99.19 81.90 95.91 3.66 22.08 32.40 15.93 18.72 83.10 17.63 13.39 83.63 -62.55 18.20 86.11 4.00 99.74 83.86 63.10 75.06 89.55 87.82 38.33 78.03 0.14 29.60 77.50 78.80 52.02 50.74 9.09 77.33 72.04 83.78 89.98 48.62 73.27 58.52 4.75 49.26 72.05 15.50 94.31 37.77 35.47 36.80 59.79 96.52 5.45 76.86 89.26 98.68 33.19 31.31 59.36 26.94 65.74 23.51 9.28 75.80 15.00 60.37 19.91 77.65 55.88 80.32 28.36 51.56 6.68 29.89 55.64 61.50 14.72 87.06 9.58 99.04 35.72 2.35 94.73 31.88 71.57 34.17 30.34 92.89 0.16 17.31 73.44 17.93 4.71 6.11 64.76 56.66 48.57 18.05 93.77 22.85 36.50 1.74 3.91 57.75 34.56 22.62 97.45 10.26 36.94 66.09 7.51 41.32 24.14 57.64 23.63 41.02 -25.07 43.81 39.09 80.84 76.43 36.30 37.26 66.58 48.45 4.82 60.71 63.41 2.17 92.34 57.89 16.87 3.67 3.60 64.61 72.66 58.44 39.98 85.48 63.65 94.81 0.13 79.57 67.68 8.09 19.23 67.09 3.41 27.06 86.23 85.58 19.60 96.81 79.50 81.54 63.46 27.25 34.81 89.14 53.72 40.93 98.01 70.09 96.95 42.73 48.60 81.36 76.34 44.62 7.10 17.64 28.44 11.93 5.44 98.87 4.30 92.40 72.91 81.98 31.43 91.02 76.59 61.38 72.41 45.48 46.81 97.74 92.86 90.87 82.76 68.83 81.23 55.73 41.83 68.30 26.35 34.02 58.23 64.31 26.53 35.32 39.24 25.45 13.19 33.58 75.84 65.56 35.45 7.47 21.86 26.23 76.77 11.47 24.98 69.13 59.85 -16.79 37.28 77.65 68.17 5.88 2.99 82.77 90.07 46.43 90.65 91.34 54.34 81.22 25.28 33.12 66.49 6.95 31.87 55.53 95.32 25.52 53.50 8.42 24.16 48.85 2.02 48.25 50.67 45.65 57.28 80.34 23.54 17.98 43.63 32.23 74.16 0.00 41.96 24.97 50.52 72.65 54.16 90.23 60.10 23.92 0.26 11.08 17.49 93.32 61.69 39.07 97.18 9.16 96.11 6.47 96.44 44.34 79.44 60.12 69.34 29.58 2.12 86.43 36.98 65.39 75.92 13.27 94.79 13.44 68.30 96.19 7.79 48.65 61.21 1.08 52.04 62.22 3.99 42.78 72.89 62.67 25.99 37.78 35.20 22.48 92.92 8.73 40.73 65.98 75.90 75.69 30.43 71.27 70.27 3.34 6.79 72.64 7.99 68.61 62.37 -29.67 53.04 13.35 62.94 82.45 85.08 36.09 76.20 46.66 71.04 28.37 4.23 33.76 39.32 28.80 7.32 18.60 84.97 36.75 15.53 2.99 75.67 20.34 81.99 25.40 64.38 36.44 36.98 71.04 82.02 39.21 77.82 92.46 0.55 61.23 70.72 52.34 69.91 70.59 40.76 76.51 29.87 61.21 69.63 87.66 86.97 47.10 13.52 7.48 87.35 24.44 99.88 0.18 73.23 4.17 12.95 61.70 95.13 18.53 81.33 51.55 9.29 65.05 15.65 35.42 93.56 65.55 44.23 18.43 50.00 37.82 5.81 15.67 37.23 63.01 89.21 50.95 48.74 13.05 59.47 70.98 43.10 1.98 92.69 44.23 27.37 33.43 56.56 53.75 59.20 81.84 92.07 17.58 44.36 13.26 42.60 87.14 60.27 91.16 60.23 -58.81 29.50 58.07 89.06 8.74 27.35 47.76 81.31 65.32 69.33 5.50 76.04 12.77 12.91 89.61 91.03 75.11 61.57 22.38 33.39 41.41 17.88 4.00 44.83 42.56 86.68 33.50 14.77 25.87 80.97 74.94 70.11 56.79 92.55 93.88 90.48 12.97 77.06 88.39 51.85 7.24 95.58 96.31 46.00 54.37 51.72 29.36 12.51 78.63 75.67 79.80 82.41 25.40 49.14 30.03 87.70 5.91 82.57 42.80 54.09 98.69 97.50 55.57 56.30 6.41 87.49 46.65 86.37 38.06 26.85 3.44 39.27 11.12 1.06 17.98 97.45 7.92 83.81 29.65 95.34 82.86 77.93 34.01 47.65 0.83 16.37 81.99 98.17 89.63 69.07 14.42 8.46 72.63 11.22 86.46 0.58 77.96 49.77 66.76 36.17 -63.82 41.21 20.77 1.50 99.51 88.45 86.94 71.83 45.85 41.25 60.61 35.51 75.99 62.60 42.71 99.38 83.56 97.36 51.66 41.27 95.86 91.42 58.70 24.80 16.50 33.43 53.09 31.78 38.98 43.60 28.88 63.98 10.79 67.04 28.46 39.71 6.70 31.92 82.03 91.06 99.41 9.41 91.44 51.81 61.04 19.97 74.14 51.67 2.42 15.77 61.40 79.02 86.77 4.00 71.08 80.69 33.18 41.88 40.34 98.57 97.44 88.42 28.77 37.25 53.43 57.49 84.97 58.11 34.81 83.34 50.46 14.15 20.18 38.40 32.27 51.91 73.81 43.40 74.10 50.35 11.07 65.10 72.56 62.03 18.32 21.44 51.71 20.28 75.89 35.44 8.78 49.15 69.22 36.53 4.31 62.34 76.99 97.43 2.54 91.66 -33.04 26.68 69.69 42.04 36.56 65.54 22.43 95.23 87.70 95.14 76.48 70.33 62.53 21.64 34.13 21.04 48.57 14.68 4.75 66.33 85.19 63.87 49.84 37.27 30.71 12.20 5.65 63.81 21.38 80.64 86.19 94.21 86.93 90.71 12.48 97.27 97.83 64.91 33.45 27.93 57.43 53.95 29.17 36.53 51.78 28.00 30.06 3.80 14.78 63.97 50.52 15.26 43.87 82.66 4.33 81.30 97.86 9.76 85.28 31.84 87.97 12.40 64.93 36.20 52.59 12.75 74.86 57.56 41.80 94.90 57.69 32.13 32.63 90.58 12.09 35.89 80.63 43.26 93.53 58.96 92.34 78.23 60.43 81.45 44.15 60.72 57.45 87.77 50.41 15.85 92.39 11.77 72.20 65.60 59.43 6.65 8.61 61.06 5.23 57.23 -33.25 16.25 60.88 28.52 1.70 71.01 44.25 17.15 22.06 75.02 25.88 36.79 53.80 15.79 4.59 46.12 47.83 71.74 22.72 62.50 63.04 13.31 80.12 82.74 88.89 49.17 69.30 66.31 34.49 83.50 73.48 96.76 66.41 21.34 57.42 56.74 7.03 19.28 27.70 80.65 20.45 2.91 79.78 69.88 72.02 57.69 64.02 62.97 27.53 82.54 65.07 79.11 96.15 16.58 82.50 97.15 72.84 39.98 82.61 43.15 68.65 9.47 89.05 36.46 53.25 16.11 52.50 46.58 41.61 33.40 7.06 11.22 51.77 74.76 32.14 2.26 22.35 83.47 96.42 99.00 0.35 64.33 60.59 75.20 26.11 74.68 86.31 78.01 67.30 92.20 45.20 64.18 23.15 10.58 86.69 34.84 20.49 76.94 85.37 73.42 -69.81 82.64 68.29 62.66 79.27 98.06 54.18 32.39 24.10 28.99 92.95 42.06 59.19 9.98 60.88 58.76 40.62 63.28 25.69 15.73 3.17 86.85 34.77 25.79 61.69 84.68 31.45 77.91 65.71 99.60 63.22 73.63 88.75 88.09 3.22 74.84 2.30 75.73 35.33 48.11 42.22 42.04 58.85 13.15 55.23 54.89 53.41 85.56 67.14 89.50 77.87 66.18 13.68 19.89 50.88 80.07 81.59 59.59 95.80 51.74 14.15 47.32 56.82 64.42 22.54 44.33 79.75 81.16 21.69 2.37 96.30 45.98 69.68 67.20 52.86 97.23 28.82 35.60 29.93 68.03 5.20 50.89 40.58 78.91 8.90 10.29 91.70 76.93 87.09 19.16 75.00 89.99 63.57 92.46 68.28 65.67 77.88 69.07 25.41 66.06 -70.96 18.94 69.73 62.11 47.77 96.60 73.81 12.04 1.97 27.02 97.57 17.34 87.33 63.17 61.44 5.78 73.56 43.85 32.27 84.31 44.50 29.34 55.74 45.81 0.04 10.47 95.25 6.40 56.76 66.74 60.91 12.84 3.32 3.40 89.67 39.91 8.26 81.95 20.95 20.74 93.61 17.72 64.66 93.76 67.81 63.68 56.56 61.60 95.08 84.10 85.89 74.34 30.65 6.97 14.73 51.32 74.78 56.76 40.66 84.72 99.99 64.61 65.01 11.94 44.77 2.02 38.41 25.66 78.15 77.25 76.84 6.73 35.72 80.19 26.48 99.05 13.80 83.88 80.74 69.83 46.73 0.45 75.70 20.04 80.62 72.41 90.78 42.23 90.93 99.41 23.93 85.33 25.72 44.71 97.03 31.79 40.70 83.22 49.03 92.81 -16.34 17.50 16.73 75.32 29.22 43.52 48.22 49.09 23.91 15.66 85.25 52.67 21.20 7.59 24.70 76.67 7.15 54.15 71.18 38.52 48.62 38.72 93.71 46.99 51.94 16.22 23.59 34.44 87.29 86.50 49.01 21.72 70.71 52.30 88.09 9.24 44.04 14.68 51.90 1.23 14.25 96.66 96.60 2.17 94.65 74.64 49.16 40.57 26.22 33.11 37.22 84.73 96.47 39.35 75.02 12.85 86.89 7.39 9.09 75.40 18.40 40.88 97.50 58.07 66.66 44.25 37.05 7.35 76.18 54.63 16.42 93.71 48.35 63.82 66.17 50.64 7.98 29.07 1.52 42.02 49.85 62.82 92.75 54.20 56.04 80.60 22.73 4.12 21.42 48.37 77.84 49.04 44.22 81.71 90.19 26.29 29.25 55.23 10.58 10.64 -55.92 78.49 3.22 25.91 10.91 61.52 23.83 88.85 72.61 16.19 88.06 19.76 44.95 96.95 12.25 79.55 92.47 82.78 55.72 19.22 23.94 18.54 11.11 4.15 0.54 51.02 86.08 46.93 39.17 79.13 63.17 17.95 15.47 94.78 10.29 72.11 44.80 33.18 46.55 23.77 14.46 34.87 27.16 67.08 98.78 65.18 47.54 66.75 5.17 6.55 64.43 82.58 16.17 35.27 86.16 7.67 46.76 24.13 56.62 17.83 84.24 54.60 46.37 69.23 25.99 10.42 21.76 94.48 99.17 85.81 21.54 63.34 6.68 84.28 34.91 98.12 12.84 19.31 48.60 28.56 0.81 77.60 20.21 26.45 86.69 18.68 66.31 97.61 41.84 70.66 90.93 6.92 67.67 23.45 12.32 68.95 59.41 86.92 22.13 69.25 -80.91 98.45 11.04 65.08 74.16 36.15 72.44 5.62 96.63 19.99 26.59 64.49 74.50 0.39 93.62 82.28 21.78 26.26 73.34 26.41 3.65 42.39 65.33 29.44 49.40 62.21 14.05 58.56 59.09 25.43 10.93 96.05 53.95 15.96 10.68 77.82 20.10 87.04 24.40 96.28 85.18 53.40 0.83 87.16 52.92 33.35 61.49 84.46 36.80 13.85 83.86 57.35 33.63 35.42 43.07 30.80 73.91 24.98 43.55 65.98 97.61 69.44 70.71 58.38 19.90 84.05 32.25 84.18 51.16 11.18 29.82 23.84 61.19 87.94 84.42 77.48 69.00 90.97 87.06 1.77 13.50 3.15 24.39 35.45 89.02 7.70 45.36 31.70 65.31 32.66 25.64 86.36 56.73 97.68 39.81 6.05 4.79 69.95 7.41 33.47 -48.40 74.79 5.89 8.09 16.77 1.29 34.74 89.63 40.02 35.93 79.68 84.60 20.20 37.44 41.32 9.66 19.18 88.09 60.52 28.63 87.74 71.16 90.39 36.88 97.88 32.34 62.81 37.13 25.95 62.21 71.39 90.29 99.02 36.37 41.23 85.22 47.38 15.44 97.51 1.14 89.52 35.65 67.65 57.47 80.19 95.60 20.79 88.78 22.23 39.40 49.31 33.87 20.55 34.73 67.03 87.06 95.50 17.97 90.76 55.54 76.20 49.79 44.10 36.17 27.70 66.98 74.47 13.52 57.26 61.34 89.60 57.53 0.22 17.59 39.48 60.76 54.26 48.47 65.04 4.03 47.83 23.33 87.82 62.15 77.96 11.81 49.19 63.01 0.50 97.08 85.82 25.71 46.09 61.74 50.08 43.22 78.16 80.76 87.04 23.73 -99.31 96.89 70.68 89.22 9.58 70.24 62.67 90.96 26.60 65.97 36.93 35.77 84.68 49.74 11.59 57.11 98.38 21.98 41.32 58.98 5.92 25.38 90.88 48.45 3.07 41.55 20.05 86.94 79.82 41.03 87.06 0.63 23.02 81.83 33.41 7.99 87.76 95.68 98.90 8.72 36.71 43.28 33.04 51.27 81.87 88.89 1.94 10.34 45.00 55.28 87.37 60.75 70.59 11.52 79.51 57.41 48.81 92.37 88.91 73.23 4.62 44.30 53.08 95.91 93.92 80.16 81.74 20.25 33.20 58.10 49.51 65.50 89.78 62.40 92.83 7.26 92.91 42.46 37.44 84.38 21.85 54.12 9.45 38.95 2.88 2.86 38.74 81.75 94.24 46.74 95.65 90.49 37.80 17.45 16.20 74.34 63.65 78.85 55.90 19.91 -61.71 78.41 42.02 71.58 41.47 85.53 18.00 26.27 16.50 71.03 7.64 57.38 0.35 36.79 70.93 58.39 8.06 35.79 87.92 92.74 77.09 69.99 17.50 33.61 80.75 64.26 32.61 0.36 30.88 78.19 35.86 61.82 98.09 40.62 40.91 88.67 72.17 25.94 13.54 20.51 58.33 34.16 12.19 7.73 10.04 10.89 17.17 65.62 8.52 60.61 79.07 21.59 99.18 8.76 17.96 11.51 26.98 40.18 89.09 93.64 73.27 41.83 47.65 26.23 95.36 94.62 10.17 38.32 4.39 18.53 62.41 56.20 28.43 31.16 86.62 53.58 14.11 18.57 85.85 81.80 94.61 25.17 38.08 68.86 64.61 27.39 34.43 86.47 33.57 48.55 9.81 50.30 31.15 74.47 10.55 67.99 5.24 32.94 6.77 66.65 -40.93 12.72 10.28 33.26 26.27 42.40 62.12 79.04 19.04 22.89 99.23 75.94 9.83 76.39 93.06 81.60 62.39 7.03 47.42 55.01 12.31 91.39 67.76 4.11 4.89 22.36 84.42 32.15 73.57 60.09 77.09 24.45 38.79 93.02 72.06 16.74 18.72 27.84 93.11 78.68 73.66 78.99 51.19 8.25 91.49 72.61 98.62 61.15 49.16 26.97 44.32 58.44 51.43 51.51 98.98 26.64 84.39 23.09 73.78 10.78 21.60 64.32 91.90 88.81 92.85 35.39 61.84 46.13 15.86 55.84 25.71 66.36 17.71 39.59 50.95 75.99 81.19 83.14 86.94 55.78 32.58 58.14 33.47 52.57 32.81 96.69 15.86 71.93 42.31 56.45 20.48 59.39 48.76 60.91 4.33 52.08 27.69 78.01 78.69 3.01 -40.51 73.84 85.00 17.70 27.62 94.86 75.10 26.40 86.59 55.13 35.94 25.73 3.37 97.99 87.17 17.18 51.29 55.51 82.92 40.86 34.48 57.72 64.26 48.11 88.89 69.53 87.46 0.45 82.62 33.64 87.17 42.57 34.07 33.58 91.38 80.34 21.21 26.27 64.89 34.83 63.13 56.87 26.47 54.40 7.10 19.17 21.08 63.65 61.75 50.90 79.40 77.78 50.71 21.01 60.42 4.58 60.38 0.54 63.55 21.36 49.71 25.32 52.01 55.31 57.05 24.80 96.76 81.23 23.71 77.28 13.55 13.49 23.88 69.67 85.61 9.39 83.91 71.72 38.10 26.92 57.65 48.53 48.98 51.66 91.46 88.30 29.16 59.10 71.55 11.34 72.76 12.45 55.96 45.19 94.90 75.54 67.82 32.66 52.62 12.05 -55.32 42.95 80.37 82.71 16.46 18.45 41.74 92.09 87.20 53.70 76.89 93.42 19.64 62.95 44.16 95.29 21.83 76.05 2.76 13.11 45.55 49.32 74.20 81.83 81.62 63.66 30.05 25.12 79.65 47.66 31.56 72.17 52.41 6.28 85.80 37.76 30.25 64.13 24.98 78.05 46.40 61.28 61.51 89.13 57.43 54.78 6.46 28.80 63.58 44.04 11.28 48.50 92.43 86.65 51.55 0.46 82.12 99.92 51.08 44.17 93.06 79.21 44.77 51.70 3.74 71.69 15.08 57.96 19.92 76.27 71.38 9.96 96.42 98.42 16.16 4.71 94.89 38.54 3.14 70.75 74.33 69.75 47.46 97.02 65.26 70.96 72.21 69.38 91.83 30.49 19.61 13.15 97.40 68.53 25.20 99.79 27.48 19.41 32.45 33.98 -15.24 96.74 54.38 78.58 56.86 64.58 86.67 55.52 59.06 83.84 98.00 73.66 63.30 50.89 85.81 76.05 91.46 96.07 40.74 77.21 43.53 25.60 78.73 22.58 76.33 60.88 98.88 19.99 20.01 21.73 2.51 87.76 30.83 64.48 79.47 1.03 17.34 61.03 39.46 44.74 40.61 45.75 29.00 35.55 84.38 83.62 29.86 54.54 88.59 11.05 91.42 71.64 67.90 51.53 4.27 82.07 42.29 49.06 20.17 14.72 42.14 33.64 33.92 10.72 21.84 4.65 34.18 20.26 45.03 64.25 9.70 79.11 52.25 63.20 71.77 72.81 16.07 71.59 82.66 99.78 15.64 31.05 76.96 38.10 53.51 57.26 40.83 18.26 47.05 62.45 38.76 8.11 32.25 78.36 44.73 42.26 74.56 81.42 93.16 77.73 -91.25 71.10 86.05 42.07 8.41 24.68 22.54 83.68 61.70 29.87 52.44 75.39 7.71 19.62 6.36 51.16 78.24 70.85 2.72 3.18 28.45 10.44 71.37 18.07 12.66 81.57 46.38 97.84 5.13 88.63 7.88 9.73 64.04 12.91 98.36 53.75 56.67 41.42 74.95 3.06 72.03 57.70 61.10 79.72 13.92 21.29 8.04 63.27 21.98 98.60 96.57 8.55 63.25 28.37 61.80 25.45 53.28 9.33 6.93 38.91 36.23 98.92 53.69 31.85 72.13 37.70 91.69 90.72 85.09 54.08 49.50 33.05 83.40 30.02 67.12 20.10 74.87 22.33 56.93 11.40 6.29 44.59 32.71 73.12 4.71 4.91 89.71 90.87 87.83 79.66 91.39 77.95 98.18 18.35 11.54 37.52 71.84 46.50 49.01 30.55 -26.69 59.30 40.05 33.83 72.15 94.47 23.28 19.33 87.04 74.38 51.48 94.79 60.42 24.38 98.22 53.18 72.59 20.33 76.07 1.25 59.27 50.99 67.73 2.72 45.46 11.62 87.51 74.04 32.91 12.27 21.86 22.59 2.10 88.16 34.31 78.39 74.27 68.77 25.05 69.93 82.34 8.99 73.53 41.08 4.83 34.55 86.84 63.58 57.65 13.47 47.38 84.66 92.26 83.29 25.84 62.91 52.34 59.74 29.95 35.72 82.16 81.24 47.13 40.41 65.30 85.59 0.94 58.98 68.56 93.32 51.77 10.81 44.81 44.35 94.08 40.36 48.88 33.74 55.79 27.60 78.59 56.80 19.15 93.10 14.45 11.15 75.65 83.88 75.25 60.66 8.67 29.28 70.29 0.53 94.72 58.85 21.61 65.91 94.57 72.67 -50.82 20.34 97.83 68.06 14.86 55.60 89.84 89.13 23.52 71.84 42.90 87.30 44.49 41.08 58.40 96.15 84.70 55.98 40.78 83.60 68.59 36.37 57.42 8.23 77.24 7.57 65.16 67.42 39.73 10.55 39.67 91.41 77.90 41.67 54.89 7.57 73.96 17.68 61.45 91.23 54.98 16.90 67.04 71.51 54.34 47.34 42.89 76.72 64.64 31.01 58.77 51.55 27.54 2.68 7.70 90.95 47.51 12.17 44.05 89.42 88.10 68.02 90.96 15.25 4.12 34.53 96.66 45.47 18.82 49.55 42.70 96.18 67.08 22.20 64.64 16.57 24.04 97.85 77.83 65.44 93.90 16.41 56.70 66.93 62.60 62.05 80.22 92.59 74.27 10.33 92.43 25.74 47.20 45.14 66.23 35.90 95.55 68.60 75.32 86.17 -21.16 63.97 75.47 47.85 45.94 89.74 74.25 0.03 13.17 81.61 7.58 99.08 69.06 38.99 62.69 91.54 97.23 70.72 28.70 79.33 46.61 24.42 69.23 25.18 20.89 33.03 7.27 62.83 79.47 77.69 1.56 6.09 26.07 23.19 12.53 81.50 89.42 93.49 3.49 49.68 90.87 35.04 63.89 2.50 58.26 86.17 4.77 13.64 43.22 91.97 36.09 96.24 33.71 16.64 80.31 2.99 90.09 26.53 81.20 90.56 78.01 47.84 53.39 63.57 21.60 5.96 85.52 32.38 39.40 52.34 95.42 32.28 57.04 74.07 82.04 12.21 36.26 10.56 78.69 76.24 7.64 60.12 58.62 47.20 91.67 32.50 48.33 18.88 67.84 8.75 54.41 2.00 18.31 31.78 20.38 39.41 76.67 65.00 13.90 19.76 -67.30 40.80 36.29 22.86 81.17 91.95 36.66 7.93 1.06 86.80 39.13 56.70 75.73 60.61 45.31 34.13 23.23 69.76 79.96 4.51 62.18 86.00 15.87 99.08 97.72 0.18 87.98 0.01 58.32 35.05 98.59 91.74 71.59 61.41 48.49 88.60 50.32 50.37 13.86 19.57 33.88 33.38 20.44 21.98 87.95 22.94 45.31 11.56 65.99 58.63 83.79 3.07 77.52 62.38 51.56 13.95 5.73 79.19 57.53 12.35 45.09 23.78 80.22 77.87 75.08 98.21 79.42 77.88 86.33 59.64 19.38 65.02 95.16 45.15 33.96 99.99 69.71 62.03 21.18 83.71 48.52 33.67 14.93 6.65 93.51 31.13 11.07 11.75 37.92 78.48 17.18 63.98 76.55 44.64 8.56 69.08 64.25 5.47 64.29 26.79 -57.46 86.49 74.88 67.26 44.61 21.56 14.35 57.27 3.44 12.89 69.66 79.05 51.43 82.27 4.28 59.17 2.82 76.79 65.28 66.93 71.81 94.23 3.28 7.92 90.73 43.22 73.08 13.09 28.01 87.98 81.57 93.66 42.50 52.05 96.60 0.46 75.40 1.91 64.10 41.97 60.59 92.37 16.06 18.81 52.49 22.88 36.78 1.57 3.93 64.60 24.90 6.23 46.67 96.86 36.17 4.33 94.58 55.68 0.16 84.52 88.48 33.56 13.61 76.11 43.83 6.53 89.29 57.36 9.57 35.04 49.94 78.91 53.65 60.41 42.50 58.11 87.78 92.00 71.81 88.57 64.24 17.19 97.46 96.69 6.41 63.92 99.47 49.15 34.67 55.20 23.28 28.66 58.43 87.34 77.05 71.27 21.41 59.52 1.50 43.79 -12.01 86.86 58.35 86.87 88.61 98.34 36.88 37.87 34.16 85.23 14.30 21.25 16.61 95.10 91.87 6.02 90.09 59.55 12.49 32.65 58.34 26.70 95.53 46.99 90.73 62.69 37.91 86.69 82.60 85.63 90.28 99.61 73.74 0.74 89.53 23.41 91.53 19.60 17.66 58.39 68.49 75.48 84.95 21.96 51.98 42.30 96.44 85.64 84.40 53.38 12.15 11.14 16.35 52.62 87.05 97.91 76.75 59.45 24.99 73.90 26.56 58.61 13.86 63.59 85.47 79.85 24.88 54.14 95.12 51.60 82.47 67.97 45.74 82.75 27.85 65.15 77.72 73.93 55.47 39.25 14.59 43.88 62.34 16.71 77.43 11.91 27.80 7.56 24.08 83.82 43.20 60.13 36.83 54.74 46.77 10.26 85.99 86.26 55.07 4.54 -46.21 84.02 45.18 23.30 28.94 26.15 49.95 73.19 43.36 81.09 96.90 3.54 14.97 20.58 26.03 66.35 94.74 96.59 48.51 74.94 41.65 70.10 88.85 95.01 65.73 95.33 31.68 73.96 65.29 48.41 64.58 43.17 98.77 89.35 74.69 77.21 19.45 48.96 60.28 77.18 6.46 44.24 86.20 87.31 73.25 42.17 8.60 44.88 86.05 42.85 55.24 10.85 77.38 63.40 85.70 48.11 95.27 76.60 37.78 92.85 68.44 23.61 77.77 49.34 61.66 3.85 99.84 31.94 25.02 35.78 84.16 36.99 78.77 2.16 72.89 89.91 74.93 10.29 54.70 94.33 79.51 55.89 40.45 14.05 63.56 25.09 1.30 51.95 67.38 65.17 57.32 61.69 49.54 58.78 62.47 5.88 55.97 84.21 42.71 38.11 -14.39 92.39 56.15 13.70 28.87 76.72 1.04 6.75 86.63 68.99 52.36 54.33 2.86 89.45 86.32 3.18 14.40 38.55 81.28 31.55 67.44 0.63 98.18 27.51 83.27 59.60 34.25 82.68 93.05 1.25 19.19 77.17 27.91 85.39 94.61 34.56 62.67 33.57 67.93 23.25 87.07 18.43 52.54 44.37 66.59 55.90 20.94 85.65 80.78 36.24 47.60 54.05 86.92 54.61 18.29 33.96 31.48 13.37 97.22 50.45 95.46 78.10 7.34 89.64 19.29 41.86 51.72 72.74 94.90 60.16 9.61 12.14 82.61 87.15 1.13 7.47 35.85 95.76 3.91 67.49 89.78 81.62 32.28 94.93 42.84 6.42 84.57 45.89 29.44 4.03 79.55 60.73 69.53 1.86 45.78 68.23 98.32 68.42 39.86 25.84 -82.25 46.78 12.62 27.02 14.18 31.12 20.81 57.05 98.35 13.44 15.80 10.00 62.75 11.73 6.67 82.78 50.26 69.32 93.07 91.19 7.97 8.00 56.02 48.53 89.73 7.24 84.36 14.14 16.74 17.74 68.13 4.84 25.52 69.95 47.22 81.71 91.27 12.75 36.97 31.55 94.55 43.44 51.48 39.78 24.95 62.84 90.67 71.64 41.46 54.12 87.80 79.70 33.21 13.86 59.76 76.24 54.86 97.88 49.82 97.09 23.28 16.68 13.12 46.43 21.20 67.26 27.53 13.20 56.89 83.04 56.51 78.85 8.83 59.86 86.01 86.06 33.77 13.57 68.43 29.29 30.87 72.03 63.88 20.90 31.89 58.30 99.03 7.16 13.34 51.55 28.84 45.02 85.52 75.66 30.70 72.98 65.55 9.67 10.96 53.33 -21.70 25.16 89.18 13.20 22.41 46.82 45.03 47.26 86.62 84.22 44.30 85.34 69.19 21.09 75.86 7.40 82.64 27.07 55.76 90.97 66.05 66.94 61.42 98.90 85.83 82.78 53.31 22.72 52.75 59.74 32.75 95.99 27.00 13.61 88.39 97.76 28.01 23.93 61.40 89.79 57.93 93.85 87.87 2.68 13.96 89.70 31.48 63.88 4.90 21.47 24.35 8.46 7.68 84.27 33.33 97.77 12.17 22.28 13.95 21.61 8.79 71.92 52.52 7.81 66.61 19.98 52.84 45.48 39.87 30.16 65.21 90.73 29.71 76.70 33.97 5.09 44.91 46.49 58.23 35.12 3.10 78.09 80.30 24.01 79.49 32.13 72.36 51.21 94.77 67.80 76.99 98.29 66.61 56.78 39.68 63.33 28.70 77.50 87.89 69.63 -81.71 58.04 9.69 98.52 5.01 22.87 24.76 44.85 92.06 54.19 17.22 15.19 1.85 38.38 0.59 86.71 75.05 94.12 39.87 65.03 73.33 39.75 76.90 7.39 89.69 53.23 33.00 45.02 88.75 4.13 11.86 85.50 23.76 11.63 66.78 48.06 37.48 46.96 62.62 58.08 56.59 50.01 40.17 72.71 54.28 62.42 28.75 52.47 66.29 32.52 60.36 76.25 1.45 40.22 63.74 23.00 76.75 36.84 87.26 32.12 18.84 53.44 15.93 70.65 9.06 8.96 24.58 58.25 90.62 24.88 69.18 87.37 27.87 32.75 73.28 21.74 80.56 84.18 51.94 58.68 56.48 63.60 67.95 51.55 50.89 44.35 91.87 50.13 14.56 87.86 67.68 47.21 92.83 45.67 39.41 44.19 76.35 17.35 28.94 47.16 -95.58 64.22 67.95 93.10 79.83 2.89 17.68 36.45 7.68 13.77 83.58 99.44 10.22 81.35 29.70 54.82 18.94 59.19 90.05 91.95 18.42 50.94 98.68 3.77 54.55 75.06 73.55 97.33 80.29 95.47 62.41 62.14 87.26 30.91 19.33 16.23 28.26 16.37 4.20 85.88 33.58 95.94 55.13 5.24 12.40 91.39 51.41 19.08 16.52 86.92 35.43 94.98 12.81 37.82 62.90 16.12 93.25 23.08 85.92 77.96 6.27 91.21 40.18 23.38 23.12 62.04 26.49 15.70 12.79 71.60 56.68 11.88 7.59 55.13 57.34 72.60 41.52 57.77 52.54 6.81 8.68 68.73 79.19 63.96 68.27 83.71 89.08 65.85 66.15 31.23 26.41 1.47 4.13 37.85 9.88 72.94 19.24 37.01 76.43 37.66 -25.40 74.82 69.83 67.77 19.12 1.31 34.91 98.40 92.71 39.62 46.26 64.69 59.43 40.74 68.32 57.02 34.09 13.50 80.28 9.72 51.21 72.68 74.33 77.10 64.56 30.60 79.70 88.04 23.06 10.35 63.60 19.51 84.02 20.13 23.48 91.63 39.19 84.25 68.41 51.67 78.19 38.75 64.67 65.06 50.79 77.27 78.60 18.27 46.29 96.04 84.27 35.24 86.31 3.99 73.47 83.35 69.23 92.09 62.15 97.66 63.63 83.16 45.75 28.04 70.26 93.00 91.78 26.53 86.43 24.66 45.08 42.61 79.91 6.20 82.17 34.46 24.96 76.31 98.97 45.82 8.19 71.72 66.77 25.12 8.00 8.58 37.90 89.40 4.20 53.40 93.31 69.91 26.53 54.45 47.75 68.67 26.22 58.61 10.33 39.51 -51.50 50.12 93.56 0.11 4.29 91.36 20.66 94.21 79.62 59.85 46.72 73.59 29.06 40.02 16.96 34.55 55.66 88.66 1.42 90.94 57.78 58.30 51.20 31.36 74.89 74.80 14.89 36.23 5.50 93.16 68.76 30.36 35.22 99.63 94.87 77.20 86.95 2.98 46.97 31.00 80.42 71.38 38.10 7.48 7.97 43.41 53.13 30.68 36.56 29.81 26.95 20.14 0.41 37.75 76.26 51.29 40.81 60.04 16.21 90.14 58.14 80.11 74.64 85.93 58.01 37.25 42.15 30.69 76.71 89.17 9.74 56.36 94.64 89.12 21.13 55.05 76.06 6.64 58.56 17.08 10.83 45.49 5.91 24.71 5.40 73.87 69.30 60.40 33.08 35.02 2.58 45.82 86.56 75.21 74.61 34.72 20.56 62.89 81.33 71.54 -62.66 6.32 32.79 96.05 22.83 59.74 67.88 91.15 47.80 91.87 0.54 93.24 20.90 39.51 47.20 61.20 80.35 92.03 25.62 8.18 13.95 32.20 21.65 80.96 52.64 72.23 91.45 68.56 13.86 39.79 74.35 24.01 1.39 3.02 98.15 46.77 29.26 57.53 3.00 71.02 2.37 55.74 91.94 75.44 97.19 77.38 33.11 63.68 1.21 63.23 8.50 5.79 25.86 7.48 5.84 9.35 57.41 35.09 61.92 84.90 47.97 90.14 86.91 72.94 63.13 6.01 73.40 1.58 91.84 79.44 38.42 63.42 52.01 75.76 4.40 23.54 3.51 27.62 85.82 71.21 55.14 92.72 61.35 88.72 17.08 44.23 37.67 35.79 10.27 75.97 48.51 52.73 87.24 88.73 0.50 97.19 3.43 18.01 35.98 41.44 -3.14 8.46 79.24 36.15 5.35 48.99 39.16 0.76 70.99 53.88 53.90 51.10 97.42 14.94 92.02 2.73 12.10 41.38 76.57 63.72 27.03 65.66 18.12 66.96 48.85 65.16 37.58 8.31 88.82 56.24 16.75 43.40 57.58 20.30 52.06 12.08 2.58 85.70 98.84 32.46 52.71 63.27 43.10 73.84 95.27 93.60 59.61 54.82 52.08 7.02 32.86 12.95 79.25 24.63 18.77 19.98 79.81 28.67 9.93 16.33 6.31 58.73 11.89 24.16 33.31 62.84 74.44 6.99 79.38 63.97 67.41 58.56 85.98 68.15 38.12 74.16 81.93 29.60 28.02 12.24 80.69 60.43 81.00 73.68 80.72 86.95 57.13 25.94 96.42 62.16 72.17 33.08 76.10 73.03 13.18 91.38 48.34 63.03 22.79 54.26 -88.02 19.87 87.02 62.87 21.09 27.06 48.39 20.56 98.35 12.60 49.96 88.02 77.04 23.76 86.62 13.07 79.94 54.42 38.82 11.57 98.63 62.16 57.10 71.78 30.49 55.33 93.84 73.90 66.75 54.48 45.11 81.67 99.28 27.89 40.07 14.76 92.74 19.00 65.93 52.30 76.64 45.29 71.22 77.09 67.20 19.91 49.53 37.35 34.99 37.86 35.67 78.06 84.82 1.22 83.01 3.26 29.12 12.98 65.37 79.81 84.60 99.26 17.19 55.28 35.23 2.84 38.58 28.21 74.89 16.30 75.55 72.46 60.32 4.05 42.28 42.89 17.17 35.42 16.74 98.16 50.66 65.43 49.18 10.34 52.64 14.26 33.00 19.95 85.58 85.96 13.38 83.65 75.95 88.20 22.98 8.42 34.29 37.89 12.57 8.90 -45.98 24.29 56.77 17.28 95.61 66.51 5.08 41.62 44.39 56.85 80.07 57.45 74.95 63.81 11.61 4.87 68.10 10.01 89.91 5.65 72.12 30.02 99.84 42.16 50.97 91.66 64.92 6.11 55.21 0.14 4.99 99.79 60.34 92.39 72.64 42.19 8.68 23.04 94.55 18.09 58.07 38.47 59.43 41.11 13.46 0.68 26.15 63.27 93.63 95.68 78.26 70.42 36.02 94.48 72.11 28.82 1.44 73.81 42.50 21.54 12.94 91.11 17.93 35.76 1.34 46.62 52.22 30.14 26.09 6.05 74.01 93.47 13.89 76.03 74.04 35.92 39.50 81.04 27.93 56.02 75.89 13.65 82.58 5.63 25.84 60.54 42.86 86.28 92.68 7.71 10.66 71.85 95.07 91.20 88.35 76.63 86.27 27.23 13.90 17.79 -27.65 40.94 93.40 10.17 2.02 10.22 92.15 32.15 74.99 89.19 83.29 5.80 52.70 72.65 22.59 21.37 82.35 69.76 76.97 39.97 79.59 71.87 15.70 79.13 83.85 66.28 27.00 71.90 11.04 35.11 69.75 95.22 8.82 76.15 10.70 2.18 42.00 67.03 7.91 68.09 93.94 0.40 92.99 36.30 22.09 90.19 61.11 97.48 1.60 98.52 80.04 79.67 63.61 40.53 17.97 54.36 25.08 32.73 94.59 75.69 99.93 38.49 19.26 18.31 53.82 82.00 60.03 2.38 69.36 80.08 83.27 47.45 28.51 64.36 7.25 65.25 83.76 36.85 66.57 16.69 2.61 51.15 37.16 4.47 54.94 28.74 77.80 65.04 12.42 76.81 20.25 4.15 23.98 78.98 25.63 89.76 53.31 16.20 27.97 84.81 -64.56 30.93 97.59 20.13 87.75 96.17 54.85 89.51 73.03 48.97 55.62 77.45 39.51 37.40 90.11 81.94 71.82 9.48 44.12 66.89 36.61 62.96 6.06 63.49 84.40 42.75 11.65 6.08 97.65 38.29 8.24 48.09 24.29 46.97 19.04 2.79 26.88 59.35 33.43 78.93 18.63 6.69 13.80 62.50 26.78 44.00 0.31 6.95 26.02 33.92 15.58 73.01 58.56 14.13 69.23 23.07 72.06 68.11 41.49 52.94 25.33 16.47 82.31 24.27 98.61 34.72 25.35 71.83 75.00 96.61 10.47 76.02 66.70 45.35 0.46 17.81 22.63 53.30 3.09 44.43 82.47 35.32 79.19 15.91 75.45 72.50 92.85 52.60 87.89 91.89 26.49 18.21 7.57 50.87 89.62 91.08 83.38 21.86 28.43 63.58 -95.53 55.14 68.32 31.75 98.39 32.56 30.84 73.02 9.82 61.28 81.72 38.69 63.05 4.62 75.56 18.93 44.38 63.74 55.68 9.08 74.87 89.11 21.88 66.76 72.07 13.76 1.67 34.07 42.83 11.05 46.06 49.44 57.58 13.47 61.98 62.53 60.28 38.14 12.29 65.49 23.98 60.09 30.14 58.37 24.52 1.06 2.19 20.04 11.95 97.14 51.15 84.77 40.58 41.18 26.44 80.98 46.67 28.43 77.23 78.44 18.39 61.04 31.86 50.39 41.64 93.75 85.42 82.53 75.00 59.37 94.73 39.54 50.93 42.43 1.05 31.64 9.95 88.80 35.19 39.79 8.45 71.57 28.38 27.39 79.16 61.95 39.29 59.39 42.82 60.60 38.90 97.69 91.83 19.55 9.00 86.05 92.86 33.47 22.27 11.27 -77.97 22.15 52.22 67.07 65.84 68.14 60.30 48.34 50.07 53.89 61.95 28.11 79.58 86.74 73.98 40.31 82.89 50.92 61.68 98.54 75.64 3.57 93.78 64.90 11.91 79.17 18.04 19.93 47.93 93.88 83.12 14.84 43.37 37.37 39.27 28.71 89.72 14.13 47.11 2.64 28.12 58.50 44.08 6.33 5.94 29.53 57.30 99.09 76.88 62.19 58.51 47.63 47.38 60.75 81.89 69.10 78.57 90.73 75.64 13.07 42.89 93.42 85.72 46.89 59.10 17.70 78.86 80.24 76.98 4.01 53.26 94.20 71.16 91.35 47.56 2.73 37.71 29.99 56.90 21.16 13.14 26.85 25.91 16.87 99.15 99.49 43.52 8.77 52.26 75.83 52.77 66.04 85.97 12.31 5.99 77.80 7.82 45.27 62.28 82.51 -53.58 13.25 41.98 55.38 48.08 21.31 80.54 41.07 79.55 1.91 35.77 22.91 74.00 1.84 6.50 40.49 74.23 88.16 17.26 48.78 70.48 81.00 73.60 62.75 78.95 64.93 36.73 24.47 80.30 11.85 1.64 5.94 24.16 49.42 25.57 15.11 12.85 22.62 98.54 96.64 44.99 63.86 49.93 73.27 13.10 64.62 47.06 84.78 80.89 22.70 29.29 37.45 16.33 27.96 96.04 51.42 19.04 71.19 68.06 88.37 60.92 26.33 15.36 57.98 67.30 74.39 90.80 62.40 56.82 86.42 71.45 16.81 56.13 52.05 65.59 92.95 50.53 99.43 6.77 22.11 74.01 97.35 80.29 84.54 58.06 19.44 61.39 93.76 84.63 16.86 44.86 20.79 89.15 73.10 61.48 55.89 92.39 95.78 69.49 5.94 -73.63 81.57 11.70 69.25 82.09 71.03 43.61 3.03 46.49 82.12 57.79 79.60 64.47 38.30 36.77 85.11 58.01 21.51 30.02 8.90 73.70 83.88 79.11 22.14 26.31 96.32 6.73 33.01 54.27 35.22 52.58 1.67 77.24 87.45 22.68 62.22 51.06 12.05 77.37 84.69 14.48 24.59 15.27 65.16 42.19 45.18 19.34 15.04 43.58 8.90 21.50 91.59 38.67 8.45 97.07 4.24 68.19 20.83 8.27 59.98 10.29 69.18 52.35 89.19 20.11 55.56 51.07 87.25 17.41 24.24 53.17 62.27 6.62 68.88 18.15 2.00 34.28 51.61 54.95 10.95 18.65 4.40 62.88 9.04 50.01 28.39 50.57 59.32 15.04 71.31 58.74 41.45 46.95 96.84 34.40 64.12 87.92 33.14 61.36 23.07 -49.06 82.31 68.31 0.98 46.74 68.50 81.55 21.60 68.17 95.95 75.05 82.17 67.08 21.38 30.65 92.89 97.66 92.62 98.85 95.95 95.79 68.63 3.47 69.60 60.76 86.38 82.26 48.61 0.16 52.81 93.83 95.54 31.39 52.94 31.97 12.27 64.19 12.59 92.22 76.97 26.62 60.69 39.39 81.29 79.05 34.15 88.82 43.53 63.81 97.82 64.00 9.99 78.14 39.56 5.98 74.81 21.45 90.37 96.11 86.14 9.70 42.59 78.41 7.90 35.96 91.44 82.88 84.02 15.65 97.95 76.84 21.63 87.71 0.73 70.97 41.22 76.65 66.08 25.75 73.69 35.69 19.11 21.70 88.24 46.80 32.55 48.18 25.50 89.81 52.28 4.63 28.44 38.75 17.52 17.70 42.97 32.41 87.85 18.54 5.64 -34.11 78.44 81.48 80.18 36.09 35.06 99.20 14.62 76.61 27.88 70.72 16.69 98.12 37.95 48.48 48.18 71.99 44.14 77.60 58.05 0.94 21.71 52.26 19.26 0.67 33.14 41.58 96.81 28.13 15.01 53.07 71.82 70.18 64.04 32.96 12.02 19.95 84.52 81.38 76.50 65.65 12.39 65.43 90.91 21.22 56.86 57.45 1.85 8.61 48.74 55.14 97.39 86.31 58.10 24.37 72.05 41.88 44.59 39.12 82.07 37.07 71.30 63.08 67.43 65.20 74.50 10.52 19.82 37.64 30.19 89.32 61.94 18.75 62.83 80.33 46.65 6.78 60.36 43.66 13.72 96.37 35.35 83.46 48.61 29.76 3.69 65.29 3.47 11.09 36.03 31.36 89.46 52.28 13.21 81.65 97.52 74.65 88.06 39.22 66.29 -88.02 47.93 72.14 51.56 62.27 23.60 43.15 84.30 51.09 16.60 73.51 64.92 80.40 13.89 26.73 73.24 62.51 88.64 13.08 82.47 56.34 33.31 82.80 96.25 20.01 41.96 9.06 14.64 7.06 26.46 58.15 97.85 13.68 6.51 67.25 59.11 19.64 36.16 29.68 78.83 76.03 5.27 13.57 92.72 87.69 16.69 4.61 20.58 13.73 69.86 35.40 32.34 70.05 36.66 92.28 76.78 62.49 4.71 68.58 43.12 96.99 37.53 60.93 3.08 11.25 47.44 77.74 13.16 97.97 90.64 46.90 10.35 58.54 71.38 27.12 40.85 40.85 53.14 27.78 17.62 31.26 55.20 81.34 13.85 64.84 74.74 76.79 50.43 52.36 71.63 21.04 70.07 22.35 21.38 29.72 36.33 14.08 97.87 42.47 45.61 -10.32 7.35 28.79 88.16 57.49 87.90 79.60 10.86 68.53 75.78 80.90 98.64 82.70 53.19 35.47 60.70 30.35 17.03 12.57 41.19 36.86 56.96 9.36 48.65 82.22 3.17 79.15 77.54 4.38 48.69 56.81 39.89 3.72 74.93 18.16 8.23 71.94 32.37 93.97 68.49 58.26 28.70 74.14 83.73 93.98 44.63 70.43 20.48 8.05 47.18 23.59 19.10 91.53 87.08 35.88 76.87 28.16 46.16 27.48 33.96 40.15 87.59 96.87 57.60 62.40 52.21 33.73 35.77 99.65 38.37 25.33 54.61 87.94 37.59 87.61 38.42 27.14 31.91 22.41 97.98 14.76 86.59 93.02 17.55 91.62 34.28 81.25 24.86 71.47 32.52 54.28 37.51 47.78 74.38 90.54 22.60 77.85 29.36 6.86 13.61 -52.32 67.21 84.02 17.37 54.22 43.17 25.62 85.44 2.73 50.43 40.15 84.18 10.58 53.30 10.49 12.87 32.58 24.36 38.49 20.84 70.86 85.19 92.79 91.98 65.98 51.75 98.32 4.98 78.53 7.96 73.14 68.83 42.39 17.99 97.48 43.42 2.89 31.95 82.58 99.67 27.12 77.47 41.75 9.59 31.95 84.50 1.16 45.74 47.09 34.78 40.36 70.40 63.41 5.35 48.45 83.30 79.38 27.72 78.42 22.92 9.39 88.26 17.53 37.98 27.68 55.74 9.25 40.28 68.67 81.18 20.92 14.88 62.46 35.35 32.88 85.62 93.97 67.73 99.40 51.68 50.77 0.29 85.75 98.91 60.96 29.12 35.06 64.32 43.40 96.37 88.40 76.30 55.27 87.13 5.27 83.51 81.79 53.62 27.69 49.33 -9.04 61.91 10.51 62.42 2.35 79.68 64.85 92.51 91.96 7.70 32.28 25.24 92.90 4.23 68.54 34.39 89.05 63.26 95.32 13.75 85.92 91.91 93.34 20.10 80.63 44.05 80.68 83.62 71.63 10.57 92.11 83.09 25.99 84.64 71.13 0.71 42.85 79.47 17.20 14.60 84.34 74.08 58.83 60.56 14.91 98.73 79.66 40.04 59.64 38.11 60.65 49.58 22.84 74.73 91.69 47.56 3.02 42.04 33.19 45.75 92.67 56.81 43.20 19.65 36.61 89.95 17.06 43.83 13.61 72.05 87.57 66.38 30.09 2.93 1.40 60.63 68.52 53.79 15.48 99.03 47.99 35.49 35.79 6.85 93.70 90.61 38.84 54.26 1.99 42.53 64.30 50.78 51.65 62.68 49.84 43.15 13.88 60.92 71.48 30.12 -89.79 37.61 60.22 9.23 3.59 9.47 54.98 39.13 93.87 68.28 27.49 54.33 4.11 49.65 87.70 32.77 98.51 68.21 32.61 99.03 35.12 30.07 89.00 71.82 24.57 74.89 56.58 63.04 47.16 54.66 56.81 58.17 23.22 11.53 40.95 58.16 42.61 75.80 64.53 79.45 80.24 46.77 27.45 17.10 13.08 29.39 92.37 10.19 27.59 97.47 56.44 2.47 72.97 52.39 17.69 97.91 15.53 25.79 20.64 71.64 36.05 82.67 78.23 50.16 63.69 7.21 40.78 61.30 9.21 41.93 11.11 70.44 25.09 69.97 1.70 0.92 34.66 43.09 51.62 92.38 78.94 57.93 91.40 4.28 37.67 9.87 51.42 6.38 40.68 57.51 8.54 79.73 89.65 16.78 27.80 80.41 83.69 17.69 77.74 11.63 -55.07 56.19 2.35 32.26 73.42 70.98 30.48 50.34 55.78 50.84 8.20 86.32 48.69 31.83 86.03 41.72 4.88 62.38 91.68 76.29 56.04 83.98 38.73 96.86 66.27 77.16 92.21 76.44 67.23 86.28 66.00 42.03 59.91 24.43 39.34 34.86 61.26 26.36 56.25 72.89 52.98 90.14 35.51 70.06 99.55 85.55 97.24 8.01 79.79 7.98 34.30 78.53 81.83 43.89 33.23 45.06 82.29 3.14 5.93 25.88 79.46 95.75 45.34 34.23 22.25 56.00 75.89 26.40 51.45 32.50 14.35 19.79 24.47 36.19 42.82 20.51 47.81 13.14 22.79 67.79 9.99 85.84 83.81 46.63 15.00 6.31 31.27 32.07 32.07 48.68 80.09 70.21 64.13 93.60 70.39 79.08 55.49 68.85 39.20 45.89 -33.10 32.77 11.77 3.64 84.56 26.08 11.32 69.97 3.27 31.72 54.92 24.04 0.87 22.26 40.30 12.42 0.12 23.45 51.14 89.66 94.10 15.63 2.48 46.82 34.89 95.76 15.95 16.38 47.83 63.63 20.22 97.81 27.76 60.99 0.03 15.57 63.29 63.61 4.27 72.05 75.37 14.60 1.97 51.04 5.85 23.24 43.44 50.02 77.37 26.30 79.86 42.78 33.52 31.43 60.56 66.96 16.75 82.44 15.60 63.37 53.88 4.96 49.21 88.79 90.54 80.07 79.52 47.05 3.21 13.64 72.49 80.06 54.17 93.02 10.39 21.89 75.05 47.07 26.85 4.50 78.10 33.18 91.58 78.14 54.79 22.17 59.65 10.37 98.17 60.91 28.29 16.14 14.96 71.44 56.14 29.12 68.28 9.95 95.87 24.98 -99.50 24.68 66.16 17.09 70.26 63.97 91.17 94.23 75.47 57.52 19.11 56.75 34.41 50.32 60.44 10.58 73.78 15.22 71.30 26.02 81.33 5.63 44.18 89.57 73.94 34.42 28.09 78.55 80.87 67.75 51.50 35.75 2.61 78.33 7.46 95.59 9.61 30.84 33.76 50.09 64.37 37.46 72.49 55.98 98.26 7.35 42.94 72.34 92.29 71.64 75.87 70.90 21.14 2.82 26.81 59.04 87.47 94.61 42.61 33.49 20.55 1.24 69.91 15.35 98.79 92.35 2.46 74.56 97.27 84.01 47.83 42.03 87.77 39.55 54.07 17.72 41.56 47.70 70.70 4.91 3.04 66.82 38.95 11.83 81.19 71.73 85.35 83.94 21.93 56.83 20.50 75.63 58.49 1.57 78.52 10.73 43.55 92.71 1.17 96.90 -10.26 95.86 34.50 78.49 4.18 35.76 29.20 64.50 58.59 7.83 34.20 21.13 80.64 9.10 85.04 0.35 52.52 48.07 49.46 92.42 97.99 75.32 43.67 38.23 74.96 34.57 89.17 74.33 62.13 61.35 65.71 53.16 46.44 56.21 20.48 25.85 51.22 32.88 67.56 33.38 41.96 24.42 6.65 47.53 20.16 11.20 65.64 71.57 78.28 15.99 82.52 41.18 41.01 61.83 97.74 69.41 64.29 32.61 37.57 53.25 24.73 68.18 79.29 10.58 93.32 85.16 59.65 16.36 92.49 34.45 74.86 60.45 9.48 6.78 59.48 60.00 76.40 39.04 90.57 2.51 97.71 50.63 31.23 72.53 73.70 40.82 25.12 98.69 64.32 90.19 19.33 45.24 58.99 19.76 90.79 5.70 20.95 42.97 35.11 79.14 -11.93 31.68 54.25 43.52 58.60 19.96 94.07 14.00 13.55 46.06 16.36 76.83 81.56 15.28 11.06 25.72 42.25 84.88 26.95 66.55 33.27 27.21 28.64 6.77 52.31 85.68 74.22 70.56 66.67 36.54 28.27 89.17 91.01 46.61 28.87 44.30 32.14 97.29 1.08 31.96 15.57 19.07 71.67 68.34 49.00 89.35 43.97 46.04 77.05 85.40 74.31 9.04 74.11 49.10 96.56 19.86 40.71 90.81 3.37 29.00 89.73 34.79 36.91 30.42 1.76 7.88 64.38 64.00 99.56 16.11 98.25 80.25 43.18 26.71 39.74 51.97 38.70 15.00 0.64 45.10 50.60 31.48 26.79 5.46 13.38 38.41 90.21 7.25 93.80 87.65 9.31 92.22 86.86 20.21 55.19 50.86 40.20 52.79 35.43 46.92 -26.74 91.88 30.83 51.14 74.41 20.63 99.81 41.51 35.28 32.28 83.77 11.80 69.56 85.72 6.77 67.24 52.15 92.85 34.77 81.55 83.96 81.56 82.43 15.33 56.11 27.58 59.94 14.77 79.39 0.34 60.16 57.59 87.38 93.24 22.81 4.84 77.33 12.74 19.09 61.82 26.30 87.52 82.80 40.82 1.86 90.27 66.71 43.09 22.21 75.61 58.85 76.05 54.65 66.30 54.00 2.94 7.22 76.01 41.80 85.12 4.70 83.83 87.91 76.75 78.13 82.05 23.66 64.41 13.90 74.28 21.19 17.45 55.06 81.07 13.72 84.05 79.05 10.23 59.41 17.69 9.26 62.63 73.74 36.69 68.98 90.70 9.44 3.86 16.95 32.65 56.84 37.08 30.97 7.84 66.84 72.62 88.61 64.20 71.51 99.09 -70.85 99.33 33.05 58.28 7.17 33.60 9.41 75.64 9.78 11.62 68.12 74.16 54.56 17.86 80.00 23.10 53.72 33.73 92.87 34.29 59.41 84.52 26.87 7.34 59.51 25.20 39.13 56.61 29.38 94.36 28.87 57.43 44.14 51.43 2.08 92.16 73.34 56.85 28.68 66.84 73.45 27.15 7.41 18.67 34.11 96.40 90.97 26.50 66.69 41.26 0.63 89.55 39.11 22.48 91.48 1.56 7.91 83.11 90.94 57.29 55.77 20.83 24.04 67.41 99.89 55.52 89.03 75.50 30.10 40.81 72.54 83.86 71.72 32.10 16.91 54.48 23.87 43.80 72.82 22.93 27.14 62.29 40.56 47.93 87.65 27.16 3.98 8.31 8.32 56.65 54.13 62.82 95.38 78.74 56.09 30.52 84.00 48.77 46.30 76.19 -0.74 49.07 90.36 77.04 16.69 99.25 25.11 95.14 68.14 84.93 60.77 11.92 0.79 29.33 25.69 81.41 11.39 92.08 4.34 77.42 63.35 96.50 62.94 23.91 34.71 51.19 82.05 26.46 58.60 78.87 37.64 53.75 32.07 74.03 95.14 31.29 97.47 4.52 92.17 73.90 70.45 24.28 13.92 11.68 12.98 92.07 15.98 33.99 5.53 89.54 1.83 25.44 91.25 56.05 74.12 38.69 57.96 90.04 87.19 54.37 27.29 1.75 38.15 16.13 53.21 80.00 17.20 50.39 71.38 77.36 34.08 61.56 22.09 56.73 98.56 28.95 52.05 49.27 72.24 41.00 84.35 74.54 19.08 34.67 60.75 28.87 6.01 98.42 40.97 95.75 63.69 50.53 58.09 50.93 88.19 21.07 93.35 70.05 58.40 4.34 -42.87 12.64 60.14 37.48 35.58 43.17 19.81 45.36 82.83 14.25 55.81 41.94 87.49 64.30 35.66 91.49 60.29 17.22 1.37 43.06 36.02 30.15 57.58 3.26 84.52 89.33 84.74 53.82 98.42 85.73 27.64 32.17 62.25 96.99 62.04 5.03 40.45 23.98 95.23 51.62 41.22 66.34 19.82 52.18 14.26 70.27 97.37 2.57 21.18 54.52 13.89 91.19 0.97 11.51 54.38 98.47 40.23 49.47 18.23 29.80 26.38 92.65 42.85 38.13 15.53 7.69 94.19 64.22 23.04 91.10 61.69 82.88 26.90 15.52 24.17 80.19 69.70 72.63 66.86 38.68 71.41 56.70 81.82 50.22 99.36 1.90 24.08 25.73 6.60 11.00 82.37 23.60 9.19 31.12 38.12 14.99 87.59 61.96 21.33 28.45 -71.03 62.60 87.71 47.93 25.04 75.54 64.70 8.28 28.82 24.15 98.97 83.69 99.55 5.18 85.93 62.60 18.40 22.44 10.27 26.61 48.74 7.53 78.86 56.76 26.59 85.40 11.56 16.09 52.21 22.92 15.20 51.18 42.31 91.15 36.81 80.91 58.87 48.02 53.37 36.55 55.29 37.87 54.07 7.88 89.66 85.11 11.34 27.91 98.77 5.73 21.43 88.63 5.79 11.34 76.21 10.46 85.71 48.77 61.08 3.10 19.04 72.07 73.59 85.19 95.79 0.12 13.01 57.57 51.30 39.49 9.25 1.35 87.22 57.86 55.18 76.97 2.61 34.12 63.70 95.69 95.47 54.45 91.68 16.66 22.99 22.25 48.68 52.46 43.17 52.65 54.52 42.30 68.89 48.27 88.03 77.86 44.26 74.63 66.30 83.42 -55.60 38.90 94.93 9.10 80.27 96.98 13.67 37.08 26.59 75.52 48.81 98.48 92.17 54.59 27.63 59.59 35.60 37.79 48.54 84.46 69.93 47.54 72.66 2.22 14.00 38.39 83.00 81.79 83.99 85.51 23.10 3.67 79.30 18.53 45.70 62.67 81.35 44.22 51.68 96.68 50.71 15.55 47.72 76.57 47.69 90.89 55.94 23.96 99.24 29.41 99.00 54.80 93.00 14.02 49.50 79.16 99.71 45.92 81.51 11.45 1.42 56.84 70.88 3.58 91.87 5.67 93.66 69.90 74.72 60.97 30.25 73.30 44.74 76.39 79.70 54.76 98.06 80.67 51.74 47.20 27.09 49.50 82.04 52.06 97.77 41.43 41.28 1.58 45.54 79.34 56.45 3.18 59.28 46.38 33.95 31.29 5.50 31.54 17.90 14.85 -95.51 79.38 81.91 42.75 73.99 99.14 58.61 13.56 34.42 97.54 18.52 10.47 8.55 55.32 58.39 7.28 92.51 56.64 60.37 59.16 66.77 45.16 26.20 81.96 24.23 99.22 92.17 57.45 63.66 79.35 0.72 46.18 65.15 96.15 46.22 19.21 15.27 23.13 26.78 94.68 99.26 50.79 14.85 57.68 16.31 0.15 95.95 97.38 54.33 53.86 15.48 52.73 30.50 97.94 9.94 96.96 27.42 63.51 25.25 13.00 45.89 14.60 99.52 24.14 46.66 15.89 11.58 55.58 75.74 43.55 51.29 9.49 33.49 0.22 13.99 3.51 64.91 54.21 33.79 14.87 91.67 86.75 73.59 20.75 61.46 65.07 3.18 6.72 76.50 3.94 55.29 43.24 50.78 44.43 37.82 21.63 64.29 67.24 28.87 40.88 -94.80 30.68 40.78 50.22 87.43 78.37 25.67 55.64 1.42 50.40 15.88 69.63 41.35 9.93 88.20 89.74 76.18 6.44 1.37 10.14 23.59 96.36 35.88 38.85 79.88 11.56 6.21 64.86 1.41 95.66 89.43 26.96 17.36 0.45 22.85 37.22 42.87 20.91 39.44 67.28 27.18 27.60 48.93 31.73 60.36 43.33 91.33 78.32 92.22 8.02 63.20 39.16 50.27 34.83 73.53 89.24 34.23 86.83 95.66 43.28 79.03 16.07 1.69 72.36 51.46 11.95 42.02 36.14 99.60 71.84 77.36 41.13 96.51 12.76 74.72 72.54 37.19 99.21 16.26 47.79 65.90 15.37 91.67 53.29 88.31 97.03 48.88 7.76 4.20 20.85 59.88 81.93 34.51 20.77 10.84 74.89 15.01 37.73 0.62 11.00 -44.95 15.09 12.79 70.83 11.50 59.50 80.53 19.20 59.55 58.64 94.84 5.05 22.87 95.63 96.17 22.11 62.50 14.16 71.93 30.04 43.54 90.97 76.46 86.36 81.04 53.47 9.09 17.69 49.47 19.45 28.95 95.96 4.45 20.72 4.12 3.01 14.62 42.21 38.75 7.52 43.36 57.41 72.10 83.88 9.61 56.70 69.83 71.23 93.98 39.10 96.99 47.66 38.04 47.18 70.92 95.85 15.19 97.16 59.69 94.63 59.70 42.72 85.67 48.96 76.90 3.93 63.14 14.49 71.56 77.67 50.25 55.61 81.23 80.25 92.44 13.76 82.97 69.45 80.85 21.30 14.77 51.67 10.24 57.91 70.74 15.23 21.94 11.87 46.88 2.61 27.48 67.13 59.12 82.75 49.66 16.86 60.88 7.10 38.21 91.62 -4.91 7.64 78.98 68.25 82.78 78.29 42.92 81.33 99.94 6.72 98.23 0.29 22.44 71.01 39.70 45.12 32.47 75.11 51.25 61.51 79.81 55.63 0.91 5.84 91.35 1.34 61.97 59.32 30.01 13.01 83.66 50.61 73.49 39.69 78.26 34.51 13.50 20.89 80.27 43.10 45.77 20.87 2.60 77.10 0.24 10.49 48.29 3.20 45.79 49.34 64.38 15.69 1.23 44.12 88.34 92.94 14.11 61.26 50.41 58.41 91.31 15.36 41.38 59.07 55.08 10.35 74.69 92.12 93.66 81.86 96.99 72.15 14.50 42.55 68.37 5.31 94.70 82.08 59.29 96.65 69.64 92.39 4.35 71.04 24.50 8.62 89.55 91.92 51.95 44.20 37.71 19.41 31.73 15.34 7.32 80.79 55.19 40.62 84.28 59.44 -84.39 1.58 86.45 54.85 85.97 44.66 72.36 80.72 64.20 80.54 14.09 78.57 97.82 45.26 84.45 31.31 86.31 8.01 82.07 6.84 80.16 70.74 57.23 28.63 79.24 74.99 94.43 25.66 36.32 79.03 97.78 83.19 81.08 3.21 83.70 11.89 58.16 22.55 54.62 27.31 16.40 53.01 3.50 37.78 27.74 22.82 21.53 13.43 64.68 75.24 32.60 51.43 38.74 39.28 54.35 25.90 64.49 30.41 99.75 92.93 79.65 3.97 14.34 61.08 37.00 74.62 49.74 12.67 39.87 11.66 22.38 25.96 79.63 12.60 91.94 91.85 6.44 7.06 39.97 90.93 93.91 84.25 49.23 18.43 10.60 61.36 43.63 73.00 26.52 1.86 42.33 55.09 75.08 29.37 14.54 79.00 68.66 90.16 49.88 2.74 -73.42 75.16 95.37 72.82 91.05 8.87 96.66 21.40 37.87 94.71 44.00 40.29 13.67 1.54 22.84 0.99 81.33 32.24 75.64 29.05 74.50 2.31 84.49 94.40 32.80 47.06 84.63 95.77 78.87 93.14 28.75 15.40 68.84 85.11 70.04 13.66 12.89 77.07 99.86 40.80 98.11 63.49 0.37 23.17 18.27 44.98 9.15 62.97 1.28 23.15 42.32 90.44 75.93 66.70 51.84 13.05 55.05 90.79 1.35 2.63 3.93 62.71 72.95 71.63 40.55 34.68 46.70 26.73 15.68 26.93 54.07 5.35 47.21 57.51 3.38 38.73 4.60 61.27 50.68 84.58 33.01 18.63 66.32 70.11 76.63 33.50 67.46 86.38 48.95 64.47 58.50 15.19 32.00 72.30 61.58 46.84 89.91 47.17 69.73 19.10 -27.13 93.32 66.52 25.29 47.58 15.19 64.08 70.74 1.13 96.25 10.23 69.47 68.51 59.45 55.44 14.99 76.02 40.33 6.23 35.36 25.22 84.99 67.93 27.45 7.03 31.78 62.75 42.46 89.39 80.53 70.95 13.39 90.58 56.28 12.60 48.59 82.44 21.37 38.86 84.55 71.52 15.34 77.21 38.13 8.77 6.53 59.38 76.01 52.60 25.72 81.88 95.07 71.63 43.55 36.36 96.39 42.45 84.00 1.20 79.53 11.30 60.69 23.66 57.61 40.21 77.68 7.14 85.67 36.20 91.67 51.98 21.05 64.20 82.92 77.70 54.40 75.44 27.17 39.11 3.74 51.62 64.09 64.35 48.48 97.28 18.29 68.20 89.31 47.63 61.59 34.05 62.48 14.70 47.66 41.92 79.56 6.55 14.57 98.06 59.37 -48.54 57.24 81.80 61.90 56.93 46.78 99.15 40.06 83.79 14.33 98.50 57.76 77.17 14.30 10.77 55.75 81.02 4.45 30.91 79.05 19.02 77.92 64.96 98.76 82.98 74.62 4.28 33.18 48.82 40.76 32.66 82.64 15.08 36.89 52.92 45.31 32.94 23.68 76.64 21.61 50.91 54.39 77.59 4.04 39.26 81.20 8.98 66.53 3.41 23.20 60.90 87.73 71.09 47.21 89.95 0.84 66.00 9.63 32.98 66.54 82.13 99.57 45.85 47.53 7.98 27.25 97.16 77.96 78.37 58.01 9.69 15.05 92.81 31.18 26.86 6.90 2.33 6.38 66.18 13.37 87.85 71.74 54.56 10.95 48.92 2.42 98.04 51.09 1.87 82.49 11.53 68.85 76.81 86.16 55.75 39.57 27.57 19.64 22.00 10.77 -51.93 55.06 43.62 43.05 82.11 9.89 75.32 88.95 52.28 82.38 77.47 5.20 16.21 87.85 39.99 43.19 66.04 14.52 11.39 84.79 62.01 29.55 93.10 92.43 6.66 53.15 53.34 27.18 73.89 78.05 20.35 73.15 57.67 29.75 35.84 9.26 52.24 20.48 41.45 93.50 50.28 32.54 26.79 94.59 48.44 84.61 68.93 29.81 57.08 21.46 36.18 61.72 27.94 48.88 23.51 89.63 79.82 12.80 92.47 80.24 28.46 44.35 45.20 20.45 47.63 40.24 9.34 62.02 81.59 35.75 18.63 22.99 67.85 3.09 50.07 2.39 1.73 43.80 8.66 75.23 69.67 76.82 12.14 53.18 24.32 85.06 59.97 99.24 51.83 52.18 61.18 33.09 52.49 0.06 30.82 16.43 26.84 12.31 81.62 28.10 -29.12 93.75 48.95 31.63 68.68 85.37 49.56 37.46 23.18 62.60 43.85 65.72 9.11 54.49 26.32 67.08 15.84 2.39 92.39 57.59 41.10 28.41 60.14 38.50 9.62 74.91 57.87 3.72 56.37 29.06 49.64 16.20 73.14 74.56 34.40 72.94 57.74 0.41 41.34 15.00 54.42 24.73 76.03 70.25 22.73 21.25 81.65 31.84 21.12 85.72 42.07 3.41 60.43 10.18 76.33 91.27 32.16 3.91 39.42 92.22 45.40 65.32 86.33 98.81 31.00 1.84 70.74 67.11 56.31 8.62 17.86 24.22 74.08 62.75 8.69 15.20 53.40 7.14 60.88 91.29 42.27 43.31 65.00 38.76 25.36 36.43 13.78 31.25 85.71 21.39 11.07 11.38 49.65 93.56 84.52 19.93 28.39 87.19 2.79 39.05 -49.52 14.90 25.53 5.01 91.11 38.85 49.07 96.94 88.10 18.55 65.58 48.72 92.66 23.06 54.06 14.17 35.41 9.16 72.33 14.16 74.44 28.85 16.83 85.84 8.23 19.37 36.90 33.08 7.95 91.43 80.41 3.45 70.02 85.59 79.51 67.36 59.79 37.22 58.95 62.00 56.89 42.28 93.42 82.07 50.04 19.37 31.37 65.02 15.81 91.17 89.49 93.85 45.05 66.73 82.95 16.66 50.34 81.02 51.76 6.62 12.10 89.92 14.83 74.36 95.18 50.75 77.14 89.64 72.08 5.69 3.10 75.50 57.73 14.79 95.24 75.72 14.33 7.90 50.88 59.83 21.10 51.13 78.36 10.24 75.40 64.40 8.09 62.94 47.71 52.12 54.83 50.64 22.20 89.58 5.13 65.15 69.06 95.69 85.66 21.74 -59.46 11.33 82.10 10.75 52.79 36.49 71.16 47.37 20.73 73.99 47.39 88.02 3.51 80.05 71.56 48.96 8.59 5.33 90.07 58.16 71.81 75.90 83.47 34.76 83.98 38.98 0.15 77.05 80.65 9.01 64.90 40.81 80.21 83.92 76.82 34.52 62.24 1.20 98.78 4.80 97.95 48.93 53.16 99.84 27.49 48.21 42.24 23.49 21.29 47.99 2.92 24.93 13.29 13.04 38.92 54.74 92.15 97.19 57.84 50.14 7.02 26.69 73.70 84.21 50.97 23.47 87.08 22.84 38.13 50.44 43.81 46.77 87.98 35.76 28.59 39.99 90.03 30.66 53.00 28.21 6.97 74.41 23.06 7.06 95.68 8.39 94.09 87.34 95.45 74.93 81.60 50.78 67.92 60.31 50.52 9.31 0.77 99.98 28.58 66.27 -8.74 40.64 67.12 50.55 63.46 89.44 92.60 57.77 52.35 85.56 78.39 13.01 71.35 12.49 81.22 67.09 83.85 79.64 33.65 57.54 5.40 96.27 59.63 1.40 71.78 27.08 53.54 55.40 5.48 24.35 67.97 56.51 73.13 32.43 71.84 84.36 37.38 66.83 69.56 46.79 16.34 1.50 34.70 22.23 56.03 48.81 82.24 28.24 34.71 50.14 55.41 4.36 4.05 54.07 15.79 49.16 90.65 78.33 7.94 41.98 68.92 13.63 62.71 41.16 27.49 98.43 75.61 7.38 43.81 4.21 11.13 97.22 19.47 89.58 49.64 45.63 60.28 11.62 84.53 32.38 93.60 63.28 17.25 55.58 75.03 84.74 40.33 11.98 92.75 78.63 63.73 96.24 44.27 24.46 54.72 98.09 9.61 58.79 35.68 47.44 -64.25 40.93 99.66 80.86 71.69 91.80 18.49 1.21 42.82 7.26 1.10 19.27 2.97 24.72 19.55 14.46 22.19 60.85 94.68 31.04 56.60 87.49 54.08 97.92 84.64 7.95 48.78 85.84 80.35 2.63 49.05 22.01 11.62 19.58 23.69 8.41 6.55 27.56 9.98 22.58 34.34 60.02 1.63 9.95 2.19 5.56 27.09 40.13 71.23 20.65 88.19 86.81 9.39 79.53 26.47 21.72 41.61 72.02 14.54 81.60 70.81 54.72 65.45 49.70 90.93 57.98 93.67 64.55 42.94 30.01 5.39 3.62 86.72 74.96 98.24 65.58 96.29 27.65 5.12 74.19 47.40 35.59 77.35 15.83 2.02 28.84 73.19 16.14 60.12 79.05 12.68 87.97 20.13 98.44 96.90 4.57 3.16 43.26 61.77 20.41 -34.97 70.09 40.43 4.44 0.57 18.98 94.21 83.80 64.48 0.17 49.14 74.45 26.99 75.14 84.73 17.20 74.93 41.73 40.58 47.62 53.89 7.82 26.10 17.97 65.20 52.11 17.18 58.32 73.69 21.26 87.92 4.69 23.11 34.16 65.86 83.48 86.86 60.00 41.38 29.60 91.51 9.64 63.22 41.34 90.66 40.51 77.94 89.86 16.67 1.89 82.16 8.60 89.82 1.93 38.28 92.74 52.89 36.14 34.86 56.25 23.98 64.79 10.52 72.26 96.05 78.34 77.83 82.07 60.76 39.19 14.54 29.16 13.23 59.86 79.25 72.45 79.34 95.75 99.45 12.57 20.28 60.93 74.29 97.89 89.99 36.65 73.31 72.74 70.68 47.88 25.46 37.52 84.03 11.23 49.39 64.10 57.12 26.46 32.51 31.01 -94.68 33.94 52.08 68.02 82.90 5.42 12.34 34.32 55.68 6.52 82.38 57.52 56.10 42.71 15.94 89.55 24.32 29.19 31.57 68.58 87.53 4.24 12.43 5.02 72.40 77.88 9.85 52.15 86.72 29.29 3.80 32.90 55.70 1.83 94.49 94.28 13.90 36.09 58.95 44.98 23.49 57.70 0.75 31.79 83.97 74.29 56.21 35.40 81.63 68.82 59.44 34.52 1.30 96.03 95.34 49.96 7.86 39.02 64.68 8.12 69.23 6.31 19.27 82.86 51.60 37.42 54.30 60.96 21.05 51.68 85.04 58.01 47.56 62.34 8.04 67.85 44.47 64.26 96.36 79.31 55.46 13.91 23.09 91.44 2.88 48.68 71.31 12.51 73.77 73.12 26.79 25.57 40.50 91.20 91.84 75.66 84.08 69.22 44.44 17.66 -51.55 29.06 50.58 56.40 96.04 11.65 63.73 44.10 28.27 6.06 85.71 36.65 53.58 98.22 30.44 21.59 18.83 93.33 38.53 57.06 2.13 0.78 84.32 27.14 78.91 57.69 9.73 40.36 56.16 53.86 60.40 93.86 8.17 48.46 37.12 81.72 8.84 17.34 21.94 8.08 71.14 10.25 70.57 59.92 34.50 92.16 10.84 90.39 56.73 97.22 17.01 40.90 43.83 87.25 58.40 13.87 56.25 60.86 6.00 29.08 41.02 76.48 81.34 59.76 46.51 2.62 58.54 34.39 31.76 22.14 63.46 24.08 64.85 87.17 43.47 87.71 64.37 73.44 36.53 41.07 90.14 10.55 30.28 3.39 69.36 51.05 28.18 69.65 21.04 65.59 60.17 15.17 69.02 49.53 5.15 18.02 32.74 86.08 4.74 92.08 -91.84 98.50 46.01 53.81 32.75 90.39 79.01 1.61 77.76 18.55 73.50 33.54 82.35 22.81 55.30 24.68 64.72 62.72 86.89 36.23 12.63 8.72 50.05 42.87 53.48 11.44 1.50 64.13 33.35 39.21 60.99 88.98 60.72 86.21 47.00 18.47 87.59 5.54 72.20 48.46 5.08 62.85 99.14 36.32 31.45 43.66 89.73 3.96 88.06 71.64 70.41 76.97 76.50 83.00 10.21 25.23 12.85 91.74 97.53 97.46 7.51 98.17 12.13 47.17 52.88 12.38 20.75 45.85 53.60 96.52 92.00 54.63 53.62 77.12 35.79 71.95 80.13 24.65 69.58 70.12 10.14 31.22 42.05 48.77 48.67 56.14 64.07 74.73 69.27 48.79 69.82 52.01 85.71 2.01 15.85 65.87 5.22 73.66 5.47 10.22 -35.18 96.93 47.82 68.42 93.27 24.26 49.37 15.42 4.99 78.68 23.87 48.96 40.91 55.87 64.72 64.69 89.16 52.27 65.88 95.38 78.81 24.10 89.68 63.65 50.73 21.47 15.11 70.03 76.92 41.68 7.78 62.79 94.42 44.83 49.58 67.20 25.96 40.52 96.63 12.23 88.16 96.28 61.40 3.12 53.27 65.45 58.75 97.00 86.72 97.91 94.81 55.79 78.03 42.07 3.98 97.25 5.57 44.15 99.06 72.79 24.20 77.65 32.20 52.26 60.91 26.50 78.41 44.08 54.61 15.09 70.70 56.70 69.87 79.89 53.75 70.09 92.10 5.51 23.88 56.93 94.83 5.46 48.74 11.33 84.94 58.52 96.59 75.48 91.57 80.34 62.30 58.02 93.53 63.27 57.33 21.28 5.12 70.96 49.70 35.44 -9.77 93.17 92.92 75.29 16.83 33.81 36.15 97.88 68.38 80.55 89.36 91.76 40.79 45.62 78.81 65.50 7.99 97.58 4.28 66.86 84.17 69.37 61.99 80.83 28.28 88.97 99.94 78.48 76.28 35.52 98.31 22.60 60.73 14.15 52.10 65.08 37.88 53.10 38.79 23.02 9.77 12.12 50.74 1.16 1.48 6.93 26.09 72.33 8.93 69.37 4.31 16.31 16.71 45.97 0.67 34.15 80.88 58.74 93.05 48.13 85.86 82.28 48.62 5.58 6.43 1.62 59.66 33.79 37.30 16.37 75.81 54.51 36.86 25.34 13.03 87.58 32.96 72.98 43.84 60.43 44.83 7.53 48.85 25.68 87.85 75.51 58.82 67.71 11.68 97.12 4.46 23.50 51.29 79.17 12.62 28.17 91.73 61.16 98.64 38.43 -64.53 12.98 46.42 82.83 78.89 31.17 16.71 22.80 62.12 44.00 77.47 16.74 92.90 13.80 74.40 53.51 0.75 53.75 27.60 72.27 38.60 24.26 94.78 32.97 89.74 84.04 12.28 52.31 87.18 97.16 87.82 18.95 76.04 82.77 50.10 89.97 57.47 47.75 59.48 87.58 2.80 30.81 86.99 75.37 92.24 69.75 30.33 55.69 22.75 87.86 68.28 72.37 22.75 55.63 35.67 21.57 17.13 12.98 28.22 28.67 4.19 38.60 60.17 52.26 97.33 4.91 57.57 40.73 20.77 35.96 2.90 9.78 30.51 67.31 96.80 53.30 58.44 60.34 5.16 71.92 51.63 68.39 52.06 16.11 56.03 36.85 74.09 66.03 6.42 62.19 21.07 16.81 10.79 7.94 25.43 58.16 68.85 75.29 90.27 93.37 -84.00 97.09 53.85 98.13 7.00 87.67 11.96 76.00 76.63 39.67 64.08 17.44 94.83 67.67 96.80 45.56 68.56 3.96 60.62 28.91 83.33 66.63 96.17 36.88 28.49 55.31 34.77 10.94 52.13 81.14 31.34 87.50 97.60 3.58 14.32 42.94 5.87 99.29 56.25 78.17 24.46 75.18 42.73 3.59 71.86 46.75 59.43 16.00 61.99 96.01 44.85 96.52 33.16 24.55 95.40 2.70 3.37 19.09 68.94 52.18 68.52 30.54 74.55 91.89 72.07 80.21 15.64 1.75 69.83 72.55 32.95 32.18 28.42 98.28 72.56 67.34 23.22 47.94 35.88 24.92 59.02 31.84 17.22 97.45 40.07 92.04 49.22 37.37 12.23 36.86 34.06 49.50 11.51 60.82 27.16 52.66 68.23 42.24 56.46 25.05 -32.80 27.35 34.38 38.79 85.75 90.49 8.67 7.67 82.45 66.26 25.69 85.21 51.60 73.35 94.65 44.54 62.02 20.14 36.83 52.36 1.08 57.49 7.55 85.98 60.91 84.48 44.21 13.55 49.48 63.68 57.56 33.65 55.39 90.02 96.14 31.87 19.27 9.27 59.16 42.04 82.88 42.01 62.20 88.09 45.81 60.73 40.68 57.84 61.50 27.46 74.53 46.48 11.65 21.71 54.95 79.42 83.92 57.27 76.88 13.14 30.68 97.08 92.06 20.91 27.59 86.06 70.73 5.56 69.11 22.90 37.33 5.24 37.51 11.23 27.37 6.83 85.43 85.35 39.13 86.30 13.46 49.49 89.92 21.56 41.37 67.89 97.47 31.49 79.44 75.92 2.26 24.57 86.35 41.57 23.04 49.07 28.61 20.36 37.96 4.84 -35.27 35.98 80.77 3.56 57.04 16.59 30.01 59.08 37.16 14.87 78.63 10.14 30.73 16.37 90.95 86.09 50.42 61.50 47.75 22.05 50.28 94.53 49.23 27.28 73.62 31.56 66.22 15.75 67.17 26.27 57.78 33.16 24.53 77.27 5.92 6.19 83.29 23.09 99.15 57.96 4.16 83.47 74.53 71.64 90.57 17.00 30.45 57.27 86.96 5.13 51.57 10.11 36.59 39.10 15.99 6.22 64.62 10.25 45.14 51.32 54.27 72.66 47.26 71.22 30.12 1.93 98.09 44.10 82.44 48.63 41.38 97.80 16.72 81.66 93.85 77.33 94.84 19.23 94.87 77.23 59.69 46.83 22.28 24.77 87.92 25.86 63.48 63.11 41.71 10.85 11.35 5.70 95.99 66.55 0.44 61.36 40.06 52.67 61.38 86.66 -60.66 82.35 65.77 25.02 2.37 46.85 1.22 10.04 88.35 7.47 93.37 12.23 21.07 73.25 5.83 94.39 2.01 27.35 20.49 63.92 70.00 24.24 59.27 35.75 35.78 1.60 39.02 68.90 45.88 85.25 6.82 24.77 73.22 84.67 21.58 75.51 71.26 13.23 38.10 35.93 44.04 61.88 40.62 20.98 39.24 76.52 63.03 75.35 48.98 40.53 81.72 15.86 47.46 97.36 34.78 86.91 12.03 94.87 58.34 56.21 57.00 58.96 95.49 18.44 79.32 40.12 14.30 30.21 50.40 81.04 95.34 19.16 93.92 62.19 55.59 21.44 5.20 38.51 94.31 50.59 43.59 7.81 5.04 83.51 8.77 87.91 36.60 65.21 71.71 74.83 84.58 24.71 53.22 92.81 7.38 30.25 60.19 94.50 18.35 84.31 -42.42 13.53 73.70 78.19 90.46 77.86 45.66 45.06 39.66 99.73 29.11 8.17 43.24 64.99 83.53 5.53 65.80 7.28 44.49 14.19 23.03 83.20 81.63 58.40 8.36 30.49 9.87 50.11 27.90 0.04 95.34 89.53 12.45 53.17 13.83 28.72 20.65 93.66 90.87 3.33 94.70 46.12 4.29 2.48 31.07 74.89 18.64 67.68 53.32 56.25 72.95 49.45 79.88 19.02 38.21 70.67 25.28 0.50 88.91 49.17 0.74 54.69 24.52 0.46 85.06 8.45 68.78 74.52 48.91 13.01 91.62 91.87 19.05 84.94 48.81 69.62 32.97 71.25 83.16 64.45 39.06 26.37 69.53 40.43 75.36 6.93 19.52 75.43 93.28 5.56 98.10 82.43 44.24 93.64 16.93 3.94 71.25 21.09 8.97 50.91 -92.40 53.68 65.22 97.08 66.32 74.73 61.69 90.49 75.01 78.39 77.94 87.59 52.76 72.70 42.43 35.32 77.77 98.04 79.87 55.08 66.19 51.39 47.96 8.09 54.57 39.07 47.94 36.74 56.18 57.26 82.50 19.10 2.69 71.95 41.86 34.87 94.44 34.24 24.75 7.72 23.60 12.73 2.27 1.60 52.63 25.49 65.70 66.21 69.54 55.03 7.07 74.56 14.22 34.44 72.96 31.33 51.71 0.76 10.47 60.00 24.72 90.13 36.87 94.15 56.67 43.73 86.61 1.96 13.59 24.53 9.22 7.73 91.46 73.38 84.17 40.77 16.60 30.34 40.26 12.89 49.19 40.52 52.35 68.66 47.87 33.62 7.12 22.82 73.11 74.23 87.28 19.41 44.92 95.24 21.06 23.71 98.74 36.45 40.95 92.04 -71.39 88.91 56.97 18.14 74.95 89.08 51.89 80.55 83.36 51.88 40.79 49.32 16.98 57.75 11.28 95.63 15.23 31.49 53.84 76.39 83.08 99.47 9.14 58.70 12.58 87.05 72.64 26.87 58.68 30.39 13.86 50.12 2.69 54.89 23.52 49.86 40.22 65.40 11.78 31.24 42.43 73.17 94.76 24.40 82.79 79.11 17.05 85.79 25.52 98.93 21.84 30.35 65.64 32.85 38.30 52.08 59.54 71.63 63.69 15.94 74.84 37.19 55.67 70.71 5.03 92.47 72.72 29.02 55.52 82.49 77.25 10.86 62.93 42.98 46.70 15.71 84.48 91.68 68.35 43.95 47.61 69.87 31.71 45.04 39.82 74.75 32.35 30.29 91.98 50.41 22.43 20.65 26.94 41.37 14.49 32.54 4.23 13.65 88.94 59.44 -54.31 14.66 61.08 43.96 2.94 71.42 25.26 9.24 62.33 10.71 21.68 33.42 33.51 18.88 41.55 78.77 95.80 68.67 12.60 99.58 2.33 67.97 38.84 41.45 2.52 9.37 44.64 14.05 36.94 50.37 98.84 63.57 35.18 24.18 86.81 50.27 50.59 8.63 14.46 48.03 64.99 40.00 18.32 85.60 38.39 50.37 8.89 57.74 33.45 62.44 30.98 31.48 49.72 36.55 8.23 64.95 95.62 85.25 90.48 65.82 95.86 50.12 84.95 92.72 79.80 25.01 92.78 63.15 79.46 22.40 48.98 63.85 5.90 13.86 15.47 21.07 0.07 0.82 81.00 91.21 29.74 4.07 88.97 62.09 7.82 34.88 12.74 3.72 53.39 67.51 67.92 94.63 18.85 46.01 56.35 12.07 78.42 62.98 25.41 85.02 -81.52 75.80 2.11 92.55 11.31 70.48 87.89 51.39 68.30 87.64 97.73 74.91 29.75 52.29 10.58 93.88 55.76 66.55 87.70 76.06 48.57 36.89 44.73 39.74 99.12 69.73 10.12 5.51 22.45 68.66 37.47 68.95 21.04 90.88 49.85 63.97 3.07 83.61 83.68 68.75 66.81 51.69 95.22 14.98 23.48 55.24 73.61 64.35 31.22 82.20 83.25 95.46 36.02 11.75 32.04 60.19 76.66 25.04 50.88 62.80 87.50 48.16 34.22 53.54 20.23 56.04 81.44 90.50 60.82 12.40 57.82 29.40 1.60 46.14 80.26 26.49 38.15 76.45 1.52 65.44 52.38 48.00 5.67 3.52 88.16 47.51 69.13 16.49 42.31 15.25 93.13 92.48 4.71 83.85 85.33 86.70 29.52 78.96 56.15 67.18 -40.86 43.67 4.96 83.92 13.96 18.71 92.11 41.94 23.66 68.38 68.43 81.92 71.26 1.31 92.79 16.61 82.66 50.95 99.00 39.37 73.01 61.18 41.05 63.09 87.39 66.76 66.61 46.93 77.53 73.09 36.42 91.61 77.08 56.67 73.86 22.42 24.20 26.19 42.11 92.85 99.18 6.07 33.71 40.87 36.66 3.95 28.81 41.47 8.16 1.59 56.12 49.21 25.62 56.31 80.03 68.42 44.27 50.00 91.82 65.19 95.31 18.43 24.30 98.65 48.90 28.97 98.85 90.77 16.33 88.49 98.69 95.01 51.93 97.89 89.94 66.77 6.57 22.93 13.38 78.63 22.76 3.71 75.51 14.67 6.47 41.42 21.91 78.36 27.95 1.98 35.63 90.07 10.13 64.92 96.48 0.00 62.00 8.24 37.51 68.95 -4.08 33.16 47.26 38.22 15.68 98.38 34.19 66.23 55.79 33.74 31.97 20.97 85.92 89.01 3.31 14.68 95.20 56.05 8.26 41.07 46.61 25.97 31.44 9.56 57.00 16.67 83.00 7.66 52.86 41.38 30.31 68.38 52.82 6.80 40.00 81.28 83.65 0.48 60.08 72.90 92.94 64.11 31.95 85.22 47.21 80.79 74.47 87.52 73.21 95.04 60.31 40.05 34.15 28.36 81.78 71.29 44.86 42.28 40.15 60.19 62.55 85.42 52.06 13.83 67.04 6.83 4.29 20.60 27.80 36.58 27.16 84.75 11.73 28.96 18.70 23.50 19.50 6.89 76.35 34.65 80.85 49.33 76.37 91.96 24.91 33.12 0.59 35.87 55.64 33.22 73.71 6.30 57.36 48.92 53.52 31.48 74.07 8.19 18.90 54.25 -89.86 68.11 58.41 37.88 13.13 84.02 66.70 40.63 31.96 0.16 93.72 2.65 90.57 60.68 2.16 35.17 47.66 24.55 7.36 25.69 27.87 63.99 38.26 1.69 86.49 22.90 42.97 67.46 84.60 47.14 49.65 60.26 24.63 12.74 17.74 98.82 14.76 5.52 47.14 81.60 77.79 28.38 1.35 46.25 64.77 15.14 75.98 70.73 72.45 63.85 41.77 16.24 20.01 18.89 20.56 42.36 64.43 29.36 54.31 20.53 78.38 3.27 46.52 91.55 1.95 22.04 67.80 80.25 97.38 78.76 53.30 64.31 44.70 83.69 77.60 21.73 92.97 80.70 5.26 86.00 75.16 55.25 34.49 45.58 73.07 11.43 33.23 3.09 55.65 41.53 58.10 3.04 49.83 22.52 51.68 93.32 65.42 60.22 21.26 5.35 -64.57 5.12 70.78 74.46 26.85 12.37 48.33 28.91 10.61 72.12 27.33 80.97 66.10 48.77 21.42 32.90 6.31 13.85 45.27 29.30 39.12 29.18 89.04 53.19 72.24 54.13 94.42 40.74 31.34 49.84 48.39 73.99 60.79 3.63 75.02 5.05 76.52 21.23 50.89 30.97 22.82 72.39 46.18 53.62 62.98 14.37 13.47 68.16 71.22 69.69 36.27 82.78 80.63 2.69 50.97 49.20 84.59 1.30 70.91 80.56 89.34 58.84 65.89 51.16 89.46 0.60 10.66 39.19 94.72 61.99 87.31 97.94 82.15 26.08 45.77 98.24 54.05 83.71 87.38 18.30 36.62 69.99 21.07 2.90 2.95 60.49 78.47 4.62 65.30 75.42 75.64 7.26 34.21 84.75 52.76 2.00 14.86 71.33 30.97 65.26 -8.99 61.05 64.67 49.00 62.88 58.38 63.37 62.26 44.83 23.99 33.49 88.24 51.13 52.77 39.35 14.83 48.80 7.32 1.30 76.01 76.07 69.63 72.85 98.78 60.63 36.27 0.12 97.34 14.94 84.41 88.51 97.48 60.17 6.55 97.97 85.07 27.38 44.59 84.00 9.89 95.05 98.41 57.48 59.45 66.51 28.17 31.69 88.31 1.73 69.86 23.77 57.76 0.01 32.63 7.68 87.96 69.58 67.46 83.72 56.88 23.64 96.39 65.79 65.84 2.32 67.72 83.30 2.91 39.69 38.81 23.23 26.54 53.89 47.95 25.73 30.63 2.08 53.30 14.28 64.06 96.38 41.36 18.45 47.98 97.91 10.50 46.71 49.24 63.27 32.88 9.70 8.18 99.40 16.61 14.82 69.71 61.17 82.03 76.68 18.44 -10.18 71.16 21.51 92.59 44.31 76.99 42.34 27.65 98.72 35.01 61.81 21.27 3.16 80.20 1.60 22.03 7.27 76.15 19.50 21.10 20.77 54.82 35.75 92.68 39.24 29.43 33.34 27.42 3.38 80.10 90.70 84.75 85.72 86.11 8.63 51.89 28.40 23.55 77.65 16.01 33.96 49.99 75.27 64.79 8.48 56.62 81.89 13.56 43.61 48.30 64.10 80.58 40.02 11.73 12.57 93.39 7.51 30.55 69.98 13.09 74.19 58.37 81.91 69.61 93.46 68.46 23.14 84.79 1.24 36.91 6.14 50.14 50.63 37.97 41.57 80.92 38.74 99.20 63.10 79.70 6.05 78.13 21.04 3.35 43.05 23.08 61.62 74.44 43.09 36.13 64.82 48.97 35.79 77.10 96.71 12.93 66.68 88.32 67.71 8.51 -31.20 94.58 36.19 1.81 29.02 78.21 75.02 96.35 63.75 60.58 3.24 73.06 62.69 35.63 0.71 57.43 79.50 71.78 86.69 31.39 40.09 53.78 51.42 0.14 48.07 4.74 52.23 17.94 29.62 76.15 24.10 45.13 83.26 71.69 66.76 56.67 65.57 53.32 48.11 79.13 10.51 25.64 35.25 97.60 36.88 88.62 20.80 30.39 61.33 83.35 41.30 16.05 11.25 8.85 7.51 28.91 82.88 11.90 29.71 91.64 95.12 30.85 34.24 80.94 57.72 71.49 96.67 54.85 27.48 41.88 36.46 4.66 27.31 37.37 98.04 89.36 64.59 62.86 69.34 23.75 71.45 49.68 28.38 10.64 23.02 28.84 3.95 43.76 47.45 62.23 64.33 30.40 40.32 11.98 50.30 66.13 2.21 86.20 13.87 79.57 -92.74 15.71 19.48 14.65 72.50 28.11 96.47 67.20 76.27 13.28 11.70 77.23 18.46 55.48 79.37 90.99 32.51 33.58 96.04 79.43 26.15 6.28 52.45 82.18 28.12 29.54 69.92 23.09 90.79 75.12 67.52 6.14 65.18 7.16 43.14 34.90 97.57 74.83 59.71 38.51 4.88 40.93 2.22 1.68 98.94 13.35 85.55 92.08 13.75 9.03 91.42 56.82 11.10 55.23 1.00 85.42 98.16 80.72 89.91 36.12 34.58 10.21 58.65 38.51 62.33 72.70 47.51 70.38 88.89 24.89 18.25 70.28 65.45 90.38 30.27 27.68 86.40 9.32 23.24 11.47 53.21 85.42 83.16 6.55 18.87 2.76 66.02 35.67 9.00 91.16 11.26 85.80 64.59 19.36 59.72 50.79 91.48 79.07 19.99 43.85 -99.18 73.54 52.64 7.57 73.40 20.33 78.26 23.78 12.23 81.43 0.21 42.18 82.73 11.33 29.28 29.73 60.09 22.75 83.84 84.37 35.46 8.12 99.52 39.28 52.01 39.60 88.80 66.62 27.25 8.01 63.42 98.02 24.01 15.78 50.90 47.98 51.39 6.18 77.98 15.95 10.94 5.13 63.93 62.46 35.99 45.32 77.27 51.53 82.13 71.27 42.28 38.34 36.02 39.26 65.65 48.07 46.60 47.38 38.02 99.33 66.60 42.52 97.63 20.55 96.10 80.29 52.93 71.10 28.68 49.70 50.72 95.09 92.64 80.34 30.05 3.99 37.02 89.84 6.78 9.52 44.83 6.87 38.05 9.41 24.50 54.08 75.54 69.11 25.57 67.90 66.19 96.24 69.20 6.83 94.00 31.03 64.90 9.71 89.87 82.64 -80.13 91.34 34.04 79.21 3.35 31.09 30.46 72.72 31.33 28.37 53.39 8.69 96.86 54.34 73.03 92.15 87.12 94.06 75.05 76.57 79.42 3.33 13.11 89.59 60.40 84.12 8.20 48.90 70.76 51.13 12.94 14.18 14.27 86.24 36.82 79.06 41.39 76.06 33.64 30.19 9.10 65.63 32.60 14.94 7.31 53.50 12.15 66.89 66.38 41.26 86.28 83.05 87.90 63.14 85.18 77.19 62.76 62.70 84.52 90.37 60.34 61.10 73.04 30.89 41.42 34.48 81.68 16.04 72.20 86.82 30.28 6.15 67.16 31.74 48.57 93.26 34.88 73.88 43.68 6.77 17.48 74.79 13.32 64.38 95.70 60.66 27.50 88.59 90.43 31.75 36.96 86.14 97.50 84.46 92.34 6.96 27.65 69.14 93.23 84.67 -41.73 94.15 85.50 65.98 43.21 59.12 52.61 45.19 17.69 93.97 44.10 70.69 37.57 58.59 60.84 88.09 45.92 62.11 36.05 80.16 36.40 39.03 26.54 76.88 3.73 25.82 87.95 29.34 69.02 4.38 40.54 21.45 69.36 34.24 73.27 60.08 37.17 53.96 4.30 15.21 49.46 16.70 93.10 39.95 88.87 43.89 51.62 88.91 17.99 95.10 85.92 48.84 56.04 37.50 27.06 0.78 12.67 34.90 29.60 42.08 12.51 59.99 52.61 44.04 73.33 24.27 65.72 98.62 71.99 28.65 63.92 95.64 59.03 51.32 65.72 23.32 89.40 51.43 49.92 94.08 39.11 10.38 67.49 87.37 85.73 77.65 85.48 64.11 44.23 74.23 7.46 22.76 35.63 71.05 5.65 72.37 73.12 21.02 60.92 45.35 -84.30 64.30 47.32 29.34 89.41 35.49 6.72 45.01 49.28 40.22 19.38 61.25 52.67 3.38 18.76 47.61 1.10 13.94 8.21 64.58 48.40 91.20 36.74 35.38 89.29 42.45 51.32 8.90 36.86 31.77 40.32 28.06 44.40 6.03 23.66 40.83 97.71 15.29 83.90 6.69 11.51 88.70 97.93 39.81 60.09 52.52 34.08 4.39 30.73 26.74 43.36 61.29 47.68 28.21 70.31 41.44 13.25 35.79 76.96 76.90 75.39 69.73 93.69 14.61 80.45 58.93 83.21 55.56 34.52 66.36 27.57 29.53 29.36 23.99 2.90 53.40 81.07 84.09 63.10 87.96 75.16 51.48 29.53 33.13 34.15 34.13 9.51 16.80 32.83 70.83 23.61 3.83 61.01 89.83 26.74 40.15 47.88 4.57 55.86 64.13 -9.11 77.28 84.32 98.64 82.89 68.56 70.55 12.62 90.99 58.48 2.86 92.21 81.49 91.04 51.46 67.73 36.02 38.12 69.24 70.19 47.33 62.06 76.05 64.99 33.32 29.51 28.26 16.05 71.91 14.31 13.48 39.58 33.28 39.91 82.31 94.69 9.05 64.12 35.08 82.08 38.14 63.53 56.25 2.04 76.77 90.22 42.90 91.05 41.63 8.39 28.58 87.79 4.26 5.52 31.37 63.90 72.41 55.86 50.49 36.07 89.81 4.40 21.81 24.81 61.24 91.86 19.58 21.47 38.37 86.89 77.36 70.21 88.72 84.17 43.25 84.00 18.23 45.92 90.64 73.56 56.86 9.28 72.82 47.92 90.58 95.07 84.79 33.69 18.28 52.37 25.52 26.82 78.91 46.15 35.14 87.17 85.78 2.91 11.90 79.29 -42.06 32.80 65.02 75.11 73.99 69.48 83.53 24.05 97.38 40.53 44.69 50.92 24.69 65.56 85.33 68.76 73.94 45.15 51.67 22.41 55.80 64.01 15.73 81.26 9.99 69.37 16.31 66.01 84.72 84.79 93.41 36.95 8.05 67.09 4.64 7.49 93.38 34.03 38.53 63.42 72.47 18.94 85.35 12.10 59.69 15.19 81.09 31.06 80.45 8.96 83.53 49.78 86.97 43.37 60.24 82.67 24.04 64.36 0.03 66.55 79.60 99.95 69.10 60.41 75.72 79.30 36.87 79.94 86.84 52.70 28.76 5.28 6.21 81.55 30.03 27.92 53.01 47.19 17.45 1.22 45.51 84.15 96.70 46.24 3.09 27.40 0.23 66.29 25.31 27.23 9.01 37.02 51.72 71.66 17.50 34.09 46.40 9.57 78.64 21.22 -90.17 89.94 6.66 1.25 43.49 62.09 97.05 48.80 93.82 98.88 83.48 34.41 95.31 44.75 95.36 42.73 60.84 5.55 50.39 42.42 82.42 27.16 34.93 17.25 73.56 7.91 98.82 65.91 56.04 17.10 40.90 65.46 33.59 21.62 53.72 44.07 30.23 24.27 92.66 9.18 64.03 69.19 66.95 69.63 69.12 47.57 48.38 9.21 71.97 36.14 23.46 3.66 46.81 98.05 5.88 35.06 78.66 49.70 42.13 39.59 64.67 74.42 50.13 69.05 49.02 85.10 9.50 76.76 23.21 62.48 15.12 6.31 3.64 57.91 33.58 88.20 69.64 77.16 51.88 32.54 26.68 99.41 84.60 1.87 90.96 18.78 55.79 17.49 56.16 64.63 61.57 50.91 32.08 69.84 88.16 1.57 86.14 67.38 94.81 21.72 -64.47 69.35 75.83 20.86 1.67 72.20 67.70 29.66 64.95 56.30 98.43 28.98 88.24 91.37 23.20 43.96 29.08 52.17 71.49 60.17 10.97 83.30 93.41 53.51 15.60 55.30 2.55 25.38 19.08 81.11 92.11 91.33 65.99 93.62 26.14 38.15 73.35 8.48 19.39 87.67 71.70 30.06 87.43 81.73 68.67 37.63 25.52 50.07 9.44 61.28 41.08 0.03 2.77 26.84 21.42 2.07 88.53 80.73 82.25 60.30 75.43 11.23 60.00 96.24 52.49 30.51 0.95 76.39 66.12 45.08 21.51 21.29 25.67 30.90 24.62 61.28 49.08 69.33 5.55 81.64 83.41 36.08 62.91 31.29 7.96 42.16 36.38 30.86 63.68 41.26 41.50 44.30 22.93 46.42 74.08 54.36 48.92 91.69 90.39 1.06 -62.68 58.63 37.84 1.43 23.33 22.75 51.12 91.37 12.05 73.09 98.83 34.78 41.05 36.82 12.33 33.25 1.98 58.91 87.46 72.94 69.75 18.49 18.10 2.88 2.70 65.85 15.65 6.08 34.27 60.83 54.82 74.47 78.96 35.07 23.75 2.77 15.79 99.44 70.16 84.80 71.96 56.53 24.67 37.09 81.91 14.24 56.64 33.78 32.05 30.56 7.27 48.61 74.25 19.41 61.64 9.73 18.42 33.49 56.73 25.17 41.42 84.67 90.35 29.10 25.65 41.95 87.39 5.57 90.16 44.22 95.36 35.29 91.10 90.54 3.84 1.74 62.36 46.03 19.79 32.92 47.12 80.83 94.40 91.99 21.51 4.52 38.39 47.04 86.90 22.15 71.19 26.26 29.78 8.50 48.93 37.37 89.17 90.21 72.23 97.03 -55.53 40.86 60.94 73.02 95.72 66.46 80.26 88.54 72.54 43.64 51.85 90.92 88.77 86.87 57.64 52.83 81.81 63.63 63.14 19.38 19.72 87.76 90.56 24.47 26.34 28.25 10.27 82.37 51.00 63.64 86.83 65.74 29.25 26.75 38.57 40.30 80.81 37.47 61.43 76.37 52.31 66.27 80.14 19.93 26.06 57.82 92.84 64.63 3.45 47.28 45.73 77.36 43.51 92.54 26.35 81.04 91.80 66.01 53.65 5.46 47.84 48.81 89.72 67.78 44.21 40.67 39.44 12.30 58.17 7.24 52.14 79.60 0.23 79.73 80.11 91.14 46.23 51.37 76.83 56.20 46.90 20.64 10.82 79.96 1.14 27.28 91.87 26.74 99.34 77.37 45.02 28.04 10.50 77.17 55.78 0.42 21.53 10.47 27.22 66.81 -38.98 4.58 80.71 37.78 82.32 97.63 73.29 11.60 24.44 51.72 56.36 71.80 35.02 93.30 24.93 87.75 65.97 34.85 19.71 95.16 34.38 16.23 93.09 40.44 87.56 39.42 30.11 59.21 15.05 31.00 30.09 47.92 85.78 24.86 70.38 91.77 93.13 72.13 45.43 36.94 86.33 87.28 43.80 14.85 69.05 10.35 55.05 2.90 96.92 42.56 14.86 85.07 92.74 45.00 31.86 89.38 67.65 27.12 25.02 96.24 93.39 19.69 88.26 72.90 38.19 60.81 17.80 51.38 47.98 94.45 50.22 96.25 97.96 2.71 83.96 68.96 1.91 63.86 47.03 12.13 73.45 69.51 34.39 45.18 0.47 79.23 86.27 13.23 10.94 81.71 60.26 52.23 75.91 93.26 13.48 11.64 72.47 19.40 39.89 42.98 -41.22 49.09 34.14 39.82 78.82 37.59 33.44 67.82 65.38 81.18 44.01 53.82 16.50 85.00 95.11 44.19 73.98 32.86 32.89 30.90 75.57 53.91 49.38 2.04 98.86 70.96 96.12 63.98 24.08 59.03 41.94 33.87 19.19 43.29 30.85 89.19 52.43 23.26 33.08 39.54 67.90 49.11 32.04 71.40 17.63 93.46 89.97 31.21 51.65 16.98 5.46 96.33 69.01 10.63 25.32 34.41 36.88 91.96 57.21 56.36 26.70 52.80 11.13 72.36 94.89 53.72 64.22 42.42 43.82 76.83 7.88 69.24 11.37 65.32 1.48 81.00 23.91 87.15 73.92 93.33 62.70 40.83 17.05 58.43 23.90 74.77 52.32 32.33 96.55 96.69 0.15 18.06 85.52 30.18 36.56 31.84 43.85 3.63 41.03 2.62 -10.66 27.44 26.91 3.46 91.24 63.26 42.68 41.47 69.48 73.03 81.01 31.76 41.21 50.09 58.44 25.87 53.68 50.44 52.51 90.94 50.73 54.64 51.91 10.54 79.83 96.91 7.52 73.22 55.75 69.13 72.94 74.79 63.89 50.60 38.19 35.32 82.40 7.37 13.03 74.72 98.86 51.87 60.33 52.08 28.05 82.46 52.90 22.89 91.27 24.08 90.52 95.13 93.83 87.08 65.95 95.67 10.50 8.15 65.90 29.32 5.12 39.04 4.92 62.55 92.27 96.82 55.82 95.59 6.26 80.71 73.96 61.49 99.33 94.64 6.45 8.72 24.76 31.90 9.48 51.02 46.68 78.99 4.23 95.38 36.88 53.64 0.89 51.11 4.58 22.47 8.89 86.58 47.85 34.39 90.14 54.88 8.95 58.05 5.27 12.56 -5.51 77.93 57.63 16.11 45.72 24.52 34.86 64.07 0.80 73.36 52.33 52.03 95.68 61.99 54.27 0.93 89.94 51.33 66.90 37.31 68.94 94.48 56.26 28.27 74.14 1.37 34.19 24.86 15.06 72.04 19.12 59.90 27.03 13.39 27.11 91.46 19.57 54.22 6.66 13.25 4.86 54.98 33.42 83.08 18.33 12.15 48.92 78.45 49.42 55.53 36.49 23.69 77.88 47.51 21.41 26.72 36.81 20.28 51.08 29.99 59.47 4.06 41.69 90.10 78.98 94.79 24.48 54.27 78.11 67.43 68.95 18.46 28.06 66.20 97.28 61.11 15.76 18.42 33.13 34.86 39.16 63.65 73.72 99.91 10.55 53.39 38.02 62.26 44.25 21.24 90.31 89.24 50.12 94.47 74.67 35.39 16.33 7.26 40.78 3.98 -23.57 64.62 35.25 76.57 71.05 62.53 2.76 20.57 64.42 29.49 96.77 23.18 11.40 14.87 90.63 44.12 81.53 95.27 59.67 76.18 65.71 62.79 4.33 87.59 6.68 35.10 65.04 38.01 4.00 49.46 99.32 41.49 88.33 81.99 40.46 67.87 23.92 96.23 63.48 56.06 87.01 85.56 84.81 7.72 32.51 72.57 90.20 93.19 78.21 4.47 59.52 78.69 23.18 14.59 2.50 66.98 25.43 95.19 8.85 77.61 83.93 11.63 10.27 17.66 1.56 89.76 47.53 95.12 84.58 39.87 35.57 14.06 46.12 51.87 18.17 27.01 68.55 39.68 70.76 1.23 51.99 56.14 87.66 73.19 57.25 81.01 30.51 6.05 1.52 29.68 48.28 17.70 95.62 73.18 27.82 31.18 44.98 11.47 14.29 6.96 -16.09 45.34 39.87 26.34 37.91 38.35 96.41 78.63 33.89 27.87 72.76 65.97 76.39 72.73 6.77 86.52 39.04 99.39 33.44 89.96 87.01 95.50 27.72 80.15 37.55 41.56 22.38 73.74 49.27 73.29 59.88 68.12 18.14 53.14 78.97 65.42 68.52 0.28 88.03 46.02 77.92 10.77 78.59 71.12 92.15 75.30 0.59 85.51 56.62 48.33 79.78 74.71 69.33 94.69 17.61 94.78 59.43 1.10 90.36 73.85 23.48 61.89 43.27 90.97 70.71 29.93 8.73 73.04 29.08 6.62 32.23 81.20 25.86 27.09 44.21 19.01 28.36 11.74 17.09 85.57 46.46 28.06 16.70 32.70 47.66 78.20 35.49 27.01 75.74 58.49 0.00 18.46 90.76 38.65 96.23 97.22 78.79 21.26 35.04 21.39 -23.76 58.83 84.35 6.83 10.91 44.38 93.42 20.23 93.52 24.24 66.72 85.23 89.25 23.19 11.97 62.35 20.70 27.30 28.87 70.29 29.11 56.11 15.92 40.11 25.19 91.56 51.05 18.70 73.44 35.41 35.93 83.23 38.38 7.17 48.10 69.44 86.51 31.13 63.18 89.83 87.33 84.84 9.41 66.38 2.13 56.93 72.61 19.81 58.12 7.82 75.28 39.87 29.44 56.06 93.26 96.36 55.68 54.58 55.14 68.23 17.44 15.85 86.16 20.67 10.74 10.45 10.49 98.58 8.53 90.80 46.26 43.21 92.36 9.31 68.81 25.77 26.48 79.19 98.80 43.41 21.61 73.77 44.87 72.25 42.77 61.77 78.76 46.75 45.01 1.76 92.03 70.72 2.04 76.07 33.96 78.99 72.17 78.12 27.32 95.05 -93.26 84.24 51.83 43.92 57.82 33.79 25.49 1.27 8.85 41.01 7.22 96.22 92.35 47.99 74.39 49.26 3.08 27.97 64.33 32.27 28.33 95.80 44.98 95.69 74.18 69.77 15.90 81.53 6.00 63.91 61.54 86.40 68.21 67.80 0.72 81.06 44.14 23.43 23.04 57.59 14.63 61.44 93.36 30.97 51.73 9.46 0.46 0.14 23.48 89.77 51.90 80.47 0.49 59.47 90.79 75.22 59.91 86.79 18.54 30.66 84.89 7.47 0.05 52.60 10.83 8.74 63.49 93.69 94.47 94.55 70.65 36.45 69.42 60.39 81.51 54.88 74.15 66.63 7.20 89.78 64.82 20.18 31.13 0.32 10.06 13.03 11.95 39.30 15.97 3.15 87.51 18.08 45.08 54.40 95.64 36.70 86.06 31.76 28.19 44.29 -42.34 25.13 67.25 3.38 43.06 82.18 55.92 47.73 46.85 60.48 13.85 92.71 96.84 33.01 36.48 39.71 73.78 48.86 13.02 8.30 72.48 45.03 78.78 66.00 59.15 14.03 70.43 12.72 86.60 37.62 6.80 71.22 5.21 27.57 47.55 85.39 6.01 28.43 32.15 50.34 98.33 25.57 59.31 98.35 67.02 86.82 44.71 74.87 76.39 1.95 12.32 77.09 16.98 97.18 90.79 24.40 46.14 67.19 52.96 67.54 31.43 10.97 54.11 15.88 68.91 10.40 72.87 16.67 55.85 94.36 42.37 81.99 5.59 38.28 20.13 49.81 11.13 27.51 57.32 69.01 91.12 39.21 83.91 8.52 85.84 39.43 84.14 75.44 53.93 34.90 89.78 88.81 48.79 56.28 14.86 77.35 98.74 6.64 16.50 69.32 -93.61 85.97 80.52 15.78 47.15 64.98 56.51 77.28 23.58 55.69 55.22 9.56 67.47 23.70 84.42 53.04 58.27 77.86 82.39 46.42 62.64 47.67 99.53 37.72 17.11 48.07 95.91 25.26 21.33 81.90 25.98 22.49 15.13 32.16 6.43 80.38 28.61 53.34 38.31 44.70 51.96 56.53 71.84 55.85 1.15 39.58 17.60 71.92 9.50 68.86 34.50 1.82 94.84 21.77 69.81 41.39 16.50 55.58 0.17 73.93 59.63 69.17 97.56 13.80 19.69 76.78 66.44 48.58 48.25 79.26 10.42 70.70 89.52 21.59 53.26 87.50 19.66 97.45 22.22 44.18 92.88 82.55 39.23 23.15 41.07 67.01 56.43 87.60 89.38 95.49 72.45 74.25 97.78 53.72 98.00 82.21 34.73 7.49 56.29 14.50 -36.64 24.36 98.32 39.84 82.74 22.99 72.45 13.67 99.76 3.29 35.12 43.41 7.74 48.31 37.33 57.57 35.75 4.35 27.23 56.63 67.54 9.56 50.21 69.32 12.08 66.23 88.11 68.73 1.23 10.71 52.90 96.89 96.44 29.38 63.86 22.15 5.29 86.52 27.93 77.12 18.56 96.38 81.23 65.30 88.91 51.64 58.85 50.18 35.89 10.33 58.24 64.26 52.97 20.99 84.77 47.42 79.91 67.59 95.97 85.12 93.68 66.55 71.55 56.35 50.71 57.29 9.78 58.89 63.69 93.87 84.95 47.00 23.15 29.94 61.69 47.33 99.41 82.41 20.62 42.46 91.69 13.22 4.57 88.95 7.84 46.51 52.16 45.01 99.19 81.99 19.59 5.45 73.03 11.25 73.23 62.37 80.40 77.33 81.70 91.66 -12.54 39.20 16.33 93.39 14.86 79.77 48.06 0.09 89.46 47.16 41.02 41.07 57.59 1.11 91.07 18.95 92.60 22.37 95.45 19.79 68.67 3.47 69.14 76.73 53.07 2.37 98.69 60.68 74.52 74.59 26.49 8.22 23.93 30.38 35.30 85.68 6.26 65.38 64.60 38.50 59.42 16.10 16.71 54.19 25.79 97.80 27.18 95.27 90.77 78.21 88.59 55.01 14.12 88.94 57.60 11.91 27.65 31.09 79.86 4.52 51.70 38.62 95.33 10.54 87.23 87.38 4.21 57.31 7.51 57.14 10.09 14.67 76.63 64.88 60.85 97.47 89.26 94.03 79.42 65.58 88.90 35.58 5.92 14.09 83.05 34.96 23.91 56.90 59.03 90.50 57.58 98.28 47.44 66.14 89.55 51.99 56.98 84.30 40.22 77.65 -19.97 54.69 3.76 27.74 98.63 10.88 57.01 22.02 70.36 45.36 49.17 26.90 64.55 24.92 35.11 61.63 17.71 12.32 32.03 26.44 24.60 95.16 76.43 57.68 6.36 68.04 37.70 76.55 51.06 62.27 20.62 29.09 68.07 6.93 59.93 19.33 27.01 75.48 31.67 85.46 50.81 14.96 94.48 88.03 11.18 19.26 91.65 25.27 27.57 88.54 95.36 47.24 7.30 42.70 18.40 79.89 20.89 60.22 60.83 23.92 74.21 91.75 41.33 38.71 80.27 88.67 82.26 56.28 95.35 20.25 50.91 64.35 42.05 23.12 43.25 11.23 74.94 8.90 19.56 78.88 87.58 12.86 74.26 82.60 16.45 80.40 99.49 42.61 65.57 99.83 63.64 22.18 9.27 10.39 32.25 26.59 17.82 22.78 87.01 57.65 -86.83 88.48 3.22 8.43 77.50 77.22 16.95 18.98 71.42 73.58 40.60 47.94 10.81 51.11 12.48 96.98 61.85 43.44 20.48 0.13 26.10 12.66 38.53 71.52 45.73 50.01 2.84 43.72 4.61 60.80 34.60 12.95 82.11 44.48 52.84 26.64 58.42 37.52 87.35 64.65 72.58 21.26 21.54 82.55 96.45 50.02 85.86 23.46 74.26 32.16 33.12 35.02 91.69 11.72 74.27 76.53 99.72 96.86 79.59 49.85 14.91 81.12 62.43 65.57 20.86 12.83 58.64 58.46 98.13 91.85 66.34 90.52 49.63 36.55 89.36 96.85 72.59 34.84 7.09 1.66 72.20 2.69 38.45 8.95 32.39 44.46 14.22 30.62 82.15 49.22 58.00 72.01 56.60 31.80 69.81 69.20 43.63 70.27 81.99 25.95 -80.13 48.31 94.40 45.04 56.47 80.42 42.33 72.57 57.89 97.33 63.15 97.50 98.00 79.31 66.95 89.36 25.17 92.29 80.27 12.61 66.35 23.29 12.75 22.98 77.64 83.51 71.59 38.36 93.08 2.76 33.54 5.92 51.92 69.00 64.55 56.98 25.59 35.22 6.40 80.76 83.80 18.09 88.66 76.37 86.91 45.41 81.11 60.93 11.23 77.63 77.57 70.53 84.69 78.27 42.32 49.78 36.92 5.57 97.85 52.76 74.32 53.72 96.58 10.35 86.14 85.50 24.49 98.07 38.16 15.76 62.62 18.47 70.68 85.88 92.63 45.85 74.82 17.68 83.48 9.41 1.60 6.26 93.68 70.21 95.69 26.53 0.71 56.07 28.22 11.81 80.76 2.31 20.92 24.16 81.49 99.62 73.71 34.71 19.89 48.61 -59.33 68.70 82.76 63.17 78.19 19.42 17.84 13.55 68.43 37.39 19.51 43.46 63.23 49.97 77.92 37.89 30.51 88.32 74.39 73.95 35.28 89.92 70.95 61.33 71.94 58.12 38.20 30.07 9.84 92.48 34.26 79.12 16.62 95.29 71.81 89.56 71.86 55.71 68.65 51.10 59.22 11.17 66.68 27.82 18.52 51.36 87.66 40.25 5.58 67.00 71.52 80.50 74.20 89.03 47.46 32.69 36.78 24.49 81.51 92.93 93.99 28.14 47.51 78.18 92.62 24.18 70.74 11.88 16.91 37.26 67.62 76.42 6.22 70.29 14.96 44.12 58.12 59.72 98.92 27.73 36.54 14.67 18.03 1.11 22.88 33.20 44.08 36.50 14.98 20.84 20.09 28.14 29.11 27.43 81.10 15.03 53.04 65.54 67.42 15.19 -40.04 84.37 6.87 99.23 11.73 34.59 88.77 1.21 88.95 85.62 0.09 17.63 88.04 87.27 72.25 44.68 61.50 93.96 1.93 43.49 19.83 90.97 9.06 17.47 31.88 61.45 32.23 14.46 13.44 93.84 21.53 38.36 35.07 71.70 51.86 59.01 61.03 70.32 81.13 97.96 70.70 50.37 88.53 55.67 20.35 64.80 83.23 69.06 18.97 62.78 28.82 89.51 47.00 22.89 60.69 8.86 39.08 92.51 15.26 52.56 85.01 74.24 25.06 23.36 20.47 9.00 67.79 75.43 64.12 2.28 57.90 1.91 65.32 41.57 38.66 94.64 76.23 76.21 98.51 94.59 7.56 30.53 84.88 28.32 47.94 55.81 98.84 1.65 27.15 61.77 49.03 9.60 63.84 23.68 98.41 30.43 15.40 92.27 56.61 79.21 -93.06 79.28 41.02 60.78 84.95 49.72 75.28 2.67 9.30 40.05 80.79 31.50 58.21 16.21 10.75 23.54 8.91 61.04 59.47 21.64 77.75 4.25 12.95 86.98 78.34 98.63 28.61 35.80 97.58 78.41 53.48 17.76 85.01 61.31 66.84 47.04 35.04 27.85 60.32 75.42 27.06 96.35 78.73 47.76 54.95 70.36 11.41 74.15 16.45 34.78 65.97 53.40 13.32 81.10 15.33 36.40 0.59 57.12 48.94 17.01 88.58 67.48 52.97 28.42 41.52 93.38 7.94 32.17 22.97 8.31 17.56 85.10 84.36 59.35 88.38 72.55 84.52 98.64 81.23 71.49 77.49 87.35 18.74 32.03 91.17 42.31 36.78 25.29 59.77 1.54 38.57 34.95 70.31 75.37 38.39 94.26 59.51 62.71 31.21 28.35 -10.73 86.52 55.84 59.53 30.87 76.96 25.89 86.87 54.78 94.85 31.53 61.12 26.72 8.44 83.16 14.80 99.65 91.86 22.52 35.46 61.23 56.75 82.36 37.06 45.53 75.98 41.35 47.57 38.71 90.32 26.44 92.46 72.20 69.01 21.71 64.17 24.48 71.08 22.81 45.45 84.84 6.84 76.61 79.28 11.25 99.06 22.69 98.81 12.24 40.81 19.21 53.18 98.75 59.93 24.61 80.23 49.71 48.64 41.45 87.17 90.90 85.19 22.38 39.61 68.12 32.90 81.23 57.27 36.57 97.96 75.61 95.20 52.18 25.06 68.53 36.24 88.73 50.21 54.77 63.02 8.89 21.00 82.37 9.88 79.50 71.22 83.53 93.31 7.33 8.75 52.77 26.74 69.67 38.66 34.55 82.31 40.31 37.20 13.77 3.91 -31.11 22.60 25.16 94.27 40.48 57.68 69.97 52.40 0.52 63.14 26.31 57.03 50.61 43.10 44.00 20.98 54.15 50.58 42.66 2.83 79.22 84.54 54.40 43.35 77.63 48.37 61.16 31.14 7.63 71.20 86.20 84.37 14.75 60.94 98.34 78.76 38.14 63.48 90.31 59.85 83.58 58.26 53.77 85.63 20.43 92.80 16.42 56.33 27.82 0.95 13.00 50.39 87.32 41.79 3.74 91.99 71.39 35.56 56.71 25.54 46.47 78.08 40.39 39.88 30.77 78.94 68.84 15.84 78.45 38.89 7.28 71.45 48.22 95.72 96.41 29.52 43.23 54.13 11.85 45.73 87.16 60.48 26.69 95.85 68.61 66.12 89.72 56.57 50.67 85.22 50.91 94.90 41.38 45.12 27.20 96.83 75.20 28.06 40.60 4.48 -65.84 99.45 2.26 35.94 42.74 54.69 30.65 66.64 13.82 34.89 94.96 48.94 85.35 56.17 99.36 72.47 80.03 0.74 14.59 92.41 13.88 94.73 15.52 72.85 71.41 73.71 51.15 32.34 40.21 32.81 26.54 53.77 65.87 88.51 21.70 72.90 88.88 39.37 96.14 84.10 9.71 87.76 89.54 18.78 64.75 86.41 45.34 36.94 86.07 68.76 99.73 65.46 40.85 49.10 76.45 82.76 95.80 82.50 46.24 51.92 56.37 25.92 64.70 37.54 85.49 74.11 48.59 2.38 81.11 92.74 95.22 88.52 17.12 78.09 55.00 45.61 27.45 91.02 77.36 53.06 82.75 85.60 69.66 39.81 44.33 91.57 83.24 65.39 58.02 47.02 25.08 60.73 70.22 42.75 66.01 84.03 64.93 50.88 38.53 95.73 -14.88 45.01 47.56 91.84 46.96 84.97 93.63 95.83 9.81 20.01 25.37 52.09 10.40 64.25 54.04 32.95 42.01 65.78 19.12 80.21 82.22 87.18 48.14 22.85 32.22 44.92 56.57 80.58 86.74 70.64 60.19 22.90 11.47 34.63 31.67 58.07 72.86 53.48 77.89 64.08 93.31 96.66 96.44 3.19 96.20 40.83 31.17 3.20 86.00 36.81 61.18 51.89 18.82 45.99 11.12 63.18 13.43 62.55 64.55 6.72 82.58 87.18 38.26 71.40 29.76 45.71 44.95 53.09 62.65 97.30 43.46 45.67 93.00 78.09 48.46 65.34 3.54 82.41 94.86 56.98 62.79 47.54 15.64 72.94 31.16 77.92 56.76 42.43 32.99 38.51 59.06 88.43 77.02 74.17 52.54 75.36 29.72 69.38 27.71 87.61 -41.80 55.53 83.19 95.78 46.08 43.56 32.19 14.42 99.56 77.45 98.65 11.76 92.77 69.96 27.88 87.58 56.54 2.00 27.67 56.25 7.11 91.56 41.36 33.01 38.90 30.62 45.75 16.86 4.24 72.42 84.74 72.73 1.70 72.78 98.99 7.92 86.48 94.49 77.84 21.05 66.39 20.42 20.02 20.44 97.81 69.57 87.87 91.14 92.28 55.28 78.47 73.52 44.52 12.34 47.33 45.41 89.18 64.82 66.71 57.86 72.64 66.93 29.93 17.89 27.06 79.13 18.50 89.73 11.29 39.54 84.04 74.18 40.02 94.69 47.98 54.41 11.33 86.70 19.36 45.35 33.96 63.92 11.98 56.94 98.42 39.36 10.94 99.15 5.04 25.92 34.72 11.68 83.99 88.36 28.86 23.87 88.26 80.58 48.72 47.93 -62.70 72.60 32.21 64.07 62.28 98.22 2.23 52.49 82.17 41.94 65.76 18.66 68.23 9.81 92.48 86.38 49.72 1.76 36.89 17.31 2.89 9.94 65.68 0.55 3.94 46.12 63.59 80.98 27.02 58.29 82.24 99.74 65.16 27.46 82.46 67.61 66.25 73.60 50.94 20.75 74.48 33.89 40.81 30.78 33.23 32.17 91.06 91.18 37.25 21.10 5.51 28.65 44.01 86.87 52.26 88.47 47.83 73.21 75.55 3.95 40.22 82.46 35.87 38.22 84.55 85.33 35.35 14.11 25.68 13.00 43.69 94.85 42.94 16.29 12.71 32.59 54.88 42.25 30.82 43.89 18.46 93.70 54.37 65.40 19.18 3.75 57.42 34.39 99.35 7.76 17.09 23.64 58.46 73.94 63.74 46.05 47.40 15.16 93.51 3.35 -68.42 84.87 50.49 80.43 84.35 23.63 57.17 26.58 8.00 15.18 42.57 76.84 37.08 75.81 41.74 60.73 90.62 13.04 69.72 45.97 21.72 51.26 19.59 46.51 13.66 88.26 53.84 48.96 0.13 43.66 53.47 54.61 44.70 36.55 45.56 7.20 12.51 56.43 14.25 53.24 60.62 15.01 14.84 42.60 91.57 10.16 5.06 82.32 46.42 16.34 92.27 38.79 11.85 37.17 82.04 90.74 71.25 46.83 67.53 32.79 1.00 67.70 89.78 66.66 52.90 38.49 59.14 23.17 67.55 22.24 60.04 49.42 81.10 3.79 43.35 60.72 7.76 99.27 54.28 2.69 9.26 14.12 18.55 81.34 78.50 85.23 84.85 9.78 23.67 61.52 24.52 28.64 81.63 29.88 1.28 18.03 9.78 7.46 5.63 97.21 -19.80 62.95 93.02 76.69 78.18 63.82 46.53 21.62 63.56 54.89 81.78 94.64 23.00 32.06 37.38 88.53 84.15 73.21 80.68 82.75 72.08 52.02 92.57 47.25 50.24 65.50 38.70 40.51 20.48 20.09 79.32 19.73 81.21 41.95 14.41 53.81 67.15 49.32 94.15 74.48 86.46 50.47 5.49 75.37 6.18 34.71 76.04 94.78 6.12 21.07 69.26 3.70 41.49 55.54 10.41 29.65 28.73 87.67 84.24 51.66 35.90 86.17 1.73 1.91 69.62 83.17 14.93 54.54 91.06 7.60 50.19 88.86 66.41 46.61 68.33 18.69 47.66 40.45 39.59 7.42 84.16 20.19 10.61 28.64 6.77 59.25 31.72 88.17 70.20 22.22 71.25 44.84 3.34 48.56 27.85 74.67 28.81 58.72 3.81 1.77 -79.82 2.70 15.97 72.74 30.29 1.00 83.52 94.34 94.99 5.29 4.91 63.28 43.29 30.72 51.43 92.15 41.06 56.03 64.95 85.98 33.58 66.41 45.33 3.11 3.96 36.55 71.69 88.83 66.41 57.36 84.74 66.94 8.26 84.09 48.89 47.19 0.48 90.16 65.19 62.21 51.15 28.86 73.79 52.54 58.05 95.17 79.52 93.74 90.30 68.96 93.09 56.42 46.38 71.92 24.01 49.70 55.42 13.59 91.41 72.85 22.96 3.88 41.38 85.86 49.20 31.65 80.26 93.87 97.11 86.23 99.72 86.00 25.45 27.28 38.33 24.60 84.03 40.76 30.07 34.58 62.47 4.40 95.99 64.87 72.65 90.14 67.45 17.68 40.88 7.82 96.29 97.05 95.21 1.36 71.75 56.31 4.94 14.80 8.94 18.81 -41.60 5.71 8.49 9.98 68.34 28.44 25.52 25.94 70.10 1.03 53.46 44.78 63.77 40.82 78.49 64.75 51.01 64.86 7.87 3.75 6.71 84.54 33.07 50.26 88.24 73.92 52.14 21.98 13.50 87.77 8.81 87.08 70.56 73.85 92.06 27.62 22.46 3.12 10.83 1.74 70.22 19.83 26.32 88.24 92.93 55.61 37.39 95.35 53.06 49.06 87.70 11.22 10.90 80.34 12.51 90.19 89.86 47.85 55.19 15.50 66.31 2.99 61.62 93.16 94.84 39.92 6.59 35.07 41.88 15.21 66.86 40.29 15.96 59.55 15.54 31.26 5.95 51.09 26.01 87.37 73.94 16.69 26.89 15.98 45.65 59.92 82.00 81.21 73.79 9.47 76.27 94.68 39.34 62.85 85.95 27.27 37.99 85.44 81.61 53.27 -88.16 58.01 1.08 92.13 69.61 16.29 80.93 67.84 20.23 15.07 36.92 53.47 21.55 73.06 78.65 0.37 22.46 43.21 51.86 20.44 14.36 55.11 33.07 37.09 30.67 71.47 15.52 23.45 95.98 29.84 55.63 43.04 15.77 99.33 87.66 31.83 5.66 72.15 39.67 96.35 46.12 57.38 17.79 39.61 7.95 68.37 36.42 86.86 70.69 19.82 28.41 65.69 85.96 80.99 24.09 1.29 22.34 64.92 29.08 32.38 86.74 30.33 16.60 9.66 62.90 51.66 15.67 24.46 4.98 18.25 6.20 55.84 70.13 48.44 53.97 37.88 27.79 98.05 44.47 15.10 69.68 4.81 87.19 10.84 73.59 85.68 0.61 42.41 19.52 13.70 65.09 58.37 63.03 44.06 5.80 72.37 82.95 36.81 41.52 34.33 -92.11 81.89 29.95 24.09 2.52 42.68 15.41 55.86 44.85 81.29 92.45 35.23 16.53 90.52 63.32 72.47 20.50 68.03 40.21 76.72 93.52 35.82 17.25 47.99 19.52 78.61 57.56 16.22 22.04 39.83 35.32 11.42 45.92 45.91 20.98 13.25 67.57 21.83 93.21 40.80 88.01 38.75 95.52 60.66 12.61 84.17 68.20 59.42 98.57 81.78 26.38 79.86 5.26 56.72 35.57 34.87 95.53 4.71 38.30 48.88 46.95 79.41 23.42 49.78 81.91 2.08 91.41 8.81 28.20 72.77 59.79 21.76 41.37 72.31 22.23 89.95 0.85 50.88 27.59 50.78 85.28 59.33 62.52 73.06 39.42 88.37 96.23 44.87 27.39 23.51 48.34 68.04 64.47 45.13 57.47 44.67 4.09 34.56 71.96 99.73 -40.98 67.23 39.05 2.17 8.00 92.31 12.76 8.37 28.94 20.21 85.70 15.91 86.34 57.70 32.09 45.78 87.09 93.38 20.15 73.32 51.40 59.00 9.55 20.17 42.97 4.83 18.38 16.33 9.37 1.18 91.99 4.35 32.55 62.11 33.14 10.34 18.26 12.49 28.72 1.94 44.98 64.58 91.00 63.80 89.72 20.02 92.62 25.77 44.63 25.70 97.48 57.26 37.66 66.02 16.36 38.44 64.29 42.03 47.50 88.25 69.57 16.27 23.99 55.20 15.70 36.74 29.40 3.15 59.81 72.28 87.52 91.58 65.25 39.40 12.42 89.97 99.67 25.30 70.82 41.72 56.34 50.69 28.07 22.89 6.76 97.92 85.41 43.18 44.55 93.14 61.24 20.30 13.68 45.23 78.33 92.95 97.49 52.70 48.78 0.55 -42.03 96.66 71.13 87.56 25.85 59.80 72.99 77.13 20.19 59.90 4.36 27.37 68.30 24.28 7.25 88.95 50.77 94.22 52.39 31.69 21.00 91.84 19.65 21.75 30.54 67.27 81.19 18.04 16.47 0.70 36.02 50.60 64.28 43.93 48.07 23.20 8.00 86.11 57.11 36.03 7.13 29.59 78.23 12.00 66.22 33.91 21.86 90.98 9.53 42.23 32.75 58.08 70.01 54.65 29.77 57.91 72.05 64.07 62.38 91.82 27.29 73.38 68.51 97.40 8.88 91.98 97.11 58.02 2.04 65.10 68.68 86.61 4.81 82.06 83.13 50.04 76.88 78.90 57.78 50.11 75.30 93.36 27.62 67.74 1.73 54.09 43.79 2.08 14.69 80.52 7.30 87.65 48.50 19.62 98.31 32.42 43.15 2.40 49.20 90.59 -49.09 57.20 89.26 65.29 14.40 50.39 8.85 77.15 82.82 48.53 16.53 98.00 38.77 87.86 31.14 78.99 84.77 68.03 27.87 10.63 48.32 19.05 39.98 40.16 73.38 55.24 23.06 51.80 16.10 67.35 38.20 39.28 19.23 92.52 72.97 10.33 19.28 71.02 7.51 87.18 52.24 89.11 9.40 66.59 4.91 74.61 99.45 27.18 14.46 94.12 89.97 5.24 41.24 27.86 30.56 38.72 12.48 42.02 68.64 95.06 22.26 51.38 58.79 35.91 66.83 96.12 26.90 60.30 77.41 47.54 35.74 33.82 42.61 96.52 84.37 36.80 86.63 5.02 4.13 15.30 36.03 26.81 70.75 49.88 16.50 0.44 1.61 97.89 56.82 66.95 6.78 16.93 52.15 75.75 54.63 42.38 23.80 22.90 65.28 35.14 -11.06 18.07 43.61 3.06 3.15 15.73 42.62 65.72 89.00 27.85 61.24 94.57 15.89 26.08 92.81 45.69 89.90 59.18 15.74 3.26 13.36 76.61 18.62 27.42 69.89 32.88 76.03 36.09 75.92 74.73 10.20 43.02 21.92 97.16 3.98 14.66 91.13 85.52 14.14 49.20 74.59 56.52 92.59 93.88 19.27 79.01 61.92 22.22 50.76 3.00 71.03 76.93 97.78 17.76 23.63 13.30 55.44 3.48 60.25 41.81 31.16 84.83 26.80 24.12 8.59 58.79 57.16 33.09 98.06 67.39 16.71 70.79 66.85 66.97 30.43 11.88 69.78 88.10 64.14 63.77 91.09 75.36 37.24 25.91 17.51 63.83 37.06 53.25 73.06 63.55 55.94 82.39 63.77 16.71 48.59 94.78 7.33 36.69 54.69 66.59 -94.51 59.20 81.77 36.90 35.67 47.00 99.66 35.41 37.09 73.75 11.15 76.56 79.76 27.91 2.21 76.57 29.88 68.94 95.90 17.02 40.08 55.58 47.42 94.09 6.80 57.24 89.20 75.02 94.48 30.76 42.73 30.76 97.10 28.39 49.79 70.49 22.92 85.67 38.66 89.79 47.76 75.15 34.32 22.64 57.45 15.77 84.95 49.26 15.69 40.86 17.46 5.67 85.41 80.30 33.55 80.83 43.25 1.71 35.53 41.42 42.29 28.10 10.04 69.78 15.17 27.45 10.70 84.83 76.03 27.91 22.84 94.56 35.50 12.96 1.49 36.99 6.02 7.87 63.80 6.06 88.01 67.77 99.86 39.23 76.56 73.65 73.98 53.12 32.91 92.39 60.44 59.40 35.79 75.13 47.20 29.71 81.53 60.44 86.51 20.37 -79.18 27.54 43.71 62.48 25.31 10.05 72.11 44.27 16.77 66.22 87.06 67.73 45.22 53.53 99.95 39.03 44.59 49.61 82.16 62.42 18.35 6.68 15.04 49.64 82.41 76.51 10.66 20.81 58.52 2.85 85.13 83.63 83.93 52.23 85.50 58.91 99.18 52.95 37.76 99.46 20.94 41.92 61.93 20.44 61.91 59.85 35.31 51.13 51.10 65.65 93.35 26.95 46.52 84.61 81.34 37.56 70.48 55.98 43.75 97.90 36.57 44.23 98.75 78.25 63.34 38.15 34.75 6.28 20.75 97.94 99.72 17.23 91.56 59.97 15.41 7.41 47.95 76.74 33.66 53.64 99.45 69.63 42.14 99.26 54.60 79.55 71.70 6.78 81.87 36.81 35.10 54.34 32.59 98.46 19.68 96.65 82.87 77.16 44.50 38.42 -73.71 58.38 85.12 70.28 41.64 94.36 6.59 28.23 49.91 76.12 6.50 78.10 81.54 18.07 85.06 6.76 23.17 92.91 25.78 24.62 9.54 10.94 59.47 62.89 64.66 49.04 46.55 5.44 87.33 37.48 97.20 86.48 84.03 3.28 34.90 19.64 57.26 16.90 4.78 43.96 41.45 91.04 97.87 56.79 39.20 58.12 3.34 25.88 73.75 91.63 35.10 60.84 26.43 40.26 55.13 16.23 92.08 55.67 24.70 26.20 80.11 39.18 75.39 94.24 88.17 81.19 44.26 20.67 91.43 44.80 69.95 57.92 79.54 78.91 64.01 80.05 65.73 75.98 70.56 9.85 41.15 40.63 49.16 97.22 29.87 67.09 54.11 17.92 85.67 14.57 32.87 85.18 0.23 91.11 51.53 43.18 10.91 33.22 9.30 74.85 -37.51 77.76 3.02 7.42 52.46 88.55 99.02 80.94 75.38 50.28 23.20 23.09 99.50 5.62 19.50 47.62 40.35 46.11 65.68 51.48 64.88 43.84 26.89 67.31 24.39 71.43 16.72 52.60 99.39 48.27 10.98 53.53 17.12 54.78 39.58 56.08 57.53 43.14 9.09 20.19 52.20 93.40 99.35 56.11 20.38 37.29 69.97 16.04 31.25 20.03 85.60 90.25 32.79 18.23 74.46 44.61 28.71 3.10 79.22 29.03 20.98 47.25 61.21 13.47 98.43 32.63 73.66 33.62 12.27 22.02 14.27 33.75 83.18 23.89 86.96 25.50 79.84 50.79 95.29 27.79 60.36 37.54 87.06 66.05 95.42 23.30 12.76 23.30 98.08 35.53 57.38 63.35 81.87 53.58 46.57 29.44 70.27 98.65 18.49 4.80 -27.37 55.14 79.44 21.54 89.86 29.77 69.71 88.50 76.76 7.13 35.64 81.00 65.52 95.52 49.98 37.61 96.53 24.29 32.24 12.54 57.94 46.24 70.74 78.23 22.44 88.32 64.95 37.45 1.25 71.27 69.31 5.01 49.28 5.30 0.64 19.31 67.18 29.49 26.68 22.62 63.49 48.24 52.01 3.52 52.72 0.44 10.77 27.75 55.11 76.24 88.85 55.97 74.40 82.26 10.84 33.61 80.13 2.68 42.00 25.85 22.79 46.64 9.29 0.58 67.90 81.71 79.36 0.84 26.81 88.94 26.47 49.60 14.65 44.25 4.76 3.84 19.55 40.04 35.60 77.80 83.09 65.64 90.81 19.41 10.84 83.65 90.63 79.84 86.53 41.91 43.05 18.70 36.35 94.74 29.82 25.35 96.93 0.34 91.25 23.75 -0.42 64.46 29.42 77.54 10.18 14.10 36.50 34.91 22.09 85.92 7.97 45.58 51.14 21.47 10.85 28.75 89.85 0.31 32.09 2.49 36.29 6.76 56.57 26.15 18.72 55.33 77.79 8.91 30.91 77.65 73.57 80.05 41.67 84.69 70.00 43.19 70.69 62.14 27.68 6.58 17.64 75.82 90.88 61.45 55.08 31.37 29.87 95.17 98.11 9.26 22.60 58.00 6.54 48.80 75.61 76.50 50.52 43.50 57.35 82.37 28.15 4.04 86.94 44.17 47.82 97.28 92.94 11.14 40.44 21.54 52.16 13.39 94.83 32.66 19.98 59.26 13.71 65.87 80.53 38.26 88.75 67.62 71.55 80.27 71.20 45.09 72.41 26.32 33.27 75.51 52.53 18.57 54.81 98.06 75.38 71.74 89.05 83.80 99.16 12.50 -94.04 67.64 19.90 75.35 5.10 79.35 63.24 43.39 79.38 40.79 62.50 61.87 13.79 30.51 27.23 91.11 95.26 74.43 35.99 84.82 74.83 87.42 23.03 70.55 75.91 48.49 64.74 97.66 31.79 30.61 26.52 82.39 16.95 70.49 29.24 9.24 40.30 14.60 10.83 86.53 78.23 78.23 32.30 22.21 21.51 77.43 87.91 73.30 97.48 81.96 98.89 61.97 90.69 25.67 0.23 29.87 29.40 29.75 22.28 12.49 27.61 85.95 90.93 62.92 55.40 84.09 41.55 29.97 93.77 34.51 31.55 32.00 26.50 45.93 31.85 88.92 2.39 62.63 0.24 6.02 86.93 71.49 18.22 7.58 95.40 46.98 14.59 46.52 89.95 43.90 50.13 27.21 48.17 93.16 28.54 88.25 97.32 82.92 77.75 51.89 -80.22 91.85 39.86 17.40 30.67 10.39 2.09 50.61 17.37 93.72 98.63 54.51 53.48 13.96 56.07 86.20 15.65 80.59 97.81 85.46 0.36 68.68 84.02 42.29 28.09 10.28 28.48 41.92 15.85 32.58 51.19 75.71 14.66 10.41 51.71 18.91 60.09 77.39 26.36 90.78 76.39 40.84 35.99 95.54 6.75 67.55 79.16 95.44 93.79 53.01 67.48 47.91 29.06 29.67 0.01 65.11 39.07 5.85 24.62 88.98 52.65 75.26 35.32 5.42 86.39 76.34 86.94 14.93 75.95 61.63 11.88 20.96 25.04 66.67 92.02 22.50 29.20 73.68 44.50 84.18 61.04 24.75 2.93 6.12 51.81 97.03 95.68 47.33 76.55 8.23 51.30 27.74 92.09 86.76 22.83 48.71 55.89 87.74 38.67 48.50 -34.49 71.16 2.38 28.42 96.77 98.48 84.30 33.49 59.05 88.66 79.65 49.07 43.26 58.70 1.36 79.10 68.27 11.55 58.51 75.91 69.41 7.98 52.52 25.89 93.10 63.39 97.13 75.52 1.96 71.94 76.00 91.85 79.74 84.55 31.13 85.77 52.11 72.83 97.73 71.04 82.99 64.10 29.24 92.88 67.38 97.90 66.11 70.13 54.39 18.24 2.14 30.62 43.76 20.47 53.43 64.43 5.99 38.67 85.36 73.51 33.45 58.59 58.54 51.74 43.26 0.63 84.69 2.94 72.39 3.12 26.63 91.83 39.31 70.13 73.10 15.36 78.01 74.78 69.44 15.77 51.75 11.36 12.77 54.45 34.85 45.30 90.18 23.99 17.84 2.51 2.21 38.70 39.74 57.80 40.24 58.71 66.79 91.22 85.77 46.16 -73.59 87.26 98.48 95.20 19.69 28.30 19.89 58.00 7.21 23.64 10.51 70.45 17.48 82.59 54.55 10.04 0.38 15.88 36.58 16.87 92.66 72.61 25.92 94.20 25.49 49.64 21.00 43.49 70.43 99.08 59.26 89.23 6.51 44.11 97.60 28.02 41.04 87.10 39.95 50.00 53.65 85.19 23.46 6.65 21.64 62.38 65.19 60.22 33.97 84.34 93.70 7.84 7.82 22.58 59.36 86.58 33.12 58.39 23.88 19.90 16.99 14.70 57.41 60.14 85.62 94.54 18.32 32.75 26.61 85.95 67.26 1.87 39.23 32.42 69.36 81.49 66.48 25.31 99.80 55.03 89.27 82.23 74.44 10.61 25.39 28.77 66.62 83.28 80.64 29.74 83.76 62.13 79.23 88.67 71.82 24.66 32.96 30.44 85.69 41.22 -97.53 20.26 15.55 24.62 48.45 35.11 2.74 78.16 59.38 54.12 15.44 15.45 75.28 52.88 83.70 78.53 16.15 0.16 92.27 95.98 44.81 44.58 95.10 78.56 11.48 0.35 99.84 42.03 13.88 29.10 0.42 16.32 57.82 81.54 66.37 0.37 42.66 87.28 35.75 6.82 10.36 45.50 68.60 8.86 8.63 72.96 35.71 15.81 23.02 81.40 41.74 63.74 22.72 54.69 74.51 13.41 75.12 28.39 23.13 96.01 26.37 35.82 65.93 40.97 56.02 91.38 60.94 39.30 17.16 59.15 15.78 68.17 19.62 94.61 41.50 98.07 8.45 9.96 42.74 96.79 52.41 16.49 82.69 47.37 31.96 3.20 76.55 0.66 19.24 98.64 92.64 1.26 20.12 67.30 36.34 3.22 6.50 92.80 54.19 73.40 -56.97 39.92 33.49 61.14 33.31 60.90 59.12 4.52 24.94 6.39 99.28 12.29 9.30 86.76 5.89 28.29 36.74 29.53 92.63 20.13 29.16 46.53 61.14 81.46 52.51 23.18 22.69 93.71 0.56 30.03 38.28 45.59 28.69 23.22 27.75 24.68 7.69 60.16 29.26 29.37 73.46 90.97 96.78 66.22 17.21 35.55 45.28 59.11 87.68 24.08 48.71 64.03 87.19 35.97 43.59 42.25 99.52 46.30 76.86 2.08 56.14 1.96 67.14 20.97 35.77 34.93 98.44 86.85 68.21 80.38 43.61 85.02 33.35 35.22 19.86 44.34 63.57 21.03 61.06 91.10 8.16 48.90 94.72 13.28 67.50 51.07 1.12 70.74 22.67 37.61 42.28 73.46 95.45 10.17 77.21 30.44 4.81 56.98 19.65 90.78 -30.86 93.15 31.65 61.11 34.78 28.28 50.23 64.49 51.30 25.24 59.08 11.97 49.68 44.57 96.78 1.38 32.94 55.31 50.71 18.89 40.89 56.18 23.84 35.12 83.08 59.54 43.62 90.47 73.64 81.28 91.54 17.55 85.81 25.14 98.71 86.47 74.52 11.08 80.47 8.84 84.55 19.29 83.29 75.09 99.31 14.73 98.67 95.85 96.96 73.82 16.96 72.97 72.59 71.35 25.26 21.27 96.28 99.04 87.53 97.97 76.32 54.30 45.93 91.59 83.35 56.64 88.09 62.44 16.92 23.23 74.16 7.79 35.13 91.58 84.94 36.12 49.89 12.05 10.73 55.33 60.30 65.19 9.35 20.94 90.29 43.03 96.53 70.47 69.78 30.64 48.94 23.47 75.77 63.37 82.56 20.14 86.25 57.13 92.58 52.13 -26.88 68.49 25.93 61.44 40.81 28.21 40.06 11.93 85.55 7.42 81.09 86.03 12.20 96.72 94.75 67.09 14.57 86.88 36.95 63.91 16.02 94.23 82.78 62.72 55.73 57.17 63.01 52.09 23.50 82.11 93.61 9.48 68.30 9.33 93.79 97.26 96.20 56.15 71.64 21.80 39.27 95.21 34.87 17.49 19.33 1.93 65.88 21.81 45.88 12.64 51.39 25.53 24.31 89.61 79.17 40.98 26.00 42.05 94.93 13.65 22.99 17.03 45.81 45.43 31.70 67.11 45.61 44.38 20.14 93.86 98.33 39.13 30.81 8.05 2.84 77.93 27.48 24.45 17.38 24.96 20.67 79.93 50.95 20.44 85.53 51.51 94.08 86.76 32.00 61.00 0.17 46.74 0.24 43.82 25.72 12.10 33.03 92.92 79.98 65.88 -34.71 26.14 7.96 45.02 28.50 46.47 91.78 15.06 61.81 32.42 98.70 20.63 99.07 33.09 37.47 71.35 50.22 56.62 95.96 21.94 71.05 9.06 94.19 20.00 56.24 70.32 50.91 98.15 25.03 37.30 52.32 68.42 54.91 75.86 39.08 99.31 58.83 85.99 59.27 40.87 5.10 42.23 34.34 58.03 61.42 96.25 28.02 75.50 95.49 88.30 51.41 19.05 75.02 74.42 43.05 86.92 15.87 2.10 66.77 66.91 75.69 82.74 91.21 46.23 63.36 80.67 30.19 24.81 87.07 90.44 24.11 98.09 45.46 62.14 19.56 97.58 98.75 83.67 44.59 97.17 13.31 96.02 33.27 64.34 63.76 41.56 29.84 44.75 45.90 43.17 52.93 75.81 5.92 38.99 36.04 82.88 11.43 30.73 65.84 92.05 -65.87 7.45 88.66 47.75 3.40 46.95 6.06 48.67 84.36 98.42 13.94 5.19 70.05 47.92 54.91 92.16 37.57 76.38 75.90 38.84 9.71 15.62 36.91 1.63 18.99 60.95 78.30 54.56 79.92 87.15 6.21 26.92 25.97 61.37 39.26 61.65 75.05 42.81 92.51 39.32 71.40 22.97 3.45 46.18 87.23 29.96 80.85 48.64 30.32 88.96 82.36 63.44 11.02 15.66 67.09 84.02 28.35 60.54 32.61 3.47 24.25 11.08 33.59 79.64 83.19 30.09 67.26 81.38 43.67 58.99 97.33 22.32 38.38 42.13 95.69 56.28 63.20 51.07 96.95 22.07 70.92 93.39 74.02 95.35 3.40 81.90 90.71 13.73 19.37 46.18 76.39 76.08 33.38 76.54 14.64 93.66 92.33 69.48 45.82 69.20 -53.59 53.83 79.46 17.53 24.11 89.22 80.44 0.25 38.47 21.09 80.38 82.92 79.24 62.31 51.34 54.43 77.06 89.95 80.62 24.57 14.56 19.33 50.71 54.70 96.27 53.15 19.68 88.56 66.48 85.31 32.71 42.85 80.03 88.27 90.08 70.23 28.30 79.90 18.87 51.32 28.62 18.82 48.44 10.32 2.01 27.48 63.80 37.33 83.33 82.25 0.31 10.84 61.95 62.07 58.95 77.78 38.11 92.23 76.12 77.93 90.57 90.10 74.46 32.36 21.01 95.62 41.88 27.95 34.89 20.95 4.25 35.50 59.19 99.74 53.32 9.71 69.59 74.12 19.17 52.66 36.15 80.47 44.14 15.03 15.05 89.42 58.96 79.77 39.36 84.59 49.70 61.60 32.41 65.16 71.64 63.64 14.19 7.67 41.47 31.79 -98.71 42.70 48.07 62.22 57.23 23.82 84.21 61.77 67.67 82.82 64.23 33.94 95.23 50.02 46.05 24.99 44.88 37.70 23.74 77.08 29.74 83.23 69.95 87.22 29.39 28.14 34.54 29.36 6.78 97.12 97.75 80.48 59.58 40.06 74.25 25.24 2.46 96.75 33.96 56.62 99.53 49.41 11.12 91.68 5.49 8.80 88.73 30.64 68.53 19.47 46.89 40.47 83.04 23.85 50.88 72.85 44.66 77.58 59.02 96.62 26.86 1.63 96.35 47.90 82.36 41.90 46.87 92.69 40.13 40.57 15.08 41.42 48.78 59.59 66.60 98.43 6.43 73.43 98.70 67.00 92.24 20.67 33.68 66.83 74.93 46.39 10.05 45.13 70.92 15.49 63.39 43.70 11.89 49.45 72.56 84.06 35.52 58.70 93.40 56.91 -24.72 73.61 82.47 21.00 62.84 41.55 34.53 98.55 15.71 35.72 81.36 5.38 98.45 46.17 99.27 72.55 38.76 12.45 86.47 23.17 85.45 41.06 69.49 7.63 81.89 94.05 29.87 80.33 25.97 13.86 67.55 59.80 78.79 20.34 80.06 70.17 73.13 13.83 68.24 69.54 97.90 74.39 38.81 24.03 25.95 91.50 46.72 12.82 4.06 30.50 39.02 97.00 97.48 27.96 65.96 78.89 94.12 80.66 94.84 30.76 41.57 99.97 16.93 13.20 40.54 2.29 94.10 13.24 34.53 58.99 36.27 92.64 83.94 53.98 60.79 50.74 47.14 11.61 14.11 53.15 3.20 4.36 20.76 41.83 94.44 56.36 3.41 82.50 15.81 5.58 47.56 64.54 76.64 16.57 78.01 7.75 11.92 66.38 0.19 4.71 -50.88 74.24 14.13 19.20 13.11 85.31 4.41 49.80 62.62 71.13 3.40 43.93 42.66 71.62 4.98 71.29 81.08 29.62 96.43 87.41 88.58 52.76 82.67 37.41 73.32 9.73 95.67 41.53 58.60 4.50 27.83 88.01 64.46 94.47 42.40 42.52 45.90 19.94 41.22 65.73 22.55 94.35 13.27 80.48 78.67 12.22 59.45 39.14 93.14 26.58 68.79 57.45 46.71 13.97 44.47 51.24 88.27 10.37 91.94 53.21 56.05 92.99 71.11 80.82 41.17 63.02 48.92 37.75 66.97 66.81 65.41 76.13 27.00 85.13 59.51 29.32 94.54 38.82 3.76 1.45 91.99 77.67 80.34 21.49 91.11 67.37 76.03 54.39 73.30 14.93 25.62 66.35 55.45 81.24 84.05 9.44 51.32 30.77 52.03 9.39 -1.29 16.56 60.32 6.90 77.01 93.63 56.61 33.19 29.78 75.02 29.88 55.98 59.55 58.02 21.14 53.60 28.23 96.54 52.11 58.78 48.30 40.77 41.83 26.32 97.63 19.35 1.16 42.77 15.31 12.67 40.47 50.80 84.00 18.30 92.32 47.38 54.49 28.41 98.43 30.64 73.00 73.18 73.94 73.32 73.33 99.23 68.87 85.08 5.25 65.05 19.66 87.39 20.95 22.11 30.66 26.25 21.07 46.45 33.93 36.91 40.72 88.20 44.17 88.63 18.03 62.39 30.75 22.67 43.18 30.74 93.51 56.86 41.43 60.60 32.65 31.73 45.78 56.47 29.59 19.39 26.93 37.31 9.12 55.64 10.33 68.47 41.31 56.76 71.63 53.41 64.01 35.77 55.06 83.38 4.32 23.80 47.50 28.67 54.33 23.06 -41.83 45.66 44.38 91.50 39.16 93.00 65.04 25.39 31.66 1.62 46.18 5.87 12.42 97.74 20.11 4.19 41.26 75.53 31.43 55.67 30.76 44.39 40.50 90.26 56.63 38.10 20.91 21.35 1.92 86.40 95.16 76.70 13.67 76.39 29.63 79.10 72.19 92.41 9.47 13.46 68.89 16.91 61.48 53.40 35.11 37.69 93.22 1.02 22.24 0.10 77.72 66.79 59.44 50.94 95.24 53.83 64.59 76.38 62.75 47.50 89.41 77.22 85.90 95.42 77.03 86.38 25.75 89.89 53.80 50.24 93.82 0.97 22.74 57.53 49.64 50.13 57.13 68.63 26.46 29.15 37.62 30.39 60.40 65.43 97.08 3.81 13.63 84.90 56.62 8.34 93.61 47.01 48.02 78.29 71.13 70.21 97.25 51.47 49.83 8.03 -72.74 18.41 87.49 8.74 34.65 34.23 64.43 59.15 5.87 37.29 39.78 57.55 2.27 27.56 58.70 97.17 31.63 3.08 82.46 51.88 37.08 4.60 81.41 86.73 57.81 97.07 48.22 5.97 58.96 45.14 4.52 46.04 3.86 81.90 10.42 68.81 43.11 49.59 75.24 74.90 33.00 7.55 59.62 89.50 59.72 30.11 50.27 21.30 41.33 78.18 46.42 83.01 96.40 96.27 7.54 25.46 38.05 43.86 46.38 41.87 76.24 75.56 58.79 44.39 72.77 56.48 6.01 39.83 94.56 56.85 75.79 2.49 58.24 43.49 23.59 1.15 24.35 91.87 79.57 58.68 70.68 19.09 94.17 29.59 13.02 4.39 52.84 33.17 25.22 60.63 86.16 56.49 65.26 52.79 89.69 11.93 0.59 84.53 80.43 18.01 -21.15 27.35 86.78 69.14 82.47 25.86 50.19 1.44 82.87 61.54 36.77 43.67 42.82 77.02 34.66 29.56 52.32 76.43 28.05 21.46 2.53 81.79 31.19 21.28 28.71 91.53 75.18 39.07 95.21 56.33 75.31 62.66 17.91 79.64 83.87 7.25 90.24 16.84 34.06 70.90 89.24 63.83 13.15 13.82 88.56 9.08 88.03 6.88 45.53 30.16 12.86 98.70 83.19 66.03 86.42 67.32 94.36 20.28 94.51 87.56 66.66 34.19 69.36 5.88 63.08 99.75 23.48 61.43 46.33 42.21 91.15 80.74 30.46 73.07 11.90 30.69 43.57 17.77 16.42 36.50 48.88 7.37 82.51 85.26 18.09 79.74 31.44 97.10 45.63 37.86 87.07 21.15 63.19 8.78 14.69 47.47 19.09 87.83 96.11 37.49 -69.61 83.93 16.83 20.70 43.56 20.63 9.94 25.57 95.36 12.40 67.94 92.53 86.79 65.52 71.27 28.88 33.16 77.06 36.56 17.11 89.09 34.85 39.87 50.39 38.82 29.38 71.57 90.09 60.99 99.30 7.10 73.64 20.87 87.80 33.40 66.97 26.71 53.41 20.87 85.98 56.95 17.37 52.61 57.60 71.03 35.34 50.14 30.34 22.98 99.69 16.86 58.18 64.23 53.28 82.85 97.10 76.87 31.91 23.08 47.03 51.90 63.29 37.03 51.54 45.69 94.22 92.64 69.52 77.64 20.96 57.17 5.34 56.14 45.23 12.46 15.91 89.45 31.56 30.77 43.13 44.23 70.89 13.34 71.85 59.64 55.64 68.13 87.42 8.72 67.04 77.04 30.82 63.12 88.95 79.59 68.49 86.03 29.47 70.02 94.07 -20.62 45.53 93.24 10.83 47.29 65.48 70.03 97.11 81.18 10.69 94.70 66.73 54.04 79.40 9.38 13.55 47.08 67.41 27.38 14.97 74.57 47.34 34.07 88.64 63.99 74.88 46.57 78.05 59.56 13.12 60.58 62.10 20.42 43.71 49.86 12.35 88.97 60.85 50.06 23.68 39.62 62.98 25.08 1.77 77.26 92.64 5.05 38.34 74.46 49.12 43.90 64.13 60.26 28.87 27.61 78.22 92.02 44.18 59.28 93.97 8.61 65.34 17.71 23.55 77.91 73.99 51.29 97.88 59.33 7.63 64.84 80.99 36.99 83.95 55.52 98.70 84.92 35.71 27.28 40.85 3.88 36.82 81.19 87.58 58.92 51.48 37.55 79.86 21.22 33.07 69.65 65.50 98.73 65.13 95.15 69.61 26.73 22.00 68.14 85.37 -10.06 54.49 13.66 39.18 4.07 23.94 38.12 94.51 58.75 71.66 13.07 99.37 61.18 97.19 31.34 63.11 92.81 33.76 81.61 9.85 94.37 96.97 22.46 2.28 48.52 16.63 39.21 18.28 97.10 31.31 77.06 5.03 13.56 28.50 32.16 19.55 52.32 48.86 90.66 76.45 73.71 21.08 52.24 89.45 1.75 86.34 13.61 64.84 44.95 12.92 27.79 27.51 68.66 86.26 80.93 47.40 75.97 27.08 40.60 41.87 7.91 55.91 3.99 56.46 75.52 25.12 53.72 2.77 46.24 58.04 97.77 78.28 0.82 92.17 18.98 15.94 90.03 9.77 15.56 96.53 90.59 61.55 65.85 81.02 77.18 33.00 74.25 75.11 9.42 28.43 64.56 43.40 64.55 79.88 93.42 91.85 1.17 69.60 55.43 34.87 -48.97 65.69 79.89 32.59 64.72 41.32 93.67 3.28 63.68 55.83 13.27 66.82 34.56 1.29 13.36 34.88 81.61 37.78 50.88 68.70 47.88 87.33 41.71 9.79 46.42 72.76 57.60 74.77 29.16 87.71 93.95 97.43 20.12 91.27 31.99 49.40 25.25 16.46 99.34 27.43 80.62 31.11 46.12 54.75 32.36 50.21 40.38 90.84 38.97 9.40 80.32 66.09 83.61 89.33 77.24 10.41 66.72 89.81 32.73 33.08 24.25 41.47 90.90 15.17 23.62 15.43 15.22 30.50 17.82 59.23 12.50 50.37 30.08 71.42 45.93 51.47 62.47 96.90 70.82 76.97 45.63 49.46 19.95 94.97 64.60 13.42 81.64 18.77 80.99 85.19 78.60 73.73 24.81 15.74 73.10 65.12 99.70 62.38 94.44 3.08 -20.65 2.03 71.81 31.25 22.32 40.92 90.97 88.30 59.12 61.92 45.63 84.83 77.90 14.29 36.54 43.00 30.36 0.34 22.48 14.61 7.45 30.03 15.93 20.93 98.05 17.61 44.72 17.63 84.06 97.15 61.70 73.74 4.22 95.08 72.73 92.71 88.27 57.61 7.72 24.41 74.92 46.86 58.30 50.07 4.76 82.15 19.87 10.69 76.68 28.09 44.32 38.48 20.49 29.47 12.60 65.39 19.88 10.59 77.26 97.45 54.02 42.04 36.35 28.80 30.91 48.86 46.10 61.22 78.98 70.35 77.08 43.81 17.30 78.41 94.35 59.57 56.56 21.68 67.33 98.72 96.67 50.74 33.39 10.51 74.27 95.66 16.83 98.45 98.84 28.21 94.52 99.21 16.23 91.61 88.80 80.97 63.34 12.24 42.79 14.18 -49.04 97.33 84.13 24.85 69.40 69.35 86.50 65.68 63.89 2.40 65.46 79.35 11.24 81.45 31.84 26.95 48.55 96.22 54.08 31.76 16.33 47.18 82.79 80.29 46.03 75.18 31.71 57.83 5.18 34.31 68.92 91.44 15.42 42.98 49.16 2.91 46.13 1.59 36.26 20.18 26.32 8.24 81.45 92.27 51.85 87.95 87.70 90.99 47.43 4.74 31.10 18.05 96.48 31.49 93.09 97.65 10.20 88.39 21.58 7.57 46.24 35.63 35.28 23.59 94.11 86.53 22.01 9.10 12.87 13.05 52.03 57.38 25.94 64.14 80.55 49.06 38.62 70.20 68.43 43.31 23.15 41.72 49.30 21.49 88.64 41.80 0.52 47.17 70.19 34.93 13.27 47.42 46.39 21.39 67.82 25.59 41.46 68.50 89.01 49.35 -23.86 0.01 94.92 61.01 96.99 21.10 49.21 96.05 60.13 77.23 76.76 11.70 56.80 57.58 64.89 48.29 31.59 21.43 45.57 91.06 64.16 10.74 85.08 30.97 3.60 37.58 92.58 20.03 51.53 62.26 27.60 29.62 20.21 27.64 4.84 25.19 61.76 40.24 16.52 51.77 61.48 45.01 23.95 39.20 36.21 84.81 51.34 86.52 28.03 42.62 25.56 69.28 85.62 73.74 40.11 32.80 98.34 38.64 10.55 90.61 55.11 98.73 42.13 83.39 96.21 98.66 74.46 34.91 41.87 33.53 54.43 15.43 40.78 71.29 75.63 16.62 19.31 37.23 74.37 76.84 9.47 86.04 40.64 1.48 12.41 83.80 58.70 57.91 60.49 68.55 81.98 71.80 90.74 33.45 38.98 80.62 23.86 88.93 79.51 95.53 -75.30 55.80 56.12 67.35 0.03 1.16 37.64 69.33 29.57 62.09 37.63 21.57 94.14 73.37 28.19 21.70 58.96 51.10 70.01 89.69 45.64 85.58 20.08 35.62 37.08 42.37 85.94 8.52 62.04 8.72 60.08 41.54 1.83 10.19 40.95 77.77 74.20 39.99 75.41 70.19 65.72 44.25 89.85 3.84 31.55 0.60 65.87 65.64 2.50 31.33 99.27 18.18 3.08 60.34 59.71 92.04 58.74 81.35 2.02 48.73 72.81 29.63 78.84 28.04 99.40 67.37 2.95 55.02 89.84 3.55 30.03 76.68 83.43 22.83 95.86 21.34 98.39 29.58 37.57 21.35 88.53 78.10 69.28 58.26 16.86 95.43 62.31 54.38 26.84 86.74 5.75 49.66 33.39 45.01 52.26 55.48 86.60 47.17 94.03 28.25 -75.15 77.05 78.02 8.53 96.28 23.16 41.84 72.17 65.25 8.78 35.58 7.26 18.72 82.29 41.38 87.32 32.63 57.82 46.65 6.64 78.91 49.58 36.62 17.06 2.66 13.14 56.38 29.48 26.06 65.22 53.91 91.04 39.30 45.45 6.38 12.91 96.60 62.00 66.85 37.22 49.21 65.70 73.69 52.72 96.00 52.27 67.46 98.98 65.88 45.13 18.49 17.09 44.73 71.33 78.09 20.83 69.62 74.89 60.60 17.06 42.80 9.81 74.43 24.41 9.26 6.28 64.82 57.22 27.78 85.84 94.88 79.33 83.38 21.85 70.87 95.74 33.90 29.25 73.13 17.92 40.52 6.58 86.52 78.48 39.77 26.91 28.58 88.05 63.34 93.19 76.42 39.97 2.42 44.48 60.01 35.28 77.94 86.69 5.77 2.27 -53.39 29.33 16.50 97.56 76.66 57.00 68.38 85.44 41.71 36.07 59.61 74.57 27.79 55.63 68.66 26.37 23.42 71.02 81.73 80.77 41.27 28.84 69.47 8.87 11.34 42.84 32.98 1.10 81.88 51.48 98.00 71.60 16.28 51.92 31.76 69.59 78.51 22.74 91.80 23.15 27.28 11.44 68.29 2.30 27.52 6.89 17.58 92.57 12.98 69.30 59.40 63.12 35.36 93.33 52.20 12.31 36.93 39.88 82.79 3.70 35.52 33.53 28.76 68.44 20.49 15.88 92.18 27.73 27.85 50.03 71.77 80.96 37.89 39.32 27.71 28.47 69.68 71.33 87.03 34.63 93.62 37.24 90.66 67.78 1.99 69.17 12.22 66.99 25.23 36.15 28.15 83.29 36.31 89.10 51.56 59.20 53.83 71.91 81.09 49.86 -0.32 25.15 76.21 77.75 51.25 95.95 11.78 67.55 56.77 70.60 91.53 70.41 97.34 31.87 5.97 77.75 54.72 29.40 23.98 6.84 34.88 93.38 38.42 87.60 69.47 17.27 39.80 80.12 31.78 99.94 42.41 57.35 18.98 49.17 42.41 41.63 15.34 91.68 63.19 56.06 12.55 27.57 37.43 45.52 45.04 25.87 1.61 98.13 7.97 45.80 88.63 66.15 96.46 51.80 10.96 70.41 46.97 85.97 70.58 79.00 2.88 7.02 70.16 89.35 80.38 6.59 20.35 86.02 52.24 94.51 38.08 10.48 14.50 75.08 48.92 73.61 48.73 52.92 80.36 56.19 8.49 70.46 95.67 77.95 20.11 15.62 63.71 44.37 33.29 44.21 50.39 25.90 67.14 34.63 89.55 51.24 20.76 45.49 68.30 18.94 -26.31 66.62 77.40 29.13 27.50 77.71 22.34 35.45 10.59 95.80 53.40 69.76 12.06 99.21 78.33 70.20 95.01 49.10 70.60 71.37 75.49 79.45 88.15 9.54 17.18 87.03 91.86 51.67 99.76 99.40 68.06 12.89 75.56 44.98 10.29 82.12 2.88 73.90 81.73 57.45 93.04 76.07 1.21 88.96 72.03 19.33 2.78 77.56 10.97 99.08 56.17 2.58 94.32 2.08 51.87 5.69 45.98 1.56 43.70 62.55 33.21 88.63 0.37 64.80 11.33 55.92 39.01 37.32 69.80 95.26 94.58 84.15 54.54 93.94 14.21 54.87 58.52 15.60 68.80 68.57 32.42 70.72 25.91 16.94 17.89 66.43 65.94 41.78 71.88 77.26 5.31 22.36 58.27 35.19 39.59 75.89 68.87 33.00 30.37 51.41 -9.12 18.37 79.40 15.98 43.34 65.72 41.88 79.68 45.90 8.60 84.80 9.14 98.19 78.93 55.54 83.37 16.35 24.68 33.48 43.53 6.74 79.71 11.49 66.49 63.88 84.63 71.51 26.98 27.94 64.55 20.24 69.67 76.30 52.28 8.88 77.43 67.34 64.36 13.82 0.93 46.97 33.47 56.91 14.09 88.27 32.84 66.24 60.36 4.05 9.41 11.95 58.33 27.50 65.40 6.79 52.36 34.71 8.85 32.50 13.65 29.08 22.74 6.37 93.01 27.58 43.03 68.53 77.17 95.59 3.31 22.16 95.90 92.23 98.28 13.91 7.93 82.64 37.74 31.71 49.21 12.86 50.58 78.16 8.55 27.81 1.78 7.72 57.28 45.82 69.30 9.59 14.41 46.28 17.34 68.98 47.74 78.98 97.72 39.29 8.22 -15.26 14.97 76.57 23.38 25.61 36.50 40.15 20.06 30.84 1.72 94.47 57.25 23.67 0.18 42.13 18.82 1.13 4.30 82.79 82.02 57.29 8.70 37.54 81.32 92.25 26.38 94.09 35.02 29.61 35.99 49.84 27.30 93.34 77.46 56.40 6.67 79.15 39.66 52.00 62.06 94.05 92.12 2.94 15.19 91.60 94.63 4.93 96.87 45.77 73.91 56.93 55.46 76.01 84.82 62.36 6.86 73.18 2.66 74.21 4.76 2.33 89.26 51.34 23.70 41.47 60.45 63.33 13.25 46.76 97.45 59.28 69.58 73.15 9.57 52.22 72.29 34.87 94.90 69.25 93.46 57.17 81.86 50.22 77.37 60.83 1.22 62.44 61.39 56.39 14.88 16.79 60.31 48.12 11.46 64.73 47.44 58.24 34.80 42.83 43.03 -6.87 19.04 53.13 89.05 74.90 11.49 70.40 36.49 8.54 98.01 85.64 23.40 65.73 52.37 31.82 84.58 21.47 34.46 58.41 38.09 84.17 14.72 78.79 92.57 16.42 28.51 79.07 48.58 47.02 89.37 10.50 54.01 82.98 43.06 52.31 0.55 56.19 33.92 39.33 72.87 72.34 43.44 88.20 1.14 35.38 34.74 42.53 96.44 55.16 59.59 53.93 77.51 90.58 86.68 42.40 37.31 2.15 45.16 24.50 71.12 29.61 23.33 74.13 46.83 23.16 32.45 84.46 89.60 87.25 14.52 12.71 6.91 26.09 80.13 88.83 39.64 50.37 55.40 85.72 25.15 12.54 71.39 98.94 8.13 57.72 26.88 83.25 7.13 77.74 45.65 5.01 91.75 78.82 47.87 6.65 57.27 94.18 34.93 67.11 83.55 -87.50 86.22 0.63 33.57 29.37 49.36 49.55 96.52 46.27 71.46 7.99 86.08 58.40 53.32 53.30 28.64 90.11 92.93 85.49 72.42 68.89 28.52 99.40 79.40 20.54 31.41 70.45 37.12 56.98 28.63 66.59 12.20 73.25 77.99 3.80 79.83 74.26 6.84 46.82 4.50 71.97 37.66 53.85 25.72 30.31 4.29 31.34 10.48 15.11 28.48 37.20 83.67 19.25 4.94 81.27 25.31 72.43 49.93 80.19 47.25 95.69 72.98 83.47 25.93 33.12 64.35 78.27 21.50 12.39 94.13 15.93 77.86 83.28 45.35 22.70 43.74 5.44 47.43 31.66 91.38 64.26 25.23 86.88 63.34 41.80 22.16 62.80 21.65 89.94 85.76 65.70 60.94 2.50 77.16 7.29 47.60 53.39 22.00 37.94 20.72 -66.08 85.65 23.46 88.35 62.12 38.91 75.99 12.54 8.92 85.47 30.62 84.94 40.92 85.44 1.21 90.16 74.69 3.50 16.16 52.81 61.96 87.26 77.58 23.30 86.18 88.72 89.69 54.05 9.63 97.78 31.81 56.98 72.40 73.43 96.16 62.86 53.07 67.70 75.87 49.57 36.73 95.02 96.90 85.28 7.94 84.97 40.22 32.73 90.22 11.88 43.35 53.71 76.40 9.13 7.52 52.63 25.42 35.66 32.67 69.42 6.78 62.83 12.51 11.77 66.75 70.08 35.93 31.87 24.35 37.13 70.94 76.33 48.76 76.32 64.88 63.16 50.34 37.25 45.79 96.95 52.47 24.60 70.69 40.57 60.45 19.71 72.47 70.51 26.18 26.03 48.95 53.88 14.99 14.30 84.93 70.01 4.33 36.06 57.74 67.41 -49.58 32.69 38.07 34.37 76.00 23.44 19.56 31.99 54.27 29.53 44.10 40.71 29.89 28.35 23.77 68.72 19.56 1.94 3.54 42.85 28.08 9.87 29.18 95.39 23.58 64.34 29.09 56.41 62.90 18.21 41.76 10.57 84.68 72.60 87.96 25.78 48.39 38.22 12.40 57.57 61.63 52.94 62.02 14.24 53.92 25.81 37.13 69.51 83.57 51.25 45.30 61.17 82.32 61.08 70.91 3.87 87.44 17.96 61.61 96.67 3.05 88.34 3.05 45.99 77.30 3.37 84.95 71.08 10.56 90.20 47.76 4.23 38.12 68.26 66.34 91.99 22.77 58.23 49.04 69.08 73.26 63.56 34.91 14.24 76.81 2.49 6.12 18.78 9.29 27.95 18.97 91.02 99.26 50.53 99.36 60.04 15.01 34.24 81.82 84.44 -12.99 69.92 77.14 27.47 39.85 12.10 81.32 45.64 70.04 96.50 34.25 97.83 94.16 83.47 89.34 49.82 39.53 71.96 21.80 48.40 57.63 42.86 92.04 91.19 64.38 97.56 28.71 68.64 19.51 29.21 6.75 13.79 85.95 13.43 59.02 76.39 79.31 60.32 12.55 78.37 90.03 29.15 91.99 62.29 11.89 64.84 49.68 73.52 86.45 86.71 64.15 37.43 85.69 39.89 53.37 46.33 72.23 49.90 26.20 3.52 95.98 47.57 90.76 19.45 13.72 94.91 12.94 60.19 10.40 32.09 16.41 99.37 91.95 52.04 72.10 57.61 64.04 63.05 61.93 42.15 63.19 99.35 50.25 15.87 55.99 8.41 60.44 82.41 56.50 54.81 75.77 70.82 93.77 22.03 28.56 82.61 78.02 19.01 29.87 96.50 -93.80 74.32 95.04 37.86 12.81 72.67 58.23 99.57 40.95 16.90 71.37 42.61 75.65 71.71 67.37 2.09 88.18 49.28 87.75 64.51 57.88 69.20 6.34 85.50 22.46 14.84 65.53 89.05 18.21 0.06 2.07 42.64 48.49 26.96 59.30 18.90 77.64 51.49 34.21 0.39 76.86 70.56 34.68 57.27 16.56 13.58 65.85 61.88 45.26 59.32 36.63 29.97 8.97 78.01 19.98 43.36 87.96 33.38 67.93 59.01 87.46 66.41 10.11 89.95 48.63 85.95 88.64 9.55 55.73 2.43 73.22 39.23 73.63 95.41 37.56 60.51 4.60 84.68 13.11 72.65 37.35 29.65 31.43 31.19 90.64 29.13 36.13 58.70 36.46 48.89 65.25 7.46 43.81 1.09 3.79 45.33 2.70 49.78 80.88 93.99 -31.13 37.63 36.89 75.17 13.83 56.06 38.32 93.52 70.79 30.96 48.98 61.35 1.82 38.43 93.47 39.92 21.71 79.90 35.10 12.85 53.19 17.29 29.10 28.40 14.28 29.64 10.09 99.76 45.80 48.62 98.65 53.55 1.40 54.83 0.83 46.23 45.66 92.93 68.49 52.39 78.51 20.35 13.93 8.48 73.45 1.50 91.30 47.56 97.34 40.15 10.69 52.30 21.69 3.01 79.39 33.18 85.53 54.57 97.21 31.17 62.57 45.03 67.01 9.14 56.91 70.30 35.66 86.89 90.31 49.18 95.09 83.99 68.84 65.90 63.48 81.41 53.04 27.84 14.27 7.84 84.72 56.16 48.83 3.88 40.74 39.72 45.33 49.16 87.64 78.98 71.42 43.35 62.24 19.63 93.20 50.40 45.81 90.70 60.64 86.93 -45.20 15.82 58.72 18.27 65.22 90.95 69.12 86.02 26.32 64.61 79.84 57.49 6.49 48.43 75.59 47.01 18.11 41.71 32.77 69.86 71.66 94.56 69.03 73.21 70.67 99.79 17.13 77.40 38.72 63.91 36.33 1.56 82.63 18.78 34.22 63.29 9.02 17.34 23.17 44.87 2.80 87.81 9.75 53.05 95.93 77.57 2.15 52.14 68.85 84.70 49.72 97.73 84.01 38.92 75.97 57.32 4.62 84.47 3.82 88.43 27.89 82.03 32.53 51.50 78.79 78.71 30.29 47.98 81.19 56.87 90.62 4.88 95.42 99.06 69.95 23.76 19.38 70.93 10.48 6.25 59.46 53.30 63.05 21.93 53.55 27.00 83.10 92.01 24.63 73.01 26.79 97.89 82.72 4.27 71.54 80.77 96.15 39.01 95.93 4.24 -78.20 97.75 73.82 38.84 36.33 80.16 86.88 51.51 73.00 51.88 67.39 4.58 15.39 2.77 5.40 88.39 3.86 44.79 44.93 35.82 97.19 97.71 97.19 14.79 10.45 86.61 98.62 64.62 54.76 40.77 97.78 81.45 46.67 57.75 28.73 57.01 22.67 62.22 36.50 68.23 87.00 17.36 94.82 54.99 70.60 57.29 84.26 57.70 21.79 91.34 14.95 75.86 69.00 53.56 52.19 65.67 34.88 24.20 66.57 82.40 73.51 31.56 58.13 85.15 97.39 65.51 16.52 30.50 9.69 60.31 2.04 32.00 27.19 25.47 98.54 95.14 88.25 13.38 99.21 52.00 38.61 6.41 61.98 0.66 62.68 57.30 32.61 89.89 17.09 81.81 47.88 49.32 79.26 62.20 82.61 53.00 9.23 39.96 15.84 41.03 -14.17 85.41 91.43 56.14 9.27 84.38 57.76 35.31 48.38 97.63 10.78 14.40 47.46 58.67 38.93 47.25 59.01 15.78 76.75 59.66 16.17 68.91 21.71 99.92 99.21 62.98 71.27 11.04 35.22 17.03 31.29 56.59 56.74 9.56 66.57 18.21 29.37 52.61 40.36 97.24 28.05 62.77 31.22 3.22 31.92 18.99 41.44 58.61 82.78 97.12 84.97 57.99 46.62 30.63 83.96 7.73 62.50 99.70 87.31 38.48 80.61 53.19 38.89 46.41 92.40 54.05 2.07 93.81 48.87 27.07 3.27 93.88 33.39 6.34 98.40 76.38 69.15 83.99 6.32 46.88 8.76 60.37 82.10 25.79 95.16 70.50 47.86 87.90 97.95 12.80 69.35 80.07 8.74 80.59 69.41 76.27 13.24 93.06 40.51 9.64 -6.05 80.57 21.04 93.34 98.39 46.59 17.73 52.61 80.94 90.87 1.97 14.80 81.17 23.46 3.22 14.77 97.92 93.55 84.80 68.18 50.49 56.31 55.18 24.13 72.07 28.81 81.05 84.78 60.92 24.76 98.60 62.51 75.57 34.17 62.34 66.75 92.94 82.39 58.97 61.92 82.34 96.34 19.51 10.70 60.52 85.42 16.12 58.94 8.56 43.18 0.59 50.70 39.96 43.00 36.44 5.85 15.99 4.72 25.15 59.97 80.42 56.47 97.25 30.86 24.00 14.21 36.00 43.01 92.29 76.96 70.96 4.15 38.53 91.63 4.06 43.11 78.71 64.33 3.98 13.41 35.66 56.96 36.16 31.05 67.15 84.80 58.57 83.89 65.04 61.19 92.27 19.88 59.23 73.52 49.67 91.89 3.27 48.86 60.20 38.19 -46.06 0.09 52.91 20.34 93.36 61.90 76.65 85.90 47.16 72.48 5.55 56.49 39.69 9.32 10.78 51.47 12.10 97.98 27.49 0.52 26.76 12.16 78.77 39.95 76.35 40.44 34.41 18.88 67.87 56.96 19.81 69.94 61.02 89.94 17.22 75.11 73.24 75.82 37.82 28.28 70.72 56.73 50.66 15.61 51.18 31.64 72.05 26.47 71.48 95.09 65.16 99.32 97.53 9.68 58.66 92.96 95.29 46.09 19.84 50.79 19.06 24.62 83.50 35.18 74.47 69.14 13.04 77.42 51.25 61.33 82.44 14.21 95.52 52.49 32.77 28.64 77.96 19.34 77.41 76.76 12.55 24.13 86.71 65.90 7.41 61.83 9.71 2.08 94.23 31.22 1.64 77.95 13.11 34.92 93.93 56.06 6.62 72.34 17.15 61.35 -23.06 82.98 41.03 19.35 95.82 6.40 45.07 99.22 83.68 1.00 0.64 1.21 6.47 96.01 21.56 81.90 76.73 95.32 16.28 18.58 97.28 32.87 74.46 52.74 7.84 94.18 24.47 54.02 28.08 6.27 46.37 92.69 43.64 79.93 76.83 85.44 24.77 55.30 40.37 8.25 93.49 62.35 78.24 52.82 71.71 51.82 43.94 68.26 37.89 67.09 14.13 44.52 34.14 28.02 47.22 40.95 92.17 8.91 1.93 17.91 9.67 76.15 84.73 49.89 27.18 0.50 59.38 89.59 90.08 97.65 17.77 30.84 27.12 90.70 85.23 12.41 0.91 0.36 95.90 66.82 49.80 25.12 49.70 40.57 15.08 31.11 95.06 42.11 42.73 95.92 71.36 40.59 61.37 85.84 84.34 79.93 24.03 40.89 97.29 2.21 -31.85 80.45 25.10 65.18 87.94 77.24 30.68 28.61 77.42 68.93 31.39 0.01 31.04 2.68 82.11 86.20 17.77 41.13 14.61 92.27 72.77 20.34 90.29 16.02 47.91 30.30 77.47 43.43 55.61 56.84 40.63 66.03 68.43 29.79 45.40 95.71 45.18 90.67 34.79 63.25 19.88 6.76 50.37 35.31 97.17 88.16 42.02 86.65 66.83 71.59 52.64 15.81 58.59 2.35 5.88 4.00 66.93 68.03 43.53 67.28 9.72 65.62 79.64 37.55 0.69 12.74 18.02 80.62 2.82 3.62 9.21 26.07 52.13 60.47 32.50 41.55 61.50 80.02 51.20 84.54 71.52 67.41 29.50 29.33 8.28 93.63 97.29 35.69 24.81 18.95 40.27 63.45 43.28 53.53 75.77 46.51 85.31 27.72 14.92 32.22 -33.06 33.06 28.36 45.58 35.64 77.09 52.88 55.25 54.50 89.51 90.32 77.89 42.52 64.09 40.14 84.12 34.32 39.56 17.49 62.92 58.89 74.70 50.33 14.40 33.59 52.54 38.54 23.11 56.52 51.50 66.00 3.78 30.99 78.35 46.87 84.67 79.14 9.34 41.79 41.75 86.48 73.46 19.98 83.44 70.07 31.66 38.12 10.27 0.94 45.01 31.91 60.32 96.60 19.21 68.79 16.51 93.30 83.53 92.19 12.58 76.91 17.37 66.92 52.64 31.85 46.50 13.24 28.33 37.15 82.86 17.58 33.42 33.43 95.13 79.53 3.57 93.23 27.76 44.99 75.45 0.95 76.37 55.03 18.09 41.81 74.53 34.76 74.07 90.35 95.57 6.86 37.73 81.51 88.11 44.96 12.59 3.20 20.14 14.14 12.36 -87.85 37.87 46.09 30.79 77.20 69.64 48.42 88.13 55.25 69.11 17.43 17.91 14.01 76.34 13.68 76.60 46.54 22.80 79.23 11.65 45.59 30.58 8.28 73.09 68.37 41.40 52.46 64.76 48.97 5.80 17.64 8.24 68.82 13.27 5.18 5.03 88.85 16.94 57.12 87.96 4.57 80.42 2.73 66.17 94.70 50.48 85.61 38.14 83.25 83.19 38.50 19.57 41.28 27.42 0.66 77.34 67.42 23.18 79.09 17.06 70.88 60.58 27.77 14.07 26.98 13.10 17.86 82.68 22.37 35.97 0.37 11.82 91.77 72.30 35.58 68.72 20.51 80.27 69.14 9.03 91.03 52.63 86.59 54.14 24.33 65.29 74.52 10.72 53.59 59.31 82.94 89.55 59.28 29.56 70.37 26.90 87.92 12.00 68.62 93.20 -4.01 65.37 93.30 34.68 93.19 2.58 50.97 57.93 42.00 16.88 65.92 30.10 13.03 59.77 78.79 91.23 94.73 86.42 83.34 53.70 64.56 62.01 16.87 57.61 2.67 44.88 5.49 18.59 55.88 31.39 0.27 52.40 50.35 89.00 15.54 0.97 62.35 4.66 88.81 26.90 53.01 56.76 36.26 37.98 86.02 79.06 19.79 95.59 4.34 64.58 5.39 43.97 82.11 50.68 47.05 97.50 74.24 13.78 33.52 71.63 66.58 28.96 34.46 53.95 15.74 91.47 15.20 8.48 60.03 88.62 44.77 39.83 1.06 63.37 34.44 62.67 87.04 81.48 71.72 44.57 63.40 97.09 92.21 96.45 63.52 10.47 54.90 63.62 8.68 54.07 32.35 4.16 43.63 14.35 16.36 12.37 44.05 80.91 63.33 5.03 -61.79 62.65 39.23 64.78 31.15 81.45 42.27 50.96 4.97 31.71 32.80 51.13 74.09 20.93 90.44 58.81 49.29 62.98 19.69 59.20 76.34 42.78 50.11 28.42 66.99 35.23 1.12 58.64 32.96 42.94 82.29 44.12 38.85 78.50 39.04 75.62 34.61 64.26 57.88 61.30 28.28 19.46 10.31 13.50 76.72 95.09 30.93 12.07 98.49 13.92 13.01 91.63 94.98 49.03 59.72 5.07 20.98 77.36 3.64 84.96 14.10 68.76 25.96 74.51 91.06 93.47 23.16 56.45 25.57 78.30 25.63 87.36 94.19 3.80 79.66 3.06 60.91 32.23 27.60 54.47 0.94 47.35 57.64 19.12 31.20 83.01 37.63 54.97 58.39 32.48 4.72 80.64 73.68 78.99 37.68 77.37 35.53 61.29 67.84 78.01 -23.35 69.10 6.92 10.86 49.63 51.39 54.13 34.88 5.10 14.59 58.81 71.59 35.18 43.41 49.12 60.83 2.13 47.80 43.37 37.31 29.15 52.33 3.67 70.62 61.50 69.50 6.23 40.96 80.67 30.18 18.20 74.78 54.64 27.91 40.28 23.56 42.11 19.25 24.50 3.34 84.81 57.03 43.49 78.07 8.41 53.89 7.97 68.81 87.98 42.09 29.75 89.98 2.39 46.53 54.31 40.54 71.29 43.38 25.90 11.30 6.07 60.99 65.07 98.92 17.55 3.19 99.61 40.11 62.14 73.26 99.64 78.14 85.53 73.06 2.60 93.90 90.64 68.59 58.79 41.25 7.66 35.01 27.72 91.86 73.58 81.41 82.29 77.17 23.51 29.93 39.74 77.88 17.47 8.68 86.14 6.06 8.37 63.33 8.10 88.95 -83.68 33.40 15.30 37.02 88.08 89.09 60.69 80.15 53.82 97.64 10.80 5.41 33.63 48.32 79.28 11.64 96.47 41.14 64.78 75.87 39.11 12.14 14.68 97.15 24.83 13.85 79.73 31.86 26.09 27.85 90.52 33.51 64.98 60.79 45.94 77.84 2.55 64.24 81.66 21.46 81.05 37.73 26.26 56.10 69.78 33.87 26.79 25.86 49.61 49.54 0.50 10.06 96.90 82.90 8.06 44.73 66.86 51.41 58.03 30.84 63.57 77.49 71.15 72.97 72.05 7.39 92.33 70.04 39.88 66.79 79.83 63.43 54.03 60.75 82.19 52.55 25.81 21.37 81.75 57.26 28.60 75.16 11.24 17.24 57.08 48.07 69.06 46.02 88.52 0.16 46.15 92.57 26.25 68.93 7.18 65.12 9.29 17.98 59.56 96.73 -3.99 96.03 24.57 4.30 22.76 35.38 96.45 35.98 9.62 68.67 96.87 81.25 85.90 12.35 70.49 64.47 78.45 78.99 0.02 68.39 54.72 67.52 78.54 87.04 34.59 10.66 7.13 48.20 56.60 5.18 48.36 31.67 73.20 75.44 79.25 76.76 22.02 82.45 92.67 46.84 38.30 20.36 38.21 6.29 3.83 98.21 59.61 64.51 35.08 54.03 38.76 3.08 85.54 80.01 19.31 19.13 15.68 36.38 76.13 49.04 44.91 79.60 48.32 35.26 17.35 39.79 54.11 91.61 71.90 44.52 18.92 42.18 94.76 46.84 38.44 16.48 32.68 43.87 87.40 34.54 32.79 33.07 33.38 18.18 60.04 58.97 75.04 10.11 43.02 4.48 54.38 85.84 13.04 27.66 74.17 7.34 81.31 76.95 7.90 7.76 -47.86 81.22 54.39 29.75 41.73 51.86 84.96 95.28 22.86 35.74 7.93 30.04 24.19 29.10 41.52 2.97 17.39 86.23 26.83 40.80 28.09 49.46 5.28 84.88 44.59 34.51 67.78 13.13 77.44 24.48 88.93 68.88 21.43 69.72 38.31 74.75 18.60 11.12 17.42 95.67 41.96 53.16 53.27 21.40 55.06 62.02 89.12 92.90 75.82 90.27 52.38 55.89 67.19 61.83 72.70 1.17 32.90 60.41 5.79 88.39 3.23 63.71 84.83 7.43 96.68 67.71 36.20 42.50 32.56 8.09 36.48 48.82 46.48 3.26 68.81 0.49 2.90 35.93 76.79 68.34 28.04 68.24 5.63 9.61 65.51 99.54 98.32 36.83 94.63 54.07 81.16 16.92 97.78 22.92 88.53 20.03 15.28 84.95 37.33 14.75 -50.48 59.03 6.55 38.60 24.12 6.23 0.14 84.92 31.58 51.43 52.34 52.37 47.87 52.99 45.37 5.28 74.74 41.08 34.41 46.49 60.22 42.58 52.06 88.93 58.91 15.83 6.85 72.82 36.49 88.55 7.28 58.51 47.18 18.31 11.45 73.67 81.59 71.86 86.19 30.70 6.19 18.36 10.93 97.32 58.06 86.25 6.89 90.85 7.76 10.14 47.33 82.31 4.37 35.14 72.08 2.45 43.21 18.44 1.94 6.77 87.64 94.15 2.65 23.04 35.37 18.48 63.31 86.46 91.62 27.64 51.53 74.67 7.58 26.00 52.04 37.37 71.41 8.95 42.83 22.53 88.51 15.29 23.38 83.51 73.36 56.09 4.93 70.71 93.01 69.67 66.06 23.70 65.33 55.64 71.00 29.17 6.94 32.16 52.83 81.43 -10.89 28.00 90.03 97.43 37.31 35.06 64.07 33.80 27.74 43.19 5.54 66.84 9.43 53.49 44.76 87.58 85.13 11.25 46.71 22.98 87.62 70.63 97.45 50.41 41.91 96.53 14.55 23.83 14.89 9.48 98.94 91.93 69.73 59.22 75.85 68.01 78.22 94.17 4.66 11.67 55.48 19.30 7.80 99.46 30.92 92.78 37.16 20.63 28.20 13.61 10.02 24.45 96.52 73.93 30.41 20.22 58.74 92.93 22.78 33.04 30.99 28.60 92.85 47.88 80.48 27.55 92.99 53.96 41.37 70.64 18.35 86.49 60.97 23.59 52.11 2.74 42.48 15.79 84.34 8.07 89.40 24.74 32.59 77.54 63.16 21.51 9.02 51.73 44.48 48.57 58.55 29.94 64.71 46.89 29.83 25.90 9.97 44.62 22.20 19.07 -43.14 90.16 78.20 56.23 76.25 69.28 44.96 70.41 93.87 63.43 10.53 54.74 66.74 44.29 47.61 50.18 82.42 45.62 58.25 76.78 47.77 39.67 43.80 3.26 98.64 15.86 42.77 15.29 19.07 52.30 66.58 99.91 69.71 40.57 45.75 29.42 98.80 54.22 87.40 57.95 70.41 6.62 27.12 11.27 88.89 51.03 90.92 39.69 64.48 9.14 8.34 33.22 26.25 15.32 53.49 71.08 76.50 43.19 49.67 69.20 86.41 54.12 83.75 61.38 62.83 20.19 87.66 95.27 1.39 80.37 0.80 57.41 45.62 41.39 22.51 65.33 55.58 40.64 27.44 49.69 14.40 47.91 80.54 7.96 14.96 54.88 64.95 12.71 9.30 42.79 47.96 48.41 75.71 22.35 64.27 93.67 14.87 43.39 88.64 22.38 -76.56 70.06 39.81 36.90 52.01 20.31 38.29 93.15 21.25 71.44 76.10 34.29 11.40 41.89 21.36 83.73 27.58 1.69 76.30 91.14 55.18 75.20 46.48 19.73 76.32 14.94 90.60 56.64 80.17 21.17 41.72 94.51 9.33 76.57 2.66 96.75 56.90 81.00 43.97 24.70 46.83 17.75 58.33 26.37 44.62 1.52 91.56 98.75 19.79 79.83 63.44 25.57 93.73 40.58 32.79 18.69 91.12 1.63 69.05 19.49 67.09 53.51 41.56 19.39 86.56 76.66 78.70 0.12 63.58 71.88 93.09 21.06 99.10 31.32 72.33 22.19 53.58 91.07 12.88 18.35 58.19 36.17 33.01 6.32 56.48 21.16 14.91 72.23 9.15 13.75 99.52 78.46 10.72 50.37 23.71 39.98 43.52 6.80 26.02 23.81 -45.32 69.79 90.35 36.23 56.97 42.16 20.41 51.70 39.63 80.95 12.26 35.07 19.70 62.21 98.50 43.21 25.34 6.41 45.02 99.79 4.63 25.61 51.35 59.37 61.70 55.33 37.94 98.51 74.93 16.67 3.27 56.33 47.64 54.37 96.35 31.90 77.89 34.21 78.51 12.14 67.50 86.20 98.48 16.08 24.10 75.93 87.44 39.04 61.15 26.62 66.85 94.43 71.97 20.56 98.51 60.44 22.88 54.08 51.00 7.44 74.63 91.18 3.74 7.92 1.45 59.62 0.24 92.01 36.50 57.47 17.06 74.90 48.52 37.51 83.38 25.66 37.80 33.79 27.62 76.37 2.71 42.42 1.73 91.89 95.78 1.66 57.20 52.96 31.94 72.83 36.41 84.10 39.64 0.37 2.42 83.60 48.94 95.58 38.88 44.51 -45.55 26.51 70.85 25.12 80.76 75.35 44.42 25.86 83.49 69.40 4.62 34.27 22.35 41.40 51.43 97.63 15.53 36.32 91.53 45.54 33.80 70.28 21.33 20.56 57.39 85.98 49.77 7.38 4.46 47.93 56.29 48.56 80.08 5.80 22.68 82.55 34.80 72.13 22.19 25.62 85.49 91.06 83.26 95.39 82.77 84.11 69.80 71.74 54.18 65.47 42.54 5.92 53.98 40.85 60.05 26.95 73.73 99.41 7.67 56.58 51.76 79.94 35.06 96.03 5.64 94.54 9.08 47.94 37.56 19.45 44.81 12.96 2.64 28.01 61.93 25.27 50.85 61.74 4.56 38.43 64.78 85.99 44.22 54.76 39.48 55.91 89.61 10.07 94.37 50.05 99.71 36.66 57.80 27.94 29.59 75.24 61.58 96.40 68.86 31.04 -95.47 57.46 22.59 96.98 10.05 28.57 20.47 5.02 73.59 13.17 16.45 58.55 95.81 79.24 95.77 27.15 63.64 55.35 39.24 47.30 72.96 84.71 11.17 9.72 91.00 42.06 82.36 61.35 66.05 67.75 14.36 88.71 50.66 4.51 72.77 37.00 70.03 77.27 71.22 66.51 97.13 70.31 25.82 99.77 8.34 22.49 61.05 35.40 39.84 2.62 64.56 89.36 37.90 89.94 64.06 2.76 81.94 34.76 31.13 58.99 76.65 3.80 13.14 49.01 22.21 80.71 59.63 82.16 31.52 77.11 82.23 90.13 75.86 61.24 21.08 66.71 75.80 52.31 40.98 7.57 38.14 32.00 36.80 95.55 25.42 5.34 96.08 31.16 9.76 81.15 90.86 53.79 79.34 38.71 6.84 75.10 5.97 53.67 12.59 91.22 -7.37 24.00 8.05 23.17 35.07 33.17 6.74 50.36 26.81 99.83 72.95 96.16 9.16 58.08 58.08 43.26 3.10 70.05 40.49 38.21 52.28 13.65 85.29 47.72 73.99 51.29 39.59 10.22 44.23 6.23 93.36 26.21 66.71 86.67 23.62 3.24 97.21 52.25 23.23 41.35 32.15 89.89 62.80 42.91 54.32 78.30 56.08 18.62 94.22 72.64 99.34 90.88 40.31 19.26 67.49 11.03 55.16 10.13 32.69 9.97 28.73 96.25 36.28 93.82 85.59 46.15 67.82 32.98 96.62 26.23 91.34 56.18 96.85 4.52 41.96 82.08 50.39 58.23 31.65 86.94 21.33 32.94 75.24 88.10 49.01 8.05 20.57 99.16 88.38 25.88 23.75 18.36 39.79 38.74 51.53 60.96 78.66 33.06 16.99 16.63 -81.05 46.52 44.18 91.56 4.44 20.41 0.26 86.51 61.21 7.50 56.33 41.04 7.27 86.03 34.63 46.44 61.21 96.81 24.46 73.95 16.37 65.35 0.16 9.85 54.95 38.64 72.11 12.45 6.24 74.23 48.81 27.96 73.09 33.81 27.40 27.65 51.19 95.93 38.15 61.36 47.47 38.54 64.87 74.82 16.70 49.98 4.29 55.75 14.10 97.43 50.73 94.17 17.88 75.22 93.06 85.06 74.92 89.84 94.52 41.62 65.17 10.71 94.20 67.26 28.20 12.08 23.64 27.56 87.98 15.24 52.11 11.37 41.93 6.91 44.65 35.24 64.76 60.44 11.55 99.65 95.57 55.95 77.65 26.37 86.80 46.15 32.48 72.89 80.88 33.88 6.07 3.20 32.82 89.16 77.97 53.93 51.15 63.18 18.15 25.19 -32.39 2.19 40.35 97.18 42.29 95.24 38.26 71.71 45.61 78.91 33.16 83.10 8.84 5.65 26.90 75.69 23.32 54.69 58.43 93.33 37.65 48.15 17.63 78.24 94.99 78.46 5.44 69.39 59.49 45.27 25.27 0.22 25.86 21.54 57.24 84.00 22.27 40.30 41.34 40.08 2.24 42.04 73.18 21.49 51.15 61.04 62.50 29.95 91.79 56.82 35.07 78.06 30.61 96.83 40.06 29.07 16.92 79.90 66.10 75.22 6.17 3.62 55.02 36.58 33.32 79.59 43.81 67.70 61.73 91.18 13.90 71.34 40.39 29.47 43.17 76.87 1.85 27.63 41.65 46.19 0.29 96.19 5.14 11.49 1.17 95.01 75.46 72.18 14.99 93.99 74.99 35.81 92.55 84.63 0.77 7.86 58.47 54.46 67.00 14.03 -83.30 55.27 9.33 99.07 95.31 56.46 66.43 92.39 44.83 43.34 13.60 80.21 6.37 0.87 9.85 29.75 20.17 25.84 5.15 7.30 73.61 32.73 57.10 50.85 43.06 35.05 88.67 47.93 32.54 44.29 5.04 27.33 43.66 36.18 37.10 43.18 73.25 16.35 80.68 72.57 73.28 35.88 51.89 83.06 97.23 79.62 10.27 67.35 60.84 7.61 92.35 48.24 87.27 0.46 23.27 72.87 53.19 90.36 72.81 97.30 60.49 54.44 39.08 80.39 55.35 20.25 41.33 26.13 76.68 99.22 21.73 46.78 9.28 54.80 37.77 71.02 5.21 32.76 28.07 78.74 13.98 70.91 18.93 74.69 32.14 48.75 63.31 85.94 76.06 26.27 30.52 20.33 34.77 95.62 96.42 6.80 42.64 94.78 26.73 29.41 -38.13 50.65 31.60 28.56 24.83 90.51 72.28 66.57 72.49 28.50 33.76 71.40 57.20 6.70 48.43 73.71 74.23 32.37 89.75 34.38 96.21 41.55 72.85 83.37 81.44 36.48 80.29 30.41 40.31 46.89 76.51 17.05 58.03 16.57 12.21 53.68 20.62 61.27 41.73 17.06 73.32 38.71 90.60 51.91 47.80 78.95 42.80 19.64 87.22 78.27 50.19 66.50 49.22 83.04 15.57 74.03 21.21 37.87 67.13 82.60 54.46 89.97 22.69 29.83 46.51 3.45 41.09 83.84 98.77 61.43 78.10 53.67 1.63 73.35 15.62 29.48 97.15 26.41 12.93 17.05 87.59 87.28 92.07 3.15 1.30 77.02 39.42 46.52 41.88 40.15 86.95 16.95 27.42 77.92 62.33 26.60 48.74 52.86 33.32 44.99 -11.08 15.27 30.04 80.27 29.17 57.21 33.24 11.83 60.72 73.32 87.23 14.37 97.67 29.22 3.13 58.41 34.22 77.94 79.47 28.77 35.19 78.31 41.00 81.11 57.42 92.67 37.03 64.73 71.41 43.97 54.88 71.02 29.61 95.58 61.28 99.42 0.35 46.46 70.97 59.79 74.76 26.10 89.81 42.21 17.90 86.50 65.90 42.20 19.67 24.03 76.91 41.77 77.88 1.41 19.17 85.38 27.59 83.70 83.28 3.50 52.30 64.74 57.44 28.16 15.64 36.88 7.72 94.34 20.89 52.29 40.11 50.10 71.64 67.09 3.65 78.63 47.70 89.27 5.21 99.77 32.92 55.36 71.98 54.61 90.28 57.04 66.82 41.66 67.32 78.44 24.24 92.24 23.79 79.32 83.00 34.46 28.44 77.92 62.40 26.66 -59.93 29.19 3.00 0.53 2.59 20.60 66.18 67.43 18.96 15.10 7.08 63.53 10.47 27.01 20.98 43.09 27.58 19.94 66.06 11.84 94.05 97.65 80.68 18.32 16.87 94.73 37.91 93.17 22.44 30.59 70.86 82.21 34.00 13.89 57.05 34.65 59.25 0.02 21.61 24.28 69.41 79.31 59.54 18.53 79.98 37.80 25.93 35.51 33.84 93.34 28.32 27.55 73.30 6.70 45.18 36.41 53.57 81.10 32.70 8.10 24.67 43.00 90.85 95.33 40.28 54.54 5.70 33.21 15.79 81.48 61.82 58.63 6.92 80.24 29.69 15.60 54.59 10.06 74.00 86.48 53.24 45.98 1.99 62.77 12.56 61.31 82.91 15.42 20.52 11.19 54.16 36.94 36.37 42.05 58.09 73.59 59.58 60.15 99.23 17.66 -57.13 82.22 50.15 43.17 84.37 35.94 27.54 79.30 72.41 21.64 41.95 80.61 58.06 38.51 23.91 35.99 18.14 89.61 91.61 49.87 22.14 28.44 32.10 0.87 72.60 16.92 10.51 66.54 75.93 1.40 88.54 58.88 11.92 88.76 28.04 88.35 42.71 97.17 40.73 15.62 85.63 92.13 13.26 40.43 37.18 51.99 70.21 21.30 79.61 79.99 43.83 80.58 47.18 37.39 8.28 14.10 9.68 82.87 41.25 10.95 55.49 60.24 98.01 72.18 2.93 15.08 36.27 45.42 19.89 3.39 5.10 44.76 55.10 87.65 8.89 11.38 24.07 62.87 11.33 66.29 66.94 26.73 33.08 23.54 36.70 28.35 58.48 14.32 82.71 97.38 12.30 71.39 38.09 57.13 81.86 28.94 96.46 50.44 54.48 33.10 -13.34 98.67 24.98 90.97 35.69 22.14 83.10 66.11 30.52 1.65 13.59 20.83 13.50 11.30 1.79 5.99 99.42 76.93 13.12 81.53 52.80 1.96 23.77 64.20 35.79 33.20 39.64 42.22 28.92 34.54 21.95 72.84 3.33 43.62 41.05 79.29 75.17 29.86 3.74 66.33 97.00 66.37 90.67 19.54 52.82 9.49 37.98 44.81 34.96 71.86 43.19 51.32 26.93 29.42 29.55 65.44 14.35 91.84 9.97 22.71 70.45 17.15 45.06 60.58 21.81 63.33 55.50 56.78 34.54 34.18 32.40 32.47 25.75 5.21 17.73 79.82 14.44 4.07 67.27 58.31 48.52 95.34 50.31 6.33 2.06 69.17 22.86 6.57 9.80 64.64 49.28 81.11 65.50 52.73 31.43 53.59 37.53 76.96 40.32 29.26 -8.78 35.96 56.17 62.37 90.56 97.73 42.36 14.68 91.99 82.76 18.12 54.85 39.24 43.41 84.57 18.66 30.23 51.10 64.17 90.40 38.37 19.49 74.15 50.81 85.50 43.79 41.03 79.97 21.62 74.37 65.21 41.94 43.35 33.54 61.65 65.30 0.39 89.93 45.86 74.67 2.76 73.28 42.69 3.90 7.09 1.07 51.99 7.05 59.13 10.77 13.40 24.64 88.57 50.28 44.10 0.48 97.58 38.68 61.70 22.20 42.36 16.59 20.26 25.27 65.38 19.03 97.57 10.62 1.98 27.28 97.02 81.21 95.49 88.11 36.20 25.47 50.19 26.42 94.49 62.54 78.63 91.34 87.89 73.58 46.60 40.37 77.33 12.87 85.65 18.24 11.45 62.87 52.21 51.65 51.75 96.26 17.82 78.66 4.68 86.55 -15.33 67.61 45.09 56.75 88.92 13.93 62.73 4.24 64.72 98.43 37.35 45.46 59.28 94.72 50.19 93.43 60.05 27.81 80.94 54.55 11.04 14.96 41.26 79.67 76.98 68.77 10.16 91.21 79.06 23.69 29.19 81.33 34.91 57.57 61.40 56.92 28.06 80.53 15.25 45.78 91.18 95.95 19.39 82.43 9.20 64.42 22.53 2.55 42.58 27.60 59.32 70.78 90.35 86.58 55.28 77.38 58.90 29.57 76.68 57.44 46.09 78.11 97.18 78.83 90.07 74.42 17.32 31.77 9.98 1.60 71.58 17.74 21.80 5.08 36.51 9.36 72.33 29.60 88.01 81.35 51.55 97.34 16.15 59.97 95.15 1.57 96.42 70.22 61.21 88.19 62.04 32.47 79.04 59.51 84.17 63.91 91.61 50.31 54.50 24.33 -89.95 31.42 81.72 44.12 5.58 61.49 56.46 18.96 36.19 71.67 43.35 70.15 32.08 54.60 63.78 77.40 26.79 60.91 69.32 88.65 0.63 66.36 36.24 70.88 94.02 51.89 78.68 24.19 35.10 89.29 93.32 70.89 41.41 73.51 52.89 58.53 7.81 18.08 36.58 85.21 76.54 29.07 1.94 9.43 5.04 2.58 88.83 53.66 55.24 64.57 12.48 51.46 93.10 15.64 36.97 77.12 68.59 35.92 34.36 24.75 30.50 48.40 26.63 0.23 87.02 33.62 7.04 34.15 42.37 46.36 96.27 92.74 91.94 13.18 95.31 93.51 62.32 5.43 77.80 28.36 23.65 42.37 12.22 95.46 84.77 47.63 49.46 94.17 46.07 53.72 20.03 55.16 53.58 46.59 70.59 88.80 56.65 23.29 11.24 68.75 -50.78 7.02 51.20 82.94 94.10 24.86 29.56 66.79 54.15 69.07 77.50 59.31 48.98 71.31 51.49 73.27 87.44 18.82 82.31 41.75 27.87 67.24 27.35 17.80 37.80 49.54 11.45 64.33 35.28 12.03 20.69 78.39 99.14 92.63 59.38 95.10 68.80 89.90 97.58 15.10 38.09 86.41 28.77 76.34 45.17 84.79 5.36 9.33 67.25 55.59 5.00 3.09 1.03 20.17 97.04 11.25 12.25 22.98 6.78 29.23 41.43 26.88 79.18 1.43 52.73 0.39 24.51 19.03 98.00 35.97 77.30 45.82 82.84 88.06 66.10 70.16 29.54 90.19 72.50 21.46 44.95 43.42 13.26 40.89 62.02 13.61 30.52 47.41 7.21 31.47 91.72 41.88 92.05 12.38 77.38 9.54 71.93 61.83 80.70 75.37 -13.71 82.36 86.82 20.84 86.36 56.09 95.78 89.80 36.91 64.02 20.77 31.14 43.11 15.84 82.08 79.50 82.60 17.61 34.53 64.65 43.44 19.51 73.83 82.11 93.58 64.59 83.37 78.17 74.79 0.76 75.98 49.60 83.01 5.04 40.90 58.28 61.47 69.29 78.76 61.64 91.55 71.18 56.30 54.49 85.11 62.32 18.52 80.05 95.67 65.83 55.94 83.10 48.63 90.55 25.86 48.52 33.27 51.10 59.60 50.84 87.85 38.76 32.88 92.24 93.90 13.50 10.73 35.80 31.57 17.22 89.72 22.28 3.48 73.40 52.18 76.28 45.81 55.55 47.94 6.15 72.28 62.90 42.78 50.88 16.72 76.27 48.50 99.73 89.96 76.54 0.34 47.70 59.32 25.59 48.56 63.15 14.05 0.63 95.01 59.63 -50.02 78.48 93.74 52.35 64.45 56.74 11.23 45.34 0.11 65.23 84.55 32.41 22.05 25.39 8.84 45.01 45.99 69.84 71.39 80.95 25.65 50.88 86.25 84.38 91.40 38.25 83.49 63.47 85.05 30.61 62.70 29.05 44.22 43.95 92.09 40.03 98.31 66.64 44.63 24.74 93.63 2.33 61.99 84.33 26.75 23.58 75.22 82.55 12.59 3.97 5.68 36.41 62.85 69.73 55.20 53.58 0.00 72.66 78.82 40.70 59.28 86.93 0.45 49.97 67.54 77.37 34.11 46.41 73.22 37.67 78.90 22.34 75.33 82.61 87.30 45.79 44.72 66.85 84.92 97.19 42.88 37.58 10.25 41.86 48.83 5.84 0.51 98.37 38.81 13.57 80.36 85.17 55.69 32.39 88.70 60.55 75.60 82.84 23.61 7.79 -90.18 45.54 62.74 83.29 11.53 30.35 85.15 71.90 7.20 43.64 47.43 41.56 69.83 21.83 15.14 81.51 79.17 96.94 95.81 44.31 49.94 1.72 79.10 57.60 77.34 52.50 94.97 91.74 11.47 55.40 83.90 74.81 25.64 66.68 27.30 29.22 44.08 11.84 36.20 97.70 25.18 13.41 31.47 83.06 81.06 51.22 31.09 82.14 16.23 78.22 20.63 17.70 96.21 4.17 96.81 8.05 26.70 71.65 67.54 77.10 43.55 14.35 80.51 0.44 20.42 81.04 25.09 31.42 72.97 88.57 82.87 76.25 21.85 3.64 12.54 58.93 25.09 54.20 2.68 25.55 6.18 5.57 94.38 81.39 51.82 70.89 11.37 48.36 27.27 22.27 99.81 64.36 48.24 50.13 73.78 24.79 15.51 62.29 45.15 59.83 -12.48 12.51 38.62 73.78 86.23 4.64 55.38 84.19 64.19 13.77 64.64 12.51 69.52 10.65 76.49 68.59 11.81 67.47 19.33 60.44 82.54 90.47 13.30 66.87 9.25 41.21 28.28 53.78 85.73 1.22 38.43 60.09 66.92 92.30 13.30 4.97 10.38 10.72 39.02 59.63 95.38 4.49 66.80 35.94 25.62 17.88 69.97 61.26 88.15 50.34 32.53 85.88 94.22 54.79 31.47 98.37 15.81 25.39 53.44 26.65 76.24 38.19 56.99 70.56 61.87 91.15 56.76 0.30 65.77 70.21 45.48 74.85 30.99 36.38 3.60 41.98 30.23 9.82 82.92 72.25 48.34 24.14 7.36 18.09 54.49 70.48 99.86 37.89 11.13 66.48 26.69 0.87 49.79 97.31 54.41 86.40 28.60 52.16 87.89 2.21 -51.98 20.68 48.95 75.58 74.75 70.77 61.04 7.93 96.86 98.69 31.37 99.96 68.09 99.11 53.98 98.79 21.63 88.38 49.45 13.57 40.10 75.63 74.39 20.84 51.79 27.94 75.13 36.87 89.58 68.52 90.01 27.87 50.47 17.10 24.36 24.98 3.95 25.46 64.79 82.38 78.40 97.76 46.56 19.72 11.75 57.68 89.19 27.04 26.93 81.78 25.12 9.23 47.47 29.34 58.97 68.57 80.19 35.19 73.99 20.03 57.08 43.34 6.28 64.04 8.17 44.38 69.16 73.69 32.79 58.83 53.35 74.61 85.95 10.89 82.64 59.19 29.62 46.19 4.95 28.11 2.18 27.13 73.47 36.39 83.45 60.75 95.87 27.36 8.43 99.74 59.13 8.88 41.71 71.59 9.73 93.05 77.02 16.08 4.82 47.33 -30.26 17.34 35.57 62.56 69.10 26.95 74.00 59.17 90.16 1.52 27.56 89.68 60.56 21.46 33.00 81.80 4.87 89.72 95.89 23.43 30.37 54.60 21.47 43.37 30.76 7.65 61.45 86.27 82.71 56.57 81.01 75.37 15.99 4.11 24.54 35.77 45.08 21.94 89.48 40.63 4.03 42.50 86.05 69.35 35.45 31.88 65.38 52.92 45.07 99.01 97.33 3.80 74.65 69.64 92.09 8.77 19.41 57.33 75.37 99.01 57.63 8.87 18.52 62.41 37.14 60.25 87.64 48.74 90.49 30.28 26.15 1.67 88.13 15.53 92.09 99.16 80.94 77.48 52.99 10.46 51.18 78.13 30.75 92.55 23.81 40.59 44.22 34.99 15.43 43.61 85.06 39.66 4.87 37.60 41.66 60.09 42.21 8.50 97.41 57.44 -70.57 40.03 80.03 41.49 5.66 6.35 6.76 9.95 65.87 50.87 48.88 42.09 0.50 42.97 15.73 42.99 2.34 87.12 81.77 1.70 40.50 61.77 78.62 32.75 72.21 53.55 47.68 71.71 27.93 90.95 64.67 75.50 29.69 30.79 94.01 40.50 71.17 35.78 39.94 1.54 67.68 70.77 32.63 29.61 21.52 77.38 74.07 20.88 25.26 54.62 45.11 38.60 60.54 63.37 65.44 1.30 5.34 31.59 34.54 37.41 33.55 31.75 59.60 18.03 86.48 29.80 48.10 20.13 69.43 31.23 16.02 66.13 23.50 12.38 83.29 64.00 3.20 68.35 33.94 8.93 5.16 60.21 89.49 81.60 76.83 11.11 11.30 36.08 19.56 13.41 11.09 80.02 79.98 5.47 50.64 53.07 13.16 34.55 1.35 12.60 -91.79 83.06 61.37 48.20 40.35 86.33 69.76 58.80 57.76 8.04 69.00 4.71 56.35 28.93 6.62 31.06 88.67 21.57 85.09 27.61 77.66 43.25 20.56 10.40 45.06 19.42 9.07 91.41 91.27 56.28 69.66 50.94 91.78 96.19 39.25 40.51 43.26 39.75 90.55 52.74 75.46 55.42 23.03 23.12 59.90 65.02 36.85 40.84 40.99 31.91 81.13 36.16 83.34 58.37 79.30 46.10 89.26 40.06 54.38 14.45 42.33 85.27 58.05 29.66 40.97 26.16 77.18 10.48 99.21 14.83 48.92 94.55 16.56 38.56 61.83 3.33 79.55 1.35 67.91 55.41 57.12 58.00 32.47 82.62 47.70 75.24 55.53 62.08 25.82 26.64 40.04 88.67 84.07 62.68 33.36 75.70 36.92 84.63 98.98 70.76 -41.37 92.68 54.88 54.31 81.56 43.25 45.47 54.79 69.47 49.49 43.19 68.79 91.41 1.94 83.71 39.06 99.03 17.12 48.43 51.08 96.02 97.95 43.41 26.85 25.69 85.44 0.79 77.59 87.16 91.96 5.34 99.29 98.09 39.61 92.88 78.63 3.95 68.89 98.95 80.80 0.56 0.11 58.12 9.95 50.67 87.41 97.87 35.77 52.97 37.19 41.77 16.87 74.80 80.00 86.08 96.94 41.07 50.83 94.99 26.77 24.94 16.49 5.92 18.91 36.19 21.02 37.97 85.84 68.19 24.54 60.12 81.96 23.51 72.35 28.95 52.17 2.89 34.61 20.24 65.19 53.74 3.63 3.76 65.29 10.38 5.34 50.24 10.85 85.89 95.86 99.48 19.65 72.16 22.29 5.86 27.30 98.18 14.16 58.74 97.56 -28.57 21.23 22.76 46.05 15.34 50.12 64.34 68.77 96.92 12.82 59.35 51.07 20.13 7.86 53.19 62.99 52.04 81.46 74.38 53.14 89.59 3.63 2.34 70.08 24.08 40.66 38.32 1.86 88.41 63.19 15.27 48.64 31.17 58.18 22.19 2.88 60.84 91.82 48.01 73.35 89.25 0.25 78.38 32.68 43.86 65.61 82.60 13.06 75.78 36.86 51.91 98.45 96.13 20.13 7.50 35.35 75.16 52.26 21.91 48.91 18.48 32.86 70.73 91.17 96.15 53.18 43.59 56.10 28.62 0.95 42.86 74.08 6.74 28.99 99.23 11.28 86.29 38.25 18.03 25.22 22.88 58.56 79.24 14.53 21.23 24.90 80.99 82.25 44.88 13.96 91.42 27.85 44.55 20.68 2.19 47.58 56.48 37.99 15.12 85.42 -45.39 74.43 3.17 65.11 14.66 41.72 65.57 8.83 48.68 48.19 11.01 78.98 54.88 58.53 6.17 59.76 97.16 56.26 74.78 16.72 26.74 34.43 51.58 91.81 55.31 24.94 21.84 17.08 80.48 17.49 13.80 79.46 51.56 2.98 89.36 64.66 37.12 59.89 39.81 72.46 5.32 34.72 98.88 93.50 11.76 71.17 72.76 0.94 5.15 28.69 37.08 93.52 36.00 75.72 81.25 97.27 80.85 62.34 48.46 37.81 60.11 34.47 40.07 48.62 5.74 89.29 47.44 3.91 79.92 70.01 49.25 12.55 66.99 32.71 95.42 28.61 75.40 86.32 30.24 81.10 48.44 59.73 25.17 42.16 74.77 37.76 56.82 29.29 80.18 19.30 28.28 87.87 53.68 48.94 91.73 87.57 65.91 37.07 37.34 56.39 -23.89 76.39 39.89 2.75 34.09 2.20 6.85 42.86 51.84 95.41 39.07 37.20 46.41 1.60 66.18 17.20 26.26 3.62 43.84 46.39 33.53 53.69 89.65 96.69 80.77 16.57 46.95 69.45 99.14 97.54 11.03 14.93 98.11 84.72 40.36 44.54 16.26 80.72 96.52 69.93 20.65 40.72 23.98 32.90 27.20 15.55 66.94 26.05 10.84 34.26 65.66 83.39 82.58 60.42 24.50 79.53 82.40 47.05 79.99 37.77 40.07 88.20 71.28 79.07 87.21 66.56 46.31 9.31 99.80 33.18 30.44 64.92 72.98 67.72 90.67 72.65 91.77 71.28 9.74 90.66 49.74 11.97 5.00 90.80 38.99 86.87 99.26 57.75 63.58 84.59 61.51 81.22 98.45 94.65 14.46 65.70 87.15 14.00 22.99 51.89 -65.85 86.69 15.17 39.68 45.66 66.77 49.33 41.12 88.26 34.68 89.53 51.54 88.57 59.24 23.15 39.75 82.28 48.04 28.09 55.92 62.95 81.85 73.62 94.39 43.80 65.37 51.57 98.02 54.60 15.66 71.16 11.38 84.64 52.61 75.41 74.29 79.23 70.07 55.09 41.54 15.79 82.47 49.79 5.82 9.51 37.37 84.38 72.15 98.65 35.07 13.25 30.06 75.97 17.44 30.11 40.99 94.02 12.65 11.02 3.31 79.87 72.23 13.38 74.70 72.42 0.51 91.68 33.19 15.62 97.25 4.22 55.88 46.97 43.29 70.39 74.75 78.92 85.59 82.91 33.77 82.95 71.36 14.00 0.25 95.91 80.58 98.26 43.73 26.47 7.04 89.63 88.81 79.51 27.12 40.49 55.33 30.33 72.20 54.57 40.92 -30.26 81.95 78.32 68.24 65.10 94.68 92.99 70.06 22.04 57.73 78.66 96.36 30.14 78.63 14.91 58.18 19.29 57.70 42.30 81.13 42.68 99.07 31.17 40.61 93.79 18.82 62.51 1.68 29.92 33.08 14.02 57.14 90.03 92.48 49.61 48.40 81.60 27.31 65.35 85.85 51.76 92.06 99.72 38.04 48.43 1.53 9.14 19.93 25.10 35.55 7.99 45.12 71.42 70.45 17.62 86.65 49.76 82.27 61.27 5.90 72.88 98.19 43.35 67.86 42.94 64.60 81.08 77.10 25.13 67.93 72.74 96.90 87.39 1.97 33.73 7.71 50.03 80.84 37.51 14.48 70.52 95.02 4.65 6.58 1.37 26.26 63.49 14.77 80.85 39.25 97.28 18.04 14.13 73.06 13.35 98.65 73.10 11.30 0.38 89.12 -56.14 77.92 30.46 38.42 3.81 1.90 27.06 96.85 65.48 46.76 74.11 34.28 64.06 4.41 35.69 55.61 16.36 58.60 99.37 27.34 92.32 99.51 93.93 67.15 93.81 98.77 81.78 65.00 89.61 64.12 52.28 20.24 24.90 38.04 96.20 30.65 84.43 15.11 79.45 7.08 80.23 81.08 54.48 8.30 64.98 55.96 92.43 51.88 88.25 35.04 21.06 78.63 66.64 19.29 4.29 3.75 86.93 2.82 45.36 25.32 53.81 53.07 7.92 37.29 24.65 82.55 40.54 38.57 59.18 69.14 25.58 3.16 86.19 9.33 73.01 85.24 74.22 24.78 89.49 10.05 10.21 30.39 97.12 54.83 93.03 74.69 20.20 37.34 53.79 96.66 56.14 46.90 50.08 63.11 48.65 16.79 16.27 23.98 41.29 69.85 -69.49 85.64 71.99 50.24 13.53 15.46 0.60 32.51 47.35 24.56 99.40 74.64 42.95 83.80 92.54 68.18 3.82 51.40 13.61 44.16 8.10 76.33 25.60 45.26 61.83 51.75 5.64 37.64 43.05 77.72 21.87 9.02 96.32 28.85 69.80 32.24 26.10 32.99 93.92 98.36 20.40 90.43 78.20 13.47 58.59 21.94 22.76 4.14 51.64 72.88 25.37 51.97 34.48 46.72 61.23 97.63 55.74 76.11 55.01 0.23 26.24 53.97 3.78 39.59 41.55 71.65 12.36 29.70 19.60 79.20 17.28 18.55 55.40 15.49 70.39 44.00 77.60 10.31 87.09 9.72 53.67 16.12 92.11 51.42 25.52 27.14 62.87 50.47 40.30 70.78 95.53 88.91 35.39 8.31 50.44 13.32 15.99 60.67 0.23 34.10 -22.62 24.98 98.93 46.65 15.15 30.07 47.25 89.73 32.90 29.64 80.43 41.32 36.26 67.43 95.23 82.42 72.07 66.50 52.47 41.74 18.02 54.40 29.47 69.10 75.32 56.28 19.41 15.63 10.68 6.62 51.74 13.34 3.84 67.22 22.87 46.80 8.68 12.75 76.38 19.94 70.83 42.94 21.14 39.60 4.29 72.14 12.18 15.35 87.39 0.63 43.59 98.61 32.32 29.76 97.06 95.08 1.42 70.36 76.47 14.23 26.81 51.88 94.53 21.93 62.86 1.27 71.72 91.85 99.43 35.26 25.18 25.53 98.41 20.68 47.62 43.54 77.76 17.08 17.43 30.35 36.50 92.65 89.97 0.28 58.25 4.92 25.33 85.12 58.62 44.42 23.19 62.55 98.68 63.31 10.68 80.35 42.39 94.31 41.15 28.97 -2.74 50.37 30.42 39.71 96.92 78.98 20.89 18.01 25.07 15.61 21.34 62.64 78.06 74.42 47.33 92.52 38.97 72.43 93.08 88.25 20.57 88.33 36.17 73.48 42.84 93.17 82.75 99.44 48.82 85.45 6.51 63.44 87.44 14.19 65.38 93.43 83.97 11.39 31.11 15.75 37.67 97.26 73.10 30.24 12.83 13.83 36.06 84.79 58.39 64.11 69.70 33.84 35.74 78.15 31.69 91.95 41.18 85.64 1.63 53.61 53.64 58.46 79.91 11.59 88.01 24.75 74.29 13.31 46.19 2.74 27.63 32.18 62.26 90.24 22.35 28.54 10.57 14.41 72.21 74.28 9.90 88.61 46.46 73.75 12.86 13.82 81.06 37.94 85.83 79.65 71.57 78.58 45.57 81.08 96.01 8.28 81.08 32.59 71.82 26.90 -27.28 0.19 26.98 14.00 20.89 48.81 55.11 17.71 76.78 40.16 78.54 44.78 75.82 88.33 8.73 95.70 95.52 92.74 38.73 8.57 95.54 42.54 2.47 70.37 49.77 31.09 82.91 52.15 74.96 63.10 69.13 21.14 58.32 78.67 27.67 79.62 2.88 22.26 44.68 95.32 81.25 90.11 51.51 79.07 68.61 52.21 31.69 44.58 61.85 55.48 93.51 66.47 4.28 18.16 35.70 0.88 23.15 82.57 15.02 86.32 38.55 94.32 39.90 10.44 2.41 39.16 3.04 86.25 61.29 50.72 70.82 45.55 12.99 46.53 88.04 53.59 88.47 47.60 64.94 67.71 32.51 48.62 75.89 84.70 45.00 50.81 7.74 8.64 44.92 78.89 38.22 77.83 28.32 8.25 53.01 12.60 23.24 5.60 71.96 7.50 -0.61 77.72 11.37 75.83 70.11 49.08 62.75 54.08 43.43 93.60 5.99 49.81 18.69 46.45 99.07 75.49 5.69 47.23 83.52 65.16 71.15 16.73 72.38 71.87 30.25 4.44 61.42 19.09 85.58 69.38 18.07 31.06 26.74 21.02 65.18 81.80 76.74 8.68 94.23 84.95 30.78 36.01 41.35 90.68 13.98 38.82 56.58 43.22 90.15 54.80 65.29 36.00 20.56 45.75 44.70 3.96 9.29 20.93 80.83 49.12 1.36 38.15 23.70 1.89 87.34 11.85 81.78 39.33 30.35 2.80 59.69 72.85 98.23 24.47 8.80 8.51 5.91 3.38 12.49 22.82 16.65 44.69 57.16 17.76 83.57 80.14 98.99 15.02 79.81 34.52 52.72 23.47 48.24 70.80 84.86 52.11 85.09 80.33 38.52 65.62 -32.38 53.02 33.42 51.80 81.62 54.58 50.19 62.49 84.07 34.45 3.55 11.95 91.20 90.81 61.29 39.34 17.33 77.56 13.34 39.54 0.39 55.52 59.04 75.15 89.35 26.50 40.86 53.98 69.51 72.76 15.71 89.47 62.03 72.12 36.60 7.04 96.30 36.26 68.92 51.43 71.89 24.11 70.73 97.97 57.24 47.03 74.09 87.25 12.00 73.61 35.26 74.54 4.69 25.63 9.88 81.41 33.00 14.91 69.68 0.31 60.09 81.93 14.23 49.41 19.44 12.30 96.69 40.98 2.16 7.92 46.95 85.34 94.45 86.80 37.64 55.93 18.09 95.11 28.88 18.40 26.83 35.35 71.59 88.86 15.36 95.63 12.19 24.06 43.37 32.61 28.01 68.00 12.28 42.77 96.27 0.08 90.79 13.16 16.16 29.68 -97.49 88.27 94.70 56.44 59.62 20.27 45.02 39.52 2.09 45.70 59.86 56.78 30.69 7.46 69.39 5.25 13.82 16.98 88.73 96.73 77.85 59.94 99.23 41.87 16.69 95.02 44.18 32.14 65.60 62.09 37.62 40.20 7.59 24.33 93.82 74.69 34.57 21.22 80.22 48.29 74.60 18.99 20.64 23.00 41.66 13.58 4.35 54.72 85.09 25.62 88.20 28.05 74.45 91.66 98.41 9.87 57.60 16.40 59.07 77.08 88.96 42.33 93.51 25.66 80.41 3.28 20.11 59.87 23.70 92.68 10.91 26.13 82.03 30.42 15.97 86.60 30.32 23.77 8.90 6.91 29.97 79.86 25.44 62.16 77.68 88.90 77.62 62.52 13.80 93.93 78.92 63.02 3.89 69.83 27.64 45.04 90.51 30.44 50.60 75.79 -24.42 55.64 87.75 15.67 23.57 90.36 63.17 43.31 92.28 90.21 26.97 21.78 97.65 12.06 79.29 79.25 64.98 75.61 42.69 67.21 95.76 30.07 89.41 4.15 86.65 64.61 87.74 42.83 51.17 33.63 14.27 34.37 39.75 38.96 22.90 72.41 73.02 62.77 53.25 34.92 65.46 74.86 51.03 57.21 30.11 54.67 95.61 46.33 11.80 41.53 52.77 72.97 31.47 54.47 6.90 97.42 95.57 32.61 20.50 67.54 97.75 85.08 95.84 50.78 64.16 11.92 53.83 10.22 31.16 19.53 54.53 11.96 1.60 48.24 82.46 93.59 63.87 77.59 73.26 36.01 52.51 62.63 97.27 72.58 36.01 62.76 25.68 40.64 34.31 63.37 43.86 62.84 47.44 43.39 90.51 34.44 28.87 33.81 18.08 25.79 -80.59 35.68 47.97 13.93 98.37 56.60 14.85 33.22 16.45 23.18 30.62 0.34 58.30 44.43 45.87 50.36 80.99 28.38 25.55 99.33 42.06 46.60 4.74 21.41 59.31 22.03 39.00 44.48 26.36 64.05 75.90 18.06 33.59 32.31 54.90 10.41 85.19 63.46 31.00 97.24 88.94 34.77 20.27 87.18 13.07 63.09 41.60 66.32 94.61 52.58 60.13 57.31 41.17 22.91 97.09 53.60 88.03 4.94 59.54 64.47 92.10 29.58 98.39 78.23 87.15 77.24 57.57 73.69 62.24 17.43 9.30 26.74 28.03 37.91 56.00 51.33 52.37 74.78 80.93 99.66 7.03 34.11 7.80 3.87 74.21 1.50 7.90 50.36 56.72 63.19 14.00 17.25 7.56 89.04 45.14 70.70 74.36 72.55 80.56 9.23 -41.73 71.73 97.24 13.73 54.98 58.73 40.96 83.92 33.29 58.43 65.82 10.56 22.91 12.06 35.19 19.65 45.55 79.34 96.32 41.63 51.98 0.81 81.46 58.43 50.71 46.73 65.02 60.87 99.32 79.25 14.26 83.67 64.22 52.23 62.47 41.50 82.21 90.77 35.36 40.93 69.03 94.72 6.77 14.86 17.07 22.08 96.57 7.60 44.70 37.51 94.31 2.38 86.84 10.56 82.73 24.08 93.56 71.80 1.05 16.39 11.56 26.53 88.30 22.48 83.66 36.02 52.34 65.39 57.46 60.35 11.31 88.06 84.96 12.23 79.61 16.78 70.23 89.92 59.53 65.15 35.00 14.19 72.86 63.40 40.66 33.62 18.47 26.22 6.71 68.07 48.40 36.49 13.70 95.27 22.73 55.46 44.49 33.84 6.03 53.15 -75.73 46.50 75.42 4.81 69.12 58.28 14.67 81.30 24.07 23.70 56.38 89.25 11.36 23.86 76.90 55.53 0.53 13.09 74.05 20.34 79.97 7.97 36.58 2.67 80.99 65.56 98.82 90.05 96.13 9.85 61.56 98.36 49.87 11.13 28.62 68.02 18.47 93.44 84.96 1.92 67.33 38.65 21.93 30.18 74.15 98.64 44.90 78.03 55.21 62.58 78.74 49.03 40.67 41.01 36.49 80.42 7.91 30.14 50.94 80.44 82.99 27.54 61.69 48.13 90.75 9.59 21.79 60.56 89.07 77.01 17.78 68.45 38.00 6.89 68.41 4.10 74.22 46.12 87.07 94.22 1.15 57.31 17.89 9.23 86.17 36.86 17.85 65.03 7.48 9.98 15.39 33.89 97.22 76.83 97.94 20.49 52.21 76.45 75.96 3.76 -30.31 50.15 90.46 8.84 38.37 51.83 13.54 79.01 24.08 6.81 58.55 50.98 77.67 81.08 45.55 53.95 79.65 49.68 56.30 90.46 52.39 3.17 54.48 75.83 55.46 85.78 89.32 56.55 73.27 11.97 86.85 76.74 35.99 82.08 34.54 87.44 2.30 26.94 43.64 95.37 2.85 84.58 34.97 25.76 24.49 56.16 71.65 93.71 75.39 87.22 1.79 70.08 9.97 32.30 51.01 52.58 16.51 10.13 43.69 83.09 69.09 41.06 82.48 88.00 44.09 20.32 84.81 55.54 13.88 3.59 65.67 74.06 49.20 41.04 84.23 24.94 70.95 30.38 23.55 48.16 84.15 18.88 59.23 10.16 17.41 39.08 34.58 50.04 32.58 56.64 43.64 53.74 71.20 72.15 28.59 8.13 53.51 1.70 67.46 33.92 -43.24 6.95 73.70 63.89 71.07 34.61 58.72 75.24 87.76 13.55 1.14 21.13 38.48 39.94 67.24 80.98 75.11 60.55 34.54 85.40 58.58 67.44 10.10 14.92 94.10 45.39 49.50 26.70 10.02 82.03 13.35 81.12 8.90 98.41 96.12 33.24 56.73 70.17 44.67 79.21 54.00 20.08 39.08 74.67 77.59 74.42 35.28 99.08 47.42 24.20 61.09 26.30 14.35 97.87 27.33 64.04 42.05 62.99 90.16 82.64 86.00 57.94 9.41 7.63 87.58 15.33 68.37 15.02 16.30 16.92 66.07 37.39 75.28 21.32 18.29 14.78 5.84 93.61 8.52 3.10 61.09 67.69 94.07 53.24 3.05 68.02 18.80 75.34 6.37 64.16 7.91 98.82 12.39 27.70 2.43 33.41 64.62 71.79 18.60 61.12 -92.21 23.05 41.94 63.10 18.88 2.76 34.72 40.15 43.20 64.33 59.99 24.57 66.38 18.70 82.93 70.41 11.30 16.24 40.62 88.09 80.95 25.95 99.08 33.15 15.06 64.31 54.83 22.92 71.68 89.38 95.84 56.41 36.48 76.76 98.67 18.65 30.69 85.78 3.98 20.42 65.62 79.68 4.40 37.51 63.08 37.72 65.33 38.32 46.99 25.77 23.17 68.54 26.24 91.86 80.26 35.80 61.40 45.25 96.91 52.25 72.32 31.68 42.33 30.88 92.38 44.25 90.77 8.06 23.21 36.95 30.03 35.57 30.46 56.05 68.53 62.58 91.86 51.98 51.56 24.55 94.29 37.00 8.81 4.87 90.41 43.23 44.56 7.69 15.01 25.36 11.85 95.39 68.42 97.30 67.78 76.67 71.57 25.56 38.85 10.41 -19.96 51.90 33.17 36.12 37.95 98.73 83.60 57.91 72.69 29.12 27.40 12.09 6.78 12.14 74.94 60.17 92.21 15.28 77.98 39.36 44.58 95.00 13.21 16.20 65.12 3.54 96.35 74.67 53.98 68.00 23.28 15.60 87.53 53.48 48.75 34.25 6.70 95.44 18.07 61.37 99.96 56.28 82.25 93.27 41.65 29.31 46.67 39.00 7.05 56.28 87.29 54.92 11.52 50.70 27.02 96.43 22.10 53.69 96.09 9.20 16.50 12.31 36.65 14.89 79.39 46.91 28.12 68.85 25.18 30.14 58.27 99.42 59.78 63.87 16.77 91.15 99.14 16.65 95.20 90.14 0.97 69.41 6.74 73.09 30.24 61.44 49.91 96.67 1.11 71.96 64.39 25.13 44.96 14.59 76.36 21.91 68.15 43.27 6.23 2.03 -90.81 9.37 53.40 16.31 69.28 85.51 20.47 17.67 79.79 98.10 73.55 85.24 60.04 25.06 33.41 65.39 78.96 24.27 20.00 78.93 35.52 90.51 3.89 30.92 27.13 27.76 33.79 26.79 81.29 55.57 81.99 32.45 13.70 36.21 36.91 58.54 40.46 74.16 91.10 10.19 32.43 67.15 32.21 82.43 32.10 75.04 88.89 92.72 31.54 89.86 72.87 24.79 10.53 30.67 79.45 91.64 50.89 76.06 4.02 5.13 62.87 85.04 65.37 27.67 26.45 22.79 42.11 78.08 45.70 76.13 7.43 34.41 19.33 54.98 89.74 35.06 11.39 83.68 45.10 63.51 12.65 77.16 55.56 36.40 2.93 73.65 74.46 62.63 42.21 36.37 94.63 51.58 3.75 27.17 53.76 7.99 90.91 25.74 28.14 96.95 -22.82 14.32 61.13 24.03 25.55 19.14 7.42 7.55 6.27 92.59 52.71 0.82 29.49 55.26 5.31 13.13 24.09 67.45 73.90 19.41 82.48 90.51 95.43 9.82 61.82 9.84 80.38 68.85 5.63 64.78 66.36 73.39 19.47 11.31 46.09 16.31 84.10 97.60 65.06 17.94 98.22 49.48 9.50 40.29 96.72 80.84 70.81 40.66 80.40 17.59 13.42 3.16 73.05 86.26 44.55 30.03 74.34 91.93 13.66 7.74 20.67 81.83 79.73 0.43 55.99 97.05 5.32 7.00 12.60 82.81 76.85 93.66 39.95 43.08 45.13 1.64 55.01 29.78 90.75 74.17 96.11 62.66 40.61 73.18 65.87 58.29 80.67 42.14 93.61 49.08 75.37 46.57 46.29 51.87 92.14 1.97 84.03 17.43 88.37 55.64 -1.95 7.02 8.48 75.48 66.29 33.66 65.09 26.07 60.65 96.77 49.12 11.48 27.09 41.16 63.66 80.13 17.95 74.66 20.56 37.22 80.81 89.98 33.51 40.30 5.00 27.68 16.66 99.88 38.86 11.59 15.45 97.06 32.90 12.29 95.52 95.16 35.33 8.45 66.83 79.47 15.14 66.97 24.23 23.21 38.96 94.28 62.97 28.11 58.05 86.43 72.38 17.03 85.32 42.29 44.90 66.82 67.87 37.76 54.10 42.10 10.18 86.09 58.07 32.74 91.35 80.91 23.10 70.89 1.84 77.80 82.52 22.36 88.31 85.38 77.33 45.36 53.66 85.89 14.47 63.48 14.58 20.22 24.89 85.27 56.47 20.35 36.13 53.60 87.93 66.42 89.15 35.67 20.77 23.03 36.15 43.48 27.63 95.37 82.31 98.67 -INTERNAL -68.96 37.04 12.66 68.32 67.23 78.19 98.36 35.08 74.62 5.12 26.33 62.31 75.42 96.39 24.57 41.15 65.12 39.51 81.75 17.36 72.84 43.34 9.77 7.17 38.54 43.30 10.68 15.30 6.18 66.64 61.05 51.10 38.70 3.06 4.48 57.61 44.73 6.34 19.62 90.43 50.01 40.85 73.74 81.68 33.37 62.84 52.49 47.07 75.84 12.64 59.79 45.59 66.23 87.50 39.13 61.28 46.50 15.72 71.73 69.67 62.31 31.99 0.70 65.35 35.64 11.52 88.50 68.80 26.09 99.71 90.79 34.75 18.79 34.28 2.26 4.86 18.45 33.78 79.37 83.95 93.32 54.03 88.55 91.60 62.55 20.26 55.56 55.44 68.14 9.78 69.45 89.19 14.48 94.56 77.59 85.34 88.63 28.40 92.12 65.96 -27.02 45.72 39.24 93.76 93.13 52.81 89.07 10.20 91.43 61.95 64.84 42.60 15.30 43.88 2.45 53.49 60.01 63.98 5.24 12.32 89.49 19.63 64.70 72.45 10.87 76.18 9.72 56.91 25.53 78.73 45.97 74.28 29.37 95.96 15.95 54.49 85.62 78.00 70.77 16.22 73.07 11.50 95.29 45.57 14.47 97.27 52.53 85.00 57.83 3.84 83.28 11.07 48.81 3.31 76.55 21.24 62.73 76.16 31.91 52.39 71.68 64.95 7.48 91.01 61.81 49.49 31.52 21.00 14.25 95.14 26.72 52.95 79.71 57.72 56.25 16.47 89.99 3.06 23.51 99.09 55.41 19.65 54.16 13.38 36.30 58.36 64.11 38.94 73.08 72.97 53.57 83.45 14.16 46.80 61.38 99.28 45.08 37.50 37.68 23.81 -91.83 73.00 99.30 46.98 43.67 99.46 5.96 29.18 37.74 14.11 29.59 67.58 86.83 87.67 21.58 85.88 68.24 16.24 92.91 83.97 2.99 75.75 45.62 80.56 70.56 22.48 20.72 44.14 21.27 1.27 58.35 71.56 74.87 76.26 82.56 25.32 98.18 20.44 59.93 56.46 64.74 78.96 27.33 96.65 74.37 43.93 36.14 79.80 84.90 34.71 85.98 48.04 6.88 15.12 60.42 74.46 94.69 11.67 46.37 59.88 18.44 45.55 9.27 7.01 66.76 17.44 44.62 50.23 19.16 67.17 94.49 2.79 21.00 4.98 61.28 73.52 9.68 73.60 43.86 79.34 33.45 95.34 42.87 67.05 90.22 79.21 66.92 73.93 6.28 95.62 51.85 59.26 32.51 59.66 96.54 65.71 78.07 47.65 29.26 91.01 -84.94 81.58 73.67 18.06 18.49 83.05 73.85 75.77 57.50 39.13 85.76 72.64 27.54 72.22 75.42 47.14 72.97 79.72 50.70 58.07 8.35 67.61 21.20 1.45 44.89 50.93 43.72 60.90 63.93 54.92 12.67 85.65 86.03 5.14 67.47 90.79 70.72 1.68 45.29 72.29 77.70 2.81 13.86 76.05 60.42 76.94 1.61 94.96 58.89 77.35 21.40 50.66 62.71 75.08 40.49 42.61 49.00 38.88 66.26 23.72 57.85 69.67 88.14 35.92 27.21 33.66 2.77 62.93 67.33 81.41 5.00 43.15 9.66 82.67 16.13 30.74 44.20 37.23 71.67 43.91 83.75 72.09 11.10 73.19 88.37 16.79 96.81 6.42 49.28 65.12 19.43 7.07 82.18 61.44 70.91 85.86 13.74 54.98 60.28 94.37 -94.30 17.84 64.65 28.47 37.02 33.21 94.27 68.40 83.67 86.08 55.29 88.08 56.18 65.71 67.01 27.65 80.09 17.21 67.01 68.66 25.84 41.56 53.20 5.35 79.50 5.25 91.17 80.55 46.44 5.76 32.36 92.26 70.31 51.44 84.99 0.43 17.20 25.29 37.99 92.33 18.13 37.62 65.79 88.58 13.94 18.61 62.93 27.75 0.93 85.59 94.67 72.50 23.92 24.24 81.09 98.73 68.96 65.44 73.04 52.27 41.11 12.86 30.70 22.14 96.16 74.07 51.60 76.13 39.83 29.39 48.10 84.77 12.01 7.18 26.21 64.30 61.86 17.83 27.16 28.94 2.51 88.73 2.18 43.88 66.99 95.94 57.21 17.80 35.04 20.19 49.90 31.98 51.94 61.23 47.99 84.69 55.86 31.67 25.35 30.57 -43.17 5.69 23.54 42.85 79.24 64.39 5.54 10.66 81.74 68.42 79.78 82.73 23.82 26.32 92.57 86.03 28.31 97.55 35.27 87.58 35.65 72.08 65.86 70.54 61.47 98.65 7.53 8.47 92.74 86.99 53.90 57.39 53.44 13.93 11.58 31.21 23.89 66.63 63.63 26.61 36.86 67.52 97.14 47.88 17.98 29.53 28.11 58.45 20.66 53.43 45.76 75.58 5.26 58.08 74.00 25.41 87.29 73.48 3.45 22.21 65.17 98.01 77.91 81.58 71.04 66.10 28.38 57.76 10.34 0.25 51.51 65.46 60.65 92.72 18.39 11.33 78.33 22.48 64.10 61.92 15.89 70.47 11.83 70.41 91.78 37.92 87.61 52.07 93.48 51.02 52.47 31.75 1.04 34.47 72.06 4.79 80.46 90.88 93.61 78.64 -79.88 10.05 87.59 71.14 56.94 73.04 15.39 34.45 7.57 46.08 95.37 20.52 6.12 84.40 89.11 34.35 67.08 27.60 99.85 97.29 86.13 93.54 41.19 5.39 89.64 39.44 93.75 59.68 61.48 4.36 0.33 80.71 81.36 95.35 66.14 61.05 86.25 34.65 74.84 45.06 93.12 36.38 84.38 69.93 60.33 7.55 37.77 76.41 74.16 90.53 96.84 51.99 89.08 21.99 83.56 46.19 48.48 8.48 79.89 92.97 13.81 76.22 65.95 78.97 34.00 80.24 60.82 56.62 3.49 34.93 91.91 21.72 5.60 94.67 58.98 54.20 4.76 85.09 22.07 94.08 69.78 18.18 95.02 3.94 23.53 97.68 88.24 50.64 74.40 79.06 53.74 76.28 11.51 22.51 72.35 18.87 19.06 83.24 4.22 79.98 -87.10 59.62 90.92 7.37 92.89 92.00 60.18 97.91 96.08 64.35 30.97 39.38 69.02 6.40 95.16 83.00 45.53 94.51 40.38 28.70 21.28 29.51 55.37 35.12 88.45 80.76 66.25 5.84 90.01 8.55 84.20 62.08 29.69 25.35 68.92 98.39 70.02 88.34 80.21 61.62 69.67 49.31 27.94 55.34 68.62 47.69 27.61 73.01 11.24 65.55 59.93 11.33 95.74 41.71 65.46 48.65 28.00 72.04 14.72 40.85 7.44 12.45 14.41 87.15 73.07 0.13 32.77 78.87 56.48 47.78 27.50 81.11 1.68 90.93 14.18 98.54 89.94 63.43 37.90 70.74 50.35 72.78 56.00 25.57 92.30 61.31 53.22 55.91 76.62 25.96 23.82 46.46 94.33 79.10 77.76 55.75 13.45 82.03 93.02 83.85 -22.05 28.73 29.12 45.00 52.22 69.87 32.00 25.70 17.61 26.23 46.85 56.67 68.59 83.50 91.38 91.25 95.95 98.11 23.58 3.34 12.94 39.68 83.55 95.73 6.94 44.06 32.89 96.66 67.88 62.32 61.96 41.91 95.31 18.39 65.92 34.00 78.45 73.80 79.87 64.08 28.12 1.59 89.36 66.88 58.52 31.02 59.60 87.78 75.42 38.93 38.00 20.92 63.27 78.03 15.09 41.88 22.77 23.94 59.41 27.04 75.51 84.80 34.17 46.35 68.05 30.35 1.47 55.85 83.46 70.74 58.41 86.16 17.83 5.91 98.13 76.52 27.29 78.35 46.84 14.77 73.90 39.88 51.56 14.45 48.58 88.86 13.39 15.20 13.40 14.74 35.33 35.02 77.61 46.47 3.12 45.14 5.96 51.34 86.01 21.80 -89.81 78.35 92.94 79.85 70.55 40.98 47.15 29.06 30.00 64.82 75.72 16.49 11.83 51.19 43.87 48.66 74.03 21.39 53.88 47.40 83.39 93.77 23.59 32.57 34.40 23.12 20.23 23.46 6.11 52.56 40.18 39.74 97.75 17.78 60.83 73.44 50.49 39.26 79.18 57.33 39.23 10.50 46.28 50.89 30.08 7.45 60.35 48.28 74.67 44.12 62.53 46.28 40.60 56.74 35.98 0.41 1.68 27.13 7.09 90.20 0.59 32.96 52.19 8.84 35.10 22.09 3.94 60.08 51.58 30.27 21.01 70.89 78.04 52.13 18.31 95.27 44.45 13.30 67.79 87.62 48.09 19.31 62.05 10.15 57.68 84.69 52.06 74.98 97.55 73.76 49.71 30.58 55.77 90.67 37.25 38.91 56.12 10.55 13.61 5.33 -8.15 90.28 33.21 44.51 98.11 52.81 25.85 65.51 30.19 76.49 11.48 71.84 2.54 55.22 84.36 28.75 94.37 11.24 3.70 80.22 98.88 13.27 86.54 44.03 7.93 64.34 46.06 16.50 81.52 72.40 18.35 23.67 53.78 37.62 23.12 0.69 53.59 8.77 54.74 27.46 1.56 54.26 95.06 47.19 66.11 59.36 10.30 81.85 65.99 40.27 94.47 6.13 18.87 51.49 0.83 37.96 35.81 6.58 68.03 66.19 26.23 33.35 27.63 1.07 16.98 64.99 45.16 17.36 27.69 52.33 58.46 0.66 52.97 14.69 3.80 30.16 97.57 27.61 8.00 40.16 40.57 85.16 21.31 37.00 28.99 89.16 30.70 7.31 73.54 63.26 10.54 74.90 88.82 94.02 92.46 79.04 41.48 16.78 37.63 19.37 -17.03 92.66 94.60 60.45 60.55 2.79 22.15 88.05 83.61 53.07 8.79 65.81 94.83 44.51 99.51 33.51 76.37 59.95 62.84 39.66 9.72 57.65 81.24 83.51 78.96 80.35 32.75 51.86 17.70 98.31 5.63 15.68 89.26 72.15 16.62 31.66 48.81 79.48 37.43 29.59 88.90 80.55 37.58 8.09 1.97 9.79 28.32 41.91 44.52 69.96 24.61 97.65 13.73 95.52 99.39 83.48 40.84 71.37 61.39 13.32 1.93 36.98 3.78 69.92 90.54 62.41 1.15 62.41 8.45 27.52 9.05 97.53 74.02 41.13 2.07 67.01 58.58 39.47 78.24 74.12 15.04 89.76 81.01 42.43 50.71 86.50 33.67 1.75 83.06 74.27 55.80 8.21 26.31 38.74 86.17 62.85 15.41 0.67 54.98 14.81 -8.16 89.61 8.86 12.32 18.33 80.23 18.72 50.03 63.72 65.84 53.84 8.14 8.43 61.89 52.59 8.56 89.17 75.01 90.73 57.08 90.84 48.49 24.57 15.57 47.27 17.07 12.91 69.42 90.04 9.59 83.64 72.52 38.57 13.08 91.40 18.03 44.62 16.15 12.39 21.60 53.88 32.05 97.67 99.86 40.70 28.19 82.73 33.42 88.88 14.77 14.73 43.01 7.80 56.70 93.90 46.81 58.39 8.77 31.00 79.10 0.01 2.25 87.26 11.51 22.90 36.25 87.77 1.46 69.90 83.08 95.33 70.65 73.04 23.33 89.71 42.70 63.77 71.19 17.80 39.83 12.12 61.40 55.93 59.46 70.64 59.96 38.35 61.85 77.56 84.49 66.66 32.47 51.15 14.71 80.68 20.96 94.75 80.46 56.75 69.17 -13.41 24.24 21.33 59.20 18.27 12.50 94.35 14.08 28.26 15.87 91.05 64.40 45.17 38.10 83.63 17.00 11.61 70.12 39.33 18.56 15.73 9.51 2.16 41.86 7.64 1.42 0.97 49.77 90.13 6.81 85.00 6.99 23.30 35.43 95.95 76.70 47.03 98.15 97.45 24.34 94.79 36.19 26.04 0.55 75.60 24.72 74.35 84.10 41.13 23.05 41.49 73.95 34.87 21.42 95.37 82.16 73.11 21.50 45.62 98.84 22.71 46.73 88.92 84.08 54.31 83.55 19.28 34.09 13.65 62.07 8.51 9.79 33.04 61.88 33.09 85.73 17.86 77.92 25.13 56.40 66.08 44.21 80.59 62.23 54.40 20.22 18.61 75.53 23.30 36.14 5.56 69.06 11.18 94.09 72.22 56.35 66.70 16.43 40.86 23.03 -0.12 1.85 18.69 66.18 11.57 10.81 31.68 20.39 81.37 13.38 95.94 97.60 11.41 26.51 75.31 53.98 73.11 61.71 82.81 54.32 3.90 64.89 63.89 53.81 29.55 63.23 86.34 67.07 89.19 8.75 61.77 29.82 14.44 18.97 87.03 7.04 48.98 3.81 38.29 78.89 17.44 14.31 74.98 92.73 75.13 81.29 47.20 68.93 72.84 69.58 93.31 56.94 76.04 18.96 70.17 16.85 9.40 98.61 42.34 83.23 50.20 47.05 29.29 49.62 84.46 63.86 6.77 84.15 9.57 29.59 42.48 29.39 21.78 66.75 20.36 25.23 18.19 60.77 76.99 74.89 47.02 1.09 62.37 0.18 59.01 7.47 76.62 43.78 95.27 22.08 80.66 3.87 66.11 14.39 97.17 16.19 19.44 9.08 73.79 70.61 -31.32 23.61 58.39 5.58 64.47 83.80 29.93 34.09 65.46 53.79 92.79 81.86 35.37 57.96 74.75 66.05 34.56 49.56 74.97 81.18 46.26 16.70 67.20 70.50 33.36 46.86 16.95 77.99 22.60 90.38 97.85 44.63 31.32 88.98 35.79 91.73 76.34 42.25 97.36 94.91 23.45 83.06 55.76 60.05 80.84 30.52 45.21 78.67 56.15 22.43 49.74 72.94 36.47 50.25 89.22 46.29 30.09 52.60 41.43 11.14 82.80 68.48 57.99 91.45 55.67 97.32 83.77 96.34 88.61 43.55 64.15 72.37 2.64 60.90 52.10 94.85 84.68 23.29 3.08 30.72 8.30 63.78 81.75 88.41 91.40 77.49 85.99 5.39 72.65 42.68 10.96 91.62 100.00 51.22 86.77 23.65 71.82 76.06 80.37 51.76 -54.77 38.35 13.21 72.12 59.35 43.61 93.34 71.08 70.23 55.30 82.82 51.62 50.07 36.67 66.87 50.23 57.88 42.46 9.31 65.58 1.85 2.55 89.10 56.90 94.49 84.75 68.28 33.72 15.93 87.29 59.94 79.61 99.58 25.96 10.64 69.70 58.38 64.15 88.10 14.09 36.57 66.48 83.77 8.96 69.71 51.17 80.58 69.54 73.23 52.63 2.18 99.38 91.01 92.77 38.38 55.78 28.92 1.08 70.04 60.60 93.86 64.40 79.35 82.20 52.73 20.73 38.81 41.45 71.85 69.11 6.92 25.41 91.49 31.11 1.50 57.42 4.36 34.52 69.19 14.12 4.62 80.04 34.33 94.78 90.86 57.85 34.22 63.38 56.54 51.30 67.67 22.89 17.25 18.03 33.85 62.75 65.92 95.38 34.25 10.84 -51.56 56.96 57.54 2.43 35.69 62.29 8.02 44.32 69.08 68.98 9.07 31.60 13.80 51.61 65.20 31.59 74.02 99.68 11.21 11.89 24.95 24.44 32.41 65.55 53.60 94.26 25.26 78.93 33.78 29.77 33.66 23.95 4.93 38.44 91.65 44.83 6.96 33.45 82.58 15.14 98.86 29.02 76.41 56.41 65.78 82.13 19.56 24.54 6.49 80.68 49.33 5.29 38.92 36.00 16.85 27.37 96.08 13.36 93.56 95.24 39.56 38.61 79.88 52.79 27.62 3.18 23.60 16.46 49.33 31.36 34.96 66.17 48.38 3.79 94.49 38.53 72.95 67.45 43.15 80.10 88.62 85.49 2.13 52.49 37.95 0.14 51.91 35.73 35.13 4.35 22.55 33.54 73.78 6.03 68.88 21.55 36.01 36.09 57.47 64.71 -92.56 96.38 7.21 83.56 65.69 29.04 33.35 34.40 25.35 17.28 28.24 16.69 56.11 0.48 8.45 99.15 26.81 53.28 5.75 88.80 23.14 37.02 56.66 49.97 24.22 20.11 41.34 20.39 57.77 56.81 58.10 41.07 10.58 53.95 8.68 49.65 12.85 29.13 68.95 63.69 18.82 92.58 26.06 63.76 19.46 2.11 6.78 82.72 42.98 93.76 1.59 30.10 82.34 59.74 17.26 52.93 38.31 26.79 20.82 11.47 13.63 53.35 96.02 44.37 57.06 25.33 33.89 37.80 21.40 28.34 2.21 57.92 56.44 71.59 39.92 44.93 66.32 50.26 10.15 75.07 57.09 69.85 17.25 81.34 24.74 73.77 80.62 66.72 76.79 44.96 11.49 56.80 21.17 84.18 24.71 73.91 28.42 42.66 79.17 11.89 -60.20 51.54 19.68 27.62 70.78 54.94 61.75 8.50 85.50 58.00 69.34 0.31 7.75 86.89 14.29 78.97 50.64 41.49 33.10 79.49 59.64 6.05 11.29 68.37 84.43 45.99 53.91 16.59 85.08 11.74 99.21 32.91 21.89 58.47 98.76 58.74 55.50 50.39 79.71 31.02 25.08 51.06 60.98 61.62 7.01 19.82 45.12 29.78 5.45 55.38 36.01 43.09 36.52 88.82 43.24 61.99 75.73 18.85 87.85 79.88 71.33 63.63 47.82 4.14 59.15 74.85 61.49 13.58 47.55 40.58 60.10 29.72 95.52 22.83 74.13 6.22 63.29 64.46 40.57 50.24 41.83 8.31 47.05 98.92 35.64 39.41 65.09 59.65 26.90 70.06 84.61 27.40 15.28 97.23 99.18 49.27 0.84 20.55 3.33 33.57 -32.25 34.14 8.75 93.78 54.97 68.10 44.80 28.12 43.19 70.08 24.58 27.23 14.35 83.27 41.48 83.43 51.27 82.85 11.60 44.53 16.29 38.00 4.51 66.90 50.39 58.84 40.37 64.52 54.40 47.42 70.39 13.36 7.02 98.66 56.94 89.36 68.59 36.30 49.44 33.55 42.36 67.93 35.64 86.67 6.75 80.28 70.01 4.68 6.09 72.05 20.08 86.18 24.88 29.33 75.92 78.08 28.58 80.48 30.44 52.58 21.75 43.70 83.45 42.75 52.13 5.19 89.93 42.14 95.57 70.13 80.94 89.76 45.70 33.85 61.71 12.17 58.83 8.17 8.47 51.29 72.88 14.48 13.48 93.72 26.83 10.69 63.41 19.02 51.89 11.98 86.82 21.77 29.56 29.90 80.17 1.02 1.38 22.47 72.26 40.86 -6.90 34.78 40.98 57.39 83.51 63.53 7.30 81.81 25.52 17.45 23.91 32.27 36.83 77.08 32.85 96.19 47.80 29.62 86.88 22.90 94.80 58.80 58.62 73.05 91.81 13.41 15.28 80.54 25.93 86.56 84.78 12.11 54.05 75.88 3.44 1.76 14.69 63.75 67.11 5.62 61.89 21.05 27.23 80.39 7.81 44.50 47.61 0.81 57.51 80.07 3.68 80.89 87.18 87.14 17.09 15.07 36.96 3.03 93.99 48.25 57.33 95.83 64.34 68.37 68.52 73.79 27.28 52.15 40.62 58.23 67.24 1.40 37.75 4.11 63.81 14.45 3.24 78.58 4.39 2.11 85.00 75.22 77.40 97.83 77.12 86.70 8.96 59.64 91.33 53.32 59.06 48.21 69.96 81.95 68.43 37.14 69.99 13.77 50.97 5.64 -9.64 34.93 90.08 16.53 34.36 42.01 67.46 17.79 98.32 33.11 93.90 10.35 15.28 68.53 58.98 74.06 41.02 14.57 46.33 21.90 59.18 11.78 17.83 82.88 76.04 79.98 31.60 22.99 28.42 43.79 76.58 12.46 79.24 1.49 3.91 95.45 69.59 45.97 63.71 23.75 58.58 15.78 7.78 57.05 59.44 26.67 9.45 55.08 12.15 20.91 35.90 21.80 90.84 18.03 70.61 90.75 23.44 52.91 0.60 43.84 10.28 31.69 38.66 62.55 52.60 83.36 86.52 42.41 11.74 80.25 26.37 29.08 68.56 25.96 64.43 18.07 92.20 28.47 22.87 8.19 10.59 81.15 82.32 96.97 93.15 30.83 81.06 30.94 64.00 71.76 25.51 11.52 75.89 29.76 89.43 22.22 47.79 63.49 48.05 57.12 -84.34 95.40 20.36 32.06 40.24 71.15 12.26 31.91 68.99 56.55 11.95 77.26 0.74 2.95 14.69 98.37 56.37 16.38 4.92 59.33 27.95 67.66 67.10 98.23 92.10 79.27 54.53 43.00 36.44 68.22 69.92 31.68 50.58 68.63 78.64 39.85 46.47 69.17 88.94 83.85 28.46 34.79 61.45 51.89 12.43 50.05 73.26 46.45 39.68 73.26 59.26 16.23 23.25 61.68 7.00 97.46 22.86 16.11 53.25 62.21 2.08 8.20 25.35 48.76 57.27 47.72 80.00 12.25 47.06 79.63 72.59 48.10 87.77 46.83 89.40 16.29 48.63 73.24 50.49 22.03 19.48 2.75 7.18 20.51 73.89 93.89 20.25 64.91 80.43 84.61 2.99 68.64 11.28 20.29 79.58 92.21 38.75 91.59 31.47 30.23 -38.25 43.44 99.30 94.11 1.02 15.91 99.50 81.87 35.21 21.65 84.90 68.87 55.21 82.80 86.78 77.69 73.93 52.56 1.33 2.52 30.21 46.56 49.47 2.49 27.96 90.99 35.30 21.26 98.69 18.33 59.35 26.56 67.91 19.85 3.35 44.74 60.50 29.53 75.41 85.18 49.30 0.19 1.66 15.09 84.45 75.97 64.19 58.12 48.85 57.48 33.14 7.44 6.57 85.93 38.06 13.67 25.13 93.77 66.44 87.47 47.02 22.11 1.52 45.44 4.07 41.85 26.20 2.06 94.33 26.20 87.20 88.28 78.28 61.57 36.55 77.98 74.36 15.26 91.48 19.29 80.88 15.68 0.98 88.38 38.18 12.02 3.04 12.65 86.50 63.81 97.90 20.17 85.53 6.05 29.88 74.02 64.55 7.89 20.17 91.78 -15.14 18.47 45.10 70.35 28.16 85.34 48.99 41.47 56.38 46.88 92.75 4.47 13.25 25.72 64.76 20.03 60.90 2.32 86.20 34.50 22.89 68.05 55.38 22.74 18.75 84.93 53.44 16.62 73.31 53.16 42.44 63.74 85.00 80.75 61.15 63.42 32.39 9.67 97.06 55.80 98.69 96.19 52.74 39.28 70.89 46.12 37.16 88.50 90.28 90.68 66.56 57.56 4.15 90.07 48.81 26.81 49.82 40.19 20.49 81.58 47.70 18.86 65.01 63.96 90.42 33.48 83.89 45.77 62.86 29.65 58.09 47.68 39.20 15.93 55.08 50.32 42.56 25.30 8.54 1.88 71.05 31.67 54.72 59.95 94.51 75.62 50.14 87.41 28.95 4.10 68.97 52.45 37.05 6.87 52.35 0.44 88.91 14.35 28.88 97.77 -62.88 32.13 68.97 76.93 75.54 77.37 73.73 42.29 69.23 82.36 50.82 23.07 95.86 44.43 77.95 28.89 21.81 48.06 52.83 55.43 83.40 0.11 67.80 36.97 63.43 35.04 77.20 38.59 99.67 31.93 72.70 60.34 38.96 14.84 30.13 66.72 88.78 97.04 9.33 33.99 18.98 14.89 50.13 59.66 32.66 20.51 71.55 77.90 97.04 31.80 66.82 91.27 15.30 2.47 40.41 26.88 66.98 8.41 60.92 76.30 67.99 87.73 60.89 48.15 28.71 31.20 30.91 56.55 34.92 36.50 63.10 78.04 30.08 69.36 53.81 98.06 64.07 55.71 63.69 13.28 70.18 89.94 84.37 32.54 14.58 20.33 55.16 27.43 11.31 45.49 12.05 84.47 21.11 25.31 31.17 87.75 52.26 22.11 69.70 45.93 -73.29 86.43 17.95 32.07 14.65 58.09 33.82 31.77 66.96 41.97 9.31 36.69 0.03 7.54 11.11 6.52 9.63 98.02 53.27 97.00 5.19 16.56 97.80 28.68 36.54 24.28 15.96 85.22 72.61 37.23 52.58 65.86 78.39 63.48 34.79 93.28 44.17 0.03 45.35 13.66 24.44 23.23 9.02 10.58 34.77 5.23 64.26 52.58 36.62 93.06 22.44 17.71 44.51 20.45 14.04 34.12 62.05 51.70 83.99 80.81 2.83 40.50 70.49 93.74 10.54 16.74 15.67 9.16 96.40 68.47 50.79 16.61 52.56 52.27 79.24 21.07 44.12 84.30 80.17 43.00 2.62 27.97 74.27 74.63 23.05 52.25 97.20 26.60 59.59 61.06 55.72 6.13 61.25 57.22 16.84 59.92 29.06 98.43 62.86 8.97 -47.96 8.89 77.23 71.97 23.32 52.68 52.70 51.28 74.38 93.86 22.15 39.28 15.68 17.92 85.69 14.73 41.25 95.07 97.70 72.03 52.59 19.53 10.31 90.63 63.52 81.66 22.97 17.11 6.34 1.50 24.73 56.72 52.33 41.52 7.94 9.55 12.30 19.95 65.44 49.68 44.31 0.83 0.34 57.94 62.27 51.57 85.65 2.80 18.50 94.83 34.29 64.80 41.08 95.47 84.64 51.07 78.96 12.10 90.26 84.15 9.70 98.86 2.53 13.35 35.04 61.89 79.78 90.78 57.55 15.61 81.56 30.87 62.54 36.52 25.88 67.65 86.04 23.41 37.79 1.05 43.71 24.33 20.56 33.02 40.01 25.12 83.65 18.15 55.19 87.09 22.55 13.90 92.51 84.96 83.13 2.41 33.65 81.12 17.87 24.14 -28.00 99.81 17.35 32.18 87.18 49.84 64.79 76.93 59.83 61.49 7.44 29.72 28.01 19.68 90.36 12.14 19.58 0.62 34.26 58.49 31.67 44.06 17.90 81.86 16.76 53.37 77.04 42.69 76.47 96.49 92.05 90.44 16.07 38.71 18.79 69.19 42.58 97.50 64.37 82.42 54.40 49.05 99.42 24.18 12.81 69.40 44.62 12.13 37.07 85.49 14.40 10.62 44.30 16.48 6.82 15.99 13.05 22.41 77.28 34.04 44.91 53.49 92.39 91.95 39.99 62.67 75.78 39.35 62.44 43.90 65.79 58.35 39.51 14.30 5.31 95.38 53.20 12.33 53.14 53.61 0.37 31.68 82.37 42.55 36.88 40.90 40.53 61.59 40.88 26.11 53.98 26.65 39.36 29.35 46.78 52.29 56.14 67.19 84.25 60.28 -20.12 86.13 85.59 15.85 4.33 29.77 60.56 9.00 95.09 81.95 15.29 85.74 27.69 11.89 4.14 46.08 11.13 51.01 88.33 13.49 12.86 85.01 84.12 84.72 47.91 98.20 97.65 63.07 20.17 98.53 20.85 24.35 26.92 40.05 68.28 73.80 88.83 44.21 67.36 6.64 27.86 95.18 86.18 27.89 99.92 59.17 81.57 75.76 33.39 75.43 34.55 93.97 32.76 66.92 93.08 38.40 84.04 14.26 8.70 89.39 47.46 88.17 66.89 28.07 32.66 74.56 87.95 26.63 34.25 31.84 87.13 78.09 41.89 25.93 13.93 64.52 83.86 36.38 66.81 66.28 28.06 70.84 59.87 25.26 41.67 71.18 13.18 24.31 49.12 49.58 38.93 16.19 18.63 46.64 82.73 96.43 95.01 35.97 21.28 58.16 -47.18 57.69 10.08 1.30 7.47 61.52 11.70 92.76 97.96 77.84 54.66 65.55 20.68 30.18 31.29 77.38 18.91 87.76 42.14 49.28 28.92 49.19 99.67 55.25 74.75 63.31 77.56 56.47 15.32 99.85 31.21 27.00 35.30 73.68 15.83 33.17 46.71 98.26 45.63 25.19 39.42 44.18 31.56 52.32 87.81 33.49 64.31 68.39 49.84 30.55 45.65 50.75 37.28 75.35 36.55 32.89 41.16 90.41 27.92 51.11 64.63 78.60 73.25 9.75 54.60 11.37 65.25 75.59 15.11 49.43 91.15 83.68 60.32 4.76 21.97 31.64 92.87 99.72 46.18 77.63 61.42 63.29 58.40 51.83 17.28 49.84 5.18 70.08 87.45 89.79 76.92 30.79 67.63 50.18 77.37 91.72 30.57 85.36 10.10 63.77 -0.63 14.22 94.98 5.76 29.82 99.95 42.57 38.28 67.30 88.91 61.12 79.07 39.66 40.46 37.72 3.62 41.57 49.40 85.71 0.91 38.64 44.49 25.60 18.98 78.39 88.22 71.28 73.27 78.17 26.36 45.21 26.60 43.11 24.39 1.59 58.04 13.22 59.76 1.30 22.09 14.84 35.20 61.94 7.76 32.89 35.57 20.66 64.11 22.61 74.63 57.90 64.51 0.23 82.02 84.48 55.87 74.28 58.18 96.53 99.13 84.82 7.41 32.95 42.10 24.67 96.60 71.69 57.64 86.62 69.16 87.90 32.59 4.75 91.78 65.36 99.26 9.12 28.53 8.75 61.56 32.77 43.37 71.31 64.73 12.03 32.57 73.28 46.22 47.28 31.85 97.17 21.42 12.19 47.27 27.60 95.39 35.71 26.76 88.26 52.76 -4.65 30.58 58.63 10.16 77.45 63.61 7.16 85.72 84.96 90.41 40.60 53.76 87.80 73.85 43.10 28.56 66.48 63.92 95.67 97.24 21.33 30.54 83.08 75.79 79.59 66.84 28.88 65.36 55.51 49.82 58.54 25.17 84.77 79.72 31.37 30.34 14.46 56.54 34.61 96.73 52.07 89.74 53.94 28.75 84.02 38.47 98.59 66.99 63.20 21.97 54.25 40.78 0.94 52.36 57.69 89.05 41.87 53.07 77.60 60.01 24.22 61.57 54.66 30.59 7.68 46.62 84.12 65.01 61.69 77.47 43.54 96.39 15.72 3.68 42.53 12.54 60.51 77.01 41.99 96.17 57.15 34.94 18.40 98.95 5.26 44.40 86.32 21.27 82.51 4.29 84.24 22.70 43.12 57.29 3.68 23.03 66.23 18.63 18.69 71.21 -97.49 10.77 17.18 41.81 60.99 34.00 37.67 20.01 66.50 32.76 0.43 33.41 50.06 90.88 69.35 40.00 78.57 26.40 94.16 8.09 1.42 78.19 89.10 58.81 39.24 67.03 32.93 78.08 95.71 90.87 13.18 5.67 21.26 33.38 94.95 69.07 31.32 0.15 26.28 37.77 31.80 23.33 90.34 23.46 56.42 13.96 33.37 8.93 61.75 37.69 12.20 66.95 7.80 94.93 78.25 95.82 66.55 78.72 55.83 25.30 26.32 54.18 66.60 70.87 91.78 69.04 40.64 85.76 57.88 86.40 79.69 31.05 2.78 78.80 76.24 41.52 63.23 98.65 45.95 85.60 20.39 54.47 21.85 7.90 67.49 71.03 39.76 55.47 91.65 60.62 85.97 35.76 63.89 31.23 93.94 2.98 7.43 28.66 97.17 8.77 -76.31 46.55 76.73 16.16 72.26 6.16 40.48 60.36 97.08 32.33 66.14 54.71 32.35 49.87 85.59 96.35 18.59 88.95 51.61 0.45 30.38 16.57 56.32 95.19 83.06 63.74 54.37 74.78 21.29 56.04 63.70 40.86 93.94 80.96 51.98 81.86 94.79 72.38 0.32 12.99 45.05 1.19 67.56 77.62 10.52 20.02 83.51 67.85 24.04 24.01 1.95 53.59 17.25 70.26 75.32 49.95 56.14 58.96 97.20 6.26 48.85 21.57 23.01 21.40 82.53 9.36 41.75 41.61 37.38 11.72 11.67 27.37 36.09 23.87 10.71 54.90 34.97 98.31 78.46 29.61 7.07 86.64 7.50 3.21 34.06 57.75 97.42 0.76 95.69 98.70 36.14 19.83 97.90 97.89 69.49 59.33 82.29 96.96 81.22 66.15 -59.26 1.85 39.34 65.68 19.35 5.70 20.46 13.19 52.81 6.93 21.05 52.33 17.27 53.60 47.47 78.26 32.59 14.39 12.48 37.88 7.62 39.58 54.05 52.81 5.31 17.33 43.42 87.25 14.26 91.25 58.83 89.66 42.62 28.98 86.57 46.63 15.46 7.22 91.87 82.98 62.77 37.78 0.37 40.09 92.55 54.54 43.61 37.89 47.35 54.72 7.06 7.00 17.39 7.99 15.98 22.30 47.57 4.59 71.05 96.04 49.80 41.71 26.47 98.47 25.47 19.16 36.14 48.99 7.77 97.00 8.58 45.30 3.28 81.41 5.69 70.38 30.70 25.39 43.25 35.37 90.78 57.25 32.57 44.77 76.39 49.70 7.87 10.30 20.35 8.05 80.65 82.24 71.41 51.76 87.92 60.74 93.78 40.25 4.12 91.07 -43.14 9.64 27.02 93.20 37.96 87.20 43.19 22.65 24.71 16.99 84.19 3.10 11.03 13.86 7.18 74.93 17.04 98.77 89.47 4.15 95.95 26.28 0.20 33.62 49.16 48.69 35.79 76.69 20.63 13.05 0.53 18.13 31.43 41.29 82.18 22.26 12.25 44.35 4.51 7.41 42.21 58.08 8.14 89.36 25.99 61.36 83.75 88.20 38.20 71.91 13.41 81.03 0.24 8.53 99.63 28.70 54.95 9.05 69.59 36.47 59.74 25.87 88.05 49.02 15.50 31.83 82.07 99.21 44.83 91.52 29.72 21.20 19.08 3.13 66.35 4.55 82.39 96.62 96.50 58.81 31.86 37.18 26.12 78.72 13.24 33.18 89.27 92.05 24.13 15.01 85.15 32.37 98.03 99.01 11.58 44.53 67.06 68.32 32.01 49.49 -1.80 50.70 9.32 78.77 99.46 61.33 9.97 20.48 59.28 89.09 76.50 69.61 57.33 91.47 53.77 37.80 95.84 45.39 91.87 53.90 22.89 11.71 12.60 12.15 60.06 54.48 88.39 70.49 35.89 30.21 25.93 89.05 91.95 24.26 87.70 20.31 84.13 28.43 81.01 49.43 80.57 65.46 70.97 80.68 97.90 7.73 9.33 34.62 38.10 78.92 29.40 78.69 20.23 10.97 7.96 22.88 65.93 26.69 6.25 91.12 98.65 61.04 80.87 93.86 95.04 53.18 65.29 44.62 7.21 91.82 79.25 30.89 3.11 89.74 12.52 5.47 62.56 17.69 63.77 90.35 19.13 12.45 46.07 54.22 33.71 14.87 49.21 70.83 60.01 68.42 47.59 44.14 35.07 82.92 56.92 2.80 47.12 15.75 72.70 46.62 -11.27 22.06 89.36 64.91 14.33 53.71 76.29 59.98 24.34 59.42 40.80 33.78 81.90 46.18 3.11 29.69 28.39 18.87 35.07 24.23 74.56 29.25 15.31 45.11 13.35 14.93 29.79 58.71 48.23 77.64 19.04 79.13 45.26 82.38 28.03 27.17 2.73 82.12 49.07 62.03 19.74 80.68 51.89 57.30 4.54 71.15 50.93 49.46 22.81 38.04 79.54 86.66 56.75 61.74 91.97 42.18 48.17 3.13 60.12 58.67 32.87 33.81 53.63 90.86 14.93 73.12 80.34 13.84 11.27 38.63 36.15 36.23 83.63 0.66 83.04 13.29 6.19 82.71 29.77 57.24 6.43 22.58 9.46 64.33 88.54 90.05 91.64 83.69 23.02 13.77 9.29 38.06 83.78 32.30 70.98 86.63 95.51 28.37 91.86 47.77 -26.70 40.97 67.17 18.69 69.42 77.54 28.44 12.81 28.99 77.34 37.99 44.58 89.40 28.50 42.82 51.73 2.99 65.76 93.80 3.62 75.52 7.62 68.47 54.32 14.65 67.33 27.19 76.70 80.79 67.53 93.11 79.84 78.50 10.56 85.44 63.64 72.31 36.31 5.16 22.11 0.29 88.53 3.40 6.72 85.99 11.08 40.44 11.83 91.32 79.25 93.16 9.05 96.02 80.67 70.05 85.25 78.85 17.35 32.82 91.46 16.00 31.75 19.33 59.23 41.06 6.49 46.05 17.69 7.82 90.30 26.61 84.05 62.03 13.63 17.16 75.39 70.75 6.06 14.35 96.09 76.18 69.40 59.77 7.18 17.93 91.08 91.75 60.09 65.95 25.51 60.64 86.63 10.16 66.29 40.92 54.75 1.81 84.54 69.51 73.03 -87.90 25.62 82.63 36.74 25.09 73.05 16.21 84.00 71.87 81.04 92.11 21.42 1.38 81.14 85.81 82.71 68.51 80.71 73.30 20.94 12.95 10.63 17.38 2.43 41.33 95.91 78.51 83.28 93.00 13.76 26.38 26.05 85.40 33.23 5.88 28.75 95.44 86.55 44.01 58.87 70.82 64.69 8.37 98.33 69.82 87.72 41.68 56.88 91.28 95.20 66.88 68.18 18.68 46.25 7.31 27.43 65.80 49.15 20.72 47.98 78.92 8.02 99.29 8.35 77.58 29.51 27.87 42.96 15.45 35.71 17.31 59.23 91.95 25.90 32.86 57.05 26.16 15.45 9.38 16.25 80.68 28.56 87.80 74.17 94.87 10.84 61.34 43.69 20.90 6.45 59.58 70.75 19.07 20.14 47.36 28.04 46.63 11.00 95.59 63.07 -57.32 58.68 35.54 44.30 97.07 62.05 70.38 41.60 18.83 38.46 5.99 87.41 94.04 6.04 14.87 99.13 87.78 52.91 55.12 98.11 49.58 37.17 11.37 13.38 8.14 64.75 74.95 2.93 1.78 52.73 23.70 33.14 86.14 95.19 14.72 93.21 4.46 96.24 28.94 54.98 17.60 88.16 82.25 40.71 62.26 80.11 92.64 86.06 32.15 95.71 7.00 54.71 1.55 24.04 64.94 39.19 94.74 28.08 25.79 86.24 57.75 10.22 15.00 27.58 86.88 44.59 72.47 11.45 26.77 86.83 54.97 63.39 31.05 64.71 91.51 55.56 59.67 22.47 90.68 7.19 68.12 99.64 68.69 26.59 19.54 90.72 4.08 1.38 69.87 19.95 23.16 88.87 65.22 63.33 49.79 66.78 74.06 70.50 19.66 78.92 -98.91 13.31 0.44 36.77 35.02 86.93 52.41 16.94 69.75 95.24 77.63 55.30 54.84 79.23 81.19 97.29 58.71 56.72 0.58 77.60 47.19 16.80 28.46 36.94 60.75 32.36 37.68 84.08 44.53 28.82 17.07 42.95 96.59 10.68 35.15 28.34 30.52 22.42 57.43 18.83 38.33 78.31 21.36 15.53 8.67 86.38 25.82 60.81 73.73 73.53 53.37 40.58 54.50 19.78 53.42 32.92 98.81 15.96 64.61 78.77 66.50 12.13 8.69 7.18 65.01 25.31 17.51 83.91 89.78 94.61 27.28 85.59 31.90 93.27 83.38 78.37 44.27 79.21 89.49 44.96 34.95 45.38 49.87 44.01 13.10 74.92 66.08 57.04 16.49 57.59 80.09 71.49 60.63 23.85 74.13 79.81 39.79 58.88 85.61 0.78 -21.14 21.88 61.81 43.52 43.76 89.72 38.68 58.22 97.84 41.12 22.06 97.76 41.43 26.06 47.54 18.42 76.17 88.22 73.28 56.50 58.47 23.73 12.31 93.70 91.37 76.90 61.98 16.78 83.10 47.55 62.54 45.44 85.50 56.55 62.62 21.73 32.52 76.68 49.71 15.05 34.17 67.66 42.59 36.12 56.78 64.05 34.48 84.64 87.17 18.55 93.11 24.03 71.83 86.03 33.13 79.96 11.94 33.86 32.04 10.35 76.14 94.89 97.22 22.73 53.20 36.54 88.47 0.15 52.17 38.56 97.84 95.68 40.91 87.84 98.40 20.37 43.30 82.05 89.20 55.79 67.24 53.26 38.24 20.60 7.64 61.01 3.47 3.40 10.89 88.55 57.08 9.36 90.78 53.03 64.02 38.60 14.81 56.67 11.12 27.23 -18.52 5.52 64.63 47.75 52.08 17.32 45.62 97.86 59.16 57.11 46.95 91.60 7.11 76.64 76.40 20.43 85.45 47.63 71.06 82.96 50.18 42.88 5.73 35.35 41.65 67.52 41.10 88.72 72.82 42.61 16.14 41.01 21.87 43.98 63.92 54.66 71.92 63.45 29.68 82.22 54.76 64.52 41.29 23.10 3.63 79.23 58.82 73.86 15.94 41.14 62.12 93.60 87.18 37.91 71.63 5.69 47.32 15.11 83.90 9.15 98.03 73.94 51.12 30.50 70.01 78.70 64.05 8.23 16.23 62.53 43.42 84.64 81.70 21.07 50.97 77.42 2.20 97.97 25.78 83.55 48.05 68.99 46.59 59.70 79.98 43.14 38.97 73.26 42.27 96.11 52.18 13.83 18.43 14.56 3.56 22.33 3.68 65.31 77.34 0.88 -99.81 18.47 71.68 46.37 68.76 12.63 0.55 46.13 8.00 99.54 65.90 86.49 76.72 74.91 16.31 24.25 17.21 44.97 82.24 62.57 79.31 6.18 86.91 82.18 10.93 57.63 88.89 81.41 52.23 41.16 9.04 79.24 26.36 63.07 22.76 30.19 14.11 57.80 78.62 59.37 4.34 67.89 97.81 19.03 9.45 1.40 43.21 75.57 47.63 20.11 43.88 79.75 68.31 86.07 54.87 15.73 85.82 13.61 74.99 35.13 15.85 24.85 33.91 69.85 45.14 29.09 99.70 86.63 14.43 53.05 51.66 61.52 93.04 0.84 94.13 60.33 83.79 82.94 17.16 59.34 8.19 24.48 43.38 65.03 7.44 33.88 29.01 0.72 42.81 76.70 55.51 44.25 69.69 65.37 35.59 98.39 61.80 28.87 49.61 44.47 -68.23 23.92 22.66 85.24 76.79 71.03 78.75 32.00 17.73 31.57 25.56 46.67 5.94 56.56 99.16 89.59 61.76 65.28 12.58 76.56 22.73 98.15 21.57 29.51 43.84 47.88 36.88 97.87 98.05 71.49 22.30 1.92 43.55 24.97 24.20 4.50 3.78 23.42 7.34 5.27 49.33 29.76 38.14 32.69 99.67 69.51 33.46 40.81 29.54 66.61 21.85 98.11 59.17 83.26 74.18 36.38 55.94 63.99 19.19 87.25 0.33 61.19 97.32 34.64 69.80 2.36 58.21 25.45 82.37 58.59 15.78 76.62 38.21 55.89 8.53 57.57 95.97 13.26 38.82 72.06 33.83 2.95 81.78 75.05 87.84 74.72 94.06 64.92 42.05 40.74 73.26 39.46 42.96 22.50 48.30 98.72 26.55 30.57 48.03 87.40 -82.88 94.76 86.60 45.90 36.57 86.21 83.92 42.10 66.58 58.42 43.61 76.11 9.55 6.15 93.44 26.01 63.56 53.03 4.88 22.10 63.97 80.33 79.97 46.63 86.69 19.53 17.06 86.72 30.63 58.40 47.65 74.81 39.90 99.65 84.36 87.60 69.90 28.76 86.46 22.23 17.79 99.47 88.21 4.92 97.49 64.81 8.56 14.65 87.18 56.29 52.53 7.78 5.55 15.03 1.68 93.43 51.01 53.14 11.79 80.48 90.39 23.83 35.41 21.68 52.16 27.09 88.28 28.74 35.22 47.44 48.49 57.40 40.20 92.77 66.86 26.44 46.91 13.01 85.96 37.73 49.69 43.30 41.66 38.65 45.11 10.81 28.54 94.93 3.19 43.16 72.70 66.62 22.99 79.33 59.90 13.20 86.88 76.31 63.10 69.22 -35.08 21.78 68.55 75.21 57.92 45.86 74.84 60.63 8.15 57.27 95.02 81.28 93.45 85.53 82.78 19.23 90.05 56.13 20.14 50.81 13.92 70.50 44.59 5.82 68.92 26.14 86.54 53.52 23.33 36.34 38.11 75.11 24.60 99.85 98.44 64.11 41.03 51.11 69.60 21.41 2.46 33.18 55.53 67.93 42.75 97.91 75.03 68.47 47.91 60.00 81.29 45.14 23.28 68.40 87.75 27.12 75.30 54.58 15.20 98.43 56.61 22.35 4.38 1.00 7.09 95.24 27.29 37.78 14.27 52.56 64.47 5.95 3.90 17.96 27.09 0.65 11.52 29.97 64.58 46.45 18.28 38.69 46.28 61.87 15.68 5.51 12.91 10.49 88.87 37.23 18.24 18.43 79.35 26.38 66.24 11.87 91.02 18.66 66.38 99.50 -80.40 49.39 76.13 61.72 61.96 85.91 70.99 67.61 52.43 39.36 86.20 32.75 76.26 91.65 38.22 19.17 68.58 21.63 3.51 31.08 1.32 20.60 92.91 9.86 24.16 41.14 9.22 37.98 88.25 70.45 50.11 63.36 96.86 76.29 9.45 98.83 88.58 48.28 9.66 63.04 17.59 55.10 81.52 90.52 39.97 57.10 65.70 58.05 43.13 4.19 14.56 29.21 48.43 54.04 4.01 43.58 46.92 82.84 71.69 59.46 92.38 47.70 42.84 35.88 21.96 54.71 90.60 3.73 40.39 87.46 3.09 74.45 81.34 29.83 67.77 4.33 34.07 84.64 10.64 24.99 17.93 49.44 98.84 86.19 80.37 14.02 21.96 79.00 9.96 87.05 73.23 23.97 53.89 44.41 84.02 13.58 4.99 39.12 81.26 98.98 -90.38 44.00 2.86 49.37 60.10 43.62 26.76 89.81 77.84 57.52 96.35 61.44 25.61 98.18 6.00 74.11 77.18 88.90 68.21 99.03 5.80 8.47 59.61 41.79 76.25 12.07 35.67 19.43 45.35 0.57 34.55 72.26 26.92 86.98 85.61 15.16 8.03 71.95 51.72 39.08 45.40 26.11 60.89 40.86 84.30 24.12 46.47 77.77 76.48 34.97 58.11 29.70 32.95 36.03 4.14 28.64 39.17 49.05 67.02 88.28 3.66 30.74 43.23 19.36 86.61 25.09 97.28 56.94 21.05 57.81 58.75 65.13 81.80 17.11 44.06 28.11 4.17 94.54 86.55 16.12 27.04 57.54 43.10 90.56 80.48 94.73 14.95 58.79 74.59 33.53 67.52 53.38 19.34 6.81 0.27 89.13 35.37 29.87 12.24 60.28 -88.81 79.50 85.59 32.12 39.34 26.22 40.05 18.63 28.91 39.23 22.10 44.75 14.25 76.24 88.66 59.50 43.88 6.30 68.31 38.66 51.80 78.71 19.91 97.81 65.39 98.65 51.60 53.43 6.72 84.28 44.10 73.03 98.13 8.32 44.94 29.85 88.13 23.52 57.34 49.10 96.73 4.90 90.72 28.03 36.40 21.34 97.22 11.36 48.10 6.63 7.93 46.20 93.37 12.97 53.44 34.47 57.91 89.65 72.33 63.39 73.48 45.67 13.32 9.90 29.02 89.00 95.59 23.07 4.65 43.41 22.39 97.93 31.02 20.87 96.08 91.11 83.99 55.90 71.31 84.19 71.53 86.07 57.56 82.06 18.45 87.39 96.67 9.73 2.07 24.85 18.99 2.10 23.75 69.51 1.85 9.87 55.44 76.95 90.54 10.37 -59.17 65.93 15.75 52.71 3.85 17.02 1.31 39.14 12.51 28.88 79.36 29.64 38.10 11.42 86.24 60.34 86.97 42.17 35.85 20.70 60.94 89.12 98.59 22.69 38.75 17.63 58.98 17.77 4.35 1.36 21.75 95.21 82.12 95.72 86.00 25.93 11.64 89.15 28.85 91.34 63.80 80.33 43.44 87.20 38.33 63.67 25.96 40.69 84.54 10.35 49.37 43.25 85.28 23.11 96.98 28.17 71.20 93.34 94.41 90.39 92.08 51.89 17.02 71.30 89.24 93.72 66.10 0.41 64.52 79.26 37.53 64.03 73.14 67.80 0.88 94.39 22.37 34.79 75.34 45.16 49.10 49.37 68.38 4.72 28.70 20.73 3.22 87.34 33.35 13.96 27.68 12.29 47.23 38.73 22.60 67.53 87.08 59.99 12.26 37.87 -47.16 93.32 81.47 64.35 63.10 50.45 6.21 19.01 36.88 69.46 85.82 8.11 85.08 7.52 93.24 15.93 25.05 88.85 43.90 3.04 83.12 0.99 87.80 25.81 19.68 41.74 66.08 53.78 22.42 35.82 24.44 28.04 12.25 4.16 23.74 21.03 1.10 21.66 91.26 29.10 94.16 78.82 51.21 54.63 9.16 74.94 84.76 26.69 27.62 70.61 88.37 72.78 97.58 29.38 69.34 38.63 71.27 49.22 49.10 66.65 10.55 23.29 38.58 61.56 0.66 58.44 45.27 88.48 84.09 58.13 1.35 70.52 64.62 97.14 85.93 73.70 93.20 66.84 82.17 26.17 38.32 5.97 93.29 93.27 61.51 42.01 57.76 41.87 68.49 76.29 16.63 14.64 51.33 47.60 19.52 83.22 71.36 7.88 0.02 16.59 -45.59 58.29 45.89 53.88 41.85 60.85 39.84 6.25 85.97 24.56 24.99 69.89 44.27 54.83 66.69 20.34 72.00 99.89 92.17 70.46 14.39 1.19 98.96 22.62 77.66 69.46 22.07 8.57 72.01 53.02 82.91 41.29 42.55 54.76 39.50 2.23 29.35 8.48 37.91 47.62 14.23 17.97 77.25 43.05 93.94 1.19 14.23 54.37 54.72 62.88 31.14 43.39 77.13 58.60 26.22 16.05 66.59 26.92 51.48 85.63 54.98 34.06 14.24 87.30 32.47 63.64 29.06 49.55 42.53 95.37 29.31 68.97 3.87 70.24 52.89 82.73 53.48 39.47 34.04 14.52 59.93 74.45 60.17 35.97 21.71 96.41 63.29 5.11 99.17 73.87 24.86 22.70 45.49 2.53 99.65 68.90 59.24 63.51 21.49 93.59 -30.30 48.59 26.88 85.88 61.03 74.44 78.49 39.96 39.34 51.59 2.75 31.29 85.12 23.24 98.20 3.50 25.96 68.15 51.08 45.96 69.03 75.68 79.09 58.74 57.17 43.58 62.36 18.25 23.20 74.33 18.41 23.72 28.92 75.44 49.25 63.08 30.26 78.23 75.67 42.62 11.28 54.58 72.63 34.65 23.43 87.54 12.65 70.93 21.38 98.72 99.22 2.35 25.42 9.52 64.60 95.52 22.80 55.79 33.82 19.91 4.27 34.59 88.97 50.68 58.77 87.19 85.77 48.80 0.43 47.53 48.23 69.50 77.50 79.03 82.27 54.48 45.96 59.49 26.37 4.73 42.04 25.96 6.14 23.92 61.92 90.58 92.87 86.92 56.71 41.12 52.45 29.73 23.55 0.21 56.47 83.56 99.60 23.22 30.42 69.24 -99.92 23.33 95.56 5.72 45.56 28.84 2.71 44.23 11.47 58.73 21.88 40.85 85.62 52.85 60.91 80.16 45.16 76.61 58.06 32.10 11.64 59.69 13.26 78.59 21.04 91.20 98.44 81.17 46.50 49.76 88.53 84.69 78.88 97.24 5.02 54.27 12.25 16.24 85.21 13.03 68.18 90.31 8.26 76.57 3.75 35.04 50.07 96.07 9.76 2.06 56.66 64.35 92.04 80.48 34.04 57.82 88.31 11.73 8.05 19.96 73.99 13.07 86.31 63.58 83.23 91.73 45.51 10.43 90.42 66.67 79.81 33.14 1.52 61.76 0.45 56.20 21.67 73.68 67.17 34.29 79.15 43.82 87.78 84.41 26.63 84.78 17.19 8.71 16.43 69.73 11.09 76.77 12.04 25.57 36.15 83.41 11.20 81.81 94.65 28.27 -97.59 74.93 71.42 62.31 89.31 18.08 90.17 71.43 11.77 54.88 35.24 7.05 78.76 37.78 91.25 39.06 25.64 78.83 68.84 58.82 95.40 59.00 77.00 1.35 53.62 8.06 42.95 67.53 52.66 21.39 44.90 4.22 60.50 97.15 98.41 86.41 14.76 92.54 77.93 32.92 46.84 87.20 8.82 34.78 14.90 49.86 94.04 95.77 40.81 96.16 96.43 21.61 64.68 32.35 56.54 81.55 20.98 13.55 58.99 44.79 26.56 65.20 54.43 48.95 65.23 62.09 55.01 84.47 96.56 95.57 45.61 19.42 63.18 40.38 73.52 76.58 18.80 27.02 52.15 22.22 10.15 65.60 64.59 68.16 78.98 17.19 80.34 66.15 17.53 69.68 36.71 4.16 24.22 93.21 57.29 21.81 1.99 9.07 93.03 12.86 -82.07 73.04 53.75 13.13 96.76 13.08 99.60 49.57 45.30 66.09 31.51 83.63 14.60 2.90 45.41 82.11 65.44 15.49 92.23 49.29 21.92 29.33 19.88 90.00 34.16 17.85 49.35 75.27 7.32 79.03 3.50 64.57 18.19 86.30 13.80 34.94 9.43 38.99 91.34 35.22 17.00 56.63 65.69 21.61 40.93 16.76 65.78 77.89 49.93 26.40 62.22 38.80 9.60 61.67 17.51 55.80 82.63 28.83 91.53 2.24 88.07 23.14 71.47 34.54 51.78 97.69 27.04 99.59 7.10 86.42 4.46 41.15 75.49 92.99 37.71 27.50 30.15 56.72 1.80 36.75 63.04 60.90 12.02 0.00 14.73 47.31 48.73 62.01 40.80 18.26 31.64 63.98 61.22 31.88 55.83 33.99 90.66 95.97 90.55 52.18 -48.08 20.23 86.58 88.87 47.47 21.09 30.61 4.59 55.50 51.59 19.39 85.58 87.70 10.07 41.78 80.82 39.29 57.76 46.09 14.01 13.02 86.34 4.61 35.77 72.48 91.87 86.03 10.66 52.08 51.40 30.21 50.50 98.81 3.73 57.80 37.92 76.48 95.36 27.44 46.75 80.94 7.90 25.77 78.94 40.09 7.39 28.58 18.16 88.01 26.74 37.02 52.31 54.67 93.21 7.02 82.12 26.49 80.45 46.08 69.91 84.64 88.44 86.31 37.82 13.41 36.83 30.64 42.47 86.09 36.10 64.35 15.10 44.98 76.83 31.69 88.52 62.19 10.49 16.99 0.31 25.48 57.68 55.09 77.22 41.48 51.80 98.53 68.34 5.65 32.70 84.76 38.75 75.54 25.84 78.47 68.15 13.08 69.06 77.35 15.01 -29.66 79.77 13.77 76.54 16.10 13.80 97.94 91.98 21.24 9.11 87.40 15.26 39.85 19.80 31.77 71.19 17.22 8.00 6.97 4.24 64.46 50.85 29.14 58.42 86.97 86.47 3.22 77.74 32.32 65.13 68.28 58.39 65.19 23.20 71.01 4.05 22.28 8.19 80.84 51.76 21.76 93.90 86.89 25.57 85.63 86.68 22.78 74.07 79.85 30.49 65.96 98.62 46.03 77.32 77.27 98.73 85.82 36.98 3.93 8.31 25.37 42.46 43.35 64.47 6.31 57.23 99.06 73.04 41.31 35.63 94.38 99.17 53.39 62.63 54.51 23.09 84.62 1.40 7.49 99.96 71.97 99.64 57.33 75.39 30.69 61.17 51.85 45.80 73.93 27.92 74.84 81.67 33.91 90.73 9.38 7.88 54.40 84.69 48.04 64.23 -64.91 46.55 28.15 73.70 31.79 30.14 14.31 75.78 31.59 40.44 37.55 33.94 9.39 9.67 36.92 11.87 93.79 88.18 40.89 64.56 75.00 24.71 67.74 98.24 25.62 50.54 21.67 62.39 32.16 76.46 29.55 2.16 10.57 27.88 57.98 81.08 90.04 63.47 86.51 5.80 65.90 10.57 30.35 7.67 44.68 96.57 62.57 85.90 6.20 17.02 43.46 18.29 58.17 72.13 22.11 35.97 64.58 8.19 97.71 41.34 62.97 19.47 57.82 64.75 42.53 56.18 77.55 56.32 65.86 43.44 71.98 85.64 42.20 74.79 88.63 98.70 77.04 5.26 57.80 20.50 85.21 16.77 70.91 35.91 22.59 55.89 27.09 17.06 82.92 58.32 38.49 71.46 29.05 17.79 50.86 40.82 14.82 33.52 61.11 2.97 -28.20 54.70 82.51 99.17 87.15 61.37 4.36 63.13 68.66 59.00 5.69 64.02 36.32 70.22 41.69 49.24 65.60 22.10 20.70 39.14 96.76 99.00 35.26 28.26 34.02 72.78 12.85 6.24 49.84 11.52 37.40 0.98 66.72 76.98 34.83 33.80 92.20 93.49 19.25 11.69 97.65 52.48 24.75 96.92 11.67 48.37 34.41 23.99 87.31 24.71 34.00 60.14 21.04 77.68 57.35 13.09 17.91 69.08 95.78 43.29 94.82 94.97 21.12 40.80 20.85 95.51 62.40 8.43 60.63 53.71 86.96 42.56 53.32 55.54 8.63 59.72 35.16 99.40 40.71 17.99 19.35 43.12 37.28 10.66 46.25 2.01 73.07 21.13 30.25 57.90 50.36 25.63 35.56 50.88 55.02 78.38 87.72 70.45 6.48 23.01 -50.78 62.35 4.04 36.64 20.34 34.06 79.20 0.64 53.70 15.92 36.85 12.02 45.60 61.05 65.68 72.48 39.49 47.31 63.12 60.95 1.54 68.96 18.20 46.95 27.55 63.75 66.36 95.10 0.88 9.94 97.39 52.50 78.64 16.14 85.42 7.68 75.38 15.28 95.00 57.31 0.93 46.79 77.15 17.72 31.39 43.17 79.37 0.07 76.88 34.05 9.38 69.52 17.10 54.32 94.00 42.44 35.14 87.51 73.81 69.78 17.05 86.62 93.11 70.51 19.51 7.68 18.77 69.46 91.96 59.18 70.35 37.83 97.61 70.59 10.00 63.31 64.93 99.76 15.38 65.73 40.34 85.48 62.65 23.50 7.84 48.84 48.22 19.00 66.76 33.79 33.02 91.59 75.18 20.34 91.97 71.72 94.57 81.09 0.46 97.83 -12.44 31.46 62.04 22.24 57.84 27.60 29.96 81.12 77.84 48.08 85.72 6.21 6.21 23.46 58.54 18.12 63.03 31.23 84.19 2.70 11.88 99.21 25.30 36.39 85.87 89.37 59.28 87.16 59.85 83.27 39.33 11.25 52.18 64.19 71.41 60.10 10.97 15.96 70.07 50.34 25.93 20.89 39.65 84.14 90.33 86.21 25.22 12.03 81.32 19.16 47.85 50.14 96.22 64.32 71.72 88.81 19.30 56.99 15.54 38.40 47.41 62.60 42.03 85.92 99.64 12.38 6.45 79.55 87.70 2.73 20.19 37.65 30.03 49.26 94.10 51.26 55.48 46.09 83.17 54.66 2.00 30.92 13.54 90.42 80.90 44.55 48.03 82.68 55.54 74.82 0.52 23.47 35.97 64.32 49.31 81.51 23.22 3.28 45.82 91.95 -83.51 23.69 13.25 34.04 64.60 38.39 77.45 21.03 93.04 21.92 11.05 28.76 73.70 86.53 10.89 37.08 52.29 13.01 10.11 96.83 15.32 94.82 24.90 16.57 43.29 32.42 36.07 16.97 89.29 16.55 36.30 87.43 56.17 65.24 82.77 69.09 57.86 86.59 37.94 45.43 40.93 9.66 85.16 9.14 27.79 36.09 30.72 64.62 4.59 36.03 32.53 31.89 88.38 61.31 52.38 93.10 46.75 52.35 94.61 26.36 90.46 73.54 26.30 48.35 92.48 13.90 2.33 57.57 29.28 60.26 39.59 88.63 55.24 11.12 86.81 93.25 60.46 46.33 86.98 64.83 2.02 58.14 51.09 30.05 68.37 25.07 68.51 6.23 73.10 6.26 3.64 80.39 72.29 85.13 1.19 58.06 85.80 33.15 69.78 77.45 -49.72 59.54 46.99 73.90 84.58 11.22 40.42 55.54 46.73 55.20 67.12 99.00 77.33 31.83 47.04 63.67 50.89 79.52 13.41 73.86 8.90 91.84 42.56 34.69 1.22 99.97 56.09 12.92 64.34 50.81 89.67 52.71 67.12 2.90 15.48 82.70 54.11 71.09 4.10 48.62 96.99 4.56 45.99 29.72 30.75 53.79 83.94 62.72 82.23 1.09 86.99 39.46 80.59 75.08 63.47 69.76 45.97 65.77 79.27 47.74 70.30 45.21 51.57 78.83 25.19 98.96 26.07 86.43 93.98 88.65 34.08 30.56 29.05 10.08 79.13 24.19 61.70 37.89 32.72 25.46 69.34 16.38 12.62 22.89 95.99 55.52 76.71 31.00 52.40 89.74 58.19 36.62 97.97 84.17 5.55 11.08 67.81 67.77 37.83 55.31 -85.33 74.35 67.71 24.45 7.52 72.19 83.44 90.68 6.28 31.23 71.21 30.20 86.45 9.16 76.73 98.49 19.59 36.73 40.39 45.48 53.46 6.01 33.14 48.33 19.59 2.26 30.16 94.35 65.62 37.13 73.12 89.85 96.86 34.02 67.63 2.97 25.98 88.52 35.37 44.40 33.35 89.14 35.64 54.15 62.72 88.49 2.54 73.12 99.32 80.95 37.58 58.21 34.49 58.11 88.27 95.93 71.22 30.39 10.79 58.50 80.08 71.65 41.57 78.89 61.05 28.39 86.56 84.29 85.16 3.92 8.71 71.74 24.79 69.63 98.93 12.16 65.08 22.48 43.81 32.18 18.85 65.66 53.13 48.54 54.16 14.88 91.01 82.68 46.94 49.82 21.62 56.88 76.51 21.64 81.46 34.12 36.31 42.56 81.15 36.52 -4.24 76.09 44.53 74.33 1.34 56.30 3.82 34.17 73.70 7.88 11.04 65.02 52.80 0.93 7.59 86.58 30.69 58.22 44.78 24.23 92.06 81.14 51.47 94.62 7.46 12.01 22.58 70.69 62.99 0.87 16.30 98.28 69.64 3.87 96.84 17.90 15.03 51.16 63.75 52.40 35.53 87.56 98.17 64.49 55.23 74.23 58.86 50.45 25.43 45.89 66.65 67.39 48.25 19.73 4.69 87.89 11.23 65.72 99.93 4.35 26.40 98.05 11.53 33.21 27.03 57.27 3.13 97.17 32.49 97.48 34.21 18.54 11.74 63.83 88.66 32.65 41.06 88.57 3.92 53.76 94.21 25.98 71.29 10.63 95.82 93.14 89.48 60.43 11.99 75.34 3.86 67.26 4.87 4.90 90.10 95.20 79.75 61.87 22.84 45.95 -50.30 34.93 91.19 76.80 10.67 47.68 95.50 80.93 2.18 50.15 15.04 16.42 92.06 29.77 95.03 88.69 5.00 32.23 38.07 78.65 18.35 18.14 25.04 54.19 74.45 51.17 53.99 59.37 72.79 53.65 25.94 23.09 82.76 86.43 7.66 13.89 79.10 41.90 47.98 38.36 68.20 9.06 41.58 62.23 78.42 97.75 59.49 21.69 57.74 33.21 85.90 84.76 13.30 60.30 7.74 22.97 19.39 16.74 23.51 94.09 26.98 8.31 29.90 92.17 30.69 33.37 29.26 45.43 77.35 70.17 72.44 14.64 0.44 31.93 92.85 15.04 70.32 27.65 0.33 64.11 9.91 6.55 10.84 68.27 71.67 63.80 34.27 17.52 71.53 22.15 37.17 76.98 54.26 11.73 10.33 50.74 63.38 49.95 21.09 45.00 -37.26 59.20 34.90 88.50 30.09 19.33 14.00 88.09 52.47 48.42 88.39 51.77 31.77 65.55 21.37 9.35 33.35 78.84 78.23 20.15 38.14 47.93 3.17 18.82 19.35 31.59 88.30 38.15 95.32 28.12 80.97 79.93 89.79 95.02 50.97 71.66 23.00 37.06 96.79 17.29 37.85 67.21 1.30 18.17 59.87 75.16 64.25 82.02 39.05 5.66 50.47 22.76 56.04 41.01 66.13 73.10 27.07 28.07 86.86 26.38 96.91 42.53 29.49 9.17 19.69 99.60 5.69 57.27 11.77 98.09 37.88 13.28 90.24 73.89 45.31 46.64 81.75 64.08 44.49 38.98 47.60 16.68 57.21 71.83 57.42 20.97 30.39 81.41 89.29 21.61 77.22 8.65 36.54 89.28 16.38 12.96 97.50 47.21 41.84 6.69 -46.46 66.03 62.74 55.22 40.32 30.90 46.76 80.30 51.07 95.49 48.17 20.97 81.28 33.69 92.24 81.81 33.77 99.80 44.38 89.77 58.10 71.27 5.60 21.67 59.33 77.48 12.45 12.60 56.59 73.71 46.60 96.11 83.38 50.78 7.55 52.07 22.63 82.02 94.03 50.24 9.88 40.45 80.14 96.90 78.65 30.74 70.53 19.38 60.73 30.72 72.97 3.68 57.14 1.42 32.85 36.47 43.66 0.71 58.63 17.00 54.31 8.21 0.66 72.22 92.40 76.33 54.65 9.86 57.37 10.70 20.21 40.40 73.94 53.28 2.12 41.07 81.00 53.52 38.99 81.11 42.64 49.32 35.36 31.34 5.24 9.41 9.89 40.02 14.35 98.16 19.35 46.56 68.88 76.93 74.02 94.15 11.27 4.38 41.73 84.20 -71.26 39.81 78.86 32.73 26.05 75.18 31.11 61.62 30.55 40.09 90.07 83.71 31.77 4.01 43.96 10.25 95.22 68.36 50.11 43.99 74.04 7.68 28.74 56.01 61.47 91.64 48.66 33.53 66.98 79.25 87.66 29.67 61.01 82.14 28.10 52.96 2.84 28.18 31.29 97.71 23.85 31.79 79.04 32.03 56.88 19.49 68.41 64.36 38.09 51.08 93.65 13.38 14.29 99.39 96.90 28.67 60.22 4.08 15.99 73.30 42.43 32.12 8.76 89.94 27.92 87.97 37.22 27.45 60.27 1.37 10.44 98.64 32.09 54.93 56.70 48.84 31.56 40.80 34.65 14.78 49.71 6.02 71.90 69.71 85.45 89.22 71.65 29.59 47.98 42.13 2.81 35.99 93.03 91.00 0.97 86.50 58.65 40.61 78.74 25.79 -8.75 92.81 64.57 51.69 85.02 51.85 16.33 66.87 7.42 80.00 61.56 71.47 47.30 5.15 70.03 13.49 0.57 11.06 22.85 8.03 36.63 41.96 11.02 99.10 34.43 18.47 17.86 52.09 87.35 60.71 38.13 5.43 7.29 4.88 43.26 19.51 48.45 66.73 96.42 30.21 84.17 59.03 85.46 43.04 20.08 93.42 39.67 27.06 81.28 17.18 49.01 46.66 9.45 53.67 55.25 78.07 77.02 38.57 2.51 89.83 58.85 27.52 20.89 84.96 13.63 10.35 84.73 45.07 50.97 30.19 28.82 32.32 35.82 20.37 85.86 82.82 53.24 22.75 89.32 5.83 29.62 4.41 93.64 5.34 36.24 24.15 55.72 12.06 43.58 70.75 74.87 89.20 15.20 87.94 12.87 20.38 37.99 98.61 41.41 52.31 -55.61 72.57 81.96 17.35 2.56 61.98 62.05 12.45 79.43 87.35 19.37 14.18 23.40 53.73 59.22 60.06 96.16 75.05 66.99 9.11 33.73 49.23 94.74 27.55 58.89 97.86 89.00 93.10 97.44 95.12 34.64 56.54 30.93 14.58 87.89 38.72 81.38 81.32 97.29 6.35 59.32 78.92 2.66 99.67 30.44 91.98 64.65 70.41 52.22 48.20 86.27 77.91 13.04 73.50 90.91 98.88 52.67 48.07 15.08 19.89 1.96 11.36 10.22 57.34 41.39 14.65 21.35 19.16 2.28 33.60 97.31 17.11 81.21 84.85 32.17 58.80 55.04 61.69 6.85 15.22 88.29 27.13 85.95 94.38 48.65 30.27 67.21 2.85 88.72 14.94 58.15 69.28 60.13 86.73 30.58 22.87 87.15 44.56 69.42 69.12 -31.60 74.84 6.11 77.18 82.88 67.68 33.23 77.46 62.79 9.38 4.61 38.29 87.35 38.64 1.44 39.80 31.80 88.87 3.40 72.87 89.37 49.60 14.10 45.07 72.72 53.27 51.22 42.37 31.92 97.66 76.44 21.42 51.31 12.23 19.29 60.70 53.11 58.28 11.56 3.55 38.77 73.40 52.54 98.81 96.44 22.75 34.81 1.82 16.90 47.65 18.06 36.60 93.98 85.69 65.67 80.22 62.36 0.43 48.81 63.14 62.46 30.53 6.94 98.97 4.57 17.51 76.68 72.62 62.13 24.92 25.10 43.85 44.80 53.42 26.92 42.91 41.16 72.99 96.49 19.35 2.22 67.74 80.16 59.10 18.03 13.01 86.37 35.15 75.05 43.61 98.31 38.54 84.20 10.62 17.44 68.41 35.40 31.46 91.24 45.26 -81.32 0.76 59.43 75.73 20.95 56.56 17.08 72.58 63.59 12.06 20.46 72.83 67.99 2.03 63.21 81.00 31.93 35.47 3.23 70.10 11.75 66.24 29.90 22.12 87.61 46.21 8.98 18.35 29.82 51.04 15.71 22.99 73.58 72.77 69.37 97.40 2.83 29.93 39.18 42.84 80.71 76.40 67.90 64.58 46.68 33.66 34.14 68.77 97.19 18.92 65.12 76.81 24.58 1.59 80.56 7.47 7.89 11.46 25.84 15.54 79.31 98.81 79.89 47.83 3.27 70.33 62.94 81.33 76.60 92.39 53.43 33.30 97.50 33.32 81.19 54.68 21.44 93.29 25.65 80.17 9.78 58.36 84.87 57.52 8.22 19.86 86.51 16.28 22.29 49.81 56.95 89.90 61.55 1.64 25.18 59.28 22.86 74.37 76.96 18.36 -45.21 18.20 70.70 14.27 78.79 18.97 3.05 63.04 46.11 75.14 26.84 86.01 44.76 65.42 26.37 26.10 54.45 13.77 76.29 40.12 68.55 55.35 1.34 27.43 49.79 35.93 57.95 32.07 13.33 41.00 49.04 46.69 95.62 30.80 41.57 51.96 9.11 0.61 85.68 50.79 95.36 65.16 34.44 46.01 75.24 45.09 42.96 44.90 46.31 58.78 23.50 53.47 16.93 33.67 67.90 83.91 42.30 81.02 84.31 20.43 30.35 15.27 57.70 27.53 29.27 71.83 89.06 60.01 66.41 86.35 10.23 16.14 0.12 97.27 92.32 46.08 62.84 58.55 32.59 10.06 47.84 29.68 40.08 50.33 68.47 28.74 82.65 80.98 3.58 8.26 30.79 81.27 86.45 41.23 27.01 18.69 16.91 46.68 73.98 81.47 -88.39 7.46 47.24 99.38 11.83 63.78 60.49 57.93 33.98 87.14 24.13 14.23 17.31 54.07 68.13 85.53 29.25 83.74 47.08 80.42 4.05 70.37 73.26 29.67 19.57 97.40 52.13 29.22 1.45 33.47 52.38 16.83 95.73 53.54 18.83 16.05 61.81 20.06 53.22 79.92 58.52 79.17 16.46 60.53 96.87 53.92 21.63 21.78 67.20 41.60 88.09 20.83 88.87 9.20 23.81 66.84 45.13 99.07 52.10 43.80 29.17 23.55 43.13 4.82 64.02 70.97 68.78 48.21 75.98 0.28 58.56 61.57 22.64 7.17 71.94 18.26 69.73 75.90 40.09 27.29 5.68 50.38 97.45 32.31 84.51 32.98 43.70 11.14 74.66 11.09 79.54 25.70 97.51 92.21 98.73 67.65 79.75 52.32 10.81 72.85 -45.63 13.04 50.09 28.14 0.32 90.84 28.73 8.20 77.68 49.60 39.41 64.99 65.15 22.30 2.25 95.82 19.85 92.75 54.53 50.96 97.83 22.13 53.89 56.59 38.49 64.25 96.13 5.68 68.20 36.31 59.08 40.35 44.40 27.46 44.70 72.68 49.57 93.86 73.16 72.73 54.50 98.69 78.38 96.81 64.06 96.39 57.58 89.27 85.60 65.39 31.16 33.61 98.63 36.99 89.49 77.35 96.74 59.80 6.87 26.74 75.86 0.35 66.43 57.30 55.94 42.03 85.23 38.64 65.99 38.05 99.94 60.96 64.65 48.99 2.48 5.81 97.71 8.10 89.53 57.10 97.85 92.44 88.44 74.68 71.77 5.22 43.55 63.72 51.15 88.23 19.60 17.03 56.45 11.25 23.06 58.34 2.05 20.40 31.38 59.09 -19.56 25.17 57.79 65.14 68.70 6.02 19.31 63.44 37.53 69.18 83.48 68.60 51.80 20.61 46.23 14.71 12.73 55.48 57.45 36.74 52.89 38.60 24.22 5.23 16.42 57.26 47.10 82.87 0.77 99.94 28.37 30.00 75.46 0.44 27.58 9.51 87.00 37.13 7.49 21.06 33.24 81.26 74.95 18.42 80.19 90.85 12.13 25.25 37.58 8.07 27.97 49.50 14.87 72.87 43.80 87.63 46.83 20.09 41.26 98.36 7.06 85.87 85.20 87.76 28.12 72.99 7.07 31.49 29.92 22.35 64.45 10.22 90.97 90.52 75.00 65.30 23.31 14.79 33.46 63.88 49.73 22.96 23.90 38.09 24.56 97.70 48.90 94.75 5.60 74.16 6.33 96.26 40.95 9.19 61.47 69.58 2.10 71.19 59.75 20.86 -80.77 5.96 4.86 69.95 24.30 99.42 6.75 74.11 74.91 91.23 59.93 59.83 37.46 16.71 8.57 65.70 25.29 27.17 40.11 63.99 19.42 0.72 69.93 29.55 94.73 93.97 28.90 51.89 96.04 63.18 58.20 99.16 79.31 36.59 40.75 81.53 0.44 0.84 18.35 1.23 8.29 54.64 20.70 38.96 15.64 12.55 99.94 95.70 90.56 70.32 70.29 57.48 55.50 56.68 93.92 73.85 13.19 21.11 72.64 74.15 18.59 58.83 15.12 88.82 23.45 12.74 57.09 4.08 77.84 44.61 20.11 25.64 42.64 29.25 54.29 89.07 20.24 4.38 0.44 86.94 62.01 21.35 3.92 9.29 88.01 90.92 89.62 34.40 60.47 0.07 61.66 66.06 96.72 77.43 43.48 67.71 84.74 23.07 48.53 32.86 -45.42 53.26 78.72 36.63 64.46 47.27 0.98 56.84 18.20 68.16 41.28 52.42 19.75 24.09 7.04 80.82 51.16 2.34 66.33 18.73 60.08 92.46 60.69 45.61 59.92 37.59 29.08 97.71 14.10 73.67 83.33 88.52 62.01 5.87 74.81 16.24 88.94 22.39 97.07 29.07 62.56 96.66 32.79 78.73 69.06 94.27 84.52 42.36 4.81 85.77 87.50 31.22 75.98 13.28 93.18 69.16 15.93 87.29 80.40 1.82 94.08 83.55 57.16 92.82 96.38 26.98 84.11 37.75 79.04 44.63 92.57 82.64 11.83 25.34 80.25 15.29 45.95 57.16 98.48 68.51 30.68 65.15 37.29 44.51 88.26 3.93 11.51 44.96 74.09 6.73 14.70 88.33 2.22 75.58 46.29 51.35 27.07 70.26 84.72 8.04 -37.57 75.00 46.30 37.36 2.78 15.54 87.50 40.09 95.14 69.19 37.31 20.80 23.05 81.94 53.77 61.52 24.36 36.04 63.84 4.17 10.60 88.58 65.78 32.37 89.23 38.76 74.58 68.89 6.25 21.63 18.05 2.62 82.35 22.30 47.94 80.95 54.82 96.81 84.44 19.57 22.85 88.74 8.22 23.33 50.17 79.51 47.46 3.90 50.44 96.15 44.09 6.22 90.40 40.47 51.73 63.83 78.02 74.85 82.48 74.27 22.53 10.98 10.11 15.11 75.82 89.77 31.88 11.55 34.89 71.74 44.89 21.41 32.40 75.63 63.86 38.05 93.70 66.60 91.45 82.99 94.95 39.46 45.12 41.93 38.51 12.43 88.34 68.60 68.45 73.71 70.48 3.70 76.27 9.19 5.58 33.80 2.89 79.04 67.70 0.56 -44.28 29.14 81.89 13.37 73.33 86.44 60.88 41.91 82.03 27.48 73.48 42.28 70.89 97.84 94.08 64.25 11.01 33.35 43.53 81.37 39.28 1.23 98.09 21.33 5.66 12.17 94.85 54.96 72.18 64.04 52.52 45.66 91.60 71.32 92.61 44.03 70.09 4.14 18.89 13.51 54.52 23.80 3.49 13.31 71.49 85.23 7.53 18.59 17.78 98.12 97.19 40.84 81.63 31.80 4.33 63.93 77.17 53.36 47.40 79.64 2.11 73.88 85.38 1.25 32.13 5.38 61.00 69.38 43.42 17.67 80.07 37.32 31.46 46.63 32.52 96.47 90.19 57.94 84.01 28.55 62.52 63.56 1.16 11.04 97.91 49.18 63.10 30.47 53.97 68.74 2.77 35.46 52.81 8.53 77.40 2.39 65.50 12.73 89.10 90.30 -25.96 5.03 46.78 11.21 95.11 79.16 93.08 68.61 74.11 44.52 57.82 94.11 8.77 42.07 18.83 48.62 63.83 50.72 17.57 38.66 20.39 38.35 31.76 96.63 31.84 80.23 14.92 18.54 82.45 79.13 41.28 99.76 13.13 39.53 5.59 80.77 10.53 26.41 50.51 51.82 66.22 26.79 5.76 88.67 20.36 61.50 4.99 15.86 99.49 91.43 4.53 18.69 53.33 11.79 76.05 54.74 18.67 8.53 24.16 94.88 34.49 61.24 5.78 2.79 75.51 6.78 38.59 57.75 88.80 23.81 23.83 69.53 63.98 89.42 17.09 55.02 92.33 58.11 77.78 91.80 16.95 52.61 48.28 34.88 63.83 35.86 34.57 33.34 1.84 91.07 0.63 83.37 61.73 30.11 28.58 24.58 89.64 49.89 74.60 64.03 -58.42 80.06 44.12 39.00 34.60 63.37 44.45 70.38 48.23 2.36 0.97 5.73 33.45 0.61 21.12 28.61 28.08 17.44 3.00 19.17 29.21 20.84 65.67 13.96 4.73 97.72 84.37 64.26 36.99 34.36 84.19 45.99 48.97 45.57 26.87 11.50 41.14 38.81 46.37 92.12 67.38 79.66 47.03 41.56 7.11 24.65 80.01 20.94 96.49 76.46 81.21 63.69 48.81 42.20 98.82 23.45 30.34 26.30 84.10 69.67 81.01 54.63 95.67 32.93 9.46 65.91 31.00 75.57 10.10 40.61 94.47 65.42 52.05 77.40 80.86 28.99 8.10 85.17 59.61 50.50 96.48 55.54 37.16 72.59 8.02 82.83 1.68 60.67 85.98 9.47 90.51 29.04 74.84 41.36 37.46 88.79 4.25 79.48 20.52 80.34 -56.10 5.55 52.74 89.89 86.03 87.87 25.09 52.37 3.94 0.70 5.13 98.01 66.93 39.26 76.44 77.99 77.90 73.45 84.15 20.26 36.52 12.90 71.83 82.44 78.01 38.47 76.90 47.20 18.15 92.56 52.52 0.31 47.06 57.41 71.88 63.05 81.15 95.81 41.48 35.06 65.36 51.96 90.27 29.65 7.22 98.30 6.06 70.48 39.38 40.06 10.51 54.11 0.74 26.70 37.16 38.22 70.33 45.17 38.33 43.26 63.52 43.62 54.71 52.10 90.26 36.97 67.94 12.26 77.71 14.19 49.49 9.54 25.18 96.16 82.58 85.66 59.75 37.77 46.86 71.60 54.47 66.97 96.20 20.72 98.17 6.16 78.77 20.82 4.54 13.52 7.10 41.98 91.49 49.13 90.46 9.60 28.46 11.92 71.75 59.74 -16.00 14.81 18.87 38.88 28.42 55.00 22.72 41.59 11.05 42.39 8.20 85.58 74.18 85.12 56.04 18.06 16.85 73.05 40.93 12.21 36.23 89.42 88.81 87.20 15.40 81.31 78.35 22.20 13.16 2.94 63.57 13.02 75.70 67.10 20.04 82.60 93.66 28.06 76.25 76.16 11.48 8.51 5.43 22.73 49.31 70.66 98.91 59.30 21.50 62.86 27.25 97.17 63.64 72.63 82.07 41.40 21.02 51.45 76.62 90.78 27.09 30.48 6.05 44.58 20.97 90.02 54.05 81.29 29.10 63.61 67.86 61.43 3.56 96.69 88.81 58.66 74.59 30.55 55.67 22.18 24.04 4.34 22.76 88.73 22.09 21.80 54.58 33.61 72.20 65.20 55.62 83.27 71.94 38.61 52.23 95.14 7.03 52.66 3.41 16.03 -12.05 24.16 82.69 19.97 44.39 48.33 54.71 33.89 93.32 84.88 34.38 3.88 20.58 13.38 50.12 63.73 39.03 51.92 19.94 72.45 55.72 47.33 61.90 59.50 60.55 57.80 76.02 78.16 94.18 97.30 56.31 30.93 49.60 7.95 34.04 4.46 9.19 61.35 38.87 5.59 51.13 15.86 48.76 17.28 48.96 93.53 26.12 53.07 19.53 76.61 70.39 87.12 71.95 24.84 24.93 80.60 64.24 2.54 48.96 55.07 21.01 47.97 57.30 44.75 59.43 72.68 30.36 86.07 93.50 80.65 32.30 54.84 14.02 26.72 51.87 68.91 16.86 10.42 96.07 98.43 22.29 90.62 10.96 19.63 38.44 48.70 31.66 62.02 79.09 17.05 60.49 63.31 70.67 86.08 29.74 68.34 19.67 27.23 79.93 93.05 -46.94 24.39 44.17 67.09 98.33 26.53 27.33 10.27 8.92 70.20 59.25 16.20 93.80 37.56 10.33 69.21 40.83 79.72 24.54 93.30 73.73 58.41 43.59 68.99 25.82 66.85 47.12 89.54 34.00 44.83 76.25 96.87 60.56 28.31 68.23 47.05 23.71 4.05 89.43 8.81 9.08 75.19 85.30 95.22 73.19 71.85 59.62 19.23 42.99 80.27 75.99 12.32 7.16 85.91 11.64 15.29 14.54 44.25 43.68 79.25 58.77 9.49 27.40 84.43 2.90 79.10 94.55 44.43 89.17 61.04 65.41 90.60 55.63 71.72 36.71 42.58 99.64 82.01 15.65 69.69 63.71 30.06 30.85 99.87 36.12 92.04 38.03 59.26 23.49 31.57 20.61 93.72 39.17 83.91 28.91 69.45 6.91 40.24 84.05 22.95 -32.10 13.36 67.43 8.64 50.22 33.28 85.66 23.76 32.16 62.96 78.40 62.36 14.58 10.72 10.04 98.38 71.22 76.30 65.10 85.72 19.45 36.45 2.92 25.77 51.59 64.10 61.05 54.81 23.58 88.78 41.50 49.19 76.85 82.75 35.56 83.54 22.11 27.31 41.49 14.70 9.97 47.55 86.24 9.17 94.57 20.12 32.56 54.69 7.27 44.09 17.93 76.75 57.99 96.15 70.80 49.20 75.81 51.62 71.04 44.60 43.84 87.51 31.49 73.41 38.20 34.97 7.47 40.37 38.19 90.19 65.70 23.56 76.09 58.38 74.40 80.09 81.49 70.63 19.42 41.52 99.11 28.88 69.18 11.74 70.27 83.45 38.60 63.35 89.24 58.16 74.87 27.10 66.49 18.89 94.23 74.92 74.32 80.25 31.83 39.11 -81.46 18.00 72.96 2.11 88.56 20.74 19.00 99.28 46.23 3.89 23.12 11.32 17.28 78.98 89.79 67.82 71.85 63.14 50.90 35.51 26.02 48.56 73.39 47.67 58.34 6.29 74.19 68.23 67.36 11.01 82.72 79.60 19.31 49.58 2.92 22.96 4.45 17.92 60.96 93.80 78.91 29.98 75.42 46.94 54.95 62.84 91.33 53.42 18.78 81.19 63.83 32.94 89.50 84.20 62.05 63.02 3.49 27.43 74.96 85.19 23.89 89.52 46.72 67.11 76.63 61.28 30.65 95.35 1.87 10.97 69.86 41.27 99.84 32.04 33.96 87.06 95.26 38.85 70.92 93.24 12.85 27.03 0.19 57.80 41.30 21.66 59.48 90.74 11.95 84.20 39.35 53.26 28.27 13.21 34.43 65.48 31.48 7.80 48.70 83.68 -57.64 53.75 4.42 28.42 85.97 71.96 2.33 18.98 33.79 99.75 51.99 39.67 12.44 55.07 70.49 65.24 98.10 68.06 14.90 87.51 99.84 59.41 75.93 7.68 47.06 82.84 51.83 18.45 21.54 13.15 72.33 24.72 12.26 18.14 64.43 46.35 28.48 45.08 30.00 52.81 14.69 27.60 98.05 92.03 48.56 35.30 45.85 54.82 71.57 7.55 99.29 64.13 16.87 19.42 57.90 37.32 46.59 73.12 59.75 92.00 84.11 99.07 59.06 15.78 53.85 58.29 24.96 21.58 87.07 72.09 35.39 73.67 13.70 6.67 47.19 9.11 36.01 22.08 29.03 29.96 17.83 31.00 36.52 15.95 95.46 65.65 86.02 76.66 77.20 10.78 29.22 4.22 87.38 1.98 41.42 47.84 1.02 39.67 57.16 94.82 -15.80 25.95 54.03 75.92 70.96 40.66 60.29 27.19 60.60 91.26 57.35 89.46 35.75 92.53 69.77 92.85 84.27 69.74 31.51 41.83 88.52 0.41 14.34 40.06 88.02 41.69 46.55 12.65 62.20 25.35 69.87 63.66 71.26 68.40 49.24 11.22 36.90 36.84 88.80 15.98 30.73 21.64 62.72 43.65 68.33 91.18 47.96 50.65 6.00 21.22 42.81 46.25 24.56 90.55 0.94 48.19 99.42 66.95 61.01 86.44 84.21 18.51 74.19 81.28 9.89 47.49 57.47 96.40 48.39 91.01 20.40 91.68 68.31 40.65 49.44 50.35 83.13 85.83 87.80 27.70 33.99 22.69 53.10 3.57 1.45 25.86 54.84 70.91 79.30 53.59 45.64 63.99 74.17 99.13 47.82 69.05 79.60 83.89 70.89 71.03 -20.58 87.04 69.68 34.55 60.50 14.25 21.49 3.49 32.67 29.79 16.57 81.49 93.26 6.42 54.46 9.17 20.89 89.97 23.74 46.06 68.83 42.48 22.82 5.54 2.40 87.92 51.29 32.53 25.82 46.25 86.62 75.58 93.06 92.59 46.77 81.52 14.65 40.13 32.98 91.91 89.76 72.30 17.15 90.32 85.57 93.59 72.45 77.25 22.84 85.09 34.75 48.26 37.93 31.24 77.61 11.38 91.44 97.67 2.62 26.41 51.10 30.93 25.88 28.67 53.57 13.49 71.12 51.77 34.49 56.73 73.68 32.02 41.12 69.85 82.93 28.26 20.81 50.92 66.68 31.91 97.18 43.73 0.34 94.72 44.06 17.28 8.91 22.66 51.85 28.06 14.15 48.94 55.77 82.76 94.13 48.77 59.36 43.73 55.15 67.46 -64.72 22.99 17.47 7.54 73.57 23.07 71.52 35.39 88.18 81.54 59.00 32.22 20.76 86.32 41.81 91.96 95.37 10.31 39.25 20.60 46.52 35.99 42.89 26.58 87.76 84.75 79.56 64.54 83.43 98.57 99.00 22.11 16.46 91.55 63.78 76.14 72.49 82.34 75.91 65.99 7.09 23.52 5.04 53.00 17.67 30.77 7.36 45.59 43.47 34.65 28.34 43.98 0.81 66.98 9.93 57.49 85.68 12.84 71.60 59.30 64.95 17.28 51.93 2.79 58.77 8.10 25.01 47.45 80.30 55.36 86.70 66.79 90.52 93.78 1.29 16.16 57.16 55.80 57.70 57.67 50.57 19.12 50.00 78.19 64.82 77.27 94.92 83.44 65.51 80.45 22.40 11.96 3.21 63.04 77.27 23.40 83.92 12.96 70.40 35.80 -32.37 18.83 29.75 97.69 37.29 1.63 87.07 67.48 34.53 52.62 1.25 70.77 23.15 75.64 27.76 19.64 68.08 10.55 99.86 43.62 34.10 12.41 53.18 23.21 99.24 93.95 56.33 6.89 20.22 38.99 65.60 51.50 35.74 49.30 17.30 32.65 35.03 72.57 88.69 5.15 99.62 27.35 96.77 69.29 18.32 20.10 95.42 16.57 41.59 41.36 76.95 56.88 34.24 62.21 62.46 39.94 6.85 21.86 62.73 76.54 90.07 96.92 78.89 4.89 81.69 10.27 72.22 7.85 19.04 48.61 47.13 25.77 77.97 1.60 31.71 9.47 27.28 78.11 21.29 41.77 1.77 69.56 13.28 90.70 43.20 87.03 45.09 88.39 88.23 11.37 30.06 18.25 60.80 44.87 60.12 96.92 5.33 11.25 38.22 99.76 -64.96 18.46 9.63 20.49 37.36 21.32 5.38 1.87 2.25 68.09 89.86 33.23 51.19 77.81 29.09 30.89 16.92 79.13 53.99 88.83 38.56 57.22 52.18 90.23 13.55 8.18 92.61 40.24 67.93 81.97 41.26 26.61 1.98 85.30 9.80 61.22 56.62 28.73 91.25 3.19 98.26 37.58 65.28 18.68 59.52 89.16 70.43 96.93 68.83 2.01 86.72 1.55 46.55 58.09 78.49 96.36 47.28 6.64 85.36 48.85 31.01 85.57 83.20 95.48 17.52 23.36 71.32 20.80 14.19 2.98 50.40 79.71 16.02 88.29 18.48 57.93 97.55 88.02 45.56 25.96 16.50 74.19 86.18 12.88 29.80 78.13 87.80 90.34 87.90 4.68 4.65 9.31 79.21 30.47 23.74 16.55 90.49 24.69 46.25 81.69 -80.70 25.86 94.23 22.40 43.39 56.82 6.26 94.26 67.96 84.57 17.90 53.91 17.65 34.35 76.12 24.72 67.14 12.43 1.53 97.10 82.92 52.42 28.37 89.28 91.90 39.39 96.53 53.63 69.70 91.50 30.19 76.81 27.00 23.54 40.62 97.81 81.62 0.50 28.07 42.77 50.66 2.93 15.61 75.41 98.20 54.75 21.52 54.95 89.82 8.30 96.01 7.73 55.30 70.66 52.28 37.75 10.17 72.78 99.65 85.00 63.12 59.88 85.70 63.38 29.08 26.06 67.37 54.18 70.82 88.50 63.93 48.97 50.27 92.64 69.75 60.85 69.93 29.20 12.08 22.82 85.34 71.87 89.62 3.03 24.88 24.37 73.96 20.60 88.30 53.52 72.99 75.93 67.46 5.78 19.20 3.80 10.36 35.73 95.40 98.64 -78.35 20.14 9.40 51.47 57.52 17.03 35.93 61.25 85.19 27.45 20.05 8.65 86.13 18.82 0.41 92.62 4.57 6.48 41.58 1.31 16.65 37.47 84.14 6.59 41.36 98.20 87.63 66.76 70.48 17.35 26.16 98.79 14.23 77.92 32.55 1.09 62.64 29.42 30.03 67.95 40.60 29.91 79.40 81.87 44.99 47.87 35.26 95.58 2.64 31.95 88.54 62.36 29.66 57.70 73.44 50.79 13.06 25.07 40.17 15.06 3.25 46.76 37.17 69.03 86.26 85.81 75.44 43.87 72.54 25.59 29.13 10.98 33.68 51.61 66.78 65.19 59.37 48.49 28.35 42.05 95.48 20.68 54.57 45.09 94.94 57.23 96.61 95.35 76.90 39.64 17.87 82.65 1.77 36.35 61.05 68.05 20.69 49.52 35.46 36.10 -80.12 51.23 83.32 71.45 13.30 85.33 76.06 81.50 87.62 30.45 4.44 50.97 43.17 62.37 78.96 16.75 71.87 3.04 67.97 85.90 72.63 62.67 66.99 37.55 71.14 29.61 18.68 61.81 51.67 20.38 95.48 3.85 43.80 84.44 22.49 55.64 24.84 25.02 71.61 87.10 37.45 16.14 71.50 25.11 70.07 26.99 38.74 90.90 37.79 68.57 62.77 72.95 91.20 6.05 91.21 8.20 59.15 42.32 87.89 50.15 67.70 47.66 4.14 73.04 3.71 60.09 65.32 25.28 40.04 31.51 93.35 80.75 12.32 37.55 7.28 26.29 22.66 66.39 56.15 39.62 31.43 11.44 97.54 68.17 18.68 52.56 53.41 91.38 27.85 47.07 95.32 7.45 67.09 73.21 30.01 89.39 29.95 82.13 38.05 85.16 -23.01 74.39 19.28 8.15 22.68 88.02 76.72 13.66 35.23 28.54 4.69 12.85 85.36 94.90 50.07 4.20 63.52 45.98 49.33 55.12 8.95 73.91 34.68 8.94 88.17 46.83 23.35 56.96 84.03 92.73 17.42 79.15 81.19 11.03 81.34 64.25 28.21 62.75 55.77 61.52 55.25 21.98 41.97 55.58 61.59 69.80 87.02 93.71 21.94 64.58 32.25 39.05 9.47 17.67 36.47 12.26 90.80 31.27 84.39 75.87 84.26 29.54 19.37 1.85 6.55 87.94 22.80 0.96 81.13 54.74 93.95 90.56 54.94 44.81 60.71 72.63 83.33 40.43 1.12 57.63 1.95 45.23 88.33 81.22 90.56 7.41 7.34 92.81 29.46 40.17 20.08 54.09 99.38 90.00 83.93 9.53 58.34 23.61 79.54 71.46 -30.19 89.31 66.15 78.23 88.10 95.45 33.67 27.25 91.62 78.57 2.48 0.42 67.27 95.13 18.58 36.68 66.63 81.67 14.04 76.88 1.07 99.83 22.45 66.61 97.14 34.58 44.88 39.86 60.25 42.92 70.85 35.30 91.73 89.73 92.02 90.22 58.26 40.66 38.10 51.09 93.71 99.16 75.40 64.48 5.79 89.89 41.63 60.00 99.13 97.32 84.64 84.48 59.62 14.99 94.40 32.04 90.31 73.40 93.25 89.26 49.36 64.83 14.21 22.03 85.98 7.63 98.55 13.15 97.91 3.92 0.22 7.98 47.88 6.05 81.61 77.24 71.88 86.25 66.78 86.12 37.57 57.58 69.86 98.25 48.78 89.77 49.00 19.25 47.62 79.01 33.12 65.20 15.42 30.94 88.80 57.41 25.01 41.53 28.79 40.17 -61.20 41.47 80.63 94.03 69.37 16.38 17.11 26.63 60.67 97.76 94.56 44.12 33.90 49.55 80.55 72.31 66.32 76.12 8.55 24.96 37.57 62.13 23.92 74.35 10.55 59.81 34.35 45.69 74.34 96.48 56.28 90.21 29.93 6.42 66.80 67.47 76.63 1.89 39.60 1.49 49.96 13.97 11.78 59.76 97.87 52.09 10.06 39.73 100.00 8.36 25.78 7.08 87.43 93.75 0.82 32.85 0.47 77.20 20.48 99.46 4.33 67.82 10.66 22.62 14.45 29.92 25.28 47.02 69.01 81.75 93.40 76.23 7.19 78.01 74.87 6.71 76.97 37.47 80.90 3.14 39.31 10.28 44.35 50.74 93.05 11.30 81.54 14.91 0.85 25.40 10.39 42.68 23.04 32.78 70.69 96.28 22.35 32.40 9.17 75.15 -73.77 32.96 32.98 27.56 88.51 68.29 82.95 18.81 35.69 29.42 75.75 45.72 17.01 87.50 17.87 22.03 84.87 51.46 45.26 16.19 93.62 2.66 5.91 67.01 25.88 27.45 77.26 22.70 54.34 15.97 14.22 90.08 39.63 27.61 34.39 0.80 71.76 88.70 73.67 78.78 48.18 68.71 3.90 4.24 27.68 95.95 15.68 90.76 13.31 47.29 30.88 26.11 12.15 68.74 38.69 31.71 78.08 90.14 59.69 51.86 30.42 94.85 73.91 60.35 33.46 48.10 2.69 56.23 77.11 70.94 25.76 58.63 33.01 69.61 14.07 3.97 87.72 76.17 51.22 47.59 10.00 23.45 72.05 49.01 40.78 53.16 45.56 65.90 59.37 95.51 35.75 60.79 99.08 45.58 51.10 47.62 50.59 57.72 70.43 63.86 -24.06 78.74 30.45 91.62 55.84 26.20 25.64 67.07 99.58 46.34 42.47 88.18 84.00 5.76 43.50 26.14 29.61 88.70 6.25 24.24 60.73 19.54 61.95 4.78 58.78 50.41 46.38 31.17 14.91 82.17 22.38 78.19 47.67 45.32 90.39 1.64 88.15 79.24 30.84 88.83 60.00 37.55 93.20 2.41 4.34 10.89 43.02 78.65 70.53 2.29 13.66 39.47 81.83 39.59 87.49 51.89 65.43 43.22 91.93 99.14 46.18 82.27 65.46 24.91 38.28 33.85 5.20 4.92 86.99 2.72 78.33 77.67 1.90 57.13 59.83 18.95 74.51 67.04 8.85 81.16 70.03 10.74 19.50 68.43 49.42 4.44 3.22 84.05 91.68 27.96 74.12 14.12 69.73 17.00 12.85 53.80 20.85 91.61 44.31 67.90 -50.25 66.22 24.76 93.19 59.20 20.04 31.36 92.73 78.56 42.49 18.62 93.01 47.45 33.53 11.41 57.13 30.69 22.36 75.16 75.91 49.48 21.77 96.94 9.90 76.70 96.43 58.93 17.50 19.93 13.59 79.29 79.04 42.63 93.08 86.32 10.56 5.52 97.46 73.15 26.96 37.76 75.82 49.58 78.03 99.90 58.36 71.72 56.03 14.27 44.98 12.23 34.96 39.06 71.85 47.10 12.63 94.16 37.03 65.73 60.63 16.34 18.44 57.47 27.87 70.92 70.36 35.55 82.46 13.96 58.64 88.50 82.92 48.88 33.50 94.33 17.23 21.47 46.75 22.43 7.05 92.35 33.33 93.81 74.89 15.61 77.13 59.22 11.10 44.07 56.72 51.92 36.05 79.26 63.46 89.51 18.39 44.29 11.48 22.38 85.02 -26.96 97.12 69.34 18.95 40.61 55.52 50.86 13.16 98.44 78.50 69.57 9.21 42.40 74.38 87.80 90.96 86.20 51.59 12.61 34.49 77.11 85.19 31.43 89.44 46.29 65.79 9.22 92.25 54.95 15.81 92.97 72.31 28.24 6.50 97.49 3.91 9.77 37.35 9.00 25.97 39.42 63.22 25.80 2.76 78.65 86.33 17.46 16.66 43.12 96.42 1.18 20.65 33.93 94.06 97.09 77.11 60.90 99.81 27.71 14.44 80.04 68.92 51.07 77.17 7.45 82.11 91.63 31.54 3.89 76.29 54.95 96.51 59.31 40.37 83.20 91.94 27.10 66.61 50.41 47.69 93.47 8.99 48.94 42.04 56.68 18.89 41.22 26.30 98.17 9.47 83.24 97.87 29.18 79.40 66.91 56.10 56.20 15.41 14.52 63.60 -82.85 29.89 48.47 24.11 83.54 49.17 56.44 61.14 90.90 7.97 35.83 47.05 22.80 75.31 53.46 63.28 58.35 70.67 81.27 95.13 32.67 98.76 92.01 16.30 13.34 73.92 47.00 57.37 79.39 13.08 36.39 41.38 13.58 54.52 74.14 14.19 93.64 21.39 84.95 25.39 50.47 51.02 54.04 45.66 5.00 5.37 59.60 29.29 40.09 20.47 6.77 29.79 30.51 63.34 6.67 86.98 31.88 29.02 3.72 12.16 92.57 9.77 81.58 22.50 29.75 88.95 77.34 81.19 27.74 45.58 56.23 25.83 49.72 36.77 14.80 16.30 83.69 81.30 83.31 84.41 78.39 64.33 49.21 17.14 18.77 23.34 66.46 48.91 55.27 66.02 70.08 61.68 11.49 67.11 98.05 60.49 40.26 37.07 67.91 12.23 -86.27 5.79 2.69 84.14 5.40 24.25 2.47 83.01 2.06 97.63 25.33 8.50 7.11 93.52 97.10 97.83 10.22 57.01 70.29 91.95 25.40 54.49 88.76 49.88 42.61 48.22 81.40 37.46 7.99 22.19 15.75 47.85 99.99 60.50 79.68 95.93 68.18 52.14 33.28 93.11 7.84 27.54 40.46 6.37 4.00 28.96 72.16 93.63 42.66 45.59 21.45 53.20 77.75 17.79 43.68 81.98 91.10 8.73 45.11 11.30 53.50 96.77 51.34 53.93 76.20 47.45 41.43 90.69 95.35 82.98 53.51 33.82 59.55 68.12 48.05 2.78 51.87 13.50 93.52 63.81 77.61 39.87 4.79 7.51 70.23 35.43 66.16 18.40 16.16 72.32 71.67 46.60 23.65 28.37 59.60 8.17 4.82 93.97 76.85 27.83 -76.74 2.67 0.21 42.44 86.53 95.40 6.61 98.91 76.56 76.30 71.91 97.41 77.63 53.12 75.45 32.01 9.04 97.31 41.10 80.38 97.47 58.77 82.17 69.43 52.73 53.99 45.88 32.35 47.73 72.35 72.52 89.01 42.79 67.19 72.63 99.68 13.04 87.97 83.51 36.54 30.61 91.28 69.45 82.11 54.15 24.95 62.42 87.60 58.40 72.87 16.80 17.41 25.22 23.05 58.12 74.49 37.18 56.93 35.76 26.84 9.73 18.01 86.84 31.77 88.80 51.71 47.72 54.41 87.90 5.81 9.93 24.07 22.88 17.77 43.14 3.33 47.86 85.94 91.12 70.34 93.03 33.19 18.71 43.78 28.60 50.59 58.24 35.15 80.22 92.73 64.01 10.17 59.24 82.01 79.91 16.64 50.53 17.83 74.77 92.72 -3.63 20.42 67.89 86.00 76.56 32.11 78.77 62.79 16.43 79.66 97.10 73.51 13.91 19.91 21.64 48.55 49.05 17.08 52.55 94.53 2.86 27.98 97.32 97.89 6.87 71.14 95.65 63.93 92.14 55.41 63.57 69.61 58.39 68.44 86.63 32.74 24.32 43.75 32.09 29.40 21.19 12.29 85.02 36.88 55.40 75.23 18.18 11.46 73.28 49.74 65.85 48.25 45.40 10.62 86.83 24.90 73.86 7.81 93.33 20.15 64.28 23.23 24.50 55.23 92.77 3.97 60.88 9.92 33.61 54.14 95.82 51.96 65.28 80.00 94.71 91.79 78.51 88.00 5.37 5.67 81.15 54.90 11.26 28.29 87.22 26.63 12.40 59.07 31.11 49.37 61.31 27.28 36.13 64.40 29.01 19.13 29.14 32.00 60.72 63.16 -39.32 57.94 52.29 8.69 91.83 73.81 24.74 49.27 90.91 55.54 52.34 98.70 70.19 19.34 14.24 71.41 45.77 33.45 49.12 47.78 53.55 97.51 20.26 77.02 78.28 31.81 15.96 77.03 46.70 60.94 31.32 80.47 18.63 66.28 27.81 21.32 54.95 33.56 52.91 92.75 72.11 10.45 37.97 92.09 16.91 51.93 95.30 27.49 51.17 71.51 16.97 24.94 89.19 64.69 7.33 18.28 4.30 70.99 84.67 15.74 71.58 80.32 58.54 76.96 79.50 51.80 98.12 12.97 74.03 81.21 4.52 45.75 37.21 71.67 78.36 25.14 35.04 11.94 43.04 50.80 44.19 81.48 55.82 4.59 14.27 17.33 41.21 83.11 9.79 42.64 59.96 16.29 67.46 11.32 37.37 46.85 62.83 50.74 29.17 18.61 -46.83 61.79 34.44 61.99 21.11 22.99 66.23 37.44 18.13 60.21 15.73 26.61 62.96 17.69 2.56 78.32 88.79 47.66 12.65 22.36 34.58 28.77 10.09 27.09 11.66 69.55 14.44 57.83 50.35 34.98 53.25 77.61 69.51 39.96 64.58 93.34 31.66 69.81 91.76 80.03 50.42 19.42 78.39 12.34 45.37 49.88 29.03 65.91 9.36 17.92 13.47 10.26 49.13 44.60 43.63 54.78 96.16 3.80 1.49 32.50 1.27 48.49 12.82 21.41 39.64 67.66 7.76 53.36 18.25 44.21 84.04 42.43 35.15 90.21 25.32 12.06 57.13 23.10 23.06 58.40 5.46 65.13 74.68 50.89 49.30 67.89 45.58 98.13 99.65 31.01 33.29 96.95 37.13 11.46 85.33 84.64 42.34 59.41 38.04 78.96 -62.62 62.53 54.86 80.09 2.35 46.58 18.86 90.85 43.73 81.92 47.32 7.59 26.44 9.14 2.99 94.37 2.05 15.69 46.67 32.39 49.10 36.95 97.26 36.75 2.16 8.00 41.11 71.29 57.64 80.15 35.99 25.87 46.92 45.62 45.09 32.65 52.28 51.99 68.19 40.41 63.87 45.78 43.06 87.45 43.42 90.38 71.90 0.72 32.57 19.10 45.87 89.77 1.26 70.24 57.01 98.49 46.73 79.10 5.50 92.78 47.78 95.83 62.79 36.04 86.90 96.97 80.01 32.23 84.81 19.56 9.58 98.73 54.77 64.24 50.37 84.01 40.92 25.50 33.90 39.10 61.14 61.81 37.22 50.32 23.85 68.48 28.32 16.93 80.06 25.58 84.50 23.10 87.57 42.89 52.88 12.86 63.72 63.29 67.03 0.43 -29.65 62.14 92.63 72.46 65.57 93.15 47.47 64.42 41.25 90.34 22.63 50.79 95.22 56.09 69.85 28.61 73.91 56.41 17.41 49.97 78.80 25.65 94.56 28.88 35.87 80.78 1.68 53.91 49.49 23.51 60.19 60.05 93.47 10.13 34.20 56.83 90.54 47.45 21.34 44.07 16.55 71.23 52.83 5.55 63.99 25.92 23.67 99.88 51.73 6.45 82.30 33.61 82.75 1.63 45.14 48.26 3.92 14.56 62.46 67.91 79.08 24.09 53.01 50.65 74.86 95.28 97.36 83.72 79.16 53.70 93.62 60.40 73.06 84.78 88.38 8.78 69.29 83.95 32.22 13.30 50.00 0.36 79.59 92.62 98.10 83.77 50.72 26.91 84.84 42.10 25.95 62.85 44.15 54.40 88.15 26.24 46.43 99.86 33.91 2.94 -78.35 56.98 18.67 65.37 73.87 22.37 86.98 45.17 53.91 65.49 7.80 8.33 44.45 54.19 10.37 38.75 96.67 34.08 58.07 98.40 8.98 1.03 99.25 15.94 58.94 47.72 51.52 57.68 15.70 1.65 47.30 65.25 72.48 89.35 17.74 30.79 40.26 65.12 21.44 10.74 47.73 15.84 24.22 95.22 40.63 64.14 70.94 48.71 89.08 61.58 58.21 56.82 35.00 15.04 65.18 22.87 86.60 20.85 61.51 73.68 6.93 39.37 7.40 36.43 68.77 13.32 93.39 53.22 8.37 65.54 95.30 60.12 8.36 14.67 97.34 74.85 42.20 10.05 8.52 41.21 38.34 12.43 20.49 16.58 68.06 98.32 8.49 81.72 54.71 46.96 66.90 73.10 86.84 0.07 33.64 97.96 43.92 8.55 5.21 39.89 -48.26 8.03 4.99 39.87 16.04 42.39 97.65 3.68 41.20 45.44 95.09 14.10 34.04 70.83 93.91 40.75 21.38 55.46 81.26 43.05 51.27 60.53 61.28 66.70 49.34 10.94 42.44 84.49 26.96 50.73 9.50 44.97 31.95 33.66 91.62 74.92 77.49 21.96 3.06 44.95 97.73 54.86 66.20 12.20 58.94 53.73 41.68 0.45 26.34 35.04 43.48 76.89 93.94 58.36 25.40 92.66 16.68 16.88 20.75 53.26 50.59 11.52 60.99 15.52 38.44 25.02 24.68 75.23 47.82 25.70 4.23 59.34 27.16 51.99 29.46 37.03 10.98 35.76 92.98 46.74 81.66 3.65 57.23 4.97 52.54 89.76 79.48 42.14 35.46 83.82 49.20 15.73 44.65 19.30 23.31 15.90 64.07 90.50 71.55 48.01 -91.78 43.68 64.64 64.81 72.45 41.53 18.29 55.36 51.34 31.45 73.43 17.05 29.67 62.47 55.41 58.45 17.52 14.88 43.37 48.85 35.55 94.93 41.17 69.97 56.74 19.86 48.47 90.84 89.16 22.54 34.20 58.69 20.68 85.40 17.28 33.06 90.32 7.34 94.54 23.74 84.34 29.18 40.20 91.77 45.46 59.22 82.55 74.78 24.83 31.82 41.37 95.93 39.04 96.39 45.57 10.50 19.00 0.06 82.11 95.85 63.57 21.98 50.58 27.46 29.41 24.97 32.40 17.95 29.59 82.54 13.44 4.51 82.92 59.66 64.49 36.10 14.76 63.97 47.36 89.08 52.01 6.20 39.99 21.86 44.10 42.70 82.32 46.99 10.53 70.33 87.94 45.05 62.48 28.81 24.34 51.87 11.79 40.77 34.27 43.73 -72.64 0.92 38.98 18.44 40.43 59.91 70.55 24.13 83.87 21.05 44.89 57.93 11.62 77.23 94.30 63.21 8.37 93.58 89.71 46.78 70.33 41.07 12.39 51.06 42.71 57.39 94.51 70.23 66.81 77.84 68.93 66.33 61.93 95.15 31.01 8.34 58.41 0.89 43.43 89.04 46.10 72.19 27.62 4.90 37.55 81.94 62.56 25.85 1.03 12.14 58.34 59.48 13.07 16.77 64.73 20.46 98.73 80.41 19.61 48.63 77.18 39.65 67.88 32.37 48.64 22.32 7.61 3.95 12.37 20.28 86.74 86.72 53.31 41.96 84.85 98.85 74.43 86.72 36.05 44.65 28.95 41.40 86.94 33.22 59.25 59.03 27.33 68.47 75.18 54.56 10.57 19.97 8.77 38.30 41.72 41.77 19.46 73.76 78.46 81.89 -85.38 56.42 59.98 85.45 61.11 58.46 35.54 84.57 65.08 8.37 55.28 71.35 77.01 43.90 93.63 38.71 33.77 4.10 28.81 77.88 88.58 51.92 93.24 28.23 55.00 63.14 93.08 66.87 85.96 66.78 61.15 39.93 94.22 8.82 26.18 65.55 2.93 46.06 8.16 17.41 98.52 27.58 30.95 65.98 49.13 82.44 81.50 92.35 44.97 24.16 7.25 92.60 82.94 45.02 8.58 75.79 6.83 73.25 37.27 83.54 71.04 55.72 73.21 93.01 41.61 46.18 68.46 65.88 77.28 57.22 50.90 31.80 49.31 30.27 33.20 56.46 71.10 83.92 48.77 70.67 12.35 5.40 81.99 35.32 76.74 60.87 66.22 37.21 73.22 75.93 32.74 59.98 85.83 9.63 1.54 73.01 92.30 21.45 72.33 10.67 -33.70 89.11 46.96 42.66 63.40 98.87 7.49 12.26 20.37 90.21 25.25 49.50 95.56 95.65 66.25 13.76 9.92 79.82 16.35 62.66 8.29 3.27 9.46 55.30 8.05 30.12 56.82 52.08 49.69 83.58 42.25 26.11 66.31 78.37 20.39 22.45 27.17 28.72 42.75 70.38 78.66 98.79 83.69 11.89 50.49 31.59 13.49 49.36 94.67 78.04 54.80 79.55 75.28 34.44 80.84 25.93 55.76 80.58 16.12 34.66 13.21 28.30 59.75 44.56 27.52 38.22 60.31 63.08 7.99 9.20 96.16 86.31 11.52 19.88 2.46 11.83 45.91 42.71 44.34 95.10 63.55 78.88 12.65 8.96 70.30 22.27 32.77 40.20 69.04 81.75 18.79 76.35 87.28 86.12 65.00 61.61 83.20 17.87 80.42 34.68 -34.27 50.27 13.18 44.38 9.78 90.47 84.31 61.14 62.38 34.23 46.83 18.79 98.92 42.58 91.87 57.59 41.77 80.06 21.61 31.19 97.13 64.95 45.59 72.42 18.12 18.08 23.85 85.95 4.64 74.47 62.59 77.98 35.26 43.10 72.56 67.99 64.88 47.39 29.60 94.67 6.40 58.12 45.47 21.97 5.46 39.52 6.19 33.41 36.77 48.04 97.53 81.09 40.95 5.30 19.09 15.26 8.15 40.39 23.22 44.39 63.40 3.34 73.08 82.46 11.49 98.50 38.08 61.64 29.88 26.02 17.70 78.56 71.78 29.53 27.68 8.16 62.58 90.71 7.78 18.83 45.34 32.81 39.93 96.09 74.80 1.90 15.73 16.83 27.90 80.12 24.11 31.23 1.19 17.95 12.59 43.53 2.26 91.88 23.51 72.47 -44.46 49.30 54.31 7.95 4.64 50.24 49.93 53.91 94.62 26.88 0.09 63.13 60.96 61.81 24.70 3.25 71.75 97.35 22.06 95.53 27.32 91.95 46.70 80.17 68.41 12.84 45.61 34.54 10.63 83.30 25.89 79.89 36.14 10.50 33.61 93.64 4.64 99.66 59.47 70.49 48.49 10.05 27.78 12.97 73.46 16.98 0.14 37.89 77.80 29.27 76.80 64.20 50.89 59.12 32.72 87.04 46.62 0.74 23.19 92.29 34.43 98.54 71.71 40.93 78.06 28.62 6.46 5.43 59.37 94.92 19.54 30.59 44.09 56.06 59.03 48.92 53.09 98.49 32.20 41.99 58.45 37.70 78.00 80.35 46.98 67.48 16.86 12.42 62.00 58.94 66.41 82.68 67.40 70.01 57.51 30.09 26.42 23.37 48.57 17.33 -2.61 43.47 60.48 6.60 30.11 0.79 95.25 75.02 17.57 9.50 4.25 7.95 45.54 24.22 91.47 67.13 31.16 49.64 13.31 78.05 37.17 53.38 82.60 46.12 78.01 77.93 90.92 86.55 67.30 61.06 24.56 33.20 65.92 90.76 94.63 36.08 8.71 89.04 63.42 90.70 13.34 21.57 8.39 77.87 85.18 50.79 95.69 14.06 25.14 98.17 82.68 50.56 43.14 6.21 31.67 36.95 47.23 22.26 98.91 10.15 84.20 16.43 99.33 65.68 33.33 38.00 42.75 38.07 8.42 86.86 16.20 94.91 6.99 99.87 12.73 75.51 58.68 36.27 38.74 7.22 95.31 74.38 0.08 39.08 80.48 61.25 99.78 51.18 64.95 46.78 51.37 70.69 32.02 9.00 10.07 78.51 87.07 87.58 16.92 87.64 -62.59 6.37 70.06 37.36 4.13 83.73 8.75 67.81 12.84 57.27 99.45 58.06 23.52 81.65 96.62 8.11 37.14 22.09 82.37 49.88 2.48 11.35 23.09 1.84 12.60 77.65 51.76 41.17 83.94 50.98 18.73 41.57 49.31 98.58 72.57 4.95 7.82 20.04 98.38 90.99 78.96 63.57 73.07 46.95 99.77 81.08 15.62 22.69 91.09 46.37 88.03 76.80 74.66 97.71 51.71 26.34 47.99 84.84 6.77 82.42 67.94 60.85 51.36 48.72 10.00 57.69 63.46 65.31 53.41 88.22 23.54 8.95 55.21 3.32 6.80 27.33 37.80 46.17 73.81 83.64 31.43 61.34 99.62 3.14 31.49 71.29 56.88 51.93 78.51 16.81 53.58 42.65 31.08 98.13 92.01 68.98 98.75 97.79 6.27 65.45 -45.49 67.85 11.64 63.74 66.94 53.74 66.74 79.34 45.39 21.83 95.54 11.38 55.68 43.03 99.74 23.86 34.00 57.09 33.43 6.46 13.01 71.22 8.15 57.49 59.35 66.87 10.82 53.69 84.92 11.18 47.39 28.96 36.94 11.58 3.91 82.67 13.65 73.77 33.02 94.71 93.42 27.97 79.09 35.25 9.00 55.34 83.02 51.88 36.91 53.26 41.30 14.69 8.90 8.71 13.18 82.10 59.41 69.76 97.69 84.12 14.49 89.14 22.57 32.70 55.66 31.67 96.73 97.48 58.29 1.11 32.15 32.58 70.17 3.69 93.46 33.68 31.22 79.34 15.03 34.94 99.61 65.68 39.03 73.24 35.05 68.78 79.84 82.80 92.01 42.71 47.20 14.40 27.79 8.11 56.47 90.73 19.55 76.23 6.88 86.74 -42.30 88.92 92.64 86.10 86.18 75.80 1.94 46.40 56.69 86.11 58.40 66.87 77.91 38.40 89.61 54.03 24.56 85.38 18.64 96.49 11.54 68.59 27.80 40.77 48.24 58.05 26.04 81.45 73.70 38.46 53.97 68.97 28.32 18.54 20.56 84.72 47.90 65.42 97.44 60.57 56.66 24.01 8.92 53.89 47.32 13.51 56.45 14.29 17.38 48.09 65.63 31.48 21.69 40.31 43.94 82.32 17.32 59.43 7.00 64.12 88.77 50.01 25.45 44.64 8.58 43.39 61.87 38.08 78.11 37.25 58.34 61.75 13.68 69.62 24.74 21.61 24.52 52.97 81.07 45.41 21.98 34.38 8.50 47.62 78.41 94.51 5.32 33.81 81.36 96.04 50.72 83.21 42.34 35.20 99.78 53.41 12.67 24.10 91.74 73.75 -43.29 67.20 39.51 47.72 50.20 29.35 93.67 96.14 25.31 82.86 11.81 82.92 0.33 68.34 8.71 47.20 69.03 42.92 2.78 42.80 30.59 15.60 70.26 49.33 73.52 41.37 65.98 19.86 75.18 34.67 82.49 7.09 45.38 13.47 95.75 22.44 4.36 47.60 4.32 97.89 30.58 26.84 79.77 24.91 88.57 80.16 56.92 89.15 52.94 67.97 76.39 16.29 11.09 61.43 97.98 2.23 82.95 82.36 0.17 60.51 47.59 90.56 28.02 37.64 79.14 80.28 69.31 65.22 54.82 43.39 83.31 90.45 59.85 29.90 34.53 96.56 30.64 38.03 59.95 18.40 59.17 73.23 67.00 45.40 79.91 16.92 42.54 64.25 88.43 22.41 5.39 28.98 65.22 56.11 9.06 83.96 37.11 56.20 30.06 30.80 -44.64 39.91 86.06 35.59 61.36 37.43 9.39 49.82 41.66 29.06 19.17 28.44 54.16 81.08 45.70 55.33 31.29 71.09 56.19 83.52 72.03 66.58 87.19 64.69 82.26 92.63 20.24 24.96 48.28 74.10 60.99 98.10 96.39 70.49 77.83 2.72 97.78 3.83 99.70 85.88 98.78 53.11 29.51 45.97 14.43 74.38 33.08 44.48 9.07 73.01 43.41 29.72 18.82 2.86 72.14 42.35 61.43 45.50 33.02 10.25 14.98 29.79 57.00 5.53 12.11 68.48 26.66 14.38 4.71 14.24 7.95 85.17 49.24 55.45 19.84 81.17 26.96 96.27 21.98 66.36 28.92 72.01 77.71 41.53 69.65 77.87 60.60 44.15 95.43 14.91 40.95 15.33 50.48 26.09 23.39 66.28 76.72 86.45 97.43 88.74 -9.91 30.71 73.51 18.65 30.74 73.70 4.74 87.26 8.66 30.43 74.53 7.54 88.16 19.82 61.05 17.45 42.76 91.17 39.18 51.11 78.14 29.12 16.42 56.71 26.00 29.04 84.69 59.65 52.92 76.41 44.36 15.37 25.93 27.62 66.60 37.82 30.76 75.09 51.12 56.12 34.27 3.01 22.30 26.36 89.22 82.08 49.62 47.32 60.21 89.71 53.34 55.53 13.57 64.22 54.85 35.45 48.96 57.45 57.62 75.66 56.08 57.96 19.12 5.12 31.96 75.23 22.75 1.06 56.57 8.62 99.55 5.48 15.13 92.16 35.84 34.53 21.15 14.21 98.68 80.31 81.08 71.37 0.09 62.69 8.26 34.02 79.14 99.55 85.43 85.33 50.45 2.25 94.17 92.64 55.31 62.30 74.34 48.63 29.97 16.09 -50.22 45.04 50.19 37.92 26.48 4.43 64.25 67.31 42.52 29.97 80.62 15.81 35.94 88.16 37.45 13.36 13.34 11.49 58.30 17.64 40.71 40.86 76.65 7.09 24.00 29.90 19.05 84.76 8.01 99.65 23.45 82.13 76.22 36.13 75.53 3.51 82.26 28.94 33.84 65.28 78.57 85.95 48.00 9.67 9.49 86.40 38.30 81.84 65.39 99.36 17.38 29.37 40.78 15.14 37.85 61.69 18.23 50.36 81.35 49.32 98.53 93.39 92.32 38.69 61.35 87.58 24.86 98.23 67.65 92.56 56.72 62.81 37.05 73.31 7.08 40.26 97.49 78.02 12.28 62.66 61.11 0.80 77.13 11.32 90.74 53.80 76.07 16.26 87.64 19.33 26.24 14.64 88.39 54.57 57.40 29.11 42.68 80.30 30.91 44.99 -19.09 23.49 34.49 9.42 81.20 50.60 99.13 26.41 31.76 20.62 39.71 37.24 89.80 47.86 81.30 18.26 36.34 28.81 52.35 70.43 93.80 82.86 22.86 59.31 63.11 72.08 69.75 27.47 34.16 69.41 47.52 95.00 32.92 67.47 36.02 37.34 19.94 51.44 0.82 37.12 78.48 85.40 85.62 84.36 19.59 3.03 81.92 53.44 21.49 2.08 39.31 1.32 49.41 43.90 59.99 32.79 47.66 36.60 74.53 45.92 27.93 93.80 84.70 17.00 51.84 75.28 62.27 47.53 98.79 19.59 90.79 2.99 39.00 53.04 96.24 5.38 90.76 33.03 77.66 22.81 75.08 52.89 78.15 4.81 13.14 59.53 37.81 66.20 21.74 79.53 68.79 53.48 65.63 31.14 27.82 60.34 36.40 91.58 14.20 47.63 -33.77 11.30 59.42 77.53 60.51 20.51 24.23 59.57 45.17 6.38 9.39 38.07 35.23 23.51 60.36 1.09 52.02 28.51 65.41 69.10 83.74 90.92 35.00 2.36 68.44 86.30 17.81 38.82 12.95 35.86 60.43 47.98 5.17 61.20 88.00 12.28 6.57 59.04 26.87 2.91 90.17 98.94 7.19 40.05 54.52 92.33 43.36 96.61 92.76 55.20 10.48 17.60 72.02 24.80 23.06 40.19 64.24 67.87 64.55 53.83 84.83 83.79 28.03 78.02 82.42 68.35 36.04 45.28 10.55 75.84 14.94 91.21 5.32 3.44 13.44 36.49 99.14 21.47 42.63 50.49 46.09 82.48 84.51 87.44 58.26 0.67 46.14 99.11 47.72 58.21 73.95 90.50 58.35 69.07 5.31 62.24 87.11 59.95 53.37 88.62 -44.43 86.76 6.17 47.97 79.66 39.31 15.78 3.36 93.31 86.25 38.09 7.56 96.08 89.45 85.38 58.42 84.02 96.81 20.74 60.37 56.32 20.76 16.55 66.92 30.26 11.46 76.84 81.57 47.28 91.45 81.68 72.61 35.09 57.06 40.37 12.67 22.18 55.76 8.04 2.58 95.67 76.01 93.23 14.58 81.69 17.10 39.29 0.41 95.02 71.15 54.78 18.50 78.73 39.83 68.62 1.11 82.15 60.93 46.45 10.59 11.69 25.75 70.68 91.50 55.42 62.04 82.28 40.77 46.29 47.18 59.19 23.23 44.95 5.92 48.96 97.15 13.02 96.66 21.25 49.59 90.34 23.18 55.24 15.60 38.04 62.37 30.93 36.50 84.19 19.08 29.92 48.46 2.10 33.53 41.69 11.87 73.91 7.18 18.41 36.28 -85.80 6.08 54.39 81.23 21.27 66.82 14.71 21.04 55.73 25.61 44.85 2.68 84.75 13.23 51.78 43.70 38.44 44.26 94.38 60.94 33.22 72.43 26.52 92.71 65.29 85.21 38.86 46.81 73.14 62.98 91.98 60.82 80.03 82.33 20.87 2.75 28.67 9.23 15.50 4.44 17.16 33.49 97.26 39.39 73.68 26.25 72.42 90.52 18.22 48.30 78.82 84.72 37.10 26.66 78.31 39.54 65.06 32.73 1.34 78.97 83.09 93.42 60.19 37.55 74.99 27.35 28.10 54.68 51.73 51.49 85.90 27.55 94.97 50.05 26.89 74.92 64.23 78.13 53.45 62.89 80.77 24.83 11.32 66.36 70.68 86.83 39.11 86.84 40.12 16.88 74.94 28.52 97.62 54.84 1.17 38.31 26.97 18.38 43.45 94.44 -24.98 42.38 52.64 85.52 36.12 43.02 59.25 11.87 66.29 88.19 12.26 5.28 80.22 61.26 48.50 24.32 46.34 74.30 96.13 71.29 41.47 90.37 24.71 26.70 23.82 15.95 44.09 89.29 75.59 73.45 14.92 51.94 58.45 55.90 57.09 78.88 48.18 83.11 0.78 32.53 88.49 40.19 35.88 69.92 69.33 75.69 37.87 72.73 92.47 27.25 41.45 45.47 94.74 22.64 11.32 2.59 36.71 38.38 75.89 85.04 35.31 40.31 77.57 1.98 92.91 76.19 28.64 74.19 84.07 18.96 59.96 57.97 97.75 88.55 6.71 59.52 6.07 94.99 35.78 51.82 60.11 84.16 19.27 60.74 30.06 54.85 46.84 61.33 90.20 7.10 99.54 76.96 54.12 1.59 58.81 9.84 25.45 42.27 65.90 94.20 -89.27 1.07 49.64 26.45 45.27 11.37 38.84 98.33 87.94 98.06 50.17 63.19 77.63 92.31 3.41 95.34 82.24 57.92 2.47 68.65 12.30 54.58 35.18 99.35 95.04 70.75 41.64 59.87 97.40 52.97 56.87 13.54 16.53 73.29 84.91 32.91 83.51 22.16 79.67 20.98 33.85 35.62 27.79 44.57 74.54 47.56 90.68 71.52 35.12 65.07 73.43 85.96 61.94 44.55 95.12 97.00 83.05 94.84 16.10 49.76 86.56 1.29 97.85 91.86 65.31 4.29 96.69 49.59 49.91 31.16 92.25 34.03 51.08 20.32 72.81 30.76 83.42 21.83 60.55 28.02 12.13 37.48 13.33 29.40 32.75 56.10 2.81 62.01 94.64 48.78 42.10 74.42 66.96 27.45 0.43 79.98 21.88 0.23 70.35 6.19 -32.25 45.01 84.81 1.55 6.74 61.36 12.61 31.00 73.95 82.39 44.22 10.60 6.64 46.43 95.51 77.99 7.68 69.25 25.71 19.25 1.69 27.03 36.95 50.81 94.64 77.11 70.82 25.70 31.48 80.19 7.08 2.64 41.44 36.52 54.07 79.95 55.97 71.68 29.08 45.87 43.75 71.22 86.26 30.49 37.45 75.94 33.43 39.52 61.61 44.64 66.42 13.59 83.33 26.26 84.66 89.59 27.02 15.36 86.09 98.55 84.56 40.95 45.08 31.46 58.75 64.56 25.46 42.99 1.82 72.79 58.63 6.75 13.30 57.23 72.76 74.04 18.66 20.37 38.05 96.81 67.97 48.94 53.84 47.99 51.89 37.19 88.71 45.10 71.38 41.95 77.41 34.78 38.62 12.30 32.45 68.82 84.15 22.13 4.49 6.69 -7.95 24.98 36.89 22.92 21.30 46.00 49.79 86.08 16.92 22.79 75.08 70.02 55.09 11.19 54.85 90.63 54.72 18.40 74.02 68.92 36.31 2.09 42.99 86.32 94.05 88.19 34.28 26.48 4.24 78.13 35.02 63.56 64.82 0.03 28.96 36.22 93.68 22.24 40.59 56.30 50.19 51.60 89.56 82.78 44.86 36.65 5.28 20.60 52.60 53.15 67.45 85.85 26.70 25.00 35.78 81.55 83.53 7.15 7.97 73.48 42.96 14.61 47.19 43.71 63.21 75.15 92.77 59.24 78.07 97.07 30.31 83.57 12.65 68.03 41.45 20.29 56.90 33.09 37.31 2.38 52.72 41.10 38.24 32.32 48.96 4.29 58.24 76.76 91.46 99.68 2.54 28.59 35.35 40.07 15.31 58.08 14.44 82.98 80.76 97.77 -36.54 99.74 11.13 27.37 21.36 42.44 0.38 76.57 41.19 0.22 67.02 87.66 42.48 22.68 7.72 16.53 73.91 4.36 86.20 8.44 90.39 81.67 20.00 80.22 93.03 95.65 34.16 47.12 22.90 9.49 57.12 4.93 24.12 18.27 15.85 94.88 70.73 59.35 44.08 14.46 82.24 29.12 6.05 23.68 68.47 4.83 69.66 89.21 79.28 3.51 46.56 60.01 73.39 17.92 97.14 45.01 19.07 91.94 65.88 56.77 33.79 17.14 80.05 31.55 78.19 92.36 3.47 90.85 12.86 68.53 38.42 19.73 39.72 59.08 13.95 22.17 84.17 82.53 48.96 11.93 77.83 88.91 38.13 8.47 93.22 10.25 59.28 20.85 29.27 92.76 76.75 82.25 12.42 55.25 23.52 84.37 57.24 99.90 1.10 26.20 -19.37 39.12 39.08 41.82 94.47 45.96 16.20 43.33 90.64 50.36 67.03 63.86 76.98 34.88 76.77 86.63 77.15 83.57 73.21 55.84 10.04 43.87 78.99 98.28 31.38 5.65 12.36 83.42 73.25 78.05 8.17 12.61 35.43 97.14 69.94 1.95 95.15 86.98 7.19 85.68 94.40 68.14 4.45 57.78 80.68 65.53 13.74 48.01 87.53 66.83 45.54 39.30 73.25 38.33 84.66 27.78 68.22 81.80 57.55 23.92 79.70 57.62 45.18 3.73 28.88 34.31 44.53 59.56 11.29 78.57 59.84 17.61 72.21 3.71 94.97 91.49 7.99 51.30 69.70 29.92 58.69 86.22 72.60 20.30 7.41 12.86 1.40 4.06 24.40 90.08 23.16 17.63 64.52 28.65 67.62 8.17 21.27 24.22 82.09 37.76 -64.04 5.25 12.17 40.43 85.68 11.77 29.29 60.29 46.45 76.59 34.37 3.14 54.41 17.87 95.62 94.94 36.53 33.42 35.02 97.21 79.98 11.18 12.65 84.24 63.03 20.47 85.35 80.93 39.79 50.30 82.65 76.25 86.65 26.30 71.60 78.85 61.38 92.70 83.29 88.05 49.70 31.47 64.54 19.92 36.07 86.90 61.74 94.38 87.43 77.11 48.78 89.34 66.92 42.27 16.16 95.24 82.40 54.90 49.39 24.19 46.17 63.93 17.92 37.44 49.65 74.17 30.78 76.64 89.58 30.57 96.77 4.18 34.71 63.89 20.22 15.73 61.19 86.34 24.81 12.13 53.63 39.19 97.68 51.65 97.23 28.92 21.67 27.66 79.31 14.74 15.89 48.15 46.64 28.57 65.81 47.81 30.84 65.74 72.97 70.11 -90.72 40.38 66.93 40.93 63.58 64.25 97.71 13.22 57.42 7.93 41.73 42.52 11.86 40.42 94.06 76.53 22.45 41.90 54.94 10.36 71.33 93.08 85.09 1.50 50.07 96.40 9.25 35.93 57.81 30.54 67.58 61.12 71.38 38.54 55.70 28.34 93.04 22.79 38.15 72.09 60.07 60.57 55.60 94.03 78.73 73.29 9.54 35.70 74.09 75.19 73.87 0.41 93.75 13.75 23.06 59.15 12.81 36.17 86.96 24.64 13.53 89.75 34.56 78.47 44.82 35.91 88.11 26.74 44.92 88.78 56.53 99.86 50.86 76.80 15.13 40.61 41.47 81.99 77.17 95.49 20.81 37.55 37.65 1.89 40.09 62.18 81.58 55.41 87.38 1.83 56.70 79.43 14.53 46.28 8.25 5.52 67.82 63.24 29.92 85.20 -39.36 20.60 38.68 74.48 84.87 92.88 18.90 94.73 72.10 59.00 65.92 52.36 59.23 10.10 24.80 64.33 99.14 92.39 8.10 28.66 65.81 82.80 38.43 70.83 49.29 53.93 50.46 21.12 90.24 18.26 9.85 46.09 97.62 78.13 98.82 57.28 90.01 82.62 56.79 55.34 45.44 94.60 87.67 95.31 78.99 75.04 97.93 6.83 19.48 91.65 2.51 31.59 34.57 36.79 47.67 9.70 28.90 6.86 62.32 23.47 53.50 54.88 89.05 31.20 52.36 0.08 38.60 41.49 66.76 12.97 34.14 54.91 87.63 65.04 11.96 32.87 40.38 28.63 56.27 36.80 6.06 13.90 33.59 94.03 69.36 97.76 61.87 69.86 83.14 22.65 57.86 38.19 58.16 42.36 55.08 71.11 18.84 28.26 0.32 21.03 -11.39 75.57 32.49 89.08 45.95 80.58 97.25 73.41 56.08 14.61 66.64 70.66 40.01 95.44 70.49 50.12 10.75 87.54 81.32 15.15 8.07 23.58 54.61 86.12 38.53 0.77 85.04 63.91 46.02 6.39 68.53 58.04 42.28 67.30 19.59 19.80 32.23 93.53 60.50 84.51 44.46 71.67 19.70 72.44 19.43 71.54 66.76 22.84 92.57 63.59 49.08 27.26 27.02 95.55 91.99 36.40 15.08 78.67 56.76 16.63 90.68 79.20 40.47 89.79 96.91 38.41 37.12 19.88 7.04 28.45 98.09 99.57 45.80 26.03 36.87 24.03 70.09 4.28 61.27 90.39 35.90 47.53 58.44 98.25 16.12 5.49 10.70 2.53 98.71 88.71 98.16 87.18 34.92 18.08 26.75 4.04 6.53 72.88 70.03 80.82 -57.67 44.38 72.73 90.43 3.92 75.68 10.18 90.70 51.06 66.61 87.22 25.63 36.19 79.46 14.18 11.31 21.69 74.72 35.63 25.26 36.18 51.71 0.88 36.84 20.89 61.66 67.46 51.51 29.47 90.95 90.51 49.45 90.82 84.84 1.06 76.79 72.37 60.99 9.82 88.34 41.24 46.12 95.94 80.99 45.78 89.33 23.11 32.16 29.83 25.73 46.12 32.33 81.71 28.00 98.00 28.87 6.29 43.66 50.17 68.81 25.09 85.96 13.71 9.60 55.69 55.82 35.87 1.68 99.16 12.71 57.09 26.13 3.67 59.44 1.69 84.21 6.24 25.18 20.42 95.20 56.18 85.58 27.50 79.59 40.85 99.13 4.91 47.74 39.01 69.91 91.31 92.59 79.77 10.55 72.63 45.03 37.32 77.28 28.93 46.14 -35.54 94.48 84.04 58.70 54.10 33.48 63.78 92.33 44.04 11.69 20.48 27.30 98.51 73.99 46.48 17.98 32.59 32.40 52.86 25.25 40.89 45.10 76.03 52.60 0.24 89.66 3.39 86.36 71.75 77.97 14.00 94.87 70.69 94.76 7.98 78.91 66.44 2.55 75.20 31.50 93.31 42.23 79.67 29.17 60.01 48.57 60.18 0.84 0.46 77.25 83.56 90.23 17.93 71.06 53.90 42.13 90.01 75.35 72.18 63.66 14.97 20.18 77.27 51.64 39.83 96.61 35.39 2.31 14.96 88.92 40.63 31.75 11.45 60.19 36.06 41.70 45.79 48.65 30.21 95.49 48.54 72.92 92.18 64.98 95.25 55.20 35.87 66.26 78.06 68.00 56.16 87.25 53.76 1.84 96.04 80.92 30.45 37.88 45.96 82.65 -15.82 49.29 77.24 62.77 26.44 46.87 80.19 28.52 87.48 74.72 21.66 59.14 47.98 68.34 75.34 96.47 17.70 45.67 28.73 56.95 13.25 17.10 30.91 25.17 75.75 74.80 66.20 50.24 82.50 75.91 25.38 7.28 87.33 58.14 59.52 57.50 7.88 3.59 88.26 53.92 8.93 26.38 67.79 45.77 23.06 70.25 63.35 81.10 23.12 33.37 46.34 90.05 26.22 86.23 88.86 49.64 73.47 33.37 34.64 91.28 44.29 97.78 50.89 91.93 15.61 47.75 51.35 53.22 74.74 3.39 92.58 6.83 76.63 31.50 69.93 66.38 63.26 38.18 7.67 37.34 77.21 84.89 84.57 9.90 6.08 56.82 45.71 23.68 90.39 39.25 56.84 10.91 91.07 0.33 24.80 68.24 93.67 43.22 14.59 72.33 -31.47 49.70 76.31 54.97 56.14 24.53 82.56 31.17 63.50 29.60 79.09 19.48 24.15 73.94 43.48 47.11 1.41 36.28 61.65 46.60 67.41 97.15 68.97 90.00 96.10 2.95 73.14 62.21 10.19 42.00 83.52 7.43 81.44 21.41 18.88 26.17 95.19 53.29 91.43 81.39 0.75 39.01 91.61 42.59 34.58 27.26 62.96 93.86 33.45 16.31 8.90 1.80 36.76 15.03 27.26 37.12 36.66 45.44 85.08 5.66 85.53 40.73 5.45 24.35 19.25 86.60 41.67 17.84 16.12 77.55 41.61 38.75 68.59 28.85 17.86 70.69 33.70 69.67 81.97 97.11 11.47 57.97 74.10 87.83 18.88 76.49 83.24 57.24 18.81 68.21 23.26 22.21 69.99 77.95 59.02 4.29 56.85 18.39 23.51 86.80 -61.94 67.94 27.80 26.00 48.96 38.02 38.80 99.74 64.49 19.70 78.73 74.58 0.43 95.81 7.94 46.26 70.64 72.96 33.08 67.71 54.08 41.61 29.45 8.43 17.90 77.67 5.03 49.55 91.60 55.06 8.82 3.47 94.58 65.91 96.72 75.45 76.01 14.43 90.84 41.51 34.82 54.62 48.05 60.23 17.46 24.69 6.78 30.83 54.45 57.16 76.74 61.10 4.36 3.47 7.63 23.47 90.51 21.40 24.94 61.16 59.31 88.28 80.63 60.81 85.99 48.99 99.99 61.99 58.07 56.15 29.62 67.08 38.72 69.29 1.18 46.04 86.81 57.69 3.40 19.55 1.08 45.11 76.36 85.59 40.04 60.99 9.48 89.75 76.56 27.22 14.68 45.52 78.07 75.81 19.20 63.13 26.13 38.80 45.05 65.02 -66.94 92.42 20.68 70.95 3.35 19.92 93.18 15.62 1.60 87.66 36.67 81.20 51.91 33.50 73.34 73.97 62.90 48.19 47.84 90.81 79.99 5.84 9.39 21.86 5.48 40.57 92.46 66.00 50.85 27.95 76.51 75.35 62.45 44.79 69.73 99.00 36.60 12.88 50.01 55.06 62.06 28.11 88.66 79.17 5.38 12.60 29.34 26.16 24.26 65.47 94.80 86.69 31.76 54.50 61.59 40.07 78.35 66.19 56.12 37.58 73.09 28.05 93.84 70.98 91.45 4.26 77.88 9.97 77.99 81.24 79.78 77.30 71.27 63.99 43.48 30.11 47.85 85.46 12.84 0.62 31.83 86.16 70.56 86.54 46.93 27.45 60.03 69.92 2.94 88.30 95.07 47.10 27.84 34.42 71.29 10.92 41.11 90.73 47.40 95.10 -1.39 27.84 27.20 40.21 15.71 70.09 1.95 58.83 95.91 98.55 19.19 42.52 69.21 63.30 30.35 3.75 33.59 58.97 43.11 20.32 10.80 9.65 21.00 77.11 31.16 18.05 69.27 43.16 57.76 40.67 42.30 89.81 1.09 90.33 66.26 86.59 34.14 69.11 42.88 22.84 17.87 39.20 56.66 11.63 35.23 25.66 60.68 49.23 40.42 38.00 39.92 62.85 73.43 60.12 24.00 47.49 56.95 60.52 31.88 80.71 80.95 16.22 15.28 60.05 85.86 87.45 50.77 94.35 95.93 38.39 20.43 82.53 33.69 64.07 65.52 13.96 19.63 28.89 34.12 7.11 53.29 50.89 99.62 75.49 61.27 12.26 10.39 5.93 43.04 82.21 74.76 11.32 62.91 96.22 2.93 22.51 71.55 22.65 43.25 60.59 -82.30 9.77 91.68 21.69 71.38 48.47 42.23 98.79 78.30 12.18 76.88 92.79 71.01 58.99 20.53 30.13 27.98 92.04 97.97 77.37 11.53 16.29 25.10 55.51 27.89 24.23 54.45 47.06 93.00 46.69 7.48 54.32 66.82 62.45 80.77 59.28 23.15 92.66 80.13 56.36 77.94 49.87 74.95 49.86 62.88 83.30 7.93 50.86 1.80 39.44 8.92 71.26 65.37 92.94 36.39 45.84 96.89 21.76 10.35 57.61 49.36 49.35 13.57 35.18 25.79 39.94 34.99 93.54 65.86 85.42 45.68 30.81 20.32 38.44 5.55 72.53 25.46 87.11 62.43 84.13 30.43 31.32 51.67 65.02 93.93 88.85 71.86 23.16 10.05 71.57 39.35 30.25 87.19 71.52 79.03 98.62 84.75 26.13 6.73 11.95 -39.61 9.57 34.96 18.63 26.13 12.40 88.88 19.70 33.51 59.30 97.84 26.64 21.57 99.08 60.57 61.28 64.08 21.17 43.04 95.87 81.57 65.64 19.45 59.12 57.54 50.35 38.34 42.56 34.92 20.13 99.44 21.44 46.25 71.74 96.03 83.63 34.14 83.49 91.12 63.22 73.02 42.53 24.31 38.54 86.18 76.92 9.89 41.07 62.84 14.58 33.80 30.98 86.70 75.03 0.61 34.30 91.70 15.46 11.81 52.84 49.71 99.76 80.19 77.16 26.92 96.69 21.03 94.39 24.15 5.39 21.47 7.63 30.37 47.42 13.44 49.23 57.15 69.78 58.15 88.52 70.94 39.15 81.82 68.23 78.50 2.67 24.87 20.54 8.03 9.01 97.69 29.96 19.55 26.58 60.83 12.97 51.76 80.57 61.77 33.98 -56.17 6.28 98.20 12.92 77.27 99.34 93.13 55.14 40.40 85.53 49.75 48.05 9.99 70.85 55.22 37.71 39.92 75.27 9.64 48.06 44.23 82.44 55.40 44.46 66.56 2.22 1.86 47.78 25.85 92.76 94.40 62.43 87.48 87.82 43.05 40.16 35.44 41.75 71.11 47.20 62.05 9.20 24.85 41.50 82.91 53.88 66.75 29.04 64.08 98.29 39.17 53.65 92.08 35.32 69.90 44.25 2.61 41.17 92.73 38.93 85.87 2.11 48.86 75.92 97.23 35.06 45.16 45.81 27.62 57.70 9.45 46.46 11.49 12.04 41.28 7.22 57.69 99.14 56.94 41.37 12.04 94.80 95.10 79.25 33.50 95.32 48.14 37.69 95.57 40.35 22.46 62.64 7.53 11.69 0.37 59.12 19.41 13.88 56.32 25.35 -70.09 2.16 49.50 88.58 72.42 30.08 57.48 57.62 45.72 57.24 27.77 27.85 92.57 32.45 80.46 41.18 12.59 41.57 29.10 77.06 7.03 42.48 12.95 57.49 80.48 82.75 39.12 66.75 30.91 18.16 7.27 53.34 89.44 12.10 30.76 37.55 62.12 83.95 85.39 60.19 78.45 2.62 54.30 58.56 93.23 50.15 91.93 16.49 60.84 8.17 48.37 25.52 81.05 66.31 24.51 5.75 39.19 55.14 94.40 17.32 80.83 96.79 57.10 99.01 8.30 29.53 90.51 77.60 87.45 18.87 6.94 73.08 62.55 48.18 90.33 59.06 44.02 63.68 72.49 47.92 80.46 65.22 70.99 49.89 41.80 68.80 64.03 61.84 57.05 44.31 33.02 83.42 81.74 53.49 74.47 63.61 89.60 81.67 31.76 1.78 -69.42 77.17 72.35 38.35 13.08 22.85 44.07 34.76 7.37 70.11 98.86 69.49 69.52 26.78 85.62 44.69 68.78 19.90 4.66 19.29 21.80 74.72 38.59 53.62 92.81 60.14 30.66 46.99 23.14 97.35 30.65 41.14 81.42 4.76 50.61 1.58 18.91 98.51 18.77 64.19 19.48 94.64 84.82 65.89 71.10 27.88 2.20 36.58 6.97 70.28 56.44 60.35 40.80 32.29 23.71 57.44 94.96 10.12 29.69 0.79 12.08 74.10 67.98 27.50 96.51 61.14 25.27 12.14 1.23 54.13 66.63 80.55 43.12 36.79 1.77 53.65 74.76 21.54 26.94 61.62 41.44 37.19 39.78 51.76 40.93 4.19 31.12 89.39 94.35 83.94 11.73 43.14 21.58 30.78 66.10 60.97 89.26 75.15 84.06 41.24 -93.81 14.85 77.87 81.45 84.93 82.90 62.94 44.95 10.90 8.69 62.30 23.38 31.53 21.94 82.25 57.72 73.62 76.01 46.67 26.46 48.58 33.31 95.76 72.28 39.45 20.38 13.70 65.80 88.62 43.10 53.51 85.34 25.74 81.59 62.28 74.76 44.12 98.02 43.73 18.54 20.96 86.52 56.40 8.14 64.87 64.14 33.61 65.91 54.83 54.07 52.04 93.42 87.21 75.48 46.34 16.90 6.53 52.11 83.67 84.58 35.21 60.14 85.06 68.60 19.96 1.38 12.94 63.77 92.35 9.78 39.48 20.37 30.67 22.72 27.62 53.52 71.91 89.74 91.21 31.69 83.66 91.99 28.16 43.52 19.88 98.78 15.04 72.92 74.85 6.32 87.58 43.68 46.00 5.51 68.36 99.38 79.50 24.14 10.18 18.78 -61.91 15.78 44.42 54.11 99.02 95.88 72.87 63.29 30.20 97.24 31.85 43.67 51.08 35.21 68.95 77.52 60.79 31.40 61.84 10.31 75.94 67.08 62.93 95.37 83.64 60.06 47.42 70.61 43.72 1.46 34.89 59.53 60.46 45.35 3.23 36.91 95.30 82.90 38.83 46.47 33.29 36.58 81.25 80.34 49.44 73.90 15.67 63.76 64.95 87.75 47.51 81.02 14.88 28.36 30.13 22.05 65.29 45.81 98.42 20.12 50.98 31.07 47.46 28.27 93.01 7.84 55.03 35.94 86.72 14.15 64.54 54.71 55.16 92.17 53.95 46.91 40.57 57.30 13.60 27.03 36.35 12.90 48.71 15.39 78.84 63.79 78.89 91.42 36.08 10.71 30.10 64.54 36.92 85.75 36.55 21.36 14.59 54.19 73.98 27.47 -54.27 7.44 66.73 38.65 90.29 30.15 78.02 1.16 71.71 3.09 15.87 4.01 13.90 56.91 50.58 81.41 20.83 2.62 48.67 82.01 52.54 75.80 77.02 31.79 51.35 4.12 31.40 88.78 34.40 37.52 8.69 58.88 64.19 57.33 51.55 9.34 33.94 70.97 27.41 99.51 71.20 78.87 36.77 84.24 91.58 86.02 44.02 4.96 97.07 23.64 6.95 29.68 43.61 22.31 8.77 65.28 21.90 37.27 87.48 51.24 15.56 41.53 71.96 24.65 91.39 79.84 36.83 74.20 71.46 1.72 52.70 51.27 84.93 96.36 24.07 32.79 98.02 6.07 55.88 38.32 31.24 91.29 64.83 31.41 88.31 32.26 61.87 4.70 89.77 41.39 29.16 60.53 36.32 21.81 85.73 95.54 37.86 65.49 84.31 12.32 -2.88 87.83 4.66 14.98 72.65 5.30 12.22 0.56 63.39 72.58 59.66 65.19 84.32 82.71 62.87 10.51 30.95 65.93 59.54 60.26 7.88 82.29 43.18 55.69 46.27 2.74 27.70 88.29 56.23 17.37 34.07 82.95 5.91 41.35 36.45 39.35 92.41 16.83 91.60 51.35 77.47 68.12 52.55 74.73 92.92 87.26 20.42 63.32 25.02 18.27 18.03 84.21 34.77 80.41 76.42 99.04 60.11 99.60 13.35 1.65 82.77 17.75 18.63 75.29 22.12 66.28 88.73 29.16 7.45 44.52 79.16 64.49 3.35 89.97 7.41 48.90 79.00 77.53 0.12 56.01 83.24 80.66 18.26 99.83 89.80 86.04 6.32 23.25 37.26 74.86 33.10 94.35 25.14 32.49 17.70 11.21 39.10 6.84 63.55 83.96 -89.59 74.36 40.88 5.39 5.01 82.76 7.37 78.92 82.66 83.43 48.89 82.55 93.93 15.93 61.90 12.27 75.48 42.97 48.11 31.31 35.04 3.03 3.05 22.80 18.75 24.31 9.80 26.18 42.76 68.68 43.68 97.73 45.60 64.74 66.24 28.76 76.42 59.31 52.17 53.83 73.65 7.76 48.53 38.38 91.87 29.01 26.39 97.53 46.91 72.90 94.15 32.60 31.75 91.53 0.21 85.08 21.21 20.60 98.62 45.53 18.30 94.07 53.17 33.32 62.00 85.87 66.31 91.85 73.46 86.81 39.24 3.75 78.89 73.67 47.89 86.16 93.36 17.20 9.95 47.21 16.69 54.15 94.86 6.10 53.10 3.66 90.31 23.54 47.05 16.17 42.12 72.36 95.81 15.83 39.78 73.19 21.18 59.58 82.14 84.96 -13.77 73.64 49.16 53.02 20.27 13.11 82.04 84.49 17.82 10.01 56.91 51.70 17.52 28.62 55.92 65.07 26.09 86.37 52.92 81.67 71.77 41.98 78.24 0.73 36.41 95.51 33.33 78.37 21.59 72.46 15.98 66.30 91.48 58.18 41.61 10.61 50.53 32.82 87.27 71.69 42.38 26.56 64.65 95.45 2.30 56.69 85.41 87.93 29.15 25.13 68.31 23.13 88.57 57.15 22.42 32.64 34.00 74.14 81.20 25.46 85.89 29.34 80.26 39.89 78.13 84.79 76.67 48.29 63.33 9.34 75.00 18.77 99.94 95.07 48.60 1.80 30.28 67.57 17.93 87.86 47.35 4.37 54.89 7.44 49.82 57.45 90.97 74.18 35.82 41.62 32.16 9.96 96.09 28.43 91.28 23.56 86.83 96.32 94.77 80.88 -25.80 19.76 55.08 74.27 23.17 87.82 33.44 40.09 53.05 98.02 84.73 86.06 51.40 42.54 40.10 20.67 24.48 62.70 2.98 34.84 45.66 15.84 31.21 39.04 51.07 49.16 29.13 96.08 14.28 56.76 97.93 3.03 65.36 83.88 47.56 55.64 42.76 46.78 25.93 58.55 51.45 93.43 69.41 70.32 65.65 51.03 94.22 84.83 73.54 66.21 64.14 38.17 22.67 20.90 51.34 39.72 99.40 32.85 54.22 81.26 71.80 79.63 81.17 68.13 96.12 10.87 28.84 26.71 68.75 1.13 96.92 99.94 91.32 60.53 29.91 50.06 84.48 8.20 94.94 36.16 9.49 38.09 42.34 83.31 30.44 46.83 10.34 5.29 5.30 76.75 92.34 13.90 85.59 64.01 50.30 44.76 76.94 88.56 79.82 4.51 -0.92 72.68 80.84 69.89 68.05 26.92 5.44 78.11 78.28 32.77 53.37 96.18 89.65 45.33 50.51 27.38 10.67 60.18 2.24 77.79 69.99 12.22 25.98 44.08 30.37 84.84 18.95 5.22 79.08 5.44 97.45 87.76 66.37 30.65 89.81 80.86 59.61 39.60 54.17 40.11 89.14 88.41 50.18 36.41 7.16 7.39 90.92 43.42 32.64 19.45 68.60 4.32 52.70 50.98 18.84 69.05 11.23 1.26 49.12 75.74 20.23 37.96 14.07 24.53 59.90 79.85 64.11 57.31 77.64 11.14 17.04 84.88 47.92 14.90 36.25 56.20 14.73 38.78 39.04 97.01 96.76 39.62 25.71 87.29 49.92 96.90 47.06 57.63 4.39 16.59 20.55 52.48 59.13 55.30 6.24 76.80 34.03 61.62 90.47 21.37 -49.46 23.96 97.62 4.41 40.02 76.71 76.15 80.93 84.02 28.19 15.51 39.44 93.68 37.98 88.10 12.30 51.05 38.81 57.49 97.79 0.09 91.78 56.56 48.10 23.16 19.49 84.09 76.35 62.26 53.53 76.70 28.21 37.82 32.39 10.05 57.07 81.56 99.62 39.83 40.85 15.98 73.74 21.44 13.85 63.55 59.85 95.23 69.73 62.73 88.18 74.38 1.90 23.69 65.82 56.01 93.41 62.20 66.49 91.19 88.66 31.69 24.15 52.94 56.06 79.66 25.97 69.93 31.85 42.05 14.95 54.87 99.36 68.26 7.40 10.42 46.26 4.27 48.02 12.62 27.31 46.44 55.26 49.89 88.91 80.30 52.73 78.06 53.96 94.31 33.00 38.15 46.61 42.58 31.45 53.70 54.05 55.63 14.30 57.08 96.55 -96.85 58.91 63.95 81.57 80.69 27.04 20.91 74.45 13.54 69.62 97.44 2.26 8.58 92.48 37.63 88.32 95.08 88.51 37.33 17.39 58.07 17.51 27.73 91.21 68.91 51.48 49.98 27.42 21.56 25.99 4.10 52.72 20.07 50.43 65.58 72.27 6.26 89.72 55.77 6.80 11.01 4.15 86.34 20.70 51.85 40.86 99.78 1.35 85.71 97.08 46.54 25.15 37.35 72.39 24.21 18.05 23.67 82.48 71.42 29.19 75.13 35.03 39.88 76.78 33.75 25.09 38.81 39.75 6.97 94.59 62.57 57.07 19.77 49.66 73.36 58.84 26.00 97.44 4.59 89.06 39.34 95.57 40.26 1.00 4.38 28.97 58.41 96.56 82.60 71.33 74.47 94.92 45.37 71.90 15.25 47.26 50.90 15.45 17.27 13.38 -16.82 45.21 79.25 80.52 18.44 77.36 86.49 28.84 77.93 5.77 99.62 79.80 99.33 34.62 31.82 91.10 10.98 52.90 85.27 59.34 66.71 56.59 97.12 98.77 89.53 99.35 22.66 52.25 62.19 0.92 29.11 90.79 13.88 33.55 22.02 75.15 65.35 80.72 56.88 98.68 94.55 76.16 83.36 82.66 4.46 56.56 48.61 30.99 83.62 65.54 45.25 22.59 11.34 96.42 54.24 79.78 87.44 66.94 40.35 88.81 62.40 13.77 97.77 4.40 71.04 51.14 4.79 90.85 32.26 78.91 39.51 10.13 72.17 81.49 9.41 72.33 17.43 50.18 97.57 43.30 89.30 88.01 77.69 82.31 11.14 80.01 32.50 63.63 21.50 86.04 29.13 38.20 15.64 4.84 56.32 71.61 98.85 8.19 55.11 52.17 -52.30 51.26 40.89 65.34 41.80 17.11 48.04 83.57 13.77 73.55 6.36 25.97 15.25 25.07 8.55 38.36 59.05 15.21 74.09 75.43 80.94 95.23 44.75 53.59 48.68 79.02 5.22 9.69 96.89 23.95 33.72 38.32 5.83 93.69 47.44 30.64 43.17 27.76 51.98 49.57 46.36 45.39 13.37 91.46 56.41 24.49 34.48 91.70 49.18 92.09 92.06 98.05 64.01 69.67 93.46 31.50 92.02 95.26 41.36 44.17 15.98 1.71 50.15 70.88 61.98 13.59 42.79 39.79 50.88 77.33 22.22 12.98 8.02 64.39 42.70 43.31 59.17 49.96 12.66 44.40 48.89 23.42 13.58 73.86 9.51 48.85 47.82 42.74 28.57 78.72 29.25 65.41 49.47 5.87 13.85 43.64 89.93 6.25 29.25 32.50 -48.58 25.02 41.52 73.36 85.93 23.24 99.94 12.76 62.00 34.16 44.93 68.39 45.33 91.40 17.30 0.05 22.86 22.30 32.37 72.68 19.76 53.97 30.46 15.95 96.09 93.69 22.10 96.85 41.11 67.11 38.55 95.38 22.09 61.00 11.31 51.68 61.66 15.81 28.75 11.56 80.71 44.38 62.95 53.53 6.97 32.21 14.05 48.21 85.92 31.20 48.65 77.07 54.28 44.89 49.55 7.65 8.62 81.79 98.64 4.31 36.73 31.95 57.98 81.99 8.51 3.35 50.29 71.23 79.75 48.64 48.90 80.65 51.49 98.47 87.11 50.06 47.33 72.38 76.76 28.26 14.44 38.58 23.82 6.37 46.40 51.33 6.61 25.47 32.10 45.90 64.59 19.00 32.62 95.43 69.63 39.41 50.05 31.10 14.19 9.73 -96.68 96.47 49.37 66.50 80.32 84.86 95.22 85.80 99.37 48.76 75.09 53.69 0.59 20.68 68.13 6.71 0.81 40.15 73.63 7.22 41.54 21.29 22.67 87.92 69.82 29.48 19.48 31.49 72.82 65.04 26.24 34.06 32.12 86.26 73.78 22.33 55.21 61.75 42.35 77.51 38.78 69.34 0.28 88.67 49.77 84.50 17.12 81.99 89.96 1.31 11.62 68.05 0.87 19.86 61.75 34.19 35.37 68.31 17.48 4.15 28.34 82.79 27.88 28.61 77.38 68.43 24.23 97.64 27.04 18.82 29.22 65.16 64.98 88.89 83.69 37.59 30.05 47.30 85.63 25.67 29.30 64.52 88.29 63.75 14.86 4.39 39.56 94.67 12.72 72.62 89.84 99.58 63.35 80.27 53.67 88.67 42.04 90.96 69.96 99.13 -79.52 76.99 70.53 33.55 56.19 50.27 27.40 56.85 77.96 45.69 65.01 98.91 66.00 38.14 17.79 51.60 63.51 96.61 1.31 82.18 47.37 10.87 4.99 94.31 0.93 96.79 33.49 32.36 9.04 13.03 66.17 29.38 98.86 17.15 85.96 98.45 56.50 54.75 87.61 67.76 8.74 69.96 52.63 84.57 61.72 2.91 20.64 11.02 56.37 20.47 77.79 71.81 36.07 42.72 98.46 16.61 33.37 36.17 7.23 81.28 19.94 26.55 77.27 49.47 82.71 52.58 36.98 37.43 1.64 5.08 58.37 90.70 30.17 47.39 19.95 59.67 43.63 61.24 71.66 81.14 9.59 19.36 91.40 26.75 3.23 44.38 32.17 46.98 9.94 54.50 15.76 37.36 53.72 99.36 77.51 51.51 32.35 29.26 31.44 40.72 -11.28 65.49 23.52 89.32 12.82 11.99 28.52 94.13 24.36 32.48 77.18 65.09 42.76 98.40 50.00 90.07 69.80 73.85 68.06 97.39 68.51 25.91 89.38 4.25 1.03 99.56 48.34 98.25 83.10 98.68 93.84 28.05 29.84 35.45 70.93 26.51 57.69 77.32 69.25 6.32 5.83 28.38 53.38 55.94 75.86 42.84 71.20 96.98 42.82 15.33 51.75 79.31 37.01 79.40 15.33 50.07 22.22 53.28 28.45 16.77 53.91 17.69 60.32 40.45 21.73 22.53 61.87 6.40 66.02 33.76 80.04 77.86 2.61 3.38 22.69 75.20 22.83 89.97 43.08 61.30 54.80 77.43 6.25 10.46 36.75 72.21 84.11 57.98 20.18 8.92 61.88 52.63 40.65 48.47 70.53 27.76 39.55 92.06 94.93 89.06 -62.46 69.05 77.70 44.01 28.78 59.44 48.80 70.69 88.63 93.35 81.32 17.28 46.57 75.29 94.06 15.02 89.67 34.62 6.00 17.38 11.25 35.57 6.10 68.66 92.64 67.24 46.89 84.36 16.71 36.05 14.32 81.79 90.44 7.32 49.36 39.76 14.06 0.59 35.61 66.15 23.92 98.34 86.25 77.46 89.16 69.41 53.00 8.91 23.63 40.66 28.17 55.43 82.39 57.11 92.81 29.95 23.88 82.29 76.47 5.48 15.42 5.96 71.83 97.61 78.18 22.36 74.10 34.63 76.66 2.00 4.06 21.94 18.58 60.59 27.24 30.12 27.23 49.55 95.70 97.49 88.62 95.47 62.14 33.33 55.76 43.61 4.84 8.88 12.12 94.47 10.44 1.07 98.39 13.45 15.10 82.63 77.71 27.26 61.69 37.54 -58.80 85.44 68.49 90.32 5.41 68.33 14.51 78.14 56.29 56.37 27.98 8.46 12.23 8.28 89.57 91.03 49.08 90.67 91.59 38.87 57.87 13.04 51.34 57.81 46.09 6.46 42.91 25.32 67.82 56.79 18.77 20.76 33.25 1.32 17.93 1.11 72.59 48.31 91.33 21.31 39.32 94.97 71.66 70.80 29.97 98.69 93.40 33.42 44.56 52.57 4.07 12.52 93.80 9.03 16.83 89.24 74.27 12.01 21.82 40.66 88.67 47.14 33.22 99.64 90.93 2.54 98.43 19.36 52.80 41.56 11.73 19.40 55.36 21.86 59.60 28.81 73.36 31.08 17.39 2.48 55.65 7.97 40.83 18.81 86.09 86.28 23.63 99.76 71.36 0.99 51.89 48.28 84.79 8.74 92.73 14.64 27.29 43.30 83.56 86.22 -71.92 90.93 86.68 23.10 15.59 47.74 12.84 10.81 66.84 51.95 29.76 49.59 27.60 24.81 52.55 47.90 81.28 54.47 66.40 39.65 58.90 52.05 81.70 40.20 73.74 82.27 47.80 82.31 5.04 55.38 76.17 41.75 43.37 70.19 96.78 96.47 41.52 38.33 22.70 72.26 43.54 86.45 6.96 93.78 67.85 96.75 15.87 10.19 32.27 48.70 37.75 46.00 0.89 45.51 32.33 77.51 26.15 31.13 10.78 60.05 85.88 75.35 9.61 40.83 53.06 34.80 83.07 75.12 76.79 63.69 98.64 86.35 20.52 95.29 20.52 22.77 69.32 17.50 37.69 17.03 85.70 3.57 86.84 62.47 22.78 55.79 6.39 41.12 36.59 16.88 49.40 39.44 66.42 51.45 10.27 23.99 55.82 71.77 5.72 5.77 -24.87 10.30 92.48 55.12 29.46 83.60 19.40 97.93 34.01 79.13 24.18 45.05 41.77 5.89 57.39 38.06 6.75 68.23 28.15 56.01 23.82 37.41 17.31 78.80 70.70 71.31 71.46 58.22 95.02 75.37 50.91 12.37 13.34 90.24 2.87 11.35 9.21 7.40 92.37 53.59 41.38 16.13 49.23 36.13 65.61 97.80 93.02 42.49 20.33 92.10 9.93 82.04 88.85 76.28 92.23 74.43 49.28 49.57 4.02 68.17 44.62 6.55 26.50 78.06 4.92 63.94 9.89 98.40 18.83 18.70 39.29 89.74 63.12 9.79 35.41 30.43 91.75 32.12 4.22 53.20 67.86 52.04 79.90 79.65 90.44 84.69 75.94 7.50 63.10 99.24 4.12 45.69 43.82 79.14 70.47 54.54 41.30 68.42 26.59 12.29 -99.21 71.36 41.14 71.76 41.17 77.51 66.55 42.75 60.29 23.58 22.08 52.12 76.85 0.29 85.34 1.80 73.12 30.67 35.89 12.71 10.08 96.69 63.01 84.13 98.53 77.33 63.29 85.38 73.55 45.99 64.94 87.39 52.39 39.57 98.92 76.70 10.96 41.38 93.00 21.67 86.12 26.63 71.82 84.46 75.31 83.17 89.31 83.95 30.03 20.41 63.67 14.49 91.92 23.65 46.19 47.80 62.55 53.96 83.31 90.52 35.63 85.81 37.90 53.53 17.32 17.66 13.49 83.95 50.50 34.62 85.96 79.37 9.07 76.89 43.27 81.12 49.79 46.56 16.03 6.94 74.69 71.54 78.03 75.69 14.96 44.79 59.63 16.45 21.74 23.17 7.35 47.83 40.96 63.24 39.10 79.25 84.82 7.34 19.76 97.90 -85.75 89.73 1.80 6.71 23.57 31.96 8.85 49.13 29.82 83.23 81.36 46.05 11.40 3.95 39.40 96.71 39.19 54.15 23.11 73.59 63.26 25.62 72.44 28.34 98.95 92.71 33.02 97.15 62.82 18.26 73.90 28.84 51.39 63.25 23.02 7.17 17.93 86.79 81.40 15.11 44.71 72.13 42.53 88.62 40.14 25.52 16.47 66.63 66.44 72.52 49.78 60.17 35.80 18.03 54.29 69.58 96.04 70.36 75.24 32.92 28.30 20.23 99.37 93.79 81.68 43.39 78.88 51.12 49.40 9.19 92.87 48.33 81.51 9.27 4.51 53.54 56.62 24.11 50.85 55.61 34.24 91.99 0.45 70.68 33.06 12.31 5.71 32.29 28.54 68.08 18.17 80.87 47.98 10.31 70.83 20.94 62.19 49.21 55.20 99.06 -6.92 87.45 43.66 61.75 75.42 35.01 57.40 0.36 1.62 87.88 64.00 41.09 24.56 77.07 19.18 57.37 96.24 0.93 28.68 10.52 51.85 33.92 76.72 31.50 77.74 67.94 64.24 37.25 53.51 37.76 9.50 92.17 70.20 54.08 19.50 35.21 79.33 82.39 0.19 85.40 20.83 62.28 74.10 57.97 88.08 75.04 80.69 0.54 12.84 32.79 12.43 42.09 31.21 43.18 12.29 11.01 9.43 26.14 9.36 28.70 93.00 32.98 56.80 34.91 7.28 0.61 0.57 50.24 71.09 2.57 32.58 32.45 2.87 52.46 20.09 76.75 69.58 84.01 32.40 85.03 46.51 23.01 76.82 66.80 86.49 4.01 50.59 5.60 38.82 88.22 94.66 17.70 13.09 55.70 48.93 92.11 35.16 28.33 23.32 44.36 -96.40 57.87 5.16 87.31 87.70 7.51 10.14 62.00 95.30 82.32 77.46 54.04 96.63 94.76 51.52 47.27 89.68 99.74 93.04 18.11 14.12 67.34 23.58 66.32 27.11 59.24 42.22 10.27 23.57 10.18 27.72 34.29 10.09 92.75 85.52 78.98 99.27 21.75 6.92 56.96 44.38 44.59 46.95 43.03 69.08 92.30 96.94 83.71 5.77 36.63 44.87 5.04 93.11 79.01 28.88 46.39 6.61 40.86 54.87 34.62 39.68 21.55 53.25 34.30 11.42 66.52 47.12 92.29 84.89 88.56 92.30 40.00 86.10 73.60 19.33 98.30 82.89 22.51 16.01 0.75 56.28 29.51 44.82 97.11 19.71 31.12 50.82 39.94 40.91 19.98 20.77 27.19 47.14 13.85 22.88 53.61 28.11 8.39 74.30 39.44 -52.54 86.66 73.18 70.58 60.25 96.41 24.37 75.93 37.10 61.77 42.51 50.23 86.24 55.69 85.96 27.61 56.16 67.86 91.73 79.67 23.17 77.52 20.21 55.83 70.05 87.69 89.05 77.00 22.61 74.06 44.89 99.30 92.44 33.23 50.71 4.68 64.42 59.69 78.94 86.49 53.44 27.76 33.96 99.26 67.51 82.20 81.20 85.83 90.69 38.51 22.36 9.76 49.86 90.55 81.73 74.44 20.14 37.03 33.29 69.94 99.51 1.59 80.79 50.53 79.62 82.16 80.38 88.54 5.20 10.81 78.93 75.13 66.40 38.53 6.92 26.80 32.19 80.54 0.53 46.13 12.07 25.32 80.21 98.12 43.06 54.40 75.17 85.57 82.15 20.34 59.77 97.16 80.42 38.53 11.43 25.07 31.94 82.84 83.21 32.97 -64.48 31.39 26.03 31.55 67.25 3.02 80.57 16.89 29.02 45.58 23.62 82.56 51.57 99.03 6.59 63.23 78.19 40.84 90.23 33.95 7.46 72.27 82.16 13.29 87.53 74.71 73.75 60.24 45.71 93.28 32.53 37.52 51.35 69.48 82.99 65.55 89.56 50.30 27.96 54.41 63.73 66.93 54.36 48.88 80.46 34.33 41.40 77.19 1.09 61.48 56.91 43.94 37.96 14.99 48.10 15.16 67.58 1.11 93.34 79.58 12.86 23.24 65.09 7.44 66.60 72.50 41.53 27.56 17.70 52.57 0.40 91.48 75.45 67.85 62.44 44.89 69.76 18.06 55.46 21.93 60.01 73.45 25.21 26.06 75.65 93.49 61.59 58.62 3.37 75.85 84.22 21.23 2.20 3.72 34.60 91.08 28.11 94.81 62.57 42.17 -97.09 9.39 87.27 29.03 37.91 38.74 40.15 5.74 16.33 91.03 18.29 16.25 42.28 5.81 97.06 29.21 23.76 47.62 80.57 14.57 21.85 86.93 58.11 12.33 40.82 97.87 28.70 77.10 59.91 48.50 90.10 17.38 54.04 55.01 74.30 39.80 26.89 43.69 35.99 95.57 93.86 85.37 47.05 96.12 20.26 78.67 14.36 89.20 9.49 49.89 92.31 0.30 25.50 31.46 71.10 8.92 74.18 91.61 0.10 33.72 62.20 85.73 17.14 87.34 22.48 89.78 58.39 39.37 26.63 75.53 90.80 76.76 4.33 39.97 94.46 54.79 20.41 9.32 25.67 34.72 79.80 49.37 92.53 50.04 46.04 52.37 38.10 92.33 81.71 61.15 88.65 62.24 23.93 3.67 31.75 19.81 98.88 88.71 54.50 23.64 -32.16 70.48 80.13 34.93 54.29 59.78 7.20 43.54 91.77 23.52 67.13 89.83 83.32 35.65 75.24 60.81 39.94 15.04 43.82 69.18 26.71 94.05 38.31 24.10 59.65 38.79 27.60 13.97 12.46 88.63 53.11 82.08 13.65 61.15 45.43 54.40 82.08 17.44 1.18 69.81 51.20 79.00 15.90 25.93 16.08 39.41 3.50 1.83 91.84 40.21 6.72 62.04 19.05 55.06 20.76 3.60 40.35 62.22 12.76 53.42 32.69 56.03 66.27 91.46 91.22 83.27 47.55 95.19 1.38 58.46 49.53 83.24 53.44 95.64 79.69 97.20 31.31 67.85 87.80 29.02 96.08 25.58 76.89 76.07 22.46 39.60 69.62 15.82 80.67 32.54 99.98 72.19 19.39 16.05 9.48 93.78 2.72 13.50 15.76 65.24 -3.99 22.36 37.57 5.23 13.22 59.60 95.66 14.07 41.65 15.96 15.51 49.84 44.46 75.89 5.92 56.56 24.74 17.48 76.47 56.36 31.10 78.65 14.71 44.76 36.88 44.96 50.07 58.88 65.61 69.57 40.15 80.51 2.00 51.70 19.02 3.55 0.68 46.12 75.84 94.91 35.81 72.22 43.66 41.40 81.39 89.98 45.37 23.51 5.27 49.82 18.07 35.98 37.60 24.95 85.21 37.88 56.91 82.47 55.60 94.36 16.30 92.12 32.43 5.36 45.03 35.39 12.43 23.22 34.01 18.86 74.28 90.05 81.92 68.85 77.80 89.49 19.80 60.95 84.23 22.60 18.70 89.17 32.95 92.27 16.53 31.84 27.49 12.49 76.97 71.02 46.05 54.42 72.82 60.70 30.70 67.04 46.47 98.90 34.09 52.78 -67.88 24.37 21.59 48.07 75.36 54.15 79.17 69.22 0.08 36.61 85.65 52.85 69.17 16.80 53.24 60.96 35.81 9.04 34.64 11.05 64.09 68.61 99.32 32.25 20.98 85.90 55.57 95.18 61.42 33.69 60.31 11.73 21.13 70.85 88.10 42.91 78.83 7.96 82.63 15.42 9.05 60.15 77.17 1.81 95.09 77.08 9.35 46.65 73.02 38.83 20.41 19.62 17.85 53.37 20.42 38.16 56.49 44.81 54.55 34.69 47.44 69.56 64.45 31.73 61.65 48.26 20.62 26.53 28.78 90.03 71.26 2.33 82.24 22.81 24.45 46.08 75.92 34.54 64.97 38.19 7.80 5.81 53.51 15.21 34.72 40.39 75.69 97.56 24.46 95.68 20.66 41.61 70.53 58.10 53.94 24.93 3.63 69.93 60.45 74.08 -24.25 19.39 15.05 64.12 77.18 9.38 85.68 69.01 27.37 83.96 2.25 84.88 55.81 66.25 13.73 2.95 96.58 85.47 28.58 5.85 20.29 74.05 27.75 29.95 84.65 72.46 13.62 59.76 39.43 7.16 49.66 89.40 78.36 72.38 95.31 52.32 91.94 42.29 4.96 17.39 24.96 24.88 38.40 19.63 30.27 32.94 36.23 30.38 95.85 25.43 34.44 66.39 63.09 12.73 5.85 64.92 57.27 95.09 56.36 99.15 54.32 62.13 1.10 31.44 64.15 83.06 8.71 55.50 53.40 47.56 72.50 67.27 71.15 48.88 81.65 93.37 84.33 28.03 27.09 97.41 65.00 12.36 27.51 92.42 24.91 55.46 13.35 61.95 42.14 84.47 88.07 63.53 78.26 7.86 91.46 25.07 16.13 40.36 26.61 26.26 -82.98 78.95 30.89 25.19 93.70 34.20 29.01 54.74 47.36 33.57 45.77 60.72 51.40 23.56 46.51 63.67 75.50 88.68 84.51 54.21 78.10 12.09 6.40 82.00 10.16 3.65 75.86 99.26 57.76 78.90 26.27 40.20 18.60 3.95 98.01 68.94 22.57 39.18 73.41 83.57 91.94 57.69 23.15 23.58 13.55 80.08 46.60 33.13 2.22 19.96 80.89 31.70 50.80 56.11 3.67 33.50 48.72 69.02 51.66 81.41 96.62 48.23 84.15 26.39 4.17 50.31 29.78 30.45 23.86 9.54 37.49 59.18 92.55 51.76 20.93 72.96 88.65 3.13 15.40 66.62 57.38 63.17 57.31 87.60 82.04 98.03 27.45 75.53 46.00 95.95 44.68 99.96 35.80 15.11 2.08 87.16 29.09 77.26 94.10 89.88 -45.71 66.54 3.41 66.57 21.90 96.94 8.94 54.66 33.79 52.05 34.54 90.05 26.63 17.76 87.15 13.83 2.39 79.77 46.40 74.58 13.00 89.00 19.86 52.30 78.94 58.16 64.97 29.35 63.96 29.03 20.77 32.14 40.59 14.88 20.30 67.82 50.24 96.87 75.97 43.71 54.71 42.58 52.96 55.60 99.52 22.33 79.30 68.98 87.58 53.98 90.23 66.50 88.45 78.56 77.18 92.54 9.07 46.96 36.55 9.94 76.73 61.91 64.99 54.44 99.52 91.22 72.36 95.17 97.55 36.55 92.86 36.57 25.02 98.49 83.59 58.88 45.88 50.16 51.08 36.33 1.63 8.47 43.91 16.55 97.69 6.39 54.10 16.92 19.00 25.26 92.41 13.16 55.51 77.97 56.35 26.62 7.47 22.08 59.71 64.83 -3.07 94.24 20.79 8.26 62.42 7.34 12.04 19.42 60.51 49.24 45.54 67.10 19.90 70.46 9.85 27.68 6.59 9.92 11.09 41.67 22.08 72.51 52.28 22.23 31.99 65.25 3.63 16.77 16.44 18.91 52.85 70.97 44.91 2.65 60.43 19.98 23.80 35.78 11.33 93.21 52.95 68.69 79.31 72.36 25.04 4.44 58.67 93.33 25.82 17.04 33.10 75.04 70.35 4.15 16.59 28.95 42.18 67.93 72.21 1.83 94.68 0.12 10.11 66.33 59.44 94.90 97.58 45.34 42.10 40.56 24.87 29.44 76.47 55.61 44.74 95.30 78.37 30.18 78.46 81.33 76.30 21.83 31.96 97.40 67.65 25.29 52.63 14.70 56.36 12.37 83.82 79.85 49.75 4.42 81.20 47.06 77.37 15.80 38.97 87.54 -42.89 13.73 1.32 62.66 88.66 39.56 83.93 53.72 99.99 14.96 43.58 97.27 91.26 3.62 50.37 3.76 52.77 27.14 91.88 80.09 65.99 85.44 14.96 82.92 16.82 99.52 14.29 7.30 10.01 89.10 39.70 1.50 22.78 55.03 96.00 55.11 70.53 96.32 99.31 64.50 83.54 71.44 56.61 71.11 0.56 74.12 25.98 61.31 20.81 69.57 13.10 22.42 90.12 75.11 63.65 10.37 82.51 76.46 2.41 93.15 37.43 46.81 45.54 76.89 36.17 79.64 87.61 79.02 25.24 95.96 78.86 93.47 49.25 92.83 6.83 11.12 72.67 11.34 14.84 86.12 57.10 64.06 59.61 67.27 20.10 63.25 25.05 21.08 55.06 67.82 32.92 46.22 61.26 61.58 24.08 68.44 37.57 59.47 29.79 91.04 -29.70 71.68 60.14 63.34 5.62 43.21 4.20 94.23 90.09 99.20 95.83 63.68 82.83 59.92 19.25 26.36 19.74 81.50 58.90 93.18 72.58 50.12 39.02 26.59 80.15 93.89 99.98 85.91 44.70 87.64 34.43 89.94 21.97 25.96 83.43 4.10 50.50 35.71 63.32 44.65 44.31 73.22 92.89 91.12 36.17 97.93 28.29 87.20 77.58 11.44 67.07 59.45 37.14 10.75 32.43 39.15 81.43 41.37 81.34 5.08 73.07 92.28 20.16 58.72 59.74 55.87 16.45 60.96 63.53 46.85 50.52 69.44 77.54 60.76 59.05 17.90 88.49 69.31 96.95 74.48 8.16 44.30 56.99 51.79 67.07 37.73 88.83 47.95 56.60 89.43 53.52 16.26 49.38 22.78 86.62 46.04 61.03 32.91 92.58 53.60 -80.51 32.06 33.55 35.91 80.09 56.84 72.94 53.72 59.16 87.44 53.29 1.78 2.17 54.09 85.90 98.26 94.75 33.10 92.56 75.30 59.14 52.90 57.12 85.70 36.49 75.47 26.27 36.98 84.56 24.56 66.91 54.81 54.67 40.02 97.22 37.49 98.10 42.46 79.86 1.31 37.78 1.98 22.53 56.81 77.74 61.74 53.56 60.96 72.14 60.70 14.52 46.00 64.34 42.53 13.38 69.40 12.94 76.16 36.64 28.24 32.35 90.58 84.43 79.30 68.15 56.16 83.17 0.86 59.19 49.70 90.21 98.70 95.29 31.86 39.84 28.83 44.79 98.04 91.19 38.91 56.78 76.05 93.99 57.07 65.46 3.54 22.80 1.00 16.07 55.71 22.91 29.08 0.23 75.12 66.63 73.48 19.81 45.65 65.35 97.20 -2.29 10.45 64.09 75.20 85.95 49.03 8.25 76.25 27.63 90.18 36.51 22.31 80.79 14.15 98.29 14.47 20.51 75.39 29.26 96.13 53.56 92.06 8.81 24.88 20.24 83.28 21.77 61.41 82.42 56.51 18.50 3.85 49.88 69.17 4.84 63.05 34.62 2.45 93.22 19.84 8.66 0.02 85.12 94.20 41.54 14.02 54.95 32.15 72.25 31.31 63.34 47.83 53.23 53.75 6.19 0.86 36.33 8.27 62.91 44.48 89.89 68.68 41.99 82.06 18.19 71.26 41.08 43.85 97.24 8.18 77.33 76.86 80.52 64.89 95.51 61.40 93.58 93.55 20.77 20.26 15.24 99.74 49.43 71.35 64.77 88.26 5.59 45.67 75.27 69.07 82.31 84.97 45.73 2.01 77.88 78.93 0.86 69.02 43.99 66.07 -31.67 15.56 96.31 86.90 20.74 99.16 12.24 46.63 65.98 94.51 41.96 89.69 24.26 6.38 90.01 64.07 0.06 50.66 50.81 20.15 61.02 30.26 94.04 57.28 91.23 33.87 30.03 61.88 33.75 30.41 23.78 88.50 30.07 97.98 22.01 50.52 41.71 95.74 4.65 15.00 73.66 21.35 72.64 25.25 72.35 45.65 55.36 92.62 1.47 3.56 47.52 42.02 37.28 68.41 35.61 92.50 64.56 50.56 52.71 87.15 91.06 13.27 95.98 69.72 16.67 40.39 65.88 33.70 28.12 65.98 71.02 37.36 3.55 17.57 28.56 70.96 20.44 85.64 10.76 46.13 98.84 36.35 49.02 8.76 17.63 82.35 45.40 78.77 62.79 48.42 21.50 54.94 63.51 20.68 96.51 35.48 35.42 51.18 81.34 68.06 -57.39 43.32 38.66 63.11 53.54 65.65 88.88 84.61 13.55 83.02 47.55 9.05 10.58 21.44 4.62 10.94 94.70 43.17 4.96 84.21 37.90 85.87 9.08 45.79 32.67 98.99 57.68 88.75 50.27 61.00 55.44 69.43 43.19 35.09 23.09 38.44 38.82 96.21 23.46 80.12 63.07 60.30 13.90 3.12 39.13 50.19 39.31 66.15 62.01 44.85 23.35 36.52 24.70 8.44 93.51 54.88 94.93 3.55 64.45 9.54 93.38 93.71 13.37 98.30 6.53 99.47 24.39 49.65 10.40 72.19 64.84 30.16 28.57 61.43 25.59 55.68 16.79 13.37 24.94 96.25 18.88 87.32 23.19 21.39 45.09 75.55 80.65 38.10 50.48 62.02 42.66 50.84 41.48 97.98 64.52 99.78 90.43 68.75 40.33 5.58 -25.57 27.26 35.76 80.68 34.59 48.12 23.10 73.35 5.89 43.43 98.54 56.14 63.13 68.66 33.56 6.96 50.18 38.51 0.95 67.84 27.18 48.08 2.84 47.75 94.33 72.76 90.39 82.76 82.30 33.69 77.89 16.00 8.10 35.47 57.84 44.15 4.64 74.73 24.28 1.39 74.91 28.91 25.26 39.72 14.24 3.89 59.32 0.48 61.25 13.67 96.89 64.78 91.16 46.68 48.31 71.34 9.94 48.24 20.06 70.40 44.67 34.87 91.84 33.39 6.69 64.29 79.66 59.29 48.26 7.15 90.86 70.30 38.83 42.70 99.91 29.85 47.26 9.19 58.70 90.87 85.12 87.59 85.24 3.39 42.84 16.90 98.72 86.91 48.79 11.37 78.66 64.88 78.01 91.71 58.30 85.89 32.48 70.24 92.59 67.84 -83.11 1.51 67.82 27.73 28.77 86.62 97.64 52.30 75.38 98.43 99.92 43.24 0.09 13.38 39.22 65.22 60.15 24.04 85.82 68.30 31.43 39.97 54.15 70.93 43.68 69.13 1.05 26.13 99.59 49.41 39.16 41.56 1.58 0.81 35.26 4.22 29.97 61.54 53.99 46.14 79.46 77.59 53.93 72.15 20.16 94.67 75.22 4.13 55.73 54.14 9.31 95.29 60.74 98.43 23.91 2.06 86.93 2.63 49.85 37.04 43.09 86.79 84.07 18.78 45.80 31.93 13.71 14.78 89.78 50.09 40.32 41.45 24.76 81.32 40.71 66.55 53.40 88.52 12.11 9.96 16.05 64.69 25.07 2.67 42.44 2.84 45.09 70.05 34.02 54.28 24.27 63.54 66.55 7.85 93.28 99.75 64.72 11.38 52.23 39.43 -44.39 20.25 84.18 57.00 34.34 41.15 93.00 12.91 51.81 37.38 0.48 53.94 45.59 84.05 23.73 45.57 26.97 94.94 62.37 80.10 53.84 46.19 77.50 17.77 70.61 50.29 36.73 0.15 34.09 11.21 0.82 79.56 90.44 97.74 86.04 3.51 85.11 47.58 91.12 84.30 57.21 2.52 49.67 36.69 34.42 32.77 39.06 80.58 66.00 49.59 33.17 77.24 43.77 84.89 56.37 14.80 80.65 57.56 35.53 77.74 41.45 70.68 15.75 0.56 68.18 6.10 11.52 86.98 28.73 89.94 53.05 1.18 81.70 56.52 34.81 51.92 93.65 45.09 52.93 81.67 3.74 47.08 67.80 78.85 7.08 32.71 3.62 13.45 65.83 95.47 68.37 28.51 14.99 93.29 36.54 46.60 21.83 58.93 45.01 80.73 -55.16 64.96 36.57 47.79 28.26 84.40 44.38 54.71 85.70 31.54 39.71 95.07 81.58 27.61 25.45 66.42 29.81 12.05 76.52 58.66 38.77 1.57 25.76 39.12 17.29 33.42 4.07 85.92 11.99 97.94 58.78 37.23 33.37 50.70 71.34 97.18 36.54 89.07 22.45 21.60 68.57 68.01 99.41 2.50 17.33 63.09 30.64 73.08 47.86 0.01 94.43 36.97 68.03 83.59 74.02 2.49 83.54 6.98 52.90 25.12 99.76 77.41 0.84 16.69 21.89 59.33 16.94 17.81 58.69 26.08 79.13 69.44 66.08 69.74 91.08 49.07 9.42 19.80 29.06 23.96 15.90 13.51 76.70 91.83 24.64 8.13 48.62 47.77 17.81 67.75 58.26 67.56 23.10 55.34 90.83 99.58 75.06 65.91 13.63 23.71 -75.20 83.14 83.01 63.36 35.49 26.25 4.27 65.84 39.80 4.24 29.82 90.18 37.01 65.65 46.03 57.53 64.26 47.51 85.59 81.76 71.83 77.61 60.52 56.28 10.33 23.92 35.74 17.73 14.16 75.31 96.17 0.03 90.94 21.03 66.80 73.84 10.57 54.34 67.29 78.17 77.79 63.38 91.82 22.85 50.42 78.60 91.47 98.55 43.46 68.74 2.56 29.52 70.84 26.96 23.76 52.30 8.84 27.27 47.43 78.86 75.63 68.03 90.68 47.80 15.26 83.22 5.75 14.71 47.60 44.48 18.76 54.89 31.75 44.30 12.19 10.99 44.03 80.85 43.68 24.58 13.62 37.04 72.98 62.26 18.26 90.26 15.32 95.21 14.66 76.64 79.36 57.94 29.60 5.19 77.87 13.18 11.53 23.17 0.63 97.51 -28.26 94.54 56.29 16.28 50.01 27.77 71.72 44.28 34.96 25.64 17.46 21.79 67.18 49.36 54.04 88.25 69.33 57.97 19.73 42.70 44.78 15.64 63.95 19.79 72.80 88.25 29.78 58.80 14.83 27.15 9.18 73.27 97.22 67.96 0.64 62.07 39.76 33.71 31.71 69.94 99.85 18.91 17.05 27.86 99.65 71.16 75.38 34.95 94.82 72.03 89.63 42.20 94.43 53.72 87.67 28.02 56.89 57.87 31.61 34.62 59.58 73.58 67.78 2.75 39.81 96.29 53.95 96.64 77.03 57.90 67.64 44.06 7.46 21.83 40.34 87.06 42.71 16.94 38.08 36.61 47.54 97.91 22.77 98.89 90.50 73.84 88.36 32.02 18.16 54.15 87.06 99.32 51.80 44.43 85.62 77.43 62.19 27.27 48.72 23.29 -55.53 66.00 46.46 5.20 58.49 41.63 42.30 53.68 83.08 5.00 67.05 4.96 20.53 11.06 46.18 52.63 61.63 58.73 60.03 39.47 27.50 66.04 77.10 95.18 10.68 90.80 66.34 82.96 78.45 40.44 86.76 54.58 40.15 39.80 79.32 36.48 53.34 96.40 71.38 70.69 38.72 26.75 81.54 60.87 48.87 21.56 74.49 23.02 15.13 31.42 38.47 6.99 3.81 18.75 65.96 95.51 48.08 13.26 48.38 45.88 20.12 85.44 29.32 63.94 1.58 99.77 90.94 94.13 99.58 86.05 92.47 47.36 25.28 61.21 74.75 40.99 50.14 83.28 37.97 65.32 34.22 33.43 86.98 70.04 32.58 47.39 62.87 36.00 66.45 70.64 17.71 13.12 95.97 70.20 11.48 74.23 75.89 98.36 21.19 40.28 -90.95 74.84 76.78 49.32 96.51 16.36 98.54 3.21 61.67 72.03 9.37 30.43 9.47 41.37 23.77 8.13 99.83 12.41 14.93 63.11 39.75 35.35 63.38 45.74 41.75 71.50 0.44 80.50 53.35 5.40 49.57 15.24 97.35 0.64 86.72 46.33 94.48 98.31 39.30 36.71 67.10 96.91 92.70 83.05 88.71 9.90 40.23 31.93 49.36 43.98 92.86 89.74 61.38 73.75 6.03 2.03 16.33 85.77 50.10 59.83 33.16 49.21 77.16 62.01 27.95 30.40 53.72 63.75 32.55 63.89 1.93 23.87 66.24 63.18 61.98 75.33 77.17 85.43 0.83 32.29 84.83 18.16 58.82 88.35 98.72 74.79 22.06 2.71 7.58 99.01 20.60 74.47 94.37 54.61 99.76 93.08 37.73 20.38 4.42 70.75 -22.42 21.06 82.43 86.79 88.57 35.11 58.11 68.84 72.17 18.69 50.40 16.19 75.33 99.75 9.28 74.69 17.58 30.85 86.22 24.98 25.53 64.21 90.10 59.98 80.96 46.51 37.84 68.57 48.22 69.71 49.02 45.40 94.40 25.12 22.95 88.14 13.28 93.19 7.12 64.62 66.26 34.47 72.04 62.73 39.96 33.48 34.98 7.36 48.62 49.81 37.25 42.96 18.44 76.72 58.91 80.62 96.86 52.50 13.26 45.28 64.48 50.98 52.62 11.04 83.22 16.39 29.98 76.87 28.18 94.68 94.14 87.06 30.43 24.62 87.22 52.61 15.01 58.00 81.52 4.39 62.67 49.39 96.69 38.36 93.01 84.12 66.46 18.97 33.96 94.62 83.92 61.42 4.54 33.36 61.78 40.11 69.36 38.94 31.80 5.64 -61.98 90.09 64.76 57.57 46.15 32.33 51.31 65.13 18.27 17.60 27.96 70.59 39.44 55.37 24.58 19.46 44.54 88.82 99.54 57.52 82.56 85.43 52.05 93.92 79.63 97.87 52.54 10.72 37.71 68.11 22.28 18.88 28.50 95.09 59.58 56.53 82.60 52.20 18.96 70.20 77.82 83.75 5.66 19.46 33.73 79.56 35.25 19.61 30.76 60.04 44.86 57.71 3.86 90.33 66.09 19.55 37.05 37.57 89.99 30.95 63.85 82.71 19.25 50.49 52.21 58.47 93.15 45.08 13.96 28.49 37.70 64.90 7.09 35.25 36.59 80.91 18.93 51.10 66.16 68.52 22.47 35.84 70.74 39.12 75.51 34.78 90.40 36.38 6.27 7.27 74.42 54.44 43.55 15.97 43.55 83.02 45.37 40.49 12.06 97.16 -25.11 41.23 25.83 17.49 26.21 78.98 88.13 99.54 77.44 66.64 86.47 8.25 82.45 41.87 66.91 42.40 33.40 99.40 24.75 24.04 91.20 37.85 58.40 68.33 75.99 66.42 61.80 37.64 63.84 81.65 50.84 44.00 66.18 70.86 82.20 83.38 53.39 25.97 3.00 34.61 92.58 28.04 71.20 29.53 6.24 4.04 20.57 40.97 84.07 34.86 12.35 91.53 45.03 85.28 95.59 1.23 96.60 92.30 84.30 83.80 25.88 66.14 11.80 57.03 95.68 60.14 93.04 36.31 19.41 98.13 32.68 60.30 81.27 16.14 57.74 90.38 41.95 5.73 60.63 4.62 60.98 7.70 54.56 91.81 54.64 79.22 57.66 77.61 65.97 69.17 15.29 62.88 91.62 90.60 34.19 99.96 67.21 36.55 36.39 24.69 -38.51 26.57 57.52 59.68 70.78 33.52 72.74 88.76 50.76 85.31 84.57 41.32 63.86 24.52 42.94 90.54 50.86 60.67 99.04 65.45 35.75 87.37 53.56 78.91 31.29 27.93 51.93 49.53 27.11 21.41 34.20 64.57 51.62 65.77 77.49 81.35 89.86 25.97 2.49 74.89 43.44 0.30 93.59 2.76 20.59 38.61 79.23 74.71 77.38 36.39 74.25 13.55 40.89 52.80 29.07 47.71 16.85 69.51 61.84 16.08 40.35 75.77 0.55 65.06 41.30 50.87 3.72 35.57 54.30 12.80 60.16 48.53 3.93 56.68 51.82 31.73 46.49 96.65 99.32 67.64 21.22 4.49 63.57 11.45 44.42 92.76 73.52 71.70 85.64 27.51 60.71 70.09 98.23 82.02 94.72 88.56 52.90 9.96 29.68 52.66 -47.09 85.48 59.69 84.57 43.16 97.69 2.71 49.30 6.94 68.76 19.06 97.48 77.96 18.45 41.64 52.95 54.05 46.04 5.36 1.33 80.92 69.72 57.17 12.57 67.15 49.66 26.28 18.40 66.77 75.08 1.59 30.13 78.14 12.24 60.78 52.68 5.31 6.43 68.33 55.28 13.84 13.62 81.56 56.89 85.17 75.00 17.28 12.14 45.73 27.47 31.18 4.96 10.45 15.71 9.13 91.18 95.69 66.20 15.31 38.65 71.42 44.67 46.21 75.60 32.61 43.50 35.29 24.66 49.32 64.49 39.74 4.50 91.65 8.93 48.10 50.68 99.67 70.20 78.44 67.89 49.17 3.34 48.10 6.07 32.31 38.10 45.75 10.32 56.59 19.03 52.44 94.98 19.50 22.94 46.31 89.50 66.55 46.70 84.57 17.08 -5.59 39.71 36.55 86.19 43.09 25.31 0.86 32.24 58.36 47.69 95.93 82.83 94.31 94.00 59.91 67.55 45.27 33.55 75.26 24.67 12.58 74.92 42.96 65.95 25.97 59.08 35.16 17.80 9.81 2.51 59.64 16.13 78.72 38.84 19.57 55.28 10.79 45.09 92.68 75.15 55.43 94.34 63.22 81.94 89.78 99.88 92.16 37.06 36.18 81.50 5.39 62.42 75.70 31.75 22.31 96.90 60.50 79.91 87.92 72.86 78.24 48.74 13.05 26.16 79.68 58.69 6.27 11.10 80.37 64.68 66.32 64.99 73.27 29.21 25.88 94.66 58.22 5.57 29.96 97.80 68.74 22.07 56.02 62.53 98.03 15.56 68.18 24.12 42.55 78.00 52.61 79.25 5.59 71.97 30.54 81.41 61.78 74.97 90.00 24.98 -5.98 79.88 5.23 18.59 92.14 20.39 17.62 4.63 27.18 48.69 87.25 80.47 83.53 11.94 54.36 39.20 30.01 77.51 95.94 98.78 13.10 68.32 35.57 28.77 90.05 85.48 25.32 67.96 70.71 66.56 80.68 97.19 27.52 78.36 24.13 37.49 53.81 90.85 73.47 92.62 58.16 20.91 27.33 69.24 68.21 0.88 55.56 12.01 70.32 78.61 41.33 15.19 66.23 32.62 5.53 43.80 46.43 83.57 76.24 18.77 84.07 44.70 24.69 66.37 29.98 76.95 73.57 0.04 79.98 32.05 80.26 25.30 72.82 91.25 17.26 15.80 69.17 18.51 96.80 90.88 87.49 85.97 54.33 63.49 23.52 93.31 74.87 95.15 93.97 40.65 36.85 87.74 30.49 19.66 31.27 93.02 89.61 23.19 39.06 48.85 -68.56 83.29 28.11 18.50 39.22 8.69 29.58 66.37 18.34 60.72 40.29 53.43 82.37 0.81 25.91 86.98 14.92 23.47 37.42 32.90 93.33 16.13 76.49 20.46 67.81 86.39 97.21 21.64 25.51 24.50 76.87 95.37 97.03 63.31 78.49 50.44 74.46 79.04 47.82 30.33 14.39 82.63 19.43 21.48 56.13 78.66 96.46 66.76 62.40 9.65 35.79 91.87 25.10 16.21 84.77 58.82 80.82 53.76 60.36 60.81 2.20 58.70 13.87 42.09 33.58 13.81 87.54 86.44 20.32 22.71 54.25 48.27 96.49 83.86 35.53 26.47 33.24 2.20 75.45 0.30 46.37 58.97 12.17 44.20 45.03 71.50 90.93 53.59 33.82 9.44 43.68 56.88 81.11 36.83 15.10 40.44 45.50 19.95 8.71 75.34 -32.06 24.46 24.70 78.68 74.74 0.75 33.24 54.48 36.97 67.13 40.36 64.17 79.56 49.35 65.25 55.05 89.34 77.12 7.63 20.30 58.31 28.29 67.15 90.12 55.36 86.62 44.82 17.11 96.70 29.92 0.81 76.59 54.28 95.77 37.48 10.16 4.69 22.81 63.10 69.72 14.48 54.69 7.59 51.79 12.98 24.10 1.38 72.35 8.11 24.69 83.52 20.25 36.27 31.98 47.33 83.68 96.65 58.72 55.62 9.01 96.73 23.50 18.80 89.27 63.74 70.74 52.85 77.76 7.14 75.05 82.55 57.91 32.06 38.97 16.29 42.55 45.36 33.85 27.30 92.91 19.84 18.08 20.98 48.51 78.81 74.59 69.55 2.25 44.85 28.33 89.48 73.53 95.84 77.56 14.78 57.79 84.93 48.33 33.30 37.25 -79.63 93.46 93.77 71.23 46.14 51.82 20.85 34.25 43.19 24.01 35.59 48.54 59.77 88.84 61.27 55.52 30.00 47.39 39.62 25.95 2.13 32.69 62.56 44.91 57.12 88.51 48.44 12.86 36.10 8.51 45.31 48.73 13.39 37.70 2.51 68.87 10.90 42.05 17.81 92.34 71.67 1.82 60.87 58.87 13.99 89.93 78.93 81.67 94.77 31.92 34.18 3.17 43.34 91.79 39.14 62.35 82.90 48.76 81.04 46.25 18.33 46.98 94.60 3.44 9.46 87.35 63.70 88.82 11.64 40.94 35.94 44.29 51.47 16.47 6.70 95.35 19.63 64.41 26.06 14.77 52.57 78.78 82.92 7.48 54.90 54.79 21.06 76.89 84.69 60.19 51.19 79.07 51.63 7.22 10.97 32.78 49.08 86.53 30.67 57.26 -42.19 92.87 61.18 66.30 21.07 65.04 33.12 48.09 22.45 11.57 43.56 44.58 77.42 98.40 7.83 71.64 26.66 96.66 75.11 39.19 69.75 4.29 7.30 85.63 82.71 58.61 37.11 29.58 89.87 91.59 31.51 88.78 85.80 95.63 61.98 28.28 68.17 65.55 46.84 58.38 39.79 25.02 95.02 59.58 89.45 60.98 11.56 4.32 5.11 1.10 63.64 58.63 40.40 40.97 72.42 62.89 87.76 47.82 29.98 53.98 31.35 63.48 29.06 64.88 6.85 10.77 43.46 13.97 43.12 36.96 15.46 11.80 33.10 71.20 60.19 34.61 85.80 6.86 18.04 91.77 3.80 94.74 8.03 75.83 3.50 28.21 10.08 33.40 2.55 83.50 50.66 52.68 30.74 95.79 34.65 85.12 57.72 32.34 79.68 13.64 -37.87 54.43 76.43 13.99 58.31 9.92 76.91 88.69 95.72 32.48 88.32 16.96 81.62 9.05 82.90 77.13 42.81 43.31 38.66 0.79 67.73 11.11 17.04 29.03 30.54 45.84 93.51 45.84 39.39 31.71 46.42 33.58 90.52 72.34 73.38 2.09 11.19 44.05 69.30 58.37 0.37 97.02 22.15 77.70 45.98 43.70 72.23 5.86 89.36 29.00 73.86 75.58 56.28 44.71 67.59 72.78 69.28 7.28 31.74 81.23 56.58 79.01 38.31 18.43 36.62 34.52 48.55 44.68 58.92 78.30 32.32 69.02 77.37 96.27 23.74 72.19 56.92 55.55 40.51 32.00 22.65 27.00 80.81 5.69 85.46 78.97 74.41 50.76 12.18 62.44 35.91 91.65 23.05 93.15 10.70 14.85 99.18 60.91 49.08 91.89 -77.10 87.70 25.30 41.12 99.39 0.86 81.90 41.88 79.68 42.38 25.92 31.70 32.16 61.81 31.88 27.17 98.93 84.75 61.84 22.39 76.83 74.53 30.37 82.75 21.22 53.39 94.90 21.30 98.32 64.36 75.95 53.74 61.57 28.60 39.85 3.21 52.32 2.33 47.38 72.84 37.03 85.51 44.61 8.16 40.85 66.24 90.36 10.19 53.64 12.52 67.74 90.29 53.72 85.45 4.17 63.03 44.50 12.45 11.06 95.63 63.32 88.00 7.83 13.41 56.33 93.95 62.81 53.75 17.32 99.83 30.28 9.90 27.56 44.81 81.61 89.43 57.06 7.91 70.80 6.97 39.92 52.97 53.29 63.60 9.34 9.91 99.77 64.66 88.02 96.91 89.55 54.48 86.21 36.18 35.50 44.50 53.45 12.30 27.58 27.99 -92.35 14.84 46.56 78.48 21.29 37.34 41.19 57.03 82.85 70.25 5.01 50.76 3.03 98.93 79.49 9.24 3.87 24.08 88.25 15.61 14.09 14.49 81.03 61.69 81.65 25.84 96.18 0.41 53.98 90.30 37.48 74.67 67.11 51.50 40.75 65.29 25.36 36.54 53.87 24.59 99.97 41.62 95.01 68.66 57.55 14.98 33.10 31.51 13.86 8.54 91.14 52.63 80.81 69.83 99.56 11.42 64.75 29.30 61.28 55.17 41.90 32.89 97.73 39.51 35.97 7.37 6.81 72.15 35.74 73.50 6.68 57.12 33.44 20.20 62.39 95.66 79.05 57.44 24.87 83.13 14.33 48.20 96.75 1.99 65.55 53.47 2.08 55.37 7.92 6.31 9.58 42.68 27.30 85.62 64.78 91.99 72.13 26.44 1.47 34.21 -0.49 60.75 61.25 28.75 72.73 61.54 87.12 24.92 58.97 65.58 63.90 68.58 13.21 73.60 54.22 14.11 37.06 10.05 80.91 41.30 30.81 98.73 58.01 10.85 29.14 28.47 86.42 80.89 2.75 48.93 20.73 88.18 14.94 94.61 1.84 1.37 17.82 99.79 80.12 56.90 33.41 29.60 4.90 69.24 3.46 58.41 73.51 93.63 44.53 39.08 60.62 33.66 33.20 12.19 75.64 93.34 8.44 62.24 52.16 9.86 93.38 35.51 86.39 35.62 1.45 75.83 58.26 55.50 59.76 14.44 61.84 72.05 60.37 48.54 54.79 89.95 50.49 99.35 43.77 97.59 44.38 3.49 51.27 78.06 35.73 98.17 83.07 80.11 24.32 48.76 42.90 54.60 18.10 24.16 35.10 75.00 15.73 64.41 39.97 59.08 -86.34 18.70 44.20 27.55 82.36 31.81 71.40 0.27 60.68 74.85 4.14 40.17 53.04 76.49 56.44 58.86 71.79 68.73 96.01 79.73 30.22 97.27 54.15 49.83 22.28 93.44 24.13 53.95 1.50 57.76 59.54 86.53 70.69 83.46 12.49 34.07 88.19 69.15 22.82 17.05 75.01 27.85 83.17 21.72 9.88 72.51 4.28 59.10 54.52 65.47 22.36 22.25 19.14 2.10 74.32 12.79 66.17 19.45 33.18 42.98 21.49 82.89 64.19 46.52 38.22 20.54 68.74 72.39 53.56 45.69 48.10 64.85 10.90 38.85 16.73 87.91 41.24 39.30 8.38 17.72 15.52 98.12 54.20 50.02 34.80 46.10 48.67 15.02 64.67 7.62 96.72 53.30 54.53 1.10 81.06 50.74 71.25 91.67 65.15 10.28 -90.91 28.86 36.15 60.37 50.90 86.34 68.31 94.53 94.56 77.65 27.29 1.53 31.64 34.20 34.63 23.17 48.86 83.13 51.50 77.64 29.12 43.53 11.80 3.45 26.34 85.29 96.00 53.30 77.69 82.90 66.23 29.85 51.70 62.33 20.22 93.38 72.17 0.18 2.07 65.07 43.15 59.67 23.22 16.77 0.31 90.68 68.50 87.42 22.08 13.97 15.37 3.63 71.39 79.14 29.85 46.60 60.13 89.74 35.21 42.83 28.36 30.89 41.30 0.24 67.51 84.31 68.21 29.99 9.63 84.07 49.02 60.88 70.61 32.59 26.32 26.47 94.91 21.38 75.43 29.73 14.83 24.65 17.04 17.15 5.81 16.00 62.21 21.88 74.43 56.18 58.12 43.73 42.38 16.26 18.96 57.68 75.40 96.88 14.90 60.33 -34.69 85.06 74.96 60.58 80.19 66.16 37.00 49.44 79.51 14.59 82.81 74.85 29.12 94.11 63.50 4.02 99.37 65.75 42.58 98.67 0.88 49.51 50.66 7.35 41.26 82.27 6.42 30.10 58.75 27.40 0.28 32.29 31.34 43.22 11.03 20.17 70.51 82.34 58.59 99.97 96.48 83.35 3.59 71.09 13.77 19.28 3.41 36.89 72.41 63.86 18.04 46.73 38.15 39.55 69.44 1.47 14.19 41.93 36.68 34.59 49.13 43.98 97.13 52.45 37.65 82.09 1.46 50.61 27.77 61.73 33.49 71.56 24.85 25.03 15.44 32.73 26.10 94.33 47.28 36.24 56.61 8.92 67.69 56.83 27.95 93.93 13.53 85.87 7.76 67.04 66.94 54.61 38.18 17.42 50.38 3.71 99.54 75.89 50.82 25.04 -71.66 90.08 83.56 32.75 3.68 77.14 7.14 70.68 74.65 12.91 58.02 77.55 7.48 3.22 79.73 63.38 38.86 53.83 91.43 63.66 58.38 87.56 64.24 13.98 16.00 15.86 30.72 36.59 62.49 98.79 33.31 92.22 6.99 63.32 46.67 19.61 44.55 58.97 27.99 89.70 15.43 70.02 45.10 93.35 19.01 77.38 81.59 80.70 26.65 71.88 82.07 28.43 43.52 78.75 99.36 25.74 26.45 10.23 58.58 39.93 32.29 93.36 42.48 87.55 49.13 45.83 67.89 84.93 36.61 59.74 48.39 90.14 80.79 13.61 12.04 26.06 99.01 48.12 32.03 12.29 31.40 92.55 19.47 89.42 82.87 27.57 51.76 57.67 45.41 38.32 62.89 47.13 57.53 99.41 85.65 2.43 55.90 40.92 64.82 30.50 -52.50 48.16 4.64 95.91 18.63 13.65 62.21 14.69 13.99 71.62 90.29 99.69 13.51 90.58 75.17 50.92 85.68 47.93 1.69 41.95 84.72 57.58 19.35 25.87 85.01 24.68 51.86 59.42 4.13 8.16 86.99 49.33 22.38 90.96 98.46 68.97 12.00 46.68 53.90 93.61 71.53 80.38 2.15 80.56 1.93 11.83 68.41 38.39 18.10 25.98 53.35 0.84 31.89 56.57 20.65 62.07 31.31 24.90 24.09 15.78 95.15 16.29 42.45 66.96 81.43 54.48 92.37 72.73 94.33 33.60 4.65 62.12 99.38 39.77 92.33 80.54 45.91 94.41 4.91 49.19 47.39 65.59 96.15 40.70 13.73 41.58 36.80 3.39 29.35 62.21 78.91 73.10 93.85 7.46 2.58 18.08 80.50 98.69 3.73 0.32 -6.20 42.64 65.29 39.54 69.83 9.90 53.88 55.34 45.25 84.82 88.81 72.51 14.54 32.97 41.70 49.18 88.14 72.09 47.70 82.73 30.46 45.21 72.50 50.00 96.58 18.85 73.20 12.96 81.77 72.83 38.69 60.22 13.93 58.78 69.89 49.04 84.57 90.11 34.93 71.84 73.68 33.37 67.06 54.31 55.89 67.54 76.49 45.01 17.91 23.01 59.64 54.59 53.62 31.32 63.45 62.23 65.39 80.88 75.21 64.98 38.55 66.67 74.61 67.11 60.16 82.53 45.15 76.30 83.04 51.86 27.73 87.31 36.62 71.98 58.55 37.55 39.01 69.52 52.45 26.61 47.69 10.63 65.53 77.30 84.71 18.56 42.43 10.38 45.46 90.99 49.86 5.08 50.94 88.72 53.16 73.68 74.94 34.13 35.90 34.94 -75.15 40.78 32.86 57.06 74.34 22.55 76.28 81.75 72.39 84.64 61.47 88.13 9.80 87.47 13.48 34.55 75.51 28.11 10.68 53.34 50.32 48.28 0.91 58.40 29.43 85.04 90.48 73.13 77.72 89.04 34.42 65.92 20.86 98.85 50.80 18.95 50.34 65.30 68.04 4.63 0.48 27.27 81.39 48.23 87.26 85.18 23.85 84.66 22.86 51.02 55.63 51.23 78.07 30.88 53.26 95.78 58.41 36.50 12.59 31.50 36.24 98.05 46.39 34.81 95.40 6.14 7.82 59.23 75.59 59.62 41.26 3.50 91.69 76.89 61.53 72.71 11.52 5.83 88.32 75.92 2.62 33.22 0.29 75.19 93.35 25.54 62.85 2.31 13.42 9.00 73.91 24.76 27.23 23.05 34.95 97.66 71.63 76.39 23.42 41.84 -44.11 60.53 73.67 11.93 48.51 56.65 47.62 38.63 41.13 96.82 50.09 30.68 58.86 12.46 63.42 57.65 77.28 20.24 83.97 22.50 62.81 67.96 50.48 37.32 1.26 99.58 0.53 46.82 68.72 45.79 22.50 38.79 93.91 39.98 18.33 48.31 97.88 63.60 52.03 34.15 96.31 93.89 29.25 27.17 59.71 59.96 26.58 32.72 77.34 39.29 52.17 88.88 81.78 41.80 29.03 91.61 27.64 68.71 2.20 48.30 99.29 41.39 39.71 17.32 53.46 47.45 44.17 39.23 56.35 50.79 39.15 53.23 52.01 9.61 5.29 62.68 89.29 60.97 19.81 79.96 19.27 98.71 32.96 4.43 80.84 5.00 98.63 24.81 93.33 94.39 0.49 15.89 53.40 49.56 94.57 0.21 76.88 5.39 20.44 56.01 -51.58 78.35 28.74 9.24 27.98 90.70 47.65 6.50 41.31 54.47 99.72 30.29 46.51 71.36 30.57 16.93 66.61 91.30 1.34 0.16 26.66 18.84 79.47 9.75 78.28 82.67 47.60 30.46 80.79 30.81 92.23 75.73 17.98 52.90 91.26 8.67 57.68 39.35 12.88 17.77 15.29 96.78 6.58 72.36 86.26 80.13 60.03 95.09 67.87 56.87 37.99 16.45 21.20 98.76 88.54 16.57 47.54 45.07 6.05 9.53 6.83 1.63 74.72 34.62 1.57 57.54 33.77 13.06 48.49 16.75 21.74 47.55 46.49 45.69 68.70 54.64 59.35 73.71 84.41 7.28 30.32 68.64 92.92 45.29 2.04 7.43 33.57 52.79 90.66 7.93 21.59 66.92 10.53 7.03 20.82 61.98 72.49 58.24 35.88 47.90 -28.40 1.47 79.61 93.81 67.94 22.69 77.97 58.91 82.99 22.23 97.03 22.64 29.17 72.46 11.60 57.87 8.96 13.83 29.79 60.14 86.94 6.66 3.81 21.35 53.87 53.40 45.03 87.49 61.86 71.31 3.16 75.64 53.82 65.69 11.57 56.62 62.17 84.54 62.34 81.72 15.98 38.97 89.70 23.68 51.49 46.19 6.21 96.53 15.08 28.63 22.04 78.63 71.44 89.20 54.19 21.37 51.05 28.54 36.76 16.28 72.46 10.90 96.20 68.01 16.34 60.05 81.20 89.24 43.99 12.58 43.70 27.78 84.36 34.00 53.54 45.47 50.72 5.67 16.88 83.49 92.52 21.95 23.22 67.77 27.05 53.73 51.48 55.21 97.02 86.64 97.89 15.86 46.70 69.39 62.62 42.99 10.30 89.93 75.32 75.09 -9.38 6.22 28.13 7.31 18.57 95.76 58.42 61.38 9.84 49.25 33.65 72.42 29.00 3.50 24.84 40.52 67.89 79.58 49.76 60.77 76.35 96.95 58.99 26.15 72.90 26.06 94.80 48.35 37.92 19.13 95.78 32.95 25.74 43.57 15.41 57.28 72.92 58.30 71.23 3.14 8.31 94.23 25.34 4.26 56.64 32.69 98.90 50.65 1.13 51.10 66.16 27.96 65.91 92.82 77.48 88.80 62.97 49.29 77.66 98.89 82.31 5.52 17.97 7.85 31.69 44.27 93.43 24.79 46.87 14.28 24.05 3.33 70.81 27.03 18.00 71.49 65.07 82.07 40.75 98.51 53.97 85.07 96.25 28.77 7.45 12.98 89.52 31.34 60.43 70.51 40.12 33.39 48.58 78.38 27.78 79.09 51.08 39.38 71.55 20.31 -16.01 92.87 79.66 16.47 7.02 28.72 15.41 60.61 80.93 37.88 63.47 31.43 97.65 0.64 94.08 72.57 22.98 45.32 70.03 28.41 28.18 9.00 46.27 33.52 95.39 44.23 12.98 25.66 98.66 93.78 98.56 93.20 11.36 47.15 78.40 27.11 12.23 47.46 66.53 84.95 56.90 6.44 14.80 61.74 55.78 44.45 69.21 9.45 90.37 50.31 88.21 79.47 65.07 25.37 52.50 77.97 0.80 47.73 76.02 19.52 87.65 62.56 10.54 80.30 62.08 37.28 79.51 30.19 92.36 7.73 89.56 71.38 20.31 56.35 91.33 30.14 47.61 84.05 4.41 9.77 12.97 38.04 93.30 87.38 29.37 64.88 81.54 5.86 41.08 40.41 45.80 89.32 75.59 65.46 64.04 3.52 55.89 47.44 18.92 99.35 -57.96 48.62 69.73 39.17 1.99 26.60 95.06 7.48 92.11 71.58 42.48 40.74 80.01 27.62 5.06 82.71 88.83 77.07 51.64 19.77 27.51 26.66 40.13 72.22 62.55 16.47 51.51 90.54 84.13 21.04 68.84 44.34 80.90 13.35 69.35 29.61 35.87 38.50 5.24 26.53 7.37 78.61 56.28 29.94 61.98 98.02 17.17 82.11 61.65 22.56 75.49 80.94 62.99 39.26 59.35 59.70 83.31 45.39 79.83 72.11 54.44 59.75 78.60 86.98 53.92 3.58 38.82 97.95 98.94 93.55 4.25 98.99 69.14 53.94 5.55 95.92 57.15 85.93 40.31 67.26 21.91 65.01 12.64 95.58 77.99 2.28 66.60 67.57 18.22 62.03 70.60 32.66 84.52 32.20 11.31 5.06 81.08 37.02 9.28 74.59 -52.57 16.61 35.54 30.73 95.60 5.22 36.96 35.00 33.63 48.71 47.44 78.30 95.06 2.91 37.48 93.16 52.15 69.52 76.09 53.58 85.26 15.16 90.42 5.67 77.67 95.35 55.74 96.37 19.81 97.50 10.34 5.56 84.56 95.69 50.29 49.12 67.55 0.71 66.95 15.01 43.22 26.20 79.44 52.97 78.06 63.16 23.66 88.26 98.50 3.91 94.13 58.67 48.22 73.32 16.63 44.80 29.98 6.84 40.21 18.17 25.05 35.05 94.64 25.88 74.08 8.82 20.56 42.32 42.34 77.31 74.47 29.95 97.53 51.48 53.67 24.53 2.87 83.68 19.97 77.03 19.40 54.14 50.56 73.26 22.64 48.86 84.05 36.37 19.22 40.88 77.48 45.78 21.53 37.66 31.96 64.35 37.48 2.40 1.52 72.35 -67.97 11.42 25.71 92.95 21.61 22.75 27.14 57.11 19.93 48.07 77.84 11.34 42.26 53.93 11.18 85.02 6.60 50.71 72.34 21.05 59.39 29.28 62.36 99.84 87.76 34.49 60.88 9.12 22.67 4.65 67.18 45.42 19.61 12.81 72.99 83.07 93.50 55.25 24.65 78.24 65.58 23.28 73.60 0.84 42.69 36.96 76.26 19.63 33.98 55.71 81.98 84.95 89.73 68.36 63.10 27.13 75.17 40.55 85.68 28.74 37.43 64.73 51.93 46.14 31.09 8.81 87.63 11.72 17.23 47.32 59.86 30.55 92.29 42.19 30.17 48.12 97.90 0.60 46.37 83.54 95.21 1.97 0.02 6.94 30.77 36.73 95.07 43.34 39.32 62.01 42.41 46.10 99.75 70.83 26.26 1.61 59.82 48.52 70.10 66.59 -91.71 48.96 48.09 36.91 93.85 45.00 82.89 58.47 43.75 14.00 65.32 9.63 88.32 11.08 57.60 90.73 57.17 40.09 93.47 9.89 39.08 12.15 42.01 79.09 61.38 78.99 86.64 48.32 54.15 67.96 93.61 26.51 26.85 57.65 54.42 38.23 8.61 63.18 53.30 82.17 72.45 8.56 97.16 50.63 54.99 68.01 88.23 30.23 58.30 16.19 18.08 2.77 12.62 67.10 0.03 52.32 54.98 98.53 35.49 29.34 23.07 47.71 1.51 60.64 31.87 68.60 72.67 10.32 52.50 79.66 2.12 64.12 34.96 37.73 60.90 87.55 67.81 83.34 72.16 62.75 32.44 74.11 13.73 36.29 12.47 2.02 74.63 0.01 8.45 86.80 48.15 61.43 82.98 95.16 10.19 41.67 36.95 15.68 0.41 60.61 -49.11 27.80 59.17 92.91 91.10 53.97 70.92 81.00 34.24 84.65 74.92 44.77 21.60 47.51 92.59 1.67 38.54 66.74 70.13 6.79 33.08 38.23 23.73 15.65 29.98 41.92 62.75 47.49 6.73 51.36 45.19 28.12 52.06 47.52 47.68 22.41 26.40 99.62 88.14 98.55 82.13 14.64 36.72 88.88 57.82 93.30 0.70 55.66 36.02 75.54 55.58 48.36 29.09 73.99 99.57 82.25 24.12 38.27 64.57 21.01 17.57 92.87 79.72 34.46 95.83 10.50 96.47 78.52 63.39 50.88 16.75 29.35 31.54 42.90 11.60 69.02 9.40 26.12 88.56 71.39 63.27 7.15 29.47 38.51 89.71 93.37 35.57 77.87 76.37 44.29 26.13 92.84 1.91 80.25 0.41 5.93 83.13 18.88 29.21 67.86 -95.44 85.95 95.52 73.38 95.67 37.61 78.06 34.97 27.92 40.41 17.51 47.47 0.69 46.22 88.19 87.87 3.03 69.09 12.39 24.34 52.88 96.30 52.48 8.31 67.04 6.57 61.10 44.53 12.72 74.87 67.32 20.75 99.41 65.60 94.64 68.71 82.94 35.98 19.69 48.68 73.84 92.86 67.98 7.69 73.43 70.66 7.58 80.62 52.24 75.95 89.75 3.90 64.50 51.86 18.94 28.46 84.30 3.14 37.94 68.43 31.41 72.14 53.39 53.59 6.62 67.45 98.49 84.51 26.02 41.08 1.46 27.80 54.15 16.42 19.37 25.15 56.31 53.33 4.55 75.79 23.29 79.12 97.00 60.10 84.49 67.14 86.18 11.58 72.42 12.03 72.94 79.83 80.15 30.69 61.57 44.90 92.57 53.72 78.47 92.29 -46.87 67.69 88.93 20.25 47.84 30.68 65.59 10.19 44.08 59.24 29.66 38.92 4.51 27.37 10.81 81.25 54.26 37.49 69.24 35.78 50.11 42.09 9.75 48.82 66.06 51.73 58.40 68.40 43.24 25.65 74.69 63.51 9.00 56.20 41.67 41.68 49.98 37.36 41.91 15.62 15.83 95.00 62.12 51.19 20.80 37.08 65.96 83.99 50.34 7.93 28.88 34.19 78.63 47.13 50.73 19.03 91.79 45.14 68.47 92.96 76.68 85.83 40.41 23.22 49.97 7.77 47.68 83.41 62.09 22.30 13.01 26.08 84.11 76.04 99.34 39.43 59.93 94.65 40.11 27.22 37.44 30.96 11.01 21.78 42.38 25.35 9.18 6.46 98.07 62.04 71.09 58.01 99.00 97.67 45.84 38.32 29.13 91.19 43.21 6.33 -78.89 16.43 50.91 60.74 96.16 12.00 97.56 88.85 53.60 31.29 21.29 3.77 32.85 28.78 49.97 87.96 63.10 90.54 96.18 57.64 66.87 83.27 70.86 35.42 30.49 22.76 36.47 82.28 75.58 50.36 31.08 41.06 72.37 95.43 61.34 80.44 12.64 5.65 88.53 85.23 24.98 55.41 55.86 62.60 63.71 52.82 99.06 29.83 90.03 3.28 12.28 55.21 92.18 31.83 30.47 18.01 65.25 52.59 62.00 34.72 49.89 40.31 87.43 19.20 97.16 32.01 33.47 36.01 57.56 69.40 54.08 18.99 85.49 69.13 19.43 48.66 17.94 52.71 13.45 64.20 53.27 52.45 23.31 85.75 34.49 6.46 88.51 10.76 17.23 30.36 47.03 29.39 69.04 0.99 12.76 44.35 83.04 62.30 89.92 14.70 -1.16 22.64 34.46 58.33 63.96 16.96 97.29 16.42 61.40 22.69 70.08 80.75 24.18 86.21 19.65 91.89 40.20 41.63 65.23 26.93 26.96 60.14 19.21 48.79 71.67 7.96 47.44 83.55 41.73 63.70 35.76 75.08 52.22 9.05 43.10 25.20 44.15 44.72 86.41 48.27 80.18 62.48 40.47 9.67 72.73 37.57 41.42 21.53 72.63 5.21 52.17 21.46 30.83 54.80 75.23 18.43 63.03 93.78 69.36 76.27 44.37 43.70 68.96 83.09 74.99 34.89 56.44 58.41 87.42 91.95 63.23 89.92 27.97 31.35 88.99 49.22 14.71 35.93 73.81 21.37 12.00 74.04 76.02 47.20 32.00 0.10 21.04 99.20 68.26 36.45 94.14 43.59 53.14 61.77 68.40 57.17 29.94 13.93 26.69 13.15 -59.52 78.44 94.32 83.90 70.58 91.77 96.75 34.41 13.77 78.14 1.51 3.35 99.34 11.83 7.60 50.88 13.79 23.21 91.16 32.45 47.59 11.57 68.81 94.22 12.94 3.77 79.25 2.29 42.92 87.93 84.09 86.88 85.17 19.70 43.78 34.26 24.08 78.75 66.94 60.55 98.62 40.40 71.40 36.14 45.87 3.44 30.30 76.67 87.15 49.21 33.26 18.21 63.25 51.21 67.72 28.49 82.54 10.24 42.84 78.11 53.11 33.97 1.18 83.08 79.42 23.78 37.14 64.47 64.84 92.11 41.55 21.51 41.14 16.87 6.27 65.31 52.73 89.23 29.24 9.10 75.95 28.47 76.43 17.19 73.70 68.35 12.83 26.17 44.59 40.72 71.63 84.00 87.51 72.98 72.31 19.38 46.43 41.24 80.55 26.79 -19.42 54.03 47.56 53.34 16.89 30.94 22.58 7.04 74.50 34.19 55.62 80.08 63.00 69.35 32.76 36.18 50.28 31.35 41.48 5.24 38.41 71.06 40.76 36.51 38.84 52.12 15.23 31.05 49.39 25.24 35.16 11.68 18.31 1.62 98.63 28.72 24.13 78.71 67.17 94.44 94.66 64.84 12.19 43.55 81.11 76.14 85.94 12.86 60.26 3.87 6.60 80.92 4.42 72.32 4.78 96.06 78.24 4.29 16.70 98.91 89.00 98.01 98.16 73.76 3.41 34.34 14.26 42.65 47.09 6.63 83.98 25.54 90.54 90.46 72.75 93.66 90.47 75.66 93.52 5.95 72.40 59.57 96.02 86.32 97.15 92.84 16.76 74.85 71.75 50.48 55.48 73.78 17.46 49.12 63.73 76.51 86.46 66.81 63.22 33.92 -31.84 69.63 7.44 65.78 31.41 57.42 88.44 62.78 38.82 82.06 76.58 66.84 36.12 2.08 26.84 97.21 52.05 17.79 45.27 73.26 72.01 1.66 10.43 39.85 24.06 98.13 16.94 78.72 69.69 75.09 81.42 70.94 76.93 2.88 88.72 76.75 82.44 80.80 60.81 61.60 14.47 61.63 4.40 37.44 66.30 19.94 74.42 1.06 8.06 82.48 69.88 86.47 23.08 81.42 46.45 50.03 53.99 17.11 52.64 26.65 68.43 26.14 38.24 37.77 85.75 54.69 98.98 17.92 61.28 62.45 76.95 47.69 36.95 56.48 8.81 48.61 10.58 57.01 33.16 47.20 59.21 82.17 93.96 62.30 76.26 5.00 44.37 91.17 38.74 31.28 97.84 4.04 48.19 92.26 4.52 21.88 97.66 28.12 15.74 69.59 -92.55 51.92 3.74 10.45 44.42 18.94 32.59 64.75 94.99 83.89 82.16 70.56 5.02 74.36 24.17 78.74 71.27 41.45 17.68 67.10 48.18 19.10 3.74 38.09 98.11 12.73 61.26 51.37 38.93 0.25 83.58 79.70 69.11 64.74 79.36 12.86 18.54 56.73 43.32 85.44 71.75 93.34 36.81 96.90 89.96 8.97 99.60 35.23 7.57 40.29 99.66 74.21 63.43 15.87 14.55 96.29 88.52 89.08 53.84 47.73 9.94 59.83 47.69 26.64 1.13 31.09 40.45 61.17 56.92 77.58 82.33 18.17 41.50 63.85 15.40 74.08 98.93 95.08 23.87 88.46 27.22 22.42 13.12 58.78 68.36 93.42 87.62 99.90 55.48 99.90 68.87 30.01 11.67 68.84 79.90 44.67 70.06 17.76 33.38 2.85 -98.37 46.32 80.14 14.00 61.68 94.61 56.58 99.67 90.44 38.54 57.43 64.35 89.84 43.45 27.35 38.52 23.58 3.46 60.64 39.72 73.26 55.23 79.03 54.28 90.82 33.34 44.22 56.52 24.92 5.88 92.51 92.95 25.30 94.23 46.87 17.96 66.42 8.78 7.84 99.66 19.34 12.19 57.00 50.60 73.49 43.66 36.73 79.93 21.22 12.48 54.05 44.05 4.38 19.12 48.53 74.66 14.51 90.19 98.80 49.42 34.52 87.38 74.87 3.14 51.14 76.50 70.85 40.42 5.18 58.16 70.23 90.41 81.65 95.30 76.36 70.45 26.24 57.84 9.59 20.73 6.56 99.16 83.87 86.10 87.25 10.30 68.54 1.49 54.83 94.02 57.44 40.61 53.79 69.72 73.52 48.60 80.54 25.90 12.21 28.10 -26.89 82.70 67.57 29.43 32.46 59.98 94.70 92.79 97.14 14.55 33.31 86.16 75.24 80.75 5.57 17.29 99.68 72.56 60.32 38.78 55.26 44.62 62.24 31.73 10.10 6.54 52.40 10.83 88.91 82.06 69.70 31.12 78.10 67.59 84.23 41.17 89.75 60.38 51.94 17.79 18.67 0.77 25.21 59.25 69.35 62.52 24.10 79.40 35.73 77.49 95.47 73.87 10.09 63.28 29.48 15.35 75.06 36.12 18.08 61.63 32.33 45.29 60.22 89.67 47.72 8.99 42.32 99.68 53.14 67.35 70.82 80.05 11.23 50.55 9.27 46.34 77.41 5.38 58.25 87.28 26.36 60.57 39.22 82.69 63.51 65.93 99.30 29.17 56.01 68.40 19.44 85.35 40.28 51.25 31.39 86.67 27.98 10.25 89.17 70.55 -65.41 95.41 86.56 2.45 84.28 13.01 67.82 60.52 57.22 13.94 47.79 24.13 43.48 21.40 28.73 44.04 53.41 74.47 45.22 13.67 32.24 50.48 33.08 6.29 87.56 3.26 50.41 96.42 5.11 24.75 43.22 50.25 73.40 57.31 28.81 23.54 90.10 42.31 92.06 79.43 80.34 46.81 3.22 67.26 24.01 30.68 34.02 11.32 57.95 71.77 94.73 84.06 32.38 86.67 43.28 22.62 94.74 74.72 98.51 5.38 33.89 82.00 99.11 43.77 28.32 62.75 72.86 84.39 49.34 58.35 64.96 43.89 66.14 21.14 77.88 26.18 16.10 53.06 96.54 62.51 77.82 46.88 93.88 44.88 68.19 20.84 29.32 13.42 92.79 31.28 60.92 41.16 80.30 68.15 26.22 17.04 16.66 14.41 40.39 13.84 -40.43 68.04 81.01 67.33 12.61 32.60 65.40 52.86 18.38 27.12 66.80 10.46 3.02 33.49 70.06 86.20 81.49 70.31 59.57 60.21 17.96 39.87 5.69 14.57 53.65 28.05 21.88 91.20 90.42 81.17 22.01 56.45 45.31 12.70 10.84 52.25 1.73 37.50 33.62 49.77 51.09 18.86 67.55 58.12 32.53 73.53 81.36 87.08 52.52 93.14 66.07 37.89 94.61 89.67 80.60 99.70 83.69 47.52 44.58 62.72 94.12 83.49 20.81 5.97 72.52 52.83 94.94 15.87 69.80 27.95 75.74 94.21 76.22 92.92 34.07 41.78 50.11 7.05 2.04 60.47 77.79 72.23 64.19 19.85 59.59 5.66 16.25 30.74 24.92 39.56 19.43 78.05 95.07 67.91 36.30 38.58 40.99 28.68 72.24 71.41 -56.80 96.64 86.75 55.73 78.20 68.76 22.10 20.28 10.81 22.41 71.27 18.19 31.29 3.89 85.87 87.66 61.49 13.17 82.53 99.67 99.90 62.10 68.56 48.74 62.01 74.80 33.90 22.97 60.36 80.49 9.02 21.30 43.65 52.06 15.07 71.72 40.20 73.43 56.45 60.46 33.19 66.97 24.89 72.36 42.63 29.13 35.34 23.69 32.63 25.57 65.84 45.31 59.24 68.41 31.61 34.90 52.66 72.94 50.00 34.39 6.57 12.59 35.41 57.02 94.21 35.66 75.36 34.81 34.29 84.67 11.34 17.72 1.06 8.45 89.87 24.01 53.58 62.12 13.18 83.16 76.03 90.77 40.93 82.08 67.19 47.95 59.13 5.71 26.33 65.12 73.59 84.33 71.84 36.98 69.34 61.75 25.22 20.17 58.65 75.68 -55.58 27.38 45.40 3.71 32.84 12.41 66.64 16.17 54.64 2.50 58.20 48.80 58.87 26.82 53.15 25.12 51.62 23.92 49.10 29.07 87.48 59.59 67.05 1.96 3.60 68.40 4.28 11.59 27.85 4.02 8.57 75.67 49.68 96.46 15.00 11.24 7.86 86.70 82.50 43.39 72.83 76.20 54.04 72.01 13.43 3.41 46.21 29.12 57.03 28.86 32.57 3.97 16.59 43.78 91.84 13.33 93.01 74.50 71.37 49.36 74.06 39.51 56.19 28.47 89.23 97.93 85.44 42.94 90.20 13.67 38.20 35.29 69.13 93.87 61.84 13.00 28.04 53.36 99.34 62.19 33.73 45.09 75.32 16.09 31.59 69.93 71.63 84.62 6.34 23.56 73.11 70.55 81.44 54.33 17.13 47.93 31.29 76.20 13.47 94.27 -95.78 37.48 33.08 87.81 40.55 24.11 43.58 76.54 3.17 23.37 10.45 2.83 90.63 84.11 27.21 74.29 92.21 35.28 38.71 71.12 61.34 6.08 59.80 91.48 18.59 49.20 24.53 30.70 58.33 87.48 6.24 52.60 50.57 52.03 11.67 89.76 65.95 2.63 81.11 51.08 92.52 24.20 62.08 85.97 4.69 17.62 71.23 66.95 63.04 68.40 71.04 2.09 87.86 35.65 94.55 3.91 17.09 4.76 70.68 77.96 99.17 92.93 77.61 66.53 77.20 66.16 18.66 81.59 59.62 71.54 87.21 8.57 49.00 83.86 21.83 47.30 57.97 72.40 53.75 87.53 36.74 91.90 51.35 10.09 14.91 55.09 5.67 97.33 29.85 16.44 17.47 34.10 50.67 3.33 22.71 36.71 81.91 47.37 95.73 11.28 -1.00 77.51 72.71 53.28 9.76 32.16 78.30 40.50 35.75 37.51 86.69 18.03 63.35 22.30 84.42 24.16 86.84 94.10 89.45 72.51 86.98 76.58 0.99 16.11 84.94 51.50 73.48 26.07 19.18 84.34 96.95 97.50 48.63 92.61 85.81 27.14 50.49 45.16 20.90 7.52 17.00 95.58 60.90 52.70 43.66 4.48 81.16 36.31 43.23 31.74 43.96 73.20 12.49 21.02 14.64 98.92 6.40 19.91 30.12 65.06 96.00 89.12 98.12 67.67 65.01 82.22 49.94 4.76 0.04 30.53 15.40 11.12 83.71 73.98 18.60 62.42 95.04 64.56 23.53 49.69 68.83 84.06 69.41 5.66 20.88 26.11 58.58 99.63 26.77 72.47 75.94 84.88 30.23 96.47 18.61 89.65 93.54 52.80 66.70 86.84 -39.74 42.95 82.33 23.62 50.70 67.31 26.87 18.00 72.56 65.04 77.14 36.92 55.19 14.26 37.31 94.94 42.35 78.47 99.77 48.89 31.14 86.33 54.16 23.56 50.89 87.17 45.11 81.29 88.17 34.85 9.56 26.11 52.82 97.78 60.09 85.26 8.72 86.46 21.64 19.42 37.67 54.71 92.18 31.68 1.80 0.73 75.04 80.59 95.19 33.37 57.93 63.53 28.87 1.92 33.36 22.54 60.29 53.76 82.70 42.75 71.57 86.90 90.55 17.16 93.11 88.37 59.11 95.45 85.05 76.31 84.05 15.69 70.15 69.59 58.74 61.08 84.09 2.99 83.70 42.31 42.72 90.73 90.63 14.76 52.80 16.87 48.53 33.99 76.92 55.00 42.20 94.70 19.26 74.85 93.93 51.59 72.27 31.83 56.00 56.21 -65.60 56.83 46.47 36.42 4.75 62.77 9.91 91.58 22.51 60.90 54.94 78.54 4.36 52.28 75.44 40.12 75.92 9.47 62.88 62.56 79.59 39.86 11.84 61.41 50.93 16.95 51.48 45.80 13.73 32.19 97.76 80.15 69.04 8.78 55.35 69.67 76.24 57.73 31.30 6.41 98.89 3.61 3.20 78.18 65.32 0.62 16.27 47.09 98.72 52.92 37.97 71.89 20.04 93.26 26.76 10.29 54.55 33.48 71.58 21.30 29.94 3.34 44.36 72.31 31.36 31.22 46.69 89.54 15.06 55.57 61.21 23.59 58.03 74.73 49.77 73.67 12.25 49.95 37.25 77.36 83.47 37.09 93.97 92.79 93.99 76.54 11.22 89.20 31.75 7.22 30.92 99.37 97.72 17.62 99.65 96.27 8.55 85.24 51.40 92.03 -13.18 54.44 57.06 67.72 92.19 68.23 43.42 78.37 84.89 97.77 71.20 90.06 91.59 92.51 87.83 33.28 63.64 24.65 79.33 17.95 19.13 28.17 30.88 94.39 81.34 58.77 20.70 27.20 7.12 10.75 32.21 18.49 97.70 7.86 66.57 31.29 0.98 75.97 77.15 51.56 31.01 40.74 52.47 78.21 8.73 1.33 79.68 9.19 30.27 96.09 77.97 94.60 22.66 42.00 10.53 3.40 20.08 57.45 72.64 32.78 53.51 18.77 62.69 13.91 12.78 4.41 41.98 68.07 76.89 65.67 0.45 99.97 32.89 45.48 1.42 19.63 78.23 53.75 56.42 18.67 62.64 17.27 84.85 99.00 86.69 58.91 81.37 59.86 96.15 80.56 45.37 39.57 66.43 83.98 2.41 90.00 0.18 34.16 16.99 77.92 -79.39 78.17 67.95 10.53 68.02 20.84 62.96 29.02 59.14 55.15 0.40 70.51 95.39 18.97 56.61 34.77 31.58 6.66 15.62 38.11 29.41 86.68 2.12 80.57 58.14 85.31 41.31 11.32 92.16 3.99 76.49 16.07 73.84 94.16 89.89 68.55 94.22 12.55 95.14 16.28 88.21 39.09 28.23 39.19 22.30 19.88 87.70 95.87 76.12 54.80 12.19 88.30 95.16 27.35 97.80 16.70 21.78 64.62 91.47 89.24 40.27 92.46 90.59 79.90 49.84 57.60 88.33 7.54 95.33 71.80 60.84 54.15 46.22 96.87 83.33 54.31 29.68 96.41 34.86 57.63 74.70 67.19 12.26 88.19 80.90 18.55 4.09 8.99 54.35 11.65 75.76 6.92 50.54 6.62 36.64 51.22 35.33 71.11 27.55 54.79 -5.27 62.24 20.29 59.45 36.89 82.05 4.16 36.21 87.83 87.04 6.02 34.87 94.89 10.21 30.26 0.56 26.74 54.34 96.15 2.78 64.12 22.91 83.06 45.99 99.41 78.02 16.03 14.96 81.92 20.96 21.96 75.90 71.61 43.08 46.76 12.15 93.99 90.55 95.24 93.84 70.46 36.51 83.47 36.41 0.49 16.84 42.10 43.70 29.75 87.57 37.40 46.68 36.62 20.20 88.12 71.97 18.13 48.70 10.17 15.07 33.72 35.86 70.90 98.15 38.05 73.81 46.81 58.77 69.55 94.19 44.56 80.47 95.45 61.74 71.40 90.97 14.87 94.70 76.37 51.04 46.86 45.44 58.74 11.14 28.04 55.60 58.44 35.43 2.97 42.67 50.48 30.10 19.74 88.44 56.33 92.17 38.92 2.63 54.24 93.41 -92.68 70.44 80.52 27.44 34.58 89.95 22.52 83.32 36.12 28.80 83.39 34.77 73.96 92.20 39.71 63.40 43.76 14.74 36.13 31.58 96.15 94.95 12.86 2.68 81.92 65.03 75.95 78.25 41.84 20.95 23.75 12.17 62.44 0.18 67.46 85.71 66.00 31.71 1.89 44.13 1.91 94.31 39.37 28.54 82.98 85.26 51.07 3.18 23.60 37.67 69.51 21.31 78.63 86.70 67.98 26.93 19.37 13.12 74.12 77.27 40.72 66.93 98.08 14.96 10.78 52.76 0.73 49.18 99.00 76.44 62.54 37.03 60.24 11.23 18.71 33.44 93.50 42.05 85.61 83.14 9.31 6.98 96.22 80.02 21.23 23.13 14.26 97.01 41.24 94.85 1.07 55.45 15.98 45.37 46.92 94.70 67.62 14.41 22.03 86.17 -73.87 48.46 43.59 73.75 78.79 36.28 21.92 81.83 4.88 10.86 22.62 94.25 0.71 38.55 24.64 49.27 25.38 16.19 58.27 21.43 26.26 96.00 47.76 86.20 94.76 52.69 56.65 88.43 21.87 16.74 93.61 36.91 42.20 31.48 2.89 87.82 11.24 21.86 93.06 46.12 84.07 31.12 50.44 37.94 22.94 84.56 35.82 26.76 1.76 74.33 66.91 59.20 85.65 6.68 69.64 82.41 83.43 67.33 94.19 57.77 51.01 13.30 24.04 2.02 20.28 55.94 23.79 64.43 55.84 99.84 93.01 63.28 14.26 15.07 38.85 15.92 83.32 51.48 80.26 49.09 18.79 0.78 40.39 28.75 72.90 16.83 0.45 31.61 60.04 10.50 41.79 58.81 55.41 53.58 21.51 53.10 22.07 37.53 66.48 36.59 -4.17 7.19 27.88 11.90 49.23 26.35 27.68 13.81 39.08 98.34 30.13 88.06 88.97 65.50 40.77 27.75 49.62 39.11 87.35 64.83 28.46 41.56 20.08 91.77 35.07 71.24 36.01 93.14 25.65 53.90 32.88 48.95 40.43 5.77 53.05 25.70 1.47 62.78 36.12 64.90 89.84 63.76 9.11 72.95 69.10 64.11 88.85 8.55 96.90 40.05 60.28 75.10 48.54 8.81 7.67 26.26 68.15 20.73 63.69 38.11 48.70 91.40 40.14 86.06 49.99 71.39 17.87 61.33 46.24 9.37 32.33 92.60 52.43 39.27 28.65 7.52 61.75 86.82 80.80 22.75 54.81 35.89 62.83 30.29 35.08 16.21 60.77 44.86 52.35 91.22 40.89 60.11 65.52 7.90 19.29 5.39 94.45 87.76 64.02 24.10 -91.44 92.44 70.59 31.01 44.85 14.46 56.61 33.25 60.55 7.87 50.03 32.70 45.18 71.64 89.44 73.01 70.67 42.52 11.83 90.51 45.47 65.85 38.85 57.35 36.22 10.89 8.29 7.85 41.38 30.44 37.79 17.36 22.69 84.58 89.31 25.28 68.85 14.90 87.55 52.00 63.37 13.69 76.54 75.85 38.43 96.90 8.47 12.35 90.01 53.22 65.52 48.90 44.21 62.35 30.78 35.86 33.85 21.25 43.54 10.06 55.43 80.27 42.74 48.60 49.95 33.95 31.52 77.48 16.58 6.68 24.92 91.93 37.97 85.58 91.77 95.32 41.74 53.83 74.32 22.50 58.25 91.80 97.13 13.46 2.23 3.70 7.95 40.85 5.84 45.96 69.91 14.17 94.14 36.58 99.87 6.69 85.32 56.70 42.81 34.41 -92.30 75.49 91.89 94.19 63.03 41.34 27.46 80.52 9.78 8.22 61.36 19.01 90.15 51.41 78.86 60.03 44.67 86.96 33.08 30.11 61.49 68.08 9.86 11.14 38.85 67.00 69.23 62.29 75.73 64.60 67.37 65.84 17.50 41.86 19.73 65.13 38.49 0.33 7.20 51.13 7.28 52.94 28.14 8.79 46.54 56.97 73.98 29.44 50.86 98.46 65.38 81.66 76.61 72.07 66.94 98.31 24.18 20.88 55.73 9.98 9.61 22.08 17.93 25.67 74.73 49.25 95.20 82.43 77.64 94.70 21.80 92.91 68.31 15.06 93.83 83.84 23.27 20.39 67.21 47.98 99.18 56.02 13.19 75.09 36.67 56.21 29.59 89.71 81.27 60.59 12.13 21.42 84.94 61.97 18.38 88.35 70.48 61.23 0.27 62.93 -64.77 40.34 93.60 14.63 31.26 98.14 8.90 67.92 0.96 94.46 12.08 51.49 33.26 87.29 31.16 61.42 46.22 9.16 93.71 73.79 22.69 4.48 27.39 35.20 96.74 27.73 94.74 59.06 28.44 54.45 99.65 11.35 45.03 38.62 73.28 55.84 56.40 51.55 42.48 72.16 22.26 25.74 17.40 40.52 42.14 87.63 6.90 10.79 62.80 93.69 54.09 97.21 56.84 61.72 90.41 39.72 44.53 84.06 26.18 87.93 23.37 8.18 87.29 52.29 36.40 15.35 18.15 96.22 43.38 13.40 7.71 30.91 36.24 21.34 14.62 54.23 11.69 37.76 23.92 75.86 15.08 21.56 57.80 24.41 41.48 31.35 75.31 68.90 28.12 11.56 82.50 69.86 15.22 59.51 41.08 13.63 1.84 70.17 56.97 55.75 -50.57 60.41 2.07 75.08 37.71 45.84 85.08 91.77 72.92 24.71 55.29 62.78 81.74 9.12 37.55 61.05 22.04 92.98 3.38 88.25 41.47 75.58 81.44 55.65 57.21 54.83 86.76 80.13 94.24 80.78 85.46 12.82 87.91 32.58 31.11 77.94 0.78 15.79 44.19 12.18 0.21 12.08 78.91 87.55 86.69 43.38 1.00 5.34 1.12 3.12 74.57 72.65 68.20 82.24 83.81 91.12 84.79 81.22 44.56 32.32 18.99 48.95 36.79 33.20 87.62 18.37 71.39 14.26 34.55 77.53 56.49 56.12 10.33 44.01 13.72 70.83 84.79 70.95 49.21 43.64 1.13 26.76 71.87 97.84 77.66 39.07 80.16 16.97 60.12 44.87 29.53 32.96 20.97 52.25 32.58 44.93 94.94 45.48 65.82 40.88 -26.18 12.02 40.42 69.16 67.06 17.18 33.94 39.81 6.75 50.48 81.04 88.12 88.97 66.11 47.49 92.49 98.75 65.70 34.46 59.48 3.21 9.14 68.19 8.74 28.82 86.41 38.93 57.56 59.80 61.00 20.98 50.32 69.53 25.13 52.28 39.39 60.19 34.15 44.54 54.48 41.92 34.43 69.91 3.93 22.51 59.29 58.58 18.89 36.75 41.46 86.21 92.25 77.71 2.23 76.68 40.05 59.21 36.52 84.22 98.09 53.13 31.11 20.26 71.17 35.76 26.31 32.16 74.54 65.67 82.31 51.80 15.47 26.43 59.39 42.55 17.76 17.51 41.31 82.72 68.15 6.44 27.07 48.04 60.30 60.27 13.51 45.35 73.55 45.50 78.13 66.26 59.41 20.73 74.52 83.16 97.45 91.61 42.47 1.41 25.53 -75.27 54.67 59.67 10.38 46.64 73.74 76.60 42.70 94.29 13.77 92.81 40.48 84.22 2.28 89.38 59.84 80.40 71.05 83.24 36.28 76.84 54.05 98.23 48.10 76.43 14.68 10.63 97.94 26.94 53.21 70.72 86.06 57.88 96.96 46.34 71.85 77.06 86.41 94.08 44.49 1.57 46.79 18.15 78.01 4.53 46.46 27.23 19.61 49.20 49.71 90.69 61.63 49.12 32.14 50.11 38.71 53.39 27.00 43.36 67.56 7.76 65.64 61.15 11.90 58.76 46.94 66.10 41.42 19.64 14.08 4.77 98.86 16.81 22.35 87.33 48.69 47.43 64.29 52.86 3.49 46.13 57.70 87.44 17.66 50.39 68.34 29.68 70.24 20.65 6.21 48.67 54.21 89.78 10.11 77.00 95.58 48.88 28.73 36.87 11.90 -15.60 4.21 37.50 70.73 68.19 49.13 38.48 40.20 67.90 1.16 19.04 89.47 2.38 68.84 29.47 88.45 94.04 51.27 2.95 27.57 21.85 44.97 62.53 57.85 33.64 67.94 91.71 3.82 49.21 37.26 92.85 22.73 23.09 8.32 56.37 54.02 76.81 21.88 31.08 2.38 18.79 50.12 68.50 24.06 3.97 9.27 94.92 36.67 35.78 16.24 94.56 11.27 17.13 28.28 45.29 8.29 4.02 19.53 67.26 61.20 3.45 30.50 56.78 17.98 42.79 11.27 1.28 18.25 15.35 84.32 10.52 79.55 70.04 43.05 68.19 16.90 40.56 84.43 11.78 76.48 9.86 44.77 58.37 36.92 8.46 34.46 86.19 95.48 0.28 55.86 0.94 50.74 4.32 11.18 35.23 13.99 95.00 92.97 63.98 83.91 -60.27 44.16 20.10 34.29 55.98 30.74 37.23 67.25 74.99 54.09 56.62 9.23 47.55 50.65 96.10 71.21 39.19 69.53 62.48 89.39 4.36 64.01 20.23 42.65 51.88 25.54 96.30 37.46 55.03 81.33 0.41 28.71 46.71 83.67 44.28 5.77 28.59 12.11 53.65 88.69 92.93 25.44 89.10 17.75 70.51 69.56 11.35 73.83 97.13 41.85 57.47 99.55 34.47 52.71 58.79 65.23 66.71 20.36 32.81 47.44 48.81 13.19 47.20 55.06 35.94 4.94 48.68 37.31 99.11 64.79 94.23 95.86 80.44 67.76 82.17 71.40 83.91 65.09 60.43 44.33 7.22 99.88 26.30 51.20 24.69 64.03 11.27 15.77 69.93 7.82 25.06 77.36 3.17 43.23 65.10 63.07 0.88 3.39 43.59 95.19 -32.99 56.26 70.09 64.76 61.96 71.33 40.27 86.33 71.02 49.34 19.08 70.87 25.44 69.55 6.12 44.95 57.96 85.65 52.70 54.24 78.46 25.63 29.91 74.37 88.97 42.52 13.36 60.83 81.14 68.15 74.89 12.15 73.03 27.17 83.16 81.70 40.72 24.78 50.01 67.91 94.18 42.29 58.97 22.49 68.83 21.88 28.27 75.41 54.49 73.90 56.17 85.52 34.63 91.88 16.22 53.38 86.75 33.29 36.58 90.54 28.40 10.51 35.38 59.23 81.92 11.67 61.22 23.18 71.32 75.20 38.49 83.11 46.95 92.10 23.99 5.71 72.30 49.11 9.27 3.97 4.46 29.96 83.66 56.32 12.91 1.38 2.49 34.79 48.83 18.16 59.41 84.33 48.55 0.98 52.95 55.90 9.66 13.48 10.26 21.95 -71.57 81.67 54.12 44.30 87.33 9.54 37.87 49.72 85.85 70.27 60.63 30.36 7.29 40.62 37.03 68.86 45.65 38.43 51.07 74.67 81.28 1.62 94.52 61.59 98.41 65.19 55.19 47.99 6.33 79.51 80.44 54.11 78.65 16.51 22.36 48.07 31.61 82.54 84.97 20.58 78.52 81.46 92.59 87.60 60.86 98.68 89.25 30.86 31.52 62.14 50.16 90.74 45.48 34.89 22.00 36.57 19.27 34.75 82.43 11.05 5.11 72.17 66.60 45.94 8.47 66.89 65.83 84.30 57.55 58.23 42.23 14.58 98.69 79.95 54.21 14.36 78.92 70.30 75.24 68.45 34.07 99.84 34.25 3.10 73.97 33.65 3.44 75.57 57.61 11.64 78.13 9.81 56.52 73.19 82.35 98.14 71.00 25.59 7.55 34.36 -66.37 30.94 84.62 7.15 44.79 21.88 93.11 50.68 65.79 82.46 3.09 62.49 30.04 0.35 45.87 91.02 61.91 37.33 48.93 57.40 53.20 59.57 23.47 63.75 79.90 87.54 64.10 38.94 71.46 18.40 64.33 31.18 20.14 43.28 74.64 7.19 71.82 68.58 48.88 86.05 94.22 28.13 33.23 13.42 93.89 74.04 16.40 35.28 79.42 52.37 17.14 12.04 8.06 97.45 25.75 11.05 23.32 62.44 55.96 50.75 75.10 12.41 49.16 42.28 64.50 61.88 24.89 21.65 35.94 80.48 95.79 8.08 59.85 41.58 27.96 86.59 21.97 48.44 19.15 64.44 52.84 97.66 64.33 4.49 64.83 51.91 35.36 95.76 82.51 81.56 99.45 85.00 9.06 16.77 2.34 65.27 60.11 64.49 10.42 62.94 -74.99 79.22 1.16 18.69 68.29 16.26 15.74 54.81 13.72 98.54 17.63 53.39 83.52 43.58 59.34 17.95 31.54 27.56 26.02 72.95 91.17 6.30 87.06 25.90 49.85 91.95 45.04 28.95 56.64 57.56 71.43 40.31 58.64 83.62 97.73 78.88 6.42 77.29 37.43 54.87 95.62 75.49 82.10 32.21 28.01 90.95 92.61 41.67 98.21 97.04 30.37 5.80 27.84 21.31 85.82 16.08 86.95 33.27 27.74 71.20 48.79 10.69 49.18 86.71 31.16 67.12 33.09 70.84 29.21 48.24 45.49 67.63 0.62 16.83 92.60 42.08 59.50 21.96 91.84 60.13 87.66 93.65 33.48 87.41 17.87 39.50 4.37 67.95 76.90 35.04 66.34 91.47 81.02 30.73 41.99 75.10 12.23 59.76 89.27 13.34 -35.44 67.48 88.78 66.00 78.13 99.71 63.46 31.18 53.38 60.73 48.59 14.63 19.09 75.35 16.57 19.24 53.82 55.34 99.92 66.43 66.33 51.80 39.67 83.20 13.09 20.73 2.71 24.55 83.68 90.58 52.33 2.29 28.77 50.77 82.04 74.17 14.32 83.85 52.37 43.82 45.38 66.74 75.43 45.12 57.84 45.82 32.66 89.71 26.77 80.69 32.46 96.53 21.86 76.58 46.19 13.28 41.84 66.48 8.63 94.08 73.13 14.31 52.66 20.76 3.16 63.77 68.90 16.31 12.37 38.97 80.67 6.82 38.79 13.75 22.80 75.00 56.04 96.00 86.27 63.68 86.88 76.51 43.67 42.77 72.31 71.38 52.53 93.57 83.05 70.43 68.33 63.20 86.88 98.09 52.69 57.72 3.74 77.95 88.28 0.22 -37.47 92.21 78.83 44.11 25.65 26.66 62.65 29.13 87.78 89.94 71.88 53.59 45.27 6.97 93.53 9.26 62.34 90.59 95.14 47.50 68.89 38.73 48.45 70.81 11.90 7.48 96.90 29.19 9.07 4.41 21.57 54.51 49.94 41.16 6.28 32.78 84.32 23.90 93.86 28.23 54.15 84.09 37.11 54.16 90.02 19.15 31.68 77.92 50.01 69.97 83.90 26.92 33.28 21.68 33.51 32.62 24.97 17.95 2.73 97.93 81.00 95.27 18.29 88.46 87.69 10.51 93.28 82.26 22.94 66.72 45.53 9.85 30.92 84.41 6.74 68.28 79.80 90.99 21.80 17.44 43.89 74.90 49.41 69.23 66.03 17.39 69.44 17.50 14.40 64.23 78.94 51.63 88.27 84.80 82.67 8.91 52.21 89.93 33.97 70.16 -33.10 97.87 22.72 0.95 86.84 74.07 86.41 7.16 47.07 34.38 44.88 16.65 42.27 75.19 26.13 66.57 21.71 68.04 60.68 96.71 49.63 14.19 81.22 33.30 3.27 93.98 69.13 80.16 93.77 60.61 62.38 61.61 69.10 28.99 97.55 68.61 98.75 38.41 49.79 33.95 83.35 64.40 62.65 28.83 9.52 52.67 29.11 90.12 61.27 65.52 6.10 100.00 14.22 9.87 35.09 22.20 51.12 11.39 29.95 62.25 42.96 3.79 56.56 76.07 93.61 95.70 66.71 14.60 68.78 54.74 99.72 88.02 96.66 1.05 39.61 75.01 66.31 12.52 59.00 53.98 68.59 92.45 46.56 72.65 92.25 69.38 43.61 65.58 12.80 92.90 27.91 35.90 28.25 99.29 88.66 5.17 68.41 11.26 13.72 20.83 -2.65 82.20 57.04 25.89 50.74 21.39 93.50 90.71 0.10 78.82 87.25 15.07 0.50 60.02 23.20 61.56 16.04 67.69 13.05 33.54 68.08 73.62 87.64 1.60 74.20 25.99 89.76 62.79 37.59 18.69 76.95 10.72 65.99 27.28 16.45 48.41 37.12 96.33 32.97 34.64 4.77 81.23 38.10 39.36 60.93 8.42 37.94 38.48 51.07 6.33 61.88 92.81 40.70 65.38 27.75 13.13 73.47 44.44 92.38 1.83 78.63 77.73 44.31 54.37 88.98 85.17 65.50 62.11 29.50 89.32 3.34 37.69 72.11 12.98 80.90 69.43 80.92 17.54 12.04 81.56 76.66 93.81 29.80 63.33 74.14 51.62 39.99 40.39 41.56 50.67 59.48 76.30 74.57 74.66 92.56 42.01 38.40 2.21 66.18 72.13 -30.98 75.66 54.93 48.21 45.45 76.69 46.82 45.77 30.79 96.90 90.65 2.18 10.13 70.22 9.26 11.24 40.56 71.25 72.86 57.59 39.81 62.01 81.67 65.78 4.36 25.82 54.65 29.14 87.72 66.89 96.92 15.65 87.43 31.81 89.99 26.62 17.01 13.66 42.20 55.21 65.27 87.46 56.53 97.62 62.31 11.49 45.76 9.43 10.97 66.68 20.50 64.53 55.11 1.88 66.64 8.77 10.44 79.07 27.51 63.27 90.77 62.16 62.73 17.08 14.89 41.25 40.94 75.57 40.55 28.57 57.22 32.20 1.88 24.78 57.41 9.65 28.88 97.13 9.19 73.70 76.89 16.78 41.53 77.16 50.57 1.29 51.46 4.84 62.04 8.83 11.42 38.32 54.93 87.49 40.51 74.76 13.55 24.09 50.76 37.45 -63.94 61.74 61.68 3.85 92.88 15.26 60.56 97.78 67.79 61.39 30.47 3.67 31.53 41.19 4.43 62.09 12.16 97.57 4.04 75.70 88.94 3.81 46.27 3.30 10.11 78.73 7.72 34.63 38.45 61.00 29.29 67.54 59.26 51.81 13.15 81.54 38.78 35.73 61.75 63.79 49.87 70.88 31.22 8.79 38.46 60.00 25.77 32.23 73.45 54.83 18.22 30.32 62.96 17.04 27.02 4.27 29.62 4.92 53.80 35.42 9.82 77.60 23.79 39.17 3.49 51.88 22.18 19.98 42.36 53.23 22.04 85.55 85.62 66.34 52.69 5.09 51.08 62.12 38.91 56.94 52.96 29.86 42.80 2.58 35.19 79.07 11.85 94.42 61.03 73.84 72.49 58.31 67.71 59.73 20.90 64.35 74.53 46.79 69.29 70.23 -82.23 65.79 8.57 28.75 89.57 18.85 98.85 24.28 9.12 17.20 35.49 92.98 48.87 63.29 19.90 67.93 60.16 96.83 84.92 30.19 88.88 98.94 64.18 57.91 86.23 56.99 70.38 18.88 56.53 93.83 17.43 36.19 66.18 96.26 19.37 1.26 60.59 33.07 66.10 98.78 66.74 90.11 9.57 15.10 54.19 7.33 11.42 7.31 33.06 22.27 36.32 81.39 48.09 22.17 91.04 87.43 7.74 97.88 49.43 90.57 47.73 0.77 11.10 99.11 68.69 99.18 25.95 79.65 32.92 28.71 63.55 26.84 94.90 80.51 76.09 44.71 43.45 45.41 60.29 63.07 49.85 66.20 42.80 11.10 50.83 53.20 83.85 40.18 43.55 41.93 58.88 86.33 27.68 48.36 64.25 87.83 3.95 82.24 1.97 4.41 -44.85 71.22 81.52 39.37 65.69 6.57 8.42 10.77 8.83 45.86 56.12 85.11 88.79 85.35 77.46 81.85 84.24 29.09 48.05 7.42 7.24 2.20 38.03 47.15 62.20 5.78 28.83 46.30 98.54 96.54 23.78 2.27 47.61 47.45 13.26 87.75 71.87 60.04 84.78 29.80 16.75 38.57 72.03 82.39 46.10 31.44 38.70 20.32 64.05 34.51 51.00 97.49 8.20 89.29 73.25 36.75 98.78 19.05 89.89 36.58 28.40 20.43 88.96 7.97 31.50 18.16 54.97 13.00 52.12 20.98 48.02 52.87 7.90 79.39 33.01 27.09 68.28 9.08 80.84 55.44 92.80 84.50 3.46 21.17 32.22 92.01 8.64 46.55 7.09 46.34 43.49 4.13 2.48 75.79 76.52 90.69 8.81 43.65 68.85 66.67 -94.95 72.63 48.71 86.30 38.62 26.78 34.17 0.02 95.01 45.94 56.90 98.01 11.03 49.40 69.14 69.17 79.94 16.01 25.98 42.26 48.87 30.44 42.58 62.17 62.83 40.68 40.00 43.87 17.86 16.27 38.25 83.57 80.80 66.33 75.79 66.11 52.67 87.67 13.44 44.51 94.97 32.16 47.68 83.51 37.68 90.07 97.61 13.64 49.78 17.10 44.75 6.96 47.68 98.77 97.72 95.51 59.69 16.21 7.52 84.20 53.73 85.64 66.85 70.48 21.62 83.05 88.26 63.00 94.58 33.85 17.09 46.24 98.15 94.49 67.16 21.25 10.51 66.53 49.78 92.48 38.07 83.69 75.35 69.38 68.54 98.30 39.43 92.98 42.77 28.70 83.88 41.52 52.87 64.21 29.87 41.95 77.43 90.73 55.64 27.88 -30.00 40.30 86.58 15.52 24.37 22.03 51.53 33.91 64.14 98.05 29.05 76.84 67.15 97.56 15.22 92.14 66.41 23.58 27.18 88.43 31.97 12.55 99.89 24.17 94.93 31.25 77.52 83.04 73.97 90.24 50.68 7.56 33.73 38.05 37.87 25.67 33.55 31.96 38.09 2.56 5.39 85.07 33.47 63.57 33.04 67.48 81.69 6.73 58.37 22.45 23.84 35.52 89.22 50.92 68.06 83.03 92.87 54.51 4.55 47.46 88.02 58.00 31.03 74.19 0.99 83.40 96.15 43.33 25.49 77.61 11.06 47.16 93.47 5.05 14.43 97.36 52.29 81.89 96.61 7.64 72.40 60.20 46.75 71.96 71.54 55.31 77.96 36.29 68.62 50.84 14.37 83.21 39.63 74.46 93.51 13.61 63.15 86.64 42.13 2.03 -58.08 66.25 79.74 43.83 52.39 52.41 70.33 50.52 24.61 54.80 39.35 85.98 14.05 96.10 69.34 54.75 97.52 37.22 98.63 62.81 13.38 74.76 80.36 60.22 10.60 8.17 6.19 39.57 29.64 37.21 83.75 15.91 64.21 99.51 53.30 79.79 27.61 80.21 95.21 68.09 28.67 21.15 55.93 54.44 61.03 46.34 17.53 82.58 22.85 36.51 65.97 32.53 52.54 95.80 72.34 9.20 91.95 88.47 84.38 76.12 33.07 70.88 63.74 15.19 67.76 14.53 30.90 66.04 7.47 83.97 1.34 14.29 88.25 12.75 72.27 38.68 61.49 39.34 99.12 77.84 70.58 13.23 25.68 19.14 28.16 79.93 88.40 21.01 4.26 4.47 51.42 41.55 23.30 19.85 51.18 50.21 17.80 95.36 17.57 40.22 -88.26 88.30 82.21 32.95 76.30 59.91 85.92 27.53 79.33 30.46 98.56 81.90 56.07 13.72 65.54 39.87 18.50 97.25 88.06 28.85 94.87 64.46 49.04 54.86 40.28 53.72 69.19 67.28 50.86 72.61 35.05 90.43 35.52 40.44 7.83 99.53 81.09 72.20 36.92 74.03 48.98 97.23 87.67 38.20 56.85 12.57 64.51 53.34 12.09 44.21 32.59 30.23 37.51 5.28 74.15 61.95 36.66 99.11 49.91 19.45 63.63 19.66 72.54 40.02 10.56 71.81 98.72 36.46 52.82 90.90 63.23 87.76 42.37 11.21 86.00 38.81 77.63 24.34 99.61 49.93 94.42 60.20 24.79 74.36 13.07 26.67 59.21 66.33 55.57 30.10 92.82 70.02 96.45 37.42 10.99 20.49 43.22 44.41 1.57 0.04 -67.83 41.15 84.34 92.16 43.11 52.88 57.23 16.24 95.42 18.64 47.77 32.78 60.26 10.98 36.64 12.96 97.45 81.53 55.72 79.23 65.62 36.55 63.44 32.38 65.21 98.77 14.55 60.81 45.59 54.22 78.40 57.78 14.63 88.70 81.60 89.30 48.09 58.32 21.76 57.11 65.94 49.01 48.45 17.46 42.42 18.64 86.03 72.59 30.09 89.65 13.30 10.60 15.45 47.67 33.51 23.33 24.85 96.23 95.08 60.16 69.50 7.91 31.31 23.25 21.82 67.63 65.14 2.48 8.08 50.42 77.61 43.63 9.35 13.03 80.54 63.76 37.92 97.69 58.71 62.44 73.86 94.24 73.56 83.36 11.24 33.58 15.39 62.08 50.00 45.58 84.41 31.14 5.89 41.23 73.46 76.53 21.66 26.08 43.10 5.15 -82.26 42.00 21.87 6.09 98.97 18.08 83.40 20.91 13.95 57.95 84.57 7.17 40.43 9.21 21.20 82.13 44.26 25.42 37.46 7.91 53.38 26.18 80.30 2.21 13.72 76.42 24.79 45.46 24.26 50.82 28.62 70.51 31.24 75.35 65.17 39.23 87.96 12.87 57.78 25.17 24.18 6.97 23.93 1.18 99.74 60.16 38.50 29.76 52.40 58.35 34.11 30.94 44.59 57.60 4.15 26.22 77.26 22.08 65.03 52.71 24.45 47.26 33.14 38.95 48.55 13.30 43.38 65.26 10.55 36.10 32.95 72.86 81.69 28.17 54.77 0.06 88.77 26.80 78.07 19.43 86.06 99.77 33.42 26.72 81.22 80.17 69.30 86.36 2.51 43.25 14.02 23.30 87.15 80.14 46.54 99.96 2.17 41.80 63.94 54.88 -17.95 83.28 28.11 87.80 47.27 47.28 23.15 46.27 18.08 34.09 23.54 40.57 79.61 90.35 43.22 46.39 90.38 28.56 46.97 95.08 49.55 60.59 22.64 39.52 75.16 65.62 72.48 6.35 50.02 17.96 92.65 63.90 48.21 79.28 58.92 38.97 21.66 1.38 81.17 65.02 51.65 24.38 32.61 99.77 53.54 71.84 0.99 28.98 88.23 71.72 45.39 96.53 22.43 21.29 61.34 75.03 77.96 65.43 65.12 43.22 6.12 92.39 81.10 64.58 71.65 95.90 70.84 5.51 21.93 28.45 10.80 59.93 80.68 5.77 58.74 50.89 77.56 11.34 30.90 66.71 43.30 29.98 90.49 49.83 83.88 23.02 0.20 87.59 52.72 94.48 55.22 33.95 95.50 46.12 35.74 60.80 16.24 95.39 73.41 44.31 -17.12 78.07 86.33 3.74 75.89 60.04 53.49 11.33 76.22 91.26 70.88 61.70 85.37 83.12 54.88 90.29 79.59 64.26 42.55 19.21 48.33 28.72 55.16 19.52 7.80 0.02 62.61 61.13 8.81 35.27 46.63 88.32 80.52 68.96 15.70 27.59 41.64 28.35 71.17 32.47 5.61 29.73 46.85 23.35 0.80 52.85 10.59 23.56 5.64 28.79 11.38 26.45 16.31 38.44 30.45 93.46 37.85 91.49 27.58 13.24 0.89 78.00 67.43 75.30 40.61 44.68 5.07 56.01 96.31 11.51 64.77 92.51 83.46 13.09 64.26 32.56 62.73 34.70 55.71 31.73 59.93 73.56 77.13 2.05 9.54 35.18 14.89 88.68 90.28 54.58 77.30 92.68 18.20 40.27 76.83 83.89 93.47 44.14 3.94 42.04 -87.30 39.24 63.53 87.96 1.34 11.36 84.41 70.10 10.79 37.25 36.11 80.60 55.12 20.87 61.90 96.23 80.88 48.34 90.85 98.15 6.32 13.56 30.10 63.63 6.46 47.16 56.26 81.79 12.83 89.23 55.90 14.31 4.16 85.44 83.39 6.20 80.93 94.40 91.58 43.75 29.97 72.80 63.99 19.34 92.14 70.18 25.17 51.78 9.66 85.99 14.88 57.24 11.04 5.82 28.92 7.46 68.37 69.47 32.95 27.98 39.32 72.20 27.28 1.80 94.82 58.53 93.97 89.45 66.54 12.34 61.98 34.03 19.79 46.23 26.81 55.68 90.14 22.89 14.94 72.64 61.34 42.80 44.24 4.71 37.93 10.35 22.88 0.94 49.17 47.88 4.10 0.41 16.25 97.53 50.81 51.88 64.87 32.10 95.07 25.76 -80.40 25.04 84.65 10.26 27.30 96.54 16.25 71.74 57.76 20.74 94.41 70.44 85.22 26.09 81.79 43.81 58.41 25.70 25.27 65.35 69.59 90.68 11.46 92.10 63.49 51.94 5.64 40.35 10.55 50.83 3.20 95.43 14.76 88.94 51.70 17.34 36.35 29.78 19.91 3.90 16.32 66.95 17.31 9.56 45.10 60.77 97.20 56.53 99.51 24.14 98.18 95.29 47.61 64.62 7.75 8.37 7.29 79.04 76.97 27.99 14.77 67.07 81.92 49.62 4.61 20.40 50.36 54.20 48.15 39.20 10.32 71.46 66.72 0.11 25.89 66.67 35.53 43.03 31.29 54.89 22.68 4.45 47.28 98.26 87.64 15.09 92.39 80.35 37.26 7.34 39.27 68.43 29.75 46.32 77.84 6.53 45.38 59.33 60.26 99.10 -13.42 88.65 22.31 39.03 95.80 50.22 13.30 89.23 79.39 12.21 31.56 15.92 10.16 4.63 85.17 9.83 45.66 57.97 8.52 25.14 17.14 29.17 46.73 96.48 61.74 35.73 34.91 53.17 63.85 22.51 51.05 47.31 26.31 64.15 41.60 6.28 19.79 45.66 78.03 16.47 14.24 50.50 68.23 69.26 83.06 68.71 9.38 34.71 92.91 39.17 65.01 32.32 13.94 87.21 32.19 25.45 11.87 92.22 59.39 41.06 92.08 88.53 38.77 27.99 91.57 33.26 69.33 91.41 30.25 75.26 49.71 65.57 53.77 97.63 5.80 0.86 20.63 19.33 38.27 27.10 95.51 11.08 85.30 32.25 98.94 38.33 45.91 8.54 78.39 47.31 17.99 94.04 72.97 92.53 88.93 15.92 93.62 84.36 71.28 48.06 -11.36 97.79 86.00 14.98 32.89 90.54 81.36 95.20 46.38 28.50 71.82 23.28 30.29 34.46 44.89 4.58 88.32 52.29 88.20 85.56 47.82 1.87 65.16 23.64 20.40 11.00 9.18 68.56 61.99 25.10 87.34 84.89 37.70 65.44 82.48 64.15 60.26 91.69 16.12 44.79 60.59 5.85 85.83 92.27 84.47 32.00 47.75 6.34 36.53 7.64 53.70 27.22 24.63 41.86 72.46 29.40 61.12 4.41 19.67 9.88 92.63 40.26 30.88 14.66 18.29 69.30 48.77 12.55 96.18 65.93 71.16 88.55 89.18 85.88 37.58 1.28 71.43 60.20 28.33 18.02 22.41 84.95 67.67 60.22 81.87 68.05 96.93 85.73 13.42 72.78 19.05 53.23 18.79 1.03 77.15 29.85 98.59 81.68 60.39 20.51 -23.48 89.21 54.04 63.68 15.16 84.57 92.55 83.78 92.98 74.84 64.72 23.94 1.11 91.58 69.36 38.47 50.80 73.59 20.09 85.18 17.97 33.69 22.82 64.00 27.55 89.84 73.73 42.85 17.89 90.82 2.92 11.97 4.22 91.56 77.39 76.28 8.65 93.65 35.63 98.77 13.25 83.36 7.47 72.52 51.14 78.28 12.10 33.91 79.14 55.82 3.65 85.33 57.98 25.40 1.39 37.01 22.75 37.78 36.73 61.26 16.50 76.85 22.60 70.47 39.06 49.53 0.70 16.08 86.54 84.64 49.31 97.16 76.22 89.56 25.77 68.26 12.22 38.30 98.78 85.39 46.23 40.78 66.17 66.91 78.81 89.63 81.37 55.43 4.99 56.97 55.80 55.79 57.23 97.92 17.05 36.04 35.44 99.73 7.62 17.30 -20.15 1.78 70.14 5.80 9.48 1.78 31.78 13.53 27.72 11.35 13.18 62.79 33.66 70.32 77.91 79.78 8.10 15.88 87.06 78.17 11.12 45.55 48.35 39.02 83.15 70.30 10.03 47.93 87.48 79.07 44.92 79.16 7.84 86.88 29.95 36.55 80.12 41.99 74.44 81.49 10.03 60.81 73.31 78.84 11.13 38.20 24.56 70.15 74.95 52.08 57.91 86.99 3.72 91.16 66.20 19.45 32.17 44.61 88.27 85.23 37.80 41.56 76.10 23.20 82.44 99.21 49.19 64.61 17.96 68.73 22.18 42.61 87.75 88.04 84.39 88.43 62.20 3.35 69.53 52.98 34.62 58.30 45.02 32.48 91.07 14.32 36.09 44.05 7.09 62.13 11.32 71.47 58.27 98.05 79.22 43.07 36.02 8.68 69.09 47.56 -98.68 65.46 23.24 87.08 32.91 16.19 14.09 85.56 30.36 70.46 81.80 54.03 33.40 34.69 20.02 65.48 19.17 74.56 20.74 25.50 92.49 53.48 9.45 69.22 68.05 39.83 20.05 86.91 12.90 50.34 7.36 93.20 64.34 5.62 80.09 60.21 18.84 7.41 85.52 20.06 20.60 79.49 3.90 43.86 97.02 59.94 7.05 56.70 13.82 36.93 27.61 86.48 33.84 14.21 60.26 10.99 95.07 54.22 94.81 62.53 82.25 63.79 12.98 0.20 48.58 71.19 95.49 75.88 86.39 20.91 6.40 85.13 36.59 47.77 63.05 84.34 97.29 16.74 21.66 88.69 4.11 29.62 21.92 30.73 11.27 84.03 30.45 24.40 76.60 80.28 2.59 50.39 98.25 19.83 61.73 62.25 22.88 62.81 27.84 75.52 -46.00 75.32 36.12 41.95 39.53 70.58 86.21 82.08 32.32 28.08 66.33 67.18 53.26 42.14 27.57 28.21 64.77 82.29 94.16 88.95 32.22 32.10 95.58 93.64 17.29 89.74 64.97 5.52 70.15 50.28 33.04 12.98 74.23 30.61 5.44 57.55 94.71 96.86 65.44 63.82 58.47 93.53 97.81 33.35 24.27 85.36 9.93 76.80 9.16 31.87 43.72 31.63 85.22 31.30 67.24 63.60 42.86 60.86 98.91 34.64 54.99 52.56 25.04 79.50 33.75 9.51 16.17 77.25 38.76 86.99 73.42 38.25 82.75 92.21 40.71 33.57 24.55 93.07 28.49 84.21 58.03 94.79 42.52 28.26 99.89 75.33 55.86 66.05 42.17 63.52 44.33 30.44 68.42 52.33 20.15 12.59 30.21 94.61 13.07 32.59 -98.69 96.27 8.45 61.40 99.27 11.01 8.79 9.32 42.18 34.67 79.69 86.47 69.21 71.78 80.19 7.09 56.86 84.33 49.66 84.45 27.33 72.09 4.44 23.12 71.15 68.55 69.55 13.47 5.81 88.40 92.52 91.57 4.06 44.24 81.60 63.79 85.85 5.35 93.06 42.92 88.95 66.42 69.64 24.68 70.85 79.00 95.68 40.28 67.05 28.70 22.73 57.91 88.64 7.35 34.88 91.70 93.04 6.41 56.35 36.60 16.83 88.18 0.15 41.92 13.37 21.67 46.06 53.97 61.63 5.32 2.01 39.92 51.01 72.71 9.45 74.68 1.45 92.20 41.80 70.36 31.47 27.83 55.85 21.59 59.71 89.26 65.98 12.36 49.93 0.12 87.33 77.75 8.30 96.21 23.61 48.11 4.11 50.88 33.23 96.40 -5.40 85.23 34.24 54.38 12.44 43.52 36.52 84.76 98.06 85.60 97.52 41.49 59.60 7.31 68.62 41.49 96.24 17.08 46.23 90.35 8.11 60.09 49.14 79.82 45.25 35.15 20.57 68.38 84.37 31.13 14.70 93.21 35.93 64.69 59.12 29.65 71.07 69.58 86.28 9.40 50.44 12.52 75.74 63.96 57.97 7.71 31.03 11.90 73.76 36.15 92.34 24.49 8.01 87.89 15.73 7.15 61.07 66.53 26.12 47.97 66.52 5.41 73.72 40.23 81.30 49.20 39.49 25.45 83.18 57.29 30.65 36.91 96.94 51.06 56.35 1.47 66.34 62.48 73.79 22.62 93.42 25.50 70.53 10.47 26.23 84.96 18.44 93.41 62.21 53.04 48.47 25.66 58.10 3.32 77.57 91.59 36.51 63.41 59.96 37.19 -78.62 5.01 65.00 90.32 39.45 5.74 87.63 12.30 0.58 29.80 72.70 61.28 20.18 33.15 31.61 68.23 66.12 58.77 10.91 4.00 58.82 65.89 2.25 45.15 20.62 15.64 40.74 69.64 27.28 33.63 18.47 3.33 18.73 46.61 39.06 94.06 9.66 9.38 42.51 92.72 67.19 2.85 35.54 66.23 2.39 18.14 96.65 7.47 59.01 47.82 39.21 87.40 33.63 60.88 29.40 60.35 94.31 77.70 57.41 25.61 9.20 66.39 41.21 33.36 51.24 79.77 78.79 17.34 81.58 39.81 90.54 10.74 66.79 76.59 74.04 17.29 86.32 87.41 93.17 62.03 72.01 35.16 51.03 18.40 32.00 24.19 41.46 34.01 81.26 25.84 78.39 36.40 10.11 46.02 93.21 56.88 11.74 43.29 7.09 63.02 -31.61 9.36 62.69 90.75 33.75 68.11 31.29 5.27 17.85 81.79 10.54 19.49 4.86 73.26 31.59 16.06 52.14 43.44 3.94 77.13 50.14 83.36 79.24 94.34 58.68 86.38 13.73 88.34 33.96 37.95 27.86 45.37 94.51 9.53 73.24 2.93 88.99 88.86 81.61 74.90 25.45 11.74 80.11 58.36 15.73 81.26 98.55 59.41 19.58 88.62 14.69 21.14 52.40 84.69 37.23 95.34 88.88 57.25 98.82 80.26 47.70 69.31 59.23 69.65 84.94 36.78 3.38 85.91 99.17 31.02 48.44 18.62 47.33 68.97 21.25 18.00 71.21 23.47 57.20 5.10 18.40 93.39 72.51 40.51 56.75 56.45 78.74 36.59 10.41 25.24 93.05 7.68 49.04 50.81 75.91 17.32 12.88 66.68 75.67 63.45 -30.83 85.92 16.53 34.57 26.61 82.63 62.69 99.93 68.52 47.56 53.80 50.64 92.47 63.30 45.10 37.27 15.56 86.75 79.25 19.08 20.95 73.19 46.86 96.77 51.19 20.35 95.29 76.74 95.83 19.43 11.93 62.98 51.31 85.17 90.96 44.90 26.65 10.91 38.35 44.22 85.15 98.44 34.11 8.66 55.62 20.05 3.42 82.20 82.83 84.07 80.24 99.42 12.89 50.91 69.08 75.55 88.01 71.86 63.37 59.12 32.83 16.84 54.75 39.65 66.13 39.90 69.23 88.60 71.97 63.43 86.19 24.92 42.32 2.12 47.87 40.76 71.26 6.31 13.18 44.97 57.53 92.60 99.06 13.48 31.87 10.91 20.06 66.76 54.80 17.75 93.01 58.11 57.80 69.00 18.03 35.11 58.59 43.23 97.06 30.40 -18.90 35.38 66.24 14.75 49.73 97.94 5.18 0.17 77.00 85.40 3.81 81.31 90.31 70.64 2.13 29.36 25.63 60.06 37.12 17.02 62.62 56.56 91.67 22.59 54.57 78.45 80.66 66.86 22.20 36.33 30.11 14.27 22.93 63.54 31.42 32.34 34.03 47.63 55.46 9.08 16.99 52.49 34.78 19.03 89.81 60.86 56.25 76.57 22.56 23.85 26.24 52.84 52.24 2.45 41.81 96.80 18.20 69.53 17.32 35.14 68.19 26.23 8.76 61.51 23.07 46.93 74.35 39.79 16.11 95.53 53.75 87.55 14.22 16.19 24.26 66.95 20.94 63.10 53.70 17.16 60.27 35.24 95.01 55.74 51.43 41.10 70.73 24.11 97.64 8.71 78.36 12.11 34.77 17.72 94.69 33.25 47.34 20.64 32.12 49.25 -24.03 63.09 27.84 31.89 94.70 95.29 53.58 10.85 60.88 15.77 22.19 1.89 43.27 39.63 51.65 19.16 29.21 85.66 32.30 35.65 97.66 67.26 21.65 6.10 3.67 89.45 6.76 20.32 4.18 39.96 34.00 89.97 98.77 80.23 54.20 65.66 70.46 67.31 28.65 73.22 96.65 89.60 25.33 27.66 64.49 99.35 80.52 27.18 4.15 98.63 99.78 46.30 43.91 8.04 0.64 59.89 56.50 61.73 76.42 65.28 37.47 76.56 48.96 31.24 29.05 77.34 72.44 35.56 17.55 23.53 40.23 52.70 39.05 39.65 48.48 42.59 19.22 55.63 96.56 98.27 18.88 63.46 17.91 16.48 36.46 52.87 84.60 43.18 88.56 32.05 75.77 27.32 62.60 44.37 43.93 61.71 83.13 45.79 80.37 29.97 -73.41 24.94 6.63 39.45 86.02 45.69 18.28 82.20 82.13 10.26 63.06 0.84 71.95 82.47 0.32 57.17 32.66 65.13 31.06 21.31 73.62 21.52 5.75 7.01 24.23 78.70 15.46 70.67 2.68 19.20 20.82 90.87 46.17 2.08 37.88 96.52 76.57 79.68 31.86 31.23 17.75 2.07 97.50 53.57 42.97 68.97 16.48 75.57 70.19 42.48 31.91 98.28 16.24 8.88 44.53 0.61 45.43 18.43 48.13 99.57 84.77 15.55 84.14 64.38 29.07 60.79 19.54 95.94 58.31 75.32 80.68 60.66 44.61 71.89 23.01 19.32 67.02 70.90 18.34 3.96 61.24 92.16 91.14 99.17 25.90 74.82 8.77 58.32 78.07 8.53 66.01 31.23 24.03 74.15 88.21 97.07 34.50 98.71 80.77 41.16 -4.93 79.99 4.57 23.82 4.88 15.42 48.94 48.55 74.21 91.54 41.72 91.11 32.72 22.85 77.12 72.49 0.93 28.60 67.41 79.80 71.02 87.71 23.15 18.44 65.07 18.87 9.44 36.31 15.35 4.21 6.52 20.50 70.30 46.83 59.21 77.91 18.44 8.25 60.09 66.74 83.63 77.96 21.25 56.63 7.77 65.42 87.81 83.08 59.37 98.01 99.92 1.55 16.14 15.29 46.74 71.89 94.91 10.75 7.78 14.99 29.01 24.62 25.77 31.77 72.30 96.41 59.30 15.10 80.96 69.74 91.90 96.56 99.67 4.74 98.49 99.18 89.36 8.84 65.72 66.85 31.78 52.89 38.61 38.20 89.86 75.56 8.00 43.67 18.27 63.09 77.91 99.21 65.67 3.88 8.10 90.90 52.88 17.72 91.96 61.00 -27.41 25.19 19.53 32.04 79.02 3.04 11.68 90.33 93.81 35.66 31.81 76.14 7.03 59.50 59.44 62.89 76.64 38.63 12.07 38.79 90.00 88.61 88.87 79.80 2.43 35.51 57.31 38.75 94.77 72.48 9.55 37.28 41.72 40.89 34.78 94.23 5.27 17.03 69.72 45.22 48.03 51.65 25.57 35.79 31.06 93.33 22.89 12.05 6.97 4.20 78.41 81.39 31.67 62.47 22.28 83.46 65.65 61.53 74.07 61.87 95.97 31.17 77.40 47.30 31.61 77.62 78.40 60.02 80.37 98.19 74.67 72.35 72.72 4.99 16.30 29.87 88.35 84.73 62.08 39.20 88.89 50.92 21.01 65.77 33.00 24.55 14.13 1.51 40.57 52.55 98.01 41.97 55.50 44.57 87.55 74.08 28.81 85.77 74.56 16.24 -44.85 36.43 46.53 24.52 7.54 33.09 89.03 71.89 75.97 85.46 27.87 50.33 20.79 51.14 55.99 4.43 47.81 16.19 71.63 74.93 81.93 98.15 94.97 32.88 79.42 9.23 74.04 46.65 54.79 12.03 13.42 86.10 47.99 26.65 21.12 58.53 99.57 81.10 77.89 75.53 69.61 84.95 62.68 75.33 10.22 54.35 27.71 53.97 72.97 31.13 1.87 30.30 82.02 41.91 50.76 54.92 1.16 21.18 8.21 65.87 84.47 58.74 80.55 88.82 8.05 14.76 95.09 8.35 30.93 87.29 35.26 7.97 91.91 46.15 43.07 42.52 73.89 9.62 52.19 18.21 22.38 6.17 76.30 87.69 74.31 85.04 87.84 9.14 42.91 29.13 66.35 90.67 5.18 81.29 38.57 92.33 18.40 80.17 18.53 53.54 -15.12 47.55 42.76 2.30 91.11 93.93 8.27 24.22 19.31 10.29 22.37 18.54 62.90 67.38 42.49 88.37 37.18 0.22 23.85 22.49 37.19 88.48 18.90 41.76 61.52 12.52 27.86 88.60 10.10 8.96 49.54 83.10 51.24 63.51 14.21 97.08 76.52 72.74 39.23 18.08 54.48 95.34 36.32 53.04 26.87 71.24 98.61 49.40 40.28 58.38 85.74 63.92 86.55 29.40 9.09 40.67 99.41 72.59 65.47 30.34 31.19 44.47 81.98 48.45 57.72 2.00 87.72 80.88 2.37 5.08 11.79 53.09 6.56 14.81 10.69 29.07 67.94 95.25 75.98 11.91 55.08 22.31 97.39 39.99 99.47 64.22 53.57 34.19 88.79 17.98 52.08 85.01 39.09 73.90 86.61 28.48 54.49 95.57 97.66 55.65 -44.89 82.04 3.98 39.96 1.21 6.95 51.16 84.83 45.76 49.04 61.12 35.92 40.16 77.65 83.09 78.01 23.26 39.46 71.35 88.91 65.50 3.09 84.89 94.42 48.15 66.97 95.57 20.21 56.25 53.83 29.90 58.75 52.70 80.52 27.52 44.45 3.61 26.02 83.28 70.85 22.59 2.60 21.39 41.79 32.06 31.37 44.31 70.55 46.01 92.69 48.02 9.09 96.81 76.00 80.96 79.03 15.69 59.35 53.80 70.69 0.75 55.43 17.48 85.59 95.16 89.85 83.93 50.22 48.79 2.27 4.31 21.88 90.95 45.60 21.35 81.51 28.16 5.94 78.71 83.78 83.15 31.71 35.89 3.24 42.21 67.59 87.67 35.54 41.53 95.36 92.53 13.34 50.38 85.07 84.31 51.84 59.78 22.16 46.98 59.04 -58.36 2.30 53.68 99.88 18.08 18.06 48.31 60.74 65.27 58.67 48.27 83.82 44.20 50.19 75.10 35.94 28.54 75.81 62.08 15.08 46.70 91.18 44.10 78.68 74.53 42.67 18.67 42.88 81.68 8.93 46.34 46.18 26.49 64.50 69.48 68.68 75.41 33.38 17.03 43.36 42.29 0.47 0.94 21.70 91.91 72.35 23.48 21.07 56.04 17.48 93.63 49.26 44.90 64.11 72.36 98.20 78.28 32.89 30.06 8.45 42.90 18.04 59.23 76.84 4.49 2.52 15.92 46.97 22.74 31.97 66.01 63.86 89.21 1.78 54.45 58.18 99.49 19.81 74.01 67.17 69.85 61.30 19.03 18.91 1.25 40.64 53.65 53.27 29.75 26.28 60.10 55.25 84.78 17.39 96.23 74.41 68.35 47.80 24.96 19.32 -59.07 13.46 77.81 94.02 49.51 48.51 65.37 87.15 70.11 14.38 52.28 34.84 83.16 38.69 80.70 72.24 16.74 91.98 3.60 30.94 61.29 43.63 9.91 96.95 45.32 51.29 68.79 90.33 9.22 37.52 29.36 72.89 90.23 58.27 52.75 68.86 77.45 70.28 29.27 55.21 21.01 72.20 10.28 98.62 67.45 23.36 93.73 87.13 50.51 16.98 78.29 41.00 6.09 80.79 73.78 69.62 66.30 82.76 37.94 38.40 5.68 81.54 20.30 18.05 29.01 51.45 64.88 38.88 17.16 79.71 15.04 8.38 5.63 98.11 12.38 25.03 61.70 38.59 65.62 82.57 0.91 99.37 43.36 81.39 15.90 8.17 44.96 87.93 29.09 50.41 63.32 31.78 63.80 39.41 97.56 43.74 9.06 81.51 99.39 8.59 -74.97 10.56 93.08 81.56 86.02 73.88 5.40 58.22 44.75 17.98 49.99 46.44 72.83 12.59 78.07 87.84 12.87 83.85 24.67 35.03 42.91 59.01 40.17 74.04 99.60 67.07 14.36 11.27 97.31 81.72 47.51 39.52 81.04 51.20 85.02 46.57 19.81 64.99 3.79 20.33 31.56 19.15 58.85 56.46 70.91 56.56 89.53 59.18 22.97 23.34 95.92 11.76 50.83 38.95 65.77 31.24 29.42 95.03 51.63 31.15 69.51 84.66 42.48 58.87 46.02 52.32 2.94 97.77 57.13 20.63 83.50 35.26 25.41 47.40 12.13 36.18 78.22 12.02 85.52 61.03 36.25 71.57 66.04 9.80 51.61 71.97 38.80 38.87 81.29 90.21 80.67 41.88 56.24 33.71 51.38 55.97 40.99 97.61 86.72 26.90 -76.25 93.88 27.28 10.09 55.23 38.45 90.92 95.48 50.25 60.82 33.95 53.09 23.64 27.52 0.66 17.45 6.63 7.61 80.35 23.49 12.28 9.70 47.18 73.02 56.30 5.26 57.00 45.94 15.13 85.78 44.73 16.98 50.29 38.51 71.12 42.36 8.51 16.02 71.03 44.12 27.66 97.37 48.42 23.85 63.90 72.58 20.52 37.87 85.19 11.19 44.37 37.91 0.33 18.45 12.25 45.38 51.81 58.94 99.84 87.06 19.39 72.75 9.45 65.83 85.78 9.33 90.48 33.12 92.70 20.21 83.27 69.64 64.49 5.20 86.59 30.92 32.37 68.89 78.50 45.27 60.07 83.17 62.35 57.63 87.69 58.86 32.29 56.92 78.21 88.83 56.10 55.29 35.42 77.18 99.25 6.90 32.53 94.24 43.09 22.10 -56.88 71.66 84.40 51.25 85.54 32.55 34.35 91.29 59.44 6.80 41.02 22.37 29.63 60.97 90.34 4.04 25.21 55.98 27.61 0.49 7.13 58.56 50.90 0.46 88.51 61.09 32.45 96.45 58.27 69.76 61.29 55.98 86.34 61.55 68.17 32.29 33.85 75.87 75.77 87.66 32.21 88.63 32.88 88.37 3.43 14.61 59.14 53.16 13.56 81.34 71.83 33.65 13.87 74.77 46.70 76.58 61.40 91.87 27.91 61.32 12.94 71.15 45.47 0.56 87.18 35.92 94.73 52.98 17.44 70.09 28.01 5.92 39.62 68.47 88.27 73.79 20.56 29.96 84.83 94.15 79.00 10.34 62.61 63.94 98.06 35.20 28.56 32.00 5.59 20.19 23.55 97.47 3.08 97.75 82.81 42.95 3.56 92.12 86.50 60.67 -4.64 11.14 71.00 48.75 47.65 0.14 91.61 55.69 40.10 43.13 81.75 47.16 75.63 29.37 61.34 98.53 45.27 0.82 30.56 29.67 78.87 13.50 57.66 2.55 95.99 23.06 4.75 35.12 74.17 74.04 90.76 65.29 45.96 44.66 56.79 82.94 9.18 47.44 0.01 48.62 57.25 13.33 20.08 57.10 71.76 94.09 24.61 33.12 58.57 71.54 8.02 49.60 24.30 71.05 76.79 97.63 58.32 21.20 14.09 71.48 96.04 13.30 88.42 32.01 17.68 7.92 37.81 57.55 41.52 72.29 30.20 62.01 97.36 18.02 35.90 64.44 75.87 81.33 18.68 48.77 46.25 42.38 86.49 14.77 13.84 87.21 76.44 73.49 82.69 80.76 8.78 47.68 14.31 34.51 95.99 67.99 7.24 89.98 31.85 54.41 -78.66 46.68 39.63 0.13 59.21 14.96 13.35 47.44 76.64 19.29 82.48 47.06 92.63 49.57 38.40 53.99 3.04 93.15 61.09 16.08 21.20 87.58 22.59 69.70 14.60 95.72 47.37 25.90 81.42 64.00 77.14 56.28 48.26 9.71 51.04 80.10 89.71 85.61 15.99 63.01 76.47 85.96 18.79 48.15 61.09 1.26 35.54 25.78 6.44 35.70 47.76 56.72 62.58 9.47 43.43 36.41 9.66 57.87 28.75 14.49 6.64 3.31 44.72 97.81 39.24 39.58 36.88 41.04 52.42 96.37 62.09 86.10 92.79 94.04 9.32 82.43 81.95 67.19 94.96 87.85 5.14 9.72 95.52 40.89 7.36 96.04 50.71 95.80 23.81 95.60 18.60 91.79 15.15 18.42 44.52 63.20 35.07 73.29 82.86 50.63 -45.32 65.09 92.21 6.67 23.00 83.84 96.47 54.77 40.92 53.75 81.47 41.57 18.40 49.32 23.53 80.25 41.30 85.38 35.30 55.78 41.86 76.88 71.67 59.19 16.36 42.93 25.24 35.68 7.93 94.13 35.61 25.52 96.45 90.11 37.10 27.30 23.81 20.41 72.12 83.35 31.90 8.45 17.16 32.01 75.74 14.95 65.94 47.98 14.77 26.39 13.36 61.44 23.47 95.30 12.67 64.41 57.11 60.01 37.21 28.79 54.38 97.06 27.48 81.11 49.72 50.02 85.17 59.35 56.82 19.43 49.89 54.31 54.32 85.04 43.60 55.33 70.32 75.68 15.33 22.86 11.75 87.90 33.28 22.99 93.96 35.34 37.19 85.72 77.15 17.02 77.99 7.97 31.00 47.47 77.09 27.93 79.68 29.70 80.51 48.68 -5.69 14.76 32.75 34.44 38.20 29.35 48.07 85.11 40.75 6.31 30.23 29.73 27.24 44.80 28.47 9.06 58.54 87.62 15.91 66.06 52.99 1.38 20.40 87.88 54.84 56.12 80.49 50.17 18.39 56.43 39.92 17.76 86.44 29.41 5.23 13.30 76.38 6.10 87.47 70.33 86.35 46.47 82.15 42.05 4.13 21.79 5.61 79.81 99.70 53.59 2.11 9.55 39.65 20.96 90.89 73.19 17.00 49.04 9.47 10.98 74.22 22.49 34.97 15.48 98.07 88.81 46.73 61.29 75.31 59.05 43.98 2.70 61.01 16.23 34.57 38.28 87.33 64.80 59.07 8.24 17.44 84.83 45.96 34.22 38.69 1.50 36.53 85.62 67.38 14.16 46.85 26.89 36.36 20.15 50.06 39.83 75.40 66.36 18.93 57.81 -18.72 9.11 12.05 2.15 65.20 81.18 46.34 52.78 17.54 72.73 43.60 89.05 92.17 87.70 36.93 7.96 55.87 72.93 82.19 96.27 38.19 71.83 28.79 72.96 68.49 23.60 35.52 72.14 49.19 78.33 26.76 16.44 8.12 70.06 86.26 4.32 28.66 89.56 10.92 57.87 27.70 29.25 53.43 98.96 86.62 24.33 91.35 32.22 67.82 77.87 50.22 19.05 84.77 22.57 9.32 39.27 63.09 66.93 68.54 99.70 84.81 86.54 82.90 39.37 38.84 91.60 60.27 14.11 63.45 77.68 98.19 0.20 23.66 47.00 21.23 55.13 85.31 62.40 34.76 28.94 32.37 30.97 70.28 53.89 68.84 71.88 90.88 11.41 41.58 80.27 55.77 82.97 44.27 67.68 22.10 49.59 2.78 73.68 71.66 77.17 -69.86 86.05 35.93 23.62 28.29 71.67 46.13 84.58 49.69 27.95 69.30 92.81 16.32 67.18 18.19 48.58 14.72 32.74 29.73 59.85 78.69 33.26 39.66 15.49 5.86 87.00 60.57 82.28 14.61 56.88 16.97 61.23 42.73 5.38 3.04 20.73 4.09 83.61 43.97 82.02 27.22 1.69 1.66 54.69 55.94 92.13 22.17 26.66 81.41 14.99 96.21 9.97 10.39 7.81 49.74 18.00 19.95 25.93 19.65 52.88 64.14 46.28 3.67 49.60 71.89 51.89 25.33 77.51 80.27 19.50 82.94 91.62 34.34 2.32 99.78 45.11 95.38 2.44 82.57 76.77 36.33 90.47 57.01 21.16 75.01 93.99 88.87 0.19 99.80 40.82 18.50 71.22 45.85 32.18 52.37 0.28 67.06 26.73 67.75 20.06 -98.93 66.27 30.12 98.14 89.61 89.08 24.00 96.21 23.21 71.64 29.74 94.50 92.86 64.31 67.89 3.90 19.68 67.36 23.63 25.02 24.10 4.49 58.28 46.05 47.01 80.94 19.69 77.75 3.62 34.73 2.44 48.02 39.25 78.71 34.46 39.93 47.96 29.62 31.13 38.32 34.47 95.84 96.06 97.96 22.32 90.48 6.77 97.95 21.79 19.09 76.64 6.29 34.30 69.59 8.84 55.41 35.28 65.92 7.20 74.56 2.06 12.35 36.09 15.28 72.43 62.12 59.34 75.23 61.09 59.70 80.02 72.39 21.15 28.09 73.92 75.48 4.38 0.28 45.40 91.66 6.86 56.46 96.07 7.40 30.38 46.71 27.31 77.24 17.83 2.21 27.90 89.28 36.15 87.69 7.60 39.72 77.70 39.63 40.98 91.11 -89.08 63.78 23.17 12.20 29.14 71.12 10.82 24.16 14.01 75.51 68.67 47.27 97.32 79.75 5.83 31.17 27.64 30.22 94.75 10.70 48.57 3.41 72.05 66.17 37.12 58.71 97.15 47.18 77.99 90.63 35.62 35.94 10.49 22.07 97.50 55.72 14.77 29.41 50.80 64.34 82.22 67.94 87.87 80.93 83.69 5.03 57.03 60.62 66.14 0.34 39.72 7.24 7.50 93.55 58.47 58.77 67.05 6.52 28.30 89.53 99.08 45.26 31.73 90.06 40.76 39.29 70.95 98.34 82.90 18.29 37.41 83.94 74.89 36.72 4.02 36.05 28.77 60.72 94.42 40.24 87.16 44.00 65.04 51.99 54.76 38.08 22.99 48.19 17.46 87.26 42.83 43.84 91.40 89.24 49.24 11.35 24.63 36.54 29.79 88.82 -91.15 43.58 63.87 40.33 26.01 89.79 25.08 58.20 96.50 13.24 74.86 15.79 29.53 68.17 57.63 90.31 27.23 42.16 6.20 36.17 68.38 5.69 36.06 94.05 52.23 84.85 4.66 32.53 30.74 47.09 26.15 5.34 63.23 58.46 68.07 28.27 43.66 94.78 84.09 9.97 86.50 95.00 86.36 56.17 99.50 27.58 21.29 1.51 12.92 59.63 23.43 99.22 98.02 63.04 8.41 44.10 29.44 10.00 53.33 61.12 41.50 22.03 73.93 9.17 70.46 79.07 43.65 79.05 48.09 94.67 59.80 14.92 59.85 43.26 84.39 68.02 91.61 54.97 59.99 53.09 27.41 73.80 91.78 9.66 49.34 43.76 1.61 13.94 53.60 28.71 82.96 23.17 9.15 17.29 37.89 89.77 62.39 97.97 41.20 64.35 -86.18 91.66 29.53 86.60 9.09 49.78 31.24 22.03 53.25 99.13 65.64 2.53 48.23 32.78 13.13 36.69 7.95 12.01 60.54 34.83 19.47 60.46 59.15 67.61 42.72 87.17 52.95 24.62 92.63 26.35 23.04 24.77 18.90 86.64 63.30 26.80 90.87 7.62 88.11 16.85 15.06 0.64 52.59 37.90 56.42 85.43 1.47 21.39 33.60 53.27 8.28 3.36 2.90 8.05 9.56 88.70 77.44 82.86 18.90 50.59 40.48 12.30 33.90 9.64 12.40 18.48 15.48 37.43 96.44 82.17 80.97 33.83 63.03 21.09 45.39 1.23 94.89 45.68 48.95 57.15 88.13 53.51 89.99 10.96 41.03 51.52 83.53 93.58 11.02 79.18 76.92 91.05 53.82 56.10 26.66 16.08 2.34 49.86 51.21 57.67 -86.75 61.14 50.18 66.15 56.01 29.22 37.61 55.69 25.89 60.47 76.22 43.97 54.24 69.76 48.67 29.96 84.95 79.36 97.85 27.94 16.44 25.12 96.37 48.52 73.55 94.80 78.45 44.91 68.04 34.78 9.61 94.98 55.61 74.65 9.19 64.24 51.36 13.72 3.54 20.08 51.73 24.05 19.25 67.56 64.65 43.01 14.23 54.98 4.23 82.66 48.44 56.26 45.36 25.39 94.67 5.72 77.55 47.31 61.64 58.07 49.47 22.68 79.73 53.24 33.46 25.65 40.05 59.13 89.18 22.38 78.44 51.79 32.41 94.21 49.65 55.76 90.31 31.96 24.93 99.01 72.52 58.44 8.48 49.70 94.99 98.46 30.72 46.84 21.95 88.07 90.05 46.48 73.10 13.97 69.30 77.97 85.30 52.52 72.16 33.12 -76.43 8.64 1.26 21.67 73.22 8.03 17.17 17.49 79.67 76.16 4.13 73.96 81.32 80.35 8.92 85.55 64.75 53.63 28.56 67.95 42.33 47.64 10.86 33.93 35.51 69.64 38.93 34.15 63.87 48.90 8.61 32.06 80.44 24.63 4.68 95.16 90.24 50.99 51.23 70.35 8.26 35.46 38.57 74.52 44.04 76.50 99.75 86.79 94.97 7.00 17.51 12.82 0.77 42.11 88.67 85.70 75.39 9.29 40.43 20.42 76.07 67.94 74.09 92.97 61.74 94.65 40.89 50.93 75.72 97.09 90.96 54.43 86.74 74.38 32.67 89.61 20.28 80.85 82.66 31.39 19.41 29.95 60.89 22.25 84.50 64.31 45.93 19.80 16.01 50.01 84.62 2.15 49.73 62.85 96.55 57.23 59.37 26.72 96.14 76.39 -55.88 94.53 36.61 80.01 75.15 66.60 17.31 85.71 63.36 35.45 67.32 28.25 36.88 28.26 74.61 99.77 97.60 34.19 31.57 56.95 98.94 32.05 76.61 3.95 34.85 67.64 63.13 55.54 18.86 43.45 14.10 37.15 98.40 86.75 2.57 8.38 43.54 57.43 42.15 16.95 7.53 25.81 51.15 0.52 11.49 42.77 27.04 7.25 63.93 53.16 8.89 70.65 70.50 25.10 71.10 18.52 58.54 13.35 69.29 50.88 29.39 92.77 66.35 26.12 66.02 7.96 33.88 13.90 73.31 47.01 86.09 94.47 66.56 99.76 75.49 49.11 69.99 62.33 63.63 93.29 73.71 4.11 91.24 58.03 3.76 33.05 98.16 81.23 13.80 61.81 22.77 36.31 15.38 50.85 13.55 44.07 24.24 22.63 72.86 20.44 -96.92 61.89 19.63 45.17 12.91 48.57 21.65 15.02 15.15 65.74 95.77 69.86 87.36 67.01 96.62 62.85 82.74 44.95 3.26 98.30 76.15 17.15 10.14 20.29 97.79 61.98 40.66 88.05 29.38 88.81 59.99 90.77 55.83 79.61 94.84 64.33 8.87 86.95 11.03 90.59 73.37 72.20 17.20 8.14 71.56 63.56 8.43 57.28 15.66 23.77 68.54 8.79 36.49 50.15 92.77 60.74 97.02 35.90 51.95 87.86 94.42 67.66 12.60 83.60 38.46 5.48 24.43 85.68 47.67 51.15 64.31 28.86 97.24 16.50 94.97 86.67 45.20 81.10 36.64 55.01 68.13 22.78 12.18 95.77 92.00 85.92 42.15 48.42 27.32 99.51 14.26 87.79 14.90 82.17 15.21 56.00 41.07 38.45 35.18 75.43 -55.78 13.13 23.54 84.04 5.77 59.24 27.47 48.60 83.20 46.88 35.17 8.18 24.40 6.09 15.02 12.01 50.47 68.20 30.65 22.26 17.38 90.95 68.67 85.13 42.73 33.39 34.37 47.08 37.48 47.78 93.16 27.58 19.65 37.20 19.87 57.65 9.11 97.89 95.24 20.93 43.85 85.86 56.21 52.19 39.99 69.40 64.25 22.09 54.29 41.59 89.91 47.70 10.04 70.50 31.48 88.46 84.60 12.34 82.18 0.41 56.43 15.88 23.25 7.37 20.02 76.56 95.68 56.22 44.33 36.78 68.87 69.20 19.69 50.55 21.61 33.48 86.87 8.12 41.78 88.80 0.46 27.05 95.00 13.53 81.77 35.35 42.19 73.55 62.26 81.03 68.23 70.94 93.36 10.37 94.05 1.49 31.02 58.74 75.31 94.31 -45.94 19.98 56.66 38.74 0.20 96.33 69.50 11.10 31.70 84.75 13.77 21.97 57.21 19.38 59.87 25.97 99.63 38.89 41.72 26.03 43.78 48.71 71.59 88.21 89.14 8.35 98.95 31.42 72.10 48.24 4.59 94.19 12.83 59.97 19.71 63.21 30.78 98.10 79.75 69.92 21.48 67.25 40.05 34.87 61.61 81.89 94.26 13.74 89.00 12.23 62.29 47.66 86.30 22.43 69.47 73.30 37.94 13.91 18.84 33.65 70.26 70.83 89.23 20.81 9.90 39.47 96.61 93.26 47.80 41.03 6.05 86.10 1.01 90.94 13.98 76.14 8.28 9.19 30.69 3.33 70.02 94.07 45.03 39.60 35.50 51.65 17.75 80.37 97.63 57.75 50.01 13.20 93.98 65.52 8.91 30.41 51.72 63.16 65.56 39.67 -2.49 85.87 24.96 95.32 24.17 48.48 35.52 37.90 44.66 93.49 38.71 76.40 29.49 80.05 5.87 29.67 22.40 24.10 0.01 70.87 65.92 72.25 72.31 43.46 45.22 0.89 49.84 26.51 32.08 19.02 16.98 89.74 84.51 20.00 37.19 20.28 8.36 48.61 81.93 38.55 75.17 97.15 48.35 40.95 14.94 3.57 85.45 30.28 72.81 94.77 62.21 43.26 0.68 45.49 55.66 48.42 38.13 59.70 47.65 64.02 13.12 59.65 55.71 32.60 98.36 56.50 58.60 57.91 39.21 52.56 23.15 72.20 39.33 69.21 60.80 38.90 3.59 68.70 5.65 58.69 47.07 23.99 59.92 8.78 72.08 41.78 69.45 19.12 55.20 36.95 70.42 18.64 4.54 22.61 82.94 23.98 71.46 74.84 55.81 55.58 -76.61 1.31 87.94 9.20 15.35 56.10 78.59 28.43 67.73 37.94 37.58 10.08 3.86 83.32 57.44 48.78 60.30 26.29 42.39 47.86 54.94 41.86 58.01 43.46 70.05 29.81 77.81 5.30 28.25 27.29 35.75 44.53 44.42 77.90 60.10 8.80 77.71 89.65 97.06 36.21 79.81 11.87 41.98 46.11 42.78 19.62 25.05 78.44 87.13 69.02 46.71 41.55 79.87 76.02 60.25 54.68 58.54 29.55 8.78 54.29 16.52 4.06 68.74 41.28 39.44 52.70 53.95 19.89 99.87 54.03 24.29 89.06 67.87 14.69 17.05 90.18 90.51 21.14 71.37 73.98 25.95 48.13 8.96 79.75 30.42 64.07 54.11 34.53 68.96 11.35 53.15 91.01 76.99 45.81 95.96 43.81 71.74 40.39 75.20 89.46 -66.19 72.31 45.76 32.45 40.09 21.40 63.10 47.36 87.50 66.81 3.74 9.33 99.47 7.09 42.31 45.37 0.11 17.69 93.05 32.41 19.31 61.18 69.11 68.16 88.42 32.91 99.75 3.05 17.15 16.14 80.60 60.37 31.23 89.53 70.96 66.96 43.34 11.62 81.85 54.91 79.80 15.09 69.64 49.72 82.23 70.27 43.25 55.12 65.41 8.10 9.36 19.95 78.91 91.12 73.99 93.54 24.88 13.29 73.24 66.87 38.67 46.41 95.44 33.01 69.98 76.11 32.92 0.05 52.68 21.27 27.01 68.19 7.90 48.94 3.35 76.15 48.49 85.98 63.91 97.32 82.93 68.13 11.41 71.19 2.93 50.58 91.01 59.29 27.12 53.16 52.11 82.00 25.63 35.15 3.96 86.67 86.63 93.18 61.92 87.32 -46.50 49.20 74.40 98.12 80.73 46.24 27.26 38.53 80.67 36.12 81.07 29.37 28.22 51.31 37.36 62.09 11.33 60.50 58.79 32.56 1.43 17.70 5.80 25.14 61.12 66.46 10.43 31.17 71.20 9.59 35.52 79.45 35.26 6.49 83.56 59.63 87.71 98.38 15.60 43.72 75.48 59.57 84.45 87.95 35.51 13.43 51.23 99.56 27.43 66.24 3.75 3.38 47.72 28.32 11.83 69.99 36.64 82.28 86.88 66.47 98.67 5.81 92.29 43.51 90.66 86.15 63.89 96.92 64.11 7.98 92.36 8.35 53.35 35.25 72.82 46.48 99.77 28.80 13.58 6.97 13.71 12.86 68.70 98.62 76.77 96.59 17.36 70.62 74.92 1.85 13.94 19.00 62.05 10.16 52.80 87.48 46.01 61.89 42.55 69.36 -88.02 48.49 86.24 0.80 23.44 12.68 93.01 64.90 61.94 86.68 3.51 44.74 91.82 67.17 83.03 44.90 46.68 88.71 59.99 26.29 19.22 13.14 30.36 24.79 4.80 13.81 42.52 73.36 34.57 52.61 94.30 3.61 73.50 57.34 52.95 86.16 3.38 82.99 25.55 85.81 72.61 70.84 30.47 10.12 9.25 6.92 84.89 39.48 46.62 86.41 31.11 65.13 37.10 9.40 71.25 94.70 47.60 96.62 78.81 88.69 1.90 15.38 64.80 65.64 80.95 80.56 15.78 95.43 2.49 46.24 0.49 17.95 95.01 65.27 39.79 21.53 40.85 65.41 23.53 48.11 31.21 27.23 17.28 66.20 79.36 27.64 3.59 15.87 36.97 95.47 80.25 0.58 56.88 17.83 90.51 94.78 74.18 14.25 43.88 94.57 -58.86 79.31 91.65 14.63 75.25 32.44 24.85 90.77 61.39 93.27 35.73 65.36 99.08 24.18 1.35 64.63 52.30 58.73 47.26 3.01 73.47 38.17 36.17 85.10 6.19 24.56 7.29 94.00 90.83 32.22 66.08 58.93 13.67 44.66 13.66 75.37 52.04 79.12 82.53 99.77 71.01 96.90 89.86 5.63 86.28 10.20 42.77 60.07 7.35 44.52 60.01 38.07 37.48 57.23 65.76 41.52 79.36 22.78 70.77 29.55 46.60 40.87 79.63 78.19 64.93 49.00 21.47 67.89 68.14 86.40 25.95 75.36 41.85 28.90 86.29 8.13 81.72 53.91 29.23 4.00 66.87 79.64 99.85 79.43 86.92 22.56 2.45 37.81 6.91 32.29 72.49 53.23 63.94 2.99 12.40 67.56 40.93 56.02 95.53 35.01 -70.85 47.67 32.52 63.01 40.41 10.95 57.19 13.16 75.41 17.91 40.11 67.05 98.58 87.75 97.76 39.41 90.09 26.75 58.50 30.41 13.29 97.09 31.43 88.39 38.54 27.90 91.25 11.70 36.28 34.22 4.61 45.99 83.80 0.44 13.19 98.14 39.24 24.74 75.56 35.93 30.59 89.08 9.29 2.79 38.29 39.21 73.44 33.45 44.40 58.20 9.86 71.57 65.24 81.02 65.30 50.83 35.51 8.57 24.62 48.10 34.20 31.23 17.56 31.49 14.56 28.38 99.98 73.92 6.58 13.18 30.81 78.82 84.41 76.49 68.41 42.49 33.48 97.63 63.25 77.61 74.58 80.04 34.39 87.26 28.88 94.38 95.85 54.70 5.97 55.88 80.19 12.26 46.36 19.01 2.28 18.08 31.27 81.05 64.10 82.89 -25.54 17.36 43.08 47.18 15.09 79.44 47.53 71.25 1.14 2.48 36.87 70.19 67.56 38.20 7.70 13.67 22.71 9.80 82.63 12.55 46.79 95.60 97.26 39.05 99.17 60.98 79.39 38.11 94.18 28.81 47.57 15.02 63.02 1.46 43.77 67.20 21.48 57.49 62.81 37.97 14.29 31.23 10.97 70.24 67.22 11.42 38.82 43.93 3.86 91.30 75.02 64.86 31.57 15.25 77.18 19.06 47.77 1.59 16.85 48.36 56.30 86.66 60.27 18.94 23.65 54.86 53.03 41.36 25.14 79.18 88.89 59.34 35.11 34.39 97.46 24.10 21.17 95.29 77.28 1.66 83.91 76.98 70.35 55.27 10.48 87.72 61.56 68.12 77.15 67.57 70.13 63.26 22.64 0.56 63.34 40.27 22.10 72.10 20.58 79.20 -55.93 70.52 49.61 20.01 52.85 85.18 76.71 88.00 64.00 15.45 59.46 91.99 12.44 95.23 5.25 20.70 32.89 96.95 25.10 81.42 84.06 64.51 98.73 12.94 78.41 95.49 87.80 33.89 95.82 65.70 50.42 66.26 15.49 67.91 40.69 3.06 96.39 29.11 64.62 18.24 54.55 27.70 76.38 61.78 40.60 58.88 84.88 54.51 42.16 92.03 17.26 15.16 74.92 71.44 95.09 9.47 21.55 63.40 75.74 37.53 91.62 96.15 25.84 95.10 79.37 47.58 71.38 84.86 40.51 3.05 37.33 68.37 8.10 40.17 11.68 84.29 10.39 86.35 3.46 45.50 1.77 95.49 40.43 34.09 23.30 90.09 52.38 22.78 50.84 83.62 36.64 5.42 59.51 28.90 22.43 19.75 27.76 50.32 62.22 49.37 -67.16 69.16 88.15 40.41 31.56 84.70 75.90 93.84 19.92 36.51 95.94 76.79 19.33 82.87 26.64 12.46 63.59 97.33 93.58 46.30 12.13 99.42 14.16 9.92 63.46 87.90 58.66 20.82 94.99 74.22 4.53 83.08 86.46 18.12 66.93 99.88 74.72 88.02 75.56 94.04 90.11 91.42 3.20 7.17 23.94 56.85 63.53 82.62 48.95 87.34 20.94 78.36 60.72 93.23 50.90 90.17 14.99 23.60 49.97 55.55 52.85 96.42 93.05 40.64 66.63 7.04 78.66 87.12 59.93 21.45 77.58 49.30 36.23 58.32 25.71 30.31 19.10 48.66 34.03 4.02 2.71 43.94 79.22 33.08 9.58 64.18 24.44 94.51 29.47 43.74 37.84 34.11 34.36 14.19 34.17 82.35 50.89 20.48 68.67 90.11 -91.56 60.21 84.04 93.92 99.65 11.37 97.33 84.55 77.67 16.50 51.34 91.17 54.35 88.32 36.56 55.45 97.22 19.98 2.07 7.89 98.08 39.20 89.32 29.30 6.01 38.32 90.59 63.57 71.48 35.75 77.79 58.17 71.06 33.66 88.07 34.34 54.13 2.85 23.49 29.11 25.28 5.78 70.79 77.02 13.97 84.29 25.61 60.86 33.48 84.34 74.32 55.89 23.59 80.15 28.70 28.87 80.12 98.55 24.93 28.31 91.75 98.24 85.82 1.70 53.31 59.50 15.50 19.18 82.38 0.55 2.56 9.67 84.48 99.47 50.01 77.86 6.65 13.55 71.65 26.53 15.74 93.44 85.36 29.62 90.61 60.28 74.59 73.41 96.79 58.28 2.79 39.20 0.56 20.19 9.56 37.85 67.57 63.66 39.42 9.50 -97.74 70.90 73.55 97.94 32.46 71.76 53.69 36.07 21.22 5.58 33.04 68.84 64.69 67.35 57.87 66.40 85.79 10.39 31.20 88.26 62.54 45.57 29.09 64.42 91.76 31.14 0.05 58.39 49.45 15.99 55.89 51.56 72.82 50.01 42.95 27.51 92.79 45.16 2.65 23.11 27.27 93.59 10.32 1.25 59.00 90.16 55.85 14.44 90.29 62.58 54.39 96.74 99.15 69.80 47.21 78.13 69.15 69.73 6.80 15.30 70.64 88.43 45.98 36.47 90.40 90.29 51.38 62.49 29.85 84.14 83.88 53.38 4.74 24.26 76.50 57.25 68.95 98.33 78.71 71.10 16.54 35.26 69.47 19.31 18.29 66.61 42.09 0.76 23.96 56.43 30.06 34.53 68.06 51.23 96.33 32.58 4.71 52.68 79.15 69.61 -86.21 13.23 30.31 11.57 69.83 67.85 60.07 37.76 65.75 28.87 71.85 94.77 52.01 51.98 81.78 44.82 22.83 28.45 74.18 66.98 82.17 12.29 4.85 36.69 79.40 29.84 34.73 47.89 96.42 10.69 17.64 14.33 84.37 50.02 48.75 42.41 17.00 68.50 11.71 4.28 68.89 99.61 35.43 84.16 35.79 81.55 33.79 44.46 58.14 67.21 82.18 64.40 27.71 17.67 11.23 37.01 52.83 56.88 32.40 9.73 82.94 9.69 50.05 91.75 61.40 42.15 60.37 3.75 84.34 77.30 75.11 54.85 13.73 36.31 45.34 69.41 14.28 0.60 36.50 13.06 42.45 86.25 69.30 88.24 58.58 37.58 9.64 69.72 51.50 48.38 29.81 18.55 87.83 12.01 71.71 93.81 64.51 44.22 31.57 26.21 -70.13 52.43 94.66 59.16 60.32 92.36 53.26 27.67 80.15 73.23 55.08 61.77 49.04 50.40 20.29 64.53 98.18 2.46 71.80 60.67 2.05 3.12 69.97 88.67 81.01 40.31 20.64 58.93 5.55 17.23 13.03 80.97 11.49 25.59 62.67 70.17 36.70 57.21 97.02 7.19 88.95 88.73 84.03 14.52 23.99 21.70 51.67 65.14 8.55 80.12 13.71 31.65 82.72 30.38 13.25 42.49 62.07 39.54 62.42 98.66 62.28 98.70 20.88 43.87 77.86 11.07 80.55 96.66 55.99 84.19 19.21 17.07 68.55 47.36 67.52 80.35 5.94 57.19 45.45 24.77 58.34 83.82 52.21 45.67 4.12 66.06 96.82 73.37 52.74 64.20 88.13 92.38 22.00 11.44 93.06 13.32 74.02 47.35 84.66 0.11 -48.49 40.94 35.49 60.24 54.58 31.86 15.09 2.85 47.35 63.66 95.64 81.61 64.99 86.44 78.95 14.54 0.14 28.98 2.80 51.11 53.78 41.24 69.50 93.86 53.49 39.49 88.15 70.37 12.12 45.68 68.55 91.92 32.21 72.58 3.06 33.08 20.66 1.25 55.61 85.44 9.13 13.87 18.14 13.45 73.35 41.44 97.41 92.38 32.31 19.68 68.72 78.50 90.77 20.29 88.37 22.66 16.22 44.36 34.45 30.37 5.10 92.22 70.02 32.01 33.46 38.79 31.05 74.44 55.60 65.11 42.50 74.00 16.47 22.28 5.81 70.72 13.73 36.50 98.44 82.33 4.76 84.73 84.55 47.98 54.83 33.87 57.00 48.94 8.81 61.58 38.52 40.92 15.92 55.78 40.46 3.94 33.09 68.59 36.88 10.19 -36.99 98.87 3.58 66.79 76.31 6.34 65.36 5.37 62.89 10.49 19.90 24.19 83.59 11.52 16.62 52.03 86.81 30.74 39.43 37.97 32.33 95.97 9.84 38.85 66.24 34.75 31.85 71.97 16.95 13.31 45.61 21.15 51.18 13.02 58.24 92.57 10.54 98.04 83.67 56.95 34.96 14.62 86.07 91.40 95.94 67.49 73.77 72.59 91.54 56.23 47.62 12.72 55.40 83.43 37.59 91.69 27.44 51.09 65.05 83.47 16.52 63.28 49.63 98.11 25.93 90.58 70.76 33.66 29.67 53.16 24.74 52.99 56.94 43.58 57.05 44.80 38.56 57.90 24.08 63.27 92.51 26.76 2.57 96.63 47.80 94.59 46.89 17.49 3.68 47.36 52.54 14.25 85.99 41.55 40.91 23.24 6.10 65.66 84.70 88.51 -7.89 27.07 97.11 12.39 30.91 52.72 68.12 89.89 81.54 78.13 70.64 35.71 83.43 85.24 53.80 57.00 2.70 62.32 77.51 71.00 9.70 88.52 24.50 68.32 61.65 86.75 94.82 11.89 15.37 67.11 19.54 31.61 91.56 40.40 63.37 32.33 38.05 77.97 60.62 87.82 25.30 62.62 27.29 53.17 78.36 9.21 51.11 98.65 70.16 90.57 4.55 38.60 17.24 3.21 95.43 76.03 35.54 35.55 86.43 75.38 44.58 11.76 66.26 95.48 82.61 36.63 46.20 43.12 94.19 96.63 43.54 43.03 55.79 37.50 70.50 80.36 47.89 52.00 18.44 55.56 45.86 43.81 50.54 10.59 73.19 74.11 58.41 84.96 95.95 66.98 60.45 86.55 93.76 83.11 7.93 86.89 36.01 42.78 73.39 48.54 -48.86 41.43 47.15 0.87 44.75 87.46 93.91 20.37 58.09 19.37 53.57 52.13 70.94 11.96 77.02 96.00 26.96 56.92 31.33 76.34 20.28 71.15 40.20 94.40 65.33 21.36 16.77 36.91 99.24 98.30 83.26 0.10 6.83 71.51 93.52 11.53 77.47 19.23 3.40 92.64 85.34 35.99 34.25 22.62 76.48 4.21 89.75 77.29 41.95 55.39 65.61 6.28 95.63 34.65 55.81 84.42 20.60 81.11 75.01 12.27 33.21 71.88 60.12 73.52 6.38 84.33 46.50 38.51 59.17 86.22 15.42 90.60 7.24 2.74 16.57 29.75 30.91 99.59 83.29 20.69 48.51 36.04 70.16 70.68 77.57 70.41 54.92 19.65 71.55 52.18 96.39 22.84 58.71 38.45 53.36 21.73 27.53 80.06 74.30 85.22 -78.74 90.75 76.84 95.47 30.76 8.12 42.18 10.41 4.04 37.70 15.37 67.97 20.02 81.01 81.73 77.69 74.37 37.27 86.49 14.44 45.03 40.76 45.05 0.94 10.80 92.09 91.33 35.89 40.28 90.21 12.87 49.88 24.61 57.43 48.04 9.99 68.09 83.58 18.40 99.25 69.73 91.17 95.36 28.69 20.94 57.68 23.37 79.91 38.16 28.74 6.65 56.08 31.95 50.16 54.07 22.97 68.37 2.39 10.32 53.89 19.31 19.96 12.48 8.44 66.40 25.26 54.61 17.23 27.11 74.34 79.55 22.44 13.59 25.14 21.00 1.26 18.21 52.09 85.86 68.42 64.46 82.93 17.08 85.04 71.37 32.52 61.16 84.48 45.01 68.46 42.18 63.41 98.17 73.92 47.27 35.58 69.61 59.01 39.94 11.10 -67.61 16.86 75.90 48.80 25.92 75.87 83.25 81.08 56.78 22.25 71.99 91.03 16.72 45.37 35.50 26.85 70.09 92.11 20.46 57.51 91.42 37.51 22.85 27.36 7.31 32.50 99.82 4.98 85.54 11.75 4.01 44.53 36.99 84.56 59.45 89.33 84.12 61.06 93.05 50.85 34.80 75.87 8.50 41.79 38.76 78.90 61.40 99.49 90.12 56.58 89.07 74.53 73.99 29.23 63.20 3.64 42.29 92.99 66.77 48.16 18.37 67.48 53.42 45.57 73.04 51.19 7.87 47.31 84.10 93.65 84.24 6.10 64.25 47.37 3.52 66.62 9.38 61.96 59.75 9.82 92.05 39.95 85.66 90.36 3.46 4.84 99.44 71.26 9.54 50.24 21.94 91.71 45.70 23.06 1.92 36.85 90.82 79.34 2.49 70.52 -60.15 79.53 84.94 63.56 59.08 18.33 74.75 41.74 65.24 76.53 43.66 35.90 74.06 33.83 90.51 68.89 18.51 91.49 28.73 80.33 66.70 83.64 32.98 63.88 84.17 76.57 6.13 97.98 49.65 63.49 5.05 26.68 8.08 18.92 33.69 19.56 69.21 62.28 17.57 34.95 0.29 56.67 91.88 58.38 79.59 10.20 96.83 34.69 41.42 93.35 14.48 59.12 58.19 27.21 34.67 38.91 81.22 48.79 68.59 77.46 43.05 65.90 35.39 6.49 84.60 24.03 59.78 72.77 58.13 65.76 29.80 80.33 13.81 53.07 15.20 40.66 41.31 44.91 90.95 34.02 80.24 90.18 63.26 16.47 18.68 0.16 76.04 94.33 41.88 98.77 12.14 10.40 71.89 64.12 33.14 10.69 23.61 42.50 72.27 69.97 -88.32 25.57 45.11 89.81 55.96 38.22 63.84 89.33 89.92 3.39 75.88 97.38 46.28 79.64 60.29 66.20 6.32 31.96 74.82 69.22 40.97 92.89 56.50 92.29 27.02 98.38 62.34 24.94 59.22 36.81 3.77 63.33 23.98 92.37 0.93 56.06 66.29 24.75 71.63 15.63 37.94 46.16 74.07 14.32 38.09 97.18 7.15 73.38 7.82 9.25 56.01 79.13 58.03 73.32 83.57 35.45 4.16 95.49 29.64 84.40 96.23 27.79 1.86 88.27 91.37 47.74 98.40 49.93 65.53 13.89 63.12 26.68 88.38 74.45 71.48 99.43 86.64 26.30 18.21 36.68 92.77 61.18 25.86 43.20 53.31 23.53 48.71 89.35 7.36 34.99 0.10 86.47 2.60 90.02 86.83 99.84 89.64 59.05 15.84 63.93 -29.15 14.81 13.11 91.87 52.12 21.06 2.60 91.48 13.79 38.43 10.40 93.64 98.37 28.56 54.21 57.52 15.49 43.75 39.33 5.96 63.44 70.95 70.54 99.43 53.51 27.04 60.82 30.95 48.81 30.15 3.84 7.69 28.96 90.46 47.54 35.53 62.14 44.62 19.96 50.07 61.54 91.33 49.31 61.82 93.12 77.31 3.75 54.70 5.22 65.26 97.02 33.75 70.55 89.66 75.02 82.55 53.98 23.16 95.19 70.62 32.46 81.39 50.88 41.78 34.60 94.65 97.75 81.68 12.88 50.99 77.90 71.23 13.08 10.79 34.82 83.11 65.25 30.36 6.08 19.32 18.00 80.67 54.55 20.61 35.81 32.99 14.58 76.57 30.80 37.01 56.75 15.03 25.65 51.86 11.27 22.01 67.11 80.35 56.37 2.94 -84.93 56.16 4.62 37.52 68.59 96.15 79.03 27.35 0.75 3.44 13.95 22.19 33.73 18.81 15.08 18.33 31.00 39.31 41.54 22.97 12.13 56.46 7.34 32.31 42.81 68.20 17.38 32.09 85.89 25.88 57.22 34.26 2.25 5.76 36.32 45.02 4.83 20.01 78.30 48.26 18.82 85.05 91.79 98.55 76.04 57.83 89.41 37.35 31.46 84.33 24.66 86.00 31.39 20.81 16.24 88.37 76.70 22.98 39.94 92.93 86.06 15.60 15.14 35.67 38.38 88.96 56.24 30.46 87.95 60.46 21.46 47.37 23.06 2.18 12.06 71.87 9.66 13.08 77.55 12.54 26.66 35.41 51.08 30.98 46.95 65.76 67.39 3.47 85.74 99.42 16.79 74.08 63.04 72.00 2.95 94.89 79.27 6.60 57.79 94.49 -61.39 7.51 97.75 80.01 23.89 99.42 11.42 10.25 95.34 63.56 44.76 95.15 64.04 51.85 28.66 4.50 54.89 99.51 51.85 14.92 31.11 12.56 44.38 44.61 85.03 88.03 0.63 31.12 91.05 78.71 29.29 20.82 74.13 33.49 99.82 2.02 63.30 15.60 98.43 3.00 9.29 88.55 4.23 55.82 1.30 40.73 50.29 30.81 83.10 28.25 5.82 21.53 58.76 95.50 70.44 89.19 87.64 24.87 8.22 80.90 44.33 82.22 11.96 74.42 0.45 75.41 12.44 5.74 73.36 53.13 24.68 30.12 28.21 12.40 99.76 77.16 57.51 8.91 29.50 87.16 71.29 77.79 51.65 88.49 93.80 67.02 35.74 76.04 1.75 82.88 4.98 18.24 53.97 50.00 72.63 53.55 68.29 41.02 67.83 74.55 -38.24 15.92 55.98 3.15 38.19 33.16 30.49 77.78 98.34 43.66 2.80 15.25 38.34 83.21 56.91 93.13 74.07 75.28 97.14 55.19 29.42 61.84 28.70 60.20 53.71 29.46 79.32 12.40 33.82 46.10 51.23 0.90 5.63 22.20 87.22 95.74 49.51 51.98 96.72 51.43 22.08 38.54 93.52 14.24 16.91 52.86 28.24 89.88 28.59 43.18 47.07 84.84 13.29 3.54 50.52 32.18 4.38 16.95 45.27 45.82 42.07 17.94 23.64 4.63 68.72 40.59 9.20 74.36 24.60 19.84 74.17 87.22 10.97 86.84 90.37 16.36 14.10 77.26 61.59 52.11 67.63 7.40 17.82 47.95 53.86 7.72 76.05 24.39 74.13 3.65 49.09 52.31 35.53 8.16 29.77 72.04 24.21 46.16 41.15 56.33 -48.59 29.10 94.46 76.51 88.15 26.72 67.71 53.85 98.25 62.46 52.90 0.74 91.39 93.77 27.85 48.16 0.00 63.14 17.54 65.74 23.42 64.04 53.33 42.59 32.84 46.02 49.42 29.50 66.24 55.54 24.43 16.87 35.90 69.26 58.47 6.17 90.28 43.36 89.86 51.70 82.04 62.26 37.88 18.24 62.90 60.27 48.83 28.98 43.58 42.23 37.44 2.85 60.94 53.32 81.01 99.05 65.60 83.85 92.30 18.54 68.84 87.49 32.49 22.41 7.78 54.81 86.97 12.52 1.41 17.31 1.10 10.69 2.35 10.78 23.34 7.08 63.30 28.53 41.14 13.14 20.47 79.18 10.76 81.66 27.75 55.75 50.17 50.57 48.13 15.57 52.89 64.31 93.67 84.15 24.06 36.52 48.78 71.65 29.61 9.62 -9.69 96.96 84.05 63.82 57.36 36.52 41.43 8.92 78.60 9.93 13.95 0.77 86.82 13.73 7.03 50.69 76.35 73.39 47.55 29.14 57.07 48.31 4.56 65.07 94.42 27.65 25.86 17.57 85.04 38.49 5.57 70.99 18.31 70.87 31.84 7.92 59.31 57.24 10.42 10.54 31.50 5.21 21.05 84.27 16.55 81.47 39.31 29.43 42.43 42.52 26.90 33.52 29.56 39.58 88.43 89.37 73.36 73.03 7.20 16.34 53.24 48.92 14.76 40.36 95.22 88.09 2.58 31.35 10.76 50.27 7.64 54.46 80.35 98.90 40.31 56.70 25.40 71.08 69.94 12.25 2.39 10.23 89.43 54.30 6.12 14.37 7.71 38.46 3.76 89.94 57.17 93.35 4.22 29.16 69.64 52.49 89.64 78.11 38.48 5.90 -80.64 56.81 99.09 31.04 25.41 45.65 20.89 63.90 10.05 86.77 64.06 35.47 65.94 10.43 85.97 35.86 46.99 4.42 88.85 16.62 49.22 67.01 87.30 84.90 13.32 38.56 87.50 21.77 71.09 44.77 71.54 39.69 6.88 26.61 4.75 24.20 36.64 51.39 38.16 63.91 23.69 68.22 82.86 10.80 96.98 39.18 9.89 50.15 25.35 37.79 59.77 40.74 64.76 65.78 53.37 16.29 24.35 80.74 47.64 58.38 0.79 88.65 25.12 98.64 54.85 31.69 57.50 41.03 49.90 85.81 23.02 32.18 16.89 93.59 41.08 88.17 0.72 94.73 94.11 90.50 42.23 86.96 70.12 40.00 96.50 39.67 70.74 1.06 59.88 77.19 13.35 67.16 75.52 47.48 59.31 86.52 61.54 12.79 41.20 37.43 -12.51 31.94 8.84 19.33 47.91 33.07 7.71 83.30 30.41 23.58 24.11 53.76 78.17 2.93 12.05 2.95 71.87 22.01 41.58 74.40 4.08 79.67 61.08 75.14 51.42 51.69 75.65 68.64 10.08 85.82 18.84 92.97 56.81 65.45 62.49 79.78 50.06 23.48 28.66 79.65 96.57 22.86 71.03 1.12 11.53 0.05 48.04 40.80 66.87 12.57 89.99 33.08 14.90 18.04 89.76 23.37 11.41 69.05 26.91 8.91 95.42 58.51 87.17 13.74 63.69 70.28 1.21 69.75 96.54 66.62 72.57 54.18 66.72 33.14 31.41 27.64 66.38 79.09 70.19 24.96 33.59 13.94 97.48 15.74 56.69 3.53 46.96 91.93 79.06 64.31 70.55 87.18 59.40 98.76 48.70 43.44 80.29 71.96 80.80 98.07 -92.80 2.23 19.22 30.64 68.83 15.77 41.92 33.79 27.02 79.15 0.97 50.08 16.50 72.99 43.76 80.63 0.81 44.12 55.86 31.28 92.63 66.55 6.19 37.47 98.39 33.54 65.44 91.29 39.25 32.30 82.10 17.50 62.57 24.99 38.63 29.74 68.24 88.07 12.22 63.74 14.45 2.85 37.44 60.37 97.12 97.06 12.00 35.39 85.93 51.44 48.78 4.62 14.40 9.35 1.03 92.71 44.43 89.93 8.23 70.28 86.58 12.49 52.36 59.49 18.58 57.14 3.10 86.15 19.39 17.93 84.38 28.34 33.51 33.57 80.39 31.89 66.15 40.19 26.23 93.83 10.72 39.93 72.84 35.26 78.76 92.42 24.93 4.78 57.96 75.96 88.70 11.21 78.68 5.35 64.63 23.22 39.48 32.55 13.05 20.77 -97.75 4.94 46.37 2.16 59.33 66.83 13.81 65.38 71.42 72.37 92.31 45.07 0.62 60.41 65.66 75.81 94.21 47.86 8.04 78.36 99.79 19.89 9.83 97.45 13.06 61.66 61.43 70.97 83.89 99.60 95.94 20.03 19.07 38.07 50.63 21.51 15.99 32.98 42.94 39.73 87.86 60.06 98.48 4.75 34.19 15.83 44.05 27.74 5.99 78.98 85.01 36.12 63.20 80.50 46.35 75.43 28.58 97.76 18.95 90.63 16.73 78.38 58.51 63.77 69.66 89.11 16.05 11.55 13.86 92.15 51.13 21.66 91.91 72.13 96.10 8.06 21.29 45.44 74.32 7.03 74.44 83.43 12.68 55.28 98.10 67.45 65.45 13.71 81.87 62.37 71.80 88.76 27.91 88.14 40.72 23.42 56.11 20.13 55.97 71.24 -48.61 16.40 90.90 20.97 93.43 21.03 2.66 9.30 67.19 94.08 39.51 37.00 4.88 17.79 56.70 49.61 77.15 87.03 83.17 3.63 85.23 53.09 45.03 22.45 52.66 29.07 70.30 5.23 23.51 58.50 8.70 78.44 97.01 51.34 54.21 34.26 3.96 14.00 18.26 55.62 89.25 60.56 89.41 95.19 44.25 46.89 73.73 95.97 7.75 36.84 77.00 31.09 52.42 1.17 88.85 6.72 94.65 28.90 20.93 77.63 53.83 38.38 58.14 98.17 22.23 87.71 30.57 87.09 99.00 78.98 98.30 43.84 48.15 2.02 13.54 6.81 59.15 83.47 66.03 3.31 29.87 75.13 62.92 7.77 21.51 4.89 27.13 16.46 17.67 73.77 38.68 50.72 25.53 26.84 26.41 55.75 93.07 58.95 26.54 26.70 -18.16 1.28 74.72 63.02 95.33 88.87 9.93 82.77 37.36 34.90 8.97 71.88 60.95 95.57 63.85 97.68 60.71 38.20 68.49 78.35 90.51 20.79 10.84 96.13 25.10 36.75 89.25 47.93 77.19 50.30 16.21 50.80 90.23 24.39 59.16 77.18 95.48 71.31 50.60 90.61 14.67 75.29 92.54 56.24 19.73 62.98 91.75 28.63 61.03 91.26 99.97 66.16 0.97 52.78 69.85 13.94 42.94 68.21 93.55 78.93 44.03 93.82 12.18 11.71 32.96 95.57 88.17 87.69 97.23 72.83 93.23 84.50 72.10 79.91 9.09 63.53 31.38 98.43 32.02 87.18 30.05 53.55 53.45 56.17 2.54 64.31 2.35 73.30 55.36 95.02 54.69 35.51 51.95 59.10 61.66 3.06 53.71 55.72 77.33 78.91 -84.81 20.99 25.57 17.57 44.47 52.64 29.91 57.53 35.25 11.74 10.04 63.47 43.30 61.86 71.36 2.14 99.66 60.20 2.03 99.44 28.84 9.69 46.07 23.59 58.51 79.82 91.59 17.70 21.63 59.57 82.60 63.55 42.15 92.88 95.96 3.26 1.54 73.81 22.51 5.25 87.77 85.70 3.84 2.27 36.23 59.04 46.77 19.88 80.19 63.06 92.30 1.21 36.17 57.82 79.28 18.93 60.59 82.88 74.38 92.41 47.44 22.70 66.84 83.89 83.50 73.19 7.17 23.63 5.27 54.73 44.85 5.26 68.34 33.94 87.91 91.77 89.85 10.99 13.56 87.55 14.94 79.83 85.31 96.92 93.78 59.06 74.31 3.92 42.83 47.32 17.72 75.37 79.53 8.70 25.98 9.54 54.42 92.09 18.73 51.40 -88.80 43.99 25.12 52.92 23.03 77.74 82.52 12.88 2.12 57.72 63.98 98.60 16.26 35.15 4.72 96.75 98.16 27.74 18.12 75.27 42.85 65.75 18.25 59.24 71.07 94.24 33.22 36.44 15.80 88.42 97.62 47.01 13.72 23.67 72.21 30.98 8.42 86.63 70.26 71.65 15.68 57.33 74.73 61.19 91.01 52.37 33.51 86.84 67.99 79.05 77.51 4.53 62.55 11.03 90.21 38.02 8.77 22.29 81.36 72.05 17.83 20.55 1.60 77.97 25.62 79.98 39.58 72.88 24.13 2.93 18.23 89.25 43.11 83.79 23.65 56.59 54.57 41.40 99.62 76.26 33.22 81.66 42.82 33.75 46.52 78.15 48.51 51.18 80.21 94.91 6.48 18.47 16.95 58.32 78.01 37.09 64.79 65.41 11.78 33.19 -55.70 73.99 75.48 98.30 25.08 50.94 16.29 67.25 72.26 26.60 61.41 70.53 18.40 49.12 83.57 65.53 91.33 7.44 45.13 90.31 9.77 29.58 49.94 48.30 96.36 24.00 91.22 41.85 40.30 25.56 13.06 47.67 57.38 60.82 69.11 14.14 86.17 76.25 92.39 59.52 68.61 50.85 41.66 29.28 48.05 87.58 97.02 12.08 70.53 91.31 67.95 62.07 65.72 58.22 76.81 79.13 55.35 11.89 8.40 75.56 75.89 91.55 64.33 94.70 90.01 36.70 76.83 42.80 86.36 79.44 63.75 50.80 81.26 70.53 24.79 86.66 21.95 36.83 17.47 45.11 81.28 63.68 53.94 83.86 4.23 95.94 17.58 24.91 22.29 80.96 28.70 66.70 75.49 33.73 31.95 44.06 52.16 36.75 55.17 20.44 -54.05 56.09 23.90 5.98 68.46 3.89 42.23 63.95 95.53 42.95 59.50 30.18 1.44 97.41 59.99 84.06 2.20 3.28 91.67 43.83 42.02 39.11 27.10 81.78 37.39 18.38 67.10 33.24 76.19 17.77 24.64 84.57 50.87 2.51 80.03 80.85 4.71 68.78 4.55 64.51 10.26 93.09 59.23 54.48 20.60 63.13 77.15 77.77 2.21 7.68 73.49 78.94 40.19 40.23 89.67 1.71 22.93 26.11 34.23 47.45 55.31 47.63 70.23 53.44 29.31 40.85 34.28 21.67 15.22 84.60 44.03 3.40 2.60 5.75 7.42 73.53 63.09 71.90 60.92 14.61 42.45 60.74 97.54 8.46 34.04 13.58 25.17 64.52 17.76 87.43 74.04 41.63 70.66 34.07 20.39 96.25 34.97 53.74 26.88 63.03 -83.83 37.95 99.17 48.88 72.50 42.41 36.69 23.51 81.37 4.58 80.93 73.20 53.40 37.32 38.66 74.93 88.19 27.75 87.34 39.05 43.98 43.88 30.47 34.15 82.43 62.74 76.24 88.70 38.16 71.27 16.03 20.22 38.33 90.64 71.09 3.50 60.05 57.44 36.93 95.37 28.37 34.82 37.49 94.08 48.53 50.43 76.91 73.94 2.90 19.86 69.18 8.12 26.33 81.83 18.43 18.08 29.92 25.50 54.99 44.65 59.32 93.70 70.93 30.52 43.52 60.79 30.04 13.70 84.88 95.71 67.78 17.75 89.82 89.94 82.07 25.71 71.99 64.40 71.95 19.52 58.96 83.34 74.93 99.68 12.89 81.31 21.28 29.26 54.01 84.43 7.24 3.52 51.08 8.52 43.71 62.89 37.49 85.19 33.71 94.98 -89.37 53.14 60.74 1.28 16.66 92.64 88.13 18.82 25.07 44.70 15.84 36.39 21.75 72.09 88.90 91.25 50.15 52.31 30.57 6.74 84.54 43.11 52.36 30.14 18.50 70.95 28.08 71.31 3.28 52.09 35.05 19.89 84.61 47.85 56.70 36.83 29.89 82.64 59.05 52.38 88.44 53.00 12.97 24.39 52.84 29.69 89.56 48.57 7.41 97.34 84.34 6.51 98.21 98.76 70.99 58.23 81.01 23.86 97.13 37.24 33.39 92.70 26.22 64.11 27.53 53.04 42.87 2.61 69.13 56.62 82.14 52.83 45.08 70.39 75.90 65.53 82.15 47.11 65.12 96.08 40.20 7.79 57.85 58.44 54.67 59.83 88.82 12.40 4.14 46.07 92.95 72.29 20.68 76.75 26.40 16.44 48.71 42.84 78.02 89.90 -67.25 25.09 37.18 48.08 41.23 28.56 43.26 42.54 37.42 50.49 53.62 35.08 23.41 20.94 74.30 27.74 48.67 45.75 43.63 85.39 53.91 16.57 19.55 27.88 58.38 1.69 84.20 91.45 65.90 47.17 94.95 77.17 72.55 40.08 80.51 75.30 12.05 90.01 83.34 4.11 33.97 22.62 30.72 8.03 64.94 11.69 64.17 80.42 1.31 27.55 11.49 2.47 85.28 48.49 56.26 15.73 79.43 44.88 77.71 38.32 32.44 20.92 76.87 4.40 59.81 3.13 42.27 1.16 54.15 30.48 70.26 94.24 34.91 20.60 44.87 6.66 4.30 66.31 21.04 33.66 48.59 17.91 69.05 45.69 57.30 18.80 24.70 73.45 9.51 63.87 25.85 36.83 39.28 90.71 8.37 43.69 95.33 8.95 28.60 47.35 -1.72 76.29 48.63 77.98 17.98 84.57 58.02 24.28 40.31 34.57 12.95 47.30 20.06 3.66 21.86 83.97 34.11 1.71 94.13 94.31 6.41 71.21 31.22 73.49 4.50 45.87 50.89 31.63 28.59 59.95 79.51 49.03 90.98 67.87 34.27 57.61 15.06 14.01 82.62 41.23 8.84 10.44 2.89 4.90 72.39 74.89 41.58 73.67 91.22 56.08 65.55 68.08 75.78 18.12 42.54 75.05 75.21 40.84 57.24 7.29 2.69 9.74 39.03 38.83 91.91 64.79 26.85 63.08 36.51 44.21 39.42 51.74 85.37 88.50 20.81 7.09 38.60 45.68 37.07 82.30 12.08 59.72 19.01 53.50 83.35 51.64 24.15 30.44 2.90 59.30 30.65 78.65 93.60 65.88 41.46 81.74 46.18 28.68 74.46 62.48 -31.00 38.02 19.41 24.29 74.55 8.32 15.46 40.23 82.76 18.80 10.18 95.27 60.15 55.46 84.37 76.76 6.42 89.23 22.00 48.82 10.52 81.34 64.33 2.66 24.95 57.32 38.99 78.82 14.74 99.09 15.53 40.44 40.66 52.90 88.98 4.49 15.92 63.96 71.63 73.72 39.36 94.51 58.98 7.98 77.00 63.31 19.33 58.99 21.49 2.63 36.71 52.94 0.48 68.16 20.21 23.43 11.58 47.10 56.27 50.39 6.16 25.93 1.57 76.49 23.27 96.24 53.57 31.81 14.90 29.73 94.35 21.32 10.48 0.57 9.35 49.26 30.21 61.34 44.86 50.26 11.11 76.58 66.80 98.07 21.18 60.23 4.68 13.17 89.94 54.04 67.23 37.30 34.83 33.38 13.22 69.51 76.44 60.82 93.95 80.34 -24.96 71.65 62.46 86.88 10.11 25.86 77.79 83.44 97.56 88.36 31.65 54.03 4.58 11.36 16.83 57.09 51.83 92.08 42.48 87.62 85.73 10.53 74.27 18.65 39.56 4.56 11.91 31.33 5.02 77.04 83.09 58.02 73.32 50.07 36.93 78.83 39.81 60.89 81.35 47.62 48.80 14.37 2.55 56.23 87.27 14.68 19.97 10.13 78.33 12.09 44.75 49.77 79.94 96.04 80.05 35.06 27.95 70.83 27.53 14.21 19.37 34.17 32.58 33.61 13.87 88.84 35.47 7.00 21.62 38.73 61.78 44.38 39.17 19.76 20.80 3.51 61.16 61.23 89.34 54.07 55.18 12.72 31.28 7.28 51.43 64.34 52.36 14.17 34.81 47.89 27.68 83.08 44.56 2.21 86.74 7.34 63.11 11.18 48.24 46.92 -1.64 47.41 0.24 87.20 22.12 65.29 59.49 46.81 65.15 6.79 22.47 86.90 86.83 50.57 41.98 17.54 39.32 60.80 20.94 31.50 76.79 64.54 11.58 85.32 78.65 0.74 19.52 37.64 37.30 13.89 80.05 93.86 33.42 99.77 48.33 57.85 49.07 23.58 14.20 45.34 21.45 48.27 79.24 23.03 63.03 60.45 66.48 92.33 53.10 99.70 8.14 99.38 75.61 81.37 0.40 87.80 43.21 17.47 99.20 6.74 24.40 49.21 99.86 87.53 41.22 89.59 74.38 62.79 64.84 14.97 27.53 94.07 78.50 4.23 13.53 3.25 51.80 72.04 77.08 11.97 67.30 46.22 33.54 19.86 11.10 57.77 36.12 74.20 21.32 60.78 23.22 2.65 0.42 70.76 72.27 50.77 46.63 82.83 33.09 36.19 -44.78 94.48 6.32 41.29 88.46 82.18 66.22 47.23 44.06 91.69 59.24 67.74 35.91 13.64 50.08 64.47 72.26 27.62 87.16 61.05 96.98 70.29 77.99 98.75 35.02 96.83 35.42 40.54 64.98 31.00 64.08 51.78 22.45 36.34 87.97 77.30 23.38 18.88 35.81 40.45 94.05 83.60 73.82 84.67 37.82 77.10 22.10 25.38 92.05 11.21 95.20 94.01 8.15 19.30 89.52 30.81 3.35 21.43 5.30 45.61 93.14 26.99 16.87 4.50 96.79 52.48 49.74 69.05 36.21 94.80 4.45 78.96 78.20 85.78 2.60 58.89 68.66 77.41 97.48 16.14 47.19 63.40 9.47 36.03 35.49 24.67 6.54 84.92 69.32 54.66 90.01 8.79 88.10 43.41 44.46 10.59 1.00 31.67 80.16 79.78 -32.53 34.54 40.94 17.42 6.81 96.24 4.84 68.61 27.29 1.14 0.35 76.73 69.30 58.84 7.61 44.60 50.79 7.13 33.25 87.90 95.50 5.69 97.48 95.85 20.09 57.29 6.54 98.27 27.66 96.68 9.79 54.20 8.46 98.85 78.96 9.03 9.98 97.79 70.22 8.64 18.70 79.40 61.14 27.89 94.39 38.55 19.43 74.14 99.17 55.98 8.45 45.99 38.03 32.05 42.73 69.70 82.85 76.15 88.53 2.36 14.75 19.65 38.13 63.14 82.17 30.98 10.36 67.73 24.32 91.08 69.85 48.02 66.20 93.16 6.19 89.65 95.16 80.33 1.96 36.56 42.98 16.30 27.15 52.65 30.92 45.47 74.80 73.96 74.35 35.83 95.45 49.57 10.94 83.11 37.11 67.60 21.39 71.74 86.34 49.83 -16.38 34.36 84.50 70.04 0.54 85.18 86.84 12.18 26.10 20.24 12.66 1.06 90.52 47.53 0.45 57.88 10.91 68.10 66.13 37.91 51.48 41.41 55.71 50.37 2.93 85.74 35.12 53.23 38.09 94.51 42.74 3.08 71.20 26.68 25.90 73.71 13.78 64.50 8.88 10.12 91.10 31.25 38.91 75.56 51.87 68.92 69.30 78.23 25.11 41.20 3.19 16.67 19.16 5.83 55.87 43.85 26.01 8.81 43.39 82.89 1.48 22.05 0.91 16.45 95.94 29.26 68.34 27.00 38.35 81.72 49.44 87.91 74.83 49.86 92.95 30.03 61.75 97.05 77.31 30.63 30.83 56.23 82.44 63.68 3.48 74.48 96.71 43.32 75.49 1.16 83.02 51.77 18.64 25.82 43.73 17.17 95.09 43.10 62.11 52.98 -68.13 43.39 28.36 13.85 74.49 44.83 29.80 96.84 8.42 19.75 50.26 48.96 30.28 29.77 36.38 72.30 7.97 70.89 39.19 64.15 69.67 61.15 62.21 71.53 7.62 47.13 94.09 54.79 56.01 95.75 22.13 94.36 62.50 58.58 22.85 35.42 87.76 53.85 92.03 76.33 65.01 24.07 5.85 53.91 59.43 9.04 5.26 78.22 47.18 90.94 45.61 94.12 43.46 16.78 96.99 38.66 81.00 6.42 89.74 88.66 24.69 7.04 13.88 54.93 95.60 51.57 42.28 74.94 73.37 90.14 87.72 20.58 71.65 48.18 64.74 89.45 97.36 29.12 51.07 45.55 26.89 26.75 59.13 93.18 11.11 46.69 54.08 81.29 50.38 98.34 76.83 96.60 15.13 32.97 87.49 10.37 79.55 40.28 98.72 37.09 -46.74 45.93 21.39 43.41 33.72 31.81 69.48 69.79 36.85 71.67 97.87 50.01 4.34 28.48 97.21 19.84 18.86 59.47 64.43 93.55 76.27 8.32 68.38 49.33 18.52 82.46 41.11 42.39 53.34 4.39 37.87 44.47 71.39 37.57 8.58 68.48 4.20 22.68 29.12 5.18 34.22 1.01 20.07 54.70 11.37 27.22 95.68 54.11 81.64 23.24 81.02 62.19 89.02 19.56 6.82 61.84 88.16 42.34 84.47 6.98 7.93 87.65 84.34 60.16 43.64 69.47 61.82 7.23 44.87 65.21 34.60 84.05 57.55 82.37 98.47 24.31 32.80 45.65 87.59 34.23 44.60 20.78 5.59 9.57 68.05 21.35 15.84 12.17 65.45 66.08 43.91 26.66 72.05 54.28 35.54 13.01 3.90 48.50 96.11 62.20 -78.83 20.05 67.50 43.25 31.67 25.94 70.74 45.63 95.75 82.82 72.82 30.97 71.44 57.64 3.97 56.57 39.63 21.00 50.15 93.98 26.85 57.94 50.67 77.65 9.38 43.99 1.02 57.28 3.72 0.54 96.54 68.47 15.36 23.76 15.09 39.85 98.47 84.93 63.52 69.88 87.35 68.04 31.95 61.21 61.37 75.27 54.01 6.33 34.03 26.34 94.11 98.67 79.63 64.99 10.43 35.85 64.45 77.71 28.32 22.43 78.04 74.52 86.12 2.29 15.36 29.92 5.54 20.49 8.17 8.83 24.72 39.35 40.52 15.11 18.78 95.16 59.19 57.67 30.94 72.11 32.71 47.65 12.78 79.01 62.97 82.25 35.00 52.76 4.64 61.40 21.82 65.35 24.61 10.64 62.02 84.19 49.50 65.51 49.81 21.25 -72.09 41.07 92.44 64.00 54.08 6.30 29.48 96.93 44.33 34.64 18.00 23.04 0.84 86.54 44.37 82.65 53.41 99.58 43.26 54.62 86.26 77.17 63.46 70.90 44.37 95.04 87.64 91.97 75.52 96.87 99.41 76.08 61.75 1.76 48.15 63.54 94.49 71.03 56.17 88.60 45.50 75.83 3.20 66.12 76.55 54.42 55.69 82.28 57.12 28.91 62.20 11.21 94.42 83.81 89.44 33.06 81.75 50.14 16.32 9.66 21.68 61.83 45.25 26.74 44.31 32.08 19.37 12.35 66.52 80.71 2.08 14.53 33.02 33.45 90.15 21.61 36.14 97.90 23.19 78.66 0.05 40.57 32.38 10.39 92.05 15.92 14.54 72.28 80.41 74.17 63.79 46.01 26.10 65.83 42.86 60.02 38.73 89.84 65.09 26.48 -42.44 43.51 36.59 85.33 89.82 68.02 40.14 22.79 5.60 21.95 41.84 24.03 72.12 19.39 38.35 59.06 86.80 23.65 20.77 38.33 4.72 84.70 90.34 79.42 1.68 92.88 10.85 90.99 90.39 91.97 13.17 12.42 85.33 93.53 49.13 80.36 99.79 22.57 72.30 79.86 77.91 90.11 34.85 82.34 5.02 59.32 78.85 6.31 98.70 91.08 72.17 41.17 35.72 66.71 72.41 37.59 92.09 14.51 24.22 10.23 82.28 62.69 50.79 37.07 41.95 92.99 55.98 97.07 18.32 82.12 54.01 6.16 43.32 85.28 52.90 52.39 51.01 34.13 97.24 95.87 11.77 97.71 40.87 99.35 66.62 54.79 94.16 69.73 45.99 26.47 95.57 85.16 10.99 51.92 2.35 97.03 63.28 22.14 57.20 50.41 -76.76 72.71 83.38 8.13 45.29 38.14 50.45 93.92 91.36 79.42 35.82 30.85 0.11 89.59 75.50 11.88 5.10 11.88 55.29 3.30 4.64 10.13 44.86 79.90 17.30 11.79 24.66 87.46 70.06 48.14 55.38 22.78 82.20 88.55 63.90 88.15 83.76 24.80 64.02 69.94 57.68 49.84 54.73 98.53 83.41 5.01 83.90 58.84 75.49 70.94 21.92 8.55 26.98 83.65 99.66 51.19 10.85 65.85 60.60 6.53 14.95 16.92 10.57 77.28 92.01 85.39 15.46 89.89 76.20 82.46 82.22 76.56 95.12 58.41 5.87 52.26 97.61 83.76 41.23 62.88 85.75 84.47 95.70 5.21 26.38 19.28 60.36 54.44 92.83 70.27 71.33 75.83 82.63 77.30 41.55 21.40 51.95 29.53 16.13 84.66 -35.07 53.69 27.72 22.57 47.84 70.03 2.29 45.33 98.68 6.68 34.91 14.87 14.35 30.82 72.17 15.84 39.87 27.18 81.62 59.58 87.23 18.35 37.92 4.32 63.94 71.15 22.47 57.98 23.76 78.82 90.28 18.01 6.66 4.53 70.65 99.70 52.34 49.64 58.22 92.36 57.30 12.51 18.50 29.32 58.09 45.87 79.46 54.37 29.84 32.86 32.39 50.19 40.44 31.26 16.16 24.89 31.72 62.77 13.13 55.77 62.99 90.55 84.75 26.35 36.66 25.56 6.09 50.48 20.50 2.12 2.94 36.74 10.43 9.43 43.08 52.26 80.75 72.54 34.94 25.02 32.75 37.68 86.57 91.49 67.65 52.80 21.49 15.72 82.65 46.28 29.14 61.90 25.59 85.32 11.45 62.34 89.62 65.20 91.94 15.40 -49.87 2.50 25.32 35.47 74.88 85.13 81.96 85.99 29.83 50.38 77.06 49.18 20.72 2.79 84.63 30.17 2.75 41.92 53.27 78.02 0.90 21.66 2.28 66.42 85.25 51.93 89.82 39.08 81.54 76.29 74.74 47.07 96.56 49.53 18.18 51.21 39.42 61.58 65.61 92.99 74.52 24.23 20.77 43.57 91.80 49.65 43.72 48.71 84.67 64.18 16.64 46.14 58.04 29.29 16.68 79.53 87.25 75.53 71.71 48.30 71.49 42.33 55.79 52.26 87.26 42.93 58.76 2.35 60.87 29.51 87.61 8.65 80.25 12.77 46.17 81.38 86.69 51.76 30.94 5.46 33.82 50.13 55.21 6.01 63.43 67.11 70.11 10.01 23.62 58.66 19.03 39.56 45.35 49.24 93.26 64.59 16.16 3.55 87.24 30.53 -82.65 72.49 73.62 98.86 44.71 16.80 5.38 88.74 67.93 64.34 90.60 51.01 68.90 50.12 22.88 8.85 9.24 79.06 80.88 15.99 32.80 91.10 93.90 0.42 19.13 94.60 78.24 84.21 35.09 55.98 63.55 3.81 30.21 58.56 66.92 30.53 95.69 45.60 56.64 76.53 84.96 8.72 53.59 0.54 3.33 71.51 2.72 86.61 55.73 48.54 95.73 30.33 22.39 71.49 22.12 43.22 74.29 70.08 33.05 31.98 64.47 19.01 26.65 35.18 45.15 48.43 0.49 39.50 67.36 27.90 14.82 18.66 23.90 87.49 69.76 99.67 74.68 80.76 33.09 50.66 83.85 72.44 35.91 13.66 84.67 42.05 20.10 42.33 78.89 10.20 77.80 74.46 91.99 66.26 90.10 95.14 32.60 49.38 56.66 50.44 -33.93 8.20 59.12 94.59 5.63 48.85 55.17 3.35 57.17 59.23 94.11 13.98 25.59 65.03 84.45 96.79 90.69 27.59 33.61 58.20 17.42 2.33 74.96 85.41 82.56 64.40 67.16 56.39 63.50 46.24 12.40 38.89 37.13 57.38 21.24 41.99 73.34 2.72 89.74 8.18 71.43 91.89 69.40 28.22 99.56 82.30 7.14 41.06 67.13 6.45 35.30 13.93 40.59 76.43 61.81 35.07 65.10 43.93 4.39 17.77 2.01 44.67 1.73 21.57 70.83 85.94 83.18 24.23 33.96 68.25 31.39 38.89 26.82 34.83 13.30 95.48 51.58 49.29 34.91 86.30 86.27 30.32 32.09 55.72 27.19 4.24 6.98 69.48 78.82 98.50 72.88 29.60 51.54 55.70 47.34 75.34 95.34 50.57 59.13 70.69 -74.23 39.31 88.91 58.55 23.55 10.06 28.41 41.98 97.11 48.44 89.22 38.02 54.76 18.60 36.32 64.28 51.85 3.46 28.60 52.69 36.16 12.48 84.50 30.51 18.52 2.31 96.56 60.79 41.28 94.82 27.63 95.25 31.26 28.80 66.16 77.11 49.94 40.32 5.57 40.40 42.10 90.83 16.08 20.92 70.12 51.81 77.30 77.67 92.59 5.31 57.52 64.27 89.99 11.13 29.02 4.10 70.07 96.94 6.96 98.21 2.98 17.16 27.28 54.74 6.19 66.76 20.19 34.79 99.17 86.46 37.54 34.34 79.57 78.31 88.99 89.06 75.60 46.59 23.18 3.47 67.16 13.04 3.34 81.75 91.71 99.72 89.29 27.42 6.16 44.82 81.55 15.80 63.49 27.35 76.74 40.94 92.91 44.33 79.45 16.38 -57.35 8.41 63.53 48.09 23.46 94.01 24.30 9.62 45.80 14.47 54.33 28.04 11.05 61.94 47.40 84.55 4.48 20.12 10.02 65.94 17.32 86.06 42.28 26.02 18.54 40.24 74.11 69.01 79.73 99.62 63.84 38.74 23.98 74.25 55.06 4.71 99.37 46.05 57.35 4.49 18.88 55.24 61.11 86.25 18.31 14.28 34.68 99.66 88.91 68.30 89.15 7.49 15.34 3.19 87.34 19.30 79.82 1.26 41.48 98.90 55.62 95.94 22.37 98.17 38.89 51.55 6.29 23.75 35.25 77.15 30.76 83.26 26.72 12.13 93.15 90.14 36.95 19.04 95.86 49.74 16.12 40.00 89.11 38.56 91.63 65.99 49.45 92.29 19.77 12.78 39.03 42.44 38.32 0.07 77.19 9.79 2.55 44.70 82.55 93.13 -72.09 74.29 18.09 6.55 14.21 58.99 23.15 60.72 40.96 72.58 17.89 25.06 38.85 6.00 51.80 63.95 46.28 62.54 82.44 46.12 6.42 2.94 67.48 59.13 27.67 75.08 43.31 35.49 62.30 92.14 58.57 46.10 23.13 11.91 86.29 56.08 11.72 42.31 41.35 44.02 90.76 85.87 91.34 21.09 46.88 96.66 87.80 5.00 76.27 62.25 18.60 61.11 14.01 36.95 74.96 51.51 31.62 53.95 94.39 99.69 7.61 19.28 96.68 57.38 97.36 38.01 10.84 6.11 31.84 9.58 33.36 60.21 64.71 75.70 4.27 35.73 58.80 24.38 90.41 62.60 20.06 76.15 44.21 37.24 59.74 36.89 64.35 78.43 91.07 74.22 20.31 70.64 59.11 59.55 49.45 73.05 84.84 4.03 55.66 33.74 -33.54 91.13 35.06 37.94 58.04 81.71 73.86 79.83 80.65 21.40 75.14 85.51 79.63 86.25 60.86 45.70 85.89 72.36 65.91 91.11 2.42 35.72 29.72 90.88 15.74 21.85 12.00 31.82 0.89 49.34 3.69 88.27 60.14 66.05 39.86 31.91 73.76 61.84 32.82 63.12 23.99 64.03 11.42 82.15 94.62 35.52 34.60 60.88 81.51 69.68 19.44 86.51 4.49 64.20 6.83 22.71 26.73 48.62 25.36 90.01 92.28 71.88 86.65 63.29 80.05 84.07 67.98 93.73 90.33 15.08 30.55 17.04 78.98 87.20 74.60 49.33 66.79 59.20 67.62 61.38 24.42 68.97 66.66 13.18 85.93 35.65 98.68 20.44 10.43 11.87 4.56 26.34 46.94 15.49 36.82 83.95 98.98 75.18 60.92 69.39 -56.21 96.26 10.19 85.09 31.74 88.63 7.48 26.91 90.60 0.89 70.60 98.49 72.97 5.81 67.31 33.32 54.78 4.31 54.68 33.60 89.28 78.33 37.65 65.30 1.43 98.19 7.64 92.38 9.90 88.84 55.42 62.25 35.65 19.79 84.29 80.38 22.39 82.15 38.73 60.86 95.22 75.78 51.03 42.75 89.86 23.80 32.11 22.52 82.80 80.25 4.21 13.12 36.29 87.40 32.78 30.55 67.40 59.09 93.31 62.87 32.55 43.56 25.32 44.13 12.58 37.61 96.42 39.23 60.06 88.45 23.44 0.52 81.26 5.28 94.62 96.15 73.06 60.37 83.84 13.02 82.36 70.80 88.52 17.08 32.46 39.76 98.42 38.58 35.69 49.82 40.57 99.14 15.67 20.11 58.56 76.07 16.07 99.86 51.13 97.32 -55.71 87.69 4.52 64.96 87.90 45.60 16.83 88.86 15.89 44.85 97.22 61.65 94.31 71.82 96.44 6.79 12.90 33.96 46.25 67.26 72.85 96.75 44.71 1.52 77.70 97.40 68.83 52.19 56.46 54.51 55.74 19.19 12.40 36.44 93.22 26.62 70.78 58.49 91.10 37.08 76.44 33.92 34.35 70.34 5.79 18.22 19.33 0.09 25.12 25.76 21.32 93.25 6.71 33.16 13.73 73.90 38.87 20.09 71.45 8.83 52.66 55.28 38.95 74.52 23.26 34.49 88.65 39.96 55.32 38.25 30.92 67.18 84.44 95.47 62.73 17.30 23.54 22.07 27.45 72.13 7.10 90.98 25.20 33.85 39.15 20.71 83.59 94.27 93.94 96.20 77.17 84.69 21.78 68.46 14.92 67.09 4.79 96.71 72.03 4.38 -91.75 20.43 56.01 65.40 5.06 91.00 63.73 28.11 98.54 22.66 9.10 90.87 95.71 8.08 78.44 83.11 49.33 75.25 73.07 75.12 55.79 43.12 60.08 52.02 24.89 81.22 25.11 3.99 88.48 82.34 80.14 61.02 51.21 43.56 29.98 63.08 97.03 96.76 21.05 50.26 89.82 74.36 57.30 22.50 25.61 84.86 73.66 41.07 30.00 93.07 83.89 77.18 89.50 89.66 87.78 53.74 84.03 67.92 27.64 70.36 60.96 96.92 0.93 95.50 43.43 19.12 86.17 27.19 99.97 99.01 72.23 46.38 86.14 62.83 47.45 62.15 54.93 88.35 31.16 95.38 12.38 22.02 46.86 88.96 37.45 72.49 86.25 2.29 18.21 89.13 94.68 14.22 22.70 27.79 21.91 68.56 71.79 5.65 72.26 39.51 -5.49 96.65 72.66 31.23 7.97 50.67 83.79 23.08 70.38 8.17 15.05 91.51 40.28 18.44 10.65 55.54 76.54 6.48 48.19 66.13 23.71 66.97 40.85 31.93 34.36 59.12 19.60 46.77 24.51 47.96 4.10 57.84 64.08 36.42 12.73 59.97 76.30 46.64 47.63 44.08 18.64 69.11 28.01 86.15 12.09 98.25 98.17 33.89 47.56 22.99 13.21 40.80 68.09 80.02 73.04 54.65 93.49 63.77 63.41 63.71 18.30 8.28 51.04 85.10 6.92 28.50 39.68 50.37 14.12 72.42 64.68 97.52 41.93 89.41 82.32 77.07 99.22 33.57 53.38 16.00 87.24 83.84 98.63 79.77 91.79 9.73 9.13 5.24 46.99 2.24 91.73 79.21 69.37 40.73 56.76 37.39 15.43 51.12 79.06 28.53 -85.70 28.66 17.56 29.34 65.51 95.21 29.52 3.97 77.41 52.58 70.73 18.36 74.24 65.49 69.20 74.50 54.09 39.65 12.02 43.70 18.87 30.57 57.46 39.47 32.28 39.71 13.78 63.50 41.73 34.94 50.41 98.15 21.71 39.05 15.21 62.06 98.70 81.40 65.65 34.16 23.95 38.95 49.76 22.57 48.72 70.34 30.55 70.03 71.82 78.69 61.94 50.95 93.10 14.41 17.25 55.00 83.21 78.12 9.91 57.90 26.87 9.29 55.99 12.24 75.42 81.97 47.72 3.50 48.90 83.57 68.01 57.71 15.95 72.56 85.71 30.64 39.72 60.76 1.69 95.89 84.86 49.50 90.93 76.74 84.83 73.15 20.62 98.28 45.05 30.36 19.28 63.23 31.42 35.00 82.41 84.30 29.19 81.29 78.24 15.89 -69.84 27.67 24.87 97.87 0.71 87.34 88.20 80.74 49.55 96.70 6.83 54.38 97.68 27.55 74.69 22.78 3.99 16.92 20.99 4.83 73.33 45.37 90.26 9.42 20.24 24.22 16.61 45.85 27.55 27.18 80.27 49.59 91.10 25.53 31.45 92.70 57.39 38.74 78.66 20.69 40.08 49.85 97.20 28.24 91.92 16.15 95.38 49.19 76.10 61.89 21.76 60.06 21.53 82.08 8.45 33.84 29.28 2.33 59.21 28.44 23.52 3.19 49.74 89.08 26.59 4.08 71.14 43.47 98.87 91.80 97.92 96.35 96.70 53.17 33.01 5.19 46.07 75.17 93.47 93.13 22.68 82.34 36.90 93.83 26.98 44.96 23.91 79.34 93.70 9.79 90.79 71.79 87.27 39.82 43.04 92.61 61.49 78.46 55.94 86.59 -28.50 34.42 14.07 80.15 33.95 5.07 84.92 24.16 47.91 16.83 87.53 52.35 32.27 60.43 32.06 72.59 82.98 6.70 44.76 77.56 22.96 37.65 63.08 13.74 36.93 66.71 58.98 20.39 55.38 61.06 13.21 0.94 31.59 20.89 46.46 35.50 49.43 39.85 20.32 48.35 29.47 6.36 15.58 87.83 20.45 43.68 91.72 54.15 34.15 68.53 5.14 22.64 29.55 44.35 52.25 52.35 52.13 19.69 72.77 23.23 38.76 49.56 74.75 30.46 16.48 68.42 45.61 70.63 60.87 42.55 49.25 95.70 42.00 96.34 60.55 87.78 41.79 72.79 70.22 48.24 81.14 35.84 95.86 46.31 30.94 63.29 3.45 29.74 78.02 62.23 26.02 94.03 99.26 21.83 88.69 89.34 3.06 3.49 78.79 43.43 -74.32 88.46 73.46 54.59 99.17 94.25 11.46 45.81 1.95 38.28 80.94 92.30 95.66 60.16 64.74 72.84 1.06 42.16 80.34 28.00 74.73 22.83 31.13 64.43 69.00 37.36 80.35 23.60 92.08 96.55 49.16 60.01 98.40 41.66 11.31 16.37 64.55 55.55 59.45 15.77 54.29 64.29 60.89 76.94 15.17 82.19 74.54 89.77 50.63 54.58 72.74 50.03 60.15 54.37 55.62 45.08 65.73 39.60 40.67 90.28 9.27 42.74 84.15 84.50 81.90 16.98 85.38 29.01 25.73 39.34 98.34 81.28 61.18 99.76 97.06 58.18 22.50 56.85 34.08 93.21 39.93 91.07 92.65 3.37 32.21 72.97 24.05 68.58 92.54 30.78 34.52 52.63 53.49 33.00 32.54 64.71 7.62 28.17 12.37 95.20 -68.89 93.54 45.53 5.23 2.26 70.35 6.68 69.64 49.48 54.77 12.77 65.04 53.44 11.76 29.87 75.35 10.43 23.73 77.33 73.56 84.51 89.37 86.85 4.34 45.16 79.48 64.23 72.41 36.00 8.24 37.45 20.24 91.56 35.76 4.03 64.66 9.51 66.52 93.40 65.65 50.80 89.62 63.83 61.50 12.07 88.70 87.24 24.26 26.53 57.71 65.60 7.63 13.75 87.03 12.79 31.77 53.96 42.77 15.89 30.07 17.23 23.11 74.76 86.42 29.11 9.41 79.18 38.01 46.10 51.79 20.72 56.43 98.25 18.58 97.05 66.02 60.25 56.90 98.00 33.23 49.81 99.45 78.53 84.17 81.23 33.44 53.68 76.87 96.97 97.41 43.09 51.41 99.44 46.90 11.10 75.31 51.09 2.04 1.62 70.21 -42.05 52.20 87.95 11.47 76.60 70.12 31.84 72.64 92.29 45.03 75.05 13.17 45.35 31.03 86.17 93.15 31.12 88.50 62.19 14.89 36.08 8.43 76.18 1.95 87.29 21.98 56.11 98.34 45.75 79.64 69.93 46.89 22.11 11.33 23.65 89.85 20.24 14.76 87.89 24.12 39.50 85.08 75.33 23.91 9.29 75.07 47.40 44.37 98.26 73.42 39.98 28.24 86.36 3.27 83.15 3.07 83.94 26.79 85.59 25.29 71.92 75.08 56.26 5.55 84.67 70.17 73.08 92.52 35.82 36.62 88.26 49.80 99.76 55.13 96.03 29.74 39.85 1.94 23.36 23.46 60.54 90.19 58.04 83.75 2.91 97.97 9.62 29.12 60.37 86.39 35.20 55.52 95.46 23.95 90.49 42.62 84.66 40.93 56.07 48.59 -51.46 96.05 13.05 79.97 18.10 27.28 97.51 73.22 66.42 28.66 72.34 76.14 67.13 30.97 68.93 33.65 87.15 20.55 6.78 60.18 6.01 2.41 8.06 7.48 3.56 84.91 46.99 37.29 33.06 36.41 61.24 8.50 77.91 84.76 95.98 42.31 83.48 6.11 81.87 74.84 18.53 49.74 78.63 27.38 33.65 42.24 69.98 95.36 14.63 12.78 1.59 31.36 54.23 48.28 16.95 5.61 1.09 62.97 35.47 47.54 38.75 25.46 89.95 46.57 23.53 72.32 57.27 16.76 88.13 24.32 86.09 25.15 6.64 60.50 70.97 88.23 25.25 0.49 78.75 95.55 7.61 39.63 48.24 37.92 3.59 56.58 99.49 7.28 76.11 49.11 71.01 31.10 65.86 16.38 9.96 0.72 0.75 65.50 3.24 19.49 -10.81 43.95 22.24 30.85 87.08 24.04 29.80 92.39 83.58 82.79 71.09 93.00 55.96 56.15 42.73 85.16 82.73 50.49 58.78 12.19 56.73 0.72 15.22 95.36 64.10 40.02 83.94 42.11 17.70 10.60 30.11 38.97 84.11 60.64 79.59 73.53 7.35 27.14 59.41 8.57 55.70 60.32 25.80 24.94 71.81 90.83 16.55 93.66 80.25 98.84 28.61 24.06 28.33 12.16 74.45 59.96 1.40 21.49 11.26 56.70 49.00 51.94 32.76 45.27 35.01 90.10 40.15 81.80 45.89 54.22 37.26 89.46 86.36 16.42 62.73 4.78 11.71 24.86 91.72 9.57 63.99 19.07 83.73 75.37 8.38 94.46 65.11 91.10 43.17 63.18 15.51 23.24 51.85 66.96 56.73 28.24 95.76 94.75 5.11 70.27 -96.31 89.47 7.56 66.28 65.83 2.62 13.78 23.53 65.04 78.94 61.66 74.49 45.48 71.79 25.10 3.01 71.60 31.68 81.14 52.67 65.22 86.86 62.52 91.92 66.71 1.96 25.37 28.24 24.56 31.69 92.01 78.87 27.83 59.91 27.51 14.29 7.52 43.54 52.96 4.58 75.52 13.58 53.26 3.88 92.24 15.01 30.81 33.54 21.98 14.02 86.39 15.48 34.29 12.90 77.65 61.83 97.17 78.69 74.61 32.88 90.83 82.98 40.73 54.74 27.29 0.81 77.52 0.94 4.89 93.11 1.31 13.20 12.86 22.34 59.92 87.08 79.14 0.57 95.22 51.18 90.73 55.89 44.76 38.67 90.48 18.69 30.35 61.18 49.96 53.87 74.90 18.65 74.39 36.70 52.84 72.94 89.94 92.34 98.46 36.27 -13.71 85.36 52.66 28.20 5.59 98.89 32.79 40.17 67.58 5.73 40.32 21.00 48.98 18.44 55.67 79.44 37.12 11.11 30.19 77.54 66.42 51.87 76.92 82.67 20.45 5.40 33.26 98.09 77.48 17.38 23.94 72.92 32.69 77.52 29.98 72.30 67.71 0.72 11.04 21.08 19.67 76.22 16.70 88.62 53.53 53.32 25.57 31.40 88.70 2.32 41.99 43.10 97.45 5.33 36.64 95.95 69.98 35.08 98.70 55.15 66.64 18.01 23.98 90.20 13.06 25.88 78.18 93.52 42.26 22.17 7.20 85.40 16.96 67.28 61.13 43.51 24.14 78.26 57.84 22.89 46.02 35.55 51.75 71.61 22.46 5.20 79.09 97.39 60.53 93.03 27.46 70.26 99.87 50.91 16.49 90.32 75.88 26.77 34.28 24.52 -4.69 33.00 20.00 28.18 77.85 43.39 67.46 46.35 93.54 85.97 7.97 20.38 85.01 96.65 31.66 99.04 10.27 57.71 45.25 57.59 87.37 33.93 76.28 23.25 9.06 13.85 62.80 70.49 42.50 61.87 21.54 83.76 72.09 89.19 83.00 24.58 80.16 52.54 71.70 88.54 77.18 78.66 57.00 13.00 18.30 95.67 52.82 16.78 91.26 56.08 63.84 85.89 36.57 95.92 48.22 81.87 16.10 55.14 66.79 32.64 40.94 48.12 81.86 39.85 68.84 69.49 89.28 74.67 45.26 66.87 10.84 3.04 72.10 76.13 0.87 56.89 43.76 70.48 31.19 63.68 81.93 39.83 18.37 36.18 55.67 97.08 29.18 18.89 2.93 52.92 60.58 80.56 45.37 13.06 88.64 55.70 68.58 6.45 69.57 46.79 -2.69 18.97 7.02 68.88 55.80 16.74 36.56 39.09 16.79 14.79 88.36 0.63 2.63 5.58 12.51 70.77 46.40 56.37 67.96 65.96 74.44 12.05 39.28 56.81 28.19 9.13 25.31 23.75 26.62 80.85 32.03 60.20 6.71 9.10 71.83 88.23 37.68 99.77 56.28 19.81 11.09 52.48 72.90 49.43 40.07 57.51 5.27 3.97 0.52 94.85 14.41 66.64 25.02 83.74 18.43 22.75 87.19 83.71 4.03 58.63 1.57 87.54 10.56 36.18 66.91 21.77 94.21 65.68 7.12 56.08 2.26 20.58 95.91 0.61 31.95 53.23 69.12 24.01 93.49 40.15 65.89 97.18 27.84 81.92 3.35 71.33 75.48 31.91 79.55 13.78 31.63 16.45 97.79 60.25 46.45 40.45 8.88 87.80 7.95 44.75 -2.03 76.66 48.75 0.72 37.64 69.46 96.36 98.00 65.34 20.93 1.36 63.56 2.75 63.74 68.76 58.19 54.27 71.38 83.42 10.13 91.29 50.69 16.30 97.13 91.77 51.17 29.32 97.00 92.55 47.64 55.12 12.47 97.50 56.67 46.15 19.97 41.24 35.27 58.94 43.99 12.03 81.24 16.47 20.21 30.00 57.46 36.29 72.58 98.50 95.04 82.03 80.56 32.37 42.23 63.99 88.50 33.09 74.88 0.42 49.67 29.11 3.42 73.66 62.93 30.04 68.69 48.37 34.48 93.04 89.69 95.12 65.47 44.31 77.57 63.14 67.57 77.01 87.86 68.03 17.21 24.84 43.70 61.26 48.29 83.19 22.62 63.96 93.86 52.80 96.95 43.79 84.05 1.99 16.25 49.37 33.24 78.94 4.85 41.71 93.02 -69.99 79.74 43.98 62.20 8.67 52.37 42.15 30.83 15.69 43.91 70.92 95.44 59.76 62.23 31.20 77.71 62.04 96.25 53.61 99.74 74.77 71.92 46.32 37.58 34.12 77.95 28.09 9.28 79.51 68.92 70.51 88.15 91.40 2.38 37.44 74.60 8.92 1.82 38.17 91.13 80.52 95.27 11.42 99.46 17.46 47.37 73.25 11.30 75.38 82.80 24.52 11.28 28.31 16.14 43.80 68.49 7.10 90.61 68.56 89.02 49.61 31.27 93.87 81.39 95.05 99.42 1.00 25.00 56.70 36.51 94.58 7.52 62.66 74.65 64.89 10.08 59.30 78.11 9.91 37.99 86.52 8.24 63.35 23.64 81.60 1.19 94.11 4.63 5.17 19.14 88.23 44.97 43.37 91.65 60.77 60.86 98.06 8.87 75.30 55.46 -40.31 49.04 94.61 40.48 7.20 2.84 82.87 78.66 90.55 14.73 4.24 16.52 12.38 37.04 27.49 59.63 31.28 57.17 56.35 30.97 17.45 83.17 41.13 91.64 10.67 16.07 70.24 24.51 98.57 45.58 69.34 82.05 54.35 1.81 17.68 27.34 98.03 31.59 46.89 83.09 82.59 30.36 51.50 81.68 64.73 50.58 89.23 9.73 67.13 14.41 61.77 93.11 6.97 57.08 52.70 84.78 39.91 34.30 46.34 23.51 26.29 92.14 58.58 67.36 40.48 62.94 84.38 94.31 95.34 48.51 97.28 12.66 65.39 87.02 42.71 36.16 38.87 50.67 41.75 39.57 58.12 93.41 9.02 49.64 22.56 87.75 80.92 84.89 85.90 73.63 25.09 89.29 89.39 20.33 89.38 83.71 7.00 7.76 36.19 40.12 -22.09 13.70 97.60 71.81 41.94 34.23 68.42 54.94 98.69 39.46 83.97 46.35 68.23 73.42 35.71 55.72 77.32 58.67 8.28 33.30 78.20 92.51 24.32 54.66 91.07 81.21 52.56 53.50 22.54 89.00 12.12 48.48 31.33 28.50 95.26 2.75 22.82 52.60 67.60 81.08 44.52 58.73 49.90 18.03 10.00 84.89 44.20 64.80 11.81 67.44 49.44 18.84 12.69 42.29 16.67 68.33 98.31 23.43 1.93 47.53 95.50 26.22 20.35 81.18 89.42 66.11 40.54 11.93 34.15 3.46 98.76 6.16 84.88 96.11 92.31 42.33 79.36 99.42 82.70 37.18 2.60 36.64 1.28 2.03 97.40 31.74 61.00 2.18 94.85 71.66 62.75 31.26 11.80 75.41 95.51 8.10 74.72 54.72 38.89 77.13 -84.19 35.55 11.35 34.40 87.69 99.69 62.53 68.08 0.97 72.19 36.72 73.96 77.93 23.87 67.45 14.29 11.50 19.60 45.65 82.61 40.25 58.40 51.62 71.32 92.20 43.42 47.45 81.48 85.04 81.31 65.92 6.84 26.78 24.95 90.96 84.14 68.59 63.77 82.05 56.50 60.39 82.84 85.70 89.87 73.99 30.75 63.16 20.11 8.59 68.97 1.20 94.43 53.93 41.63 78.72 26.49 18.18 9.76 46.73 12.11 51.52 41.74 12.75 44.79 90.78 21.28 0.25 8.00 91.75 32.46 37.20 69.35 28.47 67.50 13.47 56.51 10.66 28.75 31.20 80.16 32.24 77.53 46.72 73.44 32.96 96.96 95.64 32.11 96.07 21.91 22.38 82.99 78.07 16.72 83.65 21.15 92.43 3.48 50.31 23.56 -81.55 81.56 84.57 85.64 5.51 77.62 55.40 27.21 0.22 98.29 70.15 7.07 85.58 63.86 59.38 59.24 60.12 14.13 80.53 84.35 51.29 43.33 31.33 86.27 30.11 22.61 96.36 30.57 17.82 42.95 33.74 2.67 76.80 32.58 66.86 15.73 18.15 37.76 76.60 14.18 83.84 7.98 20.38 61.54 92.59 74.41 5.31 52.44 75.21 27.53 48.24 57.75 14.88 94.00 52.65 57.77 55.87 67.75 31.57 17.23 54.22 22.26 0.08 17.49 31.95 49.79 91.13 75.69 10.70 72.37 11.04 91.53 20.05 90.69 73.78 71.95 68.56 64.24 45.34 93.33 82.85 86.68 89.06 68.57 41.12 13.70 56.63 92.67 52.24 57.69 60.51 6.98 44.73 10.55 35.29 14.74 43.95 92.09 54.66 8.71 -82.32 35.51 0.76 62.57 79.48 38.42 12.97 11.16 34.19 17.08 86.60 36.62 88.79 71.88 18.80 98.74 36.68 82.07 67.55 49.31 82.07 55.16 58.35 68.66 14.03 89.63 35.74 7.62 79.35 24.47 25.61 47.31 7.40 20.36 67.52 11.73 44.09 67.49 36.66 67.05 81.44 13.66 94.57 28.93 5.32 29.72 14.65 52.82 44.24 23.83 49.02 5.17 52.25 35.10 91.80 37.47 36.21 26.04 18.13 67.60 73.52 69.06 3.49 13.49 93.86 87.98 51.20 3.45 77.79 4.15 2.89 44.49 82.56 66.70 30.03 2.20 88.56 67.02 43.71 34.01 73.59 12.93 43.55 86.67 58.12 76.61 76.81 1.05 33.97 47.63 18.87 15.54 14.57 36.33 22.35 29.29 13.03 60.47 84.48 79.10 -96.50 16.60 99.77 84.74 25.52 91.06 83.44 5.56 36.96 57.98 40.04 5.29 71.53 50.30 6.28 61.82 16.52 86.66 18.83 97.13 99.52 80.96 83.59 76.92 86.60 93.12 8.68 8.21 58.51 29.90 38.09 85.16 84.61 22.19 25.23 72.33 63.28 31.53 53.68 7.52 17.91 97.91 61.78 2.16 82.46 91.33 44.12 24.49 80.62 93.83 26.58 2.17 1.67 3.34 66.79 28.24 70.46 48.92 16.00 50.72 33.20 62.39 63.72 37.91 74.14 89.79 87.03 96.77 3.49 79.40 91.67 27.87 41.98 3.42 56.39 38.78 44.06 16.28 96.58 20.65 98.01 90.98 99.05 69.84 83.32 65.49 65.15 40.11 32.02 52.63 84.63 80.64 30.64 7.87 49.21 23.53 75.83 35.62 6.27 21.03 -6.06 3.83 40.79 35.26 34.16 23.40 91.84 50.76 80.57 75.80 13.56 55.93 81.75 1.13 64.97 49.90 55.49 57.52 65.01 31.76 55.93 99.84 40.78 8.29 39.89 99.39 37.59 93.08 42.88 63.92 98.76 96.37 13.63 96.29 10.17 76.97 32.04 23.46 8.26 28.66 6.62 20.90 34.98 82.63 48.55 0.40 47.04 56.92 6.38 75.19 22.45 2.67 82.24 7.78 96.66 49.03 59.78 56.68 91.15 47.27 38.56 55.77 83.53 73.02 47.23 1.18 11.62 71.45 88.85 22.79 51.51 29.30 45.41 26.78 52.78 49.07 51.18 26.42 6.55 66.08 83.65 22.73 97.74 73.62 53.14 43.08 27.40 25.28 56.79 51.61 18.99 13.55 63.72 27.80 48.79 45.88 90.64 34.58 41.20 38.55 -18.82 86.03 31.47 96.58 43.79 17.11 60.58 66.75 23.28 96.24 10.42 18.76 72.38 75.25 0.76 22.26 35.00 88.62 65.50 62.70 33.92 21.44 85.16 49.79 56.47 16.80 96.92 17.82 57.58 46.05 2.83 42.23 38.37 14.26 60.80 66.41 82.95 5.36 49.07 71.13 35.20 88.76 16.97 21.56 11.88 8.50 12.87 38.19 60.22 90.75 94.65 30.81 92.22 50.19 70.65 25.41 38.52 0.63 6.69 66.08 2.33 14.95 8.97 86.21 21.86 58.13 40.89 76.57 43.12 41.73 78.05 37.54 7.80 71.51 54.11 16.33 75.02 61.29 3.07 75.09 9.29 57.59 79.87 77.44 95.72 70.15 63.51 80.64 85.99 10.62 16.11 9.31 15.47 87.44 7.22 43.88 34.00 62.61 0.15 27.84 -19.34 9.83 77.46 92.24 65.62 81.94 28.77 52.46 26.45 65.22 75.32 13.26 37.83 48.50 68.82 34.64 66.12 12.34 60.38 37.84 39.81 20.89 25.30 9.66 61.45 56.80 2.83 21.73 92.90 14.62 1.05 84.62 78.08 95.27 99.41 15.36 25.43 18.73 27.31 86.42 76.54 2.35 76.91 4.29 61.77 77.73 36.72 85.33 69.90 58.55 54.99 39.72 51.00 30.70 88.56 6.72 69.59 47.37 81.02 33.03 27.12 64.69 69.41 50.32 28.64 75.20 12.76 16.16 67.86 2.88 30.47 62.88 60.23 1.45 41.40 83.93 99.39 74.35 31.13 33.14 17.57 17.70 25.39 33.48 13.82 69.97 16.27 88.53 71.63 49.14 41.70 25.75 31.37 33.97 9.53 48.56 61.83 14.17 53.07 15.61 -2.46 85.30 45.92 24.83 44.84 72.97 53.60 29.62 70.05 92.68 81.27 69.99 48.72 39.18 72.46 46.82 44.44 23.11 18.06 25.08 60.49 32.65 7.34 14.53 77.14 53.60 68.70 98.37 9.91 19.49 61.67 73.10 25.10 60.11 89.80 41.50 0.38 94.81 46.97 5.63 23.31 43.66 97.20 28.89 4.23 44.78 21.16 8.24 35.70 22.50 64.81 21.13 96.86 53.83 65.18 21.75 33.70 13.90 4.99 44.25 26.08 63.41 12.60 50.28 27.98 52.36 24.56 18.57 96.29 8.35 67.92 74.57 76.96 0.98 45.66 37.81 47.50 50.56 47.51 26.77 45.42 16.60 72.81 67.82 16.89 59.12 19.19 30.43 91.96 82.15 93.16 71.33 58.73 3.14 72.77 0.06 87.18 71.80 97.60 24.98 -69.47 87.39 6.88 74.25 36.38 88.15 21.30 12.83 47.12 92.55 42.61 47.94 12.03 55.96 93.99 22.84 38.60 45.95 43.15 11.37 40.04 33.18 99.47 47.83 70.38 60.25 36.54 55.90 59.33 89.73 24.65 30.67 75.38 93.67 37.29 23.51 30.71 13.60 4.77 29.99 84.47 80.88 4.13 39.15 73.53 53.76 47.98 53.68 53.80 65.85 49.06 50.64 49.47 71.44 74.24 10.67 11.39 87.94 93.99 96.76 78.58 11.99 60.14 56.53 74.63 62.46 21.74 83.63 64.85 91.66 10.63 25.65 96.81 15.07 29.26 24.39 92.08 37.94 25.81 24.45 0.60 22.29 72.45 67.19 62.82 84.59 73.04 34.57 14.95 85.11 88.16 55.67 78.08 12.66 34.68 88.20 31.63 26.20 65.57 97.31 -43.16 32.37 56.28 36.19 20.40 62.52 89.53 75.22 48.43 68.71 13.95 32.29 60.43 75.11 3.96 59.32 93.83 25.93 17.38 74.52 7.52 81.11 69.52 91.68 1.70 89.60 93.19 51.37 78.52 98.07 83.99 21.84 78.47 78.24 2.94 79.24 59.35 22.56 23.08 36.72 19.91 13.20 61.16 10.47 49.38 69.29 99.81 76.86 67.58 1.14 84.31 50.07 26.76 34.21 31.36 49.99 78.77 35.56 79.92 49.18 96.77 17.31 21.31 21.29 65.15 81.00 77.68 84.72 95.04 59.31 26.26 11.32 56.48 66.84 18.52 74.17 11.17 57.86 24.81 52.11 71.76 28.69 27.93 16.99 0.12 99.74 22.14 79.25 63.97 37.45 82.79 14.99 33.08 15.00 79.37 91.76 4.30 38.67 85.84 15.73 -1.46 77.38 79.11 97.33 6.72 73.12 53.01 85.24 12.38 11.60 14.90 72.68 53.47 33.65 71.37 18.61 44.84 80.23 32.14 0.86 16.96 4.07 8.52 39.97 59.90 49.68 82.18 28.24 31.30 54.62 0.40 47.14 82.23 83.29 33.62 92.20 63.15 65.82 56.02 63.23 85.70 53.41 56.20 74.09 39.63 13.86 99.29 29.67 49.51 23.97 37.93 21.76 42.16 40.05 73.00 87.41 60.30 57.39 44.42 48.25 83.13 81.70 72.80 61.99 76.62 74.05 46.36 4.43 1.29 79.06 54.60 40.24 86.67 33.48 47.43 63.23 96.26 54.16 7.96 91.65 78.72 89.99 77.47 93.45 21.82 81.02 5.56 78.45 71.20 67.36 51.03 65.24 87.99 87.39 80.63 38.42 19.57 3.59 85.94 7.27 -68.88 62.92 91.98 77.80 83.62 52.54 75.86 42.42 70.94 97.29 59.31 5.02 47.42 90.43 45.27 83.93 94.19 59.43 46.21 89.15 57.81 1.43 71.23 73.78 83.72 8.48 88.22 93.19 67.85 96.38 81.19 59.33 78.78 46.27 42.05 78.78 86.34 42.97 49.24 13.55 82.21 30.95 64.90 27.43 46.81 11.37 75.24 87.67 16.30 14.37 56.58 56.01 76.20 91.04 85.50 51.97 62.38 55.06 38.17 31.21 26.98 11.82 21.56 91.97 64.84 82.26 17.14 3.23 58.08 58.48 71.51 76.45 43.08 87.72 69.75 77.48 62.38 98.92 70.14 26.12 36.04 36.65 65.27 86.45 12.05 99.49 74.68 8.26 21.40 76.55 95.27 70.60 77.82 6.44 33.32 81.95 93.76 20.50 1.21 72.32 -25.79 24.78 54.46 83.13 57.26 47.48 10.53 78.65 95.01 77.47 61.70 73.10 41.10 54.33 9.48 66.67 51.37 44.98 94.82 56.99 80.78 42.73 7.50 3.66 88.81 86.56 27.75 45.96 33.98 74.62 77.20 8.38 26.78 87.92 78.14 91.77 79.54 2.23 3.65 30.16 37.89 55.71 45.57 98.83 90.96 95.43 63.46 79.50 95.89 75.86 62.25 36.63 69.59 94.53 49.63 72.57 24.51 10.60 43.90 18.92 35.30 19.53 54.40 62.04 14.88 70.46 87.53 23.93 1.23 87.44 68.17 1.57 56.34 41.89 66.75 80.36 62.67 6.42 50.28 65.29 41.23 98.15 38.81 45.63 94.97 61.94 26.26 27.36 49.05 34.13 71.14 74.97 60.29 74.72 1.21 51.84 86.55 41.53 51.03 29.22 -0.98 22.87 98.32 19.51 71.59 0.87 27.91 74.36 12.08 75.54 78.96 90.10 0.70 66.99 35.49 20.14 16.87 79.47 18.58 87.90 57.31 53.17 3.16 86.06 88.68 55.21 37.34 70.80 48.47 36.86 20.27 38.19 29.89 77.62 5.62 91.34 53.88 23.57 23.83 71.55 46.64 93.88 46.82 43.49 32.46 88.29 73.96 78.99 56.65 2.45 94.77 28.12 7.88 99.17 83.42 44.44 2.67 70.56 68.36 56.87 94.11 42.77 80.67 73.57 9.13 66.54 35.38 53.47 74.19 7.21 42.11 48.49 68.12 93.47 81.56 78.53 96.31 0.06 71.55 33.52 56.65 70.78 29.08 71.89 91.41 74.80 94.52 29.16 33.14 38.82 1.33 75.74 92.97 48.84 86.96 76.10 2.78 58.18 78.44 48.90 -63.15 51.36 47.77 0.81 10.47 56.93 64.75 24.70 29.29 49.85 89.34 49.00 5.60 89.91 26.30 59.56 9.53 33.63 27.82 9.92 56.41 94.08 39.28 48.69 68.46 64.74 84.70 85.68 68.50 72.73 6.67 39.70 85.64 70.80 51.20 41.51 50.72 48.16 26.98 86.19 92.78 38.60 79.51 74.39 34.81 64.16 81.54 68.96 65.73 33.54 74.41 83.35 16.43 42.53 62.09 78.97 62.84 51.70 71.06 22.35 94.73 16.85 85.17 85.41 25.96 32.00 56.92 86.78 80.43 3.29 39.87 27.81 33.40 2.98 78.01 65.39 86.01 31.22 86.34 64.82 63.23 30.36 7.58 9.72 46.37 75.54 92.81 87.36 26.30 64.31 54.52 72.46 37.00 56.38 35.76 40.73 43.17 24.58 98.02 37.40 -63.90 65.51 24.23 94.88 72.52 1.19 1.99 51.43 12.58 54.04 80.69 65.55 82.88 72.60 52.45 41.29 73.92 23.02 5.51 38.87 44.37 35.79 27.41 9.55 19.79 45.57 97.96 70.06 71.11 37.21 83.97 12.37 23.27 31.32 51.82 85.32 72.70 42.64 80.71 84.67 87.54 58.74 92.24 39.76 29.81 82.93 42.16 0.58 47.89 43.57 48.06 71.11 27.14 24.50 22.85 88.14 97.94 62.45 34.34 13.56 45.12 57.34 23.18 30.40 68.17 70.73 37.40 33.40 69.88 63.05 65.95 33.37 68.81 49.17 1.34 58.32 49.11 50.04 66.59 9.95 99.73 74.21 69.96 66.55 23.24 23.81 61.07 19.23 48.48 63.55 66.49 37.38 65.80 29.39 1.98 19.72 20.03 29.83 27.66 31.38 -75.92 20.06 62.17 57.75 10.15 68.82 75.30 71.97 64.84 74.54 80.52 19.35 85.93 3.58 85.73 80.96 37.31 93.20 76.06 69.28 5.35 90.34 31.78 30.93 36.97 47.35 81.81 18.00 44.78 96.62 58.47 84.73 33.37 43.79 15.52 24.35 40.72 40.95 36.23 82.11 61.67 9.39 35.62 89.36 67.77 36.89 6.36 84.14 14.13 65.79 29.02 28.83 67.44 87.34 0.92 43.74 21.79 9.40 91.77 19.27 94.20 57.60 95.57 21.85 18.84 35.20 94.25 18.86 80.54 2.31 28.87 59.48 81.92 39.17 50.14 7.92 54.24 27.83 93.83 88.81 59.48 58.45 21.20 15.67 77.56 94.12 46.96 66.99 36.99 50.22 14.00 13.28 16.87 33.43 26.23 44.13 23.93 59.70 48.00 64.86 -70.38 52.49 20.79 27.89 96.07 23.95 3.71 33.42 49.16 18.73 80.96 14.23 79.21 62.06 62.71 98.67 92.47 24.06 65.43 1.06 55.38 12.92 0.68 69.41 47.49 10.48 63.83 13.96 33.23 33.59 78.14 83.01 50.44 9.77 70.62 74.16 98.21 77.81 53.75 64.21 47.85 17.69 56.49 60.49 67.88 92.54 27.04 32.94 57.87 66.61 13.51 57.03 45.44 46.14 96.67 3.84 93.15 8.66 52.88 2.59 80.33 77.18 88.38 88.65 9.93 18.31 8.97 67.81 64.33 66.70 82.75 28.58 44.97 7.37 96.93 63.77 10.78 90.57 5.21 63.61 1.29 50.20 90.80 37.28 39.89 94.09 14.61 20.74 81.91 92.20 47.98 31.77 90.42 79.75 84.32 74.42 65.02 32.41 69.99 61.42 -87.92 49.44 7.67 19.69 75.05 90.69 78.56 80.98 22.33 72.90 84.75 93.47 71.55 17.63 50.90 14.22 74.42 69.44 47.86 99.67 70.99 91.85 92.02 76.96 84.67 48.23 68.94 77.52 39.65 59.12 64.24 86.45 82.73 62.62 24.37 4.79 76.19 68.52 36.10 63.28 4.52 45.64 87.06 3.53 74.91 19.61 45.02 75.67 33.71 60.18 69.35 68.38 57.22 39.43 75.69 89.17 29.67 83.40 8.80 51.88 18.84 27.82 57.72 12.23 53.74 45.98 16.98 68.46 65.55 10.26 73.42 9.34 96.03 63.78 48.38 82.41 90.04 13.69 12.49 26.87 63.58 12.20 60.51 8.40 52.31 35.96 48.69 95.24 38.30 94.91 69.15 57.36 84.85 91.47 86.99 67.21 59.43 44.45 86.74 55.12 -30.22 0.43 26.01 90.41 27.00 5.66 44.70 82.48 95.92 90.58 27.36 48.66 71.77 47.42 30.64 8.26 58.62 93.68 38.47 18.58 76.32 57.86 40.77 71.18 19.37 47.98 75.72 58.34 25.28 49.92 10.21 32.14 72.81 11.19 4.99 54.47 40.78 70.94 45.84 64.04 95.48 94.42 67.59 52.20 43.73 75.96 48.40 59.71 11.48 81.38 34.78 47.04 82.91 44.66 62.57 87.74 19.47 19.18 99.47 84.37 11.66 60.62 15.97 65.50 81.23 48.78 12.30 88.10 58.74 25.90 7.93 52.48 6.43 38.20 3.06 94.11 70.13 80.62 48.14 10.16 20.67 96.64 49.34 52.09 59.02 82.56 17.87 5.14 58.64 21.60 50.56 91.24 95.06 30.69 95.49 95.04 48.08 53.76 39.58 15.48 -33.93 31.09 59.51 76.03 19.54 9.24 68.55 75.71 83.82 59.32 9.81 16.68 12.65 93.10 4.21 70.20 30.20 29.42 26.51 32.41 65.52 37.78 39.62 47.44 39.92 72.02 83.95 59.11 2.29 77.53 25.52 79.05 50.21 11.00 63.16 24.73 74.86 94.55 69.71 15.30 44.57 49.29 74.54 95.20 55.25 67.28 1.18 72.99 47.54 58.17 50.59 81.50 11.78 53.03 4.82 59.67 84.34 82.96 57.72 85.58 91.12 31.15 3.58 67.25 96.16 2.37 62.54 20.91 59.45 17.97 56.94 52.90 16.31 21.44 17.44 93.37 94.40 20.71 22.46 10.59 68.14 65.22 68.04 14.38 15.19 54.91 65.10 45.02 95.98 91.10 88.17 98.37 52.57 90.08 94.43 67.32 4.17 87.35 35.62 36.69 -61.02 81.35 26.82 80.67 83.03 54.44 89.91 43.29 50.36 81.23 50.35 24.73 53.41 41.57 79.91 61.76 7.41 80.20 6.85 87.32 10.98 32.86 6.43 29.09 78.07 0.99 49.23 16.47 66.57 91.61 20.64 82.89 16.63 92.28 4.65 61.00 26.20 34.99 76.55 68.10 27.79 3.98 21.72 62.72 9.48 96.18 85.54 46.03 85.65 24.88 10.82 86.62 62.96 1.56 7.85 36.50 89.05 17.06 56.14 75.46 13.92 25.53 0.55 6.47 99.22 43.80 23.80 92.42 34.69 9.05 6.35 59.37 86.71 96.54 79.79 7.95 91.01 75.64 87.15 89.40 37.27 81.04 91.43 91.54 83.97 3.56 84.22 89.26 40.67 89.40 9.66 45.11 1.92 2.77 5.08 71.31 51.26 50.05 30.44 12.52 -62.04 73.62 66.87 3.38 70.34 88.96 8.03 37.07 53.63 45.32 32.98 41.60 52.01 92.03 24.28 30.42 20.28 15.10 13.90 66.10 60.48 78.43 18.04 88.94 86.37 65.98 63.10 70.01 30.53 65.26 6.93 54.47 85.12 18.55 79.96 1.64 36.05 6.75 24.83 56.99 19.81 24.33 24.36 34.75 82.41 24.24 86.05 99.92 37.52 42.86 75.09 70.66 91.29 38.69 40.72 30.82 2.74 4.44 47.83 1.30 72.84 32.96 30.13 30.59 22.50 50.53 20.65 23.92 30.32 87.95 41.31 31.14 91.02 48.67 58.31 8.62 88.35 57.29 80.73 27.31 51.69 33.58 65.64 85.46 1.79 78.24 71.13 34.75 29.21 17.47 25.31 32.72 35.99 89.83 11.65 94.74 79.96 38.04 85.59 82.26 -30.30 80.61 36.55 62.80 17.21 14.51 5.05 33.73 58.56 82.98 6.90 24.44 26.67 92.84 9.80 84.45 7.15 75.14 2.82 1.53 80.28 16.01 57.66 56.65 9.14 37.65 51.94 9.02 70.54 21.69 28.06 87.69 1.51 19.78 57.08 58.96 23.28 26.75 3.93 48.25 20.33 52.34 40.81 62.42 13.40 7.34 35.20 59.16 15.21 22.69 72.97 73.64 55.25 76.95 13.66 66.41 38.86 11.12 11.08 54.89 32.44 67.45 5.12 74.44 73.70 95.94 9.85 18.08 88.28 87.63 30.40 28.07 96.68 34.36 0.71 63.63 38.27 50.62 1.33 71.19 10.77 86.82 59.66 77.77 23.88 13.51 7.86 27.79 3.25 30.02 3.93 54.08 64.73 58.19 90.04 9.10 82.77 84.93 6.18 69.88 -94.76 83.15 12.50 77.10 17.18 94.47 77.58 88.69 46.95 0.34 41.61 44.33 37.17 53.50 68.08 85.37 53.20 69.05 80.80 35.66 60.96 42.97 25.83 77.75 9.84 1.70 9.74 93.15 96.28 81.40 29.66 47.42 56.32 69.40 97.99 21.63 19.82 23.12 22.71 59.07 54.30 69.20 45.63 51.64 74.13 97.88 8.66 85.64 71.35 95.51 88.62 60.71 30.74 73.29 51.21 31.68 25.28 28.03 30.92 36.97 84.92 28.21 61.01 84.27 64.94 27.32 66.06 67.71 68.50 64.84 25.75 80.78 65.65 78.27 55.46 4.20 75.13 72.33 92.55 84.33 5.79 80.83 42.49 33.54 50.40 77.79 9.38 1.86 63.18 74.94 19.63 22.66 42.58 44.21 0.07 41.76 40.61 70.42 83.80 42.61 -14.69 34.41 9.87 19.80 43.34 42.30 80.88 92.15 54.25 72.45 74.94 50.45 75.51 44.93 21.26 81.21 1.46 59.28 39.83 7.76 83.41 15.26 49.36 70.86 29.72 10.83 49.24 55.74 98.22 74.96 4.93 5.53 87.54 6.78 7.00 35.08 12.02 52.71 5.66 19.90 33.31 37.68 74.14 50.50 85.66 0.50 12.94 50.54 81.68 36.20 7.23 89.37 12.32 23.85 63.85 77.30 66.59 31.06 28.13 63.00 3.39 98.88 58.25 65.63 53.75 96.54 1.90 18.41 39.15 28.71 16.09 65.69 35.49 63.33 84.46 49.18 44.37 36.95 51.72 25.27 17.90 16.45 60.56 98.69 52.01 73.64 81.13 97.54 42.60 72.25 69.66 21.66 63.37 56.57 26.02 79.77 99.98 16.89 63.40 33.88 -70.44 27.60 21.15 66.11 12.95 30.14 91.92 45.31 27.38 40.52 42.98 27.14 6.81 19.24 4.41 29.59 92.08 41.82 15.23 40.06 32.36 73.06 82.55 46.73 53.53 3.32 30.08 80.41 7.80 44.37 61.46 52.80 10.12 25.43 95.83 38.06 79.57 72.91 39.67 30.77 53.51 56.96 15.04 75.02 40.33 10.85 7.86 99.90 66.29 10.76 87.24 64.10 44.91 56.15 63.67 42.45 60.25 60.04 33.71 97.82 27.87 88.42 78.87 22.20 8.47 11.43 48.62 42.88 56.52 30.50 19.75 26.08 29.34 54.09 63.30 86.56 58.15 91.35 64.94 56.82 89.05 35.81 90.84 98.24 27.32 58.44 96.14 29.97 78.31 93.57 10.64 47.96 77.62 82.84 59.61 59.40 34.65 24.39 81.08 56.47 -37.03 11.33 44.25 12.00 50.30 30.75 67.19 89.64 95.74 9.70 54.35 28.24 27.32 80.99 78.53 47.67 74.76 50.48 79.76 25.54 27.27 17.42 89.79 23.40 1.67 33.07 55.65 46.19 45.66 75.30 7.72 31.80 63.18 6.35 57.53 52.25 68.37 28.76 30.55 5.55 43.68 81.05 90.56 0.28 81.36 63.91 10.81 31.89 89.72 58.87 73.20 10.94 56.29 49.44 55.25 6.38 29.28 43.86 40.73 99.39 86.25 81.09 58.60 84.52 94.80 46.38 4.41 81.10 91.63 63.18 17.40 26.50 26.55 3.34 27.16 2.88 34.23 0.99 38.87 67.23 41.74 29.27 58.25 22.68 80.29 21.17 58.76 15.00 0.06 90.66 15.26 88.70 46.26 4.89 95.30 5.73 85.79 81.58 24.43 77.66 -26.88 37.94 9.34 96.18 64.58 5.87 13.48 75.05 6.55 94.43 20.47 42.84 94.88 32.00 23.83 1.87 76.00 49.43 30.84 55.18 61.12 93.03 37.27 61.80 63.18 81.83 29.12 77.44 7.16 18.31 86.85 11.02 45.52 85.01 95.96 73.21 85.19 53.94 43.47 68.47 14.07 54.58 20.33 72.50 35.48 75.95 78.63 87.54 52.20 66.24 73.25 44.13 43.89 91.74 52.30 72.63 31.95 61.86 38.79 94.70 84.57 76.76 75.75 41.71 26.72 10.81 64.73 87.85 6.15 82.37 99.54 97.34 2.93 27.55 47.66 89.58 83.25 63.16 89.21 82.70 82.32 18.62 59.22 45.24 91.44 46.11 52.48 52.16 62.73 50.06 34.69 40.08 27.66 17.15 18.78 86.03 62.73 84.71 30.54 98.02 -16.97 7.72 96.06 44.86 2.45 71.60 99.67 44.37 20.93 2.51 4.10 31.51 55.95 31.40 91.14 49.79 91.88 51.59 91.59 62.54 76.61 15.14 33.52 50.64 23.59 91.83 78.29 14.62 78.22 60.30 51.09 11.75 93.04 37.79 68.70 67.54 15.37 38.58 76.55 2.67 69.07 58.25 29.79 1.26 38.54 83.56 45.75 49.31 83.58 55.87 19.91 98.99 43.66 95.17 73.87 70.76 7.65 0.30 2.94 53.16 86.41 25.85 35.44 68.50 56.25 62.42 77.27 47.09 52.80 94.82 12.16 40.13 15.00 46.56 49.04 49.25 45.79 25.34 66.26 75.94 73.69 22.11 0.23 78.50 54.89 40.63 94.40 0.66 63.36 54.48 33.51 9.40 5.47 38.51 84.95 64.34 40.84 29.70 77.84 35.82 -51.74 76.95 36.09 43.43 69.40 33.94 83.21 67.25 22.64 89.23 28.01 18.52 12.31 24.40 81.65 15.12 65.01 4.36 5.79 6.10 66.08 46.46 47.98 11.79 52.96 45.19 52.24 29.45 73.79 51.51 68.06 91.28 69.41 86.40 6.12 31.59 95.16 90.46 69.38 2.35 34.53 47.18 90.87 63.00 79.92 23.58 30.23 8.61 22.33 99.58 33.29 32.29 96.28 42.10 35.60 37.21 42.74 97.07 70.73 43.32 13.88 89.73 76.89 20.63 65.03 61.22 86.24 20.85 76.79 25.06 27.37 60.99 88.02 16.84 62.74 8.86 37.46 1.01 96.37 17.84 37.04 48.08 12.57 8.32 96.49 37.16 41.08 30.51 6.66 19.36 92.61 84.16 68.69 73.55 16.30 83.04 72.28 83.78 80.12 92.18 -14.74 22.15 35.32 61.06 20.70 0.70 93.47 94.23 87.11 61.28 54.95 1.49 80.52 59.42 29.76 51.92 95.10 91.96 89.91 21.79 7.25 81.35 85.76 8.56 81.61 85.74 19.30 96.66 90.82 97.60 18.34 53.95 31.58 53.04 75.62 31.44 45.99 35.03 68.91 56.14 21.26 45.54 95.78 78.08 47.28 50.93 62.19 48.70 62.76 5.51 61.03 75.17 13.40 25.13 88.87 9.37 9.66 98.47 43.46 79.04 33.20 84.89 77.50 55.43 17.64 99.11 54.47 36.74 79.02 78.37 35.21 48.08 31.41 44.38 64.30 26.78 64.13 47.16 34.17 77.55 5.90 26.67 84.07 5.48 84.45 39.82 85.50 48.68 8.10 11.47 58.59 52.42 82.74 54.94 27.35 66.01 15.70 11.65 70.67 0.53 -46.36 24.42 34.24 8.45 81.73 69.49 92.11 83.38 76.12 48.36 94.47 8.47 18.74 54.90 67.24 28.94 45.95 4.19 65.48 55.25 84.62 27.09 75.53 5.55 34.39 70.34 8.97 25.99 86.11 52.95 5.46 83.22 83.44 54.12 63.65 26.38 58.54 82.56 47.86 51.91 76.02 46.85 72.59 87.99 85.98 91.15 53.37 50.92 91.46 54.87 15.27 3.13 58.74 61.88 19.32 96.90 74.98 38.31 43.00 93.56 31.71 25.89 1.14 7.66 88.31 91.70 12.45 25.11 77.48 6.27 94.38 61.57 43.16 49.00 75.61 43.68 55.73 32.13 53.23 84.36 68.89 34.68 92.41 82.21 70.22 61.78 47.10 9.71 12.16 47.40 23.07 48.83 11.22 78.05 43.02 24.23 88.06 89.68 67.25 43.46 -70.15 89.07 18.75 98.96 49.47 35.78 56.94 20.80 69.88 79.08 80.41 13.53 70.15 47.09 34.26 28.59 47.78 71.96 39.11 51.57 99.65 43.55 60.55 38.80 23.45 80.87 47.26 18.53 21.68 67.24 69.66 10.15 48.07 32.74 56.96 94.82 75.52 14.30 43.92 86.95 47.00 1.60 94.44 54.64 21.74 69.12 96.93 3.54 41.03 69.17 11.69 46.12 94.70 57.83 10.46 95.92 32.53 43.34 56.94 24.44 97.00 42.16 1.15 14.21 96.23 52.93 24.49 77.44 49.34 26.33 31.36 99.30 2.73 28.12 62.83 6.60 51.93 74.25 83.80 52.93 68.63 4.54 13.48 5.16 44.93 27.06 76.43 87.44 37.54 37.75 80.97 36.02 22.03 33.27 20.07 54.22 57.28 27.09 56.37 11.03 -99.61 77.30 27.55 20.79 87.55 5.68 50.37 77.60 20.10 44.72 99.07 34.73 19.47 76.14 70.74 86.51 16.98 99.84 2.92 97.29 30.49 61.73 10.18 61.89 5.11 99.68 71.91 99.53 79.94 14.09 93.45 78.96 16.22 81.03 69.44 34.84 56.92 21.90 94.00 64.66 74.06 39.67 86.60 30.85 3.68 20.00 34.16 6.73 0.73 78.58 7.78 17.88 58.06 18.94 58.52 66.38 63.05 14.49 22.28 86.15 99.17 57.01 13.55 55.91 28.47 39.41 49.58 19.81 17.94 81.90 40.99 0.21 27.72 57.24 24.11 2.11 87.79 50.49 64.55 56.35 25.37 39.28 79.44 89.91 58.88 74.26 31.95 76.08 69.51 85.52 85.64 9.07 40.44 15.03 97.42 49.87 43.87 16.59 70.71 4.76 -89.90 4.53 43.54 66.47 9.43 9.07 83.36 12.76 22.49 12.15 42.84 86.79 8.83 70.56 91.18 96.98 35.11 97.89 20.50 41.90 31.98 1.36 29.63 98.49 85.51 50.26 47.19 7.76 56.98 75.04 83.19 71.39 2.36 73.66 36.31 34.42 26.63 48.36 99.48 13.44 17.74 99.10 34.98 21.47 8.13 78.78 48.28 73.80 89.84 37.54 43.14 23.05 69.43 95.56 70.20 16.47 27.39 13.04 14.98 60.95 75.20 91.58 46.68 14.26 1.88 6.50 42.67 8.44 99.14 11.25 65.15 46.07 73.70 47.98 43.98 70.52 91.00 45.43 73.63 60.39 95.37 71.04 70.56 70.47 37.25 7.01 96.02 80.88 53.17 49.87 17.50 78.14 88.55 20.07 6.10 97.91 8.24 52.12 64.64 70.07 -81.91 7.81 22.95 14.80 44.58 56.41 67.99 98.53 5.21 92.06 25.26 21.33 12.99 68.06 38.88 25.98 86.29 54.12 4.99 21.96 53.61 59.81 89.10 65.60 95.84 40.35 22.81 59.45 21.05 71.02 18.82 25.73 85.49 23.20 17.60 78.67 40.91 49.34 2.17 83.16 23.81 61.35 20.13 50.87 64.93 13.48 85.61 94.42 94.65 79.38 85.10 93.61 89.33 38.08 35.10 35.68 93.18 26.91 54.46 98.08 95.30 17.60 37.81 40.65 77.22 89.29 60.41 55.95 5.94 26.53 58.26 71.74 30.07 8.78 47.97 62.55 25.49 87.56 79.25 54.41 10.58 14.20 56.64 87.42 8.85 17.93 29.29 13.43 70.04 76.69 83.67 83.43 69.30 64.05 93.38 48.88 15.68 87.66 78.35 94.04 -60.50 36.33 33.44 71.72 90.35 47.39 95.81 35.53 20.86 7.91 35.64 72.47 40.51 21.67 82.62 34.77 17.56 97.73 25.23 11.10 3.68 54.30 74.55 61.30 1.22 24.26 5.22 87.68 72.16 78.74 61.03 12.18 45.54 79.96 93.97 24.51 93.63 91.96 13.17 15.59 32.75 57.37 85.97 85.95 59.46 52.82 75.27 26.95 40.17 6.67 78.04 78.21 90.18 18.67 60.03 23.74 48.75 54.39 89.71 8.62 78.55 1.51 86.37 45.46 44.50 29.39 57.54 10.73 47.55 79.60 65.09 75.35 15.13 83.62 20.99 54.48 22.87 32.76 11.53 38.13 22.82 28.85 63.57 92.69 52.56 74.47 87.33 35.95 34.04 13.50 85.54 50.82 63.43 83.02 47.74 77.57 30.89 52.91 89.84 53.90 -33.18 95.68 45.36 7.63 21.65 17.86 67.43 33.61 50.85 42.31 5.47 54.28 85.87 75.47 20.07 87.16 95.90 44.61 10.98 15.14 9.80 23.17 11.30 82.23 8.52 8.28 99.80 8.88 70.54 79.46 85.43 42.79 5.64 12.09 18.26 72.12 86.40 54.45 59.58 58.14 45.48 49.72 43.26 39.82 6.83 79.81 79.76 3.65 45.88 66.66 94.10 21.98 90.31 75.52 38.82 35.10 60.39 37.77 65.61 1.10 90.43 58.01 54.27 0.51 87.03 53.33 42.50 26.61 63.98 90.65 4.90 67.07 21.24 98.96 35.21 50.61 91.63 56.92 40.85 74.96 79.73 8.82 96.07 27.03 49.76 99.86 30.80 68.60 23.96 63.09 12.73 49.78 43.58 74.49 65.91 36.19 35.02 66.84 29.99 82.93 -1.60 22.34 14.90 94.96 74.89 83.66 62.07 54.94 37.43 67.24 77.68 87.57 52.31 71.13 3.71 79.68 67.11 94.16 67.77 17.20 93.82 12.49 36.16 9.84 78.73 95.30 84.14 42.50 29.26 32.55 5.36 80.58 11.79 62.49 31.48 2.48 91.63 19.06 9.78 14.76 15.80 7.99 69.87 48.02 23.81 7.90 61.77 55.26 26.99 84.92 91.10 26.47 42.53 66.85 13.51 59.49 24.29 45.32 13.55 84.97 94.27 95.65 54.83 33.25 83.83 85.79 28.04 68.20 45.40 48.44 83.68 54.50 31.90 8.88 95.64 7.00 6.98 13.53 9.49 95.39 17.12 37.02 19.30 17.87 58.27 7.00 16.93 43.47 75.71 24.66 18.33 19.04 28.40 3.04 35.50 44.98 6.10 87.82 56.55 25.86 -46.47 75.38 78.60 39.96 91.56 18.14 10.81 94.73 45.24 9.43 39.69 93.66 6.84 21.98 35.56 37.17 63.02 63.53 54.95 24.64 89.52 0.65 48.88 67.99 92.20 77.84 19.23 85.67 53.73 46.06 63.39 46.02 21.98 93.17 45.08 77.68 23.73 61.56 73.37 68.88 87.57 17.13 38.79 58.48 13.26 92.33 61.40 83.06 87.42 48.38 55.63 31.79 86.67 83.33 27.05 8.52 3.06 9.37 2.86 79.16 88.67 56.03 96.25 8.50 1.24 4.36 7.55 63.30 39.03 3.18 59.78 20.05 1.98 48.42 51.49 91.08 71.34 87.80 0.70 93.37 22.89 38.80 47.64 83.38 89.26 17.81 82.63 52.43 55.18 38.01 91.36 86.33 6.28 56.65 25.20 28.84 8.16 24.26 51.17 46.36 -15.49 36.47 85.28 73.14 45.46 94.49 33.45 5.56 39.62 92.74 61.29 22.92 8.97 75.98 2.51 62.27 13.46 40.85 49.26 22.74 87.54 22.32 13.13 71.31 8.11 96.34 27.52 78.73 2.14 98.47 33.60 57.12 55.15 29.57 77.19 31.13 63.48 35.00 15.43 49.00 63.39 59.20 26.69 92.83 45.42 39.31 96.35 62.56 5.76 90.81 16.21 35.75 11.53 42.03 50.15 26.20 85.97 34.46 95.78 74.66 32.84 24.16 26.29 7.26 16.86 55.59 23.40 98.19 48.65 16.93 54.62 35.40 1.28 57.11 19.51 33.91 38.01 71.52 64.43 98.07 41.16 61.91 24.38 57.51 77.18 8.58 94.00 17.60 80.42 21.34 74.03 59.23 7.68 25.04 36.53 31.32 35.25 85.58 11.27 75.22 -86.26 95.27 8.13 56.94 73.40 90.45 71.25 75.01 67.14 48.68 50.00 63.64 63.89 17.87 72.09 99.89 26.32 27.77 43.49 84.14 98.81 57.30 56.67 63.91 49.66 7.27 9.52 5.16 78.86 65.33 44.77 97.71 42.20 45.98 23.25 73.29 31.84 78.51 44.53 53.15 68.89 6.78 24.69 59.37 23.05 20.62 79.59 64.64 68.61 26.18 66.04 83.31 78.87 25.83 47.10 44.97 73.69 88.32 32.26 37.49 82.34 68.06 39.89 0.19 86.13 94.47 6.22 83.25 20.36 82.05 2.94 41.15 87.04 5.32 65.94 72.25 41.51 44.61 33.95 83.25 5.58 62.16 52.82 88.05 96.64 28.60 29.77 12.63 37.34 84.05 3.17 95.47 60.50 71.27 71.88 33.86 46.97 13.35 69.73 65.51 -30.83 74.88 28.48 61.66 37.46 47.35 97.95 85.72 54.88 76.62 71.30 52.49 10.01 80.55 79.71 71.15 44.47 0.70 65.74 50.56 72.23 22.73 4.31 99.06 33.26 48.96 41.49 8.83 20.99 85.36 40.53 6.53 23.46 66.30 34.92 29.35 45.58 58.19 27.13 92.72 86.00 93.69 74.17 61.78 16.19 48.01 57.15 48.10 69.94 43.48 24.38 95.26 57.82 71.04 94.86 6.47 75.45 20.64 68.39 37.68 75.03 72.20 61.91 95.14 99.29 2.82 60.68 23.53 11.80 61.05 60.81 59.27 80.65 52.64 30.31 70.64 92.26 86.08 46.20 84.71 65.95 81.48 63.02 9.56 8.40 0.91 5.16 96.96 39.13 56.90 7.46 69.00 34.74 11.66 53.89 0.32 33.03 40.52 14.53 66.99 -34.82 64.77 82.26 1.36 30.33 37.86 34.65 7.09 65.43 83.20 8.57 8.63 90.00 80.74 39.54 77.45 45.49 80.79 81.41 95.07 58.05 4.58 51.47 10.34 32.31 61.74 25.43 23.49 67.97 69.62 31.45 67.78 38.72 48.71 0.79 90.36 45.55 51.90 38.65 90.49 89.17 76.79 25.48 18.68 74.07 17.51 48.33 92.17 9.04 41.83 87.87 7.39 25.58 64.22 58.08 52.78 27.38 64.77 33.15 32.56 74.08 75.52 84.72 51.22 55.97 18.64 30.68 52.76 57.22 74.74 45.11 13.35 32.94 84.47 93.49 73.96 47.75 85.83 56.91 63.18 14.79 46.17 38.85 68.50 78.47 34.38 82.44 32.92 92.12 56.36 23.78 53.88 31.56 85.96 3.54 53.21 39.55 32.29 30.20 58.30 -53.39 23.18 96.07 8.09 74.33 73.40 77.98 9.00 29.73 74.86 30.66 76.85 21.57 61.98 49.95 32.45 86.88 93.72 77.25 73.25 18.16 82.12 17.82 13.18 38.85 27.93 32.57 77.51 80.13 42.70 70.75 65.43 23.93 3.03 30.98 70.02 21.47 43.59 59.90 41.67 55.92 31.31 92.05 14.80 60.20 15.98 50.45 89.15 26.51 60.37 13.12 97.49 14.36 67.96 61.39 40.21 91.96 41.68 15.92 1.46 57.69 17.64 94.94 50.24 20.85 34.80 56.30 58.17 26.29 61.20 37.27 79.87 85.95 1.79 62.83 52.39 63.39 88.97 45.73 59.93 99.16 73.66 94.00 11.25 12.91 13.11 23.55 85.72 29.86 63.14 42.09 64.98 28.84 81.95 39.23 34.20 70.89 26.13 40.46 34.75 -66.16 25.61 97.10 17.23 16.15 69.46 18.09 9.85 80.39 24.06 87.31 74.73 37.01 24.24 88.66 74.56 93.30 20.06 7.47 31.57 62.94 35.10 4.47 13.81 68.92 28.48 59.42 3.45 10.28 24.42 26.39 42.23 31.50 47.13 72.33 76.66 24.35 7.57 30.67 38.56 1.32 75.81 62.97 51.61 42.86 47.43 96.87 38.11 26.37 0.18 5.22 26.80 57.00 23.18 98.87 42.76 97.70 34.97 92.09 54.62 99.30 91.87 2.84 50.68 72.12 34.07 59.89 50.47 62.72 80.59 64.21 20.09 54.51 63.99 75.85 85.24 37.76 90.37 25.83 76.71 77.85 14.53 18.43 97.10 75.70 91.90 78.68 62.41 33.23 38.90 99.88 90.96 76.38 87.41 2.94 74.92 77.67 60.46 24.04 7.67 -10.99 55.22 45.46 46.19 56.92 85.37 89.77 52.60 32.29 54.85 20.81 86.00 9.76 92.11 27.74 90.29 26.52 58.57 11.04 55.56 61.81 71.68 40.46 65.54 6.85 13.54 80.46 24.90 47.62 0.19 96.12 40.58 1.17 55.24 46.37 89.75 95.98 41.42 56.62 82.63 64.86 38.06 92.08 85.10 59.15 8.09 58.07 70.85 2.45 48.71 95.39 74.71 83.99 42.72 41.38 5.92 20.56 87.91 8.35 74.25 17.29 69.54 75.98 71.12 72.98 56.55 88.64 38.35 25.33 53.88 64.44 84.28 46.45 20.30 45.83 30.79 27.21 91.13 32.44 3.45 88.78 38.87 67.81 49.68 90.48 39.82 56.02 33.60 55.10 93.32 54.59 70.04 13.27 56.12 49.79 90.81 23.78 30.85 42.66 93.54 -94.64 59.35 63.30 11.49 95.38 53.30 53.86 10.48 65.91 35.90 36.27 35.30 86.01 59.52 85.21 62.81 27.89 81.48 35.70 24.56 2.95 80.47 51.62 8.09 11.28 76.31 7.58 82.39 86.53 63.46 52.70 30.92 29.91 56.36 22.38 31.89 28.81 11.86 77.08 31.19 60.89 75.78 82.13 18.53 49.42 55.00 59.33 24.51 50.60 54.39 27.38 8.34 28.35 45.88 18.84 72.82 3.27 95.35 67.10 43.59 30.72 58.20 84.37 16.66 54.80 50.76 33.00 72.16 78.31 30.43 44.09 59.36 29.26 7.72 30.57 14.47 91.28 92.20 79.63 70.59 9.78 32.13 37.76 11.56 22.35 33.22 35.58 6.59 25.64 49.85 0.74 24.29 18.09 47.68 8.17 35.68 28.29 4.31 74.23 35.25 -25.91 78.09 2.36 13.16 21.33 67.67 48.82 39.74 50.28 63.47 19.03 6.42 23.85 34.63 40.96 26.29 43.75 76.71 85.09 44.77 29.44 48.19 95.38 24.96 15.05 83.54 93.44 65.92 53.37 91.55 9.59 18.70 14.64 35.57 69.29 6.65 85.22 51.93 22.25 56.63 11.59 62.36 69.50 90.41 97.20 26.49 71.71 73.82 98.24 75.80 97.30 26.35 61.71 53.37 50.00 73.67 4.38 62.68 73.29 20.35 21.98 53.96 29.51 98.68 78.10 64.23 78.54 63.17 34.15 72.93 94.37 94.81 23.09 63.36 38.38 69.34 61.19 44.70 2.63 97.63 84.32 67.45 11.80 56.92 84.48 11.35 42.40 46.26 35.54 82.47 88.16 98.67 93.81 22.20 77.86 4.94 57.54 18.03 26.31 34.83 -53.24 62.35 39.35 69.72 62.07 30.96 85.05 71.31 10.24 81.74 87.85 29.68 85.60 21.94 46.08 17.73 15.43 94.35 90.39 67.64 5.89 18.23 6.62 65.99 27.62 41.94 33.60 69.26 67.63 47.14 31.86 70.44 9.85 12.78 21.21 56.52 8.81 80.09 8.40 79.86 31.91 22.91 42.73 0.64 28.63 80.59 56.64 46.84 69.31 9.41 15.65 71.06 36.99 21.12 93.84 44.94 6.05 34.84 48.42 84.47 14.23 72.59 32.70 73.46 17.09 39.09 33.74 93.01 6.39 18.03 58.56 7.70 53.41 30.72 52.17 62.05 82.74 15.75 60.70 55.08 87.15 39.78 91.51 98.20 97.08 28.71 98.96 64.93 43.84 2.42 40.88 27.03 68.53 53.74 25.29 52.30 47.24 49.89 46.69 74.50 -15.06 15.66 49.39 81.19 93.43 2.82 0.21 87.58 18.26 70.17 82.69 96.34 14.31 74.57 33.70 99.74 75.61 63.73 22.96 18.09 6.35 35.24 70.02 19.72 88.68 82.52 99.70 7.33 1.99 84.23 89.80 19.03 24.37 96.61 37.12 32.25 64.24 52.46 80.45 45.93 87.57 71.45 7.19 17.26 64.06 27.52 38.04 16.91 85.12 23.22 86.64 68.01 30.41 41.96 87.13 41.80 30.03 26.30 74.88 35.77 12.31 36.57 89.92 98.84 61.75 66.70 52.61 62.42 28.20 53.51 42.57 32.34 88.66 43.01 21.18 27.35 2.62 42.19 61.95 62.13 7.48 17.68 52.34 6.90 0.01 94.22 86.58 28.95 90.47 83.81 12.64 90.65 82.73 67.97 91.42 92.52 44.43 83.80 97.39 51.02 -5.65 78.00 3.69 23.97 11.78 69.65 52.21 84.60 96.29 72.19 47.46 61.72 28.59 15.19 56.06 22.88 57.32 53.51 11.32 47.96 54.28 62.58 2.53 26.45 81.63 94.41 68.91 64.08 6.48 26.33 68.72 3.02 41.68 67.08 99.56 8.18 31.64 96.56 18.47 58.89 32.69 7.06 57.96 57.97 26.24 86.90 34.89 92.89 2.58 76.70 63.46 26.25 88.91 22.79 11.25 30.05 33.59 17.47 77.04 34.63 95.01 39.52 5.02 49.44 95.41 61.10 78.32 6.21 57.92 33.18 85.42 45.64 29.10 3.89 57.23 53.59 23.73 72.37 12.18 31.38 25.30 92.23 99.19 64.53 46.18 15.25 6.17 49.41 61.77 70.45 88.70 58.78 24.32 2.50 57.50 69.09 1.00 18.60 6.11 74.33 -86.75 46.85 54.83 96.03 2.21 45.18 3.68 32.78 6.14 89.24 87.22 13.55 15.67 2.91 87.14 93.97 46.86 73.60 33.26 75.32 75.88 84.81 34.29 1.25 70.08 12.37 57.41 53.05 89.80 97.93 90.19 45.87 46.61 95.49 98.35 43.81 20.64 39.48 99.40 33.84 59.37 52.71 43.25 88.55 93.98 82.73 65.23 82.47 89.73 35.69 66.30 14.04 21.34 42.98 38.21 65.37 82.38 90.18 55.37 1.14 50.92 61.87 34.94 71.00 39.98 48.59 4.80 96.60 14.37 33.27 52.02 45.93 72.60 82.99 4.04 88.66 3.47 72.55 39.26 46.02 75.70 39.27 72.87 65.13 64.22 0.95 36.58 58.60 11.32 78.66 54.18 28.42 39.10 82.76 51.54 53.76 22.09 42.59 41.40 33.82 -1.36 95.88 84.18 76.03 40.87 56.16 20.66 52.82 30.74 24.35 35.10 35.29 79.33 42.02 57.96 48.78 22.77 0.80 19.09 91.77 73.48 99.26 87.18 31.97 18.20 74.80 64.74 38.91 9.91 39.96 62.40 76.08 91.11 15.49 49.35 48.48 24.14 89.59 67.03 0.27 29.42 7.46 70.06 59.48 44.16 97.40 21.95 71.25 16.90 8.44 69.67 75.13 85.03 64.80 5.41 95.79 83.85 30.95 30.10 77.65 63.00 11.96 42.42 2.97 0.03 84.98 74.58 88.94 31.77 1.71 35.91 49.50 31.26 39.31 93.89 73.55 1.92 73.52 87.84 95.90 39.43 83.35 78.10 97.73 64.52 76.56 86.96 32.71 59.24 95.41 38.28 54.16 75.18 69.81 60.40 93.00 5.27 1.11 71.05 87.70 -19.37 8.40 84.32 24.47 36.58 99.90 17.73 31.73 68.00 7.28 52.77 29.90 84.08 76.06 32.54 45.92 33.16 58.26 79.20 95.00 79.33 61.60 12.98 78.79 83.51 84.38 56.09 53.07 49.42 39.20 20.46 58.79 7.76 97.25 78.79 78.12 5.28 20.08 62.82 50.71 23.05 71.15 17.66 85.95 4.63 25.37 93.69 77.47 4.67 79.69 92.62 60.58 32.35 48.25 70.69 89.97 35.48 36.34 27.85 91.67 60.03 5.51 9.35 98.60 16.43 41.33 69.95 69.36 28.20 84.53 26.45 41.88 61.50 94.65 11.06 14.82 86.37 5.30 13.78 69.92 6.26 7.92 12.50 51.75 6.33 78.26 7.75 46.23 99.90 58.47 25.97 8.39 74.94 4.08 0.87 64.24 71.53 64.24 17.77 93.75 -69.54 40.90 86.89 20.19 1.37 7.98 11.54 72.34 18.10 84.71 89.62 10.87 2.26 6.99 80.24 90.68 53.82 79.44 55.71 88.71 77.66 87.74 44.42 47.91 78.86 54.61 11.46 28.49 28.48 31.51 6.07 6.21 16.12 7.40 19.04 0.46 54.64 96.98 34.69 33.29 40.92 46.21 58.14 57.90 10.57 23.00 86.56 43.20 87.74 24.97 35.96 51.71 44.38 9.01 16.70 42.07 24.82 66.90 37.90 86.76 0.69 34.66 49.05 97.34 62.52 3.06 15.01 22.06 33.92 7.52 76.19 51.16 44.83 20.09 33.49 53.78 44.00 55.12 98.37 37.54 10.54 68.32 65.65 35.06 84.45 6.03 56.07 65.94 56.15 74.46 95.08 8.30 7.53 79.12 41.95 58.29 77.19 96.72 30.80 99.30 -55.20 9.78 73.06 32.09 25.24 12.47 29.18 3.69 47.80 23.01 47.30 49.71 44.56 90.08 59.74 3.00 67.13 14.46 39.04 10.67 35.63 84.61 7.75 85.33 64.71 6.68 68.01 42.82 29.91 95.06 27.06 82.23 28.28 19.67 84.09 3.38 65.84 36.29 60.05 13.77 67.37 36.14 59.30 57.05 74.00 62.70 12.75 90.07 33.94 44.99 59.47 67.22 26.50 72.27 14.52 17.12 37.80 71.15 48.97 89.66 84.29 31.90 11.36 79.88 45.75 39.87 62.05 91.15 49.73 75.04 33.27 51.24 96.92 21.05 70.28 37.23 13.30 69.69 39.73 23.29 92.34 55.56 34.48 25.59 10.18 57.08 51.37 94.58 20.15 98.13 3.02 83.76 10.02 66.98 71.92 59.59 54.83 39.85 80.90 61.42 -92.10 86.21 7.91 74.93 74.30 86.94 27.15 67.53 27.68 2.49 54.51 81.98 83.50 1.96 75.70 30.70 67.20 49.89 89.72 18.97 83.71 29.37 78.58 19.56 96.14 36.38 98.64 77.49 54.99 46.24 67.73 87.43 20.94 91.45 93.15 52.50 17.75 68.16 12.26 69.64 12.24 85.86 26.54 92.29 46.94 68.14 81.49 10.64 15.85 22.06 6.76 8.37 67.73 59.98 2.82 3.17 5.62 31.05 41.51 11.48 19.70 74.07 38.94 23.45 12.43 3.57 61.97 48.18 85.04 18.41 98.56 37.72 46.33 45.88 26.71 9.28 82.34 17.17 32.65 21.71 28.99 52.46 94.01 86.66 77.74 80.46 98.59 57.76 1.43 53.00 35.81 71.41 25.27 99.45 16.47 9.93 60.26 39.81 31.57 58.28 -84.27 78.77 21.08 58.65 11.35 25.08 38.63 82.20 69.15 48.88 93.91 60.17 66.24 63.53 11.64 58.05 29.14 16.99 66.21 51.52 73.23 24.43 22.46 97.17 55.89 81.66 63.94 63.46 29.05 35.27 98.41 33.82 64.75 18.81 80.81 14.45 14.14 92.56 93.55 66.83 31.76 8.68 73.07 78.03 60.77 47.82 27.84 36.77 17.27 29.20 98.31 92.25 50.99 91.42 19.77 61.68 69.11 80.57 94.66 12.35 36.62 38.36 42.78 25.48 64.73 72.76 48.52 92.53 75.09 15.22 33.85 53.92 53.36 94.19 65.29 41.28 56.67 91.82 5.39 95.94 64.08 32.49 53.17 71.96 53.25 86.02 67.50 50.63 69.18 68.00 97.57 36.07 51.59 19.79 89.39 44.04 16.56 89.28 50.08 37.72 -54.66 41.70 66.96 9.94 86.00 45.03 93.55 58.41 19.44 81.12 27.89 33.39 69.43 41.88 16.33 5.22 43.77 59.44 21.29 26.38 81.57 60.75 97.33 34.25 12.78 39.85 1.38 55.95 28.74 21.59 99.70 55.35 93.56 29.93 31.08 50.32 74.76 23.79 76.80 90.79 17.57 30.29 96.13 61.06 54.26 51.42 92.84 33.44 2.63 39.66 79.28 37.74 53.72 56.03 61.42 82.97 44.96 49.71 78.68 25.11 68.72 14.44 13.84 29.56 54.24 94.93 48.43 18.80 91.69 47.18 0.22 7.43 51.38 59.81 46.11 93.96 33.57 9.94 45.77 8.14 40.88 44.19 83.94 0.06 16.97 20.47 74.67 65.38 98.47 96.77 51.53 62.42 36.79 80.86 54.41 30.41 95.86 14.87 44.21 19.85 -96.30 2.81 59.32 41.51 12.67 39.30 72.05 55.04 5.76 48.92 82.19 27.40 0.44 81.66 31.58 43.70 9.68 69.72 65.38 41.87 28.05 14.07 24.31 13.43 54.43 51.07 76.83 75.32 0.30 34.95 99.64 13.64 29.07 64.96 50.88 52.75 1.85 64.18 18.95 17.76 52.35 47.47 42.48 91.44 57.87 43.13 57.00 52.93 10.86 4.18 19.41 46.17 28.48 57.76 61.99 86.11 5.61 73.48 87.78 83.61 13.41 31.66 55.13 62.50 93.04 59.82 5.41 85.89 83.29 47.29 28.36 3.50 2.28 92.00 88.37 62.34 39.65 48.23 31.56 32.79 56.34 17.87 62.57 98.14 95.97 76.90 53.02 61.87 71.83 29.92 63.10 48.74 26.68 0.12 34.16 57.66 7.63 13.97 95.95 32.19 -85.86 89.58 18.31 67.70 7.21 98.36 72.47 20.66 76.57 69.25 9.36 43.24 10.99 47.09 8.87 36.26 82.54 13.91 99.27 20.32 56.43 99.15 24.40 17.32 26.16 53.22 27.23 32.51 48.65 38.37 61.16 58.55 54.09 48.24 50.88 85.01 64.38 34.42 17.19 42.50 22.74 26.56 88.90 34.85 6.56 94.76 22.02 17.73 2.08 61.09 20.61 21.13 61.02 74.54 29.28 60.91 13.34 32.16 70.43 15.38 41.07 52.94 23.45 68.82 31.23 92.74 37.21 0.51 89.85 40.52 16.65 73.62 77.53 99.81 28.18 53.85 67.36 68.66 51.08 66.65 66.39 63.52 30.02 69.81 97.25 42.76 26.74 6.00 58.91 41.09 99.30 24.05 14.85 73.68 11.83 0.09 62.40 75.84 40.81 76.75 -37.38 84.40 71.66 1.32 15.18 6.38 39.39 19.91 88.65 68.05 59.43 11.66 23.22 69.65 13.87 80.94 71.27 99.92 41.61 41.76 87.30 83.15 98.66 8.70 2.43 19.96 54.84 3.54 61.58 72.04 14.78 61.18 33.99 74.87 78.81 54.46 47.23 87.05 99.79 62.95 80.49 70.22 11.03 61.78 23.84 0.86 1.20 47.71 42.51 11.19 5.23 15.26 34.86 8.31 66.02 0.07 28.39 13.73 82.30 15.76 46.17 94.31 17.60 43.50 22.99 38.97 54.33 53.96 33.36 45.90 23.93 39.67 38.09 86.72 52.88 36.78 48.26 9.76 23.96 18.77 51.20 60.19 54.30 99.25 12.11 98.84 67.96 12.56 24.86 37.68 11.89 98.87 72.42 37.50 54.71 56.50 74.05 84.83 83.46 72.88 -52.02 32.92 14.83 81.98 14.18 93.90 49.79 65.75 54.21 90.43 8.92 51.10 58.70 91.51 72.82 20.41 59.39 64.00 61.14 12.07 44.27 28.26 72.67 14.74 32.82 49.84 2.19 61.22 34.97 3.26 28.31 7.89 13.42 18.71 16.30 96.34 4.83 89.05 42.55 64.48 55.64 21.11 59.06 48.12 13.46 48.69 71.76 17.17 2.40 15.46 56.90 27.49 6.89 57.68 38.03 76.48 93.15 94.40 26.34 85.41 42.44 35.63 89.83 7.74 66.50 36.16 60.28 76.99 53.56 17.40 0.39 34.39 66.25 65.32 84.98 96.20 9.87 49.41 86.82 45.95 96.30 82.30 67.01 72.14 58.01 66.26 10.34 59.72 89.89 61.50 17.83 0.89 55.02 84.61 14.35 75.72 39.17 73.75 60.18 14.20 -96.92 9.21 6.84 81.98 64.49 54.41 2.74 77.11 77.08 50.23 28.62 78.94 65.59 65.32 34.39 53.10 75.84 47.53 68.31 25.61 95.74 72.63 44.23 8.91 83.12 13.17 96.37 64.43 36.73 88.74 46.58 96.21 44.58 99.78 38.07 42.03 39.38 59.58 43.73 34.38 51.31 80.49 87.52 80.69 19.49 64.32 62.86 31.31 31.02 65.40 84.97 1.60 29.60 69.24 65.44 74.64 43.26 29.12 55.70 31.43 65.71 55.49 36.31 70.65 69.83 16.91 81.10 94.86 69.08 70.63 84.58 96.21 81.76 32.84 0.25 29.33 53.84 23.42 2.59 84.69 83.35 42.85 82.54 80.29 67.10 54.36 12.95 88.13 12.25 38.59 93.92 30.46 26.22 91.68 99.09 81.23 6.55 45.42 39.40 77.69 -5.87 99.48 53.17 42.72 98.77 88.20 97.86 63.95 13.43 56.14 23.62 79.16 18.81 53.18 75.35 48.98 26.28 88.53 4.17 18.31 72.72 32.88 66.70 83.86 39.51 42.64 35.33 18.16 28.13 84.35 17.83 41.70 46.16 78.08 74.04 80.95 94.91 98.57 98.44 39.34 51.36 74.95 43.44 0.03 68.33 34.08 98.84 73.66 54.70 66.77 19.19 62.35 93.52 59.74 36.96 95.08 63.06 59.29 30.73 29.58 14.61 95.09 11.49 15.65 59.72 16.84 97.56 75.69 41.14 44.21 42.95 44.68 16.78 53.52 84.88 3.80 84.02 20.97 32.85 24.43 32.25 35.12 2.20 18.46 66.33 87.82 21.52 86.68 64.20 48.32 89.66 65.07 6.01 18.34 41.91 6.95 12.21 13.46 61.85 92.43 -28.92 95.91 7.63 46.95 16.18 78.87 54.19 5.33 40.25 1.58 70.58 32.99 25.70 12.09 80.33 87.85 85.71 60.70 47.51 85.90 48.93 11.07 71.83 47.52 58.14 98.58 76.04 40.94 49.12 7.74 1.13 14.11 50.06 12.34 27.27 39.63 56.63 5.04 64.87 72.59 0.46 65.49 54.68 43.68 9.41 15.33 45.65 72.95 99.28 42.36 52.45 39.50 46.98 55.86 22.17 12.46 18.57 73.70 80.30 2.70 70.00 72.69 4.56 8.48 88.87 76.06 88.05 76.12 73.92 97.30 15.16 90.14 9.85 59.83 72.77 80.97 23.62 5.57 30.15 58.74 20.68 70.88 29.77 23.15 49.81 58.64 20.71 40.02 99.96 77.56 47.52 41.35 30.55 94.79 17.34 88.31 57.74 88.92 99.35 13.40 -79.50 95.12 81.52 98.77 61.06 43.80 0.02 52.37 58.13 71.22 63.91 78.04 42.63 69.95 57.39 80.70 40.91 45.44 13.87 48.35 12.11 83.11 36.31 51.63 3.23 74.01 57.65 8.78 42.66 55.97 16.42 6.03 63.12 16.27 13.24 2.81 8.63 57.58 48.00 74.00 43.82 89.44 79.04 11.61 50.81 47.75 47.27 83.05 97.89 97.87 81.15 60.42 85.92 78.75 57.58 90.04 31.11 54.56 89.83 35.86 19.40 96.58 63.57 7.63 8.17 91.77 7.70 85.65 75.23 6.07 37.66 80.96 20.81 73.33 99.56 80.14 47.26 83.11 14.85 3.25 87.76 14.98 82.25 12.42 80.70 11.90 47.28 61.90 66.37 81.17 76.31 50.41 37.92 92.28 51.20 55.41 14.45 6.15 15.12 56.81 -36.86 56.18 15.18 55.65 33.30 98.07 88.98 38.58 61.67 65.30 74.82 15.07 19.54 98.48 81.26 62.70 22.13 22.98 14.10 70.02 2.17 94.60 49.20 13.71 30.25 39.26 34.86 43.14 5.70 46.98 53.61 7.33 0.55 6.10 84.96 14.49 81.39 35.52 45.41 27.83 60.84 30.80 10.23 13.76 66.23 71.12 4.59 39.43 45.93 59.60 30.77 10.01 72.67 31.28 36.19 68.59 53.63 43.50 3.68 4.46 1.32 59.33 89.13 62.82 53.04 89.16 21.54 85.51 29.92 42.38 31.68 15.99 88.94 28.28 86.60 67.30 50.72 83.57 24.02 18.98 36.79 93.33 9.00 67.22 16.45 81.52 79.45 50.74 40.22 57.41 54.80 97.05 44.39 65.12 27.31 78.34 57.58 24.15 95.70 36.98 -46.00 11.51 13.43 12.91 0.27 98.70 52.94 80.63 9.41 32.51 15.48 4.43 48.31 35.98 76.28 55.76 95.81 46.77 47.44 88.32 21.24 16.76 85.14 58.43 82.88 82.06 65.04 32.78 42.55 12.18 55.13 51.69 94.10 58.69 22.23 20.96 43.22 66.41 99.63 35.07 11.62 87.05 61.67 70.16 44.67 77.53 77.27 26.94 12.98 60.15 59.01 20.15 6.00 51.54 75.82 10.69 41.48 75.69 52.12 69.09 53.20 20.88 20.39 66.62 63.71 5.76 71.63 78.73 5.11 96.73 38.27 14.33 2.88 54.31 82.55 46.64 21.95 25.00 67.92 83.87 39.35 87.70 88.21 64.71 47.66 87.67 95.79 18.78 78.95 45.59 72.58 54.04 88.69 16.66 75.57 9.90 10.74 31.61 32.10 9.18 -49.37 34.92 53.16 73.22 28.78 37.97 60.95 71.25 90.95 11.54 62.63 77.86 62.91 77.06 83.31 64.63 87.59 89.47 99.17 63.40 42.75 1.16 58.57 77.46 51.19 8.09 93.32 30.30 58.33 27.93 19.50 66.56 10.61 44.10 62.39 35.41 73.73 30.30 48.17 61.56 85.94 59.38 95.07 0.80 95.45 75.61 67.15 94.99 9.43 9.22 40.34 44.56 78.66 82.16 93.27 40.38 48.76 53.26 31.28 11.69 64.66 55.01 42.20 95.78 96.73 74.65 41.13 18.68 14.83 38.25 82.12 73.94 2.02 84.39 38.85 98.56 42.74 24.70 73.48 75.10 25.32 46.53 89.22 16.06 50.54 19.43 56.50 11.30 36.40 0.60 13.97 28.97 68.54 69.45 82.05 76.77 19.41 1.98 71.08 85.89 -41.60 78.37 41.76 18.08 51.95 24.94 61.82 87.15 61.97 45.59 58.84 70.76 75.37 18.86 30.11 96.58 92.81 8.11 27.46 4.98 26.67 15.47 57.11 51.33 60.06 37.86 97.69 58.95 32.89 95.25 54.17 91.93 44.43 36.09 30.52 14.45 42.99 53.71 41.57 5.53 69.07 66.10 38.48 36.53 65.61 12.42 28.73 4.11 8.52 52.03 21.10 29.39 19.62 96.89 49.91 63.49 80.67 54.00 89.45 26.75 27.73 82.38 13.17 96.93 22.57 9.04 95.65 78.44 73.87 59.96 49.80 94.09 50.70 96.39 1.46 68.34 13.54 42.07 20.77 48.60 37.58 85.22 20.50 70.10 88.55 79.03 87.86 11.13 73.47 33.91 98.56 35.87 18.34 92.09 63.59 21.12 58.98 65.23 25.48 6.81 -98.63 72.87 8.28 84.22 45.72 79.12 26.63 59.95 38.86 60.10 62.11 66.80 20.49 75.16 96.31 23.66 92.77 60.16 14.21 94.34 35.77 55.53 92.63 71.24 80.52 14.86 17.58 74.93 67.29 84.09 71.33 57.73 97.87 82.43 46.69 53.25 63.32 32.85 24.35 54.42 87.85 53.61 82.22 13.20 43.11 91.67 81.54 89.92 92.08 91.65 28.24 47.17 74.92 57.71 18.19 28.62 17.30 90.82 43.21 15.08 2.07 78.39 50.54 81.47 47.36 78.01 4.90 64.74 14.48 53.64 68.36 56.24 56.47 13.99 61.19 99.89 31.67 16.42 26.35 76.30 5.55 37.94 71.02 20.15 79.47 8.83 48.83 32.57 58.31 56.40 87.59 16.75 12.68 87.70 85.80 39.88 44.53 14.50 31.17 38.02 -20.14 45.79 99.42 44.19 7.91 32.92 95.89 95.72 89.38 23.75 68.53 82.46 39.04 22.53 92.61 89.16 72.73 95.95 87.06 41.94 75.71 76.21 37.02 0.26 0.65 15.09 81.23 94.50 13.55 54.35 9.37 95.23 91.70 74.11 98.13 24.26 6.31 7.65 7.04 28.38 58.47 49.72 96.78 87.06 70.52 28.26 27.65 8.26 91.59 66.08 6.41 8.07 59.15 98.11 74.46 78.55 87.71 13.97 27.12 85.18 31.11 44.20 18.87 75.35 61.64 65.52 45.31 56.52 58.05 3.70 45.06 90.91 52.50 88.47 58.72 15.58 2.26 51.53 80.24 36.53 42.30 70.96 22.49 76.63 69.61 18.81 37.67 50.23 62.59 46.13 70.07 34.44 89.57 0.24 46.27 79.07 46.34 45.44 27.48 20.94 -58.37 42.36 4.08 36.49 62.79 67.77 49.88 65.27 79.11 69.88 49.19 37.75 87.17 37.34 68.69 52.67 91.76 56.77 8.12 67.10 88.89 73.65 37.79 97.27 26.60 23.39 47.37 22.34 39.14 61.62 6.75 54.48 86.85 14.60 30.24 86.80 62.21 33.94 16.80 78.66 67.68 8.63 49.38 31.60 41.88 45.93 43.79 60.54 72.01 71.48 85.02 27.37 26.40 95.60 84.81 37.13 87.71 75.04 26.70 67.99 36.79 75.24 84.86 28.38 31.69 99.60 44.96 85.57 47.80 4.89 48.21 66.87 59.53 29.52 42.01 66.90 6.34 97.96 80.11 18.68 94.88 0.44 89.88 39.73 24.11 33.18 49.50 87.28 50.88 15.04 42.10 98.68 59.04 24.38 67.75 27.76 34.92 86.39 37.93 93.79 -94.65 47.65 31.34 53.73 30.66 61.38 68.35 74.62 90.07 39.87 5.04 88.98 70.30 31.62 36.51 59.53 63.36 64.89 29.49 26.29 55.81 0.15 29.88 44.37 29.63 79.88 29.15 34.38 94.40 18.61 31.45 15.89 1.91 38.59 11.26 21.85 65.93 47.97 16.53 29.78 87.76 24.72 73.02 78.20 23.91 55.56 67.04 96.73 75.81 40.19 2.59 54.02 39.29 12.70 59.85 72.35 1.45 95.52 98.73 36.32 55.93 41.61 39.80 13.14 20.69 15.34 0.20 2.25 45.55 57.72 68.68 62.57 70.09 40.25 88.31 33.56 9.62 4.10 40.15 11.63 12.46 5.93 75.17 66.25 63.95 56.57 2.12 54.48 28.35 10.08 96.15 29.93 53.15 91.98 23.58 16.41 75.55 38.51 68.03 99.86 -25.94 38.63 48.43 24.71 3.78 57.08 51.03 43.58 85.02 3.78 18.13 58.73 11.15 88.63 99.82 18.35 57.43 78.33 11.23 28.85 90.33 97.78 57.11 86.60 24.92 91.36 78.56 67.74 98.69 32.53 60.09 95.42 99.88 36.91 35.50 69.41 57.74 77.28 93.53 73.62 6.33 63.91 73.28 29.33 1.06 28.65 64.49 82.91 2.00 22.83 31.92 31.78 51.19 72.70 79.75 19.44 77.49 63.58 21.97 65.21 26.80 10.19 3.98 47.38 64.50 80.76 44.00 16.88 45.93 86.80 60.08 64.71 91.07 99.88 5.49 69.29 56.52 49.75 30.46 25.00 70.34 75.31 73.69 24.66 10.61 32.79 52.65 5.39 75.88 85.86 27.16 84.57 92.54 77.18 67.32 67.41 94.63 6.51 9.51 96.60 -84.79 91.93 16.26 67.50 99.35 67.39 47.55 50.26 76.41 2.09 14.15 42.96 12.47 52.03 88.30 4.17 69.55 60.27 99.75 14.92 86.74 40.73 70.63 36.76 91.90 37.85 39.95 19.42 51.90 17.33 66.62 16.24 86.80 69.11 76.19 39.21 9.41 16.62 51.89 74.64 77.49 0.02 67.59 58.44 48.04 97.20 67.80 60.22 98.73 30.80 89.55 43.44 24.39 31.65 31.75 34.43 32.41 70.33 57.04 24.68 60.10 49.76 59.23 46.84 13.44 62.65 68.25 5.47 55.92 76.29 50.17 40.44 60.19 40.97 20.75 17.57 36.68 81.08 21.26 61.14 16.34 93.17 17.76 94.77 39.53 50.45 82.79 86.65 9.63 31.39 82.18 54.15 19.34 63.08 45.64 58.24 72.08 53.94 78.71 42.93 -83.77 62.15 17.79 37.61 25.00 12.96 6.99 6.41 32.83 43.09 88.59 46.70 24.04 26.10 80.27 22.72 77.06 24.91 64.27 6.09 37.21 61.61 71.04 20.60 41.45 73.05 88.47 13.75 11.21 89.70 79.07 22.06 26.78 99.40 33.04 75.31 34.58 30.22 68.82 74.65 86.91 30.17 70.36 26.14 73.49 37.26 16.52 13.64 71.63 42.27 62.85 31.75 28.93 38.76 36.68 20.95 85.35 9.08 54.73 73.90 47.02 39.02 74.70 0.62 45.06 98.74 36.15 47.89 11.60 33.84 52.91 5.99 14.59 12.67 37.92 1.37 64.28 49.16 4.70 7.99 69.31 9.51 40.64 77.22 66.39 15.15 35.46 42.76 99.01 93.31 0.36 72.83 3.45 68.08 27.86 50.34 8.14 48.24 27.48 67.21 -67.45 27.48 91.73 34.02 30.15 41.65 82.66 41.95 94.25 80.40 59.21 19.08 25.45 28.11 89.13 45.02 44.98 92.87 15.94 25.40 81.26 84.20 11.45 96.55 40.03 84.78 82.01 58.84 31.84 26.73 50.69 1.02 15.86 8.52 89.27 65.45 60.93 95.23 68.72 40.25 21.30 6.04 48.91 8.89 1.56 79.19 39.30 56.43 23.53 93.89 56.18 15.34 89.12 67.12 77.69 15.80 86.16 18.91 63.46 96.12 14.18 17.70 34.58 47.41 3.85 17.37 76.28 67.37 6.74 69.86 52.08 31.28 40.22 53.30 95.02 31.30 73.07 74.34 79.62 44.15 47.48 37.96 47.08 10.26 74.54 85.42 25.91 5.65 95.38 72.58 76.00 58.84 68.16 50.19 75.94 51.70 2.79 18.36 82.32 40.77 -12.02 20.05 36.26 94.63 88.10 98.59 52.73 54.02 18.96 5.25 73.06 41.81 67.30 99.73 13.09 90.30 55.88 28.38 6.42 95.34 78.90 76.27 73.04 27.47 49.18 66.78 25.38 12.19 39.99 43.85 5.82 3.27 85.29 63.85 69.42 87.21 45.92 90.63 38.40 36.76 82.52 71.15 22.15 15.06 10.43 38.71 45.06 83.53 61.00 69.99 73.08 91.42 63.13 62.74 66.42 25.02 26.78 79.05 26.43 79.58 70.92 6.24 78.65 61.17 74.26 12.82 65.38 33.93 19.33 64.91 0.16 98.48 22.95 79.20 60.48 0.39 56.82 70.48 42.36 3.88 18.83 27.93 22.08 69.21 30.08 61.42 20.40 88.20 72.87 86.83 26.12 79.18 14.39 8.61 35.12 75.02 15.66 91.98 70.75 73.54 -98.24 40.65 97.52 72.43 22.16 60.78 47.06 9.94 97.05 28.46 32.12 77.55 60.07 95.87 28.33 66.35 62.83 86.97 18.67 44.21 79.46 14.25 64.47 98.51 35.82 34.78 84.39 78.01 68.89 58.96 61.45 66.11 42.26 29.69 64.17 18.13 91.48 63.61 89.67 75.91 36.42 27.54 93.37 23.14 0.30 67.93 75.71 93.40 72.46 27.87 30.50 7.49 86.33 38.55 84.23 69.68 16.17 17.62 18.95 57.47 86.37 58.72 27.65 88.95 57.52 17.67 2.80 53.02 18.34 57.65 65.98 8.59 8.23 14.93 98.22 60.13 77.01 64.30 65.03 75.02 89.55 18.78 87.34 31.35 72.71 95.97 6.74 68.32 76.16 90.37 79.38 62.35 58.65 27.00 63.96 77.44 92.38 60.15 57.99 39.93 -27.91 73.62 3.13 17.65 36.03 48.23 91.61 47.49 61.57 86.20 89.19 62.28 38.71 41.48 63.49 42.43 73.03 16.46 12.21 65.99 95.43 34.32 70.52 80.85 94.42 70.97 15.27 12.87 80.33 41.70 72.57 5.60 25.67 23.53 91.52 68.76 50.26 87.57 59.15 91.26 2.80 51.58 32.63 86.21 87.30 13.34 68.19 4.75 10.53 72.21 65.81 0.44 25.59 21.04 33.59 97.84 12.24 67.89 40.32 7.19 1.70 59.99 45.60 68.21 87.62 88.33 36.37 84.16 21.16 33.19 2.81 97.41 56.19 11.08 64.04 82.08 19.28 81.76 6.75 80.10 85.20 71.07 59.58 38.07 25.95 3.59 9.27 24.54 90.01 94.90 53.52 65.93 57.66 5.84 84.86 75.59 62.37 17.33 76.94 17.94 -63.89 3.27 37.44 44.98 89.72 69.33 17.93 79.31 6.40 77.71 27.27 23.45 86.28 13.56 10.59 60.91 74.37 89.85 30.43 94.11 55.50 19.92 25.53 13.84 52.62 6.56 21.39 17.89 35.83 28.95 31.72 2.65 92.82 72.04 50.92 80.90 12.15 9.90 75.95 93.65 3.40 42.85 71.22 46.09 71.15 6.31 90.75 64.70 4.52 18.21 90.62 94.26 73.71 52.56 20.34 56.97 75.51 99.36 59.27 14.47 52.32 21.68 64.86 99.74 19.27 14.36 66.08 3.81 48.22 22.11 16.40 80.04 88.61 30.91 16.17 59.16 65.57 96.95 61.55 13.45 10.87 99.91 2.13 78.82 61.45 38.64 74.46 73.46 83.51 10.17 15.92 24.61 51.28 22.51 94.20 25.49 7.98 21.90 50.79 78.72 -31.84 28.16 93.04 44.61 55.99 46.31 49.57 35.58 78.07 95.51 68.20 28.11 18.74 47.22 4.51 54.29 55.30 2.68 60.55 23.26 50.72 16.50 46.35 44.88 83.21 83.06 89.18 8.86 87.22 27.62 39.10 42.95 9.98 38.60 39.35 88.96 47.39 50.23 48.33 27.04 24.62 54.81 15.60 63.54 46.77 19.35 21.32 39.20 29.33 24.92 20.41 30.77 3.48 77.29 36.79 55.72 92.88 1.31 0.85 25.05 50.74 20.57 37.65 69.88 90.01 80.42 92.29 0.19 17.03 54.95 26.66 21.41 49.62 50.02 71.33 17.81 70.94 89.18 18.07 37.14 50.71 11.44 20.68 2.00 97.85 16.50 54.23 40.35 17.84 91.51 44.04 56.75 33.10 58.84 45.11 98.78 55.42 92.85 64.91 79.51 -13.58 58.25 28.28 41.73 99.40 89.88 44.66 37.17 70.65 9.32 62.15 87.05 39.73 57.30 8.76 87.38 2.89 26.35 42.89 37.54 50.87 97.65 22.76 18.09 98.34 35.09 6.39 72.25 68.98 12.55 35.75 91.75 62.08 40.65 78.84 27.62 4.80 85.27 18.25 94.28 48.87 18.22 49.99 13.66 43.29 68.12 29.86 86.19 3.07 29.79 58.95 16.76 99.16 94.39 6.49 64.35 80.75 39.91 25.24 18.45 23.61 96.60 75.97 76.26 20.38 76.69 12.84 75.20 11.95 22.16 23.55 77.57 31.48 24.06 90.74 96.89 97.05 19.38 76.16 13.77 10.41 36.33 0.83 56.93 19.67 1.61 88.81 3.65 42.88 95.37 84.97 58.54 28.14 3.20 89.24 56.45 93.65 24.97 68.33 26.96 -97.18 20.64 21.30 3.50 59.01 31.86 19.19 8.93 48.83 68.70 99.19 91.70 57.66 68.06 98.93 12.53 28.19 3.88 19.62 39.65 63.27 27.99 65.56 84.71 51.46 97.34 66.33 39.13 89.68 43.58 46.13 55.58 60.45 49.39 98.98 74.19 80.67 60.65 35.78 47.65 10.76 16.91 41.60 86.03 27.61 89.56 26.79 87.67 8.23 22.02 67.42 63.84 66.09 96.70 27.71 19.41 1.78 3.10 21.36 33.42 99.57 28.05 99.56 36.20 14.75 73.83 7.15 25.42 85.34 86.39 38.16 48.83 57.84 72.75 54.34 8.54 9.71 66.29 71.62 84.52 56.63 71.01 41.27 17.28 33.14 10.93 14.34 17.31 10.31 60.09 79.43 63.94 32.33 37.97 27.11 10.56 40.64 85.36 58.67 24.56 -0.66 21.50 93.59 68.54 88.40 97.41 97.91 3.58 30.88 44.54 32.08 80.44 75.84 97.01 90.90 38.84 8.33 70.84 95.43 8.45 65.07 38.19 44.93 32.85 70.29 90.94 39.41 44.57 68.57 85.69 89.77 79.07 62.17 75.87 73.06 13.46 84.06 81.19 62.89 82.25 57.56 77.58 34.68 8.95 67.23 8.37 55.41 59.58 75.80 25.91 34.85 36.59 78.65 28.93 98.21 90.59 29.47 18.44 33.07 90.72 87.10 69.33 50.72 96.95 0.53 64.00 23.87 51.12 75.21 95.76 37.75 63.90 48.90 22.67 14.19 55.96 87.52 81.52 56.04 15.79 1.70 76.68 57.86 68.87 42.24 67.63 43.08 65.70 83.98 1.94 77.33 47.71 18.12 89.79 65.34 84.89 68.22 95.53 45.40 97.27 -35.02 26.92 20.10 41.70 73.63 63.61 24.40 1.58 20.66 72.89 17.67 75.08 97.70 60.31 43.59 45.30 17.23 41.73 36.97 63.29 28.93 43.88 36.04 97.84 26.22 31.42 61.18 99.09 49.26 16.18 77.32 38.56 52.57 30.13 8.15 23.53 46.01 3.42 5.91 24.45 32.22 61.94 68.91 57.93 58.83 87.71 92.86 56.00 41.51 42.48 67.68 11.29 0.96 1.25 74.98 39.43 91.94 53.86 30.01 83.17 76.40 85.27 53.57 14.89 34.68 23.14 96.73 82.26 70.22 62.25 13.14 4.16 2.23 44.24 54.98 57.57 45.11 1.68 62.80 89.78 85.22 6.18 79.64 14.77 58.94 55.93 48.70 5.26 83.77 30.53 22.03 18.04 41.52 74.65 63.93 48.37 67.53 73.54 31.96 64.42 -74.60 4.97 96.48 78.81 22.32 92.05 64.67 0.13 97.01 3.37 56.52 25.66 98.56 57.65 77.31 91.76 0.40 71.41 26.31 80.55 6.98 90.59 99.35 69.04 23.00 39.43 61.28 89.89 24.37 69.34 92.37 20.92 6.80 30.68 72.26 4.79 78.44 65.66 82.84 70.64 30.20 97.25 18.92 94.37 5.69 48.72 40.73 73.94 15.50 73.71 58.13 51.50 69.86 93.75 11.78 79.42 52.53 83.42 45.16 48.15 57.13 26.99 57.92 55.35 76.15 83.40 2.52 61.17 29.22 42.90 74.81 67.86 44.76 77.97 40.38 53.87 13.55 25.39 60.70 59.30 47.98 98.16 92.45 65.29 63.08 41.91 36.13 34.82 9.46 28.17 33.00 54.33 13.06 97.58 43.39 98.39 96.69 22.27 64.97 3.74 -12.94 99.96 99.35 57.20 14.49 92.23 53.33 82.61 57.41 26.47 47.04 79.19 55.87 6.09 74.76 34.31 95.13 53.09 25.34 47.04 70.12 24.50 41.94 45.68 26.33 13.24 97.69 81.11 64.82 71.83 70.45 92.03 93.45 27.48 52.44 99.96 74.57 54.97 5.05 73.52 6.96 28.94 35.20 92.57 63.85 16.94 56.83 83.53 45.58 22.26 9.28 66.53 37.36 14.27 22.29 54.63 75.54 10.83 97.84 32.37 12.73 9.20 0.71 38.81 22.10 49.66 85.95 50.69 97.60 85.11 37.84 63.51 49.92 95.20 33.79 41.13 40.76 61.98 91.75 68.01 90.21 96.02 73.85 98.52 41.07 79.93 3.71 89.02 41.86 47.34 15.41 17.13 45.23 2.69 19.53 83.24 4.49 49.77 28.05 29.33 -8.43 56.98 99.65 20.29 1.87 31.33 39.83 27.51 44.28 12.78 50.81 19.32 97.75 26.10 46.05 39.15 84.22 96.45 59.34 37.68 0.53 51.89 29.23 13.79 48.15 91.17 36.89 86.09 93.02 68.64 61.06 13.24 11.33 71.40 38.85 99.28 34.91 97.24 74.21 13.36 11.48 54.99 28.70 80.01 67.41 34.20 93.71 34.22 96.90 93.60 73.60 16.11 93.87 19.34 63.57 9.57 18.63 78.56 61.99 87.25 61.93 23.90 26.38 61.89 22.91 34.29 78.40 28.51 94.56 4.80 48.26 97.55 59.14 90.33 99.60 22.28 79.39 43.09 4.23 17.59 2.44 80.29 19.61 60.98 65.57 50.71 91.28 95.56 42.83 28.67 81.05 77.67 60.94 65.29 68.44 72.57 23.70 60.97 84.22 82.53 -17.82 49.31 27.50 7.50 85.46 75.03 76.03 51.59 3.59 87.06 50.84 48.32 92.42 2.53 76.35 5.45 89.48 40.44 49.99 80.92 2.61 63.23 36.88 44.81 7.92 44.85 85.10 22.22 73.27 66.61 80.05 86.62 96.77 99.06 42.26 48.54 20.64 16.14 0.47 93.27 53.56 24.26 74.70 82.99 24.64 51.17 17.30 38.93 86.35 28.48 53.99 9.49 28.88 45.64 29.51 77.88 6.74 5.69 51.75 10.33 82.11 12.45 29.53 12.68 52.32 20.61 82.87 96.77 67.79 7.52 50.53 87.84 4.79 67.58 20.92 84.90 16.52 50.70 78.72 54.65 60.69 61.73 11.13 44.32 48.09 7.56 23.44 12.33 39.35 52.95 67.88 98.22 31.32 56.10 33.34 65.30 86.17 31.34 15.69 54.59 -87.25 65.98 61.01 62.48 51.82 27.66 28.92 70.30 64.56 54.05 24.97 30.00 25.68 4.27 89.73 94.36 81.06 62.13 54.10 83.59 92.92 71.85 82.43 58.74 68.64 89.97 82.26 98.33 33.80 66.46 26.26 80.61 40.97 91.67 82.30 43.99 75.93 85.73 58.46 72.99 35.67 59.97 49.90 1.52 26.40 69.32 13.66 71.73 28.64 57.96 36.04 50.74 60.86 73.76 12.46 74.58 96.95 37.02 91.67 79.07 39.66 18.00 18.47 99.04 86.20 23.76 83.10 73.38 10.28 55.03 5.20 22.14 17.61 5.00 1.50 29.29 59.09 90.26 8.05 14.04 44.19 77.34 1.17 48.04 23.35 64.67 34.48 31.42 17.91 41.41 75.55 84.94 59.53 91.08 64.77 89.46 15.19 41.94 72.64 87.87 -81.97 31.50 67.36 37.52 39.46 54.37 6.42 61.12 12.51 46.00 90.69 30.05 41.86 67.00 53.72 18.55 34.56 28.53 32.90 3.08 40.02 63.47 75.59 38.76 36.96 57.38 20.04 88.47 65.98 22.92 99.71 69.74 78.40 79.35 86.09 38.10 31.70 71.87 4.79 66.37 5.85 27.18 44.82 58.30 0.10 62.20 57.54 55.07 58.42 92.80 19.84 30.92 7.61 39.52 9.88 95.93 32.42 94.83 17.15 37.80 31.35 49.15 94.84 48.79 4.53 65.35 91.37 2.44 79.42 84.26 56.07 36.96 94.32 81.04 38.98 46.62 97.82 17.93 19.75 41.11 26.16 0.28 9.92 75.19 41.88 37.97 15.51 95.09 6.11 62.83 19.24 15.65 98.04 74.46 29.51 59.89 89.25 82.40 70.68 92.70 -55.79 89.48 98.25 39.73 29.28 91.80 72.63 35.13 38.87 60.22 22.23 20.92 7.90 84.12 1.39 0.65 94.33 75.56 75.09 93.02 52.32 91.70 94.70 79.46 84.54 95.96 33.78 37.73 59.04 6.18 78.40 61.20 85.00 91.18 85.07 36.84 10.77 69.81 45.71 22.77 42.03 63.03 72.13 41.91 67.46 5.83 27.95 12.08 22.86 66.64 83.43 45.19 41.25 90.50 69.38 85.72 89.01 35.93 33.26 14.87 58.91 30.40 72.89 94.45 84.49 88.12 24.86 92.65 96.69 99.12 86.20 56.08 95.56 63.37 51.28 46.61 12.00 27.32 10.53 6.17 74.46 44.05 25.21 74.44 93.71 36.78 47.29 63.29 66.01 43.23 72.04 43.03 4.59 41.74 75.03 2.21 43.50 92.94 58.24 71.93 -53.64 44.34 9.24 64.09 5.38 24.89 11.40 40.34 99.50 76.09 89.23 22.32 60.54 89.50 76.84 51.70 67.66 8.97 56.36 62.09 21.12 77.85 52.80 16.47 81.91 92.35 69.38 90.59 28.37 35.88 71.45 26.08 2.50 79.46 49.02 89.62 54.19 54.04 54.75 9.64 70.75 5.63 24.73 42.29 18.81 3.31 90.57 62.03 80.60 11.28 22.22 58.28 95.74 27.00 51.78 74.40 65.37 85.85 28.57 74.81 10.91 40.51 56.72 36.65 63.95 86.05 75.24 44.23 37.80 26.44 49.54 41.64 45.05 89.85 29.07 98.20 38.79 93.89 5.57 98.49 11.21 30.95 10.01 69.49 54.48 9.03 16.02 46.67 52.08 61.70 52.96 42.89 37.19 79.04 5.48 85.23 97.10 45.17 39.16 61.90 -1.28 99.97 53.09 36.51 73.62 48.78 52.54 73.14 31.28 10.41 39.43 98.26 17.67 18.69 7.77 56.36 63.08 40.86 27.40 62.70 59.57 73.26 33.03 17.11 82.95 84.75 60.46 47.11 31.67 83.17 93.60 90.74 43.74 29.82 28.68 74.36 28.28 14.66 19.42 69.23 54.71 45.58 48.20 44.42 32.83 82.94 7.28 53.64 26.59 15.65 11.73 56.35 16.92 93.93 41.69 83.13 5.24 64.45 3.17 84.60 3.60 42.23 4.77 40.20 46.43 69.54 60.32 85.40 45.50 75.94 73.39 36.54 76.03 85.27 79.39 77.41 9.64 29.88 7.69 93.88 36.86 53.92 78.44 15.07 89.94 94.69 84.91 23.01 46.44 70.03 70.08 39.08 73.69 54.68 31.79 98.42 27.58 5.41 53.07 96.25 -25.90 21.40 28.85 49.07 23.99 35.95 10.51 40.73 53.21 89.05 51.90 68.45 39.58 20.78 38.83 60.77 66.75 50.05 71.09 62.74 64.77 7.22 39.62 59.92 10.68 90.27 77.91 30.54 99.73 56.45 52.33 23.01 85.44 41.16 77.67 14.83 69.38 46.00 51.79 13.61 56.05 71.49 64.09 47.78 38.34 21.91 5.09 93.96 56.39 14.66 16.04 75.45 23.52 75.09 49.41 18.48 41.33 24.14 60.12 93.98 77.64 75.74 33.05 80.13 78.93 47.83 2.64 8.66 14.54 78.42 17.77 43.39 72.39 95.34 48.10 62.49 21.20 58.57 30.03 91.87 23.19 87.94 10.43 19.72 86.48 64.64 4.29 57.51 0.75 51.69 92.55 13.87 61.64 17.82 25.39 86.96 23.04 36.96 39.03 49.50 -92.46 96.67 50.14 16.87 66.02 7.76 58.02 29.45 99.35 49.15 69.50 16.27 39.84 84.55 77.74 75.29 39.66 40.63 3.84 78.21 41.80 77.20 64.86 21.24 98.66 2.45 94.58 7.30 50.19 91.24 60.16 52.05 32.17 56.18 72.06 56.33 87.37 90.26 70.38 54.49 27.93 15.01 18.43 35.78 12.36 0.69 4.63 25.13 52.74 59.88 45.57 34.42 70.98 86.97 7.49 32.64 75.03 78.92 77.02 12.71 43.43 83.35 99.29 68.52 88.29 45.82 85.84 21.83 63.31 17.56 37.09 28.46 22.22 48.12 5.25 92.48 67.07 56.29 19.72 41.11 2.14 32.40 67.02 44.19 49.36 7.50 86.83 3.81 34.88 54.19 29.17 80.33 19.40 88.13 83.55 96.97 13.58 51.46 34.49 15.21 -86.06 71.39 93.94 72.50 35.82 13.32 81.56 75.57 77.69 46.64 13.81 77.93 64.74 79.62 97.48 73.04 70.79 53.68 36.73 79.92 31.57 76.50 75.88 33.20 55.02 88.54 18.42 59.78 78.46 64.99 50.54 52.56 93.21 57.83 50.22 88.71 2.64 92.87 86.97 86.29 43.22 95.13 40.39 22.53 10.46 54.28 73.74 52.45 18.89 35.42 46.45 3.57 87.05 64.21 90.76 19.96 22.45 81.64 25.44 77.80 36.89 49.72 58.62 11.61 36.80 55.36 23.41 57.43 50.26 63.26 53.46 52.84 52.10 10.20 69.24 2.37 62.16 44.84 21.29 58.70 30.70 30.49 74.24 50.24 83.52 96.65 71.10 19.20 82.52 78.27 40.09 48.79 8.13 70.56 45.23 54.04 99.07 18.53 98.71 53.20 -43.30 42.02 46.67 63.44 95.39 4.75 13.26 52.08 32.45 57.95 61.47 1.05 4.44 22.23 87.60 75.88 82.13 36.58 82.63 77.85 50.02 91.62 38.36 76.53 4.28 66.27 71.17 67.27 25.94 45.23 50.30 3.45 47.87 30.04 99.50 34.76 4.23 42.31 20.58 20.07 12.49 84.85 56.23 79.19 80.17 95.35 56.71 47.35 6.34 24.78 84.08 74.30 18.69 53.22 16.15 36.74 32.41 28.44 3.37 46.53 13.77 53.58 27.07 85.34 98.76 94.85 58.44 0.24 78.59 30.54 80.08 70.22 11.35 76.08 60.34 89.30 95.66 4.02 57.37 3.51 51.41 38.67 91.94 17.79 15.67 87.17 94.87 49.51 35.59 95.33 64.61 3.78 87.32 80.57 56.51 25.53 98.61 95.81 88.52 48.25 -19.09 91.60 16.40 39.34 3.26 19.75 70.78 12.43 72.91 91.81 67.59 74.61 28.16 69.59 49.63 15.33 46.71 15.99 59.01 68.51 3.88 69.88 41.03 11.85 92.09 47.19 46.67 40.86 53.02 78.91 98.65 2.04 84.40 15.22 66.60 84.18 56.06 94.82 71.15 7.34 99.98 6.83 71.44 71.15 29.75 57.31 85.02 9.37 94.44 45.26 18.63 59.56 7.34 17.22 1.36 38.68 17.08 89.73 89.05 60.20 83.94 39.63 3.38 2.47 43.36 39.67 65.49 63.24 68.16 56.17 31.29 84.98 13.97 63.78 25.01 24.16 79.60 32.77 84.45 40.21 22.85 67.61 51.58 52.69 24.05 30.61 21.36 9.02 80.25 6.25 6.86 97.97 38.44 32.18 94.09 12.35 53.41 0.88 4.95 27.21 -86.53 53.32 49.59 81.17 55.56 25.28 28.54 60.15 78.98 64.95 35.82 18.19 38.59 40.58 15.83 21.62 56.90 90.50 15.52 50.47 71.09 61.69 87.49 96.30 51.43 36.97 53.01 26.15 60.57 58.39 22.81 22.38 59.37 45.41 69.40 12.15 35.48 98.92 85.94 75.57 85.94 33.81 68.86 34.29 39.12 39.85 96.76 86.57 0.27 24.12 43.98 93.00 23.54 30.81 91.43 56.07 5.51 43.96 79.89 94.53 86.81 84.93 94.80 92.95 9.36 79.24 87.53 83.08 4.10 55.40 55.60 36.86 79.49 63.15 68.40 90.50 67.79 51.96 83.66 22.54 94.28 35.54 78.77 25.81 87.28 97.08 54.62 48.09 26.49 71.65 66.04 78.81 65.79 20.70 21.71 44.05 40.85 33.06 86.27 43.62 -54.67 26.97 1.34 29.78 82.02 79.94 23.45 69.30 44.77 40.77 61.07 45.32 37.43 100.00 13.55 79.64 78.26 48.62 87.05 92.53 38.18 38.15 46.40 86.29 83.94 33.57 32.97 47.09 17.28 13.54 32.83 78.22 50.40 71.98 43.99 88.44 2.88 53.56 84.67 50.29 73.97 30.52 45.27 92.33 10.18 20.77 91.86 63.93 59.49 16.80 38.84 35.81 58.38 14.43 4.64 53.78 74.75 80.28 8.81 40.29 61.61 30.74 25.62 55.86 48.56 70.54 20.30 13.99 59.56 72.83 65.92 44.67 75.46 17.91 9.40 45.01 5.50 46.67 12.59 81.72 15.94 42.54 97.23 67.28 98.11 21.94 4.82 28.10 0.98 2.33 37.64 87.04 9.10 75.09 91.37 85.11 7.58 51.10 2.53 46.76 -29.38 86.52 38.23 82.59 14.19 60.72 93.10 60.67 9.53 13.82 86.52 76.83 51.67 54.40 71.68 23.40 84.39 27.38 36.01 60.23 56.52 5.60 61.36 49.61 39.29 78.34 56.82 27.21 91.94 4.28 73.30 98.74 12.38 97.11 14.06 97.24 89.42 10.54 13.24 34.54 48.84 55.97 46.24 5.92 87.15 64.76 43.29 10.15 86.54 61.49 71.70 45.86 24.69 6.44 71.86 26.70 25.58 77.12 51.34 78.54 12.92 11.64 7.97 19.79 86.25 94.34 42.94 91.78 65.82 47.56 58.76 9.28 9.33 2.02 34.70 15.00 64.39 59.92 56.55 49.28 44.11 44.53 17.26 92.16 5.84 35.91 80.31 36.53 60.92 84.83 36.67 82.28 49.66 48.70 47.84 93.43 14.00 9.41 77.04 89.99 -41.45 24.82 30.77 74.22 13.43 66.18 86.00 53.41 0.11 90.47 36.39 87.15 71.09 62.95 41.88 36.00 3.53 71.70 93.54 25.27 25.12 87.03 43.27 76.32 26.07 92.31 23.03 55.84 92.19 15.04 96.70 67.29 22.11 18.20 58.07 55.60 25.03 21.37 31.93 38.43 70.42 95.68 1.80 20.39 92.66 29.59 36.89 80.29 98.65 15.73 98.64 58.54 1.33 55.17 83.44 24.61 57.18 37.48 24.29 69.60 77.36 48.84 71.25 57.51 47.13 61.52 50.45 36.07 72.21 76.31 50.60 60.24 9.70 84.66 8.80 65.08 42.47 58.04 76.13 92.32 45.98 28.08 3.01 7.48 73.72 33.85 19.31 61.56 16.45 60.15 92.11 22.24 8.11 8.82 60.21 75.69 58.81 28.26 55.04 23.04 -34.44 42.33 37.53 31.10 63.55 78.99 12.40 14.49 48.08 55.17 89.64 60.76 38.72 18.63 82.31 5.74 33.62 74.31 39.86 49.17 83.25 27.54 62.92 28.87 97.66 58.36 58.60 90.89 81.45 90.21 17.92 80.48 74.36 98.67 20.18 28.58 43.85 34.69 14.94 38.93 94.81 83.16 28.08 76.39 81.80 94.05 33.44 78.65 71.19 71.41 88.35 49.38 60.38 84.38 62.30 4.98 13.18 7.92 26.90 2.74 94.62 40.66 98.89 56.65 61.74 84.33 48.65 28.34 41.88 82.56 36.80 2.70 40.51 48.48 12.63 10.82 18.67 28.13 95.63 48.85 55.19 28.81 78.27 15.66 3.41 99.13 55.72 98.87 1.33 31.66 98.34 6.68 70.13 9.88 77.92 13.57 34.61 13.74 55.77 38.16 -65.30 74.41 17.09 37.17 37.24 52.67 41.43 11.62 38.26 1.99 78.04 64.61 16.46 67.70 38.21 42.23 9.17 10.71 21.90 38.29 73.53 16.52 70.37 59.33 16.61 69.10 9.28 22.05 69.10 3.20 98.74 95.44 1.32 41.99 59.26 18.16 84.76 63.73 68.47 24.06 80.87 86.42 53.45 94.86 11.59 78.57 37.85 0.63 61.80 43.24 72.33 75.17 46.32 98.34 77.81 16.07 78.64 67.93 83.78 58.71 13.94 73.11 40.91 43.54 71.33 54.29 70.53 97.14 62.77 77.68 41.14 99.18 56.11 39.33 58.19 1.30 92.77 45.79 18.50 90.82 5.25 55.40 48.26 93.92 54.94 23.39 54.93 36.79 36.17 68.57 19.39 99.73 41.30 35.78 14.56 87.64 32.18 16.94 14.53 88.26 -63.58 31.32 71.64 50.57 67.82 68.69 31.27 75.79 74.72 37.05 99.20 80.55 22.41 93.39 59.06 33.59 79.77 57.43 66.84 20.48 89.20 53.78 5.46 35.43 22.84 68.91 82.49 12.36 70.86 29.74 53.75 55.47 0.61 75.72 3.21 39.77 93.32 81.00 16.73 13.89 42.70 94.39 69.83 25.12 13.87 7.54 55.90 4.73 41.68 52.37 63.84 71.77 93.55 19.12 20.63 88.88 86.34 69.17 23.32 13.59 76.80 77.20 37.97 28.14 37.53 91.32 2.89 84.55 95.06 27.76 86.93 21.44 45.11 71.45 56.20 21.10 56.92 75.38 9.93 39.81 28.90 33.55 37.57 11.96 76.87 32.24 68.98 96.81 81.30 37.43 33.96 93.50 44.78 57.40 24.68 18.53 59.99 62.12 90.36 10.92 -90.53 25.18 7.22 97.74 86.04 22.46 42.23 46.42 50.49 60.78 88.32 71.92 28.31 43.90 87.60 54.31 71.71 8.92 28.00 79.02 96.62 61.49 86.57 82.28 23.48 66.23 13.46 16.83 41.89 51.80 13.29 38.72 7.53 39.75 41.20 82.51 43.91 24.66 26.71 23.59 90.50 83.78 63.37 48.67 67.27 69.85 86.70 51.93 89.49 84.94 79.60 2.31 36.20 47.69 31.41 46.65 39.79 20.62 65.91 72.45 4.44 43.88 68.20 16.07 31.59 43.63 8.64 81.59 89.38 91.53 17.47 6.71 87.86 9.12 48.41 94.20 65.12 14.20 62.31 85.97 96.85 73.08 83.79 40.56 82.55 30.83 6.05 37.15 31.84 73.41 14.70 98.75 63.40 82.31 71.99 12.38 27.60 7.39 36.08 6.82 -18.84 26.68 16.08 81.88 43.15 93.98 94.25 35.83 19.95 16.72 21.65 84.39 70.19 24.68 72.08 48.08 56.38 72.53 16.35 86.03 32.05 56.27 92.07 59.61 60.08 67.72 68.90 31.53 11.32 49.62 33.73 20.57 1.06 90.87 87.34 24.14 85.50 2.08 8.52 32.38 35.73 35.08 39.05 46.40 38.30 24.79 79.76 78.41 26.89 96.75 67.61 50.34 66.98 19.17 69.69 15.72 68.63 61.19 48.48 86.13 63.70 69.75 72.72 23.56 10.53 3.58 49.18 46.51 26.20 98.70 92.88 49.94 94.90 11.20 1.00 36.43 36.33 59.81 49.37 79.67 27.18 11.07 54.03 81.27 14.44 78.33 28.73 47.38 98.29 57.92 48.71 77.90 59.99 92.12 32.92 80.29 84.64 49.03 29.93 94.40 -9.09 31.97 18.48 26.39 19.44 99.06 66.22 18.87 29.64 81.62 62.44 49.54 22.45 56.72 58.83 3.77 43.27 20.11 1.50 72.67 28.12 45.73 38.57 58.97 26.96 6.01 72.56 84.48 31.50 93.78 22.94 72.18 44.42 6.60 2.98 61.38 32.61 78.26 13.11 64.47 24.77 1.90 91.03 8.67 68.43 44.07 91.91 80.39 64.96 50.93 98.14 42.30 55.66 78.27 25.57 72.42 90.19 28.56 79.56 47.15 81.06 96.45 54.67 29.56 17.76 43.29 44.05 15.64 25.81 67.94 26.48 83.05 57.48 77.52 83.56 28.20 52.15 0.85 52.14 96.57 57.05 13.32 71.76 33.03 53.86 29.94 67.24 52.77 25.24 66.87 66.71 37.22 7.18 59.83 80.52 24.44 32.66 82.53 2.35 4.56 -38.12 9.64 4.59 2.98 68.66 89.63 9.66 70.96 48.87 65.32 16.42 96.07 93.47 7.25 13.03 44.31 84.83 32.27 15.32 26.32 48.85 83.82 93.92 54.73 25.34 52.83 17.20 87.89 36.70 96.93 68.45 25.27 58.05 20.35 13.73 5.36 80.36 28.60 31.28 7.85 24.25 1.58 57.85 10.51 12.27 44.73 99.93 95.11 69.98 63.97 18.03 84.25 69.19 61.30 81.57 51.41 65.77 17.12 27.30 15.60 66.26 25.66 57.68 25.29 75.76 36.06 86.77 57.39 80.07 32.32 35.58 34.16 74.19 88.98 90.12 59.16 56.42 50.20 83.04 16.47 67.69 96.78 21.50 0.81 29.09 38.85 54.88 50.32 32.89 1.42 40.29 49.23 64.93 54.79 78.31 19.90 45.96 22.64 34.41 14.67 -42.35 3.22 27.26 93.32 13.44 77.71 59.67 67.98 38.32 69.69 17.85 18.98 15.32 0.20 20.95 2.98 63.94 37.71 75.93 89.89 50.52 51.44 52.34 61.16 75.06 68.76 40.75 12.45 25.42 30.64 17.87 86.73 54.05 71.37 38.42 29.07 42.30 56.52 60.67 60.09 7.57 39.32 89.22 11.60 53.32 61.32 36.43 50.89 81.00 46.57 29.58 82.76 48.40 50.00 89.62 74.80 92.38 6.19 61.86 86.06 12.60 57.33 37.70 84.78 60.88 80.16 57.47 76.01 93.98 65.71 17.04 3.08 75.93 42.04 79.70 67.82 65.87 28.51 60.50 78.79 18.52 34.18 57.69 67.50 13.70 54.28 82.16 80.02 47.60 39.69 27.10 35.75 80.32 41.32 46.00 10.07 11.37 91.49 49.66 30.09 -93.44 87.63 26.38 85.53 0.42 55.84 12.04 78.45 58.75 26.79 35.90 29.12 53.27 63.50 52.26 82.19 24.74 19.01 31.36 50.66 20.56 58.31 47.11 41.45 5.56 82.52 68.68 15.90 96.53 56.58 87.29 71.31 28.78 96.93 53.84 54.55 42.53 79.65 66.73 84.22 18.03 87.20 37.68 72.59 78.39 34.37 76.78 16.11 37.20 95.67 24.06 55.80 65.82 75.87 78.56 49.64 7.99 61.94 21.26 64.36 7.90 30.97 36.19 85.08 21.68 19.44 22.52 13.27 82.15 92.68 12.08 65.81 57.99 59.02 16.74 71.71 21.46 99.74 83.25 62.08 27.55 49.02 13.59 49.35 18.91 60.21 95.33 8.20 73.24 28.37 84.54 23.83 40.38 98.87 11.52 44.87 94.09 5.11 7.97 9.21 -13.34 35.65 60.92 97.11 29.29 82.39 37.62 63.66 70.72 54.07 68.81 59.50 46.37 53.98 36.38 32.96 98.14 74.04 0.94 76.65 47.07 99.72 20.33 14.69 48.67 83.52 10.09 7.61 95.34 2.97 39.61 80.80 13.33 94.10 29.98 38.87 45.05 2.66 70.50 43.49 28.60 38.08 76.48 81.42 69.44 75.58 18.25 1.58 51.78 89.34 60.59 15.14 62.55 34.92 57.42 65.56 62.46 48.49 0.76 54.80 49.36 80.44 62.51 63.83 89.39 33.41 40.02 77.25 66.17 49.89 19.65 53.98 95.77 21.14 76.13 0.51 57.82 7.82 34.94 63.10 59.82 83.53 84.97 25.15 62.32 32.02 82.43 76.31 79.36 25.79 10.16 79.98 66.67 81.23 51.68 96.00 91.35 78.84 50.26 81.15 -98.25 96.88 9.89 5.90 87.03 8.30 93.71 26.74 15.79 31.16 13.86 98.01 7.61 1.64 44.46 13.46 86.62 74.47 44.62 49.70 40.42 31.51 45.40 74.17 47.59 10.98 38.85 76.30 73.86 34.48 26.08 29.57 65.31 78.86 67.75 86.15 7.29 27.70 49.49 71.15 21.51 1.45 51.58 91.25 15.72 17.04 31.37 36.90 77.43 10.80 91.54 11.66 42.04 27.27 2.48 98.00 41.75 70.86 88.21 19.65 37.97 21.10 76.06 50.40 3.62 55.83 27.56 74.40 71.76 51.84 46.29 16.76 89.72 60.72 96.73 91.56 8.78 34.49 52.63 55.65 17.49 17.63 64.36 78.00 96.52 75.08 18.21 48.31 29.15 73.23 18.01 55.72 80.13 75.84 28.75 69.12 11.64 14.15 46.10 52.04 -38.16 72.37 1.17 35.36 33.51 22.92 87.63 38.95 0.56 47.12 66.61 52.13 46.80 98.44 88.67 43.63 10.36 0.05 43.77 26.46 29.50 36.34 68.64 38.73 59.05 0.13 79.79 20.04 62.20 32.18 89.30 47.15 78.35 88.72 7.57 95.78 95.11 3.60 65.34 49.51 29.84 16.16 57.50 49.30 27.83 68.71 43.17 77.92 0.09 3.87 63.37 91.34 86.88 32.51 97.36 58.06 92.41 27.65 13.87 78.18 15.11 33.77 2.31 9.61 46.65 22.40 2.16 0.91 83.35 39.23 58.39 95.59 15.47 21.98 27.24 59.25 37.78 51.42 57.28 9.59 45.98 37.42 2.06 32.86 18.64 23.54 3.78 65.94 13.24 66.71 82.91 87.18 73.39 48.51 37.28 49.28 70.62 50.95 75.04 40.66 -45.94 32.20 26.11 63.14 93.42 92.64 91.87 9.26 52.33 9.89 70.57 74.13 5.66 10.27 8.19 87.13 81.42 62.12 10.14 44.04 8.80 38.37 73.72 51.89 90.09 53.98 63.55 62.29 20.71 43.46 86.38 82.49 40.38 73.37 11.76 35.24 24.91 37.81 65.00 12.96 49.29 85.20 36.92 8.13 10.90 70.53 28.31 5.23 18.16 73.53 25.74 98.44 2.67 96.36 82.20 61.80 39.43 73.84 17.76 88.28 30.53 97.16 8.44 65.79 70.27 80.91 10.78 93.10 21.21 36.40 28.93 10.91 1.68 57.31 44.00 80.94 63.66 67.85 20.12 28.29 20.96 97.07 77.48 7.30 36.55 32.06 9.08 57.27 32.43 24.63 77.10 91.65 61.59 18.80 67.32 7.10 84.46 20.90 3.72 67.48 -98.68 71.26 10.54 27.81 62.23 29.19 5.66 44.47 13.92 19.15 90.28 65.28 57.81 41.40 81.04 8.66 89.91 31.41 29.74 19.48 45.40 10.54 42.66 77.45 46.88 95.56 28.85 28.70 96.99 49.92 39.86 22.52 53.50 32.43 36.81 10.17 85.19 45.52 72.37 34.76 40.90 9.06 75.27 91.90 62.28 99.20 98.74 1.25 52.16 78.43 40.66 0.25 48.73 70.43 80.49 85.89 56.61 31.84 76.27 62.18 79.59 16.45 50.87 94.32 55.67 63.07 9.56 80.96 60.73 21.82 38.73 44.16 54.73 12.78 98.10 50.05 66.06 94.58 68.12 37.67 27.77 65.71 91.73 73.47 92.67 8.98 30.88 94.99 67.40 32.19 24.83 27.52 60.85 47.58 91.36 48.71 46.84 29.89 81.09 61.51 -27.24 83.98 25.28 40.66 18.29 1.47 21.36 75.35 2.19 43.31 29.75 87.97 60.58 62.17 40.88 82.04 68.29 72.05 57.02 28.57 32.53 41.46 81.16 3.52 42.54 3.43 46.41 31.74 73.76 35.02 21.44 8.20 31.42 41.35 27.43 60.37 48.65 45.57 22.13 58.96 43.16 9.49 42.36 9.77 40.65 1.94 20.82 46.91 30.72 47.51 33.75 20.45 93.19 68.02 71.14 0.66 67.67 12.69 78.84 88.16 11.56 33.62 97.85 62.24 57.59 7.12 61.70 32.34 23.29 11.55 82.91 15.68 42.87 34.64 85.56 36.09 31.42 12.96 1.25 52.25 9.23 25.41 94.91 73.38 21.51 74.10 69.76 17.62 33.73 93.74 6.71 85.98 76.30 46.02 59.07 10.14 37.87 22.64 88.54 79.11 -70.18 13.15 87.19 94.02 69.62 82.89 24.16 39.34 2.76 31.27 57.62 5.83 54.17 16.37 54.68 23.20 82.53 41.74 12.30 64.07 76.39 48.95 1.81 52.43 5.82 48.41 1.74 4.52 41.60 41.32 42.75 24.23 77.41 92.54 80.03 39.59 6.75 27.56 46.78 82.29 2.05 12.95 93.77 35.21 59.31 15.56 49.14 73.22 97.93 64.70 9.86 6.42 1.97 44.70 60.10 10.64 89.82 4.67 11.02 19.18 47.68 71.82 86.11 12.04 67.24 82.22 65.00 44.04 43.13 88.39 66.86 19.41 41.80 31.98 68.05 1.40 17.53 0.76 44.87 5.47 88.67 29.49 91.50 55.44 62.48 45.39 35.14 44.69 70.77 37.52 50.92 20.95 95.71 18.09 82.75 49.63 40.95 26.68 81.04 56.25 -64.79 76.36 49.56 96.65 82.88 37.93 8.74 52.28 53.26 91.11 58.89 82.58 33.28 36.68 32.88 42.41 95.47 20.82 76.86 32.39 62.58 80.54 38.01 94.66 12.48 80.25 43.01 28.06 92.83 90.43 36.26 62.18 74.70 42.64 34.22 35.07 8.71 44.36 31.19 14.96 39.76 5.56 13.99 60.71 8.20 10.50 13.38 43.84 70.59 30.41 55.39 5.06 42.16 49.95 40.93 53.63 58.63 16.14 15.78 60.12 98.96 61.23 39.95 48.52 4.33 73.27 53.10 28.11 53.94 48.31 91.90 4.45 26.85 9.38 26.67 73.44 47.72 35.00 64.57 19.77 79.87 18.25 14.97 47.36 14.70 6.19 28.00 16.15 34.48 45.47 54.60 51.65 41.09 60.21 60.61 75.24 29.12 74.51 56.69 99.62 -82.16 45.93 17.05 69.09 0.33 57.79 62.79 5.38 47.60 13.29 94.43 20.68 98.94 87.24 83.86 84.48 91.16 95.77 14.53 92.69 40.88 2.80 0.11 62.91 60.71 79.72 30.57 70.47 2.92 63.31 61.55 29.76 41.93 39.19 73.73 31.42 79.21 21.80 29.96 63.50 77.43 21.57 63.21 92.38 50.05 53.07 68.78 0.41 48.28 34.60 56.03 28.20 80.82 82.88 33.62 63.25 49.01 90.94 18.01 31.37 33.38 20.61 10.92 11.80 11.98 12.92 71.99 35.55 62.07 87.21 10.79 5.78 16.17 72.64 58.79 95.77 55.32 0.92 77.50 37.03 89.39 63.51 30.61 22.03 77.55 97.60 41.21 6.72 96.85 75.36 52.25 96.31 72.41 34.90 85.01 68.40 82.84 82.22 55.29 56.15 -79.51 97.11 97.33 55.99 18.06 80.69 20.24 23.83 45.22 67.41 38.69 61.64 26.18 81.26 96.31 73.89 24.57 51.06 71.58 96.99 9.54 11.74 72.64 41.41 92.57 71.70 24.04 56.98 62.71 13.79 3.04 95.62 28.68 80.49 58.55 67.58 46.69 47.93 83.12 72.58 85.96 98.04 91.26 68.35 49.18 8.49 72.59 73.13 38.81 63.61 24.39 86.38 43.41 52.42 48.31 26.08 6.82 29.93 13.86 98.78 4.29 2.84 83.26 20.93 19.83 29.25 54.24 66.10 1.21 34.69 36.28 18.56 94.23 81.47 0.32 8.05 92.50 29.84 12.70 2.26 29.90 76.77 33.46 69.58 89.70 71.51 2.01 83.04 84.89 87.29 29.52 27.62 18.41 79.05 45.80 60.98 47.43 51.88 43.79 32.09 -86.03 23.01 92.13 96.59 67.89 15.20 10.89 2.95 70.58 54.21 31.78 27.26 54.01 26.08 26.16 5.97 23.89 81.04 15.31 10.75 50.64 89.93 14.47 55.86 40.87 12.57 82.26 61.69 73.89 95.99 99.64 4.63 22.51 14.47 65.29 42.72 49.57 2.44 60.94 96.64 4.58 18.31 21.59 42.43 65.91 80.55 41.38 63.06 69.27 3.09 67.62 43.19 56.62 82.77 77.57 35.12 34.26 55.20 77.18 68.50 76.58 40.86 3.16 99.00 24.98 77.84 65.01 35.32 66.25 64.22 52.15 20.73 44.80 10.44 53.95 19.96 51.05 57.03 73.16 16.47 95.51 12.22 9.30 19.30 75.45 33.02 64.13 15.62 14.84 21.85 4.05 84.25 82.28 96.60 79.47 9.43 53.99 8.56 5.97 37.49 -49.85 47.14 71.24 7.23 87.76 66.17 70.14 91.15 63.47 63.89 71.96 86.06 55.30 3.85 61.19 88.45 2.92 77.19 86.96 61.06 19.09 90.00 0.20 79.35 12.72 62.87 95.75 59.66 47.94 76.77 56.75 28.45 51.03 66.22 91.07 31.99 36.60 17.49 23.75 17.94 1.61 39.85 29.70 77.86 78.21 39.82 12.82 92.13 71.94 5.53 58.14 41.61 2.79 90.40 98.37 99.02 82.06 7.58 83.42 12.50 79.77 71.94 92.48 29.02 24.00 25.33 42.59 66.63 21.16 74.78 10.16 18.58 0.05 85.38 25.76 66.77 67.81 52.20 31.16 77.11 82.30 86.92 30.24 67.55 97.02 56.70 77.91 26.13 35.54 88.55 6.72 33.23 77.22 38.00 6.12 38.33 53.87 8.83 9.06 35.22 -18.18 52.17 68.47 74.73 35.61 45.06 62.64 16.97 37.87 98.11 92.52 89.53 59.50 96.31 37.27 2.60 69.27 64.25 87.93 60.82 28.59 12.39 80.37 8.55 33.67 31.49 5.20 45.00 28.14 28.01 68.99 66.38 98.14 44.22 55.56 81.61 71.64 21.98 27.62 95.89 97.24 1.45 33.40 17.35 61.82 80.18 9.87 30.70 26.00 31.18 88.98 13.54 66.37 51.48 22.05 37.68 20.14 37.60 71.09 33.00 20.53 14.54 17.92 83.79 69.35 87.91 60.69 5.99 10.11 95.49 32.68 65.68 9.35 84.11 78.60 96.87 87.38 60.97 53.55 79.97 8.60 81.98 86.12 39.55 32.35 54.74 3.84 58.23 54.98 62.63 61.93 11.69 11.89 67.24 38.97 70.00 72.02 12.83 48.29 19.54 -75.84 1.85 27.66 60.68 32.82 88.87 8.94 82.93 4.10 0.74 77.97 31.53 5.32 47.64 61.41 56.79 15.09 84.84 71.84 45.69 5.56 20.17 42.68 50.86 87.50 38.54 82.07 88.11 36.83 12.58 66.39 50.50 56.40 8.02 91.84 54.64 84.60 67.22 95.87 83.35 23.21 17.78 90.90 55.06 0.91 86.09 0.90 95.67 2.26 67.94 70.34 42.77 70.27 64.79 99.68 63.12 4.70 22.20 38.64 49.90 91.59 24.03 48.41 52.39 46.28 21.51 64.43 30.47 21.01 10.05 23.77 33.64 61.55 1.93 0.34 83.71 55.76 78.70 14.49 28.89 90.61 3.91 38.29 79.88 68.95 55.49 57.65 10.08 87.86 29.04 99.00 73.24 70.47 76.63 54.09 30.75 21.68 68.67 8.94 21.04 -93.21 97.54 71.76 30.31 57.86 79.38 95.20 5.95 6.38 4.61 5.36 26.17 88.28 62.11 62.96 47.07 57.53 59.86 27.57 15.49 70.39 92.20 88.07 45.35 34.10 86.25 27.35 23.29 77.07 32.20 62.87 9.14 69.64 51.87 11.25 18.46 97.81 33.85 88.09 62.88 30.88 40.49 23.35 7.28 11.69 21.18 52.52 21.51 44.64 37.16 13.71 10.11 8.80 6.88 60.85 75.54 37.82 90.67 66.72 1.08 18.20 37.48 31.93 2.26 70.95 1.92 14.70 95.98 31.83 6.67 29.85 11.70 41.53 31.07 65.66 27.99 68.29 20.18 80.29 64.08 19.52 78.88 88.26 18.24 78.97 48.65 45.45 85.83 6.61 86.79 31.03 17.17 72.99 56.85 46.11 94.35 28.94 87.15 51.76 17.15 -17.19 34.18 2.92 53.90 95.25 46.05 39.88 64.90 6.46 40.07 45.95 91.16 55.67 23.18 31.65 2.04 73.94 62.62 59.69 6.59 84.06 71.96 45.73 9.09 19.10 74.03 63.72 3.47 44.31 80.02 50.39 70.98 73.07 22.25 8.60 29.86 84.52 37.48 34.24 85.93 73.90 97.90 61.87 69.52 57.52 84.06 39.02 36.98 82.81 90.86 82.32 29.45 36.98 21.87 34.99 5.82 49.76 27.20 33.77 90.62 26.22 73.95 23.91 30.86 16.07 6.01 14.32 32.68 19.13 0.23 57.17 35.69 23.76 65.65 11.08 2.38 19.46 89.23 49.40 95.32 60.42 13.51 57.59 45.73 10.20 82.54 23.54 59.98 13.91 35.51 40.86 78.00 37.28 38.85 99.29 33.78 27.76 65.95 27.27 88.99 -58.87 25.38 35.10 93.35 82.88 0.53 29.06 62.40 87.43 1.68 3.65 84.71 7.71 81.91 55.40 74.08 32.83 85.74 13.45 18.99 91.93 5.23 35.97 9.09 83.86 34.62 67.42 96.88 53.48 44.51 15.35 68.92 80.22 34.01 4.49 80.59 52.68 35.92 3.79 94.65 98.60 98.89 42.75 60.24 52.74 17.76 79.18 34.41 62.10 65.84 59.79 79.93 26.75 49.37 75.82 17.15 95.58 64.61 54.96 7.12 76.92 80.05 71.73 4.65 22.38 87.87 87.33 99.75 38.10 71.40 98.94 90.21 74.44 30.84 44.99 40.00 90.06 87.84 13.76 19.30 10.57 93.17 85.02 61.18 71.52 62.63 32.06 58.68 45.81 35.44 60.78 30.57 56.03 73.81 17.02 86.28 18.56 10.61 73.16 3.69 -96.73 34.13 15.12 34.01 41.59 77.48 30.39 58.92 61.39 69.15 53.24 96.39 53.90 68.94 97.44 38.14 38.60 98.01 93.24 79.72 67.57 80.41 6.61 30.00 13.91 30.28 41.56 56.66 71.57 14.23 17.45 15.76 10.86 42.23 0.36 59.56 56.93 83.62 41.28 73.15 4.67 89.91 79.99 15.20 32.43 61.86 76.35 93.65 70.69 2.78 62.19 63.28 28.28 54.20 10.66 40.79 14.15 85.84 55.38 68.32 23.46 21.93 58.33 20.03 14.01 34.80 20.18 53.30 39.51 72.84 24.64 39.06 32.36 67.27 22.98 98.16 10.57 36.80 74.75 71.57 80.58 29.33 36.71 59.68 96.18 98.92 98.68 18.64 91.39 77.08 49.86 32.30 5.71 45.36 13.57 57.03 90.12 21.58 26.30 54.52 -63.56 72.61 13.46 26.59 53.32 23.82 97.46 32.54 75.67 49.84 39.50 98.28 25.19 93.99 94.13 34.67 31.70 6.35 55.40 58.74 88.90 21.54 11.55 2.14 65.85 38.15 54.21 17.14 97.78 7.28 20.75 17.35 49.70 56.14 69.41 53.42 22.91 64.32 89.41 44.05 75.00 79.36 37.16 32.13 80.20 27.00 91.67 29.78 63.71 76.77 37.83 1.81 57.55 56.98 57.82 22.65 42.92 27.99 69.92 70.44 84.71 37.48 1.98 21.74 11.16 30.56 36.43 40.57 91.71 36.14 39.07 8.47 55.65 64.39 28.38 67.02 81.17 54.08 34.33 50.93 13.04 93.75 56.59 77.61 6.08 30.85 94.76 59.96 95.77 88.17 86.77 58.29 44.59 11.55 45.45 80.15 54.29 10.06 25.72 92.75 -15.43 31.52 59.96 63.73 21.37 45.98 0.29 24.42 74.23 53.71 44.59 74.23 15.00 56.77 96.72 9.28 99.00 73.25 56.24 26.43 34.84 58.83 99.91 48.01 39.89 66.51 89.64 92.69 97.06 28.14 28.58 33.95 46.53 74.27 9.68 25.10 55.53 70.93 43.15 24.38 84.37 25.10 90.17 8.99 58.26 16.76 48.82 11.98 66.42 0.54 28.99 43.51 86.55 86.13 36.03 16.48 61.16 2.61 57.53 59.84 46.48 56.67 54.98 3.65 22.34 99.71 59.26 55.85 6.99 46.41 48.11 13.87 60.22 95.97 28.83 49.50 20.35 75.87 43.39 56.06 2.77 25.30 7.54 99.95 89.20 51.71 85.50 41.93 80.90 34.79 90.50 30.05 48.18 86.73 7.93 3.25 99.11 89.41 58.54 24.72 -58.07 20.59 53.11 80.59 94.46 65.93 6.43 47.69 11.80 95.28 10.96 63.54 81.66 12.04 99.49 8.87 14.69 91.71 95.96 9.13 7.86 85.81 37.80 24.34 20.82 61.66 85.76 52.58 18.10 2.46 52.76 42.17 11.36 66.85 44.63 9.40 69.15 76.77 73.55 71.04 20.39 69.90 26.29 75.95 16.75 94.86 20.55 92.15 70.57 97.13 77.61 96.63 68.24 27.93 30.29 60.16 28.22 14.54 49.41 66.85 7.00 11.37 32.74 51.46 26.54 3.72 39.07 34.66 57.39 6.12 34.36 74.08 5.10 91.84 16.39 74.14 96.64 20.88 62.35 48.72 10.10 58.62 24.22 75.61 28.49 48.38 75.71 99.82 7.77 17.21 32.56 86.08 68.91 21.58 20.74 69.20 7.99 21.37 27.12 84.59 -3.55 94.96 17.08 50.94 4.13 44.76 95.05 53.30 67.59 86.66 85.68 32.71 79.73 31.12 98.44 53.18 20.59 78.64 99.94 53.50 42.37 30.91 61.49 65.60 97.18 36.43 23.78 44.47 71.38 91.26 40.46 62.42 10.53 46.50 43.04 53.12 17.71 30.69 73.75 21.33 74.21 56.22 74.88 30.91 12.75 0.83 17.72 43.35 57.14 57.88 58.34 28.41 5.96 21.24 63.69 16.41 4.33 88.56 60.69 41.51 49.63 12.18 78.62 16.98 1.27 85.68 77.60 32.13 86.38 43.76 84.51 4.68 59.14 99.01 2.32 39.06 75.82 27.17 69.43 57.02 53.21 54.54 39.95 57.44 25.67 17.39 38.02 92.42 54.41 65.83 24.11 36.28 66.35 62.52 40.95 40.33 41.30 32.85 34.94 52.61 -71.08 81.32 66.65 55.63 81.08 18.92 15.59 28.33 19.24 71.22 33.85 32.38 80.51 58.47 6.95 72.44 0.34 68.57 10.04 18.40 15.30 18.10 15.55 67.48 54.09 47.12 6.65 48.91 72.73 43.22 55.81 58.46 58.82 24.91 74.12 35.34 81.15 22.12 90.16 9.34 43.77 79.38 49.60 51.24 61.74 30.60 54.85 56.87 44.96 86.59 0.28 75.66 69.61 0.20 80.26 42.04 82.58 71.87 31.46 37.90 99.71 64.71 31.17 80.43 14.87 35.15 67.34 85.81 49.11 39.03 98.20 40.41 85.20 48.80 85.69 16.99 51.63 85.50 92.30 80.54 19.78 40.12 73.84 59.13 31.29 55.82 66.56 37.98 81.52 77.82 8.41 79.38 9.79 64.20 34.82 88.47 22.22 38.62 42.97 40.65 -30.10 74.95 75.11 94.94 29.53 48.17 86.46 52.82 20.90 58.90 54.75 51.31 96.50 1.69 56.98 25.45 50.50 25.00 27.00 20.59 8.63 66.73 30.21 20.72 79.94 87.32 82.12 92.40 41.76 62.28 89.41 81.36 89.37 64.84 57.31 48.41 32.80 47.43 91.05 71.58 65.29 88.71 65.17 10.49 29.58 73.61 16.59 56.73 45.84 62.75 90.68 29.23 77.45 12.65 94.39 39.98 58.22 29.59 86.63 82.53 69.93 75.47 89.27 45.27 60.17 32.47 2.79 9.10 24.77 12.67 27.55 48.36 63.28 15.45 19.33 99.25 7.18 55.73 19.90 12.40 4.75 44.02 73.13 8.04 90.24 46.69 0.01 9.66 45.69 6.18 41.60 3.76 23.88 64.15 85.93 73.55 42.20 19.61 86.14 21.90 -21.16 69.88 42.33 68.17 88.58 84.69 2.20 31.16 68.37 15.32 50.67 86.16 48.89 24.00 78.50 74.42 46.35 24.28 58.13 30.67 98.83 44.49 98.68 47.82 22.39 69.29 38.35 54.37 25.67 11.99 89.83 36.85 33.15 44.81 78.32 60.58 50.07 38.43 31.90 77.15 40.44 24.75 82.43 50.55 20.90 57.57 46.06 34.79 51.99 37.41 92.40 13.60 30.92 67.01 73.41 19.64 45.01 12.68 37.15 94.15 58.50 12.46 34.37 93.49 63.86 2.72 26.72 65.49 0.05 61.30 70.92 63.63 77.46 68.90 90.61 82.27 35.27 4.26 58.42 69.06 47.05 31.02 45.94 28.74 66.61 81.42 53.91 19.56 56.03 98.59 41.31 76.34 96.34 12.95 79.85 83.40 89.88 94.02 96.90 73.76 -27.96 8.78 58.12 27.72 51.90 90.98 54.89 33.98 83.00 26.72 65.83 31.35 57.09 16.87 96.61 78.37 10.03 71.33 8.17 15.49 51.06 67.88 0.41 84.50 26.09 8.36 77.65 19.74 79.88 51.48 7.66 31.78 92.57 35.31 14.04 16.23 77.41 25.80 31.29 53.71 6.40 48.98 47.83 72.06 37.76 82.95 35.87 27.70 47.07 80.87 1.01 66.35 84.91 8.87 39.10 4.43 81.48 8.79 68.14 69.97 17.04 47.74 36.23 63.61 3.43 63.71 3.15 16.20 75.16 59.30 17.28 48.46 19.10 42.23 7.77 35.94 17.32 21.93 16.86 88.93 54.87 91.93 92.25 23.59 88.85 70.20 9.41 81.97 15.76 51.32 28.37 23.97 18.54 33.34 76.56 93.83 89.49 85.39 40.49 85.25 -67.11 81.50 24.65 37.06 45.99 94.28 95.21 79.38 87.90 3.26 92.53 23.27 87.39 2.09 11.81 25.79 62.06 79.19 72.43 15.11 68.35 53.95 90.75 42.01 50.98 59.16 93.70 42.83 43.83 45.76 74.36 84.81 74.60 23.64 45.72 66.57 96.47 66.69 75.80 44.98 21.53 16.18 33.73 56.14 17.60 13.57 5.70 77.08 1.91 16.66 5.23 75.27 10.30 9.41 9.45 46.89 7.36 89.96 59.85 53.47 48.60 15.02 88.91 40.13 65.71 86.21 12.90 86.82 65.93 33.39 75.14 38.03 52.44 36.42 57.68 29.53 67.20 34.78 79.06 61.92 47.54 44.24 80.73 84.63 97.12 91.01 48.56 77.35 5.92 52.80 77.70 42.93 33.08 88.97 28.73 59.15 65.60 29.01 78.34 71.52 -28.96 12.69 17.96 71.32 40.31 25.68 86.04 75.99 77.60 2.23 92.63 23.30 91.92 54.61 45.59 0.68 22.69 23.34 5.39 63.00 95.59 76.16 1.62 14.35 46.50 75.04 76.03 64.20 75.15 9.35 47.03 53.31 90.62 75.08 71.71 60.35 97.65 60.50 94.04 47.58 5.52 43.00 90.81 67.66 97.03 45.87 55.04 19.60 89.25 59.37 40.42 69.47 28.19 82.81 9.20 20.62 14.38 48.46 98.25 87.79 65.73 13.23 18.73 47.18 9.09 76.63 73.05 63.04 29.01 45.83 40.26 59.33 48.30 11.94 25.25 31.48 47.40 71.11 12.22 44.86 32.24 16.02 9.18 23.42 78.75 24.21 28.92 44.50 50.15 26.24 3.44 26.21 89.71 66.09 41.98 26.81 81.68 84.75 39.32 32.28 -88.69 60.06 37.23 50.64 71.32 71.92 83.60 16.88 78.76 48.47 76.33 74.97 14.65 18.27 70.78 37.03 42.74 62.06 9.65 65.13 53.07 1.41 81.43 68.30 77.00 31.86 4.29 88.54 20.89 15.79 89.92 4.33 41.83 16.37 16.63 94.99 22.99 25.70 76.79 54.24 17.61 61.36 39.83 97.52 86.48 94.92 80.53 99.79 44.43 11.18 8.99 18.72 19.25 0.11 21.48 95.31 49.23 25.58 17.02 76.76 43.85 70.80 86.33 89.02 92.23 48.93 77.02 72.67 8.83 21.87 36.18 51.42 24.22 96.45 41.77 24.18 81.83 41.62 10.39 61.44 7.70 51.77 86.89 23.47 61.64 34.76 29.83 8.40 75.32 32.38 52.34 71.93 91.67 94.81 43.00 15.83 90.65 40.42 97.75 65.89 -61.60 67.21 21.85 71.65 5.03 62.85 44.71 41.11 69.60 13.68 54.52 36.05 10.33 57.34 24.79 7.98 80.54 14.33 34.24 75.05 57.31 48.72 59.69 32.97 93.35 76.17 47.35 71.08 16.68 69.65 90.57 88.49 25.83 54.71 33.74 89.44 43.89 7.42 96.72 25.88 9.81 95.59 11.75 55.56 91.31 32.55 3.53 78.49 22.37 56.60 0.99 98.01 76.35 26.89 3.29 79.79 53.55 53.24 59.78 62.36 23.82 79.57 14.51 13.81 59.18 84.12 86.93 15.18 76.89 39.83 1.82 3.75 53.43 60.53 95.53 6.62 69.88 86.50 18.31 59.48 20.05 71.95 94.39 90.16 35.30 26.97 5.31 7.03 31.81 71.51 40.77 1.31 54.46 94.82 69.74 36.46 17.48 29.23 53.33 47.58 -30.16 92.58 28.02 87.33 32.21 65.00 46.67 35.55 27.07 2.43 9.42 3.63 69.54 96.85 0.00 13.41 26.41 29.54 51.82 76.84 15.86 27.55 89.88 86.56 46.09 76.15 48.15 25.78 76.88 82.86 63.89 51.66 62.22 76.20 71.10 11.96 89.72 72.01 18.40 46.53 56.23 16.81 62.27 24.40 42.71 26.36 61.66 3.21 11.35 76.32 87.05 22.10 86.92 75.37 21.00 62.32 5.22 43.30 31.79 53.65 0.06 99.22 64.91 16.13 1.36 53.43 4.33 55.59 79.18 87.81 41.51 80.43 18.29 49.99 35.60 6.07 78.32 38.51 55.66 28.57 58.39 70.05 23.08 33.19 60.17 6.70 88.06 84.54 76.49 91.32 98.34 10.82 19.02 97.67 38.00 23.55 2.07 15.12 85.43 82.37 -27.30 93.67 30.99 15.85 38.62 19.52 93.57 58.47 31.84 82.63 74.22 53.57 40.36 37.38 18.69 47.89 78.57 99.22 0.33 41.55 31.59 74.87 56.45 34.80 60.84 34.24 75.19 83.12 41.78 74.06 85.52 2.50 16.83 54.96 13.88 37.29 22.76 59.06 25.38 91.84 66.13 33.81 17.22 75.42 15.84 25.93 47.02 30.97 2.41 78.47 69.87 87.34 9.07 86.16 60.66 51.64 68.39 59.71 33.83 51.64 87.24 87.72 13.51 0.66 82.20 11.08 56.31 66.82 12.18 86.91 37.56 20.99 67.73 89.74 84.23 63.27 57.00 45.05 52.86 15.17 24.23 14.66 49.89 43.53 6.66 16.56 53.03 43.59 31.49 43.48 66.94 10.76 34.44 66.20 0.93 62.51 30.17 79.28 35.73 36.57 -88.13 47.58 91.15 46.55 55.19 42.99 59.15 55.40 62.74 86.71 33.50 28.38 43.44 17.80 54.68 35.58 43.11 81.78 5.31 33.45 94.09 73.60 81.15 56.83 65.33 64.08 57.50 92.59 64.21 96.05 40.43 51.47 74.56 63.25 46.59 79.34 67.98 53.85 25.12 5.40 19.21 18.68 43.26 22.89 66.51 59.92 88.34 76.19 72.80 0.45 34.58 34.85 68.58 0.99 75.86 60.69 23.77 11.23 34.27 74.46 10.70 39.87 81.34 27.76 66.31 2.93 24.93 21.73 24.17 53.12 41.74 70.23 18.15 85.29 50.65 58.56 17.31 83.86 51.45 12.54 94.02 9.03 58.52 50.73 93.09 96.37 81.53 24.82 63.88 94.62 23.98 12.15 5.04 69.64 96.31 11.16 87.56 79.86 30.57 42.69 -0.71 55.92 65.02 25.85 84.60 85.72 79.56 99.83 19.36 88.91 55.57 40.13 79.49 12.87 64.26 26.94 66.49 45.04 31.75 91.14 94.32 92.66 64.57 53.46 26.52 60.84 27.42 89.73 28.83 63.09 85.19 47.47 40.41 26.17 87.27 96.22 44.89 23.24 75.62 79.62 28.70 8.74 52.83 1.03 71.61 31.34 90.26 11.29 34.36 41.53 18.94 73.70 76.28 62.60 72.89 8.09 24.74 85.95 86.47 15.99 60.25 29.94 88.46 51.78 65.01 33.95 20.87 11.85 64.24 15.09 29.78 37.16 39.67 55.69 40.86 61.36 37.53 12.53 20.35 80.55 85.84 12.99 17.52 45.64 5.87 20.37 9.03 84.60 25.71 73.67 12.86 99.90 97.61 13.80 3.38 70.96 95.04 26.34 60.62 2.00 -48.04 89.67 20.47 90.44 4.13 3.42 44.24 56.44 94.96 11.95 27.25 78.75 72.87 30.71 74.00 48.48 55.77 60.02 74.92 37.02 64.13 50.93 53.50 52.33 57.20 40.16 37.71 48.34 81.36 45.71 11.43 59.77 29.87 61.17 56.20 69.54 2.52 30.29 31.97 74.73 80.32 2.20 82.26 31.46 82.85 72.39 30.48 61.92 15.52 53.70 94.74 2.05 54.03 54.43 81.91 88.82 62.94 87.54 65.64 43.51 85.44 84.34 73.43 42.32 72.84 67.31 37.42 67.66 75.46 29.00 79.02 27.12 78.52 81.00 42.11 60.61 54.14 44.26 3.68 85.06 51.57 0.98 11.38 13.94 54.53 95.34 33.10 65.96 67.00 90.93 25.76 27.69 6.12 75.03 62.53 96.73 55.90 17.00 63.71 5.50 -37.36 76.37 34.81 94.09 95.14 40.57 51.14 16.25 85.34 43.23 46.53 0.81 97.27 86.54 5.07 12.13 42.33 97.34 41.75 62.45 65.93 77.92 98.65 60.38 82.04 22.44 99.98 75.30 46.95 65.49 23.79 26.16 3.28 34.83 32.98 13.29 97.63 69.30 12.36 37.57 77.55 8.02 89.01 81.42 61.55 72.07 78.21 31.15 93.74 81.11 89.20 76.44 89.36 18.17 35.48 5.14 66.93 16.20 57.28 88.59 41.38 11.52 66.91 56.99 82.41 75.53 68.81 46.09 90.91 79.35 54.73 37.06 75.96 49.17 88.89 95.00 4.72 54.17 35.03 8.47 96.91 20.03 22.66 38.08 50.48 2.48 79.29 7.96 29.76 13.45 44.11 5.64 19.92 77.72 19.41 62.37 53.27 26.45 27.42 18.87 -90.78 41.66 72.19 58.26 66.79 98.03 17.69 40.55 87.90 97.06 14.63 24.04 43.84 86.31 74.56 51.43 85.03 62.92 10.20 75.12 41.57 22.14 52.96 60.53 46.76 85.95 10.09 5.46 51.94 20.65 71.06 22.50 6.57 66.58 97.02 37.81 23.54 43.05 26.02 76.06 1.32 12.28 49.15 69.94 62.17 52.89 44.22 96.51 99.24 58.33 39.83 28.25 55.69 63.95 36.89 96.39 56.15 41.29 75.29 77.57 85.76 59.15 47.09 17.30 12.80 11.30 7.78 21.56 33.12 82.40 71.34 39.92 29.22 61.15 1.71 64.10 28.60 45.64 8.63 28.43 3.37 13.95 66.04 22.38 4.76 54.37 46.64 22.54 51.83 19.79 57.23 50.12 16.31 91.64 23.28 80.47 47.95 46.09 36.61 30.87 -60.75 31.86 85.61 15.55 23.17 37.20 68.23 29.87 33.74 29.27 6.54 44.20 62.25 76.49 34.30 2.85 9.10 50.98 11.38 26.59 57.42 4.70 77.49 60.45 20.31 43.89 32.70 44.34 81.16 98.70 50.12 70.90 12.98 19.77 96.16 17.24 23.99 31.90 64.55 42.26 91.21 4.49 54.28 85.98 14.72 79.51 67.86 24.66 45.48 41.99 30.26 12.62 7.21 68.34 62.45 7.96 61.74 28.76 93.28 22.68 95.78 4.33 3.91 35.25 75.11 16.39 92.37 2.92 86.27 4.38 97.98 63.99 65.58 33.13 83.42 9.20 69.57 33.72 43.14 21.62 73.51 92.75 2.32 42.60 46.81 62.54 34.96 0.98 21.59 29.79 27.91 59.57 80.47 93.57 9.99 78.93 83.81 62.44 52.96 75.77 -77.30 44.68 91.58 2.81 21.35 61.08 61.25 23.72 7.40 11.53 43.55 81.22 21.16 36.45 99.73 57.46 98.87 8.13 22.47 29.12 77.47 35.29 94.08 27.38 51.57 54.17 34.85 16.07 32.44 26.73 33.76 30.91 52.79 79.80 0.48 9.38 59.97 13.50 9.39 39.56 41.49 15.65 63.77 56.79 79.68 18.34 68.15 40.34 57.48 24.68 4.26 29.39 77.49 47.48 70.18 16.06 31.00 22.97 69.09 42.23 8.07 25.58 2.89 1.72 24.76 30.70 90.99 42.99 49.17 35.65 35.87 17.31 51.57 31.57 43.22 70.76 26.26 55.05 23.04 81.83 97.47 0.40 46.33 9.30 51.25 64.83 32.55 32.98 23.97 3.51 37.34 26.99 41.48 75.09 52.07 65.27 66.12 45.28 26.12 50.68 -72.51 45.03 25.26 16.08 19.86 37.72 51.49 74.25 96.95 53.77 22.34 77.58 92.55 94.23 33.37 51.17 30.63 42.35 79.63 80.41 99.11 4.39 20.71 10.56 64.10 24.47 83.08 65.64 99.43 73.49 17.70 75.46 64.63 27.29 20.63 81.70 95.92 23.07 97.56 58.43 59.54 25.36 73.01 55.88 56.93 19.28 26.84 53.64 73.21 47.58 2.00 86.22 39.96 23.35 64.35 71.40 17.05 24.99 59.92 22.49 39.96 44.88 58.57 46.02 33.89 93.35 84.97 61.09 72.20 26.74 53.85 8.44 42.22 68.51 34.29 15.26 49.19 6.06 67.88 72.74 88.63 78.94 50.45 78.17 8.75 53.59 58.07 24.85 15.70 78.22 60.24 11.58 78.39 38.69 45.44 36.48 32.57 31.20 77.74 51.20 -73.04 97.32 41.98 94.80 83.03 11.07 21.55 23.79 57.90 78.48 51.82 82.76 57.81 97.77 59.59 30.82 20.19 40.75 10.20 60.94 7.75 79.28 71.08 24.44 96.52 93.30 46.09 67.41 62.00 4.45 86.93 50.97 16.69 45.98 28.98 89.11 52.34 44.51 54.53 42.37 8.68 70.06 72.67 58.10 64.08 6.77 18.19 97.82 95.85 10.43 43.82 35.38 67.51 22.64 29.03 25.02 93.40 35.87 51.32 73.92 36.11 19.23 46.06 69.37 67.65 18.88 91.20 45.02 49.33 76.62 59.45 72.03 93.16 50.53 12.76 81.00 10.75 11.78 12.47 82.27 38.30 67.74 53.48 98.57 1.17 87.32 0.96 70.89 30.07 39.80 42.98 90.92 15.86 56.24 31.02 28.66 48.10 29.36 20.52 93.85 -59.56 15.51 39.36 14.58 47.34 50.12 12.76 16.58 20.49 4.11 48.40 99.39 50.84 84.73 58.90 36.13 85.58 59.37 55.59 79.08 1.68 34.92 30.67 83.52 67.12 32.55 13.54 88.43 41.52 65.36 19.31 1.11 83.32 3.00 37.18 81.64 87.02 62.10 58.14 25.31 84.29 82.79 40.43 66.49 28.62 57.65 25.84 47.75 35.32 52.59 78.53 12.10 63.23 18.05 8.52 70.49 80.69 73.36 96.62 47.93 52.35 55.77 27.08 38.99 94.55 11.52 92.64 7.69 65.75 46.22 95.49 24.80 70.26 49.40 72.35 11.37 17.26 32.96 77.45 85.70 41.84 61.06 17.69 64.28 30.51 95.32 28.89 55.91 30.31 75.74 92.77 45.00 15.09 78.77 68.17 57.28 69.30 70.44 76.49 6.66 -49.97 56.56 61.01 96.37 81.40 77.02 51.95 51.39 97.64 51.72 68.69 24.35 90.88 29.40 13.92 50.27 17.92 93.51 40.41 34.39 95.58 77.34 66.88 52.05 52.66 1.78 92.88 46.90 48.00 64.10 62.20 32.40 13.51 52.77 78.09 8.71 66.56 44.36 24.44 10.14 92.28 47.31 79.01 50.03 66.44 63.43 58.45 5.46 79.98 72.72 43.99 90.51 36.98 76.88 53.63 96.59 76.47 84.76 56.47 56.96 38.48 0.21 98.29 4.12 68.51 49.19 41.52 16.11 76.64 19.83 28.16 54.56 6.62 71.68 48.25 76.90 5.73 80.52 23.30 68.50 42.99 32.56 80.16 13.60 10.69 37.37 92.73 12.34 97.12 67.08 35.05 89.89 13.13 6.02 20.11 28.11 72.35 47.94 5.95 99.25 -83.21 35.10 61.65 14.30 32.53 35.68 39.50 16.35 66.33 81.60 97.12 36.20 11.76 2.48 45.64 40.56 57.66 77.21 9.98 29.46 41.71 23.36 71.85 87.62 16.04 86.77 5.82 28.24 27.47 16.07 6.63 0.05 89.09 56.15 30.95 42.40 50.67 48.70 70.32 16.24 77.32 35.00 37.45 87.19 8.04 46.44 80.77 37.93 15.48 51.99 26.77 89.89 84.00 27.59 16.06 41.78 78.39 31.44 11.95 0.47 27.16 29.45 62.66 64.36 67.51 73.11 51.42 37.89 83.84 73.11 21.99 25.46 29.39 32.73 9.07 34.53 21.41 85.46 18.30 75.17 60.15 24.21 89.17 13.25 47.82 83.29 36.47 74.55 37.65 27.01 47.90 34.90 64.14 90.14 71.39 9.95 6.07 63.87 6.56 49.56 -88.69 97.33 28.76 25.04 45.32 90.72 53.31 81.72 2.51 60.90 15.54 31.54 18.29 98.82 46.40 66.53 19.41 76.83 60.90 84.80 96.87 62.94 91.49 63.64 61.47 39.45 9.28 62.14 1.93 64.79 37.67 95.57 45.08 51.32 46.06 37.55 31.04 74.57 87.65 30.11 89.26 73.98 68.79 82.19 37.97 98.23 6.68 95.41 50.37 19.01 97.88 30.45 52.88 24.23 61.88 89.71 10.90 23.48 91.08 26.22 11.08 35.43 81.02 61.57 24.36 0.22 14.09 40.99 50.70 93.16 84.28 77.95 55.10 48.87 90.99 93.91 20.03 31.79 41.97 53.63 37.49 97.17 58.33 67.27 9.20 0.10 71.88 92.44 99.10 55.73 79.67 38.44 43.89 53.01 93.02 5.83 4.09 2.73 24.70 46.76 -2.79 77.45 17.50 55.79 44.58 51.18 72.79 54.88 25.60 53.69 49.12 95.11 50.62 34.27 17.51 7.20 3.00 59.41 1.03 85.72 31.46 82.31 93.41 28.63 28.39 56.99 72.66 6.52 96.32 8.85 91.65 94.82 67.60 16.66 30.84 87.66 12.36 30.09 15.51 46.34 77.36 45.29 56.12 85.77 17.91 69.88 56.98 69.29 52.65 21.73 71.79 85.94 62.99 75.25 38.99 69.74 12.77 34.34 98.40 88.27 23.45 59.48 39.06 64.97 91.27 92.41 60.79 18.79 40.13 34.69 6.60 62.33 31.72 82.71 97.24 64.82 65.49 67.73 91.12 97.13 50.52 67.54 56.67 82.88 67.27 98.43 59.28 55.95 13.35 39.51 41.00 47.63 76.31 87.50 85.84 51.63 46.06 85.85 28.73 80.39 -6.89 18.54 37.81 38.43 68.22 31.60 79.76 39.77 77.70 57.53 1.31 54.49 77.13 29.81 32.28 24.79 98.60 36.92 79.25 88.86 16.65 26.96 73.37 85.44 21.16 79.90 56.83 50.79 81.11 61.86 4.47 75.36 22.78 1.42 71.18 61.31 19.49 44.02 67.83 91.32 67.83 36.95 71.96 23.40 84.71 65.30 93.33 87.85 11.22 7.60 44.28 96.16 59.49 10.58 50.45 28.52 49.10 54.53 20.99 10.77 73.25 3.35 4.13 11.94 44.54 22.61 74.29 10.93 76.34 37.56 32.20 81.15 68.11 47.69 41.74 72.51 55.86 5.37 45.04 31.74 2.76 71.37 85.32 91.46 80.34 54.72 25.00 38.08 32.20 94.65 23.55 49.09 5.55 71.55 17.31 97.72 68.45 88.90 4.67 94.33 -20.32 95.43 18.06 9.38 56.96 90.49 98.08 90.00 15.58 34.93 50.09 48.03 32.89 88.38 21.19 76.64 56.59 72.78 54.39 4.48 65.55 31.72 98.37 24.90 34.89 36.40 13.55 76.74 52.30 51.86 23.55 26.74 24.35 71.71 1.91 65.25 66.10 79.69 66.42 36.33 60.01 84.99 71.84 42.42 47.80 54.23 85.68 10.01 90.61 83.86 83.76 13.00 31.82 21.01 63.67 49.95 24.75 43.26 21.32 4.29 52.18 8.85 90.71 70.74 12.92 28.89 14.87 91.79 71.24 0.29 59.32 53.65 94.55 48.55 10.53 83.54 59.73 66.79 80.29 16.71 84.96 21.59 9.92 53.69 72.78 99.63 98.53 52.79 50.18 76.28 52.04 47.00 79.88 35.60 82.33 56.70 36.05 33.92 32.47 10.25 -37.12 40.41 65.63 46.43 1.22 87.85 32.63 83.05 30.52 56.21 69.36 79.00 80.01 30.37 65.61 77.67 69.94 65.61 20.50 95.92 37.65 83.25 68.21 94.96 47.33 64.94 6.86 12.49 84.90 4.81 45.85 44.68 55.61 9.49 26.22 45.26 3.75 97.83 2.79 19.16 7.06 59.63 42.22 71.65 0.24 19.37 56.43 97.16 64.70 43.79 38.89 60.99 90.34 37.63 82.38 33.66 91.25 86.99 44.06 96.89 45.29 3.60 37.55 72.24 23.17 9.79 5.64 35.08 85.72 58.37 21.86 79.09 43.56 10.98 2.73 77.41 54.22 73.25 84.67 19.38 98.38 58.76 75.72 50.81 32.43 98.24 29.13 62.05 67.73 54.26 40.98 57.97 50.54 48.33 30.74 79.11 82.08 98.38 99.99 98.66 -39.56 94.09 64.00 88.24 26.76 8.89 35.32 89.24 13.32 16.68 21.23 30.93 52.91 69.93 20.43 32.38 11.07 0.22 97.95 2.86 82.21 47.37 0.01 92.09 48.34 62.66 31.74 76.27 41.49 90.23 85.59 6.91 87.60 34.44 31.41 35.49 68.32 21.07 39.84 80.69 5.49 74.59 87.08 0.84 13.91 99.04 41.13 6.30 61.78 19.84 92.72 58.76 37.04 80.01 76.22 92.69 47.06 49.34 96.25 33.21 47.15 87.57 39.73 8.85 54.05 59.68 90.47 59.37 81.62 35.77 80.23 55.19 95.80 80.59 46.16 69.92 96.84 90.99 85.32 94.27 41.05 25.22 91.71 37.76 20.68 10.97 21.37 47.88 53.12 7.10 84.94 10.86 80.19 78.60 75.02 93.51 76.40 54.94 14.50 6.06 -14.64 93.17 65.28 65.09 7.46 28.49 72.26 1.10 97.20 13.85 15.45 86.93 92.10 57.75 91.19 6.94 95.89 29.58 14.07 79.28 94.20 2.40 8.57 19.74 7.57 97.40 27.50 31.94 3.95 33.64 49.03 15.42 19.21 31.08 89.24 66.17 11.86 83.23 34.82 19.87 78.24 93.67 9.54 56.49 91.63 35.83 69.61 65.48 34.70 37.21 30.28 83.44 91.55 93.72 41.09 56.16 69.40 21.21 67.39 90.06 96.60 4.88 25.14 19.09 65.36 96.07 15.14 4.28 15.21 91.77 24.13 61.40 90.33 92.85 66.40 50.60 47.21 93.47 94.65 42.81 50.12 29.66 91.05 4.52 94.80 72.65 26.75 65.43 62.51 54.31 66.00 56.72 90.72 48.59 0.61 25.24 2.82 76.00 96.77 14.16 -63.04 53.84 8.71 14.58 72.10 22.62 25.90 35.53 77.07 72.78 6.08 75.24 2.95 90.40 42.20 30.37 16.57 67.43 55.42 33.71 6.27 99.81 39.96 25.77 31.30 9.79 25.05 37.32 12.07 3.59 52.30 8.45 80.94 71.16 10.34 85.90 88.24 59.55 90.11 14.14 9.15 32.68 62.14 2.40 38.00 95.38 30.67 34.27 45.35 39.99 20.72 81.80 20.57 55.09 67.45 70.88 69.19 13.30 10.51 32.72 41.65 64.09 16.16 38.02 42.39 65.08 66.82 96.68 21.48 73.50 52.13 89.88 36.37 57.24 52.50 22.60 8.89 66.42 31.39 7.81 15.30 31.94 52.89 60.57 97.67 79.36 73.89 23.31 72.70 85.16 13.13 27.78 94.95 29.42 35.72 59.12 29.34 47.11 34.80 95.74 -67.74 71.56 87.87 85.77 44.00 5.77 33.14 57.08 0.79 2.53 25.54 21.42 73.45 43.19 34.97 12.83 25.07 8.89 24.57 63.33 14.82 4.15 21.68 9.58 11.41 7.40 24.78 77.45 30.73 3.91 27.45 53.05 62.80 53.09 24.69 53.61 28.07 14.08 32.05 73.56 28.76 12.55 56.01 51.23 81.85 44.71 68.01 26.40 73.13 83.67 62.01 61.37 91.44 86.96 46.78 78.67 58.44 93.54 35.47 6.49 84.47 52.74 81.03 61.64 92.15 35.44 83.35 35.37 87.60 16.65 14.71 80.02 28.17 74.84 18.30 16.79 36.65 47.43 81.68 4.93 79.74 51.77 0.23 34.22 43.95 3.03 9.94 84.48 2.49 52.32 6.97 62.93 1.58 1.62 53.66 5.03 51.44 10.54 46.97 61.70 -60.54 63.86 19.89 21.05 36.37 54.39 64.93 13.45 70.02 6.32 68.89 52.46 31.49 44.69 28.47 46.58 11.75 85.07 70.43 99.04 15.34 85.72 88.63 95.43 36.69 16.54 65.11 17.67 48.20 70.10 87.25 71.39 14.88 96.21 31.43 79.42 59.02 82.85 36.63 73.24 57.89 25.96 70.07 9.67 34.94 80.09 58.28 14.99 76.70 56.42 9.73 43.91 99.82 77.49 80.28 82.88 87.83 20.43 80.69 30.23 14.58 59.88 3.18 23.39 74.02 71.97 32.88 61.09 93.76 97.40 19.68 9.16 17.62 5.52 37.29 64.54 9.75 74.05 17.84 18.79 28.31 7.49 80.09 63.73 1.29 50.35 34.08 83.17 73.39 76.58 47.21 85.14 78.96 7.03 29.70 13.24 68.20 41.91 28.42 60.28 -58.05 18.65 37.07 55.60 63.49 74.76 53.24 80.38 83.34 11.88 53.72 34.97 21.02 37.83 15.70 23.81 68.72 76.84 53.92 80.93 72.09 78.78 96.02 88.54 39.89 43.08 97.98 23.15 1.73 26.97 20.92 45.95 11.49 18.40 47.62 69.05 18.37 91.18 11.49 67.18 87.02 34.45 48.87 73.54 4.77 63.54 84.49 18.72 17.01 92.65 39.74 80.95 58.72 0.47 80.59 11.05 72.76 59.04 48.67 44.30 29.40 80.10 9.57 4.35 84.84 2.49 57.50 25.43 60.23 89.35 36.84 96.75 43.96 43.57 76.25 0.71 86.90 91.65 12.90 88.22 54.03 58.19 24.50 35.38 30.98 26.39 67.18 55.33 64.51 80.71 77.82 78.01 19.88 62.59 46.28 11.34 49.41 77.99 91.31 84.45 -46.42 74.16 76.75 68.41 93.87 9.16 79.94 70.78 44.97 91.42 48.40 1.02 94.32 48.44 63.06 74.27 31.68 51.40 25.93 99.15 25.42 1.98 20.09 69.55 64.53 26.89 24.54 53.76 17.29 72.80 19.51 75.28 41.51 76.73 66.38 71.37 79.41 94.93 18.21 88.95 43.70 86.28 5.17 93.40 12.62 22.29 12.49 78.19 64.48 90.23 39.03 51.39 85.75 88.93 74.41 39.82 61.00 92.09 60.25 71.80 58.43 1.23 5.36 14.33 17.37 64.29 53.16 43.19 88.74 80.18 58.40 78.05 77.26 88.06 56.05 98.49 95.85 1.89 97.76 36.37 29.00 94.74 59.19 6.51 2.22 90.15 11.20 46.35 57.70 17.17 5.59 20.22 4.80 42.46 83.35 70.25 93.77 91.03 34.70 88.08 -91.89 17.91 55.01 48.41 65.41 36.45 89.16 49.66 45.23 0.70 90.98 32.04 37.76 74.04 72.78 49.39 57.53 17.08 92.49 86.67 52.14 55.99 96.11 81.73 28.09 9.91 7.50 84.93 63.24 57.86 32.83 30.34 13.92 83.51 75.78 72.50 27.34 72.70 2.03 69.69 76.15 18.43 0.11 1.14 23.99 95.35 72.36 42.25 43.10 94.28 98.62 4.61 61.29 9.01 31.36 16.62 14.02 99.63 57.80 66.37 76.18 35.51 64.64 1.79 23.68 68.12 34.75 29.53 22.80 50.91 15.01 23.91 29.57 2.62 41.21 14.81 18.63 24.21 3.05 71.39 14.56 54.49 26.08 84.09 79.57 46.91 37.41 23.53 65.60 72.02 12.41 90.64 52.49 21.96 30.77 84.84 7.93 37.91 78.44 95.68 -81.00 21.59 90.29 33.40 56.26 64.38 11.24 1.88 11.12 34.71 65.56 9.92 47.11 61.94 21.63 68.12 3.82 11.00 59.92 17.31 64.70 72.36 54.54 31.68 29.03 71.96 87.84 30.11 1.31 50.38 78.58 43.38 1.18 55.13 54.02 38.26 4.38 44.78 75.56 30.17 87.20 74.95 44.17 79.02 61.99 34.66 85.20 32.50 23.80 86.18 37.60 15.42 87.59 12.54 29.63 17.74 30.78 18.32 31.43 54.30 22.22 22.04 62.52 79.22 71.12 58.27 84.63 55.83 17.94 16.20 33.11 58.29 7.22 12.68 54.51 87.05 11.41 66.26 79.17 51.04 4.07 92.11 72.65 22.46 30.14 26.44 1.36 44.45 37.27 12.13 49.79 22.27 5.35 43.59 44.86 52.88 56.16 62.25 83.43 61.31 -34.48 11.66 51.35 96.36 65.36 61.73 55.99 50.66 56.20 73.45 33.82 96.84 39.77 98.82 32.79 71.00 8.21 24.95 51.73 87.92 39.60 31.58 33.99 23.89 76.71 24.53 85.03 11.39 78.79 72.29 18.09 46.07 73.57 63.30 66.94 46.99 64.59 46.28 37.53 28.15 75.42 33.63 79.62 18.37 54.52 49.99 52.14 56.32 97.75 71.95 19.66 89.26 68.10 12.46 34.74 3.34 41.60 93.41 13.11 59.50 52.19 7.26 33.06 5.82 46.34 17.16 84.62 31.68 38.78 60.07 91.93 43.50 58.43 34.47 31.97 23.65 30.08 42.50 93.32 76.16 25.16 16.44 18.28 78.04 86.09 48.06 47.58 26.41 81.13 28.92 61.73 31.52 42.08 3.77 20.28 97.15 88.89 79.51 62.47 11.03 -95.17 38.81 30.01 57.59 61.86 54.59 95.28 69.66 39.71 37.40 98.76 31.30 73.76 42.10 96.38 10.26 48.71 93.94 43.37 23.00 32.54 79.53 62.65 95.96 14.06 58.61 19.55 19.24 14.91 17.31 20.79 98.44 7.52 21.11 85.85 53.35 31.93 41.67 12.86 55.85 86.59 37.56 70.71 20.19 49.53 65.19 91.75 56.91 73.66 31.64 96.29 56.64 72.71 71.19 97.13 28.17 34.56 81.29 84.02 24.45 47.58 46.73 46.97 64.61 55.03 27.70 64.08 87.01 36.88 43.41 2.11 96.85 83.47 26.92 4.29 51.44 31.61 34.30 13.12 99.34 96.40 24.78 29.31 9.70 64.79 64.39 44.52 78.92 16.63 40.43 9.74 33.33 11.57 71.40 1.90 24.25 20.27 70.07 45.28 70.54 -55.32 15.55 71.57 23.08 41.86 27.97 98.51 2.67 7.63 99.70 53.31 58.95 89.51 27.41 33.81 74.28 61.97 12.24 15.53 60.81 49.37 88.47 90.48 67.34 30.53 90.27 98.86 43.05 98.11 86.93 72.16 69.91 88.38 10.72 96.89 71.82 69.40 39.62 10.32 53.29 59.18 84.29 16.58 25.73 59.90 97.28 7.18 20.96 38.74 95.68 8.22 35.73 4.40 34.09 90.15 94.29 44.77 91.59 62.40 33.58 11.97 1.33 87.10 84.11 19.73 83.50 73.49 95.69 73.96 32.19 27.21 53.81 81.79 27.21 63.38 65.86 19.86 5.38 66.74 57.03 50.18 20.72 38.06 59.52 31.47 28.63 46.26 27.14 9.69 21.76 89.24 52.76 63.54 56.71 24.64 32.91 12.04 82.23 45.85 87.72 -12.02 32.58 67.07 70.40 29.70 35.11 3.96 72.15 88.14 64.47 55.98 60.78 8.43 52.34 27.33 92.90 75.49 5.75 71.94 63.89 50.43 90.80 27.65 54.17 30.86 83.00 88.81 56.54 73.80 14.42 90.18 14.19 98.20 45.89 84.62 59.32 3.63 88.77 24.78 82.10 97.57 77.24 75.81 97.65 85.42 58.45 67.92 33.63 3.41 79.35 41.19 61.41 98.21 41.32 3.65 24.58 49.07 68.92 24.75 23.26 57.42 1.43 42.63 50.98 1.01 27.02 57.03 61.60 22.96 32.92 4.87 33.99 29.36 11.50 77.52 38.46 11.12 75.43 17.12 20.99 69.54 57.12 79.60 0.46 52.91 65.74 63.33 47.84 52.26 78.26 51.85 95.26 59.52 38.73 31.74 17.20 49.95 93.53 70.39 55.20 -73.47 23.69 68.55 54.76 39.55 48.45 47.16 4.34 98.45 80.35 56.67 16.31 67.58 54.40 56.99 82.54 92.78 84.98 7.63 67.03 25.18 73.07 19.86 38.36 47.19 28.26 83.06 13.28 25.79 72.40 51.41 51.22 68.90 79.49 75.57 61.59 89.09 19.12 26.10 14.27 57.11 97.37 11.68 6.39 56.13 86.15 58.73 44.86 47.80 70.46 74.52 95.67 82.61 37.81 79.04 48.28 34.40 93.85 45.87 36.59 57.41 82.08 39.52 31.03 63.52 75.88 93.78 84.97 74.57 87.87 75.01 69.66 62.44 95.98 63.01 96.50 13.38 15.60 80.42 51.57 11.89 53.17 29.45 57.60 60.52 46.99 39.88 32.77 50.19 14.95 52.67 28.41 41.58 85.92 14.99 67.07 68.06 88.85 47.35 40.19 -96.51 48.60 46.82 25.56 85.70 32.88 53.96 82.85 2.82 21.49 1.93 65.10 16.83 55.64 35.73 26.64 72.94 68.33 62.36 69.84 42.98 7.44 85.39 88.09 99.43 80.23 42.33 24.83 16.50 18.49 85.32 2.44 6.91 43.07 56.05 5.63 51.96 63.52 27.37 19.90 17.05 41.13 97.72 9.54 33.39 23.26 47.47 63.80 59.46 55.48 69.76 50.89 91.76 59.31 78.26 48.89 78.15 44.76 22.98 83.72 99.84 21.46 88.33 13.12 39.41 62.14 95.12 18.23 65.84 42.80 11.95 1.23 84.34 18.75 19.79 25.87 96.51 52.59 45.65 49.43 72.16 40.85 71.04 26.08 96.62 91.62 20.00 74.60 20.47 4.80 2.06 11.47 45.35 66.43 80.75 55.68 21.47 43.15 30.55 15.98 -98.98 67.79 73.99 64.61 29.98 85.60 16.26 5.70 34.73 20.69 65.79 75.03 6.43 55.56 43.37 46.54 50.71 17.46 58.88 69.94 93.45 9.80 91.91 76.88 35.30 88.52 71.46 84.37 62.28 52.50 16.69 22.34 70.96 24.25 41.17 46.19 87.75 27.48 6.36 88.70 99.16 24.98 92.87 55.46 26.46 87.29 91.02 36.39 54.44 32.40 35.81 69.91 6.93 1.40 25.05 29.90 65.61 5.36 32.26 57.44 72.43 18.58 29.17 59.92 15.13 59.78 36.59 3.37 79.10 74.88 55.13 29.16 75.54 82.59 95.02 36.60 53.26 40.65 98.08 43.92 26.94 45.05 23.39 65.37 60.14 59.24 5.76 11.57 51.04 33.30 48.67 67.62 61.39 44.65 73.88 14.05 3.28 89.57 76.47 26.97 -9.91 64.73 18.00 52.19 68.80 18.24 34.33 95.84 68.56 99.70 13.12 53.84 26.55 3.69 26.73 67.66 48.96 6.25 21.93 19.29 86.08 62.52 69.35 24.19 27.88 8.71 6.90 31.11 91.71 61.32 72.19 37.05 9.79 47.98 69.33 9.29 77.72 94.15 50.16 51.16 84.68 29.60 46.44 8.16 32.62 24.54 85.02 31.84 99.68 68.63 96.18 0.25 90.26 72.59 36.35 79.01 95.68 14.73 15.68 55.21 3.67 44.43 12.89 19.93 90.25 17.82 46.74 10.49 35.82 58.21 46.38 43.00 90.42 57.34 14.88 96.76 88.58 9.04 69.30 88.75 51.90 69.40 71.26 19.86 8.08 98.69 65.92 58.89 82.07 19.10 49.68 75.61 13.04 89.66 43.24 68.61 86.07 35.97 30.56 83.01 -36.18 38.06 47.21 76.30 19.04 15.12 42.20 52.37 22.63 73.33 27.85 91.68 69.87 93.32 28.09 54.03 68.44 36.12 85.41 67.76 33.47 87.72 2.11 2.09 60.11 90.61 79.48 77.27 51.17 7.52 49.12 70.04 56.61 70.82 28.99 56.76 47.08 39.00 10.09 15.83 20.04 93.60 17.07 68.70 16.22 35.89 5.05 68.86 71.66 36.27 55.39 92.50 41.17 30.43 35.14 47.89 84.50 87.12 46.20 47.43 25.58 89.63 88.58 72.26 18.53 92.49 2.90 10.87 13.27 33.88 36.24 50.73 87.65 68.26 3.42 99.16 46.87 51.86 59.15 29.92 6.40 68.16 85.26 89.44 60.24 46.13 43.55 98.07 72.30 53.64 56.05 94.20 13.32 33.19 12.33 4.97 88.67 74.59 98.57 90.47 -44.01 43.58 52.06 39.72 21.29 82.31 90.45 67.40 81.20 9.73 95.90 3.16 36.53 94.15 98.22 65.62 55.56 14.10 24.89 27.44 1.04 54.35 49.99 16.90 93.07 35.46 97.52 52.30 5.53 70.67 57.69 89.07 52.67 60.10 9.03 29.59 18.45 42.31 65.56 89.10 75.61 78.18 26.26 84.20 74.87 66.02 69.09 62.04 87.09 73.88 87.87 87.07 6.20 0.38 80.75 93.30 43.32 34.32 40.70 87.14 53.93 66.39 43.40 85.87 81.66 64.60 48.96 70.20 84.47 76.56 26.97 30.93 39.76 21.00 83.89 28.83 63.58 42.39 96.62 19.17 77.77 50.42 66.25 14.54 28.66 96.30 75.02 8.43 45.26 54.79 75.01 45.80 41.89 39.76 86.95 12.80 0.93 78.87 52.29 55.24 -96.16 44.11 56.86 83.24 43.25 40.00 18.26 40.52 3.37 72.68 84.62 83.99 8.93 19.04 45.88 54.27 45.09 24.62 3.38 19.54 52.97 27.38 18.02 59.30 59.72 88.80 61.01 95.09 94.30 3.88 69.41 52.07 29.66 8.79 82.68 37.40 24.06 33.65 33.69 75.04 13.61 97.63 85.02 66.49 18.43 5.36 28.87 97.52 84.58 11.66 61.56 83.96 18.26 67.85 78.41 90.49 3.21 68.70 70.43 75.03 81.29 81.65 69.48 66.17 28.17 56.18 87.32 62.76 43.74 30.02 92.85 41.99 24.42 59.66 50.73 58.38 17.11 69.18 1.47 87.46 72.49 99.09 11.27 44.05 55.63 9.64 90.16 80.89 68.37 87.31 84.69 50.30 9.80 39.70 10.91 16.03 91.49 26.78 14.25 44.06 -75.41 83.92 92.58 4.21 80.90 49.95 50.98 21.74 59.82 93.58 63.23 23.08 99.50 79.91 63.33 80.69 63.68 29.61 55.42 85.77 28.90 75.90 38.27 69.83 20.98 40.70 15.46 91.83 31.81 77.05 50.79 62.35 73.44 50.07 43.31 99.24 50.32 23.36 94.65 96.21 25.04 52.80 15.23 28.88 13.26 72.64 20.62 5.63 91.08 84.08 64.18 21.88 68.10 45.95 23.08 64.82 77.88 59.52 27.64 81.12 25.91 69.87 23.24 46.14 63.98 80.40 6.57 88.75 30.16 85.00 53.01 97.04 64.35 22.93 37.52 78.57 45.88 57.51 69.75 17.94 81.76 30.00 93.95 25.74 69.69 92.35 3.06 29.88 38.64 51.93 99.71 26.46 75.56 75.07 14.89 29.99 90.20 32.16 62.16 79.15 -18.25 10.46 58.95 89.14 88.97 69.99 77.87 19.14 0.22 36.77 80.59 44.26 76.29 82.30 33.28 71.60 42.71 61.27 69.46 78.71 48.21 19.54 54.95 33.83 19.15 81.65 63.28 84.50 96.49 27.62 98.40 65.59 64.79 13.35 6.07 81.06 37.21 29.76 48.97 69.96 45.20 30.67 43.55 16.79 55.14 94.45 11.51 57.32 15.44 32.59 70.55 20.20 66.96 46.93 4.28 77.18 72.45 72.69 62.22 46.55 59.43 91.15 54.60 7.21 65.63 11.29 55.38 94.76 55.98 20.77 76.03 5.04 95.52 78.53 79.03 68.31 80.50 79.83 58.69 59.83 0.70 49.41 34.45 82.26 44.18 4.62 93.66 92.51 25.51 14.93 54.16 33.21 74.92 43.67 70.67 88.68 21.31 48.77 36.06 66.66 -17.94 75.05 12.40 11.89 44.24 10.02 79.82 1.68 81.11 22.50 18.35 98.25 20.70 27.15 32.67 27.33 76.78 49.03 66.27 33.20 46.29 70.21 48.24 51.22 62.08 45.73 63.53 9.78 59.10 8.95 73.71 74.39 37.87 80.88 54.82 63.06 6.59 12.31 51.45 47.97 88.10 64.99 45.43 84.60 41.94 72.10 26.55 96.78 47.39 87.41 45.62 33.81 3.19 0.59 41.15 45.06 24.91 69.66 11.42 31.80 74.19 61.11 70.71 78.73 7.50 30.39 96.96 28.38 12.78 36.99 7.32 93.06 97.97 77.33 30.83 97.79 14.22 77.12 79.80 16.75 58.76 53.86 46.17 9.26 53.07 11.67 23.90 23.28 48.23 10.47 58.74 29.04 32.72 92.38 61.61 45.94 13.06 4.19 62.28 45.22 -76.19 86.09 60.78 44.47 12.89 49.68 35.79 1.57 30.30 20.78 7.13 92.97 71.96 75.12 62.62 40.46 32.67 83.80 58.94 12.64 29.57 65.57 38.21 84.80 59.33 51.63 88.26 0.78 15.81 48.35 48.21 41.77 65.60 8.29 31.21 12.27 41.94 43.74 54.78 14.97 41.14 40.79 58.25 34.50 83.20 26.07 31.44 81.78 89.69 56.22 70.30 67.07 46.00 72.02 93.78 61.37 41.98 64.00 19.12 76.19 18.52 3.73 34.91 62.56 16.79 38.72 79.78 3.75 2.73 8.17 9.37 71.83 62.19 69.35 16.68 53.63 37.44 10.95 94.64 39.39 49.87 76.39 81.35 95.91 27.24 61.16 53.72 38.39 35.07 53.83 52.48 79.88 96.93 32.35 98.05 50.32 92.79 99.93 41.63 84.91 -50.63 86.32 62.41 91.93 86.88 53.07 35.15 59.15 47.47 68.28 66.54 29.48 22.51 42.04 93.84 48.10 47.51 74.47 54.00 21.92 33.70 69.52 86.39 41.75 30.68 47.70 55.31 2.75 71.29 21.17 68.53 35.04 2.33 15.33 22.41 14.54 68.71 15.89 31.89 27.91 67.14 88.15 74.58 95.71 13.41 11.47 7.12 20.91 31.72 58.96 16.26 37.26 75.83 75.11 77.37 64.17 42.48 44.21 42.24 10.96 5.60 66.23 89.76 53.64 41.62 52.18 4.75 20.70 7.67 0.72 65.48 7.59 0.63 58.41 79.15 58.41 48.34 38.15 28.68 16.60 55.76 81.77 50.27 87.73 59.13 78.07 18.02 46.18 93.66 69.56 85.25 40.03 71.77 92.37 17.06 81.23 32.80 82.45 94.07 53.90 -12.99 75.69 78.72 63.49 83.80 93.90 97.70 91.55 54.81 86.24 86.98 84.96 1.98 84.00 98.84 63.07 58.01 3.77 16.12 54.54 99.60 49.69 89.97 60.85 26.71 31.42 64.81 7.75 4.68 53.22 62.09 9.90 46.65 17.86 42.61 75.69 69.80 73.25 2.74 13.37 11.29 95.42 27.98 62.94 34.76 55.73 86.20 33.02 16.54 36.30 11.00 17.94 49.60 13.04 80.62 25.01 55.86 2.86 47.34 43.41 52.86 88.41 63.86 33.72 26.84 13.63 2.54 97.58 65.73 75.44 92.01 92.21 94.92 19.58 28.48 81.36 39.95 73.90 74.23 77.26 66.24 78.60 65.00 89.03 97.18 51.16 25.68 16.75 37.17 49.74 17.59 85.46 87.44 66.11 53.97 82.91 45.96 80.93 52.60 82.36 -8.62 24.21 60.21 18.97 94.05 74.10 99.15 78.53 44.37 71.37 80.12 27.65 93.96 60.18 39.37 47.24 18.68 21.53 63.71 67.47 68.17 54.67 33.21 0.81 54.42 57.07 99.82 50.87 23.95 12.64 76.30 45.45 69.35 31.84 58.43 95.61 65.43 98.64 23.28 18.12 35.12 47.12 47.62 72.09 52.53 97.58 76.75 8.19 88.09 68.75 96.01 21.33 82.54 23.81 86.96 69.87 59.74 54.80 43.58 55.74 69.34 68.43 26.78 95.25 2.09 78.81 99.67 10.13 21.33 11.51 32.19 35.04 74.00 68.86 21.58 73.68 31.32 24.15 21.02 25.18 3.16 35.87 98.09 44.88 17.97 91.10 92.14 58.19 21.33 15.40 12.88 66.09 80.63 70.46 76.48 57.91 11.50 68.61 35.50 11.66 -27.70 6.34 21.85 66.19 77.50 48.28 91.35 53.07 76.78 0.39 28.73 81.78 44.86 76.36 76.25 88.42 81.69 45.69 89.64 43.01 47.89 38.45 75.50 89.67 3.42 70.43 71.13 93.17 66.22 80.68 90.99 93.87 84.47 28.59 42.58 79.24 16.03 53.68 58.15 19.65 75.21 14.67 32.17 19.24 95.26 66.17 58.36 78.52 30.99 44.74 38.46 92.28 86.90 33.38 64.37 37.27 98.57 66.64 48.44 83.50 86.60 10.12 72.23 31.01 62.57 58.44 85.63 9.96 62.03 89.76 59.33 31.93 45.06 81.04 93.94 97.77 88.69 8.03 52.97 23.61 52.57 49.32 35.42 76.41 41.98 5.74 78.79 32.58 15.46 34.69 7.25 8.59 85.74 75.84 8.19 63.19 33.87 48.39 9.01 57.80 -17.63 82.16 98.04 67.97 62.66 73.61 18.29 28.28 97.01 36.00 94.61 8.04 97.05 48.59 85.85 79.18 39.09 14.12 59.06 82.76 2.59 55.33 5.68 22.63 95.64 51.34 28.37 15.39 99.54 0.37 40.84 72.68 50.98 67.40 85.67 52.26 58.58 99.49 82.19 73.02 22.70 81.17 45.06 57.59 85.78 49.46 61.08 64.11 14.16 3.76 54.22 31.14 99.39 3.70 13.43 90.48 45.99 14.63 20.19 98.86 65.37 71.63 62.54 1.92 13.93 22.72 71.46 17.70 67.62 3.88 95.41 63.25 79.86 33.41 86.34 22.05 71.92 73.84 95.92 79.26 94.52 21.14 61.72 90.96 8.38 95.61 33.74 10.77 92.29 67.11 58.30 59.18 11.54 13.65 30.52 42.68 8.56 10.49 29.51 2.91 -83.70 58.49 31.12 0.33 47.68 3.69 55.09 90.71 45.17 81.59 20.01 29.15 79.33 50.38 71.95 64.63 38.21 84.64 44.68 20.80 3.23 3.66 55.84 55.30 4.84 62.66 10.02 64.39 6.56 56.29 68.62 42.14 60.22 16.39 58.79 60.07 37.36 81.74 84.61 70.59 37.08 38.46 70.37 40.73 20.03 30.16 12.70 68.77 68.46 49.04 23.23 62.66 30.52 83.32 27.60 82.38 44.32 32.06 96.54 49.28 83.72 89.55 37.84 0.89 59.60 73.80 22.00 99.40 9.34 32.94 43.66 88.72 18.04 17.01 78.03 34.12 14.39 51.47 97.75 17.10 79.93 89.53 62.65 55.64 2.70 88.31 84.38 16.47 85.00 54.35 27.28 4.69 45.00 0.40 8.17 99.67 1.25 88.71 53.29 32.55 -20.31 86.90 99.85 32.86 27.81 72.72 62.11 48.46 85.65 33.73 32.77 13.34 23.74 4.42 59.20 92.86 53.24 66.43 66.37 70.37 42.83 5.40 14.23 99.47 49.97 79.04 68.90 3.63 17.53 49.30 6.18 75.43 64.89 67.59 79.31 67.34 79.77 55.57 94.94 34.08 49.12 98.93 76.74 84.43 15.17 39.02 54.14 65.33 57.10 82.80 32.96 82.20 34.16 38.59 50.75 35.49 39.90 71.21 51.35 18.87 99.66 95.31 53.83 49.60 48.45 28.44 86.58 67.26 26.46 32.50 18.15 43.35 23.09 33.88 85.96 28.42 68.04 14.35 15.07 99.10 80.30 27.28 59.09 38.62 57.78 53.58 48.61 78.04 7.85 83.73 39.24 13.83 60.77 30.21 81.89 82.49 78.52 5.27 64.17 94.25 -1.25 55.38 63.17 54.77 23.65 2.49 29.34 0.53 64.96 40.91 80.44 36.67 81.12 63.56 87.41 16.88 99.55 52.42 63.53 2.38 76.60 34.50 79.98 60.75 33.36 35.31 84.90 53.21 52.01 33.31 21.95 28.03 49.91 98.36 97.10 72.16 86.54 37.65 20.70 34.66 92.64 73.28 74.14 73.95 73.86 2.97 38.30 71.88 41.78 21.61 72.54 65.43 36.30 52.58 69.71 0.96 20.97 91.89 55.55 36.47 92.63 99.36 7.78 42.20 34.72 1.63 72.45 45.05 77.83 31.46 93.17 91.41 47.54 90.05 25.43 2.59 2.41 56.79 59.20 83.87 5.65 24.39 16.86 87.23 28.95 8.87 57.21 21.52 44.40 96.14 70.34 51.12 55.19 81.59 17.98 73.29 18.44 58.10 42.70 48.96 -64.90 68.97 38.23 84.16 72.06 99.61 19.65 46.72 16.28 99.37 72.31 95.91 24.03 38.88 15.37 73.38 86.66 54.60 79.16 29.78 59.30 3.17 44.18 91.65 71.05 75.72 27.30 14.20 31.91 37.73 26.51 2.75 20.91 40.16 96.70 84.65 78.01 68.88 28.48 17.95 42.40 70.84 84.26 58.07 32.57 21.77 91.92 93.02 87.30 70.21 9.96 79.05 6.54 28.59 26.33 43.81 40.54 61.02 57.87 10.90 33.46 31.76 75.59 87.11 22.23 59.94 10.83 88.20 51.13 3.14 28.98 74.89 47.43 49.33 47.63 27.26 32.97 23.99 71.08 70.63 93.85 96.82 92.95 82.66 78.19 14.21 57.71 92.11 54.09 58.92 2.99 13.60 62.83 66.18 66.46 65.66 65.44 78.47 11.34 5.80 -49.34 45.07 17.99 3.92 43.79 41.79 80.04 79.23 73.71 79.17 95.55 78.87 44.00 69.09 70.15 36.74 58.70 56.38 58.20 22.92 14.87 56.51 78.22 15.32 24.71 3.57 95.83 40.07 73.09 8.07 95.53 24.17 50.85 35.97 48.70 22.77 6.41 36.89 90.43 87.32 17.28 37.44 59.32 1.46 18.43 8.01 96.31 64.35 18.84 39.79 50.93 1.95 47.91 95.20 73.21 9.55 26.68 67.06 42.20 88.97 41.86 68.87 61.78 57.32 46.03 79.16 21.13 15.15 16.38 40.12 57.48 58.79 56.37 17.79 45.18 45.97 82.70 65.83 45.79 23.14 94.06 54.67 26.90 56.35 44.45 11.19 24.90 4.68 52.12 13.93 96.43 55.10 58.73 52.07 28.20 2.35 28.55 30.80 94.19 85.07 -44.54 80.18 41.13 72.84 41.42 28.94 11.10 5.52 71.87 59.28 41.46 28.93 22.32 93.67 39.35 35.19 63.71 94.18 58.37 45.35 29.97 16.82 1.11 64.15 73.34 60.29 74.68 42.64 8.32 1.82 29.29 90.51 71.86 4.65 52.14 82.59 82.38 20.86 96.00 27.26 95.69 5.98 94.01 47.99 15.78 34.22 53.23 70.85 51.53 85.90 79.97 11.00 13.37 88.16 17.53 59.48 83.32 78.43 42.12 46.91 71.98 33.15 14.48 39.52 65.18 67.43 53.32 79.89 47.85 34.47 37.98 64.66 90.88 13.75 18.83 8.15 52.86 38.83 9.54 8.21 61.25 44.28 30.68 64.44 46.17 32.66 59.32 0.29 4.42 64.35 59.26 75.39 20.41 97.09 95.30 52.89 13.95 38.38 91.02 12.30 -13.20 15.82 63.93 52.88 25.54 19.66 1.83 74.68 73.67 92.85 66.22 10.54 91.48 44.62 94.49 68.04 96.80 98.03 32.74 64.73 11.33 10.06 96.49 48.27 29.51 33.72 18.01 52.91 52.75 19.36 59.61 44.93 6.25 63.11 9.10 9.03 32.27 40.80 83.12 51.69 89.24 98.52 71.50 53.56 10.89 32.00 57.17 27.29 6.20 53.64 4.63 28.36 0.37 13.48 38.58 47.85 81.83 22.70 83.19 58.08 79.63 76.88 29.33 41.49 95.33 88.78 55.76 77.77 89.75 6.13 57.86 9.28 76.20 7.61 85.74 67.94 48.30 32.00 78.44 81.96 41.70 25.64 30.57 90.67 72.24 72.54 22.63 65.84 90.38 19.26 29.67 76.50 44.23 26.81 13.56 66.59 64.23 50.40 52.34 11.39 -58.84 33.82 19.28 54.35 10.58 33.61 29.75 61.71 40.89 5.28 4.84 24.01 65.63 10.53 81.08 95.65 80.80 5.47 26.14 73.45 88.90 18.94 10.98 42.15 31.41 7.31 72.53 24.93 36.91 19.37 66.90 67.39 8.80 10.99 68.29 46.85 40.98 98.34 92.17 52.92 72.30 22.80 34.87 67.47 81.52 31.98 48.04 69.61 92.16 55.40 23.61 73.86 82.12 13.02 69.86 19.92 85.46 21.91 79.97 77.52 8.00 27.95 86.22 34.78 9.53 1.87 63.11 0.07 47.10 56.46 9.87 92.54 61.33 71.38 99.63 85.54 71.74 53.16 47.08 23.07 5.81 31.76 28.59 5.29 34.46 69.83 75.05 90.49 36.49 68.61 0.22 44.08 50.17 83.68 30.85 99.14 82.11 77.72 73.73 82.53 -39.06 33.13 87.76 17.98 97.54 84.94 60.52 61.82 5.58 17.96 72.76 73.65 1.95 60.58 2.70 10.91 43.88 55.63 73.95 24.09 5.28 46.65 40.36 55.88 3.81 46.65 63.93 59.68 50.35 34.42 64.39 28.15 67.81 12.00 35.78 49.99 85.31 40.03 69.43 16.76 17.83 3.96 55.36 80.11 35.25 82.25 25.43 88.86 94.82 9.70 49.31 65.97 67.99 46.47 62.74 40.83 11.56 1.51 23.54 97.21 31.73 18.92 34.90 72.15 76.98 71.24 18.91 9.42 50.70 2.78 47.28 63.28 73.59 98.66 33.42 44.08 39.53 9.64 35.62 82.33 47.38 33.08 29.00 79.68 2.47 72.02 56.43 33.23 72.48 32.22 11.93 4.14 71.22 11.20 5.40 84.67 82.08 0.40 50.21 93.51 -23.46 93.60 0.42 8.98 19.07 17.80 24.69 80.24 82.44 10.60 32.25 21.63 75.73 85.33 44.37 98.59 28.52 50.43 99.44 20.22 83.07 50.84 66.99 29.64 53.22 41.22 85.95 20.47 98.43 43.39 65.24 39.73 35.31 81.89 16.52 39.03 70.47 12.52 53.57 7.26 87.91 36.27 14.93 54.63 61.55 96.43 2.89 57.87 82.64 23.27 36.37 9.29 14.85 23.89 64.52 96.86 10.73 77.85 13.86 54.34 16.87 73.71 75.32 88.34 52.51 93.74 92.45 68.43 11.79 70.34 0.23 63.90 35.82 52.56 0.17 49.73 62.65 39.82 50.04 12.40 92.79 60.03 24.91 28.76 64.66 72.73 86.44 83.80 0.21 37.20 38.68 17.78 49.45 75.20 44.14 84.78 5.48 93.40 88.32 56.02 -72.80 76.22 24.04 94.46 28.59 24.07 49.34 78.71 6.78 30.74 33.06 12.81 78.40 37.22 50.78 64.16 83.02 68.20 37.80 59.47 46.93 5.11 61.24 87.50 11.46 82.61 62.90 99.65 50.28 88.99 96.51 54.94 46.03 87.25 30.62 73.18 91.37 10.87 15.55 18.13 50.40 9.05 15.16 84.40 3.33 66.88 69.50 96.49 93.81 49.85 23.12 89.61 99.54 77.54 68.90 43.75 14.11 6.41 76.81 30.86 9.76 42.94 48.34 18.86 1.40 34.27 61.59 12.57 59.72 15.88 82.59 59.06 89.97 4.12 66.13 96.83 19.85 14.10 75.48 83.13 90.10 52.65 7.74 93.93 97.75 46.14 91.69 67.91 67.00 18.53 72.72 78.41 23.92 32.89 86.02 27.93 68.40 49.60 29.36 45.19 -56.87 4.50 4.32 32.22 50.81 41.28 74.80 2.01 86.57 31.01 4.67 76.65 44.00 22.17 67.22 16.67 47.72 23.31 52.35 85.69 0.52 35.76 48.50 19.30 43.10 43.78 12.09 48.18 80.60 69.03 82.08 79.81 52.85 70.36 61.93 83.24 37.00 48.48 49.71 52.02 21.06 87.78 25.00 79.68 77.02 61.42 34.37 52.12 17.87 46.34 48.96 86.78 34.44 27.53 49.10 24.77 29.08 72.65 39.82 87.79 51.17 23.86 82.98 24.77 84.56 87.70 89.95 56.39 75.02 1.31 38.95 67.80 92.50 41.34 37.56 17.46 8.29 46.32 54.18 17.47 33.29 0.27 2.25 63.18 57.54 34.56 21.42 14.84 53.98 63.27 67.28 2.67 8.90 45.42 22.51 84.10 25.87 54.24 1.79 48.87 -0.77 97.08 76.84 17.61 83.90 94.68 59.93 36.03 63.55 99.97 61.40 97.94 3.73 20.36 68.51 10.13 68.94 93.57 68.42 68.62 57.50 62.71 77.62 23.19 16.37 88.30 1.31 65.01 55.30 41.77 30.86 53.15 0.29 72.83 56.42 64.55 19.52 70.94 76.31 52.97 8.80 72.39 26.40 72.79 80.74 81.78 63.21 90.41 97.14 89.12 5.21 79.18 9.06 98.43 99.33 48.59 94.09 61.54 17.99 41.08 8.93 87.26 18.65 15.05 95.98 44.50 93.46 11.85 72.45 76.42 22.40 7.45 78.08 99.40 72.53 43.73 74.86 31.01 50.97 38.40 12.28 60.57 41.40 44.80 53.85 86.31 62.11 37.87 83.95 75.30 23.37 58.02 37.41 56.64 13.74 71.18 25.15 21.17 19.60 40.52 -37.73 84.54 71.19 96.36 87.46 12.22 47.85 4.99 97.71 53.53 8.66 75.39 96.00 33.32 27.51 12.55 56.01 71.70 55.48 32.57 49.21 94.68 56.09 48.82 49.85 14.12 52.19 9.79 54.21 73.81 26.32 58.55 32.93 82.77 35.71 65.83 63.08 12.29 99.21 58.31 62.55 15.00 42.91 27.41 85.49 33.66 69.47 7.03 33.42 30.70 6.28 59.11 37.04 19.42 61.24 65.80 98.25 56.60 1.54 6.37 64.09 84.81 32.27 51.89 48.01 75.82 28.47 72.65 97.62 63.72 57.75 3.96 83.60 90.35 99.11 82.05 55.96 28.92 25.54 0.92 48.92 40.22 15.18 25.17 78.51 71.13 95.79 50.49 0.85 23.63 99.04 58.10 57.42 74.25 89.76 67.32 33.12 95.22 69.28 73.44 -92.56 36.98 67.29 54.12 93.97 72.73 34.29 36.98 67.42 70.07 75.88 19.88 73.20 59.44 9.18 23.36 85.62 66.73 87.61 78.95 49.10 48.52 50.02 65.65 77.70 21.00 47.92 55.22 50.33 62.31 76.04 70.33 7.57 34.56 46.62 65.26 7.91 38.21 25.15 2.06 17.49 97.03 84.14 69.63 94.83 32.84 34.25 37.77 3.67 31.00 20.87 52.97 71.15 69.74 14.06 47.63 9.32 38.14 65.36 97.13 51.23 81.16 58.67 17.51 84.89 82.16 10.85 75.66 13.36 50.03 53.58 73.83 0.86 75.23 35.72 80.37 32.27 38.55 98.01 19.25 73.83 11.85 62.39 55.93 79.88 73.70 30.52 63.26 31.51 49.63 32.77 15.28 45.87 43.40 12.43 1.27 41.72 62.24 40.91 98.11 -9.70 52.80 77.80 81.64 99.38 18.89 40.35 63.29 55.35 2.74 29.73 80.34 92.23 38.70 51.15 21.62 8.45 81.42 89.65 8.14 94.62 41.48 85.35 25.02 36.17 23.33 91.67 76.96 54.58 41.92 88.24 28.87 47.71 32.44 30.13 95.79 97.43 39.35 3.99 85.87 73.13 61.74 48.88 5.66 13.65 36.40 49.44 65.30 61.62 69.79 52.64 16.08 36.34 83.11 24.74 14.06 96.06 20.58 99.24 41.65 14.69 77.09 51.26 65.01 16.31 31.39 98.92 28.16 13.08 71.45 93.43 73.58 51.64 21.33 65.57 11.99 19.02 39.52 83.29 77.41 4.50 15.58 2.94 32.79 82.17 69.95 95.33 90.60 26.94 3.22 92.82 74.24 49.98 70.68 5.24 16.63 34.72 13.85 24.80 52.73 -94.66 30.16 10.00 4.47 88.50 72.32 10.90 97.72 12.61 8.13 84.80 87.90 16.71 58.22 52.90 59.27 91.61 55.42 47.46 18.34 58.96 22.34 85.52 86.38 89.22 58.51 9.21 18.59 63.77 4.81 81.17 88.99 20.02 5.17 85.78 65.35 93.70 29.73 80.58 37.98 74.25 5.72 90.69 75.88 57.42 8.11 16.31 2.21 13.43 38.90 21.08 78.40 71.04 29.76 1.81 42.95 26.06 5.45 42.45 76.90 28.10 19.29 16.44 40.31 18.94 72.12 36.46 67.50 96.73 62.55 50.10 8.08 2.96 7.44 93.06 32.82 80.31 18.03 44.16 46.23 0.02 40.96 5.26 4.60 81.88 14.81 97.06 55.05 13.56 86.24 18.04 73.59 51.87 89.15 34.41 64.96 26.50 87.20 54.15 53.08 -63.82 13.44 45.59 66.70 33.44 85.91 78.88 41.70 18.18 92.10 19.93 6.22 73.52 5.30 66.07 58.48 9.88 60.39 90.98 17.94 72.67 28.92 39.81 55.20 73.33 97.26 63.95 80.40 85.47 18.13 93.73 29.06 76.76 27.35 26.88 49.12 73.26 45.83 50.75 91.53 82.93 59.53 0.81 70.32 46.91 78.76 14.51 25.25 45.84 49.05 52.68 2.64 1.78 5.08 95.56 96.58 91.73 48.18 70.06 30.39 72.48 81.43 69.17 49.65 70.27 68.08 6.80 78.08 71.88 69.08 49.92 83.04 23.79 79.30 34.94 86.38 45.03 44.50 15.85 61.92 92.49 76.07 42.66 95.51 85.12 23.39 39.51 7.56 63.73 68.25 13.20 67.62 68.48 21.48 45.20 47.94 32.06 43.47 70.49 67.98 -78.46 90.42 59.23 99.63 86.46 12.36 96.37 69.33 35.79 32.89 56.48 66.75 76.23 57.65 20.66 63.46 30.88 38.96 46.61 77.07 99.32 5.18 47.30 60.22 16.06 83.13 32.78 31.39 23.88 33.65 89.50 46.68 80.79 0.18 83.60 18.29 85.77 31.49 49.83 82.57 47.08 67.55 85.45 65.03 96.67 33.48 93.51 32.82 60.34 16.34 16.15 30.08 58.77 26.74 34.24 92.51 3.91 59.37 58.94 29.45 7.30 10.38 60.00 22.97 40.07 26.99 22.65 85.18 26.55 53.50 99.42 39.63 29.42 48.53 81.23 87.71 20.37 90.59 63.95 35.04 0.74 67.48 12.82 64.98 7.58 61.12 56.86 55.58 23.29 8.44 78.19 88.93 18.46 86.87 43.79 62.48 70.36 15.57 12.04 75.41 -40.86 37.20 54.22 26.90 39.24 95.69 65.40 14.46 24.01 92.33 75.79 68.09 38.29 31.77 97.78 81.69 52.28 29.13 27.12 37.96 25.15 84.44 6.87 20.32 77.12 5.28 76.60 24.12 39.12 88.10 82.77 53.00 41.28 67.06 43.83 79.59 75.51 92.71 52.75 49.55 87.39 71.82 51.95 30.06 78.11 31.88 35.83 90.00 96.11 37.20 9.68 69.05 41.31 39.48 80.11 28.86 82.07 89.90 43.96 42.76 80.89 34.43 95.32 66.55 1.23 48.60 48.35 38.10 29.40 81.56 6.86 80.02 75.48 45.18 29.92 64.82 14.05 79.02 41.86 1.24 22.17 76.58 47.99 90.32 41.43 61.30 42.33 32.44 7.98 5.13 52.12 66.28 73.87 42.33 5.05 68.23 17.87 94.89 35.94 44.67 -70.52 52.84 62.89 72.08 2.38 26.98 67.74 64.55 10.53 65.03 2.26 14.99 8.85 17.10 55.05 41.75 87.93 25.90 57.37 52.76 19.88 7.64 6.88 98.18 91.81 29.48 88.22 12.13 29.62 10.21 18.99 38.32 64.08 39.50 47.60 46.28 67.79 49.38 13.09 74.20 43.35 47.81 50.39 78.46 44.05 95.97 51.74 5.33 68.53 8.49 21.73 31.04 31.42 43.87 19.73 25.28 87.34 11.83 18.70 88.06 14.16 25.31 18.81 33.91 81.55 27.89 18.79 26.52 63.27 98.96 11.26 0.97 87.83 16.68 10.49 59.74 61.29 55.05 89.64 19.96 5.76 25.77 95.99 45.54 58.92 40.66 68.11 74.86 73.28 66.25 88.34 18.10 94.48 4.33 10.84 60.67 62.24 54.40 29.95 56.81 -32.06 76.10 96.99 35.13 64.77 92.74 7.32 32.59 90.45 3.78 98.62 19.21 11.05 36.47 53.84 27.50 38.99 89.88 30.41 34.08 80.67 73.81 68.22 15.14 8.74 18.59 11.03 37.33 9.27 6.56 10.94 24.81 73.85 71.35 82.18 99.58 54.31 9.85 99.34 81.05 26.16 99.18 59.92 40.72 36.38 58.56 87.39 22.94 44.41 23.23 75.39 12.05 87.06 18.05 81.40 84.79 30.90 33.80 27.38 56.55 93.11 6.58 18.81 2.26 54.78 37.69 72.97 43.18 44.18 61.65 0.87 9.21 74.07 49.40 25.56 38.01 65.66 58.76 87.28 40.20 86.90 76.90 18.75 17.23 69.60 5.94 0.68 68.78 33.93 0.71 91.54 3.10 17.76 18.35 72.48 54.30 52.72 39.84 83.99 82.00 -56.16 45.87 12.69 97.86 48.04 88.26 89.52 25.32 57.66 90.27 27.56 7.09 54.02 85.15 20.39 59.61 83.42 44.56 18.20 38.14 53.52 88.72 29.50 4.56 94.89 2.63 65.09 70.59 16.85 70.80 43.24 97.98 77.24 18.79 30.61 70.11 53.27 98.57 42.65 66.82 35.55 10.92 15.51 89.83 37.44 71.72 35.75 45.93 33.41 83.28 1.35 7.49 23.86 94.61 91.10 79.61 26.15 77.73 27.95 86.09 40.37 52.31 19.70 91.20 1.02 88.81 16.25 48.07 13.94 60.59 54.82 96.18 25.55 22.90 74.09 98.74 16.62 70.49 56.78 30.35 3.60 94.62 11.43 45.62 23.53 7.63 58.92 54.95 59.40 19.34 22.83 45.15 51.32 2.53 28.27 72.52 88.35 15.87 37.07 8.86 -26.40 12.89 86.85 40.41 5.64 61.97 64.79 43.97 46.78 69.98 16.95 21.15 59.94 22.03 80.99 38.23 70.87 14.95 70.78 37.64 26.87 8.64 15.42 65.99 37.75 22.98 48.53 16.70 91.23 16.87 38.34 90.82 65.49 2.28 51.82 2.52 34.35 94.09 45.53 95.88 80.99 10.80 24.87 29.44 99.96 65.62 3.56 10.72 58.34 48.28 41.50 48.01 17.99 86.98 41.07 26.44 74.11 48.10 6.13 83.61 1.36 79.53 96.11 78.93 52.95 27.35 42.65 67.95 24.33 31.65 23.04 13.24 5.04 89.86 56.19 96.59 98.08 18.19 93.56 68.89 51.16 93.28 94.61 12.98 56.37 9.89 92.97 60.85 0.26 59.71 51.52 31.02 94.16 23.40 15.74 1.18 54.00 12.12 73.69 24.62 -23.54 27.66 17.22 88.42 64.67 79.14 72.27 97.15 74.59 9.11 98.58 78.42 51.98 78.45 55.80 86.94 98.08 60.18 24.25 10.98 50.81 98.47 14.11 29.84 84.42 17.58 24.42 26.80 25.07 48.62 1.83 24.21 16.47 50.95 90.94 12.77 0.83 82.31 48.16 74.27 40.18 41.06 5.51 91.81 42.11 51.31 92.76 75.39 48.44 49.72 39.26 33.69 79.45 22.15 73.53 40.82 20.94 26.97 1.17 92.70 76.80 60.86 8.68 82.15 98.51 55.34 53.31 63.45 22.40 98.18 12.33 27.45 23.32 26.73 20.24 63.72 66.96 96.13 17.54 41.29 0.68 90.25 68.47 19.27 81.11 7.30 3.71 42.52 55.90 91.02 81.46 8.05 67.68 77.57 79.70 11.63 30.27 85.34 44.59 96.37 -67.30 26.63 31.68 47.56 94.30 65.71 28.15 74.01 2.78 82.30 49.44 27.68 67.76 19.36 49.02 52.99 65.81 5.67 25.67 82.67 89.38 80.76 43.27 18.28 7.41 97.22 6.87 37.23 77.25 58.44 49.01 42.92 50.02 14.98 49.48 93.18 82.69 58.41 26.76 68.24 34.16 38.14 8.29 75.77 81.94 72.72 67.19 83.13 68.18 15.09 78.22 68.23 62.16 37.80 25.86 92.08 64.08 96.56 20.36 75.31 77.85 87.38 55.99 33.72 67.43 98.04 14.92 55.11 86.74 7.56 78.89 38.43 13.13 54.72 43.03 73.42 10.17 35.57 7.56 34.43 18.20 27.11 91.83 97.60 33.87 86.39 55.78 60.51 95.16 28.38 16.05 85.18 75.07 60.60 64.03 2.10 29.60 80.64 5.27 67.66 -61.40 38.17 25.36 31.73 47.03 85.38 40.58 48.62 96.23 98.04 45.63 90.29 77.35 2.27 3.56 37.93 30.83 71.26 35.08 24.76 47.98 33.24 46.24 93.48 78.18 75.55 61.17 54.32 14.03 46.19 55.17 99.01 69.58 24.42 77.42 33.56 15.30 79.38 64.62 1.00 87.35 34.15 29.44 86.34 2.54 91.15 66.51 91.78 66.34 42.49 12.92 34.45 43.49 80.25 75.70 90.07 77.57 80.67 2.20 47.64 40.56 69.56 58.41 82.29 51.43 31.30 2.14 94.70 71.76 35.98 30.34 8.70 36.15 46.93 71.50 26.50 26.83 76.04 55.63 8.39 40.25 74.48 70.38 19.97 12.82 29.19 75.86 31.74 31.59 3.35 9.28 32.53 35.43 38.59 69.01 81.06 48.07 15.08 24.69 98.67 -22.36 20.92 58.13 86.35 21.68 54.05 98.79 93.17 8.18 92.17 35.69 29.28 1.56 8.63 37.07 97.02 81.22 38.89 74.58 26.93 21.80 19.42 58.28 66.48 55.35 1.10 96.72 4.87 32.71 72.76 49.77 24.92 69.06 6.09 69.38 36.82 39.20 29.19 82.75 9.13 37.48 7.72 98.27 14.72 3.95 59.99 1.35 32.88 72.76 42.54 6.34 96.53 75.43 14.74 69.96 12.41 82.62 27.95 45.38 27.07 97.22 94.80 46.03 92.12 0.57 97.88 76.05 38.21 13.64 59.08 56.09 25.57 5.98 30.36 88.05 63.80 93.49 88.83 54.51 47.77 19.50 3.96 4.29 9.01 55.72 27.54 38.84 69.64 49.92 72.81 62.09 71.28 38.93 5.14 78.21 17.52 90.00 9.47 29.11 62.49 -11.26 28.44 95.84 44.57 6.91 83.56 11.02 49.32 15.05 38.63 53.48 67.34 91.67 48.09 41.97 88.82 85.99 64.29 14.38 18.21 20.71 0.50 44.23 47.32 28.32 19.79 30.49 26.95 2.56 25.62 59.49 97.86 65.28 65.28 8.71 65.62 56.76 95.53 67.52 57.62 59.40 18.21 14.46 86.35 8.14 22.40 27.29 0.22 88.22 37.28 38.84 66.45 32.40 87.74 2.20 24.79 20.67 62.05 33.23 44.46 47.01 89.23 30.93 83.07 59.04 30.08 26.45 30.81 15.99 63.25 82.62 61.10 53.86 76.84 14.52 13.57 32.96 83.03 91.35 58.21 3.74 10.87 36.04 43.00 30.38 16.64 13.46 83.19 72.50 72.42 48.94 52.53 51.80 7.06 29.99 47.43 18.38 25.59 81.12 18.64 -75.00 26.73 98.01 72.94 31.91 62.87 50.75 71.41 50.28 99.99 8.46 86.60 27.38 28.90 65.97 3.08 95.62 32.83 91.61 34.74 0.53 74.55 2.53 24.92 30.74 14.16 8.19 21.78 27.31 21.92 66.89 20.51 82.60 8.70 39.62 85.84 79.94 82.86 66.52 84.61 91.73 50.64 63.98 83.05 25.30 49.35 55.27 41.65 52.40 95.62 77.55 95.11 91.93 98.87 26.05 66.79 25.63 65.73 22.86 95.03 95.36 90.25 78.84 25.13 88.67 55.11 97.71 41.52 21.75 16.79 51.91 40.92 21.37 43.95 73.83 70.42 79.50 44.40 57.32 76.97 23.66 61.92 55.62 80.71 34.23 4.59 56.03 41.14 44.87 60.97 18.92 1.18 62.90 5.61 81.41 14.60 43.43 69.80 9.03 20.36 -91.13 68.32 83.81 93.91 24.48 78.61 64.52 25.26 57.95 13.08 13.50 17.77 41.15 12.66 41.60 2.10 16.39 66.12 96.87 8.81 74.77 29.36 75.72 62.46 44.83 33.59 25.23 97.41 48.07 72.20 58.56 23.20 1.91 3.01 20.17 97.15 76.73 18.63 18.14 69.63 94.93 60.53 86.96 99.65 54.34 28.68 60.83 41.74 0.63 92.41 42.16 63.03 71.63 27.49 71.29 64.72 46.24 60.48 9.14 93.18 47.14 23.66 6.74 78.10 62.23 92.48 64.78 16.95 55.63 15.33 89.04 33.03 53.43 97.21 99.28 97.82 0.03 42.98 21.56 4.18 11.97 42.42 12.36 81.85 79.39 78.18 80.09 48.68 54.67 81.22 59.72 18.83 54.91 52.57 6.10 40.80 56.94 96.95 74.51 21.76 -39.80 71.03 66.45 68.90 11.00 32.74 53.32 82.87 75.32 97.67 6.98 12.36 69.77 41.61 8.38 34.50 60.31 89.10 82.26 69.95 33.05 5.55 96.95 40.45 2.37 76.41 81.01 23.89 94.72 6.38 17.59 90.22 79.12 27.24 19.75 15.04 21.14 5.86 53.44 22.26 53.54 93.20 76.16 38.17 44.45 79.88 78.61 28.07 9.78 93.72 3.13 3.80 16.98 48.92 73.94 57.67 70.70 57.12 20.69 51.74 86.94 69.65 63.58 4.69 66.97 12.68 0.79 31.74 23.84 69.81 46.43 63.42 56.29 60.98 42.15 9.00 95.98 84.09 36.79 40.36 17.65 75.93 49.34 65.73 46.04 36.35 86.51 63.93 89.69 80.29 48.00 1.18 26.33 23.40 60.09 42.33 23.92 60.91 36.24 8.34 -2.80 1.22 38.35 76.37 39.61 53.56 6.76 55.42 1.49 6.49 95.95 92.05 52.44 34.88 99.88 30.16 78.04 56.05 5.35 47.98 87.50 75.95 42.30 25.84 15.18 97.64 73.26 77.07 66.46 61.39 64.33 53.98 79.65 11.30 69.09 2.47 24.57 28.53 90.99 38.40 58.82 55.75 49.53 71.17 52.68 25.93 32.76 95.39 61.11 81.38 62.38 60.52 37.99 20.10 18.73 81.14 2.38 45.13 89.69 60.16 99.63 36.99 30.65 67.85 90.04 68.90 8.94 37.65 65.89 99.92 73.44 2.14 51.08 78.28 30.46 96.15 57.48 22.37 62.85 98.84 92.01 64.36 19.45 45.62 81.12 49.35 33.33 21.15 87.28 21.40 40.87 48.38 12.51 21.38 43.33 45.44 8.37 8.26 1.87 68.66 -35.08 74.91 9.63 35.24 38.39 65.19 75.18 39.99 91.50 13.21 75.69 7.77 89.83 65.18 96.32 57.04 19.51 52.16 37.98 27.81 17.65 36.68 1.79 69.38 83.32 36.72 92.94 98.99 93.12 65.41 59.38 89.68 42.33 38.23 59.09 43.16 86.99 52.97 56.05 80.00 40.14 75.31 82.66 48.48 61.56 37.68 10.00 75.51 34.15 12.28 21.69 29.88 55.51 58.86 42.33 61.13 79.75 22.30 76.40 32.83 37.22 49.91 70.29 40.23 99.81 20.15 66.95 51.08 30.85 42.84 57.94 51.64 73.65 8.40 94.15 73.05 14.41 79.29 15.80 2.32 46.51 38.83 18.75 94.69 76.27 92.72 87.96 10.49 56.35 31.00 53.21 20.81 99.88 20.96 4.63 81.97 82.70 67.61 37.35 49.99 -12.54 76.22 10.03 19.10 18.43 66.54 81.67 92.99 20.53 14.78 18.25 51.53 40.99 25.80 7.12 70.90 42.30 55.69 67.48 23.46 98.99 63.30 25.99 68.85 71.19 87.60 97.41 1.08 93.17 25.69 30.04 29.02 75.97 98.35 61.14 68.60 55.90 59.96 14.66 65.79 54.77 7.39 83.98 47.13 97.93 46.85 37.99 13.87 70.45 62.64 16.92 4.76 85.88 90.17 3.82 88.55 97.29 70.21 81.74 68.37 32.97 94.49 50.76 36.63 61.66 96.53 96.69 4.25 84.48 89.83 68.71 81.36 79.28 62.29 66.30 52.22 12.52 41.61 22.93 35.64 5.20 19.01 36.04 38.68 6.11 98.20 93.61 71.23 18.64 44.78 73.83 52.50 76.18 39.86 6.50 97.29 74.82 82.92 91.78 19.92 -28.77 4.70 70.96 15.58 71.39 10.78 40.59 60.80 55.23 76.50 54.58 74.71 53.24 99.83 26.72 28.52 34.76 13.84 51.69 16.90 38.56 0.71 30.02 47.56 3.75 66.21 75.26 26.47 6.80 25.47 23.01 24.56 25.38 93.57 60.24 36.85 41.43 5.57 22.94 81.36 42.19 75.50 36.27 16.70 80.42 2.78 66.04 72.20 62.66 98.70 47.36 7.14 87.32 23.62 57.04 78.54 2.66 63.74 11.24 21.46 7.07 68.88 77.39 77.76 50.78 21.46 40.97 76.38 24.13 26.95 77.19 60.30 75.41 92.77 22.85 89.64 6.14 11.90 17.15 30.45 69.07 8.28 3.67 30.56 86.79 78.38 66.83 36.46 54.26 54.02 80.07 57.97 80.51 69.24 89.84 84.48 91.31 74.68 7.53 63.36 -12.40 99.88 35.41 80.81 94.64 29.34 41.80 75.16 68.14 22.53 10.30 31.38 48.77 94.61 94.73 50.71 3.54 89.22 61.69 7.04 53.82 71.05 89.52 2.01 93.09 14.67 73.46 21.69 24.73 27.76 63.63 99.75 30.53 92.36 95.96 2.67 85.93 65.27 3.60 75.38 21.12 79.28 68.21 91.39 62.27 21.76 60.62 11.31 16.25 6.76 35.32 13.74 15.27 80.76 43.18 28.82 23.81 22.93 46.25 66.36 12.15 79.97 38.55 60.60 92.94 7.19 64.95 4.13 95.62 56.01 90.75 76.29 66.34 66.63 14.74 79.48 86.19 39.83 50.24 20.40 61.48 52.18 51.70 92.16 70.92 79.65 6.57 31.71 76.75 73.08 44.74 53.79 41.63 33.24 77.82 20.07 46.50 86.50 74.28 75.74 -2.24 75.28 11.83 37.44 25.98 90.75 53.16 72.77 92.87 3.77 54.26 11.39 5.48 37.99 99.26 43.82 63.83 97.89 68.02 34.00 52.08 3.39 36.60 45.13 49.86 99.29 48.79 75.77 78.58 17.57 76.24 95.26 42.94 41.44 78.66 61.52 70.73 49.46 35.39 98.60 48.26 94.74 31.45 93.31 33.23 3.46 36.60 22.42 28.10 5.12 40.74 78.83 67.45 68.23 63.31 15.59 58.83 55.66 78.52 62.72 50.18 82.05 70.31 23.31 90.67 72.10 26.99 87.33 74.70 53.49 12.89 26.31 64.85 80.22 59.50 11.33 98.67 13.96 36.56 1.62 17.48 75.96 52.66 75.18 20.10 82.82 22.84 7.91 52.22 48.52 66.10 8.06 93.20 54.13 15.42 58.72 40.41 9.55 21.83 72.48 -26.23 3.03 58.03 46.14 21.05 60.59 33.83 74.07 24.87 41.07 21.47 84.45 72.56 10.80 9.94 24.68 47.80 98.76 21.94 0.24 62.41 65.68 30.58 99.84 3.10 30.96 57.84 10.96 35.34 45.40 90.89 76.52 25.15 79.22 61.19 60.04 73.37 75.17 4.01 10.34 90.69 5.76 80.64 85.88 23.82 56.70 46.05 93.81 99.83 88.67 47.58 71.58 65.66 56.20 41.59 99.96 85.39 19.76 5.12 2.44 22.10 27.23 84.69 31.69 38.85 92.46 12.75 36.54 38.28 66.65 11.34 37.13 85.47 47.04 29.62 33.92 28.72 80.25 52.50 90.08 32.06 14.41 67.75 9.72 94.29 36.07 5.74 33.57 85.81 22.37 93.96 63.34 14.09 32.99 19.94 18.25 29.71 63.09 18.88 16.83 -44.22 7.52 67.97 17.82 77.46 91.22 52.85 75.57 78.83 86.55 95.67 25.10 16.98 93.06 68.33 39.86 97.67 23.54 39.14 13.01 75.90 73.64 67.48 87.55 2.66 49.32 94.79 63.79 94.45 32.66 44.67 58.05 65.27 77.99 11.14 19.72 26.13 38.68 75.14 19.88 27.03 68.46 68.44 58.62 59.64 54.81 23.36 68.66 0.57 38.51 61.48 19.39 52.56 23.10 27.50 96.49 60.46 82.19 93.64 19.42 24.16 31.29 30.99 41.48 76.12 95.42 74.70 1.10 55.57 70.51 95.72 33.27 16.19 9.22 74.88 39.73 96.91 19.25 82.99 92.50 59.23 6.77 54.48 80.34 68.61 81.84 11.15 18.63 58.48 52.88 70.93 85.53 21.28 99.72 29.38 89.20 93.97 66.71 51.39 0.82 -14.18 34.73 23.20 21.43 19.79 22.22 28.67 29.73 56.65 42.56 61.38 40.31 37.91 30.60 14.97 82.37 9.30 32.57 88.45 85.33 65.28 25.66 54.58 4.83 18.11 93.60 78.36 74.19 64.40 70.92 68.10 34.62 60.89 83.91 6.85 9.30 68.56 86.74 70.45 84.70 88.21 90.58 23.73 13.71 72.81 99.88 17.52 71.39 70.37 50.11 60.04 7.12 94.76 46.52 26.67 93.14 73.52 17.84 19.13 53.41 56.28 27.61 84.83 8.71 3.71 92.93 21.86 72.00 17.93 78.66 77.34 87.26 1.98 3.92 24.31 58.88 21.49 35.88 99.03 48.75 9.11 55.93 50.01 56.96 98.03 11.67 45.92 75.80 58.70 92.58 52.30 86.48 62.96 21.82 53.06 71.22 38.18 3.08 76.37 81.13 -55.84 86.28 58.05 44.90 89.04 85.24 61.96 75.96 24.03 66.06 97.64 52.77 3.96 84.78 66.85 6.48 57.73 9.89 92.09 35.34 65.36 86.87 75.87 57.86 25.36 66.44 96.08 30.51 32.81 15.00 10.53 20.62 81.78 78.09 72.21 92.17 10.06 92.48 63.89 89.41 79.40 67.58 15.73 68.90 48.16 36.74 79.90 78.87 64.27 65.90 5.60 80.04 45.07 90.61 2.57 92.17 54.49 19.67 87.58 99.16 92.82 2.99 3.07 72.47 64.56 7.51 63.07 1.26 98.36 65.47 54.69 0.24 52.76 18.30 36.77 15.93 10.43 21.18 42.96 5.80 82.49 6.51 62.94 6.92 59.39 34.15 12.07 10.98 13.35 42.59 30.52 24.77 19.25 19.20 16.42 82.95 97.14 2.57 58.73 18.19 -13.21 88.05 22.33 71.95 95.58 83.83 40.64 70.47 90.48 48.90 75.62 59.92 43.55 93.36 88.28 39.00 81.52 9.24 51.92 51.48 27.26 73.18 37.10 67.08 71.96 45.18 24.03 7.85 77.03 16.30 6.39 58.87 62.91 6.72 93.45 53.44 69.14 13.89 26.75 92.91 52.44 72.42 38.94 40.50 45.16 72.13 94.25 71.10 31.27 31.07 25.46 83.23 88.59 45.70 65.04 75.52 40.31 59.02 19.28 46.87 94.43 74.12 1.97 78.31 73.94 69.80 78.28 26.95 76.81 61.81 55.00 34.57 19.70 62.10 70.09 45.35 71.25 10.21 10.08 48.62 83.69 45.83 78.01 2.85 16.56 61.47 97.68 16.39 88.79 16.73 32.87 68.57 30.81 35.38 92.62 74.90 49.48 54.96 84.23 81.87 -75.02 10.98 80.32 66.05 16.16 85.91 75.65 10.69 55.51 46.25 93.64 29.88 29.01 83.05 79.39 72.72 54.02 53.32 7.49 90.97 82.95 47.16 72.16 59.00 79.13 22.17 19.16 83.36 10.48 58.09 67.38 53.80 91.39 35.88 85.28 90.03 10.89 76.56 7.43 8.08 1.73 87.50 13.50 33.21 37.48 86.68 68.09 51.04 67.03 75.51 66.90 63.97 71.08 46.85 37.83 99.47 80.44 73.93 80.11 3.95 22.61 60.59 38.76 35.85 25.52 54.76 38.06 81.34 45.98 35.81 74.76 40.92 99.17 35.25 75.18 92.21 37.59 91.86 46.34 54.02 31.17 58.14 52.28 83.66 84.96 19.63 14.29 77.27 73.90 78.87 35.02 46.97 27.81 10.79 38.42 52.41 19.24 77.50 19.18 78.59 -1.79 43.57 69.82 63.80 17.88 86.28 0.98 95.75 76.38 36.22 5.03 31.01 9.92 0.89 63.25 0.87 86.44 47.34 80.91 15.28 62.52 42.14 42.04 71.04 51.95 64.69 21.61 63.73 29.05 39.30 33.07 8.86 89.80 1.62 96.29 62.71 70.88 71.71 69.39 2.92 73.37 50.08 17.89 66.91 46.14 95.07 17.74 31.69 7.09 97.73 46.80 42.48 1.46 3.03 98.85 68.71 91.30 24.19 0.68 82.81 12.99 42.18 23.17 56.80 51.54 37.97 52.36 54.09 35.08 68.21 52.85 82.57 31.93 92.34 78.81 97.22 98.36 38.53 49.26 90.67 92.19 93.69 49.34 65.81 76.22 93.56 54.26 43.14 81.78 65.60 81.71 45.24 48.51 52.09 63.94 70.76 60.57 62.27 40.35 20.93 -76.13 0.92 63.87 53.61 95.81 80.02 54.87 60.95 42.26 94.82 70.90 25.58 48.41 40.77 83.10 49.62 80.36 32.42 94.35 6.47 91.62 11.44 44.57 94.48 23.08 17.85 63.04 44.97 32.55 17.62 64.96 25.55 71.04 28.72 85.48 38.07 1.35 61.34 94.18 0.50 65.48 31.39 3.04 66.27 65.84 50.57 55.89 62.26 55.10 85.46 55.38 15.37 47.87 96.57 35.25 45.83 79.52 99.35 70.20 42.04 80.05 96.93 71.20 88.46 27.70 86.14 59.28 18.90 67.60 46.11 22.78 49.84 7.33 27.92 35.76 51.63 70.16 26.31 56.06 30.92 61.49 58.16 11.91 85.35 8.56 4.97 73.95 76.65 31.22 4.63 74.76 71.98 2.83 55.36 61.45 16.04 31.16 70.85 30.80 45.12 -26.06 46.43 99.17 31.38 74.66 66.64 1.21 69.98 18.32 62.32 61.92 96.75 87.71 3.51 50.63 72.80 74.07 84.88 69.92 75.02 67.29 23.35 14.08 53.31 11.06 42.62 34.71 56.27 35.72 53.00 47.97 44.91 92.54 52.64 38.09 73.83 89.56 1.33 68.57 90.28 80.40 51.12 56.68 80.56 37.25 80.53 35.07 10.85 72.36 26.93 94.79 94.80 8.74 85.44 77.37 39.46 40.51 20.33 46.70 70.84 84.65 66.41 36.32 3.94 6.35 21.12 3.95 31.06 33.06 90.48 74.89 69.15 52.70 74.71 47.30 36.09 13.71 80.61 14.92 10.74 72.48 36.65 22.56 81.84 56.82 58.69 36.77 54.66 27.97 61.32 74.44 41.53 56.73 12.65 53.21 21.32 32.49 34.20 89.23 3.62 -84.31 74.01 61.02 35.90 95.52 54.14 5.01 24.27 35.48 20.66 22.49 32.59 5.41 47.56 1.96 0.65 10.72 37.52 34.86 43.86 4.17 90.26 50.11 18.42 68.28 46.39 45.57 60.56 81.43 38.74 13.24 7.16 16.47 52.38 70.88 81.77 7.11 24.77 9.31 90.60 89.26 47.85 98.17 40.64 20.05 77.83 6.38 35.86 37.00 60.48 69.11 75.99 36.68 35.24 45.55 76.55 34.13 21.51 96.72 97.57 9.19 84.59 28.95 81.74 28.50 92.47 44.22 87.96 42.54 70.95 84.03 86.60 9.85 2.65 97.48 86.96 58.30 28.72 82.87 64.88 73.68 62.93 14.22 92.36 75.71 70.00 37.45 4.82 46.18 28.13 2.71 98.84 8.30 78.25 62.67 40.45 84.77 91.55 81.79 34.20 -25.90 22.11 23.72 62.27 55.54 71.66 49.28 39.09 48.09 37.67 64.51 52.53 90.57 53.64 67.14 0.61 37.53 30.16 37.63 42.90 0.93 84.50 93.32 88.58 38.76 15.17 87.28 78.08 41.71 80.67 17.02 27.45 21.24 35.40 90.67 15.65 29.29 12.52 5.27 10.40 27.54 57.84 18.86 43.30 28.75 54.34 60.13 64.46 14.09 95.65 55.95 50.00 66.07 72.78 77.69 28.01 45.35 22.98 72.97 53.16 3.81 65.40 50.45 0.17 65.78 82.24 22.83 31.29 81.30 69.84 7.90 58.66 56.20 4.84 26.16 89.18 19.32 79.12 16.79 81.67 63.88 11.63 90.62 52.21 3.58 79.12 79.59 33.96 91.43 99.40 2.55 86.50 20.02 89.70 16.23 7.50 49.10 10.26 66.47 44.12 -75.62 70.42 37.01 43.61 1.50 35.91 84.35 21.79 32.24 69.49 67.00 95.91 10.64 84.78 4.97 72.22 10.97 31.45 57.93 18.75 89.14 0.40 25.77 79.28 88.22 13.14 84.41 53.65 47.78 12.14 41.42 54.47 24.10 83.88 98.98 10.92 48.24 40.15 85.53 74.64 62.82 87.60 85.22 96.02 72.71 15.24 79.87 24.18 68.11 40.79 0.38 76.54 24.20 33.40 31.53 46.54 34.42 22.98 18.21 46.47 24.14 36.29 88.72 53.13 46.75 99.85 92.10 87.58 56.94 82.05 53.82 88.94 91.00 47.90 72.16 47.66 87.92 53.12 48.45 67.30 16.86 59.44 14.74 24.44 34.98 74.01 7.79 7.10 18.67 24.51 85.51 7.17 95.18 85.19 65.90 32.98 46.36 81.91 50.73 72.92 -84.92 77.49 52.88 70.33 88.62 68.36 54.99 37.35 49.50 5.44 20.07 5.44 26.06 58.92 2.76 28.32 97.41 22.79 8.74 81.93 74.64 54.25 85.50 84.06 21.41 5.75 45.64 9.16 4.98 48.33 15.05 38.46 44.29 7.89 72.57 25.07 9.46 85.27 9.59 41.77 72.01 22.45 77.63 3.09 97.37 41.15 74.83 76.53 91.89 54.82 61.08 83.68 78.16 21.67 11.42 65.49 69.27 52.19 95.73 54.15 65.58 54.40 18.05 48.56 34.65 6.01 88.86 78.57 25.10 12.16 11.36 47.45 83.00 29.62 62.17 98.76 12.88 46.76 14.35 22.10 51.40 13.43 15.46 83.25 63.60 45.13 31.75 94.42 44.87 16.48 95.51 3.58 16.46 54.68 92.79 72.79 54.55 67.26 56.97 6.70 -1.93 38.97 22.14 64.60 36.37 15.47 91.06 18.73 8.02 60.57 90.69 27.23 96.26 24.38 93.31 14.48 97.79 51.55 80.47 86.54 22.26 48.32 73.53 93.59 40.99 4.48 36.15 0.11 87.66 55.07 52.27 79.93 14.86 95.78 62.43 47.34 23.50 37.22 52.17 60.40 74.67 15.74 61.87 3.15 71.54 92.63 2.39 4.41 21.19 55.12 35.62 47.62 98.11 3.14 98.27 77.14 22.79 70.94 2.48 45.11 44.32 89.96 33.21 4.69 95.56 48.87 82.76 47.59 49.59 68.43 73.22 61.04 42.75 10.52 39.36 54.80 27.90 45.26 76.23 9.11 67.47 44.31 47.38 66.01 56.15 71.27 92.41 64.24 88.76 52.38 51.09 7.08 96.85 65.16 97.84 62.44 2.56 94.62 95.12 46.08 -22.25 67.99 78.57 76.94 48.93 71.39 7.91 89.78 64.65 67.52 32.45 47.18 79.23 23.24 21.17 72.12 56.52 27.81 53.16 35.44 94.72 43.00 14.68 53.69 75.45 45.48 68.93 70.37 10.03 25.84 66.96 71.78 47.41 77.38 13.22 59.26 27.97 97.31 10.53 70.58 91.04 61.51 7.31 5.94 15.11 58.79 58.52 71.73 78.59 98.72 80.03 83.75 4.76 62.35 67.33 6.57 46.36 39.73 93.69 44.58 93.88 80.01 31.76 77.11 25.77 56.10 42.64 88.69 39.04 31.71 16.00 4.48 2.07 75.37 21.62 99.80 8.75 95.70 71.44 40.98 14.32 49.33 3.07 92.04 94.25 68.90 15.50 40.34 52.40 84.80 93.31 93.63 13.97 62.21 31.99 89.43 86.84 80.08 36.36 15.95 -45.63 14.60 52.75 76.53 46.04 36.27 30.64 73.74 1.13 52.57 64.99 77.24 9.13 49.87 68.64 27.18 16.62 56.23 5.98 94.14 91.10 34.65 23.42 1.46 11.37 80.19 89.81 18.04 82.63 75.19 66.60 99.50 77.64 67.80 31.70 19.60 22.26 92.35 47.04 3.26 5.65 21.64 7.38 11.99 21.06 60.13 81.50 85.84 60.17 60.30 7.10 83.01 70.16 0.93 34.15 89.68 93.68 19.15 83.85 38.16 67.12 91.34 84.33 67.62 99.37 35.43 20.15 86.01 99.29 60.41 84.02 5.79 93.89 84.65 96.04 57.01 55.51 27.59 60.51 68.13 25.69 92.97 17.37 13.20 7.35 71.63 52.28 10.56 34.57 21.27 72.11 46.66 58.63 94.43 88.53 36.56 1.60 27.76 71.36 70.53 -77.98 54.81 76.33 91.04 64.31 48.30 50.67 11.08 82.01 45.26 78.64 35.30 61.97 39.51 95.90 98.98 44.67 13.99 19.35 11.09 92.58 89.85 31.25 15.19 62.99 47.87 19.43 4.78 49.18 96.36 40.96 51.58 50.46 58.99 24.19 27.65 63.98 49.32 50.43 44.46 70.12 63.39 3.69 71.97 49.14 29.76 32.85 1.58 73.10 75.53 27.83 12.42 3.46 6.09 0.34 79.18 31.65 43.64 87.23 58.69 72.94 57.85 76.70 74.28 47.89 88.51 68.60 12.12 83.52 69.86 22.92 43.69 1.22 61.72 53.96 2.71 15.98 6.73 55.10 49.03 20.50 58.49 19.76 32.33 2.39 44.25 44.38 91.33 86.50 31.61 1.38 71.88 76.13 5.72 91.06 36.90 98.69 34.76 19.77 29.94 -49.60 42.23 54.58 39.93 81.83 28.72 45.41 6.41 72.63 81.78 1.84 51.75 82.87 18.40 26.28 45.35 45.39 79.54 52.02 81.96 17.95 58.59 19.23 62.85 76.44 15.76 13.23 90.53 30.20 42.90 74.66 16.04 74.46 70.19 87.66 93.25 50.29 1.14 81.24 32.39 96.46 22.35 73.33 73.49 2.25 22.05 38.47 65.84 96.88 47.55 29.80 89.73 99.34 9.16 6.02 0.34 72.18 41.39 4.59 71.67 85.10 31.55 60.74 4.55 74.45 55.92 95.73 16.41 79.74 9.10 57.21 39.24 69.00 76.08 8.09 74.01 60.16 71.91 2.51 0.14 45.69 44.27 61.95 18.13 38.24 60.23 42.17 60.22 50.92 64.83 35.17 20.38 27.35 70.60 92.59 51.96 79.15 75.66 1.56 29.08 -42.95 77.35 53.03 12.08 58.51 70.52 71.78 7.81 5.16 82.04 60.58 58.90 26.42 22.29 63.48 67.70 53.37 16.96 88.37 97.30 75.66 28.64 54.11 39.68 42.55 82.20 24.04 81.16 66.90 67.61 77.82 42.83 76.59 79.44 96.01 27.38 14.01 42.86 85.33 38.98 13.21 47.99 58.53 2.45 6.78 64.33 46.12 25.05 88.94 84.11 10.63 85.30 62.38 48.91 98.06 22.99 65.05 77.28 66.65 61.85 23.91 91.56 57.07 34.03 24.77 8.35 64.97 95.78 91.37 91.13 16.85 75.50 74.00 87.78 36.08 83.59 29.57 53.50 92.85 46.98 37.38 92.54 28.21 57.32 7.23 66.98 70.63 45.34 65.72 71.55 15.33 17.31 4.95 83.19 73.48 99.01 77.17 83.39 82.32 5.07 -73.18 30.79 57.58 67.01 99.30 54.11 80.77 8.41 97.88 60.65 48.02 94.27 64.59 75.84 11.70 45.69 20.81 58.79 30.40 81.91 7.24 7.04 5.61 19.17 59.88 83.42 4.73 88.88 29.31 34.89 95.96 97.63 14.16 56.30 62.50 40.30 17.48 87.76 3.89 36.30 67.81 60.34 46.70 92.56 5.38 24.14 80.16 45.50 68.98 85.75 26.68 33.63 71.69 64.40 18.00 35.86 69.67 44.19 84.50 56.20 22.48 94.94 74.10 7.24 70.98 90.01 94.79 3.93 60.75 72.90 27.01 73.02 33.31 56.63 38.04 69.83 49.46 66.28 7.08 97.12 72.83 50.17 53.41 22.25 18.47 14.85 55.88 54.51 28.38 48.26 74.65 31.87 87.10 19.97 19.63 29.96 11.55 16.05 50.92 92.82 -48.07 31.38 20.41 90.72 64.64 57.07 77.32 99.38 34.55 14.74 88.35 66.76 17.20 40.54 68.22 3.52 57.58 11.77 50.80 72.10 68.58 96.69 90.22 58.47 16.56 73.39 90.76 43.98 45.31 53.00 91.73 89.93 4.56 77.36 35.81 44.09 82.45 25.38 55.54 75.90 31.93 57.45 64.95 17.52 0.80 7.38 51.67 51.36 68.85 24.80 78.81 65.47 98.78 87.96 49.80 25.16 15.72 51.97 13.99 82.79 62.83 31.20 19.54 33.86 62.55 51.34 87.96 46.69 32.28 9.87 4.27 69.97 1.35 50.96 65.58 57.87 76.56 51.16 43.06 6.72 66.82 37.19 56.13 42.26 76.79 81.75 72.90 39.50 26.44 99.59 30.06 92.46 45.01 0.65 13.82 20.93 56.20 43.20 5.47 26.64 -99.05 2.72 20.17 42.02 55.57 79.67 60.19 48.83 54.24 18.13 40.96 68.10 18.87 62.44 30.38 16.78 1.96 91.27 83.74 96.03 23.45 99.60 5.10 30.95 87.04 86.43 81.27 12.17 8.50 15.60 98.14 75.00 36.98 93.05 42.75 63.74 5.21 72.70 39.88 76.77 0.45 22.45 72.35 83.39 72.04 60.70 97.26 22.89 58.90 45.16 96.00 68.72 52.40 73.80 73.94 21.77 77.49 60.04 90.94 54.19 96.67 37.13 38.97 84.75 7.03 76.81 30.83 3.01 52.11 65.65 16.50 79.50 97.48 43.55 6.38 18.10 16.57 99.01 35.34 8.08 15.60 84.66 20.82 84.70 83.17 14.46 2.48 54.68 20.02 10.80 97.54 48.47 85.69 76.92 79.08 85.93 47.83 34.62 98.59 72.46 -77.00 71.50 78.19 99.95 98.80 37.24 82.46 60.39 77.69 66.75 59.34 1.45 73.17 96.09 5.81 44.75 95.57 97.81 13.71 95.76 93.74 25.27 9.02 0.32 51.81 48.00 99.23 81.09 10.88 73.58 6.37 23.01 22.12 81.71 40.51 87.34 15.15 87.83 66.21 82.67 92.99 63.94 16.04 58.44 36.92 94.84 8.05 54.12 47.24 42.47 9.98 34.76 12.96 93.65 68.04 16.51 59.62 84.12 93.98 84.09 74.53 54.99 55.19 60.98 28.36 32.26 78.83 96.40 62.78 19.54 57.97 66.96 69.83 67.66 47.24 81.92 65.00 82.97 38.95 44.63 38.22 3.86 14.72 46.63 33.90 38.72 80.56 17.51 11.54 3.11 22.31 77.69 41.92 62.26 14.84 68.49 60.61 45.98 42.29 66.53 -7.64 32.29 20.39 82.91 40.27 13.96 26.20 28.76 4.22 83.03 63.11 17.15 39.18 1.97 80.83 65.27 6.41 60.95 7.10 34.90 93.20 99.45 56.28 0.65 82.08 45.73 67.56 86.57 46.51 61.39 58.14 57.20 52.45 74.88 51.01 20.81 82.52 94.73 85.70 86.73 4.77 33.79 59.01 83.10 25.91 23.73 35.49 29.11 31.93 84.40 59.73 21.58 6.51 38.27 58.81 95.58 8.77 40.18 7.12 55.48 20.33 66.29 28.71 74.58 42.60 44.92 94.71 99.45 32.07 54.74 27.01 11.22 72.41 74.22 38.17 79.02 49.85 63.92 42.87 32.03 83.95 53.33 50.16 21.51 76.22 15.33 35.79 95.72 96.43 46.57 93.27 64.53 73.23 59.11 61.70 45.50 73.70 43.36 49.64 24.62 -24.48 22.19 98.58 54.52 88.37 59.01 46.97 76.60 4.39 61.99 11.13 84.35 8.25 5.91 1.59 42.90 78.50 48.15 19.10 44.21 3.99 49.69 88.93 80.39 67.45 33.64 96.34 73.30 33.62 52.47 53.46 78.98 66.48 61.30 68.77 31.14 42.94 75.63 61.47 99.18 82.12 47.33 31.31 74.41 56.53 28.07 16.52 48.79 58.66 31.70 51.57 73.34 13.58 20.59 76.41 84.70 36.16 43.62 33.39 68.56 61.74 98.26 92.39 35.51 78.65 78.64 40.94 75.33 82.71 36.10 71.27 83.90 96.60 40.42 77.00 56.77 75.48 20.08 18.33 11.54 30.24 10.44 68.51 83.72 97.93 97.71 84.61 11.02 51.01 69.70 44.81 22.07 80.69 83.03 72.88 28.69 78.98 39.04 72.24 59.05 -28.90 95.22 18.07 1.39 37.45 65.87 83.68 96.82 98.98 99.77 51.38 29.59 64.04 92.45 20.99 12.78 18.63 63.51 40.64 31.29 2.37 36.63 65.05 47.94 59.53 38.86 26.99 9.33 46.85 45.51 30.84 28.75 87.59 10.59 50.78 4.29 17.07 1.98 99.93 21.85 84.05 2.76 28.71 81.61 82.46 58.61 0.18 10.45 20.52 43.72 51.79 40.52 80.76 89.68 23.16 53.35 63.23 37.11 29.85 68.71 82.45 5.68 52.05 86.92 29.08 55.12 96.91 15.85 63.50 98.53 84.15 12.00 70.61 44.41 74.42 46.02 30.14 50.56 30.61 72.81 69.59 9.57 88.95 83.76 79.59 16.35 80.13 71.61 73.84 8.83 21.43 67.82 79.80 51.26 42.50 17.99 22.27 6.44 71.08 33.82 -10.61 61.53 9.04 8.55 99.16 91.18 56.25 31.82 49.36 28.74 39.21 97.39 43.42 31.38 7.64 60.80 20.38 31.70 71.29 91.59 72.50 60.25 3.74 8.08 95.71 22.07 36.17 30.99 0.43 73.57 35.45 59.73 68.33 73.10 37.75 62.08 48.78 78.96 41.05 94.77 28.64 78.28 22.80 10.41 89.48 17.11 7.59 90.87 25.23 46.04 27.22 20.51 71.90 28.39 10.78 7.65 87.44 61.70 13.25 47.89 34.91 24.55 55.55 69.03 23.15 67.78 67.03 52.88 80.29 88.34 65.77 26.91 4.92 10.21 41.97 87.08 56.06 34.58 69.12 46.52 48.79 70.91 38.93 25.86 47.71 38.88 11.29 82.97 24.27 12.19 54.28 60.98 40.40 60.34 5.37 35.17 15.92 27.90 94.68 30.71 -8.98 61.91 19.36 33.15 20.42 47.33 19.84 80.72 56.36 62.01 61.23 56.32 55.69 70.82 40.32 14.46 68.85 72.46 35.01 27.95 84.44 39.80 23.71 11.13 96.49 32.92 49.92 68.73 73.53 40.67 7.89 56.34 55.07 6.25 7.13 74.90 19.43 31.94 6.84 80.75 21.40 98.84 68.63 0.60 16.93 13.47 46.87 90.56 89.43 36.32 97.99 17.25 20.70 67.77 56.28 67.22 17.42 0.67 25.18 50.05 94.95 80.03 90.25 55.40 82.71 96.42 0.43 15.72 16.18 65.66 6.22 7.90 47.48 39.17 74.81 0.40 36.17 31.46 33.27 51.89 29.59 93.54 42.52 37.55 88.07 83.55 35.22 60.41 96.62 37.62 87.92 59.89 82.61 27.92 15.76 94.56 36.04 72.99 70.70 29.51 -37.82 16.33 18.11 57.58 36.47 49.91 72.67 11.80 4.76 35.18 41.33 60.81 20.86 60.05 37.25 44.61 65.12 60.38 42.45 17.51 40.82 37.23 20.51 33.37 75.20 3.42 2.01 98.08 51.17 91.97 78.54 45.86 71.40 77.55 23.65 19.21 63.95 21.01 33.20 78.41 0.21 9.43 63.59 80.19 11.13 74.78 17.56 33.46 68.46 65.92 52.15 81.41 39.03 83.99 3.62 45.76 62.18 34.94 30.39 59.95 90.87 29.70 51.65 2.39 97.93 63.60 52.57 68.98 62.62 65.26 37.79 98.54 62.75 25.00 1.49 56.94 79.09 97.03 4.35 20.74 42.25 44.68 30.23 12.07 9.72 63.63 75.31 21.38 85.54 79.19 11.51 62.01 40.80 46.65 38.98 39.61 16.66 87.31 47.10 33.40 -72.67 59.07 52.61 72.64 25.03 76.77 6.46 77.76 58.53 97.85 54.19 80.63 43.80 44.45 8.86 90.34 97.74 89.10 63.52 82.63 21.76 23.44 26.22 25.58 72.05 38.45 75.75 87.89 50.28 17.58 14.08 52.00 63.96 2.10 86.22 25.19 85.20 31.23 82.21 39.37 38.97 19.81 37.67 69.07 16.95 5.12 99.73 53.62 45.75 84.38 93.69 9.93 81.24 48.83 94.63 28.74 42.59 11.35 17.81 34.14 15.83 97.84 13.29 35.12 70.14 19.44 81.08 74.60 40.25 1.23 75.41 60.98 88.28 37.42 13.54 98.75 73.64 79.37 50.39 77.21 53.61 76.85 41.40 48.41 55.01 54.64 29.15 36.66 3.25 88.71 63.86 44.87 26.26 68.48 17.77 23.76 15.80 46.41 64.78 68.31 -23.83 96.74 78.66 63.10 66.31 21.49 7.42 93.94 32.36 67.03 67.89 47.01 22.28 41.25 41.19 61.02 69.35 79.70 92.44 75.41 58.16 12.60 12.00 90.09 0.87 33.55 43.21 8.56 42.15 55.09 9.86 92.61 54.49 97.91 52.41 90.87 36.73 71.60 70.57 12.43 24.82 94.48 56.84 79.76 80.41 74.10 1.29 94.60 44.29 42.54 35.34 92.28 73.93 75.70 25.10 18.14 85.20 18.02 43.51 83.30 61.08 17.44 74.49 0.86 91.38 70.16 55.39 3.54 52.03 21.53 0.95 23.77 88.96 64.47 99.62 37.24 80.71 49.44 82.39 1.47 27.98 43.33 98.89 59.25 91.96 55.71 48.77 32.53 50.47 86.81 23.74 64.60 37.12 22.30 78.19 24.42 93.19 49.09 81.12 24.44 -9.64 92.82 61.03 83.30 28.43 82.09 0.18 64.96 49.60 48.90 71.23 25.31 42.54 81.01 26.13 63.49 69.15 51.49 38.49 54.14 3.24 32.85 82.48 46.93 34.79 56.12 51.94 40.47 43.39 78.56 58.18 71.35 86.97 44.93 69.52 47.02 24.44 98.79 82.74 8.40 28.86 39.49 64.18 71.29 10.02 89.21 43.02 46.27 60.09 54.28 80.00 32.74 97.41 81.40 81.05 76.34 72.71 92.57 74.94 3.16 31.15 40.46 33.27 79.67 85.97 34.31 64.76 33.40 5.68 79.58 68.12 46.21 12.26 32.83 38.84 23.79 47.94 10.60 70.98 10.32 59.97 49.90 74.19 2.03 36.77 17.32 0.93 75.23 34.55 65.78 1.24 45.74 35.47 85.00 61.70 50.37 86.64 52.33 81.88 40.31 -23.56 82.39 59.95 90.34 19.21 78.06 66.11 93.24 48.71 81.47 95.17 98.99 22.67 0.28 87.45 97.35 25.68 65.90 50.54 36.16 96.52 67.86 76.23 60.11 34.10 24.68 82.13 50.10 12.02 38.58 59.72 28.83 19.14 72.43 50.85 34.41 17.42 57.22 18.40 49.07 89.52 51.64 5.10 13.91 2.78 45.75 12.50 45.98 79.44 24.55 35.63 61.98 99.18 34.97 29.86 69.73 41.44 20.93 7.48 83.70 98.64 13.81 19.34 41.08 88.57 33.42 49.25 30.32 61.17 93.35 25.35 89.23 11.25 38.30 62.47 21.43 36.63 47.99 18.20 75.32 73.24 21.88 26.80 96.91 17.76 93.68 19.84 20.35 16.98 26.25 2.32 12.62 97.65 14.71 94.06 21.88 67.44 98.75 12.99 33.83 -41.06 44.41 64.34 51.69 52.62 47.09 2.69 44.55 83.94 67.11 20.42 15.49 81.94 99.15 91.09 77.26 85.82 18.72 5.27 23.04 90.34 15.35 17.73 67.22 63.56 71.16 30.69 39.42 58.10 71.98 87.61 15.12 66.19 23.74 4.42 15.25 2.06 88.44 70.50 42.37 51.22 82.28 73.73 19.98 55.84 31.20 66.10 37.20 84.40 67.44 2.46 25.57 86.90 40.42 89.10 1.34 11.32 15.78 75.97 43.60 70.33 81.91 94.70 34.10 68.58 15.87 41.22 9.81 16.00 92.10 81.98 38.35 40.77 35.09 22.30 63.99 6.12 12.22 73.76 15.62 16.94 5.22 89.70 64.60 69.35 34.21 33.51 75.13 24.20 47.16 79.46 1.50 97.70 74.26 73.48 99.11 83.03 86.79 90.66 68.66 -25.84 2.56 15.88 40.39 71.92 78.94 31.09 92.70 54.33 36.15 25.24 52.16 12.54 35.75 75.87 65.55 43.56 94.23 44.50 37.84 42.16 47.13 86.19 16.29 16.19 51.47 58.34 4.55 25.43 74.68 46.25 48.42 44.37 43.48 46.98 15.38 26.67 24.61 98.23 52.06 38.22 89.87 67.30 36.66 15.09 21.43 80.06 72.09 93.77 78.81 88.98 9.09 16.97 15.66 40.22 73.42 81.30 97.87 71.69 69.37 99.65 77.79 6.51 54.93 51.12 13.22 62.40 53.25 8.65 33.51 37.68 53.95 66.39 35.23 55.15 11.44 83.70 30.79 17.92 49.34 24.97 24.06 82.82 63.94 86.49 69.54 60.20 83.79 10.87 71.21 24.55 95.24 96.83 12.64 39.98 7.55 72.07 31.66 16.24 72.82 -44.57 23.99 70.61 81.76 75.47 45.27 87.60 67.13 62.61 62.12 4.25 71.50 9.46 88.64 85.76 67.60 66.69 79.52 31.95 84.03 36.42 7.94 4.95 88.09 4.51 19.63 81.25 2.93 47.59 40.57 80.33 66.36 46.44 31.95 31.89 61.34 44.40 30.65 54.66 34.22 47.87 19.58 34.85 75.87 52.21 55.91 64.12 45.35 12.47 60.12 98.11 47.46 87.36 42.00 49.06 52.26 54.90 15.66 46.19 84.75 32.13 96.92 46.07 39.63 59.03 25.31 28.86 9.49 53.44 78.07 21.54 13.52 63.79 79.30 32.54 0.54 44.20 64.16 5.63 21.77 93.84 92.23 27.45 2.68 88.98 40.86 71.16 63.03 64.82 66.39 98.75 81.29 32.26 63.96 20.92 37.03 18.17 52.95 97.97 14.05 -50.70 94.43 78.12 68.70 20.90 78.13 10.59 51.78 88.38 98.37 32.63 16.59 91.00 43.99 14.47 5.59 8.91 27.40 83.27 32.21 72.81 23.51 32.81 98.29 20.21 67.96 31.18 39.64 99.52 10.80 57.65 15.95 38.40 6.33 57.55 15.32 78.20 9.96 94.45 86.71 3.47 44.30 82.59 18.02 68.54 25.41 81.05 82.50 81.78 26.62 63.00 6.83 7.86 44.72 70.22 52.77 36.57 51.04 21.23 11.83 27.55 85.96 26.31 76.40 78.97 31.71 60.09 10.37 74.33 76.90 55.08 74.28 68.77 55.12 2.36 63.16 33.94 13.43 81.72 93.85 77.09 24.54 22.40 35.72 67.14 5.34 63.95 45.44 94.12 97.69 18.41 30.38 33.07 60.38 10.71 46.03 83.20 29.69 30.46 41.45 -94.07 44.47 66.61 68.90 16.91 69.47 59.58 61.17 68.60 9.06 31.96 33.98 18.15 72.17 94.32 58.75 10.57 8.12 27.11 44.71 88.88 14.29 74.85 90.07 33.77 67.18 82.46 83.25 29.13 30.31 61.44 75.95 58.29 26.13 54.32 39.15 44.13 68.03 28.73 65.32 37.11 82.25 59.22 1.43 27.36 75.55 30.31 88.54 22.81 32.60 76.22 15.09 99.22 31.24 40.07 34.90 5.65 93.63 4.44 64.53 68.92 16.89 1.89 39.37 97.71 56.99 69.84 44.51 67.42 39.10 54.09 7.48 97.46 23.19 3.52 64.76 18.94 93.47 55.24 94.21 65.15 86.15 66.45 24.33 50.13 60.55 17.70 2.53 47.36 83.45 97.43 0.24 1.22 40.86 8.66 94.09 29.99 95.20 92.51 24.06 -72.71 24.09 95.64 51.92 14.33 48.24 48.83 40.38 94.32 83.79 44.04 93.75 42.68 52.65 53.79 29.33 61.08 39.05 45.07 92.16 85.84 40.30 74.00 21.78 80.16 60.42 52.50 15.21 74.79 90.05 7.34 72.16 3.67 36.73 87.43 62.53 19.78 86.12 42.83 57.23 55.06 40.96 42.51 35.69 20.16 11.36 44.43 73.59 50.99 70.21 14.85 55.67 63.56 37.16 79.41 71.70 95.92 30.68 93.90 12.19 89.63 85.84 93.15 72.48 57.49 31.45 52.58 14.38 26.83 59.45 32.20 77.69 0.83 18.92 48.01 43.30 52.11 70.13 32.04 50.47 9.56 89.96 8.59 43.27 99.87 29.92 69.94 95.85 56.99 57.69 43.66 87.07 24.67 11.60 26.33 33.10 3.60 18.02 16.73 55.13 -88.46 25.28 97.63 12.94 91.27 90.11 56.63 38.19 7.57 1.36 73.12 67.05 52.63 29.99 62.76 88.78 29.70 74.32 73.62 69.62 38.47 1.92 89.49 83.31 39.77 41.14 91.00 98.59 90.70 17.82 91.94 50.73 32.98 43.30 66.86 44.45 65.14 35.78 96.61 22.10 32.74 98.01 30.53 70.85 30.83 92.55 46.63 8.14 39.62 17.91 88.49 17.73 71.04 60.33 87.33 3.09 70.90 40.89 26.46 43.78 19.90 4.07 49.36 9.18 10.70 41.40 95.32 90.85 67.27 47.50 30.65 46.29 64.34 6.32 60.20 60.75 91.30 90.04 55.17 49.61 25.77 0.46 42.74 67.88 86.85 47.82 45.54 48.76 92.05 70.80 95.91 28.15 56.73 52.40 75.51 70.88 87.98 68.43 56.34 48.61 -60.93 76.49 30.88 24.64 62.83 43.99 32.75 19.62 39.78 43.49 40.18 21.69 31.59 28.84 65.92 93.72 55.43 83.01 28.03 25.95 30.11 69.71 34.12 73.16 11.09 64.60 58.74 54.49 9.32 80.54 42.30 25.45 55.89 3.28 84.57 95.75 62.62 30.63 77.28 43.16 54.35 15.56 91.77 0.43 42.46 68.24 90.01 73.72 28.56 92.47 94.07 49.74 21.35 33.14 85.09 18.46 76.32 54.90 53.47 11.68 53.45 97.11 89.53 17.69 54.07 79.81 84.09 71.37 36.83 57.39 75.61 0.36 38.84 92.46 52.71 9.27 54.63 69.03 53.56 82.13 91.31 67.24 90.97 62.79 72.73 41.36 55.54 25.61 72.82 21.20 45.21 70.46 95.58 73.09 89.68 14.22 15.04 64.71 39.91 67.89 -93.44 17.56 9.79 26.89 53.72 93.00 7.03 10.24 0.78 68.18 35.02 14.84 78.33 42.92 17.96 67.93 80.13 37.44 97.43 4.03 31.80 73.55 99.30 48.11 94.44 76.65 23.71 86.72 6.57 44.83 91.87 61.75 53.87 36.83 52.73 87.17 97.45 44.51 73.07 57.83 19.04 31.27 99.35 59.69 63.01 92.12 52.65 20.54 77.25 50.04 22.16 22.25 85.04 5.12 60.49 28.14 48.40 53.53 20.02 98.74 12.91 92.09 37.34 11.73 85.70 17.25 39.52 74.98 62.94 64.07 42.97 91.51 27.28 67.74 51.86 29.05 36.10 34.02 79.35 97.76 3.72 94.12 24.79 74.32 54.19 70.37 5.52 0.54 93.57 25.01 21.66 84.01 55.31 41.48 59.77 8.77 82.58 49.95 56.84 32.33 -83.58 93.35 80.20 25.13 18.98 55.90 58.55 53.55 85.06 72.15 9.18 26.64 72.26 99.00 70.38 58.87 77.33 15.06 33.80 69.30 79.10 74.57 57.53 18.72 74.25 6.78 93.62 9.58 70.13 54.80 94.64 23.28 86.62 81.44 69.20 38.39 20.53 82.81 75.39 84.20 81.36 47.04 22.92 42.38 74.53 58.36 33.72 6.39 21.25 97.27 78.83 15.76 41.86 15.98 25.42 29.24 6.74 13.81 97.72 83.55 22.38 63.43 33.36 50.31 41.19 66.81 54.36 13.19 77.39 18.12 79.31 98.10 27.34 13.95 40.10 24.84 22.33 5.62 75.71 23.18 34.93 19.04 58.98 28.47 55.92 1.73 84.35 79.03 81.05 8.59 85.27 16.16 58.28 58.06 4.47 66.97 63.06 18.28 29.32 67.90 -87.83 9.47 66.98 25.16 86.84 21.61 97.67 19.58 52.16 92.12 74.70 20.02 21.24 75.33 11.83 2.44 7.87 42.48 25.87 71.25 89.36 89.64 58.82 78.33 47.13 69.82 80.07 67.70 8.93 66.71 6.63 21.35 56.32 99.84 59.50 22.68 35.79 90.91 46.99 60.99 66.18 11.57 86.36 92.67 18.52 36.57 23.79 92.65 42.42 90.24 84.48 5.40 96.18 71.44 82.32 69.20 10.79 69.78 20.30 85.06 35.19 22.48 17.02 78.08 84.64 64.67 58.22 91.07 48.43 90.05 17.18 12.19 22.79 6.40 42.76 26.15 82.32 99.22 80.85 44.70 6.57 52.45 95.91 43.41 45.22 0.68 60.29 60.32 33.68 28.37 97.20 88.63 62.95 68.50 64.86 38.38 10.52 29.71 65.06 11.01 -44.54 51.28 42.48 63.00 28.29 64.02 42.75 48.01 26.88 84.35 51.31 89.00 86.91 11.67 45.34 61.24 99.72 46.38 34.56 16.10 17.27 1.88 95.36 21.76 45.21 88.60 39.60 43.54 26.85 95.63 26.86 58.08 90.26 6.69 8.15 83.67 44.49 13.33 32.94 1.68 92.63 62.93 85.54 22.07 12.72 9.43 31.67 82.83 47.22 30.35 50.07 87.73 74.35 14.77 85.28 63.06 48.26 8.99 76.71 59.46 44.52 4.89 40.71 19.27 81.16 25.78 15.26 9.73 28.91 13.64 91.27 80.14 32.21 33.46 65.37 55.33 17.50 88.19 36.98 43.24 22.88 86.62 87.25 72.01 42.31 15.53 64.45 11.25 37.90 96.21 83.20 53.70 38.45 1.20 56.26 16.32 96.25 23.47 64.23 79.01 -82.04 94.20 63.58 68.43 75.26 20.02 71.42 13.93 61.34 4.28 30.74 56.42 26.79 61.99 86.16 57.26 38.76 54.20 82.43 66.79 72.95 46.71 51.78 51.41 99.37 98.53 47.87 33.12 87.95 46.84 1.89 6.46 84.97 21.78 87.16 79.37 55.96 21.13 53.47 4.51 0.41 74.31 43.11 27.77 13.06 1.29 38.83 90.58 69.41 55.52 98.76 17.33 11.38 42.97 60.95 26.45 24.26 74.25 86.77 41.14 67.66 39.88 72.91 29.57 48.89 62.48 65.39 65.47 64.58 58.05 1.72 60.09 20.88 17.32 79.22 28.87 93.81 26.99 95.52 45.53 77.38 83.62 98.93 65.53 29.34 24.61 8.56 5.69 73.92 94.82 36.11 55.86 97.14 52.69 2.10 19.58 75.01 14.96 89.46 21.23 -56.69 40.53 1.93 8.68 71.76 55.18 38.51 37.69 24.67 94.95 76.83 12.73 36.91 9.69 76.79 85.28 87.08 25.26 28.01 86.24 35.32 27.11 12.77 57.45 54.95 11.89 80.88 50.81 0.57 40.31 85.06 4.52 93.94 97.63 58.32 7.90 80.14 19.40 6.46 46.50 38.96 85.47 68.78 55.96 75.40 84.14 33.53 95.17 73.99 1.87 22.28 39.73 12.42 63.81 2.84 32.75 48.94 21.09 83.63 87.78 41.86 76.74 56.08 20.81 82.32 66.97 48.12 86.02 15.40 31.67 23.43 24.94 59.23 11.65 98.01 54.73 38.29 97.68 23.04 50.60 48.21 73.32 83.12 14.54 74.23 83.79 95.01 67.55 35.91 82.19 58.27 30.04 73.55 28.30 67.01 63.00 7.89 93.58 65.52 23.89 -85.70 59.62 18.65 61.82 23.26 62.45 40.93 78.05 20.60 12.38 57.10 24.00 51.78 96.59 76.52 97.47 94.02 59.42 25.38 21.74 61.86 80.33 80.93 67.87 66.32 18.23 52.97 49.95 96.75 42.51 3.01 42.03 45.65 92.54 69.31 99.97 60.03 22.62 61.02 44.46 26.78 81.49 87.06 6.33 32.44 44.70 11.49 26.87 66.86 29.76 52.57 74.13 42.16 32.05 65.10 66.69 86.60 90.98 83.41 50.83 7.01 22.39 22.74 76.12 80.24 79.14 26.99 69.07 93.89 5.76 42.92 75.48 69.39 84.26 67.28 31.37 33.61 49.41 25.70 31.77 68.89 34.57 60.13 54.90 59.21 53.39 42.20 5.74 94.06 17.32 4.01 73.09 52.02 39.88 92.52 37.13 9.00 43.49 46.55 63.47 -79.58 30.96 89.57 52.54 85.79 9.78 53.62 27.58 85.10 37.03 59.96 88.85 81.85 58.47 35.53 85.35 83.25 13.90 87.86 57.08 25.39 24.65 19.28 9.70 49.85 13.97 32.07 31.41 32.08 9.44 60.52 66.91 15.25 73.94 93.12 64.36 14.62 37.99 14.21 52.05 94.15 70.20 9.52 80.00 67.60 87.37 14.57 61.76 70.95 33.26 92.49 13.54 74.29 65.91 72.83 57.81 87.03 19.80 47.92 40.44 86.68 96.11 18.71 14.59 59.39 65.26 86.29 51.62 28.96 54.46 35.13 16.55 53.86 11.29 17.39 68.19 28.01 3.43 17.48 78.67 82.34 46.08 56.35 53.32 21.42 36.25 97.43 73.13 99.64 31.54 2.51 47.97 39.69 71.25 78.82 16.78 81.09 13.95 8.93 81.53 -62.30 16.18 22.87 58.79 10.85 84.85 38.15 2.57 55.06 51.33 78.29 6.68 71.84 41.46 3.76 6.39 4.38 49.21 28.64 68.45 50.86 25.37 45.78 7.62 60.56 74.85 77.33 19.32 79.78 46.50 24.47 83.58 94.67 50.00 30.74 25.65 96.68 65.54 2.55 79.51 29.55 71.73 6.26 85.47 50.62 92.15 51.04 27.86 45.81 21.21 28.85 54.94 84.42 0.04 33.68 97.04 74.10 23.51 29.02 30.79 36.67 43.39 35.80 49.12 93.13 41.69 76.42 21.87 43.13 35.59 57.82 34.82 54.83 43.23 60.78 35.98 51.03 28.57 46.44 24.18 25.81 22.24 50.60 35.39 52.90 0.48 96.90 71.57 42.25 36.28 73.24 69.01 62.98 61.75 78.71 9.66 68.82 65.70 72.61 24.51 -31.51 66.39 37.36 25.35 88.72 33.10 44.69 51.82 69.40 7.15 36.49 61.44 82.74 19.84 52.97 68.56 11.05 81.05 21.22 60.68 15.98 9.72 28.23 35.03 76.66 95.80 79.98 75.75 58.07 81.78 66.52 0.59 71.04 66.56 99.98 47.55 44.53 59.94 41.41 33.92 6.56 46.92 79.26 43.85 62.11 1.42 56.46 76.23 38.03 73.67 48.61 46.76 68.33 86.34 9.75 13.31 9.79 82.70 77.43 7.36 57.76 42.93 80.59 63.82 87.23 11.15 4.21 77.44 76.27 54.71 21.12 99.45 96.33 54.13 82.51 84.83 5.72 98.51 30.67 12.59 72.26 81.04 50.33 32.13 40.19 73.09 12.17 32.32 79.44 19.54 46.37 75.51 39.33 50.01 83.12 49.85 91.42 22.69 82.16 53.26 -43.74 74.43 60.12 59.86 26.26 10.76 30.40 27.77 93.06 60.19 20.38 1.09 67.62 73.79 93.73 77.68 2.95 85.75 6.50 92.72 3.88 95.19 85.53 83.47 60.84 50.90 77.01 1.47 36.46 50.01 97.57 31.88 41.63 84.96 94.77 54.96 62.56 80.92 92.34 58.72 59.13 27.70 97.49 81.02 83.29 26.86 11.56 52.10 63.92 57.57 55.05 7.93 86.97 8.97 51.21 38.59 89.30 53.87 68.61 43.52 8.79 82.36 74.74 42.16 84.06 93.46 75.73 58.65 92.07 16.14 18.36 97.51 80.53 53.43 92.80 22.75 74.07 74.74 82.36 64.73 1.38 87.26 7.96 32.38 42.31 74.84 20.09 91.52 47.34 64.70 7.84 38.20 60.15 1.53 94.67 76.49 79.74 14.36 49.17 53.58 -18.84 9.49 40.64 33.60 87.82 71.07 41.14 72.42 90.53 56.25 87.16 47.13 77.32 62.60 41.08 80.12 17.42 85.20 51.46 82.27 84.54 37.72 92.49 23.24 18.45 1.16 55.51 80.91 41.79 22.99 63.08 53.12 58.26 70.66 84.92 57.67 96.79 83.78 26.40 53.91 82.14 78.13 55.53 40.12 32.23 59.00 35.33 8.24 94.27 35.79 95.05 13.40 43.15 57.69 54.28 3.39 68.60 65.74 54.77 2.05 53.10 50.83 97.92 11.33 98.27 6.00 87.07 57.47 7.53 39.44 10.44 41.31 74.33 19.76 32.36 24.73 25.68 58.09 65.63 15.92 84.80 98.61 30.42 57.24 51.95 73.56 17.90 54.82 86.45 13.51 87.16 27.84 36.05 37.14 40.05 38.57 78.36 90.82 94.60 78.40 -38.71 62.75 65.51 79.52 75.46 30.67 11.47 66.09 84.06 45.48 29.36 40.55 50.79 71.61 97.12 3.43 81.79 6.45 46.84 34.89 26.10 77.62 24.80 37.78 75.89 14.21 54.10 77.05 43.97 36.36 45.28 53.21 86.00 46.74 13.25 0.70 33.58 13.88 83.77 47.18 49.14 25.44 78.30 44.09 81.59 27.98 7.85 19.54 62.79 77.84 4.99 72.97 15.84 7.33 9.53 41.72 73.02 86.26 97.02 48.37 59.74 18.38 13.08 11.03 47.71 21.80 38.51 84.83 67.10 98.23 13.16 14.99 52.50 24.00 15.65 55.24 43.04 94.27 54.66 7.84 17.53 37.78 44.01 14.50 55.80 37.57 84.93 49.78 17.80 88.05 21.47 83.40 3.98 76.14 85.24 75.18 19.31 59.52 58.32 40.88 -49.06 97.73 28.05 45.14 33.67 5.42 7.18 3.86 83.58 65.74 19.39 66.87 33.63 31.78 87.75 62.34 0.92 90.09 92.66 24.00 19.03 80.37 52.67 89.84 79.28 1.86 28.52 54.31 45.00 37.22 83.06 4.16 75.43 5.95 63.93 85.39 57.20 55.42 13.41 45.36 93.83 45.95 82.09 17.41 61.49 44.10 2.96 14.62 95.09 45.70 34.66 17.43 20.88 17.03 67.41 37.69 58.33 84.10 98.42 29.96 56.16 30.41 31.41 95.34 43.65 9.35 10.62 54.90 74.37 75.45 30.04 38.82 0.17 73.15 34.76 80.31 77.26 39.33 2.50 31.09 98.69 23.60 28.76 6.20 21.06 71.07 12.30 62.15 90.22 73.50 17.94 61.32 57.93 26.86 75.54 86.52 94.26 9.58 19.03 75.27 -82.56 97.00 61.25 89.55 46.44 25.86 71.55 19.82 73.95 35.67 38.67 13.29 82.25 48.77 68.09 21.66 99.19 38.67 41.21 76.55 22.91 61.56 73.21 13.84 23.00 99.47 98.97 69.51 62.81 58.76 59.46 76.24 71.53 96.41 7.11 84.54 41.75 67.10 6.36 97.21 0.70 44.61 26.88 51.96 0.31 50.61 71.26 61.35 9.86 6.30 53.45 33.22 67.10 17.25 94.86 82.73 4.84 43.35 65.35 92.57 93.85 10.79 14.62 88.99 98.95 2.24 49.52 76.26 97.56 34.33 38.11 43.55 73.60 51.71 8.20 85.56 49.84 46.77 15.09 82.09 55.28 89.15 15.51 93.56 20.68 78.50 78.24 97.59 66.64 66.43 72.47 25.10 72.14 25.63 5.78 18.66 48.01 33.77 97.64 1.82 -72.53 24.26 78.90 75.01 61.84 6.12 51.35 41.14 92.14 88.90 75.50 97.52 20.47 45.90 49.17 80.17 89.09 89.63 90.95 55.26 98.59 73.85 83.06 89.30 74.76 23.04 37.21 53.19 52.80 2.97 26.42 43.51 91.95 25.28 38.64 21.23 28.56 12.61 96.54 17.82 37.33 42.80 91.30 33.12 52.94 71.20 73.90 51.99 17.93 82.71 8.93 72.26 87.28 45.42 24.39 51.00 38.59 21.87 39.57 12.76 47.80 78.23 64.85 64.47 37.87 33.38 71.86 5.52 92.26 58.60 30.99 87.44 89.24 50.66 84.54 18.90 4.21 79.14 22.57 41.13 44.50 84.29 52.52 97.96 16.76 47.11 7.53 42.25 33.85 62.25 37.97 6.37 69.62 54.73 62.00 78.46 24.25 19.38 1.21 97.20 -85.43 54.58 24.23 57.16 78.17 21.21 25.66 2.27 60.24 44.25 56.31 57.24 18.16 91.47 59.13 66.69 27.67 62.06 16.81 43.42 99.69 85.47 64.13 31.35 20.51 81.87 22.86 39.25 98.32 0.86 34.68 88.18 57.08 69.72 2.67 13.17 22.83 31.71 90.80 28.57 36.85 43.03 8.50 13.59 63.35 0.78 22.75 76.79 91.93 94.82 12.28 38.04 72.92 52.09 46.27 52.86 17.82 91.36 78.84 33.51 96.30 78.55 89.30 91.86 73.36 12.45 5.95 44.35 31.77 38.18 18.65 58.96 79.70 94.73 37.27 74.01 5.64 51.86 70.29 32.93 93.09 61.85 46.89 52.48 25.64 31.11 42.83 21.67 93.37 69.94 51.90 66.55 92.32 26.43 28.25 74.13 83.07 17.40 63.42 88.74 -80.56 2.21 22.54 96.25 46.43 72.89 94.74 25.45 1.54 59.09 88.78 57.34 20.78 13.65 62.60 21.84 43.13 71.45 26.24 96.18 50.11 70.43 18.03 35.34 1.35 11.63 98.63 47.13 50.92 22.58 12.46 23.22 13.56 92.10 98.40 12.59 16.14 49.03 62.45 85.02 97.49 90.95 52.98 92.86 18.06 11.43 30.13 43.11 87.72 12.38 66.17 39.37 8.05 0.59 54.40 15.31 34.18 38.06 9.48 62.24 95.26 60.10 36.73 11.81 4.33 4.67 87.85 95.17 83.59 97.95 96.75 97.52 20.65 95.15 5.41 16.49 47.04 65.68 45.29 7.15 8.38 33.18 10.43 56.10 72.32 97.13 84.30 42.63 89.10 2.21 51.87 93.89 93.11 79.46 12.14 69.62 61.30 49.98 36.04 14.39 -16.34 24.31 42.84 14.68 23.20 55.63 18.61 54.18 99.28 99.84 87.73 9.93 92.29 63.79 66.92 97.46 45.17 71.68 64.68 95.68 5.63 76.25 72.26 28.11 13.54 13.09 6.55 78.05 84.65 30.03 29.27 80.90 14.72 9.18 91.90 18.44 56.22 63.70 53.55 78.89 26.29 79.11 73.28 91.37 42.57 62.29 5.85 39.13 8.22 79.43 44.39 86.38 30.64 77.56 80.68 67.41 26.44 20.67 63.70 3.01 45.53 14.04 86.35 50.53 92.28 89.62 29.29 45.12 38.43 99.15 88.76 67.44 72.53 50.67 63.63 80.23 55.10 95.29 98.68 60.39 59.98 44.14 89.82 61.61 76.37 13.55 48.53 46.72 72.28 12.10 37.17 3.56 13.73 95.01 34.84 50.77 72.67 98.11 24.33 14.96 -61.14 77.82 88.83 29.46 10.21 66.25 20.15 22.77 6.88 77.28 57.97 6.82 26.63 58.08 86.48 52.86 26.87 3.78 7.83 74.82 70.66 8.03 57.87 40.98 65.10 58.77 67.74 42.47 18.68 92.53 31.47 19.56 95.21 58.87 38.08 4.58 70.08 7.71 55.71 81.47 38.38 29.62 6.29 88.34 47.27 70.82 32.28 50.22 68.68 34.68 98.27 57.58 0.57 54.48 37.13 93.31 48.24 44.01 95.90 16.12 31.53 82.78 99.40 76.41 47.69 3.78 49.16 86.99 77.58 72.80 91.28 72.71 18.70 3.33 34.06 91.88 87.60 69.29 26.70 44.62 35.15 31.55 16.40 59.95 6.95 15.17 84.88 61.08 40.45 31.12 82.93 40.52 2.81 1.08 98.85 21.77 35.85 68.86 56.93 93.58 -91.92 19.16 98.29 87.90 89.37 27.75 71.52 18.25 43.10 81.81 77.32 21.91 72.44 7.41 7.51 75.92 24.15 42.65 69.18 54.36 9.72 47.38 91.12 22.88 93.37 86.87 89.41 38.22 0.06 32.62 80.85 20.72 80.39 32.33 49.08 52.78 89.00 53.50 74.50 96.26 67.60 88.38 70.68 31.68 67.22 67.56 32.54 32.23 73.22 39.68 0.17 36.54 32.37 26.34 64.43 79.25 97.20 91.73 3.35 39.47 42.78 46.03 41.62 53.77 2.79 90.05 17.26 17.69 92.45 39.55 10.26 30.85 99.64 25.26 55.89 64.49 19.41 72.07 50.38 7.71 93.84 44.07 3.67 80.62 24.15 84.05 31.14 30.23 60.21 16.26 19.76 14.64 98.47 84.63 22.47 12.35 52.05 9.38 29.98 96.84 -48.72 17.45 31.52 47.43 97.66 58.79 58.83 16.00 73.66 70.14 74.37 53.52 95.23 10.37 34.77 19.01 67.67 33.24 38.38 18.23 46.93 59.20 39.23 17.42 29.38 2.81 23.08 81.93 66.28 7.34 80.65 59.13 23.55 51.06 72.16 10.92 31.45 14.87 97.81 34.92 49.86 4.42 96.62 78.76 96.31 57.33 67.07 33.62 68.89 13.89 59.13 67.22 13.53 9.97 82.15 45.01 77.65 41.56 25.45 1.75 17.56 7.88 31.21 48.19 55.65 53.32 25.23 73.86 57.30 47.54 25.50 24.96 94.60 6.55 39.50 87.11 79.54 93.53 90.66 55.20 67.79 59.96 80.17 62.70 49.84 8.02 67.77 14.23 2.07 19.38 72.23 70.65 13.55 24.69 19.44 4.32 5.93 60.41 97.25 67.66 -86.01 38.64 8.53 54.58 86.90 62.47 44.24 91.18 94.12 72.17 74.72 41.15 7.51 89.67 61.08 30.49 28.02 19.30 20.69 42.68 86.43 86.90 76.53 94.56 78.89 83.23 72.44 85.40 18.17 78.46 84.10 29.77 28.11 98.78 69.35 52.72 52.13 40.39 1.51 23.71 75.86 97.64 45.32 20.26 90.04 42.90 58.64 55.37 78.77 35.10 44.16 24.99 38.32 58.51 67.71 15.86 88.13 54.58 49.22 57.82 92.12 47.00 35.45 13.27 12.58 62.09 5.39 16.24 83.84 59.73 66.72 53.96 81.28 38.73 54.55 45.87 74.23 23.39 46.75 42.49 3.77 48.22 87.47 94.76 76.86 54.41 19.27 28.27 28.96 64.55 90.90 92.47 30.88 90.38 0.52 42.24 9.96 45.46 17.11 66.68 -18.64 41.99 34.31 51.78 15.61 56.75 44.82 82.22 1.43 5.16 92.56 90.36 55.25 37.76 45.38 4.86 39.78 62.31 29.58 59.84 49.80 79.48 26.60 32.78 1.70 2.70 77.29 57.65 82.38 62.45 13.36 41.60 95.64 67.76 9.10 30.93 33.79 29.04 16.20 66.87 68.30 40.02 72.57 91.69 61.41 21.05 27.71 20.79 45.47 59.46 73.80 99.07 86.41 90.71 27.76 28.55 57.57 97.23 58.39 98.61 54.08 17.80 62.76 58.08 69.05 33.34 31.13 56.08 70.18 39.93 56.27 51.35 40.48 63.56 45.85 86.87 95.68 2.48 8.83 89.15 93.44 36.49 49.86 96.86 11.69 81.04 8.18 50.20 30.42 90.23 10.08 24.80 24.88 72.79 15.18 64.81 85.30 80.41 41.69 61.48 -86.30 23.83 27.75 26.23 4.25 97.68 78.56 62.81 19.09 1.29 14.01 91.12 70.72 39.41 35.46 96.89 47.47 99.33 94.21 86.29 5.59 36.22 66.18 16.70 8.90 36.00 25.29 12.95 28.45 6.85 82.18 16.33 54.38 50.48 4.74 24.89 54.81 95.33 11.00 58.16 48.88 2.63 64.27 47.92 29.72 35.38 16.52 92.03 55.57 66.92 7.95 98.28 2.15 34.04 82.54 48.87 99.84 2.48 31.21 35.18 81.71 30.17 17.83 72.14 21.11 55.51 59.21 30.95 41.93 18.14 79.74 31.81 99.34 47.01 84.46 56.76 25.05 16.94 63.90 66.36 82.90 92.24 93.77 39.81 76.16 23.10 81.00 51.06 79.16 0.47 7.63 42.61 47.32 82.63 84.67 98.64 46.07 2.94 4.70 59.92 -3.29 98.28 2.91 35.46 95.32 44.65 79.46 15.98 86.05 88.14 80.94 29.41 23.83 79.50 85.74 61.28 39.04 30.75 80.06 44.54 87.39 92.43 62.99 59.90 22.28 8.51 40.24 7.78 1.09 54.82 72.72 42.53 91.04 73.44 22.62 24.00 93.15 40.77 33.35 24.08 18.55 16.20 53.39 65.95 5.34 58.65 3.10 80.19 20.66 54.64 70.64 0.61 94.03 58.30 53.32 62.17 94.50 44.54 71.19 6.23 79.82 46.16 76.17 55.70 96.40 93.87 39.62 75.17 63.25 31.35 14.36 25.63 85.19 62.39 42.45 26.33 99.16 88.01 7.55 53.14 14.63 69.33 12.36 31.07 66.08 68.77 5.22 95.49 41.04 84.83 20.94 30.54 55.01 75.03 0.37 79.93 50.27 54.15 70.14 62.92 -30.94 15.48 57.96 19.79 89.40 52.89 50.92 90.50 9.75 22.76 59.21 75.44 27.66 99.71 47.62 25.99 99.89 19.98 0.03 40.26 34.49 20.54 15.42 95.23 86.67 61.63 82.29 69.21 28.60 53.14 66.72 80.85 55.76 12.87 86.48 32.47 40.90 53.57 35.26 2.03 8.87 2.84 39.59 84.59 33.50 27.27 59.25 11.66 59.01 85.59 38.16 3.74 87.87 46.38 30.83 24.98 74.89 28.43 0.61 17.24 43.41 51.83 9.73 59.91 36.29 24.35 44.46 8.41 7.43 1.52 12.82 97.76 78.73 28.01 93.76 57.86 49.88 7.18 27.95 25.09 32.50 91.54 61.59 34.64 1.76 31.09 98.30 7.58 52.44 23.96 77.07 58.48 27.71 91.91 68.06 83.01 31.75 14.56 96.99 20.39 -39.45 87.52 87.36 66.23 57.64 30.64 66.92 24.01 79.17 15.33 31.15 55.96 0.25 12.67 58.50 72.45 46.37 88.07 82.62 37.42 92.90 22.33 10.09 8.47 51.83 29.54 90.09 44.39 95.52 96.34 94.74 96.73 74.81 64.62 93.52 80.85 52.80 66.53 85.53 11.85 97.28 27.56 96.94 35.41 23.07 61.49 67.24 23.23 59.56 18.37 12.40 68.58 57.54 54.49 52.17 24.24 17.71 60.74 0.73 84.13 24.45 10.82 7.68 87.03 13.94 91.24 13.50 45.02 94.44 31.56 17.53 53.16 49.34 97.61 19.54 96.89 87.95 28.91 17.06 31.62 44.01 62.56 18.51 77.53 8.02 57.91 6.49 82.82 16.29 18.22 70.80 73.04 61.83 50.21 60.57 82.36 0.28 53.73 64.54 41.24 -72.37 98.81 34.04 24.04 89.38 46.24 4.10 29.73 99.27 91.45 20.37 47.76 53.27 80.72 54.29 88.46 1.57 59.61 89.23 77.31 38.57 32.23 77.69 15.41 64.01 18.91 8.39 79.34 16.50 48.54 4.64 50.90 36.38 88.35 12.32 6.61 45.71 76.55 42.43 74.11 86.67 33.67 14.99 63.35 17.86 97.37 98.25 2.72 2.48 13.54 46.97 90.76 66.07 19.54 0.88 21.31 18.35 0.84 94.98 52.59 20.59 51.84 64.06 88.14 41.98 68.74 34.35 16.04 31.34 92.11 17.82 67.90 14.06 25.14 82.51 16.27 47.69 85.02 97.91 63.58 32.95 63.28 57.49 60.76 31.60 21.89 56.60 23.51 65.31 62.97 81.20 10.36 38.15 56.72 3.64 12.62 90.89 29.35 19.39 0.84 -55.80 27.00 12.51 38.89 28.34 74.54 93.45 6.92 91.87 59.34 64.68 87.06 83.53 54.78 47.95 30.92 14.87 24.50 1.87 70.64 27.60 76.88 2.88 74.62 91.18 73.79 89.50 73.42 87.09 67.81 92.05 88.33 85.66 88.98 78.03 87.54 95.65 5.24 76.99 32.81 4.76 33.01 94.89 79.87 70.16 34.84 23.16 63.73 4.70 41.97 96.91 41.75 24.05 20.05 64.59 57.94 18.86 28.66 7.13 40.37 14.03 22.29 8.24 0.59 0.15 71.37 24.92 67.88 94.64 45.06 28.60 51.59 7.25 28.05 98.74 93.59 23.81 83.06 98.48 15.20 88.57 40.92 23.43 3.60 97.91 40.58 27.69 64.87 94.74 67.91 20.94 12.92 7.69 31.12 66.90 82.91 67.25 31.62 52.27 2.40 -3.12 78.50 25.54 29.69 31.91 40.30 51.23 54.97 83.76 28.58 44.75 47.05 14.02 11.35 45.02 69.91 95.63 59.80 86.10 14.24 16.39 9.89 35.36 8.54 64.18 22.13 73.73 36.93 42.68 31.19 91.84 7.43 31.86 9.88 50.14 72.44 31.57 68.19 78.41 60.82 15.40 69.80 87.02 34.46 71.34 22.62 92.54 52.05 53.21 67.67 55.46 97.87 49.21 60.03 95.10 80.85 98.64 48.70 87.27 43.17 30.69 73.68 58.95 58.15 79.80 47.96 26.75 31.84 16.05 33.80 50.23 1.53 48.22 62.68 11.85 51.50 65.24 26.57 94.13 6.51 58.90 45.87 82.45 95.52 30.01 33.24 27.15 84.67 63.23 4.96 49.35 6.88 74.72 74.99 92.07 45.53 77.10 68.33 15.04 1.15 -17.08 14.85 82.14 86.50 4.82 91.38 11.18 19.67 89.54 35.25 27.28 14.81 46.94 79.58 21.08 28.06 86.78 62.53 41.74 67.93 3.91 43.59 39.18 73.31 30.31 94.06 93.74 76.83 68.92 4.57 70.35 0.56 27.33 17.81 45.75 51.45 64.32 30.43 12.40 92.91 52.69 93.09 65.45 30.38 86.05 35.76 29.27 70.80 57.65 76.54 54.35 64.00 21.17 85.82 51.98 92.49 71.28 49.25 22.01 98.82 43.37 90.08 54.86 54.78 24.54 36.69 34.30 61.14 28.45 84.56 86.80 20.17 33.08 27.61 10.79 83.99 47.24 70.95 81.30 10.93 59.99 16.89 91.81 64.90 37.31 88.42 34.03 97.97 40.70 98.38 75.12 74.59 84.77 15.76 91.92 21.35 12.58 90.68 49.62 67.03 -49.09 59.22 69.68 11.10 40.70 82.77 82.72 22.75 72.13 38.99 80.24 63.53 93.44 22.03 98.99 35.67 17.22 88.12 9.22 55.64 32.27 23.76 20.08 46.28 78.25 15.35 7.16 36.94 51.32 70.72 51.66 48.25 33.79 96.44 19.19 72.60 90.66 95.43 57.14 35.71 31.61 14.79 64.03 97.50 83.43 59.80 77.25 3.21 97.38 91.95 14.42 2.31 6.38 62.64 63.32 83.78 52.39 79.58 50.30 31.27 14.20 12.74 19.40 74.43 25.21 45.74 53.35 71.96 61.73 68.33 69.94 70.68 94.37 87.19 43.99 69.52 66.52 50.24 2.02 62.60 49.86 0.23 68.94 66.84 82.85 79.12 58.93 10.27 95.72 39.31 13.71 26.51 5.20 60.78 85.07 50.66 84.91 67.56 96.34 58.39 -20.16 73.62 96.98 6.50 4.79 46.77 3.98 19.99 34.81 92.88 38.82 26.23 2.64 88.81 59.23 19.86 79.62 85.80 59.32 32.65 54.27 11.20 19.41 15.68 63.19 19.68 61.21 97.20 18.39 94.46 66.22 76.08 2.92 75.48 85.61 43.46 61.09 46.99 52.44 50.26 1.85 30.78 78.57 12.35 40.30 43.75 71.68 90.52 43.21 55.44 12.86 8.52 14.49 12.02 57.04 95.64 3.28 99.41 34.17 59.69 51.94 61.15 68.94 6.68 85.89 11.93 57.48 45.98 28.48 55.28 54.69 6.44 6.66 19.70 4.19 21.37 2.82 63.37 23.34 97.88 40.80 46.82 14.53 64.80 21.25 44.69 0.50 24.11 60.29 22.04 40.57 57.61 10.32 26.12 11.82 42.01 55.73 84.07 52.82 32.64 -28.25 48.56 35.69 26.94 0.92 60.55 63.44 63.69 80.66 49.92 87.43 57.30 78.36 98.43 81.23 92.50 96.25 39.20 29.34 91.42 6.19 12.33 44.86 53.66 10.79 33.87 18.38 18.51 16.88 11.61 49.18 70.56 24.66 92.65 54.47 48.45 39.86 96.80 45.30 80.80 85.69 24.69 25.56 74.58 3.47 93.04 30.70 53.42 4.32 18.16 96.42 40.52 62.89 18.99 15.00 6.31 36.20 16.88 54.15 71.60 53.54 61.14 19.33 94.79 93.00 47.67 64.80 67.92 8.32 73.21 4.27 92.45 29.74 34.93 93.66 71.29 46.78 87.19 54.56 82.43 76.94 74.46 3.88 86.37 22.40 40.73 85.95 43.00 22.40 94.78 34.28 26.34 20.22 1.85 41.42 58.51 54.12 54.82 23.36 68.35 -22.69 59.79 2.80 89.49 77.42 2.30 41.47 29.80 78.89 54.08 45.85 11.46 31.20 16.75 90.65 3.87 89.25 30.23 1.08 76.58 4.81 48.19 55.79 62.96 84.08 39.31 67.53 98.75 70.87 42.90 99.93 84.99 47.87 29.94 40.01 91.59 64.30 54.52 3.50 90.02 1.34 4.97 98.82 18.91 62.36 68.47 34.57 8.46 77.07 5.60 5.65 99.94 85.99 26.94 4.42 25.39 79.39 51.16 63.72 79.13 47.04 23.25 99.72 66.28 3.15 41.93 78.39 22.12 73.89 63.49 11.87 63.35 73.10 98.67 19.10 26.26 95.12 23.75 3.11 51.43 50.44 27.64 90.24 11.26 54.03 2.33 5.67 20.54 99.16 8.81 32.05 9.42 80.61 5.81 97.91 84.37 4.79 42.10 46.19 92.84 -12.32 47.47 26.47 57.73 5.55 97.81 12.29 1.65 62.05 8.44 74.96 64.25 15.83 5.82 9.93 40.49 52.42 66.93 95.85 34.05 37.32 2.49 21.72 71.18 82.54 77.87 21.17 69.93 39.65 56.14 28.39 0.34 97.93 44.32 89.45 56.91 65.36 28.91 1.35 54.94 7.35 72.73 4.49 57.86 9.01 37.44 20.94 97.08 67.60 8.66 83.70 32.57 19.32 88.54 1.57 58.64 32.53 2.96 61.98 50.03 65.81 20.65 81.77 2.04 28.71 67.94 66.93 91.30 11.69 93.98 27.32 18.71 61.06 12.61 66.08 6.23 57.73 3.36 12.18 43.34 0.95 57.78 64.20 88.33 64.82 65.47 39.52 61.94 35.67 89.69 25.30 34.43 14.38 7.19 48.12 37.93 15.43 25.65 75.09 25.06 -10.46 94.89 54.54 7.28 48.30 50.63 50.42 98.20 81.55 56.38 43.34 65.68 66.02 18.40 0.64 62.12 51.79 71.98 85.66 5.16 95.91 42.72 19.51 84.81 8.19 79.60 0.10 38.94 37.12 40.81 49.40 72.16 67.22 53.07 74.84 79.95 93.26 48.32 14.61 53.86 87.75 20.19 56.86 45.36 27.45 10.84 7.50 14.57 87.31 81.69 2.05 46.94 5.28 49.96 81.82 94.27 7.85 60.66 68.48 48.81 10.76 2.69 10.80 22.87 33.89 51.98 65.07 81.55 64.37 15.91 41.32 50.71 16.07 32.19 66.43 86.34 52.80 94.53 64.75 27.36 65.72 60.23 52.52 18.92 65.11 33.77 67.76 41.04 86.01 61.28 97.28 55.48 32.67 95.42 54.71 74.27 1.96 65.89 26.96 74.70 -58.10 86.71 66.22 1.03 65.30 35.93 70.88 44.03 37.47 16.01 54.37 69.89 4.37 62.13 4.68 68.55 11.34 49.63 29.35 27.62 76.75 58.52 84.08 96.29 34.44 64.54 91.57 84.05 94.46 96.84 72.32 27.18 15.05 22.80 50.06 29.98 61.31 46.70 15.62 68.14 4.23 93.08 68.96 46.51 15.69 2.90 96.86 67.30 59.09 96.81 34.69 76.15 95.76 13.12 25.66 71.65 19.23 66.92 37.51 74.49 87.85 36.33 67.68 18.56 28.56 20.71 31.64 91.84 95.34 94.09 5.08 92.77 40.16 97.05 80.92 43.53 8.92 71.62 86.55 40.42 33.74 12.70 83.56 56.21 8.70 2.41 91.29 31.36 88.68 28.58 32.10 17.37 51.53 78.20 3.91 81.08 0.86 49.59 81.31 87.31 -58.07 74.37 21.47 11.72 38.19 64.86 59.74 33.80 54.47 41.51 85.06 5.84 38.89 29.61 38.83 69.24 44.52 33.51 16.17 23.15 83.04 80.61 66.97 87.83 69.91 74.15 29.76 10.95 74.72 7.54 99.82 28.13 67.75 68.15 57.26 72.49 88.94 65.04 17.32 97.68 83.12 72.26 51.93 59.43 38.32 24.99 18.08 92.84 77.24 24.69 7.02 60.64 8.71 31.78 85.79 42.24 56.80 83.99 41.75 53.51 3.15 66.74 16.72 7.31 64.84 59.01 55.94 50.05 73.56 53.68 15.91 52.04 0.97 58.18 3.90 36.11 72.02 0.98 93.45 87.59 2.31 89.45 98.15 86.58 8.43 26.56 55.56 52.76 17.18 47.07 15.05 18.05 65.87 89.79 2.89 44.35 81.39 49.47 87.09 26.94 -24.91 37.76 36.47 84.77 92.98 79.87 23.46 65.13 80.29 71.37 90.96 20.71 5.55 22.67 93.77 41.41 9.02 84.77 5.69 69.55 4.13 81.92 55.34 14.26 38.59 45.61 13.14 96.76 9.90 62.05 37.42 81.56 48.36 51.35 65.99 74.48 0.38 99.43 68.04 12.92 77.75 15.39 1.30 87.53 59.63 49.54 56.57 72.43 56.69 6.96 98.00 25.60 66.82 28.79 38.07 77.12 43.23 98.69 96.46 26.79 42.75 37.79 61.63 52.99 91.62 50.37 12.73 45.57 52.16 95.27 34.55 16.22 98.54 56.62 20.46 66.67 34.34 1.52 45.49 27.45 45.27 18.92 48.54 83.25 43.54 65.21 25.25 34.32 58.70 20.04 52.31 54.63 37.69 18.15 7.57 75.90 84.51 89.27 68.16 49.01 -78.89 6.39 11.54 19.04 18.96 57.45 63.66 65.27 68.33 9.61 1.24 60.60 4.11 13.29 74.70 31.64 1.89 16.14 13.92 80.42 69.33 86.40 56.93 43.30 53.35 37.15 22.60 73.38 58.83 24.31 95.79 58.45 21.11 97.44 56.09 39.06 22.93 2.21 49.54 0.57 73.79 82.00 65.72 25.27 73.74 60.91 40.16 50.90 91.51 86.55 69.20 67.12 77.32 56.44 72.61 80.01 38.30 35.43 64.62 26.25 11.61 27.88 69.91 64.13 6.36 26.93 77.40 43.11 96.24 38.67 62.07 23.83 63.00 81.44 22.16 42.68 51.22 87.99 69.53 89.62 81.21 64.98 84.22 13.31 68.46 11.03 98.79 72.31 43.72 38.17 72.79 73.20 74.68 71.79 69.79 9.34 2.31 3.58 47.48 48.76 -18.02 46.59 81.13 11.54 42.86 95.07 6.98 31.23 77.37 12.68 31.09 32.82 91.23 93.19 54.90 28.16 23.84 72.71 8.37 39.05 87.70 28.81 64.74 64.69 73.18 98.53 16.07 50.92 14.53 89.07 81.97 63.11 1.72 45.96 87.05 40.00 76.35 36.26 72.92 79.62 11.77 23.50 81.29 85.36 73.83 54.95 41.08 64.55 21.53 38.97 51.56 59.06 97.44 93.25 81.43 69.97 16.09 41.19 62.87 47.00 20.30 54.79 31.93 13.77 80.95 6.01 42.01 95.95 20.17 20.87 4.72 47.45 23.71 49.48 21.03 36.30 89.96 60.12 71.85 2.73 82.13 85.16 49.11 71.36 10.59 50.93 66.71 55.64 58.36 73.62 90.62 56.12 34.15 27.44 86.30 90.35 14.23 79.49 23.31 2.62 -13.55 84.23 62.71 82.44 50.06 26.76 93.18 71.41 10.63 24.21 4.59 59.24 63.58 2.90 77.81 48.15 25.49 57.01 19.27 25.79 53.95 48.50 40.19 7.25 34.49 70.34 56.55 80.87 8.43 42.44 23.34 42.76 63.28 95.66 79.18 89.70 3.28 59.28 63.67 80.47 34.63 76.09 22.37 81.25 14.71 59.86 35.38 51.02 27.84 16.58 74.66 0.51 60.56 78.49 2.58 72.83 89.56 35.20 96.00 65.78 99.18 50.77 63.63 1.90 40.87 27.94 12.50 21.82 15.20 84.18 50.59 17.54 32.89 23.87 87.15 42.31 65.83 72.24 91.11 25.53 5.49 88.45 69.23 12.10 52.50 87.29 24.07 13.39 29.15 97.06 6.13 8.34 57.08 40.77 29.86 75.89 38.76 99.51 97.22 37.81 -67.67 72.86 14.97 23.64 0.81 64.56 95.70 93.50 13.18 17.52 72.79 43.17 48.63 41.00 26.14 39.15 35.43 98.52 20.91 44.29 23.02 46.96 80.48 5.59 50.58 81.51 55.45 91.84 4.93 88.08 19.09 4.67 54.24 76.11 12.58 64.00 63.85 34.90 5.59 46.94 26.94 23.25 48.71 53.23 55.14 94.93 40.14 28.99 62.96 81.61 91.55 0.58 65.28 13.92 39.09 12.21 57.76 15.52 15.56 97.54 76.99 69.72 47.37 11.72 70.14 16.88 57.57 40.26 36.15 74.94 77.69 84.77 23.87 63.22 68.05 52.32 31.67 8.47 51.71 46.73 88.52 94.26 47.99 3.03 44.78 14.79 2.58 82.90 84.94 14.30 16.87 40.87 24.94 47.96 21.28 39.39 12.62 2.86 46.93 81.23 -57.28 37.79 23.34 87.50 93.95 70.97 32.01 3.76 67.46 5.73 18.49 24.17 83.62 26.35 30.17 92.38 35.04 32.96 96.09 77.21 96.00 60.08 15.20 58.48 20.35 95.23 58.04 50.05 63.28 31.37 14.89 77.35 6.33 1.07 14.06 95.31 77.30 97.68 1.25 90.56 91.48 10.78 82.68 62.25 50.33 37.80 32.75 68.47 45.23 56.18 88.06 27.36 39.15 79.01 92.79 20.42 97.31 52.84 7.61 27.51 49.04 48.29 83.78 90.68 40.32 14.69 40.46 10.40 37.47 3.59 80.86 28.99 77.64 27.69 91.03 60.88 6.06 20.93 89.69 78.54 80.18 88.87 81.80 11.56 66.17 65.03 84.43 14.37 17.55 63.63 34.83 12.76 44.39 55.67 19.97 75.12 27.45 66.36 82.01 40.00 -74.68 34.67 48.09 30.66 59.86 51.27 76.93 36.96 66.00 35.32 77.26 4.22 29.76 0.13 7.95 36.41 25.77 95.19 35.40 77.16 24.89 18.24 30.84 20.96 25.32 44.09 53.09 7.59 2.88 97.26 11.66 72.53 91.86 31.24 2.92 7.16 68.89 19.08 67.82 57.92 22.99 63.39 13.35 55.71 73.43 32.86 51.48 62.79 33.29 48.97 12.93 3.53 74.59 14.03 25.36 9.36 12.27 88.32 22.58 84.40 14.82 7.00 41.74 99.44 45.74 88.03 88.97 30.78 17.58 30.89 86.23 72.13 41.58 61.92 16.45 66.28 96.30 26.37 66.26 6.09 78.68 83.71 92.46 16.29 94.84 43.38 66.68 78.10 48.55 32.13 50.40 32.61 41.80 33.04 88.48 76.73 65.19 68.07 33.13 41.64 -78.06 87.18 59.71 9.70 51.93 20.65 84.69 9.14 61.97 79.67 1.92 12.67 75.50 10.42 43.97 13.95 86.17 49.39 18.99 19.09 67.76 92.23 17.27 46.04 58.36 95.54 3.01 23.79 45.68 87.93 57.90 78.44 73.00 69.17 36.80 62.84 71.90 29.66 39.04 43.20 74.12 3.44 62.90 23.95 53.01 43.84 92.88 17.42 99.71 44.47 25.56 76.26 91.42 0.15 91.82 93.74 23.97 11.13 44.08 57.24 6.12 75.01 64.99 92.92 96.96 33.60 69.46 77.14 75.49 79.46 87.30 89.61 63.34 71.74 12.71 69.24 18.80 20.98 50.07 37.86 77.67 70.70 34.45 29.32 45.82 79.34 4.03 85.86 90.64 38.96 17.91 76.03 38.44 39.99 3.57 37.05 22.75 1.54 38.87 70.12 -25.57 81.71 56.06 35.03 11.06 61.38 17.36 54.19 12.85 53.87 9.92 11.27 24.05 16.25 20.49 68.81 62.87 25.07 4.87 21.50 5.28 40.43 39.45 38.52 52.19 57.12 1.10 21.56 41.00 18.96 8.00 33.34 55.24 14.38 13.60 80.08 55.56 37.66 61.34 65.25 71.53 75.03 51.01 95.23 72.59 11.53 81.17 54.66 23.11 81.57 46.41 26.87 8.85 94.06 3.66 11.14 70.75 27.85 82.91 39.82 34.96 22.88 14.05 38.36 51.43 45.86 62.89 51.17 97.69 50.86 59.59 76.35 65.09 77.59 66.45 53.21 85.51 6.57 62.11 50.09 58.82 83.30 14.47 53.45 73.56 74.33 32.41 10.97 24.75 23.30 41.92 34.61 37.86 89.91 25.30 69.23 62.97 40.84 45.15 2.28 -3.72 32.07 62.36 1.83 54.44 32.59 32.16 76.69 24.30 98.51 21.84 67.27 59.00 25.82 84.20 54.11 34.24 91.44 0.50 10.68 71.17 53.53 94.75 48.06 33.87 24.27 95.23 48.50 93.70 44.28 51.35 77.85 75.69 53.86 18.59 2.93 8.60 71.15 18.46 11.81 64.05 12.79 8.15 8.12 0.76 78.61 50.26 9.61 71.48 62.70 62.16 51.24 22.20 24.88 47.34 50.49 21.21 40.88 17.23 91.50 68.52 10.45 56.57 24.31 82.01 38.43 81.14 80.08 26.80 75.78 35.37 41.96 1.93 44.45 8.16 3.43 24.78 60.97 78.75 61.47 91.54 85.30 1.64 25.02 43.87 25.99 1.13 76.82 24.35 96.01 54.67 21.87 91.53 1.16 19.04 7.77 2.80 53.22 79.94 38.27 -58.04 12.93 20.67 50.89 20.80 36.15 78.41 63.07 50.00 57.52 40.78 82.57 67.10 37.53 24.91 5.23 66.55 90.54 2.11 30.34 58.16 77.34 54.10 64.09 44.76 56.94 15.22 7.37 49.00 21.35 91.40 93.56 29.29 46.09 26.15 5.20 13.63 62.54 58.24 14.61 95.83 71.91 22.48 74.95 73.85 57.04 80.35 97.76 12.30 31.67 79.18 56.57 62.96 88.07 67.98 59.52 0.17 12.51 27.90 46.07 84.12 97.47 88.26 71.55 66.76 35.49 10.14 81.55 33.71 12.84 13.01 8.82 5.98 41.44 1.46 91.44 16.04 35.57 8.46 20.23 44.03 84.72 33.55 97.38 79.55 56.53 45.73 29.12 45.10 80.24 51.68 59.81 38.80 56.99 4.76 35.95 55.80 41.26 33.72 19.77 -90.06 26.24 22.97 86.32 48.96 72.33 93.79 60.78 56.04 75.98 8.76 75.04 34.04 75.16 72.08 27.08 39.18 23.84 15.42 37.17 48.38 31.29 70.20 92.49 29.52 44.70 95.86 7.97 7.87 74.02 97.17 19.43 68.60 37.71 76.76 36.32 6.77 1.88 78.43 10.44 31.91 30.58 65.93 64.64 87.05 93.84 82.93 61.21 94.73 83.55 28.86 11.06 69.81 78.24 56.67 3.91 22.90 47.61 80.29 26.82 26.44 63.39 21.71 57.21 38.68 76.05 47.30 9.78 17.40 86.78 18.12 13.50 32.97 6.53 33.60 29.15 51.58 51.97 38.32 22.80 9.19 42.95 46.80 83.00 12.57 72.05 6.34 61.01 56.25 99.35 71.95 4.50 96.58 50.85 74.48 29.66 44.63 27.20 79.45 4.23 -48.55 80.54 51.69 35.94 77.67 11.67 47.35 42.04 7.35 61.98 30.91 31.78 18.51 52.40 11.29 6.86 86.79 68.46 54.10 9.30 87.67 83.99 1.84 89.54 42.82 33.16 88.37 88.22 47.82 13.40 99.50 10.17 58.28 93.91 47.37 19.88 37.32 59.53 42.80 34.88 14.08 85.06 11.57 55.48 87.65 52.79 37.38 69.39 35.26 62.31 29.94 99.33 59.12 78.72 4.19 74.90 71.85 26.42 21.87 85.30 64.91 72.01 32.06 73.40 54.88 24.80 35.10 61.76 46.51 37.08 54.65 20.01 69.77 52.49 74.78 84.98 11.45 70.73 50.53 67.12 71.15 3.84 1.33 25.38 30.65 56.72 80.48 91.55 47.54 66.48 82.14 89.86 13.92 40.49 0.61 81.72 51.57 87.88 1.08 93.01 -28.85 62.19 11.37 31.19 26.21 23.80 7.65 78.50 89.52 86.34 3.66 15.55 57.75 55.33 43.93 90.50 29.99 53.03 54.77 40.67 3.58 89.93 23.43 22.64 38.06 53.39 30.91 97.59 8.84 99.78 91.65 37.80 3.33 87.53 41.13 47.15 90.09 43.79 36.96 71.40 40.63 7.43 25.51 55.67 98.97 40.91 22.98 45.97 60.77 39.63 44.59 15.63 24.52 15.72 49.70 3.63 41.06 22.55 12.67 12.58 68.39 93.33 68.56 19.73 81.65 87.66 92.00 94.76 7.82 88.78 62.86 8.48 8.81 56.35 63.34 13.18 18.24 63.54 66.41 84.50 81.68 96.90 70.68 13.11 42.92 51.44 51.69 83.78 90.99 86.82 35.61 31.25 61.83 94.63 90.87 14.86 83.02 62.24 94.14 77.68 -36.56 15.10 10.17 32.47 63.46 84.12 55.14 64.19 51.48 15.15 31.47 82.76 95.80 21.78 92.12 31.78 20.70 34.09 37.69 10.50 26.03 71.65 77.95 5.80 74.16 21.32 93.45 81.44 92.48 66.21 73.39 25.35 73.32 76.14 70.73 97.97 78.79 43.35 87.14 95.81 28.94 29.76 32.00 36.18 51.82 73.04 93.84 93.96 16.05 55.82 78.66 11.20 49.81 61.68 18.18 82.90 57.20 34.21 29.07 98.27 57.89 92.10 34.74 32.18 24.71 74.40 15.58 1.55 31.42 60.45 8.48 1.04 84.11 71.47 61.95 18.97 77.07 90.92 64.87 86.06 78.12 76.18 5.52 42.33 4.37 46.30 40.77 25.69 17.77 32.19 41.57 93.84 7.20 50.32 82.69 10.31 58.52 95.18 21.68 70.54 -95.49 39.63 8.14 13.14 80.17 53.25 50.00 58.39 31.22 79.14 97.97 57.85 77.26 59.61 50.85 40.32 14.75 16.15 84.44 5.73 68.79 38.53 89.79 32.34 46.52 34.91 71.63 79.63 29.34 60.45 97.25 49.64 46.92 63.87 25.08 20.28 42.21 28.53 27.30 28.92 85.50 7.06 55.27 7.86 69.18 85.06 25.33 89.73 16.83 72.23 34.49 8.35 73.57 54.30 82.49 80.53 89.44 88.50 37.23 90.99 88.24 36.17 9.28 60.86 75.15 21.11 13.20 88.26 83.40 97.05 60.32 8.93 9.63 3.31 87.45 92.55 8.62 77.39 98.69 31.25 94.71 8.63 44.00 6.87 8.01 12.30 93.26 95.23 17.67 69.47 74.29 51.47 75.30 7.31 31.31 70.80 95.60 27.83 36.88 78.13 -25.06 53.66 57.60 59.40 97.24 55.83 37.30 32.28 99.50 28.48 16.76 21.03 4.27 38.12 64.13 55.20 66.44 97.97 49.79 73.70 20.43 9.00 62.23 83.26 40.61 4.48 42.84 11.35 92.91 15.69 98.44 93.55 16.55 79.15 92.44 18.52 72.81 65.54 34.03 67.21 41.81 63.24 41.91 25.15 79.96 79.54 51.67 24.58 88.64 61.20 84.40 92.35 54.28 48.60 90.90 22.78 64.88 89.50 5.84 18.37 72.33 68.08 14.54 37.46 8.34 79.11 0.71 13.09 60.12 53.89 39.09 19.36 53.84 13.70 36.31 77.42 39.75 44.95 8.67 82.40 20.92 58.09 52.85 13.03 99.41 99.76 87.90 20.63 27.93 1.21 36.67 47.77 16.04 55.72 33.14 5.39 95.77 26.21 38.12 87.89 -15.83 20.19 39.42 97.76 66.38 70.79 10.37 37.46 70.87 31.70 4.14 49.46 8.30 57.48 73.81 65.00 93.01 85.67 35.65 11.46 74.62 46.26 60.69 74.15 61.91 85.13 34.62 16.64 44.50 12.65 85.28 62.20 5.54 93.86 43.94 1.46 97.75 24.94 67.60 34.77 26.21 43.70 79.17 93.80 4.54 57.14 6.00 44.51 78.38 14.85 46.44 28.34 18.32 4.54 41.07 91.36 84.73 13.25 61.22 79.24 51.86 95.54 66.53 93.32 78.02 48.40 11.71 34.10 83.07 10.87 44.31 28.88 75.48 11.88 9.57 68.61 3.77 61.68 99.29 30.39 40.54 42.22 58.83 60.06 95.77 5.72 92.19 46.86 12.19 34.74 87.97 29.26 68.81 72.08 94.59 77.74 86.79 47.73 86.10 29.70 -94.93 43.51 24.41 68.39 85.52 2.64 60.24 83.79 90.15 66.06 31.12 1.13 66.52 15.08 10.53 61.74 82.76 61.09 36.89 48.54 8.78 87.25 94.83 0.30 72.12 86.09 47.28 93.15 20.17 85.00 2.21 97.98 75.53 40.26 65.15 58.59 34.43 56.02 91.51 23.69 84.95 35.29 82.71 94.96 38.68 48.08 62.34 71.13 52.02 71.46 33.84 83.96 30.78 89.91 15.33 75.70 30.01 80.27 7.76 20.78 2.89 42.48 58.68 90.16 7.19 6.72 56.32 36.17 64.16 46.43 33.51 32.20 61.57 58.31 57.44 41.74 79.40 12.00 87.19 85.27 51.25 50.77 68.47 27.06 98.88 85.92 76.68 57.79 6.65 19.57 65.73 74.75 60.37 76.36 87.70 7.59 98.13 26.04 52.30 90.20 -77.90 35.88 8.65 49.03 5.38 68.52 54.49 63.97 44.66 1.52 81.46 23.94 25.04 14.56 61.33 77.74 64.76 33.17 63.32 30.49 19.78 87.58 50.31 42.03 15.57 32.80 56.44 73.07 52.91 69.97 15.99 93.19 17.48 6.11 73.66 75.11 87.66 62.22 20.84 20.67 94.92 26.34 72.87 7.53 31.46 69.35 14.92 97.30 79.49 68.26 79.30 77.35 13.95 62.60 34.58 28.50 89.99 49.28 42.15 11.53 68.46 11.09 11.12 79.80 58.02 17.14 4.25 28.56 28.45 79.03 43.97 48.77 18.23 32.94 92.96 40.20 83.67 72.97 96.87 9.40 21.54 1.44 51.76 70.80 56.52 85.81 41.23 61.71 19.29 89.30 2.94 89.68 95.17 8.64 1.67 7.03 86.23 7.16 89.89 12.45 -61.21 99.46 33.29 30.96 54.05 82.44 29.19 87.53 62.19 53.73 95.70 39.44 36.39 15.83 12.55 25.50 2.90 1.91 45.27 76.91 35.17 63.03 23.82 82.04 97.56 59.08 34.83 96.98 94.71 73.23 90.06 27.99 5.54 57.88 72.54 15.12 77.54 25.16 12.48 46.16 86.64 94.62 20.50 64.19 51.97 95.96 91.12 43.20 84.57 20.36 53.05 99.92 92.62 43.96 32.77 5.86 74.99 9.31 5.59 36.88 46.48 51.22 54.68 20.11 99.52 2.54 23.99 9.41 53.86 33.66 63.34 85.23 65.48 50.30 15.65 45.54 97.36 80.70 16.69 69.53 98.42 94.43 20.00 37.49 81.98 54.61 15.78 70.45 0.68 24.25 61.03 67.36 43.42 89.36 18.69 89.60 84.70 17.42 22.13 21.87 -7.46 56.16 9.20 98.78 56.08 14.86 51.24 65.99 75.02 95.56 96.58 8.91 94.70 21.43 38.65 59.81 67.30 29.37 38.14 45.26 54.58 3.52 88.55 11.25 64.35 74.93 86.35 44.44 27.85 48.95 85.80 39.58 3.43 90.91 39.90 75.63 99.64 29.23 71.48 50.69 85.21 52.28 0.85 98.25 82.99 77.89 30.93 18.22 6.92 36.88 78.10 15.93 60.94 24.44 1.34 30.41 40.84 99.46 42.80 65.15 33.48 20.48 94.83 18.59 52.13 61.59 98.37 79.95 42.76 28.76 39.29 26.16 48.26 84.78 81.26 59.88 85.00 46.23 99.75 76.44 48.41 98.70 86.48 31.40 96.99 10.99 85.11 1.11 84.41 28.76 76.13 25.31 82.00 87.31 79.77 80.60 61.36 84.24 56.77 86.43 -34.49 8.87 9.00 75.60 54.80 41.21 18.46 7.14 59.80 78.13 85.75 12.49 76.04 44.46 19.58 47.15 4.26 46.79 75.98 36.09 4.84 57.92 12.40 12.11 2.38 83.45 69.30 5.86 76.57 65.92 83.98 30.10 87.09 9.53 82.44 36.81 92.92 67.76 49.76 23.09 90.91 34.00 23.80 2.13 28.30 34.79 8.37 33.35 23.44 18.03 63.00 27.34 12.15 66.59 82.92 51.67 46.00 35.35 83.15 49.75 80.91 50.75 50.01 90.35 82.84 28.47 11.77 0.95 91.66 42.11 72.16 91.61 37.13 47.28 30.04 69.71 49.90 76.51 6.54 67.92 21.57 37.18 18.11 78.91 68.75 80.01 30.59 70.30 45.46 37.43 16.35 9.16 20.44 96.90 38.12 51.30 72.77 8.22 79.86 18.18 -81.47 11.01 43.04 83.00 15.82 46.16 26.78 47.09 5.40 66.93 14.73 17.74 57.94 3.24 21.96 64.36 57.15 85.43 17.51 65.59 34.94 70.20 96.67 63.21 40.98 7.29 65.85 61.03 79.81 7.19 3.67 24.33 84.18 28.81 32.40 20.61 26.27 4.17 23.43 83.44 82.84 39.60 5.90 96.65 14.82 85.05 35.72 83.32 87.16 68.90 42.51 45.57 59.87 59.69 68.91 7.78 57.04 7.24 73.79 35.30 41.51 90.02 83.73 61.55 96.75 85.25 49.22 11.89 59.58 16.26 73.95 23.95 74.42 43.24 12.92 20.90 16.28 18.22 82.10 36.01 71.17 34.61 59.96 28.23 99.78 75.01 52.78 20.64 76.99 90.38 66.30 18.23 87.42 55.98 48.59 83.32 47.12 40.57 5.85 36.04 -54.54 54.02 32.22 46.13 14.42 71.10 84.79 26.43 73.88 85.92 88.12 48.75 86.35 53.17 29.31 26.01 89.47 21.62 98.18 72.83 71.39 66.59 7.15 21.62 64.93 57.72 67.90 27.19 73.22 59.86 55.71 8.37 21.27 63.64 95.04 86.38 51.52 48.94 13.19 89.51 8.50 28.99 97.37 71.99 91.31 30.10 27.28 22.16 39.45 59.31 0.33 44.26 74.09 14.94 95.56 38.54 19.68 92.07 67.41 76.68 10.80 55.93 84.27 88.20 60.14 99.05 45.75 24.38 4.31 15.03 49.41 86.03 81.88 17.71 75.56 53.96 4.43 88.71 74.87 76.97 27.80 16.77 42.41 44.93 84.03 87.12 0.33 49.68 97.16 9.75 47.84 49.54 86.96 82.44 49.63 24.57 54.35 47.51 62.20 22.55 -85.65 60.84 19.46 2.56 70.36 89.53 0.08 59.70 28.61 14.03 34.11 74.70 22.77 30.71 16.00 63.99 31.25 69.03 22.07 24.55 43.74 83.23 59.55 78.10 92.37 96.03 74.16 97.47 1.08 28.93 34.24 98.89 17.55 77.40 94.36 3.66 72.48 25.23 36.82 19.19 9.53 63.95 64.27 92.48 93.48 74.29 51.10 33.49 92.79 14.15 40.33 27.33 60.99 27.53 98.34 21.90 12.62 17.31 12.36 21.24 72.46 7.03 27.54 83.10 37.16 2.04 97.07 17.84 55.91 2.59 15.89 56.75 87.46 38.69 26.76 45.62 13.21 83.89 4.00 11.71 99.69 53.66 3.84 32.40 18.92 83.25 3.93 43.08 86.57 80.10 50.68 93.84 44.83 24.65 75.85 45.28 9.09 0.12 18.31 74.77 -37.02 93.06 50.50 45.76 38.91 85.92 83.32 95.85 90.30 15.47 1.95 86.45 97.28 93.66 66.05 57.54 85.93 44.30 77.42 66.57 88.55 71.26 22.29 65.53 99.60 30.75 92.88 20.44 59.28 27.29 30.61 14.23 19.92 92.10 13.03 92.15 8.39 23.71 1.27 31.34 62.43 38.35 15.73 92.03 8.89 69.51 31.74 11.05 97.51 52.16 87.30 53.54 25.32 50.03 24.52 24.28 85.83 12.72 38.71 82.99 60.00 4.53 22.46 40.67 1.82 40.55 52.58 35.98 69.82 1.48 11.21 94.83 30.47 71.13 31.98 59.82 25.94 34.92 39.11 60.94 7.57 50.20 52.85 27.93 32.23 70.15 94.61 96.30 17.99 70.48 89.02 49.94 30.00 48.58 10.27 5.10 5.23 20.63 21.51 67.12 -64.13 52.78 10.20 7.30 17.95 35.39 19.11 51.03 6.04 10.44 21.95 2.72 80.65 82.89 11.13 30.03 58.09 86.94 84.77 25.20 8.30 51.63 76.92 84.07 73.66 68.70 16.90 33.39 30.31 98.49 90.62 51.45 58.90 64.52 34.33 94.66 90.43 32.96 10.24 19.00 94.58 33.04 62.62 11.32 29.36 23.71 47.79 63.28 67.65 98.86 28.17 69.49 22.83 84.91 87.01 65.43 25.98 21.98 28.82 98.73 26.71 75.34 44.19 8.93 96.71 63.91 44.46 95.50 92.01 88.09 20.67 93.46 39.12 32.01 18.63 99.24 50.01 65.81 98.26 9.09 80.32 5.20 51.42 30.76 33.93 77.69 25.95 39.46 67.68 7.97 27.73 69.56 73.54 91.55 25.58 24.75 50.34 50.43 17.04 41.85 -37.59 98.93 59.19 42.35 90.56 69.93 67.47 97.58 34.77 11.85 86.04 28.17 23.58 17.47 35.94 66.10 81.02 99.00 87.36 63.20 19.75 43.29 24.59 98.33 85.08 87.25 94.27 82.01 28.18 36.68 64.75 17.89 64.17 8.16 22.14 10.04 70.72 97.69 5.07 98.60 58.62 16.04 22.00 84.55 44.99 1.35 17.09 35.99 94.14 38.67 40.65 59.20 79.46 62.53 22.17 29.51 22.71 20.33 62.25 65.61 15.10 45.22 41.99 38.63 69.65 42.32 48.26 85.78 11.33 70.74 36.90 17.21 98.66 47.95 54.41 56.71 16.85 45.72 71.84 39.76 84.77 38.28 87.00 37.86 93.28 96.02 28.03 7.28 46.68 20.18 88.11 7.42 21.91 28.09 74.97 10.16 89.49 48.43 79.94 45.05 -34.35 44.82 68.15 74.53 20.89 36.44 43.30 22.67 57.82 4.39 21.29 35.99 46.70 40.66 7.38 31.04 82.70 38.52 13.23 13.55 56.37 10.71 72.71 35.32 24.92 76.05 58.94 88.67 92.38 29.49 24.54 4.92 60.89 39.79 43.98 95.27 84.28 42.63 79.63 22.55 41.41 13.46 17.96 79.27 83.76 25.35 40.55 2.31 53.78 76.83 52.09 54.39 43.55 29.85 60.69 70.24 58.87 33.43 25.05 3.49 53.89 23.71 7.62 83.63 51.29 30.85 9.31 74.48 84.82 25.19 35.20 85.07 17.29 67.44 86.96 74.02 46.49 64.01 60.98 65.00 85.78 56.73 36.66 68.66 71.34 8.91 77.47 48.12 60.94 76.74 48.49 50.97 91.70 82.25 40.39 86.65 10.17 51.79 71.59 90.69 -39.03 93.20 16.12 67.50 45.63 74.22 87.10 5.58 10.98 59.10 35.11 38.06 73.45 89.39 56.93 23.06 6.85 45.12 82.97 42.08 48.65 20.25 51.47 43.94 6.71 4.54 69.36 18.31 49.75 17.96 69.91 40.87 94.45 46.08 73.66 4.99 42.47 3.88 55.36 40.95 90.38 25.79 95.98 3.55 40.61 85.67 97.71 31.53 94.59 74.72 82.69 42.95 78.80 61.73 64.14 0.50 76.43 61.24 24.86 60.25 42.06 7.29 32.26 16.97 15.50 82.41 81.80 57.60 55.35 21.30 38.66 1.02 40.11 83.54 15.77 24.63 52.00 96.25 43.93 92.61 62.16 18.92 88.60 95.99 48.24 13.35 16.06 40.45 90.61 55.13 0.13 97.06 13.32 22.21 12.81 93.82 3.46 76.68 70.19 98.87 -1.83 86.65 65.15 51.25 50.86 43.04 69.97 45.93 34.54 38.21 64.44 45.22 37.65 88.56 28.58 47.99 55.88 52.14 79.23 99.80 38.22 53.47 39.18 17.39 24.90 5.89 73.36 64.57 47.35 47.54 9.37 71.38 43.30 48.95 25.74 16.61 50.70 24.57 73.38 61.45 17.80 91.42 0.57 14.02 75.62 81.85 8.03 9.73 73.08 3.31 22.40 84.11 1.08 34.74 74.88 13.40 59.55 43.46 84.00 12.10 27.73 30.08 44.63 63.48 43.62 85.95 64.09 20.51 4.82 24.64 64.98 46.36 28.47 45.61 48.96 82.48 92.83 80.21 7.22 77.77 68.30 53.00 28.27 79.33 58.87 87.75 93.30 23.91 35.91 34.34 36.45 2.57 36.08 94.16 21.48 74.19 80.50 36.08 87.55 79.87 -65.36 59.96 38.16 26.11 60.70 54.58 72.65 89.10 50.43 12.06 41.49 64.11 71.33 11.57 72.55 6.45 85.83 84.92 83.21 42.31 46.68 89.84 36.10 39.84 35.97 30.95 64.17 82.80 25.26 97.48 45.57 68.47 34.29 70.52 10.89 15.84 34.36 16.80 68.99 35.94 1.52 65.93 13.64 69.81 49.38 2.47 55.57 79.91 8.09 91.65 59.14 77.18 65.85 57.34 88.90 57.45 26.20 78.04 33.64 54.59 2.84 59.62 3.01 71.91 97.26 42.04 17.33 17.35 93.98 10.94 69.85 33.65 16.32 86.43 77.09 41.05 88.13 12.26 11.78 41.80 65.49 45.33 92.96 82.08 77.17 81.56 75.86 4.51 1.98 18.98 77.22 25.43 27.10 7.58 17.17 27.25 76.25 91.02 55.83 88.51 -96.52 40.68 33.44 4.62 9.30 31.30 30.89 10.59 9.88 84.05 71.20 28.14 33.53 22.02 71.18 65.13 9.28 14.94 10.83 99.28 8.30 23.06 34.31 34.27 29.03 19.92 46.06 87.57 50.39 81.58 93.48 10.41 51.41 19.68 37.37 17.30 47.07 24.23 88.00 61.23 97.47 20.26 45.77 6.45 79.17 58.46 42.46 99.64 2.16 39.40 95.45 89.07 8.38 53.00 58.07 48.48 41.22 33.28 49.51 83.38 29.34 38.09 75.94 11.35 61.08 66.28 72.03 38.31 17.80 11.45 27.47 65.54 7.42 90.53 49.59 13.72 38.89 21.10 5.41 30.65 62.31 81.95 25.70 66.58 64.83 6.88 68.05 62.75 43.21 62.19 43.89 46.64 91.09 21.65 29.30 43.72 14.50 73.33 37.66 76.25 -32.36 59.23 17.43 12.63 55.89 43.71 35.56 71.59 12.96 46.86 21.04 27.02 51.47 33.66 97.53 73.24 84.68 9.23 55.26 47.56 80.54 67.41 45.43 48.10 1.25 32.03 61.74 28.09 64.44 83.64 89.55 60.85 63.13 32.14 28.19 57.48 47.77 21.35 95.83 72.37 18.29 60.84 11.59 44.97 8.32 61.39 48.46 24.54 37.47 67.51 29.95 83.36 51.23 53.72 52.01 88.50 46.08 9.74 51.16 42.98 3.18 32.40 98.09 16.46 9.08 79.43 9.88 2.09 84.37 12.74 74.33 68.26 80.01 48.58 52.15 84.17 32.10 76.46 18.92 55.73 92.01 39.40 93.16 19.35 81.88 50.41 50.24 27.20 64.15 67.67 90.59 18.49 93.19 75.17 80.10 94.99 93.15 99.31 37.05 52.27 -42.12 50.98 56.44 26.99 64.80 52.24 83.88 53.68 57.07 55.16 19.16 40.87 32.60 68.82 51.26 78.69 30.57 96.86 66.28 57.15 34.73 5.03 50.13 73.59 83.52 82.54 30.75 13.05 64.69 22.83 17.30 1.59 36.24 60.23 46.49 27.85 25.54 5.69 80.54 13.80 62.35 58.81 21.30 58.06 12.28 53.33 32.12 17.27 70.36 57.89 50.60 80.91 65.89 33.79 74.62 2.66 69.16 28.08 36.08 81.32 66.11 58.29 3.74 48.50 89.57 98.55 51.25 33.49 40.69 69.52 90.95 14.19 25.54 67.70 37.30 6.82 87.69 21.88 22.47 34.77 78.75 77.10 24.41 78.83 30.11 68.74 25.47 54.98 78.56 5.75 50.94 40.46 89.45 77.52 66.22 17.25 98.27 4.30 70.31 52.80 -15.46 86.60 45.42 68.91 63.35 92.61 73.49 57.81 13.14 30.66 78.33 21.71 99.96 78.97 76.18 77.24 16.93 56.00 28.94 54.34 50.51 1.98 86.27 35.71 9.98 18.68 67.37 79.67 10.24 56.61 31.67 50.30 89.38 84.37 33.59 15.82 4.47 87.33 65.02 5.45 3.82 61.88 24.22 80.22 46.04 99.46 67.09 26.52 80.76 74.37 36.71 49.83 80.97 79.74 10.18 32.04 23.78 33.73 99.91 42.50 66.93 29.50 2.82 58.17 32.58 98.03 47.42 1.32 79.18 65.25 87.33 49.68 30.02 75.63 26.94 32.50 42.43 52.07 24.46 28.05 35.71 27.34 32.03 39.13 12.08 98.24 36.65 93.96 45.05 91.39 67.19 88.32 9.52 58.21 63.18 28.56 3.34 31.84 74.82 10.33 -91.03 2.34 74.60 9.00 15.26 74.90 67.95 56.13 58.86 38.28 58.43 49.98 45.57 87.03 32.82 30.01 25.95 37.03 57.46 53.86 54.02 65.02 24.77 93.24 99.80 54.70 17.18 54.78 20.63 37.00 65.34 92.12 98.43 78.95 0.41 34.60 97.82 1.96 74.52 0.57 42.07 99.05 30.15 53.09 45.84 85.87 77.13 47.65 66.63 41.15 20.43 77.52 86.72 75.51 47.67 2.55 51.85 89.44 11.45 96.73 17.77 48.88 19.45 68.24 29.55 89.01 95.58 97.88 15.80 90.33 85.29 31.00 24.80 74.17 74.79 72.33 41.76 99.57 15.99 88.02 53.04 13.66 39.90 18.85 52.54 54.22 13.33 19.39 63.70 16.32 96.15 51.48 74.94 23.63 93.77 84.72 70.27 34.58 52.43 63.26 -59.13 81.27 77.37 0.10 18.66 24.28 68.19 83.79 24.58 47.27 76.57 36.91 89.56 17.06 36.90 60.53 92.70 93.43 34.09 41.47 96.86 26.39 15.68 93.26 72.71 94.19 50.02 27.93 98.03 70.36 30.33 17.13 22.45 50.30 65.06 90.08 32.05 5.80 14.99 65.46 18.13 47.16 98.18 80.52 33.98 65.39 4.07 23.47 47.98 96.07 11.92 10.42 15.04 21.57 64.11 80.69 83.53 29.55 54.75 14.82 88.54 69.75 5.67 15.58 47.20 35.53 79.01 47.35 6.98 35.12 9.62 21.07 74.42 5.93 56.60 72.37 82.45 31.82 18.45 24.24 85.97 66.57 1.52 36.07 30.67 40.57 85.20 15.97 21.15 80.10 99.61 61.38 25.61 70.67 42.54 35.91 29.96 55.63 49.56 41.77 -51.55 66.47 89.65 30.67 45.68 61.79 12.52 4.55 42.36 11.05 24.74 11.39 55.12 57.37 5.95 83.59 38.30 37.56 41.62 56.67 85.03 33.69 1.45 2.21 53.82 52.15 84.41 76.89 72.53 71.50 97.46 27.84 13.77 59.83 71.55 57.33 85.15 67.53 45.79 87.81 7.24 84.34 81.43 67.06 25.34 32.21 1.48 67.01 44.53 36.50 2.97 59.15 37.58 95.34 72.40 99.08 70.01 6.71 22.27 67.97 24.38 29.22 90.67 23.47 56.16 40.24 38.13 20.91 92.97 62.71 4.85 30.23 90.62 78.35 54.61 69.06 39.56 21.34 3.45 81.79 84.94 8.81 18.68 3.10 20.03 60.47 34.16 74.79 14.12 30.92 75.97 41.29 41.02 94.26 26.95 70.47 86.63 47.43 42.98 38.15 -35.86 49.15 60.85 29.12 62.02 49.75 56.00 86.98 13.80 95.15 99.78 41.62 79.12 90.84 47.42 6.94 21.05 74.11 66.42 50.91 65.56 4.66 98.75 24.00 78.92 41.01 90.35 79.39 70.75 8.28 67.58 27.71 1.67 63.70 29.33 58.43 20.05 68.90 76.69 67.47 87.74 98.24 88.12 44.86 14.52 43.23 28.65 67.09 78.46 32.32 96.07 66.25 72.29 51.22 9.77 67.93 37.40 84.38 13.43 60.31 89.39 14.71 50.10 47.38 85.84 69.82 55.12 64.58 94.49 86.45 96.05 10.96 40.73 51.85 36.95 8.72 49.18 77.09 80.30 91.52 56.64 83.54 9.37 38.67 92.11 31.95 25.70 44.73 18.63 58.38 54.92 37.35 70.50 10.39 57.06 10.80 3.32 77.74 17.06 8.04 -80.97 5.83 30.14 59.84 39.81 11.35 62.91 35.59 77.42 88.54 92.76 20.43 61.60 61.62 34.10 20.83 88.88 81.33 34.94 69.38 53.39 22.23 83.77 46.12 26.79 12.49 89.24 74.29 51.25 34.71 38.32 12.79 82.11 33.24 67.57 71.58 4.19 5.81 82.89 1.62 9.32 84.96 97.27 87.62 87.91 75.72 80.31 4.65 15.83 72.27 52.57 24.60 42.22 79.94 15.03 4.45 61.81 73.40 12.10 92.28 27.38 46.21 80.29 60.88 14.56 31.23 20.03 24.79 27.22 43.84 27.21 29.01 96.66 4.77 92.58 54.32 2.99 93.39 5.89 72.06 45.78 81.81 45.89 23.32 40.48 51.44 25.80 69.84 97.15 61.12 62.14 3.85 46.53 7.00 65.46 26.60 64.48 77.88 50.71 89.71 -88.67 73.96 88.59 54.05 30.90 20.21 22.65 39.65 95.64 70.23 11.08 24.40 33.98 46.76 69.32 34.47 84.32 62.85 10.85 18.54 94.00 72.79 23.39 51.47 55.63 68.14 1.51 1.78 58.24 82.03 46.27 51.67 8.16 3.31 53.84 58.03 94.42 42.55 66.86 9.46 2.73 79.11 29.52 78.22 32.53 34.37 51.20 6.29 75.44 79.93 8.31 46.37 42.03 15.34 31.26 0.32 75.14 80.43 44.41 96.50 36.94 75.09 3.93 56.64 4.25 69.53 32.28 31.20 77.19 35.43 65.87 2.50 35.33 29.77 26.04 17.62 88.46 87.79 8.36 81.22 66.42 17.47 54.48 96.54 22.86 81.04 27.97 87.55 16.67 68.07 24.92 12.40 81.69 8.23 84.30 97.56 43.19 2.50 22.87 13.54 -25.57 39.06 25.22 71.48 85.36 70.03 74.44 96.71 56.75 68.23 95.72 95.61 96.34 14.09 78.52 52.70 90.57 7.90 67.92 19.56 68.44 11.71 26.50 51.54 41.35 37.71 67.29 30.25 49.54 53.30 93.82 10.29 17.72 59.67 6.17 82.44 18.02 54.97 8.21 92.47 2.29 72.45 28.47 50.84 84.60 31.33 32.39 42.86 79.17 70.04 8.38 43.44 70.42 9.10 9.97 31.50 75.65 25.48 21.37 50.59 97.00 47.68 42.44 22.27 65.64 79.84 65.96 80.84 1.50 3.52 45.05 0.15 36.21 82.70 55.67 8.93 87.38 24.93 30.56 68.76 68.68 12.93 11.85 19.71 88.69 51.60 97.73 71.42 89.58 31.26 75.18 30.62 73.26 48.87 33.96 27.77 47.65 82.16 47.55 85.44 -1.30 39.08 99.07 66.49 28.07 57.56 94.61 20.95 87.25 10.44 42.15 41.41 28.71 99.53 53.32 49.92 26.65 95.58 85.74 54.13 69.89 83.39 79.62 72.96 50.22 4.40 29.09 97.31 21.23 56.54 20.28 49.48 31.66 15.96 39.61 34.05 14.05 89.35 31.14 96.54 11.51 21.51 69.83 27.44 62.95 17.62 36.89 28.88 65.02 18.86 32.45 90.81 91.03 60.22 45.15 18.70 90.09 12.56 62.73 74.64 95.46 65.36 21.71 56.75 26.03 63.45 90.15 4.30 31.79 95.77 54.69 0.52 86.52 26.20 93.28 31.52 5.87 53.93 95.00 48.13 47.94 27.83 54.76 44.78 86.17 36.59 6.30 77.62 4.84 0.63 8.85 23.55 39.60 52.75 19.80 10.00 97.26 77.83 88.67 59.15 -53.10 14.05 74.76 7.02 94.61 88.30 97.47 32.64 62.27 58.94 73.83 97.00 9.71 70.85 24.46 78.87 39.57 15.09 22.69 25.95 42.03 33.29 39.98 25.81 36.68 21.05 86.12 36.69 57.84 58.08 99.04 57.82 98.90 20.90 9.39 65.71 71.03 89.13 55.17 40.96 60.14 72.65 18.39 95.05 13.81 69.70 11.40 84.24 85.14 5.48 99.14 95.20 13.17 82.29 14.28 73.11 59.99 70.15 51.76 5.84 32.40 37.57 87.06 66.20 38.93 65.14 52.48 21.03 31.54 9.83 94.43 8.10 90.52 2.76 52.30 71.49 88.50 57.64 36.38 22.87 41.35 40.16 31.29 83.39 76.27 56.71 8.15 78.11 63.74 9.10 57.34 82.23 11.21 53.66 14.71 97.34 95.55 47.27 98.57 24.03 -39.70 48.12 2.00 43.52 8.26 28.86 57.68 31.40 15.94 20.04 85.73 99.17 76.64 6.73 33.99 59.29 30.79 45.41 3.08 75.37 24.97 78.06 68.26 34.24 91.19 94.49 28.89 66.53 17.83 3.30 69.73 96.45 99.49 96.20 90.15 57.88 0.77 24.79 97.24 70.35 77.90 81.08 28.02 70.90 94.91 9.78 45.70 92.31 10.33 76.65 2.82 58.13 12.31 69.13 3.22 54.50 74.89 86.18 65.89 89.78 77.78 72.59 47.61 7.59 56.81 94.95 23.54 2.04 1.34 99.90 12.12 19.98 81.26 7.63 12.09 41.89 18.24 95.27 98.88 0.43 66.99 89.26 16.44 92.39 25.76 88.37 53.42 29.33 41.87 30.48 27.22 59.83 70.91 81.97 15.52 7.37 82.35 23.06 42.09 78.14 -36.28 14.16 2.60 60.27 60.17 1.16 4.20 26.21 90.15 12.84 6.83 85.77 59.02 5.34 14.88 53.88 91.47 58.22 66.12 93.10 23.57 42.08 84.61 8.96 53.91 55.58 59.66 16.04 62.98 25.89 13.03 69.90 64.00 14.76 72.61 84.07 45.08 39.48 36.35 78.33 16.55 21.28 57.59 37.70 22.77 52.35 45.85 75.95 29.35 44.25 57.59 76.59 35.25 39.01 78.86 23.39 99.81 79.08 44.09 64.07 14.25 65.42 30.60 91.67 18.10 56.42 98.60 43.67 77.02 79.98 39.35 59.65 44.62 6.58 96.32 26.60 78.24 59.81 79.81 86.44 51.30 16.45 6.36 55.74 73.47 49.12 54.78 77.40 86.12 96.26 39.19 20.52 66.33 5.59 60.23 18.72 25.43 47.85 7.22 22.77 -64.50 21.31 32.69 89.56 65.06 21.74 28.09 35.42 59.15 16.67 4.81 22.90 7.64 33.63 68.94 15.93 7.97 92.39 64.90 66.18 5.90 98.12 31.72 84.95 57.98 26.26 82.45 50.40 67.17 89.46 34.75 95.65 52.10 48.92 94.01 39.78 83.13 36.87 11.67 14.77 46.50 32.54 43.79 36.67 75.30 66.17 56.73 72.53 39.42 8.62 61.42 1.93 90.48 36.34 89.68 24.51 24.55 20.43 43.39 64.35 60.61 21.82 81.79 35.46 35.33 49.53 57.13 87.61 65.99 20.00 60.19 86.92 17.16 86.88 69.77 97.87 33.21 25.97 10.83 72.67 33.15 72.95 93.44 31.94 90.67 60.08 54.56 32.21 38.45 37.84 30.40 29.69 52.88 66.79 81.81 94.45 68.20 79.76 11.93 69.31 -87.31 80.01 83.12 83.82 60.01 80.44 76.32 16.93 90.76 61.41 46.09 76.98 15.85 24.84 79.52 57.68 59.79 67.01 0.06 53.88 97.72 68.39 40.91 76.33 89.42 26.59 64.07 30.04 28.80 8.48 34.29 45.78 42.37 43.40 99.40 52.76 91.29 80.10 1.21 72.19 57.41 7.98 54.17 33.85 75.20 80.38 1.88 16.26 53.29 22.61 53.89 30.79 35.52 13.91 43.83 67.33 79.48 7.31 61.43 2.12 82.93 1.18 9.66 35.05 43.45 44.75 72.81 19.40 2.19 10.64 19.61 19.37 37.42 11.98 72.27 49.07 95.95 95.48 31.53 75.70 53.73 31.52 84.63 78.99 83.10 49.46 75.97 78.46 11.84 25.48 26.74 5.60 20.01 1.86 99.62 18.24 64.75 70.94 81.14 4.94 -39.91 89.44 23.46 64.81 90.41 61.09 75.88 13.19 16.30 47.95 3.05 69.62 30.80 73.48 94.78 21.58 99.43 3.53 24.44 4.83 77.19 67.57 46.48 94.86 65.32 90.35 37.19 52.68 93.44 18.76 60.27 28.16 82.68 26.01 51.56 49.51 7.23 6.50 13.16 68.10 23.87 50.73 12.53 18.51 59.57 42.90 24.15 13.10 13.39 31.57 71.17 5.71 54.20 78.21 23.80 58.22 29.51 89.55 94.57 2.29 36.72 0.44 14.18 94.91 67.61 16.00 99.63 44.42 25.34 17.89 43.16 5.28 13.92 46.02 94.58 12.02 16.24 41.75 80.08 83.29 38.25 37.56 16.49 41.95 79.50 64.28 71.99 36.77 0.20 62.06 76.98 96.56 58.21 29.69 21.00 9.97 20.75 10.89 23.44 79.31 -29.01 56.09 99.74 64.67 9.12 1.38 35.67 14.15 16.03 19.59 96.25 43.97 96.37 4.47 19.25 60.01 35.85 34.32 22.74 95.80 70.43 22.90 43.10 29.93 32.18 52.30 9.88 82.15 18.83 64.15 46.98 70.11 88.89 91.90 93.14 61.71 74.47 73.95 27.07 45.10 50.27 89.43 59.18 69.55 79.06 9.12 94.22 61.78 91.90 81.90 11.86 36.50 80.62 27.19 63.26 98.54 36.85 86.85 72.89 13.26 10.08 38.26 28.71 41.69 14.81 25.31 18.84 53.84 9.63 19.81 96.11 57.43 49.18 3.32 30.90 9.81 30.37 65.78 92.00 58.38 87.30 94.77 13.48 21.83 7.73 67.80 42.87 97.13 23.25 44.78 86.60 61.80 64.98 91.84 69.29 56.76 50.35 7.65 38.65 87.48 -37.58 9.44 81.12 89.69 57.17 20.60 11.08 80.64 4.23 72.04 3.66 2.15 12.04 35.95 86.72 5.96 84.12 5.22 47.53 90.60 99.44 35.29 85.08 94.58 32.67 52.06 93.40 25.17 93.02 33.64 76.76 40.20 49.06 89.46 11.18 30.79 23.49 6.82 57.17 98.14 79.69 28.64 8.97 63.39 77.44 83.82 3.26 2.32 13.96 99.97 7.96 48.71 18.59 21.47 98.49 43.07 24.28 48.14 60.87 39.80 4.87 2.23 79.95 98.63 29.68 79.45 98.80 12.47 45.31 66.64 78.36 61.00 72.20 57.24 60.18 36.90 26.98 24.91 28.97 85.18 67.41 42.67 85.94 93.43 12.57 95.58 65.41 72.72 0.13 51.56 28.03 6.90 49.18 32.89 93.81 8.45 68.41 52.99 25.30 86.62 -83.08 28.18 71.73 40.65 44.25 9.47 99.61 65.06 70.64 56.23 51.90 78.44 55.37 72.42 55.83 84.22 60.18 57.98 93.25 32.48 12.14 56.57 51.61 85.45 96.60 4.65 92.84 96.29 28.55 96.30 86.68 59.10 91.02 20.22 16.57 19.32 31.90 8.24 60.87 55.56 56.48 74.51 69.75 65.90 62.21 11.70 15.75 76.23 91.05 54.05 99.58 91.41 83.45 12.20 1.50 88.40 40.00 8.75 1.46 37.65 13.40 37.98 97.35 12.19 73.71 65.49 98.37 51.78 73.60 27.23 38.39 99.42 14.91 16.77 54.30 39.01 50.68 99.30 61.89 20.46 34.62 41.48 79.13 46.99 97.46 39.61 75.80 2.81 49.74 53.43 18.33 72.15 31.75 90.30 35.38 13.10 98.30 28.28 51.61 89.97 -85.02 75.16 81.84 4.32 65.00 59.82 54.89 56.63 75.40 42.07 99.02 65.53 78.25 71.69 37.85 69.73 51.91 66.38 10.50 18.22 81.22 48.83 46.86 86.19 8.95 25.64 80.23 2.40 40.14 97.47 56.67 57.37 79.42 66.01 52.49 67.56 82.84 55.24 12.74 35.67 4.49 14.04 66.31 36.34 64.25 15.46 15.85 46.89 38.34 8.53 8.64 88.31 90.97 56.61 17.58 42.79 81.53 94.23 53.72 88.25 10.05 58.13 39.05 18.69 84.25 23.82 45.38 3.47 79.05 43.98 63.13 70.08 92.65 53.95 92.96 17.80 59.38 95.16 95.84 4.31 86.95 97.87 70.12 67.11 38.91 56.42 65.21 21.02 41.89 76.65 55.53 63.85 59.96 23.54 48.79 35.33 92.90 44.82 98.44 86.60 -71.50 50.54 50.49 55.89 87.04 19.30 12.06 9.49 64.71 14.78 1.74 88.22 54.84 79.69 11.93 57.79 13.39 86.24 96.98 22.99 63.70 27.32 69.83 28.29 73.19 59.41 19.67 52.54 13.46 85.52 41.29 29.31 27.75 23.07 79.34 43.25 1.56 15.18 40.76 31.67 0.50 31.02 43.13 84.47 7.42 76.10 74.74 8.97 65.13 9.04 22.34 62.81 62.26 54.10 42.27 0.42 49.56 89.62 20.92 90.45 11.61 43.83 50.16 71.16 57.66 91.34 10.94 35.90 36.92 96.77 3.20 35.62 54.17 86.96 13.11 80.16 92.09 59.71 4.47 76.33 39.08 55.25 97.31 44.94 23.14 19.32 59.80 51.60 95.95 95.11 94.52 41.00 6.13 42.36 85.80 47.37 32.60 47.72 78.35 2.78 -3.16 83.14 96.47 17.92 71.65 61.88 20.86 99.87 23.60 77.70 5.38 86.55 53.76 23.53 63.25 93.33 66.23 48.58 82.03 62.11 81.92 15.85 92.72 93.96 87.95 58.59 82.05 22.90 47.55 12.85 85.84 5.42 92.61 55.49 65.85 31.24 72.24 12.97 87.46 85.76 84.28 60.85 28.00 13.19 53.17 46.15 45.52 11.86 94.61 93.78 5.39 88.57 64.83 99.28 44.80 98.29 26.12 77.32 65.59 7.20 24.40 6.48 9.87 90.95 10.42 6.75 11.74 27.74 99.45 70.21 82.39 46.68 31.93 32.45 21.58 78.54 2.83 56.76 79.65 90.78 99.14 64.28 16.18 5.42 13.33 62.61 50.13 28.66 65.65 61.80 20.78 83.28 50.88 69.23 66.53 12.26 34.99 31.66 27.01 1.14 -83.98 1.18 62.33 93.97 1.28 43.73 47.16 76.48 43.77 30.03 67.00 5.30 91.38 33.67 0.66 29.43 9.48 83.47 98.59 99.97 74.91 25.55 93.48 16.94 15.28 91.51 21.87 68.65 90.99 81.38 78.77 59.39 76.40 32.65 60.04 34.72 49.87 87.24 59.35 41.22 67.65 11.42 49.11 12.32 67.42 80.69 31.85 10.85 38.69 35.88 60.11 82.75 88.61 69.15 57.12 79.78 50.88 15.73 79.12 65.73 4.34 32.48 63.31 98.31 47.50 19.54 20.09 5.01 22.12 84.84 42.23 17.90 26.84 34.47 86.54 45.49 52.94 45.66 64.50 21.88 26.49 99.37 47.29 6.37 8.13 73.28 38.42 69.66 88.65 27.34 52.21 57.07 75.71 46.27 89.40 30.99 23.80 31.38 31.45 9.93 -98.11 34.02 19.98 45.84 1.39 31.03 75.19 22.44 24.74 71.14 59.67 62.84 69.11 56.60 4.89 98.21 1.53 44.06 79.28 16.45 58.63 21.39 60.89 96.70 35.22 83.70 84.34 11.80 4.18 14.50 29.40 99.70 17.43 54.78 25.63 67.35 17.87 66.92 33.38 63.93 19.15 84.16 73.28 70.22 68.35 55.03 17.66 68.93 35.39 51.64 28.75 83.58 10.91 80.22 65.26 90.02 31.57 67.56 77.72 79.51 41.71 8.47 57.94 45.98 58.98 4.15 38.50 34.24 98.98 97.89 83.69 83.10 50.63 92.86 46.95 94.60 16.68 96.79 54.04 59.70 32.00 24.22 63.94 9.63 9.98 57.49 57.47 42.03 19.66 79.88 14.41 22.85 10.94 2.34 30.45 58.14 1.70 47.79 61.06 55.92 -39.66 38.02 19.78 32.73 4.32 5.93 21.10 79.29 59.43 63.34 37.67 33.43 10.49 31.73 50.53 68.02 18.05 95.37 77.97 85.40 34.08 59.59 23.73 22.54 93.31 70.80 70.39 67.28 18.80 57.32 21.09 76.26 57.43 51.38 56.81 85.62 17.42 58.53 62.37 51.34 3.60 32.05 30.13 77.53 18.50 74.62 49.14 31.45 76.92 13.60 43.18 18.79 75.01 4.75 55.13 7.67 50.26 45.48 76.72 12.21 53.69 24.44 68.84 14.97 54.61 84.52 70.42 47.23 86.81 12.22 21.99 19.12 97.31 60.11 48.82 21.54 61.55 56.06 97.89 83.90 46.55 8.18 36.30 52.67 57.69 5.80 92.02 67.84 29.03 65.33 89.72 88.08 93.77 76.98 16.43 67.82 37.64 54.88 65.72 23.69 -83.34 72.38 81.26 86.60 29.25 79.40 48.03 1.97 5.89 99.26 71.08 23.97 58.32 65.66 28.90 97.47 51.33 92.85 45.71 65.48 96.58 58.96 26.00 40.28 23.36 21.83 16.95 9.80 83.98 85.87 35.37 72.87 16.35 15.80 98.16 5.07 91.93 7.93 88.53 31.10 87.73 86.34 34.04 41.19 50.67 97.97 57.57 50.91 70.76 30.08 73.96 37.95 47.97 7.44 41.39 99.69 87.05 98.30 85.52 80.17 18.95 81.84 92.64 78.26 20.32 8.61 28.46 27.08 93.80 5.39 23.16 41.46 49.57 97.14 54.77 2.32 4.42 85.27 12.48 41.95 71.77 74.62 73.87 76.80 68.10 94.65 59.80 76.60 63.60 43.05 80.14 93.57 74.59 96.41 60.35 81.76 11.46 2.88 72.17 20.10 -67.00 7.33 11.45 91.58 51.51 91.70 27.39 85.23 60.43 16.50 40.25 0.78 36.31 87.83 0.08 50.23 61.38 67.16 66.53 64.67 13.93 92.04 7.80 50.74 65.38 28.64 32.11 50.56 53.27 91.45 43.10 21.64 73.33 48.86 27.87 76.40 49.06 35.98 41.80 98.39 57.57 24.94 98.66 20.20 63.79 97.15 66.83 64.38 39.49 12.22 46.74 86.83 1.36 2.45 86.47 60.38 21.07 30.44 10.15 39.75 93.28 45.68 26.91 35.54 1.94 38.54 95.33 56.81 66.21 66.12 54.21 68.56 19.76 50.64 47.57 18.11 73.35 14.95 45.30 88.41 60.79 96.43 6.13 84.65 62.08 63.84 13.00 56.01 90.65 78.10 30.74 50.19 39.63 51.47 32.71 76.67 92.64 38.25 51.17 76.01 -9.98 65.35 99.21 17.89 6.33 46.18 49.52 23.50 48.53 81.22 44.48 2.52 43.61 97.93 3.21 62.64 19.96 56.79 70.97 67.23 56.94 56.68 46.78 96.86 7.20 11.42 26.28 34.14 61.13 18.72 60.42 37.39 24.48 32.97 5.37 16.84 32.70 4.10 42.79 16.90 80.37 76.82 16.18 60.15 6.06 96.63 55.43 99.71 92.88 46.98 93.10 39.12 53.34 52.97 10.63 21.10 43.59 22.44 70.05 20.97 44.24 84.63 49.15 89.08 69.20 2.27 97.08 63.08 31.37 41.41 11.27 67.37 94.31 46.41 27.66 12.12 30.41 9.53 64.45 21.67 33.45 33.33 49.70 86.18 14.15 48.85 2.47 92.23 23.82 10.99 85.08 9.11 53.39 89.21 69.93 54.14 73.01 42.81 31.59 93.17 -58.52 74.07 61.94 94.25 49.79 18.36 59.54 61.31 91.10 73.91 74.09 96.56 0.66 12.54 5.91 11.53 20.69 24.65 82.99 7.92 25.57 0.76 58.40 61.46 11.87 55.47 1.81 51.84 85.67 89.05 52.41 25.25 99.48 41.29 33.83 76.22 24.49 23.92 67.32 46.55 52.67 21.16 61.43 4.14 1.69 55.18 82.25 40.78 12.61 25.94 63.31 91.90 62.34 81.83 26.44 11.32 8.08 53.84 2.41 46.81 89.03 65.73 46.54 65.73 55.71 30.17 64.19 45.43 18.90 95.61 16.91 30.34 85.38 13.30 90.49 30.55 24.45 88.33 72.97 28.82 56.34 85.19 81.73 57.62 69.86 4.66 24.73 79.03 2.99 12.97 83.71 99.07 54.48 91.36 68.88 11.72 94.61 12.07 43.87 93.66 -20.15 63.28 83.73 6.74 73.80 48.19 86.89 74.75 84.28 67.01 47.37 79.00 82.83 7.62 8.38 2.44 33.52 81.32 30.08 26.77 27.80 21.43 43.64 54.20 24.99 39.65 90.40 21.12 5.15 49.26 36.18 34.09 38.35 67.16 97.01 66.80 60.07 47.91 76.18 59.92 41.91 15.81 58.12 17.34 58.32 30.69 68.89 0.54 99.85 55.94 24.72 46.97 77.43 12.34 53.22 54.04 71.73 42.97 23.89 95.86 46.94 85.88 52.03 63.60 0.40 63.34 99.59 82.53 19.98 86.62 90.26 36.38 23.49 23.34 63.20 94.13 93.07 67.25 93.98 17.83 8.65 69.97 36.12 7.06 41.93 41.86 42.92 51.07 61.35 64.21 11.72 86.83 4.44 36.84 28.67 18.31 37.14 84.68 91.47 55.13 -29.17 6.14 70.95 41.53 48.14 55.50 64.01 90.11 69.28 57.42 28.75 55.95 57.11 87.28 47.18 32.44 50.49 68.91 83.91 11.14 88.75 47.83 97.98 28.55 89.50 44.25 38.37 14.42 94.49 43.47 82.19 2.36 76.86 14.41 20.03 80.84 1.97 44.77 62.10 82.25 5.42 0.37 23.80 99.81 5.46 58.16 25.03 13.09 32.58 72.07 18.26 17.42 86.91 14.15 47.81 32.60 50.92 87.05 88.77 60.54 69.16 75.57 53.58 98.08 51.09 85.64 31.37 8.59 21.86 99.72 40.40 53.06 22.60 4.78 2.65 67.23 2.84 11.49 68.61 10.84 93.20 16.49 69.39 54.23 42.50 89.50 45.37 93.97 78.13 79.07 11.85 30.64 14.02 14.51 8.24 74.08 48.97 35.24 95.85 22.06 -19.26 89.98 59.25 59.26 0.94 99.90 22.81 48.45 48.92 94.78 33.58 95.40 27.17 71.59 92.79 23.15 79.90 78.83 53.73 3.53 70.31 0.70 22.81 5.92 78.49 81.31 45.26 31.08 98.71 7.58 30.38 5.29 67.10 58.85 86.92 23.58 85.83 74.91 82.07 26.67 94.57 39.72 64.62 76.20 49.11 94.23 30.42 21.43 60.49 12.42 38.01 78.85 12.43 67.75 30.49 46.77 95.94 11.33 1.05 28.87 45.16 17.65 48.35 66.97 58.77 79.91 53.86 42.24 0.13 47.36 31.18 73.49 87.60 53.61 28.13 88.30 67.80 29.33 84.02 36.98 35.03 36.94 27.46 42.67 28.93 39.37 1.76 89.57 56.56 37.17 61.42 95.29 89.11 75.91 59.21 73.69 55.18 87.22 18.89 76.12 -40.99 95.33 67.52 5.76 59.89 20.62 32.02 53.91 14.63 43.54 15.13 56.02 87.96 76.48 80.06 73.52 62.91 83.80 58.00 93.94 53.18 22.59 71.77 51.10 60.17 82.22 51.34 43.52 76.89 7.41 74.25 88.60 4.32 56.30 15.95 54.46 50.53 81.09 42.38 98.41 5.82 23.24 85.47 52.35 17.34 83.78 21.27 42.75 0.56 56.24 86.95 59.96 57.71 9.86 91.04 18.26 64.02 23.77 24.26 71.67 59.66 26.10 72.04 59.23 75.46 58.53 79.62 86.44 55.75 50.54 1.08 20.11 29.33 99.10 13.72 46.90 50.66 39.21 19.10 39.93 70.65 72.28 69.94 53.09 60.07 60.84 26.63 20.66 13.60 93.29 66.39 54.22 63.06 98.13 42.36 44.83 1.40 57.71 34.55 88.76 -35.26 36.24 33.92 27.07 22.00 25.96 34.65 10.67 16.02 54.47 49.73 25.46 46.99 14.86 67.33 79.10 4.07 25.40 6.00 19.19 9.69 86.57 89.48 98.86 25.53 40.46 27.44 70.91 31.27 95.02 62.34 33.63 31.57 61.96 44.77 52.88 62.74 93.78 21.35 28.01 48.73 64.06 41.44 70.20 12.88 10.79 69.40 57.75 30.86 80.53 95.64 76.43 86.72 32.45 78.33 68.99 61.28 71.77 46.29 97.68 91.83 31.79 44.67 41.99 20.79 29.49 77.35 52.08 14.14 9.94 85.08 61.78 32.57 98.72 17.04 80.93 54.70 21.21 15.22 44.77 3.96 6.21 79.04 42.12 71.22 85.13 98.27 21.50 94.61 32.38 11.88 23.26 36.23 92.42 48.62 37.11 66.70 56.16 75.77 23.43 -30.64 34.25 3.49 24.93 93.50 13.50 29.40 75.40 89.51 51.09 28.12 70.52 81.55 90.30 86.41 59.45 60.54 18.89 93.27 0.97 19.30 67.09 72.00 87.23 40.72 14.26 38.44 68.05 72.81 82.32 59.81 1.88 41.52 94.89 84.61 14.58 35.65 3.20 9.73 7.75 49.72 96.01 96.69 18.68 94.70 62.59 63.37 44.91 91.64 77.86 13.38 26.36 61.07 84.34 8.63 6.60 47.51 64.23 27.02 24.60 72.92 69.32 16.19 40.68 73.24 42.03 45.44 39.68 70.04 35.81 94.48 62.39 58.25 80.08 78.42 1.66 59.77 45.75 42.25 92.50 72.06 13.56 80.50 5.08 18.80 3.88 98.67 57.97 10.51 21.69 82.51 87.02 80.86 69.72 19.62 1.95 70.36 83.38 39.15 25.23 -80.98 7.03 1.63 57.40 99.71 23.63 2.73 72.88 80.24 42.11 71.16 21.58 95.10 13.06 94.96 83.25 16.95 50.42 19.72 9.42 85.57 27.65 60.03 91.04 65.00 41.70 38.72 70.77 31.37 28.07 66.48 26.53 89.94 4.96 53.94 68.18 92.29 7.82 39.42 66.87 72.25 68.15 75.90 61.97 29.40 8.74 34.21 27.40 36.50 25.85 16.22 31.63 65.66 20.99 6.46 30.33 58.20 45.24 11.46 5.77 37.47 90.69 16.62 84.65 12.01 6.35 81.79 33.61 9.45 62.63 10.91 30.12 48.33 19.72 55.81 5.30 12.02 33.89 61.31 47.44 4.58 70.75 42.85 88.66 8.78 23.76 48.37 60.09 5.78 52.55 5.06 63.28 9.41 46.03 10.37 51.67 85.80 96.86 2.21 7.75 -3.57 49.03 28.18 36.01 38.52 14.98 72.43 99.44 3.84 24.47 94.60 98.54 37.05 46.26 51.95 59.26 32.20 4.75 29.04 45.78 75.31 2.39 14.71 86.04 84.07 35.49 83.40 50.52 8.55 86.80 61.72 67.14 64.80 3.98 26.34 64.60 47.46 0.94 35.04 89.12 5.04 20.48 58.99 40.89 64.27 74.88 74.71 5.00 69.44 99.43 54.93 67.01 65.31 84.70 99.55 4.85 76.81 15.61 58.64 30.58 86.06 66.64 16.51 43.72 78.63 29.24 6.41 67.34 65.91 43.74 75.08 4.96 61.02 65.55 71.16 37.99 54.68 99.55 46.61 70.32 13.97 60.43 33.76 47.95 24.55 94.34 14.20 90.69 76.41 4.05 40.27 92.14 28.98 17.12 41.21 27.43 6.58 21.28 68.56 88.61 -6.75 9.66 43.45 71.88 84.18 72.36 21.56 58.78 82.63 21.13 75.41 70.10 45.00 59.65 60.68 86.96 11.72 83.92 71.24 18.72 1.50 27.11 96.38 32.92 44.35 95.11 37.03 53.20 22.21 92.59 87.86 95.08 3.62 18.66 81.01 67.93 66.43 8.48 26.92 5.00 66.20 83.63 53.22 72.74 56.77 34.79 87.96 22.89 71.83 22.20 99.59 55.22 88.58 84.88 10.89 19.72 99.57 51.36 35.51 72.74 93.21 77.79 78.27 19.59 75.81 8.59 38.07 88.32 46.66 84.34 14.46 18.02 78.43 38.20 62.85 55.40 95.73 70.01 83.79 62.02 30.00 4.00 50.42 2.47 16.65 53.07 83.27 39.44 39.92 12.68 96.72 26.73 7.70 32.19 86.58 15.94 24.72 3.52 27.53 28.77 -47.08 10.77 44.29 33.96 33.10 76.68 37.98 46.65 15.55 69.44 26.87 4.75 47.44 69.93 33.73 87.50 5.16 45.82 31.87 22.49 47.56 62.56 65.81 0.49 97.65 36.40 87.58 0.57 36.55 94.47 1.69 7.29 5.46 84.86 60.34 83.89 4.94 70.91 25.94 15.73 39.85 33.47 30.46 99.25 87.15 29.94 55.00 11.76 90.64 28.79 3.05 69.03 99.49 79.03 87.43 89.71 98.09 80.71 67.11 11.07 75.47 51.56 66.82 1.91 84.93 82.83 68.63 85.34 87.33 75.39 73.09 2.70 27.21 99.42 43.52 95.08 62.31 42.36 58.55 41.77 20.73 6.11 74.80 76.60 40.56 1.73 44.13 89.10 4.14 70.06 27.28 66.19 89.80 53.32 36.26 17.22 52.48 74.15 78.28 13.84 -94.95 63.67 73.64 36.68 21.28 59.71 43.31 72.01 60.77 0.69 7.24 61.20 42.78 45.03 10.75 51.38 54.15 70.66 56.64 10.12 70.91 72.38 92.71 3.86 66.43 28.48 4.61 32.80 40.90 86.91 46.86 46.69 91.30 2.12 3.28 50.82 70.66 57.71 30.43 48.98 63.48 63.40 32.35 10.89 16.26 99.38 54.62 31.43 54.01 55.43 38.79 56.52 37.34 71.29 36.28 82.00 30.08 0.14 94.00 30.36 32.93 95.41 10.08 34.48 27.26 50.22 62.61 32.85 20.07 98.75 80.22 38.95 74.12 9.64 84.06 96.40 0.15 68.54 54.58 93.64 1.73 14.11 69.25 94.93 85.65 76.24 78.83 4.69 75.99 22.95 26.28 95.91 77.24 38.96 68.27 90.74 18.38 82.03 69.38 28.11 -28.82 51.39 42.34 56.54 76.60 17.17 15.24 87.99 13.04 64.96 88.98 48.65 99.42 7.29 57.00 31.39 37.24 18.86 84.19 32.09 31.14 0.62 69.00 8.63 34.92 34.98 96.30 27.15 95.58 23.22 81.43 16.88 49.05 23.65 23.64 72.92 49.96 33.06 78.67 38.77 1.35 42.72 6.84 52.39 24.23 92.12 22.34 55.45 61.01 32.81 86.68 35.45 59.69 31.34 0.28 71.85 78.79 10.17 29.27 83.12 84.35 47.60 91.38 20.37 61.54 77.93 3.47 44.53 38.07 4.02 90.38 42.24 34.31 47.50 20.47 69.28 56.65 46.05 29.76 68.03 82.41 82.93 5.32 57.90 98.40 22.40 93.23 42.81 59.80 52.79 95.98 65.50 69.16 63.76 35.35 4.04 15.94 70.28 95.76 3.03 -16.01 57.52 35.23 83.30 44.79 65.92 16.42 50.66 34.01 64.55 30.83 22.14 22.71 18.58 66.07 34.51 70.57 66.35 99.03 37.38 0.69 2.03 79.20 13.21 87.33 49.44 72.39 97.44 28.75 21.22 53.99 3.81 18.27 83.28 45.73 37.36 43.97 72.38 19.75 46.53 45.23 56.09 13.97 1.35 57.73 38.17 34.10 75.57 0.98 4.76 87.48 44.27 66.63 63.39 83.25 94.22 91.83 89.29 32.32 52.27 81.91 51.33 47.30 72.23 42.91 24.92 19.02 38.54 60.92 8.87 44.77 52.83 93.71 29.71 48.41 35.38 83.26 93.37 88.98 20.57 84.71 98.06 30.85 97.48 15.14 46.29 61.27 82.67 94.44 34.72 54.40 22.56 6.86 28.30 27.29 58.22 72.40 64.16 39.79 2.84 -46.86 45.52 63.18 84.09 5.49 10.90 18.09 34.10 70.09 36.25 92.46 20.70 52.21 41.11 21.83 73.46 35.05 59.84 57.63 65.58 77.59 41.61 39.65 65.22 74.80 87.58 76.80 14.95 40.49 80.98 44.39 70.10 45.64 29.47 60.41 78.26 38.47 47.79 44.86 37.45 70.63 57.34 15.14 92.16 9.15 83.68 32.49 59.62 1.49 63.64 64.33 98.74 67.05 78.40 58.04 91.09 29.29 54.56 91.28 16.52 30.72 88.75 59.04 81.01 42.80 86.25 21.95 73.62 56.69 90.78 27.52 46.74 74.72 66.78 45.64 42.41 64.53 60.78 76.16 67.05 4.29 29.69 36.49 80.94 47.60 73.48 17.48 54.82 92.72 67.25 21.33 53.90 11.67 95.86 36.48 83.47 0.44 16.83 31.80 30.88 -86.39 70.31 74.02 31.06 45.67 44.28 0.56 92.51 18.18 92.38 48.29 84.32 31.84 70.86 92.25 33.50 13.41 79.04 22.40 11.41 31.15 25.52 62.16 2.13 55.75 0.13 69.67 97.65 73.83 88.65 93.35 94.25 93.88 1.80 55.68 27.42 31.38 98.31 18.72 54.74 69.32 87.44 70.06 49.46 59.46 60.68 88.71 57.96 85.33 92.03 31.78 54.56 1.63 64.29 93.17 3.21 89.66 68.00 87.65 79.74 68.18 16.18 92.19 51.86 75.19 17.89 64.92 69.00 82.79 75.77 48.24 72.71 26.24 98.40 19.43 93.26 63.21 66.10 10.39 59.79 90.99 78.78 71.55 32.94 12.98 47.27 82.39 60.18 77.95 99.42 31.64 35.55 56.43 44.31 54.22 12.33 84.66 92.62 29.74 56.35 -12.24 58.03 32.33 56.19 40.31 61.12 9.85 5.42 33.88 37.72 79.86 21.22 98.23 53.23 70.62 74.44 88.17 48.45 17.50 44.42 55.59 67.40 87.76 53.48 70.95 78.40 7.68 42.50 80.75 88.64 84.89 85.29 40.53 81.83 13.35 75.82 91.94 7.05 87.63 28.32 43.75 93.82 95.35 0.39 16.08 45.89 5.88 81.93 61.58 39.95 0.53 42.43 70.38 59.26 43.92 77.35 58.75 13.97 59.16 80.98 81.61 35.91 85.40 55.11 82.54 60.03 14.67 87.48 39.13 46.75 56.14 41.36 29.55 37.38 62.36 51.66 60.77 72.22 56.03 94.98 39.66 89.60 49.78 54.24 21.95 47.39 46.51 32.55 56.97 37.78 2.97 13.47 27.59 35.54 67.03 23.05 43.65 11.46 65.32 77.68 -76.45 73.70 84.54 50.31 52.79 95.63 94.95 18.85 76.60 26.72 22.14 6.90 0.57 16.32 82.71 32.46 71.94 85.36 33.57 70.66 0.82 79.26 30.46 71.81 88.76 14.88 52.83 85.63 36.53 86.97 75.15 32.88 85.66 86.31 80.26 36.07 22.27 86.47 8.33 54.92 41.03 76.89 27.83 61.85 39.00 30.00 20.47 78.86 32.70 50.13 10.01 27.39 31.02 29.93 50.34 28.22 83.03 76.49 0.74 66.60 1.02 62.03 20.10 48.53 4.73 38.36 43.31 35.54 0.24 94.57 60.69 77.61 49.07 74.36 6.02 19.50 48.73 68.80 82.50 94.40 38.08 97.65 18.45 1.77 32.16 3.32 41.10 43.12 9.26 63.92 94.44 74.69 3.99 7.79 47.23 22.47 19.63 21.78 79.34 76.67 -24.60 72.18 0.27 38.50 31.39 23.25 15.73 81.79 44.27 60.67 73.45 58.13 40.48 46.16 54.31 29.86 44.11 86.20 59.70 18.55 88.93 10.94 64.51 93.15 28.25 85.84 55.17 74.70 46.29 62.69 16.47 9.25 28.33 68.18 96.97 1.00 31.84 44.53 64.19 20.24 69.93 39.17 57.93 71.98 66.80 15.10 24.63 80.26 10.27 42.05 8.58 27.96 76.98 92.28 25.64 54.16 26.10 22.40 47.53 5.74 41.77 68.04 81.59 82.05 98.68 78.13 48.68 58.73 40.37 3.70 10.85 48.89 10.76 45.10 8.30 36.14 4.13 68.46 65.65 18.55 55.93 86.07 86.18 76.00 57.99 28.27 53.80 88.88 86.83 28.15 38.91 37.69 34.97 35.62 10.03 98.96 20.45 16.67 35.73 5.98 -42.85 63.13 25.23 53.26 58.49 90.34 88.78 95.06 99.51 72.82 77.68 74.77 7.64 80.56 56.20 25.64 89.72 55.83 11.67 72.21 16.62 26.35 96.48 71.27 37.00 22.24 95.05 35.53 25.10 0.55 55.02 62.72 90.88 34.58 74.68 12.40 18.17 83.90 42.12 22.45 20.43 62.57 40.70 98.10 89.04 4.79 19.32 57.03 9.29 89.38 55.75 3.11 49.36 87.84 7.82 0.40 31.86 68.83 16.49 70.33 54.88 67.10 48.24 28.32 65.82 22.01 27.10 78.06 34.41 53.70 46.85 53.39 28.77 24.45 35.98 95.62 84.51 20.29 98.13 83.81 25.47 20.69 32.39 100.00 35.69 20.59 14.92 36.16 12.39 91.75 13.43 88.00 76.50 16.93 48.23 93.49 42.83 85.07 62.91 77.85 -71.82 99.64 74.12 84.07 3.64 31.28 27.29 71.65 64.38 36.03 53.85 70.67 51.32 69.21 68.82 40.89 55.80 68.10 51.43 35.91 30.80 57.09 8.13 22.05 34.78 55.68 42.33 29.92 11.19 70.10 72.36 35.84 86.28 36.69 70.84 88.86 71.13 28.08 79.82 95.09 30.07 68.37 65.28 49.30 60.24 52.23 74.17 8.19 51.44 14.51 41.17 89.06 45.46 65.69 76.54 74.66 57.70 86.92 36.12 5.02 34.86 48.39 73.72 35.08 29.38 84.90 59.26 36.60 93.15 52.61 74.18 88.11 16.86 88.40 89.99 39.66 74.09 21.67 68.60 18.82 16.54 8.48 26.59 95.05 1.75 19.96 93.18 1.13 62.20 23.83 90.93 82.20 84.56 20.63 71.70 14.48 65.22 19.41 47.06 81.31 -87.59 96.26 66.35 21.70 36.53 26.26 71.68 11.57 20.30 24.33 28.32 13.88 77.33 32.45 4.77 65.33 4.28 94.95 5.73 97.34 81.08 94.17 59.65 6.93 14.22 52.29 51.37 12.71 89.17 13.48 99.52 9.90 0.53 89.00 86.58 5.73 23.72 73.09 13.81 67.68 82.10 23.26 55.46 55.76 40.79 12.02 70.53 44.22 91.46 61.70 85.44 37.21 83.66 33.16 7.27 46.42 66.14 81.19 68.21 99.19 49.99 59.17 53.60 42.71 60.93 86.87 44.51 59.86 51.32 99.41 26.07 16.14 61.36 36.30 84.12 31.99 78.40 80.54 42.36 31.39 49.55 70.00 29.10 1.68 73.96 54.74 63.68 91.77 82.09 7.01 4.56 15.58 39.27 64.09 86.81 70.28 23.45 62.16 15.14 19.49 -70.64 87.80 7.05 86.88 91.38 74.57 73.52 33.27 36.70 60.54 90.15 46.83 60.93 59.96 54.09 35.29 70.05 7.70 62.86 97.58 45.50 43.95 28.84 4.36 51.51 66.99 38.69 37.38 93.87 65.06 63.82 75.88 85.44 52.09 74.44 7.97 35.28 32.26 82.37 59.83 84.79 78.42 28.21 66.02 0.37 11.59 37.68 91.09 59.52 10.80 72.27 9.07 34.80 90.53 31.94 31.31 80.24 66.58 51.08 61.31 19.15 41.77 10.17 24.50 72.12 1.45 58.18 39.78 99.69 48.05 30.52 96.60 2.95 85.18 68.87 37.80 59.28 48.71 1.34 59.04 94.01 92.15 71.67 52.86 88.65 6.89 86.13 2.05 53.87 95.88 30.19 43.70 16.37 72.09 16.55 66.87 98.52 85.75 5.03 30.96 -71.19 16.48 42.15 70.91 20.36 75.10 10.99 82.47 37.34 15.27 42.55 27.91 63.98 90.87 6.44 32.72 50.63 53.94 77.50 31.33 63.19 26.26 57.72 34.58 19.07 29.77 4.09 69.02 92.26 62.13 64.68 37.36 71.76 96.77 79.47 95.60 90.85 25.66 57.33 40.38 87.89 55.15 54.24 90.53 67.01 31.48 37.80 35.57 56.50 9.81 9.37 13.34 69.81 1.49 95.04 24.11 74.52 95.30 7.32 16.73 11.68 9.62 84.64 87.92 68.50 25.32 1.93 67.45 38.16 49.67 99.84 67.44 82.85 31.46 59.12 84.36 84.46 81.36 23.63 13.05 90.86 91.52 61.13 79.52 55.35 60.32 18.86 40.76 35.78 8.40 59.70 74.10 18.69 11.09 15.25 34.78 32.90 72.12 73.97 6.30 -44.65 55.32 95.89 60.31 69.44 9.35 41.67 82.78 78.19 30.04 33.44 11.41 75.11 22.27 44.24 1.88 30.59 68.65 63.17 75.39 80.79 36.61 9.47 16.78 69.68 5.17 14.48 39.16 31.58 65.57 57.21 76.73 73.93 25.22 70.33 10.85 37.08 41.11 43.63 49.39 16.81 18.39 87.27 75.10 93.28 65.75 14.81 1.80 8.22 75.35 24.21 30.35 18.13 67.84 46.65 39.72 75.74 86.94 88.57 49.41 70.36 97.60 76.85 54.12 68.40 78.23 61.17 4.19 11.42 31.39 14.38 25.33 2.36 29.85 60.51 3.39 68.20 85.95 23.93 50.44 37.60 24.81 88.74 80.35 59.59 81.14 42.57 90.37 60.04 2.26 43.95 40.40 60.70 93.24 20.33 50.26 86.61 38.59 29.38 90.35 -8.76 76.95 55.48 35.04 30.84 93.47 28.16 43.75 73.20 46.04 37.15 53.63 49.17 99.37 88.71 50.72 99.29 75.57 68.69 47.80 98.97 91.12 93.14 91.14 61.08 11.94 60.02 85.84 82.01 70.92 84.01 12.63 48.96 0.52 15.66 77.60 49.83 37.54 43.57 59.69 32.40 74.12 68.79 90.80 29.57 97.63 7.96 80.40 45.86 20.29 87.87 65.23 31.15 83.01 67.42 78.49 46.77 25.26 77.08 72.10 22.09 48.30 47.39 12.36 10.60 92.88 32.02 39.80 59.42 31.07 68.91 77.38 85.11 44.00 23.99 76.25 36.15 60.35 47.59 61.87 38.93 17.79 46.93 63.47 5.12 38.42 35.44 3.69 75.69 71.61 19.72 22.05 37.82 95.47 77.63 90.69 7.10 63.18 3.27 73.93 -19.86 31.31 15.78 90.99 0.92 54.95 69.92 1.57 10.44 48.89 92.13 86.65 54.18 63.31 92.64 0.17 79.87 45.65 66.28 50.86 75.58 25.53 62.07 25.35 40.38 53.97 44.61 76.08 45.84 10.01 31.52 8.88 31.19 51.06 55.23 98.70 89.09 75.05 72.38 54.03 7.87 56.81 81.57 59.94 29.91 89.40 8.52 98.03 28.55 59.87 34.42 78.30 51.84 11.84 75.56 48.29 28.37 88.79 5.08 88.24 2.32 43.91 71.83 28.88 51.94 82.45 57.59 15.38 34.47 53.03 51.13 42.99 67.52 35.85 81.80 60.02 61.25 27.16 32.22 60.85 22.87 27.89 0.36 80.93 84.03 4.17 42.67 49.11 57.58 10.21 24.14 83.54 80.54 46.38 44.18 74.19 78.79 47.39 31.23 34.88 -62.86 18.20 68.94 70.50 83.92 77.47 83.78 39.24 92.46 51.30 31.08 84.63 96.66 17.55 15.02 45.56 96.89 13.41 58.05 64.66 94.12 44.67 22.12 10.27 45.40 44.47 43.51 94.34 48.54 7.92 91.19 40.69 47.34 65.96 15.83 23.69 75.61 83.46 88.97 76.63 54.24 99.32 94.39 33.37 47.69 76.93 41.89 31.11 60.51 48.92 87.90 50.62 59.00 8.21 64.05 26.38 70.49 11.01 7.11 54.84 76.72 66.86 32.80 46.17 32.67 86.10 30.96 51.09 26.94 0.50 97.07 39.50 38.99 68.92 45.12 62.94 0.81 12.59 96.01 65.67 41.34 63.04 46.05 93.01 27.95 46.17 20.88 27.18 8.34 55.87 8.30 24.42 70.92 91.36 13.52 21.36 84.36 59.25 4.98 5.84 -84.80 68.48 45.84 70.62 9.13 95.02 40.31 37.13 63.51 8.12 56.05 30.74 58.69 77.79 76.64 63.72 39.51 12.89 22.08 50.73 61.96 53.56 23.47 67.64 59.37 46.85 51.01 77.85 66.62 59.96 92.87 50.43 52.44 11.79 64.53 32.83 12.18 48.66 20.51 95.24 90.57 91.05 46.57 55.15 3.89 55.77 87.74 21.17 42.65 85.15 28.50 43.71 72.93 38.59 45.07 26.20 98.89 33.69 82.84 7.43 18.84 64.29 90.12 16.24 41.63 30.87 9.83 12.81 16.20 28.02 33.30 19.09 78.72 75.43 67.47 73.58 73.85 33.51 53.65 3.96 11.44 6.63 39.29 60.29 9.26 30.81 81.48 99.51 54.15 99.59 77.61 14.71 65.39 15.40 54.34 57.14 99.71 70.10 61.80 40.20 -51.04 97.45 78.20 16.49 35.46 49.85 43.68 62.16 85.78 83.45 80.08 31.11 45.71 44.16 45.73 34.36 29.78 37.60 52.35 49.79 81.07 7.08 2.39 22.57 24.60 87.08 48.81 30.48 52.71 29.26 4.51 13.46 35.53 73.42 16.85 41.57 12.43 72.40 6.63 29.36 29.46 15.58 19.53 47.19 15.69 52.98 31.75 55.12 33.48 83.16 17.23 94.64 34.47 22.56 78.41 77.61 26.17 55.27 93.10 83.47 98.00 7.02 3.70 1.53 8.69 5.36 37.92 31.53 16.70 0.92 12.38 3.09 12.09 54.43 45.67 88.73 88.15 21.66 34.19 91.82 12.68 83.74 50.86 86.72 40.17 38.72 9.23 85.07 99.08 37.59 47.68 86.38 24.98 99.15 57.36 31.28 36.77 7.56 9.22 98.79 -72.07 44.53 31.68 14.72 59.51 90.06 5.67 38.29 12.73 96.48 97.92 21.39 79.85 70.94 12.30 24.25 28.68 71.70 10.21 59.55 10.28 88.20 4.81 51.33 62.14 5.60 4.33 39.55 45.28 23.49 95.17 9.75 0.01 56.72 85.89 58.98 59.82 74.82 12.20 55.62 96.76 45.12 44.46 43.09 2.34 37.74 28.53 81.72 99.21 10.70 28.51 66.47 0.14 77.58 8.08 88.59 89.65 1.90 7.45 71.99 18.41 95.03 72.51 44.73 26.32 72.74 83.91 50.60 54.65 74.35 36.00 75.79 19.81 50.01 59.39 22.71 18.57 98.60 10.19 8.46 12.55 6.87 89.94 46.50 15.15 80.57 0.40 75.69 58.93 97.13 46.16 24.84 80.98 94.83 84.25 51.66 13.01 73.64 64.81 74.90 -9.48 30.03 89.55 84.36 74.17 95.02 31.39 31.11 60.99 34.80 52.78 78.24 38.75 84.95 33.64 61.03 70.46 41.47 78.54 61.16 21.24 51.57 70.98 76.14 2.23 48.68 7.23 61.30 60.40 7.79 28.52 66.69 53.07 39.14 96.49 7.35 11.72 44.22 6.28 43.46 3.80 63.55 60.82 37.88 22.52 13.46 34.87 74.18 73.41 14.58 5.29 85.91 14.32 90.09 61.84 24.19 30.86 9.85 62.62 25.23 72.22 39.17 54.11 22.70 41.96 57.97 21.06 66.42 94.44 22.98 92.41 68.86 27.65 4.90 76.84 10.75 93.25 29.80 32.77 72.94 32.53 51.27 59.32 65.20 33.77 67.97 50.87 98.58 96.44 18.10 34.17 99.95 35.53 47.06 95.11 73.59 56.45 62.39 21.95 31.03 -55.20 46.68 66.54 44.38 34.47 75.13 39.50 37.63 94.35 94.76 68.08 5.00 72.44 18.17 43.44 64.27 9.55 95.53 95.96 32.57 54.66 20.06 80.99 3.63 94.43 99.85 80.30 29.47 39.53 58.26 28.85 10.54 55.63 46.45 22.40 94.02 32.78 30.50 87.28 17.01 79.13 90.43 79.39 45.49 83.16 94.71 24.40 9.62 82.01 88.07 20.87 57.65 80.22 18.74 86.60 15.20 44.88 83.32 18.98 2.13 72.23 52.39 44.85 34.93 60.95 17.52 81.30 35.47 57.61 92.99 87.68 54.79 24.23 26.73 57.13 97.45 33.33 79.63 95.22 5.62 80.45 97.75 84.21 36.31 30.99 88.74 82.89 34.74 13.35 87.17 76.89 79.45 31.99 51.02 9.02 4.96 89.90 67.39 54.48 7.21 -19.73 32.35 48.75 57.91 71.47 17.61 78.35 21.11 93.83 22.48 76.21 18.49 47.81 7.70 8.41 57.17 70.42 30.39 70.35 47.28 58.09 11.80 90.39 30.45 8.56 53.48 3.57 61.14 68.84 45.58 83.79 67.57 56.88 10.51 37.87 12.24 51.54 46.84 83.03 78.03 96.51 29.21 27.76 69.15 58.17 93.57 12.05 3.84 78.42 4.93 2.08 49.26 23.58 32.35 91.76 32.38 54.20 55.36 46.27 21.13 83.72 34.88 42.19 29.17 37.79 72.15 34.26 19.57 59.47 80.39 2.67 18.94 44.85 48.77 15.89 79.11 2.83 95.47 33.99 36.38 52.26 32.43 31.06 37.89 27.39 33.05 53.80 6.58 81.37 98.00 45.77 62.38 29.43 7.42 41.25 29.79 81.86 73.64 83.04 70.43 -30.27 72.75 33.75 19.96 42.42 54.54 64.19 10.19 57.71 94.58 70.66 88.99 72.42 88.99 10.27 27.93 33.97 91.39 0.76 74.51 69.06 63.90 22.80 26.24 15.13 10.38 73.59 17.82 76.62 56.43 81.11 27.44 61.44 7.39 7.22 55.85 59.27 66.47 65.45 11.44 3.50 76.11 51.57 44.26 74.45 66.65 94.61 97.82 76.96 12.00 14.01 64.90 34.14 1.65 36.41 11.68 92.12 23.88 26.13 49.82 34.68 81.78 6.24 26.15 86.29 49.81 44.66 11.41 22.91 9.68 23.09 23.00 41.67 66.10 15.80 37.32 93.10 51.54 24.46 93.99 95.95 9.26 81.51 28.72 80.63 1.96 80.74 32.05 83.45 39.77 12.44 22.10 77.95 92.55 95.51 44.41 80.62 32.52 24.84 82.72 -74.39 40.83 53.26 76.93 2.26 95.55 39.77 95.57 34.20 70.79 51.84 77.64 27.42 86.67 39.65 99.92 39.71 38.03 0.38 18.24 74.64 84.57 1.56 25.51 53.20 28.08 35.68 20.82 10.10 87.23 41.88 39.79 54.53 74.11 4.32 7.00 91.59 10.93 27.64 20.29 77.16 93.96 54.82 78.54 67.09 75.43 54.04 95.91 62.45 16.22 3.64 46.30 94.51 57.02 28.49 68.12 83.79 8.92 63.08 63.56 54.33 58.19 98.48 84.94 64.09 11.10 94.85 63.09 93.14 47.72 55.06 17.70 68.38 66.04 47.19 85.01 8.19 41.09 96.15 94.84 29.37 73.81 96.21 7.28 64.60 9.97 87.22 85.42 29.60 94.11 11.40 99.37 96.16 28.88 30.93 35.14 38.95 7.19 77.17 60.13 -8.43 46.18 96.15 48.57 27.88 53.50 3.29 44.77 97.86 24.33 46.27 25.10 24.35 45.45 84.59 85.07 70.08 76.73 54.11 2.01 11.20 64.91 96.06 17.22 76.62 52.42 93.09 14.67 0.23 94.21 75.20 95.64 46.91 22.11 54.70 84.37 95.31 57.62 82.98 36.29 63.57 8.91 37.46 78.63 33.54 78.43 65.14 30.27 39.14 50.97 16.71 25.07 55.60 84.84 87.29 82.53 21.09 87.12 93.13 67.97 82.84 27.34 75.25 28.32 49.17 76.05 19.84 57.72 24.45 23.46 5.11 58.57 31.06 68.72 2.15 24.79 8.31 17.06 68.28 35.33 66.33 2.22 96.26 21.47 22.84 98.30 14.66 11.34 89.08 46.49 75.71 65.93 16.24 52.00 68.06 95.32 27.04 0.55 69.54 4.78 -33.64 95.32 87.42 81.69 71.86 97.60 1.09 29.06 5.77 12.85 88.31 7.26 96.03 74.38 37.23 63.59 78.98 12.29 60.87 42.93 83.91 71.23 10.09 87.98 11.17 67.01 96.65 12.01 9.80 79.14 49.37 74.85 38.28 68.32 45.12 39.92 72.71 62.06 90.10 80.90 43.24 93.31 68.42 87.18 1.99 15.82 52.19 24.79 5.25 86.79 88.49 65.58 73.82 6.47 27.47 37.30 47.19 36.45 46.75 42.38 64.74 93.04 99.77 9.71 50.58 29.14 72.26 94.32 94.18 44.46 3.64 24.11 90.44 56.25 21.58 66.56 73.62 88.78 50.78 72.63 78.67 56.02 16.36 59.28 97.69 81.72 91.60 89.98 61.83 14.67 9.28 87.89 69.94 68.40 12.41 39.49 18.97 19.73 82.52 77.64 -48.16 92.24 39.90 2.71 92.94 13.88 35.85 37.58 82.62 80.32 48.07 46.23 25.24 21.73 58.45 80.63 49.78 32.58 9.47 94.88 59.26 47.94 22.30 18.41 62.64 47.09 53.16 44.48 16.37 49.86 4.16 39.01 69.37 75.39 79.84 54.54 20.81 90.53 70.70 71.10 3.61 86.46 65.37 81.23 47.18 77.33 49.35 42.82 45.54 99.59 36.27 4.37 28.52 40.94 68.09 55.00 7.50 12.02 26.86 48.03 52.25 44.66 61.41 91.76 80.83 53.21 38.11 73.18 63.82 70.32 65.62 20.00 80.81 64.45 4.82 66.07 98.71 80.19 13.37 60.60 99.44 56.02 89.52 87.19 72.96 32.78 3.52 69.77 12.96 43.31 19.10 88.92 43.34 61.55 39.86 91.56 51.19 83.42 63.29 53.02 -39.39 80.62 39.48 74.89 74.29 96.27 1.01 21.98 67.29 86.25 74.72 17.19 96.66 96.74 87.53 88.04 88.89 92.16 44.14 82.59 27.06 11.60 72.80 59.99 86.75 72.14 70.08 25.39 91.17 22.18 87.71 72.06 40.74 32.92 42.42 85.54 19.11 97.33 49.13 56.30 73.01 92.53 77.44 78.69 7.73 81.42 97.72 52.99 63.07 94.21 68.32 92.70 54.29 0.70 70.79 41.94 87.85 80.16 22.25 34.26 93.30 53.51 41.02 33.90 38.65 93.90 89.38 38.06 55.13 88.75 97.67 24.00 4.88 69.32 57.66 1.51 0.96 61.93 41.04 74.83 70.77 92.77 17.54 65.32 72.62 77.76 95.76 90.20 90.74 87.84 68.28 83.76 83.81 16.87 27.59 33.41 83.59 88.04 33.76 68.15 -47.38 45.37 95.97 18.74 96.65 87.36 29.33 31.91 43.48 83.72 71.68 21.60 15.40 51.64 37.57 76.05 57.32 9.91 47.05 70.08 25.52 24.73 31.14 52.10 29.60 10.92 23.01 38.10 27.87 56.06 18.38 5.68 2.76 73.09 29.54 53.16 60.76 11.26 39.34 75.44 49.55 18.00 79.19 59.20 97.90 85.77 83.01 24.30 56.66 20.34 74.78 53.14 41.03 72.31 99.28 78.06 49.08 91.94 97.46 7.84 98.61 84.09 24.22 23.52 46.35 33.53 65.74 1.25 37.87 20.33 8.97 88.81 29.17 40.77 2.13 28.48 91.36 76.37 32.60 99.24 23.18 43.53 73.52 86.44 55.19 26.77 35.78 10.23 14.37 4.26 9.49 11.82 24.39 62.54 42.06 48.60 50.82 26.58 89.79 13.08 -27.87 18.02 54.97 77.71 48.30 76.66 37.37 37.96 70.10 22.16 38.04 73.64 63.85 42.69 12.44 36.37 70.98 90.26 39.97 37.81 49.04 63.65 41.04 92.59 51.12 5.01 27.43 99.14 79.05 18.32 66.62 63.93 0.55 38.91 11.16 87.21 7.54 64.75 81.08 28.39 82.69 61.23 44.43 53.18 85.08 36.00 64.29 81.89 41.83 24.99 23.02 88.14 11.24 5.83 39.64 33.09 75.60 81.61 54.27 56.37 31.30 85.73 37.77 79.28 48.42 67.75 18.77 11.02 73.32 97.95 72.18 37.23 68.25 8.15 87.02 52.11 13.84 23.31 57.48 50.54 91.44 75.35 14.25 82.63 1.22 61.54 41.07 22.42 67.17 46.84 61.93 3.21 97.66 54.99 61.10 67.60 85.30 78.54 30.24 54.72 -18.54 77.12 72.40 24.23 53.64 51.37 94.16 85.90 92.18 78.43 68.27 18.99 2.47 82.89 90.87 23.14 57.08 92.59 10.86 6.48 60.72 11.95 90.30 13.50 78.73 42.50 70.44 17.45 29.63 65.26 37.37 1.37 10.38 11.33 3.96 73.17 92.23 54.77 16.30 49.29 63.81 19.91 72.43 15.21 99.44 4.89 85.32 45.98 73.10 15.03 58.71 59.44 26.74 7.25 23.30 95.66 68.15 76.01 20.15 60.25 31.45 16.84 30.56 89.75 7.52 93.60 37.94 21.44 16.05 47.47 49.07 20.75 80.05 83.82 11.77 54.57 88.18 36.86 56.84 81.26 5.32 1.14 90.15 29.46 66.82 61.38 17.48 99.25 0.06 15.17 6.66 74.19 61.16 46.61 68.71 94.42 5.25 30.33 53.95 43.56 -39.86 40.10 86.93 29.81 24.54 51.13 95.79 56.42 59.11 74.72 18.65 93.64 12.62 84.01 89.63 0.83 90.74 63.68 68.04 81.57 59.58 20.97 40.63 22.17 47.23 56.73 34.58 51.81 89.16 1.63 1.37 11.68 48.29 86.70 12.91 26.14 28.72 45.96 18.75 15.26 12.63 15.04 93.66 82.22 12.33 67.88 62.17 48.40 72.15 59.60 36.93 12.02 16.99 34.10 14.02 17.16 62.34 34.33 11.64 74.91 22.53 69.25 84.98 9.11 94.96 15.89 99.36 33.78 77.02 37.74 32.20 93.79 68.70 40.15 51.93 37.77 43.96 90.62 33.26 69.05 22.37 36.12 85.38 28.71 0.42 77.78 99.50 98.81 48.00 27.30 81.93 12.17 82.10 4.48 88.52 51.02 8.05 36.03 77.82 62.28 -6.47 87.88 60.55 89.52 91.90 72.12 98.13 7.57 39.86 70.42 45.59 19.06 85.92 51.70 42.28 63.43 38.66 84.26 22.86 85.63 97.90 31.47 37.61 43.93 27.83 33.07 55.26 82.21 33.10 85.53 6.66 51.81 27.54 95.21 23.33 45.72 25.80 24.91 43.93 19.30 26.10 99.27 72.48 94.63 40.85 62.82 50.34 46.57 58.03 84.60 69.93 33.61 47.50 85.51 57.68 44.86 68.03 3.43 57.80 12.83 94.50 39.43 98.98 76.63 98.71 74.66 20.74 46.85 62.55 2.80 56.60 75.96 24.99 43.92 48.79 96.42 25.54 68.67 7.12 45.85 80.72 79.36 47.47 20.82 63.35 0.04 8.92 82.38 50.02 14.67 97.00 65.41 92.61 90.93 89.53 72.70 9.50 23.52 50.33 77.30 -22.23 56.21 15.81 83.59 95.07 74.22 93.69 22.92 46.01 40.72 50.21 55.60 67.26 67.60 10.94 17.50 16.13 69.80 85.74 94.83 92.46 80.12 88.03 52.21 87.98 39.88 63.35 43.17 27.73 35.36 7.29 86.82 57.52 72.78 78.22 23.04 91.89 83.06 2.91 29.58 78.28 73.22 73.89 89.82 14.61 71.69 93.74 39.83 85.81 47.26 33.87 94.83 97.56 42.67 96.88 37.33 62.39 93.29 64.39 44.26 61.39 34.03 16.38 50.79 80.15 11.01 69.61 4.05 71.97 23.68 40.78 86.24 96.15 53.60 78.88 17.62 39.07 29.82 7.73 54.25 6.25 41.82 92.40 44.87 45.52 84.74 39.35 37.70 71.67 60.57 73.77 61.83 8.01 47.32 20.47 4.73 65.91 39.16 9.36 28.54 -89.26 54.47 80.61 89.77 66.58 26.10 3.02 41.39 58.03 0.08 31.25 17.47 39.96 92.44 64.50 2.50 25.37 83.58 33.05 27.85 43.38 19.14 48.13 81.80 66.85 1.52 53.80 43.43 39.54 91.52 65.49 99.51 85.42 41.43 93.81 26.79 14.32 11.32 44.25 37.15 52.68 45.45 48.71 95.21 94.54 31.67 68.30 63.98 90.47 58.23 12.25 25.15 38.84 26.73 6.33 45.60 43.93 82.83 53.54 18.94 50.71 95.45 66.05 21.29 66.35 18.89 54.43 43.09 26.11 67.53 10.44 87.52 9.47 98.49 62.33 40.72 17.55 60.61 47.53 29.86 96.00 88.52 76.35 55.95 94.26 60.87 82.32 1.70 57.88 32.38 42.04 52.53 40.85 65.89 66.75 58.73 18.52 46.60 64.11 90.04 -30.09 54.66 85.15 49.76 87.62 88.43 44.90 43.42 60.91 22.52 86.55 74.03 5.82 74.78 12.95 13.16 14.67 71.25 24.10 20.17 3.33 43.86 80.39 97.65 31.48 96.56 79.43 4.43 79.35 77.95 21.33 90.46 32.32 42.83 10.29 84.92 21.19 80.50 54.48 35.26 0.73 64.96 17.77 72.60 49.98 35.32 18.72 78.72 47.31 85.08 33.96 41.28 58.27 68.28 85.38 95.06 76.53 91.44 92.30 92.42 95.89 0.15 10.79 30.89 54.97 46.01 7.98 90.18 9.95 39.85 46.56 86.67 90.31 68.51 0.10 41.12 81.50 85.04 40.82 78.59 21.74 43.99 81.39 1.62 92.09 86.12 27.63 56.46 23.71 80.49 50.76 81.25 24.47 62.00 34.83 76.45 0.50 8.44 3.49 72.63 -51.05 37.10 2.02 42.19 52.74 84.74 79.94 69.95 35.62 55.86 29.39 96.94 29.27 52.38 19.45 95.04 40.54 75.54 21.85 52.21 26.11 90.95 30.47 43.07 77.17 98.72 36.52 84.50 18.11 99.08 59.32 97.48 75.43 57.96 36.94 55.46 13.71 20.46 48.75 5.89 56.85 61.95 20.12 32.26 7.76 48.48 76.21 87.46 49.60 5.62 89.10 76.74 87.79 73.41 45.75 86.83 64.94 42.52 37.82 97.15 22.13 75.57 46.55 56.29 80.19 83.23 31.08 86.12 49.41 97.49 22.60 25.28 73.13 55.12 81.23 13.75 1.25 39.55 68.10 22.03 9.22 71.74 29.01 86.09 56.06 75.70 9.66 20.84 0.15 42.98 68.86 48.49 74.10 11.01 88.64 94.75 92.68 67.08 8.66 35.94 -74.82 3.14 3.85 38.99 97.97 17.40 66.82 68.97 22.52 48.47 70.69 57.91 2.42 40.99 71.22 12.10 39.05 47.22 99.01 73.67 64.20 20.39 57.09 36.03 45.25 52.86 38.96 63.48 81.54 30.87 38.12 7.74 90.61 69.98 42.56 18.80 74.28 71.85 36.78 2.20 0.06 47.86 20.70 72.40 63.03 98.88 5.00 88.65 62.29 5.62 74.54 14.77 14.82 66.63 60.92 19.35 24.89 96.55 9.44 58.29 25.88 41.38 2.94 45.62 0.34 34.36 52.96 31.59 78.05 68.05 79.56 51.30 33.57 11.87 0.53 75.63 45.69 55.81 16.74 4.04 90.08 51.87 66.10 97.38 18.27 20.12 4.33 82.64 64.58 81.06 73.85 64.61 40.84 28.03 92.12 60.41 93.33 61.79 62.50 47.20 -67.18 31.36 29.10 99.71 12.86 23.53 72.11 15.54 59.58 38.99 45.10 59.63 55.71 66.51 36.31 66.11 22.91 67.59 61.51 17.78 42.08 80.10 44.53 65.90 36.21 60.62 55.95 57.09 34.39 99.95 58.39 27.39 88.01 27.95 44.13 70.06 11.55 25.44 39.86 8.12 6.52 68.22 18.53 1.02 37.94 11.97 51.11 76.59 84.28 96.25 15.46 69.15 60.09 5.85 18.75 91.09 22.35 97.11 6.91 80.48 48.11 23.96 37.87 60.91 5.47 96.25 61.67 28.24 66.67 69.39 69.35 4.85 35.05 45.09 51.85 87.94 89.78 28.68 29.83 31.41 91.30 67.25 39.22 30.25 98.46 40.10 6.31 68.24 27.61 10.27 9.89 97.21 91.38 68.07 46.59 5.27 95.46 21.53 23.47 58.85 -29.20 88.89 17.95 0.72 77.14 36.54 58.26 74.59 39.95 91.53 28.18 88.23 72.67 33.14 25.45 86.28 59.23 92.55 32.05 42.32 8.56 15.24 47.33 3.55 18.11 41.95 63.55 46.95 25.25 58.33 24.63 16.82 30.17 66.43 83.33 62.50 11.01 26.49 32.73 5.94 13.03 25.01 22.61 0.61 20.44 77.24 77.25 18.31 66.98 56.98 92.69 91.48 67.41 3.68 83.59 26.41 51.04 53.97 3.06 27.31 19.00 83.57 79.69 87.22 91.63 14.86 80.73 27.04 75.20 79.78 2.77 58.38 23.17 85.41 3.29 63.52 3.31 76.06 9.14 52.92 46.99 5.03 62.36 64.58 52.35 79.91 50.72 97.35 73.12 76.00 21.26 7.08 34.52 77.60 4.51 94.89 56.09 82.16 32.58 25.02 -31.38 43.94 52.22 25.63 39.68 45.83 66.80 32.49 53.89 81.34 9.18 69.40 67.36 9.12 92.37 73.10 93.45 65.12 29.48 90.86 19.12 26.14 65.23 93.55 20.29 22.70 45.44 46.43 86.91 74.20 71.74 96.21 6.24 65.67 84.48 26.38 36.09 57.59 74.77 78.10 13.36 91.09 91.11 39.51 41.84 20.15 83.18 75.24 65.93 41.18 89.79 51.15 38.78 7.47 16.62 65.28 40.80 17.97 12.69 85.51 45.38 86.47 78.73 21.00 17.13 83.04 52.96 42.63 75.91 0.91 96.95 52.96 24.38 44.66 68.79 69.18 36.60 90.52 58.88 8.49 20.95 57.63 69.51 68.20 90.57 74.68 20.48 13.69 28.78 92.06 82.62 30.79 66.66 95.64 14.27 46.19 42.80 46.30 24.74 22.67 -59.55 59.42 64.20 51.34 44.09 2.49 80.12 99.43 92.15 98.97 1.18 70.99 6.26 69.62 76.38 50.72 72.59 99.33 14.07 74.16 7.34 83.98 76.44 76.46 24.09 4.77 33.93 15.91 60.85 24.17 5.56 50.59 99.17 40.19 62.37 24.30 60.88 60.43 35.74 41.00 2.71 45.93 43.44 49.11 41.21 70.57 50.03 21.40 50.58 98.84 3.44 57.33 48.41 73.90 37.40 34.60 29.24 28.31 77.34 97.67 17.38 96.94 88.68 11.43 53.30 24.00 21.89 52.56 20.38 85.88 49.71 74.99 93.61 40.43 46.89 23.19 78.31 68.56 70.28 26.90 25.35 44.23 42.12 37.12 54.84 76.16 93.55 56.14 28.91 41.58 84.04 84.10 5.93 83.27 96.27 9.36 52.00 41.75 45.03 56.01 -48.94 64.22 72.80 78.73 8.94 27.75 25.56 22.93 23.00 67.92 92.27 5.39 42.51 77.72 48.72 82.88 88.77 85.23 67.52 6.80 47.30 10.46 0.04 16.55 77.04 55.41 83.69 92.35 40.32 5.13 36.40 61.38 87.21 2.57 27.97 46.02 90.87 47.37 49.81 20.09 78.24 36.88 38.12 17.66 31.89 88.16 46.32 87.31 34.27 83.97 19.11 77.79 16.96 55.33 47.59 3.65 77.03 35.23 18.80 6.63 86.97 17.28 22.88 95.39 42.37 73.19 69.58 94.71 82.20 1.44 57.72 90.43 64.38 79.28 42.40 28.36 42.72 24.01 76.49 48.94 26.58 83.94 12.76 93.99 89.37 64.94 99.67 36.07 7.15 22.87 92.86 61.64 67.67 69.94 92.02 83.52 71.89 62.19 66.70 34.39 -40.24 57.98 7.43 11.45 45.67 28.68 81.98 70.51 10.09 6.44 3.68 8.25 70.86 22.32 71.88 88.72 11.63 64.63 34.07 86.33 62.74 93.16 59.98 96.65 24.05 77.70 5.90 90.62 95.99 68.73 60.94 4.31 68.94 36.84 81.83 72.32 41.91 93.66 10.17 22.82 42.57 39.88 35.78 37.79 10.93 1.23 16.11 53.62 28.39 75.94 82.33 99.77 58.40 79.58 23.62 14.41 93.73 51.20 15.40 11.63 82.17 86.77 28.20 7.04 4.51 66.13 61.68 45.25 5.16 56.51 60.60 89.06 26.96 32.20 24.51 13.84 72.69 80.10 49.77 98.04 49.93 51.74 29.81 96.45 66.14 28.71 0.20 29.36 42.78 98.43 21.66 87.70 71.35 66.03 42.28 8.66 54.54 74.75 95.18 7.53 -60.92 19.40 62.66 80.98 97.28 18.56 81.25 32.84 7.58 36.86 3.49 34.41 20.79 62.63 6.35 96.36 39.56 93.13 29.68 75.69 3.65 58.27 41.82 35.92 88.71 72.54 98.95 35.04 71.42 29.48 7.84 11.85 16.18 64.04 90.34 85.03 76.18 93.73 16.21 92.54 83.40 62.61 89.35 0.49 95.80 97.91 83.97 95.72 47.39 73.36 95.09 96.38 44.76 80.18 86.29 71.59 64.39 66.52 6.30 5.33 14.43 4.10 86.85 58.67 71.01 29.97 91.79 18.15 20.02 0.58 50.55 25.21 87.69 55.16 48.71 77.87 84.72 25.10 13.46 28.95 66.25 7.05 51.42 94.28 46.18 68.27 84.83 31.17 40.42 7.87 25.48 45.01 90.74 64.59 51.55 0.04 73.26 94.97 40.24 77.69 -1.72 47.90 63.39 59.18 63.82 11.35 49.82 66.08 4.44 4.96 4.78 51.52 82.18 45.88 42.30 50.38 76.33 40.69 86.97 2.14 79.96 66.87 33.31 46.90 95.06 88.47 4.12 83.02 9.05 99.26 67.20 52.37 77.40 93.18 67.99 34.40 48.34 23.01 50.63 94.80 93.97 90.31 75.23 88.99 53.21 68.19 77.25 6.28 69.67 54.58 68.36 40.76 23.63 48.39 64.71 55.39 3.12 21.99 5.23 15.78 13.04 67.30 31.68 63.38 91.37 48.97 72.68 15.74 47.97 90.91 97.59 61.34 11.18 9.40 71.92 99.50 6.14 25.85 17.40 54.92 50.31 74.30 4.68 10.01 9.48 98.42 46.62 87.84 95.34 71.65 49.01 60.81 85.08 90.83 23.12 69.62 11.62 77.18 73.15 96.05 -49.15 60.76 73.47 94.81 87.86 6.64 38.12 85.29 76.30 9.25 22.28 27.01 87.06 91.07 16.89 18.42 82.72 31.22 94.08 26.86 76.06 4.53 71.11 46.07 57.17 55.41 45.62 78.39 95.55 27.91 82.61 82.47 75.73 86.31 79.66 29.75 81.08 75.55 98.54 46.01 68.44 68.85 68.67 64.60 66.21 24.28 91.53 11.15 24.17 49.24 4.32 16.02 83.79 47.49 53.78 19.82 28.23 31.51 66.58 31.88 31.31 68.07 11.98 93.28 7.85 25.63 88.88 96.76 13.85 29.11 87.25 20.55 41.00 15.60 9.60 90.99 30.87 87.72 21.96 10.88 49.30 41.83 21.90 76.86 40.57 33.79 4.87 79.44 95.61 84.80 61.71 23.24 12.85 26.98 25.32 46.80 94.68 98.10 85.40 97.81 -34.02 7.19 24.73 88.24 99.29 34.80 46.77 3.06 33.83 82.93 73.03 3.57 36.08 22.71 34.79 64.23 83.04 14.31 25.76 13.92 40.24 93.97 52.95 49.08 43.43 89.53 28.79 94.71 96.61 63.82 88.11 33.46 12.74 43.37 99.21 50.39 99.33 91.05 92.56 1.75 27.45 74.79 33.56 61.86 14.39 18.09 24.38 65.40 3.77 33.17 30.22 36.97 55.93 83.68 5.75 89.29 56.72 62.93 47.19 60.24 45.14 7.66 22.51 13.71 15.90 84.08 25.67 55.62 55.40 43.98 60.05 22.55 16.12 11.72 68.90 63.69 67.11 70.79 54.13 83.35 62.92 95.71 39.66 64.86 71.59 45.86 79.08 95.98 92.71 68.11 23.08 95.81 56.15 94.74 14.12 86.52 12.16 60.86 21.63 81.32 -7.15 83.58 69.59 3.55 95.88 62.95 88.58 11.32 94.65 79.25 1.30 78.58 5.53 82.74 67.13 96.91 33.86 53.53 31.07 80.48 88.83 92.16 97.37 89.05 52.27 9.56 78.89 74.30 57.64 30.56 98.18 14.11 64.96 37.80 39.46 30.95 8.80 90.66 85.06 82.20 16.95 60.64 61.83 65.21 64.44 6.49 58.63 37.54 20.85 5.99 74.38 32.28 12.24 10.48 12.60 98.10 44.67 33.13 51.48 44.99 77.00 79.12 44.90 29.34 52.40 79.98 14.49 83.94 78.89 82.28 52.10 26.95 86.77 81.61 49.08 96.68 0.28 74.49 57.94 0.13 64.18 94.01 63.85 51.55 53.54 52.18 67.96 19.91 8.31 57.35 52.89 76.89 70.70 81.23 48.28 98.03 74.38 68.41 48.20 25.96 -77.47 15.82 71.42 96.42 78.39 46.36 87.68 83.33 73.88 67.97 23.90 73.64 29.12 53.20 34.35 64.26 58.01 49.32 51.47 31.48 74.18 38.47 33.86 0.58 60.47 66.27 70.34 48.19 38.44 57.86 99.61 87.36 38.25 91.58 59.44 92.17 40.54 65.69 31.32 52.71 12.50 90.88 25.59 26.91 24.39 37.43 40.79 24.42 43.81 26.32 42.43 70.20 3.26 54.71 39.78 6.26 90.19 84.57 98.94 35.15 30.37 17.14 51.68 22.44 22.71 25.85 45.33 24.55 66.58 71.57 68.59 82.89 46.03 9.84 17.55 73.74 13.92 75.32 11.65 84.88 49.03 77.19 91.02 58.45 78.97 7.19 57.63 49.23 18.87 24.71 30.32 5.90 81.66 56.12 36.02 24.35 16.19 0.28 96.18 32.73 -27.80 95.43 70.75 35.89 9.47 28.86 17.68 27.70 12.10 84.95 41.15 55.28 38.50 96.75 90.15 52.29 73.40 76.35 88.78 30.55 54.90 26.25 37.30 70.11 0.45 7.26 60.97 54.79 83.75 92.71 68.21 0.66 38.49 31.15 84.24 87.13 42.19 51.71 57.84 88.43 6.86 48.47 66.35 13.43 75.91 35.05 32.07 43.93 39.83 55.30 7.61 3.19 43.11 82.28 39.23 44.49 91.32 7.96 90.93 79.78 71.42 21.24 71.17 32.00 57.99 72.91 23.31 53.84 82.17 85.31 73.24 37.61 42.72 62.48 24.25 97.02 67.38 24.42 64.69 41.94 10.36 11.30 24.62 21.45 62.99 35.82 99.02 73.92 48.66 77.97 48.21 63.08 38.06 57.37 50.66 92.31 49.50 63.48 36.73 94.12 -17.71 41.65 29.73 87.20 5.81 56.29 65.85 87.17 15.84 21.12 27.33 16.54 49.72 97.49 22.01 47.37 16.80 55.12 20.20 33.36 85.70 28.01 88.98 53.71 5.17 5.66 81.88 10.19 31.18 6.50 35.50 50.52 29.81 35.22 39.49 7.75 98.87 56.03 47.85 59.37 39.22 63.55 66.85 0.08 9.05 65.29 27.89 49.16 4.28 87.11 95.20 40.48 35.83 63.87 57.48 76.73 23.03 47.83 21.44 88.46 14.07 59.03 42.84 24.38 66.84 32.63 88.80 96.07 57.83 76.90 90.66 31.75 86.27 76.13 41.69 8.84 12.26 61.50 86.82 39.33 99.08 8.48 42.06 77.47 89.64 47.08 12.42 95.65 17.99 6.05 18.37 41.11 22.87 71.32 73.76 42.56 9.97 73.85 88.79 4.45 -67.30 78.71 44.12 78.31 15.25 24.25 12.06 65.48 10.28 59.30 67.80 86.90 17.54 59.01 59.17 72.49 39.93 83.09 87.99 51.24 44.38 10.02 2.58 49.93 94.46 12.49 5.09 86.67 38.29 19.29 14.22 37.57 20.66 31.04 76.53 5.17 7.95 15.64 23.49 10.75 85.43 20.10 24.91 14.11 4.40 60.60 58.87 59.44 80.39 87.74 32.16 76.69 7.95 10.09 75.34 55.66 79.28 93.76 61.69 70.24 84.65 56.73 1.13 27.61 10.25 77.04 59.01 54.11 40.17 38.51 48.47 20.91 34.69 34.43 95.91 34.31 94.33 89.70 34.05 64.13 85.24 86.43 60.48 33.67 5.61 28.91 63.22 19.18 7.02 43.11 18.70 37.99 58.74 45.50 43.28 10.82 82.69 85.67 12.46 76.04 -91.13 50.57 68.16 20.79 83.46 28.66 19.19 5.40 74.43 2.47 0.15 49.71 22.00 63.29 31.33 25.80 84.31 12.26 61.46 66.48 9.71 71.21 36.81 32.92 32.91 83.52 71.70 41.51 32.28 69.18 49.74 48.87 13.85 92.89 73.66 85.08 61.07 34.98 16.66 10.85 84.06 6.93 41.79 46.45 47.12 83.88 82.55 23.27 63.24 4.34 62.81 8.38 56.49 83.45 66.31 76.45 51.75 36.08 1.65 34.50 5.11 92.08 49.91 19.87 35.83 48.85 3.53 10.08 18.09 26.68 31.19 7.83 94.36 80.66 53.64 55.95 58.12 11.54 39.85 38.67 29.55 20.43 54.87 36.15 71.00 78.55 84.00 40.42 65.17 31.33 53.91 29.23 42.83 88.57 31.82 52.37 39.95 86.04 93.98 46.22 -52.10 78.08 10.37 24.46 95.18 19.99 44.38 59.25 47.69 41.38 32.09 11.03 85.53 18.69 16.93 1.26 97.35 26.73 9.57 63.67 38.71 65.64 53.69 96.36 93.22 3.66 79.13 37.49 32.36 24.16 67.42 36.06 47.95 8.35 27.17 76.18 38.09 89.73 7.70 95.00 44.62 65.46 55.21 95.63 65.00 20.31 77.09 15.65 94.58 2.97 77.72 26.05 73.28 0.20 69.09 81.78 36.58 25.14 53.78 96.45 74.17 69.00 16.60 88.82 92.25 39.16 47.70 84.59 46.47 21.56 32.43 51.27 20.93 69.25 9.44 42.25 39.43 30.11 74.84 24.20 96.10 9.03 0.86 37.66 50.94 6.27 47.01 72.02 45.63 87.87 51.21 89.33 33.44 90.56 29.11 65.46 98.45 54.64 31.39 12.68 -5.02 77.30 27.08 77.99 25.25 9.08 40.40 4.18 9.16 16.95 59.52 87.34 99.33 41.75 82.45 50.98 94.35 35.93 66.37 89.65 58.70 46.64 60.00 37.84 13.57 7.20 28.62 83.73 20.42 62.52 88.46 94.70 26.85 40.58 43.72 69.86 54.12 75.80 35.26 98.22 91.52 42.34 59.99 1.08 54.42 40.59 95.51 84.19 71.27 96.87 92.78 19.47 86.41 43.37 5.53 69.13 25.36 76.68 39.69 49.11 4.38 49.17 22.07 85.45 36.94 17.19 77.63 96.41 26.23 28.82 74.34 35.82 74.17 70.97 68.71 37.16 82.08 5.00 10.71 29.82 75.46 38.77 98.36 59.36 96.83 40.33 81.62 45.30 9.24 74.69 50.23 18.18 82.24 97.20 37.42 60.74 23.42 87.88 18.94 90.38 -35.15 75.65 31.40 88.51 95.74 70.09 91.30 94.17 8.68 18.35 10.23 17.65 78.96 56.56 18.12 45.40 41.96 82.51 32.32 90.54 92.74 17.28 77.24 81.70 25.69 22.79 9.07 6.29 91.30 19.60 14.09 25.95 31.51 95.26 52.89 33.72 24.49 47.66 13.44 69.58 82.72 44.22 45.05 66.45 87.25 93.55 23.86 73.40 65.63 10.69 49.71 15.61 25.15 34.52 18.68 36.89 81.99 38.59 92.01 14.20 91.75 13.76 85.07 84.19 33.06 63.25 56.86 33.86 74.72 70.22 90.93 45.00 26.57 49.13 56.74 83.17 95.34 43.21 9.33 86.67 23.53 71.67 89.93 31.14 43.97 9.70 32.05 47.23 7.74 84.87 13.88 6.47 34.89 41.75 49.64 92.47 54.66 83.87 0.83 75.31 -39.31 3.89 55.99 54.84 23.56 89.29 55.97 79.40 91.96 93.60 5.30 96.29 77.16 35.42 65.18 12.39 22.29 29.51 32.84 21.05 59.18 46.87 34.40 47.15 28.09 56.62 7.56 50.59 65.59 85.39 86.75 47.82 33.07 4.87 76.27 95.62 2.59 36.21 95.31 70.22 65.99 71.74 79.58 95.27 60.04 49.83 95.02 88.15 72.49 33.26 23.86 68.37 7.19 82.11 19.18 92.03 17.95 49.85 5.67 87.70 65.14 3.16 63.08 72.11 48.02 49.25 93.54 5.29 75.74 91.83 55.47 1.63 51.67 1.81 29.36 30.48 82.69 28.18 18.71 85.80 67.90 15.05 89.80 33.29 59.46 57.15 64.63 69.37 20.83 40.80 82.38 83.12 67.16 88.69 57.28 64.62 41.37 60.10 32.57 4.40 -96.25 99.63 8.04 61.55 60.06 97.63 63.04 19.67 51.28 65.21 37.43 89.74 88.33 8.17 96.85 44.02 87.73 61.01 22.44 95.71 2.39 99.90 57.57 51.25 46.48 79.52 99.14 5.77 90.57 88.39 45.66 70.45 32.89 78.37 87.59 72.79 66.88 6.61 97.16 51.77 36.23 28.79 57.40 50.39 28.49 4.40 77.49 46.50 42.22 38.89 38.89 27.24 40.79 77.41 68.39 90.74 53.86 49.98 51.44 85.73 69.36 58.83 39.79 97.69 58.30 19.52 82.69 68.05 4.25 73.93 9.90 51.87 45.78 0.49 10.94 33.23 17.26 17.02 59.16 93.59 46.86 56.25 90.89 29.53 61.80 57.96 34.57 32.99 90.98 90.56 47.30 77.82 78.11 5.58 15.21 66.21 0.25 2.99 63.80 89.55 -49.88 61.09 44.73 59.88 91.20 3.20 69.66 36.76 76.10 23.63 7.52 54.57 46.58 36.16 90.21 46.39 70.43 97.47 44.07 6.10 65.63 27.11 20.85 3.70 35.45 38.15 82.65 88.87 99.83 87.21 79.79 3.77 19.02 15.92 6.32 47.55 84.77 19.67 49.58 78.35 12.26 72.67 5.77 37.38 57.09 87.12 2.34 92.80 61.09 0.58 54.69 94.80 88.97 72.54 10.79 49.13 16.26 49.48 6.59 5.50 3.50 2.54 25.74 58.70 82.07 72.12 55.09 96.00 83.12 52.25 19.53 11.38 16.64 22.33 68.96 41.01 97.15 0.91 60.94 89.53 37.28 68.28 86.08 3.52 61.40 24.88 94.12 6.45 47.12 77.81 15.01 9.51 17.85 83.80 56.28 10.61 26.47 59.68 35.67 97.10 -54.34 73.04 77.12 5.65 37.45 90.68 65.60 45.40 25.26 39.18 94.93 62.06 23.44 94.38 20.34 47.17 37.87 67.96 72.36 9.95 44.09 11.30 36.13 15.65 9.34 69.60 10.92 78.23 33.86 92.13 54.99 44.55 40.99 63.49 65.61 81.14 87.24 73.83 23.02 76.39 86.60 84.60 81.50 53.85 26.84 0.46 95.59 35.55 6.80 10.93 92.78 86.00 79.01 16.93 82.40 13.99 64.76 62.66 61.64 43.39 11.13 11.78 43.46 75.23 86.48 54.37 76.05 88.41 1.12 9.38 18.56 40.55 33.05 57.60 23.24 80.63 83.19 70.93 72.38 82.65 4.19 84.51 28.93 54.50 59.38 27.58 16.61 88.92 83.96 75.45 61.61 20.11 50.25 71.25 39.84 94.49 10.63 93.86 74.71 32.52 -91.20 22.25 66.48 27.58 67.63 5.62 81.68 68.94 50.66 47.45 95.10 72.52 79.09 82.55 14.04 55.93 61.94 13.25 10.10 92.70 78.38 10.20 69.94 58.86 94.44 17.06 45.31 0.45 32.17 77.65 34.12 43.35 91.70 25.92 50.01 61.36 78.14 66.13 99.66 74.98 76.60 19.81 36.62 37.66 74.56 35.37 45.73 16.05 8.94 56.46 90.04 56.19 67.40 6.18 38.05 87.77 2.30 93.25 72.99 80.62 78.44 24.31 81.11 7.19 82.68 75.54 81.10 4.02 11.36 39.33 39.50 71.12 58.22 51.75 65.43 38.95 44.97 53.93 54.99 55.03 10.25 63.59 81.94 7.12 97.31 83.67 72.79 59.46 78.12 21.44 17.25 14.75 76.27 26.48 38.48 82.70 85.01 28.80 51.45 17.03 -29.02 19.88 10.62 65.04 57.34 31.74 32.73 93.70 12.75 85.68 23.93 45.51 10.75 9.44 53.82 26.02 97.05 5.66 42.38 6.68 39.74 84.75 90.82 56.31 47.82 73.34 92.15 71.47 64.33 18.56 48.10 50.25 26.63 91.42 62.52 34.15 88.88 89.98 43.90 10.95 98.19 94.19 48.49 97.49 45.73 89.52 0.07 53.41 26.87 98.79 69.66 36.72 46.42 18.70 0.17 29.33 83.14 47.47 28.64 94.10 52.77 80.99 10.81 65.33 45.76 16.14 69.87 69.26 1.39 36.35 67.84 46.92 42.23 40.30 76.70 54.93 74.88 29.29 67.54 11.92 91.47 78.36 55.33 52.82 49.91 25.86 0.02 98.62 31.90 44.43 1.56 84.74 71.18 86.40 9.65 47.43 71.16 51.59 70.08 83.89 -95.46 35.72 95.84 59.10 59.66 30.17 13.65 47.67 92.07 73.02 46.55 34.63 92.06 99.55 49.90 14.56 64.78 41.17 84.66 1.54 85.30 22.59 89.16 78.32 8.46 63.90 43.14 90.84 88.31 26.24 96.12 29.28 10.24 44.23 79.13 79.68 32.84 47.20 58.58 14.25 74.17 24.85 77.30 72.54 36.53 52.16 25.83 7.21 38.45 49.36 16.19 40.46 15.41 77.24 52.87 45.24 30.47 99.86 31.11 61.45 61.98 41.32 94.33 82.74 39.14 32.77 64.20 38.94 63.55 55.59 4.56 0.58 6.43 73.82 68.62 92.42 63.24 11.25 95.41 46.83 21.71 3.60 75.92 68.73 45.37 19.28 58.36 38.01 97.03 100.00 42.42 78.16 82.58 79.86 19.66 42.56 88.35 22.71 92.79 38.98 -82.90 24.21 93.99 50.67 46.29 50.74 28.85 58.65 59.47 20.74 61.60 49.42 64.54 8.85 10.39 40.95 71.82 33.34 21.54 41.76 81.45 45.66 67.77 3.65 37.78 48.02 95.23 0.73 98.84 43.42 83.86 0.20 5.19 92.86 71.32 36.30 69.68 55.45 85.16 25.30 16.62 0.41 32.83 37.90 30.33 24.80 47.88 0.05 55.93 26.59 46.80 8.02 90.56 11.03 10.29 28.67 79.99 36.42 62.06 8.09 17.43 7.13 59.90 3.08 38.26 47.31 56.22 59.21 22.76 7.70 48.85 64.08 83.33 96.28 88.79 93.84 7.81 56.66 74.24 48.46 38.78 9.68 94.20 83.76 3.02 55.73 19.58 21.22 59.38 19.09 22.41 48.91 74.34 64.60 79.29 30.01 11.62 11.14 6.69 67.45 -84.23 40.51 90.43 93.67 85.82 52.12 49.13 83.06 97.17 41.62 13.28 47.26 46.11 79.02 41.49 76.71 16.08 8.85 23.12 34.55 39.56 74.24 65.58 10.50 91.41 97.51 42.03 33.30 88.24 18.21 66.00 92.86 69.76 75.42 4.69 39.39 23.00 43.72 50.20 68.58 20.85 61.98 65.49 62.20 21.57 54.65 1.09 89.65 16.36 23.86 0.40 82.21 66.46 90.40 87.69 79.18 53.63 49.87 0.81 41.09 0.26 32.07 49.07 12.57 52.08 62.28 62.11 10.76 92.18 71.83 86.78 98.12 96.64 94.71 68.63 59.79 22.51 14.02 34.61 98.51 7.57 96.71 43.71 52.70 94.38 79.79 6.39 7.61 29.39 45.50 56.57 13.39 12.74 50.84 14.34 66.07 28.36 57.33 99.16 65.58 -7.88 84.27 5.97 50.80 4.86 71.58 98.32 84.78 22.48 35.30 57.18 22.97 4.30 71.22 97.84 88.20 89.52 84.71 61.47 69.49 49.85 70.99 89.00 13.93 7.68 55.33 94.36 47.77 13.57 39.57 36.12 44.50 65.83 68.83 24.80 0.43 15.55 25.03 55.65 50.56 16.65 47.87 34.96 79.86 15.42 72.74 12.52 41.92 87.58 34.26 16.60 73.39 96.11 77.49 75.54 81.14 19.44 15.67 12.71 32.21 58.54 17.48 51.90 28.75 55.66 29.49 10.38 80.92 20.13 3.02 99.25 46.61 34.20 98.37 73.37 67.76 16.93 90.29 45.16 10.05 46.87 72.19 11.03 87.63 29.18 17.16 31.13 48.69 17.50 20.18 61.29 53.77 52.74 20.09 85.54 58.78 10.40 26.48 26.52 38.67 -59.06 32.94 33.49 10.46 90.11 94.34 73.07 2.21 50.33 97.81 26.50 77.78 6.43 36.29 73.38 43.83 66.39 14.12 57.37 7.61 79.52 93.52 61.45 66.15 91.92 10.55 12.41 56.50 80.15 42.97 90.95 33.60 90.57 25.39 30.46 13.67 24.42 72.84 12.24 38.68 84.24 31.25 56.21 81.78 62.81 0.66 55.09 19.62 0.41 71.56 57.55 17.34 0.62 75.80 58.60 51.93 17.07 37.28 62.77 71.38 17.82 89.02 59.42 91.31 1.57 44.64 80.98 87.49 21.03 24.03 43.94 65.38 68.23 60.52 94.01 31.09 71.09 24.71 1.73 6.11 27.58 91.24 8.46 70.83 42.23 18.19 90.86 1.34 98.05 40.77 33.65 34.12 93.39 43.80 32.33 75.21 1.44 42.81 60.52 20.63 -89.29 54.66 75.88 53.59 97.53 67.86 94.55 10.27 13.47 68.74 91.49 45.05 4.09 32.92 59.71 10.25 70.65 39.37 29.15 88.55 13.28 74.03 36.13 57.15 71.48 13.00 35.95 62.60 62.54 84.13 99.14 67.20 53.22 73.16 52.36 29.17 60.20 37.69 39.05 96.11 19.18 73.35 64.02 49.91 92.95 75.38 35.05 5.38 75.01 87.90 27.04 95.31 6.18 50.24 14.63 70.55 41.80 86.57 37.40 91.14 25.40 57.07 51.79 29.26 65.99 52.92 93.83 67.67 81.69 57.13 29.91 88.96 11.69 92.21 46.00 32.74 61.42 69.70 42.19 97.16 32.79 8.31 76.02 73.68 14.32 35.83 28.22 98.81 55.44 4.81 31.08 82.63 86.42 90.65 49.74 43.24 4.04 55.01 81.97 46.08 -36.61 89.31 47.26 18.98 12.15 84.79 34.75 18.81 16.60 62.80 91.45 28.10 22.57 6.53 13.17 86.75 79.82 49.86 97.55 32.17 66.44 97.71 97.67 66.45 25.84 45.85 3.86 2.06 64.93 26.48 22.11 9.06 72.62 14.02 33.94 7.62 56.79 54.22 67.46 38.45 95.03 50.44 74.27 13.45 49.62 2.50 15.63 28.41 10.53 24.76 99.86 17.05 82.26 83.32 31.51 85.76 32.49 78.61 99.20 46.70 88.61 29.93 95.16 70.95 34.36 65.10 61.05 56.03 30.06 55.05 33.84 35.01 44.52 83.41 25.21 96.67 21.58 97.08 18.05 71.32 12.32 96.97 57.26 97.89 77.91 86.54 71.07 73.15 32.77 92.59 83.20 99.76 24.20 90.74 91.10 51.56 28.08 39.21 17.37 73.77 -31.22 45.75 74.24 8.14 63.77 4.52 1.04 57.69 87.18 42.71 2.07 61.73 59.41 53.87 62.50 45.36 94.44 82.96 87.43 59.67 43.65 71.89 20.54 83.76 47.02 72.62 22.32 16.98 73.97 39.93 91.41 46.13 34.03 36.76 19.50 60.25 44.98 46.24 47.54 79.52 82.62 71.42 22.68 71.09 85.41 90.02 11.36 71.08 48.28 37.68 12.14 2.79 29.79 23.34 26.33 56.64 95.23 91.54 74.95 96.73 94.18 35.00 33.96 43.52 78.19 58.14 63.07 1.31 54.14 32.07 17.99 94.09 20.21 24.86 40.87 50.43 10.40 6.52 92.06 33.32 14.69 67.64 90.82 72.29 79.88 41.15 69.20 3.53 54.49 63.75 47.47 48.54 27.77 60.30 73.05 43.54 17.25 26.51 25.88 15.37 -50.68 38.86 95.85 63.37 32.39 57.03 42.85 6.78 16.19 61.07 42.88 67.76 45.12 32.79 66.95 33.46 83.83 26.88 1.49 18.02 2.28 17.32 65.91 57.33 66.14 85.29 28.59 98.23 23.11 4.46 83.09 11.67 38.00 38.41 80.82 86.87 19.11 23.84 83.75 98.53 55.98 85.92 65.81 14.63 17.51 86.54 64.97 97.58 65.15 53.46 45.37 49.81 99.30 63.14 32.75 0.90 14.81 8.62 85.13 32.42 56.57 69.65 44.86 5.37 64.57 46.48 90.24 40.89 60.30 90.88 86.00 97.30 86.83 40.55 70.03 91.96 60.92 70.47 28.14 4.95 10.12 50.45 49.22 53.51 80.55 71.72 8.50 15.73 1.29 83.39 35.06 32.72 91.71 10.76 27.28 93.14 70.19 1.37 75.47 31.71 -21.58 85.55 74.64 29.16 59.71 33.79 49.62 10.78 81.81 25.76 76.48 19.95 97.16 67.14 83.51 60.46 7.75 34.19 83.28 66.26 64.49 20.39 56.95 51.81 65.39 70.42 98.61 80.09 87.67 80.06 37.45 8.40 79.76 91.35 54.31 98.12 94.33 25.33 57.04 82.26 70.73 92.62 88.24 91.75 0.85 82.54 26.19 60.72 45.88 94.19 58.44 3.90 78.21 93.03 60.86 24.42 84.11 88.48 11.23 93.50 2.64 31.95 33.60 68.52 34.48 80.71 10.51 92.50 74.60 94.59 59.74 56.56 17.19 4.99 91.99 94.61 15.23 19.79 53.09 66.55 86.11 27.17 93.79 66.84 6.49 13.70 27.55 34.97 59.33 87.13 78.81 42.52 4.27 72.20 50.36 42.22 13.88 82.73 0.77 62.49 -94.50 50.07 50.13 46.33 74.11 71.61 27.76 8.64 74.99 21.53 88.95 69.69 79.54 55.65 7.64 54.08 2.46 82.02 30.15 10.08 18.76 70.80 43.94 27.27 2.62 18.41 50.73 91.11 69.40 55.55 24.43 93.59 1.81 73.92 5.19 57.62 12.86 29.63 71.43 42.82 27.85 70.63 14.07 96.43 65.09 33.99 40.02 87.71 14.57 18.85 88.57 34.30 82.80 32.27 74.10 52.36 89.54 82.84 99.69 0.47 60.28 89.31 76.18 90.55 97.62 33.99 60.83 20.77 19.41 30.54 36.08 74.70 86.22 6.44 22.74 3.83 41.74 23.19 18.62 55.59 21.35 3.00 15.92 39.25 29.22 82.92 16.26 26.40 21.52 57.75 18.61 14.84 31.59 8.76 15.26 25.78 62.74 3.60 64.86 17.60 -82.57 46.96 44.70 80.99 11.97 7.94 15.48 28.61 30.96 36.13 73.37 3.82 93.45 71.64 80.00 25.72 33.16 5.90 24.07 32.25 68.82 93.72 19.29 81.64 90.39 64.39 59.47 63.48 33.10 98.15 53.34 5.14 5.95 49.74 94.68 1.13 43.33 91.25 75.76 25.47 47.51 84.15 2.40 25.32 71.32 10.74 89.07 23.12 8.79 85.14 73.26 8.09 28.86 29.65 60.48 72.70 54.81 14.20 11.02 51.14 12.02 69.06 89.17 60.82 21.97 60.21 41.19 57.05 20.08 16.10 42.94 8.85 38.40 46.73 78.64 99.28 85.18 81.85 77.59 49.09 2.18 90.13 4.00 93.92 30.51 90.26 4.53 21.48 33.16 82.42 65.58 12.89 12.45 40.23 18.95 19.98 33.88 60.02 71.34 2.52 -38.78 71.87 94.39 62.37 19.34 18.64 91.91 31.33 21.23 73.30 56.06 89.88 57.01 54.28 80.10 56.41 55.36 28.90 27.43 14.74 97.45 95.28 34.47 68.34 60.99 54.18 60.01 9.45 34.34 65.47 88.40 83.63 76.97 68.25 31.21 40.02 47.61 67.28 11.32 49.18 8.82 30.07 98.42 37.41 29.28 2.54 22.75 24.07 53.69 54.56 48.11 27.37 34.96 88.99 38.30 31.49 69.12 13.17 53.35 76.02 31.95 18.96 61.00 76.02 97.07 31.45 77.14 76.73 3.14 26.98 3.39 34.81 70.94 84.34 42.50 40.82 69.68 25.46 12.82 10.96 57.94 90.27 18.51 1.53 57.01 29.30 65.71 98.23 51.83 39.43 31.90 11.78 72.75 65.55 87.34 84.44 46.91 41.92 10.12 56.01 -34.75 65.83 64.84 52.31 58.89 84.81 8.76 95.37 25.15 10.96 9.34 9.22 1.83 82.85 15.11 26.52 40.00 85.39 34.49 15.59 59.70 14.44 47.70 46.63 3.66 88.37 82.64 99.13 94.16 17.75 77.80 98.89 32.28 47.80 29.76 66.17 97.22 97.16 86.61 93.28 24.89 15.02 10.07 64.09 51.00 64.04 51.56 74.86 88.49 51.10 64.41 17.20 91.15 54.01 82.06 83.92 20.11 15.95 74.85 31.30 45.31 26.10 84.04 79.17 76.41 89.94 80.12 87.95 12.07 36.45 89.44 18.48 73.54 43.50 71.96 29.10 46.32 92.30 10.22 30.10 55.27 69.56 33.05 42.75 46.56 80.50 65.41 17.26 63.83 16.87 22.30 65.29 81.38 18.41 79.80 59.59 74.81 69.24 39.03 92.90 -55.56 5.71 87.59 63.38 35.76 32.78 34.05 39.25 42.81 12.53 49.73 86.28 73.53 64.39 65.82 28.37 7.03 26.06 64.87 69.38 48.46 69.11 85.40 67.24 30.56 64.98 90.35 28.60 82.46 27.82 89.43 14.73 3.35 2.59 53.04 25.78 39.06 70.71 88.76 3.97 7.13 76.94 72.38 11.21 14.43 49.25 93.43 36.52 61.66 30.10 11.33 17.47 83.85 49.98 90.59 68.89 85.84 98.68 27.34 61.44 41.77 9.92 24.89 22.19 73.92 24.61 58.46 81.46 78.59 4.01 43.34 85.22 23.57 5.29 84.07 57.16 84.35 12.43 96.95 67.53 1.81 7.43 74.58 9.07 37.86 88.51 92.07 87.68 2.28 94.95 16.64 6.36 63.26 58.33 90.19 62.47 36.55 53.86 51.16 84.36 -65.84 66.43 49.79 42.46 62.95 79.19 62.92 33.33 62.09 27.98 23.07 45.45 60.03 27.66 69.45 96.48 86.36 64.37 47.70 56.16 14.81 59.94 53.82 40.77 27.99 58.01 49.97 94.83 92.68 80.40 13.68 44.86 90.65 94.70 29.51 7.30 62.16 50.20 33.00 30.64 91.26 26.77 72.92 57.23 9.91 12.83 48.09 35.95 12.34 58.88 14.09 30.80 58.29 63.39 22.57 22.30 17.70 1.37 21.21 80.43 69.64 51.03 82.65 74.26 78.43 53.18 53.70 49.60 31.73 34.17 29.20 99.44 14.95 49.44 60.41 35.38 58.52 80.75 53.45 10.10 22.98 45.10 0.16 16.41 69.79 87.88 29.91 67.21 43.31 55.30 93.77 27.70 20.46 3.25 3.00 61.12 65.28 99.75 14.40 29.00 -67.15 2.98 8.48 83.03 77.62 10.06 81.95 15.71 92.77 55.74 86.51 88.67 75.83 40.31 16.74 87.48 18.26 29.33 99.14 50.35 97.14 76.20 42.20 8.65 63.38 58.76 13.07 42.40 56.91 76.51 73.40 42.85 8.97 41.99 50.80 77.89 46.53 46.45 42.31 48.09 58.10 35.60 56.95 72.29 22.99 77.72 92.35 91.66 7.50 64.97 10.83 28.63 83.78 79.25 29.41 1.76 5.05 88.36 65.38 19.80 15.90 74.49 82.89 16.12 80.00 84.10 66.31 1.80 7.35 61.41 91.32 19.60 88.18 25.40 75.08 98.37 58.24 11.47 24.79 85.08 77.23 77.44 1.32 33.51 76.54 62.32 67.47 66.94 18.46 98.87 91.05 73.59 91.52 63.19 32.71 8.89 75.81 6.73 67.83 10.02 -68.45 88.73 53.34 78.49 92.36 28.34 27.55 54.18 60.74 31.27 20.50 77.86 92.78 14.87 54.10 98.65 67.51 79.03 60.64 61.16 74.66 24.78 39.60 93.26 9.18 44.31 56.48 68.99 80.68 84.22 50.60 62.15 24.73 80.15 12.97 50.82 51.97 74.42 15.69 93.53 24.01 65.92 24.04 84.59 9.72 45.74 60.22 89.30 64.29 33.72 48.57 1.13 58.83 78.82 79.05 35.12 34.02 10.12 90.79 20.27 33.54 29.30 39.64 74.90 27.59 20.29 76.06 87.05 12.90 32.78 54.73 15.18 24.33 50.97 37.88 90.80 62.11 42.93 61.83 7.41 26.98 2.58 65.81 85.30 71.56 97.28 16.12 83.10 17.90 88.34 90.54 35.48 30.54 92.83 18.19 92.62 4.23 75.57 60.95 35.49 -50.03 57.21 20.20 1.24 2.68 69.63 62.62 96.01 67.56 42.31 95.95 44.34 16.85 55.64 93.29 60.19 95.99 92.49 51.30 56.01 8.94 42.38 42.46 61.74 84.43 37.52 47.64 86.86 21.12 79.09 59.59 15.35 66.70 42.17 18.71 22.46 17.80 64.42 0.38 28.55 16.07 26.62 97.14 32.22 54.44 65.41 86.97 2.67 59.36 44.47 8.66 79.48 98.40 69.43 24.47 99.24 89.57 0.83 45.98 5.94 67.13 38.82 17.19 35.74 15.11 79.46 37.51 22.24 8.71 16.77 18.53 81.75 5.92 81.05 50.67 1.01 17.95 91.85 65.52 49.40 14.66 45.36 19.46 76.22 97.20 64.77 75.29 99.37 70.70 51.59 2.19 89.49 18.73 15.01 45.88 38.83 1.38 69.29 62.31 63.87 -36.16 10.92 44.70 48.41 89.24 71.47 4.79 19.86 50.17 81.27 74.39 78.67 70.81 71.50 1.82 95.76 43.07 18.11 94.33 18.60 41.77 17.44 64.67 82.66 6.19 61.22 12.03 59.56 35.72 33.58 79.33 98.40 79.27 30.60 23.00 31.04 19.21 19.44 45.50 16.59 33.16 60.72 89.71 54.18 59.40 17.36 19.77 29.15 68.59 2.65 70.11 66.24 58.15 81.73 68.26 39.49 11.79 89.55 60.40 58.58 46.76 4.45 44.83 42.43 88.63 58.48 72.45 30.45 14.77 72.51 62.52 41.89 21.19 85.15 5.94 78.74 2.09 44.68 53.60 93.59 57.78 11.48 32.03 86.17 36.84 69.18 81.93 23.90 36.86 17.11 96.48 94.84 59.13 81.55 23.21 26.22 46.27 76.50 19.47 8.60 -17.85 88.65 34.03 30.44 12.95 59.47 15.48 62.51 3.57 92.94 3.63 79.96 36.46 57.82 82.88 0.40 54.35 77.89 75.30 29.30 40.01 42.44 87.97 84.76 35.66 65.96 1.26 6.78 9.82 15.04 73.11 81.55 4.55 2.12 53.60 25.57 19.61 82.61 63.59 98.36 8.49 98.31 18.52 28.70 42.85 0.08 85.58 32.25 62.66 70.98 65.08 29.64 96.39 25.52 51.70 43.57 83.52 99.04 79.43 48.28 66.32 46.36 36.91 82.27 90.60 37.62 37.48 82.67 40.87 68.10 62.41 83.15 14.59 84.32 28.27 35.80 87.43 90.12 27.15 78.52 20.35 72.76 81.99 79.40 21.07 21.64 94.51 45.45 62.67 23.99 47.28 87.29 9.67 28.67 13.37 52.19 11.35 60.27 30.01 6.43 -8.62 75.75 57.73 15.19 22.85 19.34 85.04 68.93 70.12 58.46 73.64 73.85 96.21 55.90 9.12 30.95 21.42 70.87 70.00 48.58 7.87 56.21 29.53 37.73 7.89 91.05 77.62 1.51 80.03 0.18 12.26 99.62 70.89 44.69 14.96 35.71 54.39 6.65 25.84 63.93 70.46 78.76 75.00 21.00 6.71 99.76 18.83 73.60 50.96 76.56 85.15 64.20 39.37 48.56 60.35 66.33 3.36 90.44 46.76 70.00 83.26 72.99 90.66 44.27 8.99 50.45 90.04 41.84 30.57 7.17 86.23 34.09 93.72 83.21 2.66 76.37 64.30 20.46 56.82 86.81 24.04 10.65 54.22 99.63 97.10 19.75 97.80 55.33 74.82 3.09 8.75 16.01 60.16 10.44 36.68 75.63 39.42 83.06 91.78 53.22 -9.13 74.07 54.28 69.31 97.09 18.96 26.80 39.58 3.56 57.50 6.42 10.47 38.42 66.95 29.15 44.17 64.63 53.68 94.55 66.06 71.31 13.50 22.92 40.91 84.39 40.56 43.25 89.41 80.25 35.59 53.03 91.71 51.25 16.39 85.27 85.07 92.67 74.17 82.63 35.65 37.44 69.62 17.36 33.26 55.06 53.39 62.60 52.04 38.01 76.03 8.34 52.47 96.84 46.75 73.66 85.35 85.92 29.76 24.59 24.49 10.91 83.79 87.44 25.66 89.45 65.54 3.22 66.60 29.85 65.09 63.26 24.79 42.27 36.23 56.20 16.83 53.76 59.27 44.85 69.55 23.22 44.30 81.45 34.17 12.94 3.30 91.47 25.96 45.72 21.80 20.98 4.13 0.79 6.10 3.28 58.12 39.52 64.79 13.93 80.97 -6.69 62.55 86.43 1.47 53.57 41.21 17.35 63.41 64.73 11.35 24.85 13.72 96.63 30.51 22.84 62.90 60.83 2.28 86.37 85.03 57.76 58.30 47.86 88.35 25.78 10.09 32.84 32.61 55.56 75.51 14.33 61.20 72.26 1.60 43.66 37.07 42.34 76.49 45.70 67.55 6.80 30.33 74.75 71.92 68.99 15.40 74.24 61.99 56.04 52.50 68.10 90.28 43.29 34.03 67.31 46.51 17.59 58.65 41.57 82.46 10.57 48.61 65.44 33.79 24.66 23.64 6.46 27.19 6.25 36.55 63.51 17.98 22.04 59.91 68.56 11.39 12.13 88.94 82.41 87.77 20.08 75.36 13.05 11.70 82.62 78.74 79.96 36.03 7.84 58.71 97.09 19.08 47.15 91.11 74.71 13.49 67.25 21.81 78.15 40.37 -20.34 74.67 57.52 9.83 81.40 61.56 8.16 55.56 12.75 82.44 98.20 23.26 69.99 18.66 0.44 7.94 56.67 23.20 81.08 31.87 14.75 2.68 59.82 46.21 99.59 6.67 60.17 26.33 56.34 83.09 39.78 2.11 69.77 49.15 94.87 26.45 82.79 85.68 23.91 78.00 57.59 56.21 91.65 15.68 22.58 10.89 69.88 0.86 59.11 43.50 79.30 17.95 11.05 49.10 48.61 78.05 56.11 51.51 19.58 82.13 16.51 1.22 18.66 2.96 74.99 95.98 34.88 81.51 76.92 79.76 4.92 96.68 66.88 64.59 58.23 45.71 98.64 54.77 95.86 8.38 94.30 70.20 25.32 68.78 36.17 49.32 60.55 12.20 2.57 92.99 11.57 31.83 71.22 97.91 47.11 22.32 23.88 17.01 3.84 41.95 -95.70 11.05 32.32 8.96 71.30 26.92 21.74 13.03 6.54 92.57 74.06 25.48 2.49 16.85 4.63 84.79 81.42 75.80 76.95 53.09 25.60 47.87 15.92 16.40 95.83 57.99 24.50 0.90 72.50 38.65 36.98 18.71 4.07 0.60 32.96 23.38 5.85 72.69 54.21 36.47 54.26 70.35 19.03 82.41 81.45 71.68 60.90 35.96 68.35 40.36 72.34 4.53 57.82 92.40 48.42 30.07 28.71 60.03 44.71 34.21 50.89 24.20 50.64 38.80 12.60 58.75 63.35 58.11 90.82 23.12 16.83 49.75 79.97 71.10 89.19 79.38 87.48 55.23 94.50 75.11 7.29 52.29 27.52 38.98 6.23 78.55 49.31 12.25 20.89 99.57 95.26 91.10 19.78 10.55 39.76 31.01 19.64 63.71 52.96 99.39 -14.83 57.17 2.95 29.76 54.58 63.48 36.06 31.91 3.43 55.40 17.31 0.40 10.51 73.30 23.20 24.43 83.94 52.46 70.50 8.25 19.34 13.30 82.08 15.66 72.06 46.12 97.87 60.67 39.98 27.96 76.08 29.47 56.58 19.29 37.66 8.22 23.48 28.27 62.47 72.93 49.29 16.91 89.04 68.70 7.18 15.81 20.50 26.38 90.90 94.52 56.23 67.37 71.83 82.34 0.74 32.65 49.88 90.68 8.61 92.37 46.07 8.74 99.12 22.18 6.67 40.36 41.92 61.15 42.11 68.56 58.48 26.20 83.40 49.28 1.60 3.03 9.05 53.17 65.42 56.96 4.07 56.78 59.48 59.29 74.21 47.88 99.56 29.93 95.08 94.68 86.87 39.97 40.81 58.74 9.61 90.98 77.89 21.96 79.76 91.87 -30.17 66.23 67.43 43.74 51.85 39.33 2.82 17.79 77.37 81.15 57.83 50.08 5.71 52.77 29.77 73.75 7.27 6.02 45.39 48.17 7.42 17.66 20.78 72.55 43.13 46.15 31.54 69.60 78.60 39.53 26.07 16.43 39.57 75.33 74.61 48.42 35.82 99.20 93.48 40.27 69.24 20.35 55.98 55.11 51.00 30.19 61.88 83.06 43.74 64.74 75.94 14.25 73.65 86.56 63.02 29.65 20.26 29.96 5.87 58.19 17.67 53.63 49.51 30.04 77.59 81.08 82.18 10.03 10.62 51.14 14.90 84.56 91.77 70.64 8.65 26.26 29.39 9.35 79.26 48.88 92.37 78.12 46.27 98.47 81.65 47.75 30.61 20.86 28.50 62.41 21.07 25.13 76.71 75.76 91.55 98.59 76.75 10.68 32.93 54.51 -85.80 98.94 23.67 60.52 42.24 9.76 97.71 74.48 42.38 69.65 58.18 82.11 98.48 99.49 55.33 6.30 17.89 87.58 94.69 10.94 37.93 93.23 76.65 92.58 40.82 4.25 61.89 30.06 59.90 9.94 64.62 36.22 28.73 60.96 18.73 64.92 88.70 45.44 61.38 2.95 26.60 84.23 39.62 7.80 41.37 34.47 18.74 85.72 8.77 2.87 6.01 21.60 86.38 84.01 64.31 34.77 42.23 95.12 68.35 14.67 37.36 36.71 22.56 35.63 96.68 1.47 79.67 24.49 11.28 51.67 44.59 85.51 47.65 36.84 38.10 49.91 47.26 33.97 61.18 60.25 6.64 5.76 49.35 46.68 45.05 25.44 61.56 93.62 57.53 85.25 80.56 70.73 35.19 12.88 9.10 76.38 36.84 95.35 58.76 33.85 -96.23 96.39 39.50 99.23 75.62 48.49 52.14 99.98 95.24 76.68 23.19 80.00 25.09 12.74 36.37 70.82 96.42 83.09 28.57 86.33 23.32 43.66 9.13 43.65 39.97 92.17 29.39 62.91 25.25 3.43 41.47 16.40 85.49 66.97 8.75 57.22 20.13 84.17 66.94 15.45 74.38 41.59 18.61 44.23 84.37 74.60 24.41 67.59 34.72 56.37 40.35 90.98 52.22 92.54 8.12 30.03 49.04 95.03 87.59 85.46 77.63 26.42 34.27 4.28 21.73 12.19 83.94 5.96 39.84 26.27 57.59 88.48 76.83 90.76 98.69 57.35 1.94 34.43 45.85 37.67 88.39 1.66 97.85 26.43 4.79 36.03 45.73 69.52 75.56 12.23 86.50 97.00 85.74 16.63 32.67 62.28 27.59 31.39 76.34 97.28 -37.49 47.70 2.78 29.80 62.35 29.14 70.81 93.58 39.73 20.21 44.21 50.50 66.39 20.49 24.96 8.72 61.36 11.18 23.58 79.71 48.04 66.38 0.64 52.12 54.95 0.64 75.82 64.98 34.31 86.21 37.12 72.10 8.23 63.04 48.28 27.34 45.73 88.59 79.26 36.86 75.53 63.33 66.03 80.79 60.84 29.39 46.92 30.95 80.08 78.32 68.20 16.38 42.05 42.29 83.11 25.77 59.38 15.46 8.80 92.02 2.94 88.36 16.29 81.53 5.87 82.96 16.91 29.67 76.28 19.71 40.57 66.71 51.94 9.61 3.19 25.87 1.53 25.79 85.29 7.35 34.79 70.08 28.82 25.91 69.11 71.94 56.75 62.67 46.72 84.85 15.29 28.95 25.12 37.20 80.22 42.04 49.68 97.40 7.29 77.73 -30.05 94.87 90.04 64.58 3.70 96.26 14.82 8.70 94.93 64.07 7.17 31.88 95.31 97.80 20.29 66.77 53.91 95.98 67.03 22.61 93.58 31.20 61.10 35.73 87.82 58.16 62.11 42.90 87.61 68.69 72.75 92.25 97.69 33.94 43.11 51.54 51.21 98.92 31.15 6.06 79.40 69.14 31.91 12.84 23.18 38.11 21.00 45.20 86.45 44.29 87.95 30.93 41.48 89.95 95.63 66.60 98.46 22.23 8.93 54.63 30.43 53.90 74.33 43.69 16.99 65.93 90.10 84.49 78.92 72.76 58.53 80.56 97.90 16.36 51.71 74.56 87.30 67.94 74.76 76.73 67.94 30.92 87.08 76.05 14.58 59.22 76.38 27.45 40.78 4.10 1.44 67.58 12.32 91.28 71.49 31.15 77.45 8.00 34.90 48.00 -89.13 85.59 78.62 15.63 41.70 95.57 60.70 64.66 40.72 43.49 36.12 61.13 38.82 40.33 2.36 76.45 99.33 35.09 7.48 52.55 75.38 73.34 97.84 21.37 0.62 73.13 41.80 52.44 81.68 2.06 77.86 36.55 53.25 93.94 46.55 37.84 8.50 59.87 30.82 44.70 18.53 72.30 34.06 61.21 12.15 32.93 63.39 82.89 77.96 15.69 51.97 64.56 89.27 27.91 10.86 16.04 14.54 96.55 82.98 6.97 72.64 43.49 76.63 68.44 71.81 81.80 35.23 29.07 76.08 50.74 75.90 33.01 54.26 56.25 52.23 17.48 89.72 38.43 30.27 64.80 73.47 12.09 67.70 9.28 50.14 59.07 97.16 90.58 50.89 91.48 81.53 28.65 82.99 44.97 26.77 58.40 10.40 34.69 57.70 40.82 -33.45 63.35 13.61 32.49 95.66 33.45 78.38 60.44 47.56 67.18 52.43 30.58 92.91 96.95 77.78 21.15 64.45 37.40 72.62 98.14 45.95 97.35 90.13 39.49 64.89 51.84 9.99 13.81 77.99 46.18 43.69 63.53 7.72 68.02 50.17 63.98 85.54 51.44 63.10 43.58 22.06 78.56 17.42 85.25 93.73 50.43 76.96 52.82 83.00 76.05 23.16 78.33 94.76 39.07 39.73 60.27 84.41 76.41 92.33 17.66 92.39 72.23 17.61 68.58 71.76 92.04 7.35 60.28 52.11 2.45 88.99 83.78 96.88 94.05 48.13 69.06 57.20 44.77 39.38 76.56 92.75 77.24 21.73 0.84 23.64 81.46 81.65 49.71 93.05 70.68 42.81 77.31 17.14 65.17 80.98 28.56 9.04 12.83 19.19 66.90 -1.74 47.03 86.97 47.04 48.89 53.85 74.18 95.34 38.74 78.20 47.31 1.41 33.52 45.10 69.88 56.96 3.55 17.78 1.96 45.49 44.33 46.55 18.19 62.75 40.40 90.51 63.86 37.78 49.15 12.00 22.84 89.36 83.58 7.07 98.77 42.25 87.22 54.24 30.41 77.98 26.84 17.26 70.19 64.32 86.92 58.95 26.70 2.20 68.80 77.60 71.04 47.04 89.86 41.14 73.87 33.59 55.75 42.21 40.51 87.02 83.07 26.78 13.52 31.46 1.01 76.28 73.56 44.93 68.36 3.08 89.00 9.28 43.10 56.93 41.99 11.48 37.73 68.31 94.54 48.46 1.32 98.19 85.88 32.06 19.44 86.78 24.39 27.77 14.12 41.48 46.66 19.76 43.11 17.46 21.89 44.42 70.22 16.04 30.58 70.38 -75.10 93.17 37.84 73.01 34.30 3.78 33.87 50.14 22.54 80.69 79.59 86.58 89.40 55.37 26.79 40.01 66.44 90.38 13.38 64.19 81.85 37.85 62.80 41.90 12.77 83.30 51.44 40.00 87.30 65.47 70.41 66.13 88.10 78.42 27.95 43.36 74.67 65.74 47.74 42.19 42.91 63.60 23.66 58.72 65.51 79.99 44.14 64.56 7.27 56.57 76.98 41.67 97.90 5.25 0.46 3.44 72.85 91.14 9.35 49.29 95.99 43.27 65.52 82.31 30.94 87.31 62.29 9.14 18.84 2.82 7.59 42.21 22.09 63.60 67.57 96.08 51.47 58.38 69.91 58.62 23.12 4.52 84.21 61.62 48.12 32.34 94.75 5.45 8.68 54.10 11.37 38.09 52.68 17.78 86.36 5.65 26.25 80.57 72.13 61.43 -76.82 78.38 45.53 2.81 44.33 87.36 68.55 69.59 69.38 40.17 65.65 30.14 33.22 23.29 80.03 60.39 33.81 48.76 54.83 64.06 96.82 36.20 77.54 87.24 97.55 52.15 78.02 43.61 68.89 78.27 37.96 2.80 8.05 46.58 53.06 77.23 50.88 50.52 54.16 7.17 56.38 46.87 58.39 58.63 3.79 97.24 16.03 0.97 79.24 97.31 57.26 83.31 22.23 33.48 11.76 58.23 13.28 42.39 33.40 27.11 75.94 40.00 25.28 14.09 99.29 55.10 44.92 63.21 2.82 5.94 50.84 83.98 42.67 96.06 43.72 52.13 19.38 98.85 41.08 62.90 33.13 34.28 21.84 80.01 26.15 2.36 91.32 14.17 82.05 27.11 42.90 91.52 41.08 58.38 93.18 63.24 96.05 19.81 4.47 48.52 -4.78 29.29 87.17 41.18 93.77 18.80 36.19 6.73 65.75 66.99 20.77 51.66 1.31 88.43 64.59 49.36 26.29 21.61 10.88 81.92 34.31 35.22 49.96 39.61 32.89 87.35 51.85 9.13 42.97 26.75 3.67 18.52 14.03 55.34 95.40 55.35 3.97 52.32 15.86 20.45 73.49 26.83 92.44 53.29 8.06 74.06 11.89 42.39 82.18 7.05 46.15 24.17 38.17 76.95 42.25 9.08 81.33 58.17 25.77 1.28 18.04 26.68 98.40 46.23 59.70 5.89 27.94 27.38 3.94 23.85 58.55 95.64 71.00 57.08 82.93 79.78 30.98 61.60 48.57 14.90 81.55 53.95 80.81 47.40 47.69 94.46 95.62 67.13 82.09 4.68 53.97 10.05 31.64 78.88 87.10 59.66 23.24 15.30 82.84 25.28 -20.73 10.80 30.34 69.81 71.81 11.94 21.02 38.93 1.58 92.38 1.53 12.65 20.52 71.60 89.09 57.66 0.34 37.03 62.44 16.17 85.32 78.98 46.51 90.25 12.24 58.29 34.19 61.59 30.61 63.03 54.15 59.52 44.64 27.11 63.63 99.54 14.18 37.02 56.11 92.59 72.31 33.01 63.98 69.78 37.79 25.19 24.20 97.56 0.85 97.20 74.55 87.76 11.65 70.35 15.92 54.12 52.97 49.53 35.13 40.03 63.84 25.68 96.97 43.43 17.42 18.03 0.68 75.81 54.86 24.55 80.93 18.49 48.41 24.13 30.01 44.09 25.00 33.04 68.07 61.40 64.41 21.80 43.73 42.62 71.30 16.58 78.66 13.51 62.18 19.17 74.08 5.14 51.17 46.54 65.07 34.78 92.65 74.90 53.98 57.07 -7.31 28.28 83.17 92.12 91.70 14.90 51.91 55.34 88.99 89.99 37.16 92.64 46.87 32.07 44.60 70.09 37.36 19.75 3.82 38.08 60.42 84.26 20.78 72.65 27.59 3.73 23.92 0.82 92.42 94.81 2.44 64.79 37.94 14.05 56.07 6.32 74.68 29.00 61.90 71.63 61.26 4.05 4.31 26.36 91.39 72.18 23.53 75.74 39.72 51.64 37.31 84.56 37.32 6.89 68.52 30.21 86.16 29.32 71.75 27.71 72.07 68.97 32.09 94.12 99.34 39.79 44.90 73.77 15.82 78.87 60.96 13.87 97.00 72.79 93.33 67.74 20.79 34.36 84.59 13.81 47.81 31.81 63.03 73.85 73.29 38.49 92.84 13.79 73.31 3.07 21.48 43.35 95.76 93.93 74.71 40.89 70.72 42.70 17.76 84.70 -61.44 27.34 51.87 19.92 63.32 32.45 36.37 19.72 68.35 93.53 65.68 46.58 44.44 72.09 70.87 16.42 69.02 77.87 34.86 53.22 12.98 34.16 56.29 59.74 8.64 21.98 85.59 0.77 72.24 39.81 53.90 35.93 56.53 56.17 66.58 13.84 97.79 24.32 41.97 2.61 83.00 17.99 61.90 31.56 80.89 37.88 37.72 5.91 46.99 29.19 45.34 38.84 79.02 66.80 56.74 22.40 53.96 89.00 58.47 15.59 76.62 48.29 99.71 69.60 27.12 65.33 87.61 13.10 95.86 35.20 45.27 67.95 22.87 99.37 69.74 19.67 85.26 81.77 39.27 85.30 50.01 40.54 5.64 4.26 64.09 84.29 97.66 89.56 28.83 93.67 11.27 88.96 71.19 78.51 39.04 38.00 89.18 34.57 24.99 13.79 -84.29 74.87 5.46 76.24 56.46 19.75 16.99 5.44 84.76 27.83 80.40 53.78 12.68 7.04 37.91 11.97 30.99 84.80 0.59 98.27 97.22 65.93 55.60 15.35 33.35 55.62 62.50 94.78 42.50 64.80 55.10 96.95 70.18 84.40 43.17 81.83 28.01 54.79 73.37 92.62 62.61 0.56 14.83 15.32 69.51 85.58 17.02 52.06 4.02 5.82 94.47 48.67 1.03 45.85 67.71 57.91 57.61 50.68 71.36 16.99 46.65 44.99 3.97 23.76 56.83 97.53 1.77 33.33 31.80 90.29 86.13 19.70 69.52 98.04 33.48 70.08 19.03 49.86 23.38 35.89 5.52 32.40 73.80 28.81 47.88 52.87 12.49 83.62 16.94 49.98 20.47 6.96 59.62 92.00 31.82 26.89 88.94 34.70 72.95 18.69 -82.87 65.71 33.33 19.98 64.00 12.84 16.03 53.40 5.41 94.21 9.91 22.48 2.11 25.88 52.67 68.13 96.56 11.50 27.39 88.59 93.94 34.18 82.41 93.86 62.16 37.68 99.06 6.90 63.57 88.22 78.44 57.24 47.89 41.70 3.06 59.04 81.77 34.39 34.88 85.69 72.40 84.24 98.57 63.10 73.65 19.45 62.55 45.42 45.14 57.79 57.13 19.41 83.83 60.36 10.23 15.78 47.56 64.82 4.86 55.28 31.58 97.25 29.63 23.68 59.29 34.50 78.70 72.14 57.96 58.09 76.19 49.45 21.25 22.73 94.35 55.80 55.95 4.99 35.67 62.33 48.92 42.07 6.14 69.57 53.93 79.66 77.32 20.45 62.49 83.67 66.62 0.85 33.16 99.45 84.04 24.37 4.27 84.67 86.70 77.40 -15.55 91.90 27.01 15.47 35.99 44.17 91.00 37.61 86.03 17.32 48.28 39.50 69.26 23.87 50.04 69.64 39.15 29.81 14.96 58.18 47.04 78.57 11.43 20.27 6.61 57.14 73.34 90.41 76.81 24.98 70.03 35.65 20.12 54.76 81.81 25.80 2.32 19.13 86.21 47.17 88.52 87.81 95.15 93.68 35.73 87.97 92.83 89.25 29.64 98.07 20.38 46.84 81.43 51.67 95.61 98.47 93.64 12.77 68.49 74.15 32.98 96.41 61.41 88.64 26.00 51.95 31.74 15.05 92.03 30.03 85.14 26.74 23.57 80.67 26.51 85.19 30.30 8.42 74.06 32.33 0.39 71.15 37.87 85.44 17.65 6.82 5.38 32.88 13.01 41.42 50.25 89.39 73.67 18.85 30.70 2.27 25.59 51.37 20.27 75.19 -93.40 67.21 63.96 81.07 33.30 45.52 97.76 90.30 4.68 8.62 31.50 40.81 67.73 20.82 26.01 70.27 75.81 53.31 40.04 0.75 62.33 82.55 79.80 62.06 94.50 44.83 38.46 95.25 63.83 3.65 57.65 78.39 91.01 3.20 69.23 72.42 73.30 35.85 47.08 27.25 57.52 16.61 95.23 1.37 15.31 61.64 54.46 49.72 46.16 99.38 61.61 72.48 41.83 24.20 74.19 87.84 24.14 55.29 67.89 96.41 18.18 16.37 34.97 25.21 62.02 58.56 95.73 73.89 11.36 73.69 7.79 82.50 49.09 79.79 91.85 58.10 51.53 64.80 42.23 69.37 44.36 49.67 4.09 98.07 64.52 95.44 14.40 40.34 69.77 34.51 78.69 1.71 62.97 2.69 91.74 55.68 53.20 69.01 86.73 29.10 -40.76 64.45 92.57 77.14 0.39 89.08 93.09 65.48 78.48 10.04 61.71 5.81 34.23 48.91 62.68 5.94 23.02 31.42 83.70 59.12 37.06 16.31 83.97 26.83 34.32 47.66 42.50 19.36 86.26 99.84 44.09 81.14 2.07 96.02 31.21 80.57 85.43 58.62 5.46 48.58 81.92 80.28 20.68 55.03 44.43 43.17 85.75 5.97 68.99 57.96 13.93 53.63 88.13 34.21 8.50 39.40 58.45 96.68 68.23 86.96 57.36 41.66 53.00 67.85 70.16 41.10 27.17 39.38 61.30 84.57 25.25 85.21 76.70 29.41 12.53 48.31 85.30 85.96 56.56 63.03 32.54 69.71 90.76 53.39 98.95 48.90 30.98 90.22 9.22 50.08 78.28 80.71 38.85 73.52 61.28 76.31 81.65 72.62 48.63 2.78 -37.78 82.27 17.55 76.67 12.50 96.57 1.95 26.19 14.43 69.01 3.33 47.88 7.99 43.75 66.57 0.53 96.90 20.78 0.12 14.92 46.09 87.69 74.18 26.43 4.96 95.17 93.76 21.57 19.50 33.23 66.68 98.23 56.78 68.77 45.56 77.53 42.99 34.97 32.11 82.52 99.84 13.51 56.26 67.89 33.66 95.70 21.74 3.15 91.31 22.04 72.42 31.83 36.38 89.54 5.92 92.65 6.66 68.01 5.11 22.22 53.46 31.70 94.12 9.92 46.49 94.51 97.55 47.38 13.11 24.14 35.82 86.99 59.18 32.54 56.24 99.89 12.72 74.46 95.42 44.73 5.04 88.98 91.53 76.16 15.00 9.71 88.15 2.03 88.54 91.73 86.01 31.91 40.48 41.59 4.13 3.81 67.33 59.40 60.18 37.64 -7.21 95.12 75.47 43.25 20.65 89.80 19.13 62.23 81.17 15.52 50.10 20.92 27.94 69.44 11.94 55.98 49.80 94.03 41.76 9.91 23.76 96.70 17.52 97.75 87.08 84.36 31.03 14.71 5.80 21.29 80.04 17.23 46.91 69.92 0.77 71.26 55.41 0.53 85.48 96.63 64.23 91.57 3.88 34.17 99.34 99.36 75.59 83.43 12.44 33.42 26.09 66.55 32.12 35.35 53.49 79.16 90.39 20.82 21.21 12.76 65.06 91.09 13.94 22.04 84.48 36.73 43.53 26.67 85.86 88.72 84.32 21.95 61.25 59.33 86.50 62.12 16.37 19.48 12.88 30.43 35.17 65.47 26.61 71.74 67.50 70.98 83.27 36.38 37.19 74.18 50.11 66.18 65.03 48.98 68.19 75.89 58.91 76.18 4.28 97.50 -74.06 26.56 92.79 72.49 55.44 42.29 20.09 45.55 33.98 72.75 36.15 35.81 73.66 71.54 84.73 29.41 83.35 42.06 92.13 31.45 3.25 94.92 64.08 20.78 19.29 12.44 9.71 81.69 88.68 2.16 78.95 68.01 97.78 62.62 80.76 67.44 98.57 96.03 26.88 86.32 44.94 55.13 9.71 23.94 82.36 85.68 30.51 35.02 24.88 53.26 61.75 65.02 76.74 98.51 34.48 73.44 8.75 5.74 16.06 28.96 29.44 83.30 35.65 2.32 77.33 0.64 10.84 80.49 98.28 59.57 26.87 93.65 3.14 17.02 7.89 47.60 38.80 84.88 49.35 23.19 72.20 27.09 29.47 71.07 58.74 85.72 33.94 79.23 82.92 46.17 72.36 94.50 68.71 16.00 5.55 54.45 59.47 24.66 44.98 43.71 -57.39 13.64 18.64 14.19 38.67 72.98 42.06 18.09 95.37 3.19 17.91 28.26 22.83 25.18 19.31 96.56 0.43 15.17 6.13 91.10 93.30 57.73 51.94 61.83 94.95 36.85 70.77 90.51 76.16 88.79 12.22 60.61 86.88 18.91 2.26 70.24 63.79 31.96 86.05 54.11 91.55 58.56 25.89 39.58 48.51 36.43 33.53 47.80 34.13 16.80 86.92 88.71 44.20 45.07 98.92 98.51 38.80 23.78 86.85 78.26 6.09 11.68 67.35 18.93 70.22 57.65 27.68 10.04 23.61 77.26 37.30 65.57 89.94 85.11 43.34 40.14 9.92 71.86 13.07 84.76 68.68 19.03 38.06 89.42 84.68 19.59 63.46 69.44 96.83 57.96 93.85 92.76 99.44 11.64 16.93 48.19 92.38 17.50 40.42 4.25 -87.35 74.38 21.33 73.98 83.94 40.20 82.94 32.28 20.84 62.44 57.33 21.26 32.49 2.74 83.65 52.15 58.16 64.26 39.69 25.32 8.33 64.18 95.95 7.63 45.40 78.06 6.79 68.87 15.46 16.19 86.62 46.82 79.70 3.62 65.75 58.84 50.37 7.57 10.73 29.86 28.75 27.99 51.50 7.14 82.35 97.21 58.65 0.18 14.04 92.14 34.97 19.87 99.75 76.63 34.85 19.32 67.65 54.37 15.37 55.43 54.54 38.40 25.72 28.56 57.93 59.10 0.11 41.58 86.78 56.85 13.79 0.64 71.85 96.45 26.63 80.15 76.25 45.45 9.42 0.06 70.42 95.23 26.27 89.73 17.50 35.64 86.29 11.23 72.62 48.77 90.27 37.47 39.93 31.72 97.08 89.38 70.35 7.46 30.62 13.40 -47.46 49.80 33.59 31.25 21.11 35.82 71.27 79.59 10.28 95.15 63.66 7.45 41.05 79.15 58.21 90.38 23.25 68.09 55.03 29.00 71.57 46.34 19.87 62.32 90.25 77.18 27.24 50.88 31.28 83.52 89.94 88.86 96.65 0.23 60.07 39.17 71.22 52.03 10.87 38.57 36.92 14.69 29.08 47.39 67.72 16.82 57.64 26.18 17.49 91.09 79.72 18.31 94.76 96.28 0.78 45.16 82.21 23.75 99.58 98.15 21.21 82.38 94.58 50.80 20.79 53.42 64.14 14.58 0.13 88.06 81.68 66.68 52.92 17.57 41.05 88.87 71.43 51.39 92.90 51.42 16.37 81.43 60.94 78.23 13.04 66.78 69.32 86.87 15.54 82.31 4.86 96.54 39.29 60.86 93.55 87.45 9.35 33.04 33.98 36.00 -46.08 18.55 85.99 58.97 16.10 42.96 88.20 67.00 1.08 6.13 6.58 43.85 27.56 32.61 93.40 18.52 19.02 59.09 48.51 81.22 44.30 24.73 54.54 9.36 48.94 64.61 41.96 25.75 38.84 84.45 75.04 48.63 33.08 24.58 50.03 89.34 3.54 64.54 5.61 0.49 72.07 11.02 83.76 24.38 89.24 31.65 53.05 16.86 9.36 46.78 60.22 30.21 76.78 77.76 93.28 52.28 34.54 42.27 94.62 32.44 39.68 54.10 83.50 81.98 54.96 89.02 55.50 94.88 12.54 93.77 51.23 52.30 74.42 52.91 49.39 8.57 67.38 25.17 17.55 15.35 89.24 13.98 8.50 45.17 8.04 31.26 17.64 77.11 47.23 25.73 32.90 78.77 97.87 70.67 26.42 0.63 58.89 27.84 90.43 6.18 -78.18 30.15 97.74 57.36 50.44 13.03 11.85 63.61 33.72 72.97 46.03 1.54 70.01 96.82 6.59 12.90 92.16 33.78 96.51 86.12 43.13 33.83 61.07 84.88 87.00 95.35 76.61 20.27 7.84 71.15 59.05 85.69 98.89 78.78 45.72 51.23 99.40 56.28 28.66 51.00 55.66 34.53 28.63 45.63 26.53 50.46 77.40 52.39 89.18 68.71 15.59 48.66 17.67 98.73 44.32 60.29 99.07 49.75 91.01 71.10 10.21 0.43 76.35 91.12 52.11 80.95 32.56 49.59 32.14 97.36 69.75 49.02 66.13 11.89 40.03 68.56 38.79 67.09 49.09 54.48 77.01 7.49 89.67 55.61 95.12 96.92 74.63 52.41 36.80 98.61 43.39 18.04 44.28 50.77 64.80 9.11 60.98 53.30 20.92 61.47 -96.36 61.99 24.44 24.87 27.69 81.69 90.16 72.51 42.91 75.76 51.50 14.61 36.94 6.77 2.56 63.60 33.66 71.19 26.72 29.41 85.03 65.55 46.99 79.22 21.37 41.96 12.86 99.77 50.47 59.20 98.62 12.81 20.69 14.31 79.84 55.18 65.07 10.47 15.88 17.36 86.22 92.84 52.52 17.39 20.45 88.07 64.46 47.95 32.85 15.11 21.13 31.90 73.97 49.81 96.33 58.83 59.10 48.01 30.79 35.24 75.93 84.97 93.99 10.34 80.28 13.72 88.38 91.51 87.50 68.45 49.87 70.68 87.62 10.45 4.19 67.70 50.85 93.04 67.29 95.69 51.12 69.21 9.18 19.91 43.24 23.60 34.28 41.91 11.61 75.11 36.02 2.92 2.07 21.34 35.81 68.47 35.51 30.84 10.95 55.12 -73.56 19.88 12.75 41.77 19.02 44.68 30.24 25.23 41.34 13.34 79.14 90.26 4.11 53.64 76.50 72.22 81.67 36.74 66.96 41.80 40.63 96.06 35.29 31.42 86.04 27.94 16.17 35.44 16.36 94.85 58.71 61.24 10.12 31.98 56.59 88.46 52.38 31.25 77.47 95.74 77.70 61.08 60.57 76.58 36.10 98.41 99.73 10.38 87.94 75.58 23.29 98.81 76.92 23.96 60.54 18.94 73.06 77.88 81.28 20.51 98.70 64.75 10.73 22.96 28.82 7.43 65.21 44.11 30.59 9.12 70.00 67.02 95.66 44.34 84.95 57.56 61.76 32.55 88.91 71.43 79.58 40.78 97.49 29.34 15.76 41.02 80.93 89.61 38.71 74.63 46.67 6.22 65.96 5.93 95.64 19.13 57.92 40.72 1.94 35.12 -28.05 97.65 64.68 44.82 93.14 59.65 83.97 65.77 61.59 52.52 1.90 86.54 11.43 56.11 91.81 42.89 91.63 78.82 98.63 24.60 79.83 38.43 46.98 41.25 59.41 37.03 13.18 95.69 16.94 44.40 92.15 68.37 0.12 60.66 17.44 24.55 29.51 79.79 55.07 68.51 55.45 67.09 93.78 23.81 75.35 39.01 15.56 27.54 2.70 98.89 48.04 14.04 7.10 46.73 11.56 17.93 43.39 90.99 18.24 73.99 42.82 43.17 33.15 27.42 92.89 62.53 43.65 21.96 39.36 0.92 39.35 86.91 17.96 8.74 29.48 97.10 20.23 14.39 79.64 53.25 15.23 23.18 29.93 68.06 54.32 26.57 86.45 45.71 37.03 51.49 76.11 88.76 49.64 30.18 57.94 95.49 75.90 73.45 97.70 76.72 -23.80 48.08 15.12 72.04 64.62 20.59 65.29 0.12 77.07 59.32 5.04 25.03 47.69 69.67 80.44 38.04 12.25 69.28 21.11 93.57 51.18 21.32 7.04 2.40 77.52 32.96 60.24 69.35 66.15 15.27 56.07 55.88 55.14 85.78 59.93 66.52 45.58 45.87 64.66 40.71 52.77 74.87 96.91 89.71 84.11 26.52 1.65 98.76 90.50 23.47 66.64 2.54 13.01 6.32 86.24 5.08 37.23 68.50 52.02 79.93 2.97 63.94 48.23 74.83 60.06 11.87 64.08 0.47 1.90 57.80 86.60 95.27 38.98 34.99 5.78 25.85 18.97 45.48 50.73 22.74 61.58 35.23 75.79 69.35 35.54 9.29 74.05 28.20 6.56 37.59 23.23 24.28 55.91 61.26 60.99 7.26 4.24 88.92 74.76 70.50 -0.61 46.85 91.22 29.56 80.09 21.27 97.22 30.78 70.66 30.59 80.36 52.44 20.83 59.77 39.58 91.64 23.63 11.76 55.93 58.40 99.82 38.26 95.29 58.39 49.28 10.41 30.77 30.52 89.04 56.05 36.52 11.19 54.00 97.82 70.84 15.88 6.73 21.54 76.47 80.39 4.94 65.10 5.63 72.19 75.55 8.51 62.77 10.95 67.08 43.80 64.38 40.98 82.50 35.36 99.07 52.60 3.83 56.43 80.41 91.34 62.86 6.64 21.83 30.45 65.57 65.20 46.69 71.13 1.25 14.43 13.28 96.50 93.49 60.94 3.45 30.25 88.12 53.20 66.54 73.86 54.99 1.07 71.38 76.39 86.43 60.53 36.72 41.89 47.99 43.82 92.97 41.19 55.95 80.07 87.11 65.37 10.18 91.63 84.56 21.12 -12.09 77.10 78.12 1.99 29.86 81.74 37.65 59.35 4.57 59.14 8.41 32.13 15.10 98.81 1.47 97.21 38.88 80.43 56.97 63.63 99.87 93.97 66.86 10.36 1.40 39.55 51.78 54.13 86.73 61.55 24.50 85.57 20.66 92.35 22.30 46.63 33.36 43.41 41.79 25.73 92.01 91.92 18.71 69.72 20.94 72.65 48.64 89.55 31.36 37.57 20.14 62.06 49.00 91.21 1.43 21.43 82.02 5.80 27.32 7.77 60.04 6.63 60.94 17.37 32.53 15.30 86.44 17.35 27.39 13.05 63.45 20.74 96.32 29.73 51.35 26.41 38.31 36.68 86.64 10.16 10.13 63.79 90.40 44.76 63.79 47.69 36.63 68.94 81.63 19.48 91.53 75.19 43.77 15.52 68.40 64.22 1.07 25.61 25.38 81.12 -54.11 4.58 68.85 54.37 94.74 14.56 42.96 40.30 57.43 65.57 98.03 17.91 59.53 21.57 0.52 20.05 16.71 21.56 98.44 14.11 86.40 72.36 63.08 82.70 21.31 7.98 47.20 10.04 79.56 74.90 72.21 26.91 85.65 37.99 38.53 18.49 61.82 32.48 46.16 43.79 6.56 62.31 76.82 22.97 40.22 36.13 78.40 11.57 52.65 13.29 72.63 32.12 96.76 81.51 92.69 61.26 36.59 38.25 51.84 30.32 85.95 28.64 77.47 4.75 24.00 62.76 55.75 85.78 33.82 6.08 22.31 87.45 23.02 33.52 10.60 72.91 86.30 42.05 42.75 67.26 82.04 93.44 39.08 69.23 20.16 69.33 49.50 58.40 95.96 18.04 29.26 12.14 5.18 74.92 91.54 10.57 2.86 18.33 94.66 14.42 -11.21 74.00 97.82 34.31 14.41 2.06 32.90 15.45 6.84 49.24 1.39 99.73 9.52 53.39 69.55 25.55 63.01 68.73 33.18 45.33 98.57 94.34 76.21 97.26 94.77 49.48 79.43 55.00 78.94 44.17 29.76 89.04 41.24 23.28 39.17 17.85 84.79 38.40 93.40 60.89 97.50 42.55 85.94 75.71 98.68 4.75 22.79 21.53 57.96 34.10 40.64 20.87 57.23 47.30 16.53 4.79 92.78 0.99 73.20 80.17 98.20 64.96 41.00 87.51 95.15 34.42 45.64 63.87 53.82 95.18 84.97 26.33 17.31 19.88 97.24 32.53 84.49 33.49 57.68 49.09 21.80 22.26 40.39 32.44 49.42 95.26 76.21 11.16 72.38 11.22 19.52 31.05 85.08 18.01 44.88 44.84 66.71 32.64 56.16 61.69 -88.79 9.65 98.81 82.23 32.43 11.16 60.02 72.55 7.61 89.76 48.87 24.42 86.09 90.59 11.15 34.14 45.80 22.92 23.12 60.79 86.08 38.84 4.53 35.32 36.08 40.33 82.73 64.61 27.75 59.34 78.05 3.85 15.35 91.14 52.40 45.76 60.26 20.55 67.00 16.54 34.54 62.01 97.41 37.69 24.40 79.82 25.15 50.49 59.41 88.30 84.19 53.08 70.39 8.82 61.93 25.88 96.79 98.70 81.69 48.50 58.30 68.77 29.17 13.11 65.78 0.47 64.13 64.96 57.53 51.35 55.98 12.45 11.58 81.22 15.31 72.15 76.16 74.11 56.76 36.52 58.59 98.04 0.08 83.45 38.55 13.67 37.84 23.32 84.43 80.18 3.45 48.92 12.01 46.43 25.40 24.85 41.38 9.94 4.20 50.99 -87.20 25.86 48.65 63.98 3.16 60.47 0.25 65.01 79.73 89.12 11.08 21.48 1.54 22.83 13.17 67.64 53.76 33.87 37.40 98.30 1.68 33.48 63.35 58.16 88.64 96.39 81.49 5.73 87.39 82.67 63.66 27.98 76.23 78.58 23.00 46.98 26.53 59.89 58.25 3.84 2.36 86.92 20.11 35.86 29.60 65.37 29.72 14.26 17.58 77.91 55.05 50.93 85.62 60.19 95.14 78.90 23.26 97.23 76.10 54.25 86.68 32.02 87.02 17.62 65.22 68.37 12.28 93.50 90.82 96.94 31.27 31.11 50.95 18.80 54.21 71.22 2.60 95.84 41.79 86.16 22.87 7.33 91.61 42.19 49.57 83.99 99.27 91.02 11.46 24.19 69.30 52.24 81.89 55.83 58.76 10.14 86.03 22.18 28.17 0.32 -93.07 2.37 31.82 35.11 76.60 36.42 62.19 96.40 9.30 74.48 17.09 94.32 93.36 37.48 76.00 63.55 46.06 43.56 90.20 89.52 89.58 74.28 82.42 57.79 67.10 35.88 6.73 27.85 88.90 27.96 90.94 90.63 59.34 15.08 84.66 11.62 19.02 25.97 41.73 26.39 24.69 43.13 7.77 72.38 88.26 86.63 84.96 28.52 72.95 79.52 68.58 54.20 1.86 31.04 64.80 56.18 19.72 42.38 29.61 73.52 21.18 28.41 42.27 1.71 93.05 32.47 2.86 73.25 74.41 96.32 19.48 51.42 52.19 46.12 19.31 62.19 63.20 2.33 37.93 93.32 95.89 78.02 24.70 98.35 99.13 78.69 74.81 74.06 22.58 22.06 11.12 2.97 97.12 55.57 42.60 17.58 95.29 88.27 83.25 39.76 -55.09 41.84 3.61 38.46 3.16 33.82 53.49 46.03 65.10 84.57 59.32 50.93 10.35 92.09 84.27 0.98 16.57 45.33 91.76 87.24 74.21 44.50 64.05 72.56 91.78 84.36 37.24 98.07 93.66 60.69 67.17 42.82 22.66 8.47 17.67 24.09 18.42 75.12 9.70 10.78 62.30 16.08 98.92 31.96 34.62 74.31 16.57 76.42 65.01 60.40 22.85 44.12 54.74 95.32 89.84 29.12 15.55 81.76 4.56 10.40 48.86 32.17 29.15 65.94 26.45 67.53 1.74 55.34 0.94 13.77 23.15 6.17 94.30 98.80 25.07 83.82 81.89 15.47 21.62 87.81 33.61 13.42 35.64 51.46 1.16 16.59 66.30 48.75 61.94 38.07 69.32 2.39 26.19 80.61 6.86 62.15 64.98 37.39 54.69 78.67 -29.07 47.71 25.46 11.81 50.31 88.27 69.71 27.07 8.73 40.52 13.87 97.72 59.08 60.79 80.96 18.28 30.71 40.03 36.45 84.99 10.96 21.41 11.52 39.31 69.36 71.62 0.18 30.03 14.06 21.35 37.50 91.51 60.57 85.80 64.00 4.97 22.19 22.10 48.08 48.56 54.64 65.59 6.84 53.45 23.37 38.22 59.19 53.59 74.42 29.48 13.52 84.82 41.46 47.60 92.92 20.74 28.94 86.86 90.71 7.57 95.44 36.34 60.94 26.39 76.84 62.05 91.66 32.08 35.76 83.51 85.23 26.47 88.84 19.91 70.99 52.73 44.51 79.13 81.97 69.38 65.78 14.17 66.39 42.40 65.05 22.19 75.21 46.50 88.85 24.54 40.93 30.56 49.23 98.46 24.87 8.78 15.02 41.96 1.56 25.22 -52.16 29.57 30.44 12.75 98.91 87.33 91.21 33.02 26.29 75.83 0.67 89.96 37.98 5.87 47.99 40.50 78.01 25.58 2.77 23.17 24.16 90.45 22.68 67.35 19.80 72.65 34.55 52.94 60.87 5.15 91.39 54.82 79.77 60.79 19.49 51.82 96.86 86.47 35.01 71.19 64.01 87.21 51.03 1.63 54.02 89.00 86.00 95.20 45.98 48.30 6.75 78.27 24.56 3.04 95.70 60.20 41.23 8.59 83.82 45.06 98.64 55.05 19.96 37.01 45.35 37.11 80.60 76.07 18.73 31.73 54.27 53.30 88.25 45.77 53.02 34.85 88.56 29.37 47.89 81.52 76.68 83.47 99.00 7.79 31.02 29.71 57.96 96.27 54.94 76.38 51.33 53.92 19.30 6.82 83.09 9.08 53.74 35.63 9.74 61.08 -78.96 62.86 84.52 68.66 31.69 10.69 54.19 36.92 24.12 19.40 2.14 87.24 35.05 44.92 52.93 75.90 89.02 93.91 44.54 16.70 72.99 96.67 35.96 74.89 17.47 61.56 99.53 72.03 26.17 94.47 77.88 7.96 99.59 22.11 22.76 95.31 87.67 41.49 44.28 15.39 50.61 18.35 83.09 57.43 13.38 87.35 40.77 95.73 56.83 49.79 26.16 86.18 61.53 24.18 30.75 34.57 30.19 62.38 74.64 90.03 98.47 69.89 13.75 3.70 33.70 49.91 84.79 84.29 78.03 91.88 12.00 20.37 3.03 29.52 78.42 58.22 23.23 35.18 73.84 55.61 69.38 49.98 93.11 77.35 41.31 15.06 38.94 52.31 32.98 51.63 90.93 56.96 54.73 52.44 14.97 21.04 61.66 66.16 46.98 17.22 -44.15 75.92 96.04 99.75 0.57 74.14 33.03 51.83 4.16 56.52 98.48 96.15 76.40 62.66 20.15 94.46 45.21 40.18 99.58 81.35 28.55 38.52 65.69 57.60 86.19 47.23 18.76 60.62 80.27 76.88 27.44 75.12 8.14 30.36 42.55 46.44 50.80 79.76 63.27 86.82 23.93 86.42 39.11 62.83 81.93 84.50 37.04 32.21 95.21 59.13 59.88 28.88 75.30 23.64 19.59 10.87 61.82 58.01 16.07 73.05 73.76 91.14 24.51 80.20 17.66 37.07 63.51 99.96 96.90 23.62 80.54 99.30 8.34 45.75 6.28 2.28 73.60 43.67 41.70 1.01 65.27 17.73 88.67 11.59 10.11 17.59 96.95 13.68 91.30 53.23 88.26 84.24 54.89 13.28 54.55 89.35 73.43 31.88 11.50 36.18 -58.47 84.14 11.06 33.03 52.69 66.52 74.10 35.42 59.75 17.43 12.93 41.17 95.99 0.20 9.31 63.76 83.01 49.12 99.42 71.78 64.61 84.69 74.53 91.63 99.34 13.02 45.51 15.69 50.64 2.54 95.97 79.48 76.15 69.77 20.86 98.93 47.74 72.97 17.53 19.62 45.42 19.83 5.93 64.88 1.11 84.94 21.67 46.86 65.78 96.96 43.26 48.41 69.93 79.66 56.37 47.17 98.03 11.55 72.01 20.89 72.25 63.35 20.64 83.15 31.62 74.23 18.08 94.05 90.31 90.04 3.76 59.37 42.51 18.87 9.42 38.81 98.42 94.14 72.23 78.41 25.30 17.52 40.01 52.17 27.51 32.31 72.68 85.55 36.52 7.70 4.41 3.06 80.01 76.79 71.00 57.88 73.55 24.05 72.16 11.34 -84.46 95.36 78.24 53.52 45.60 51.04 48.64 30.56 29.28 82.61 54.21 77.16 74.42 85.76 35.38 58.62 3.04 11.42 65.60 99.61 79.77 45.07 49.31 74.16 58.98 87.93 38.67 66.68 29.32 20.10 56.98 28.89 50.24 50.31 45.28 42.65 67.81 80.59 24.22 23.67 93.67 86.52 8.98 62.61 93.39 51.29 30.37 8.40 27.68 72.08 36.40 99.78 57.85 95.44 1.26 83.19 19.08 25.89 70.53 97.55 65.05 14.11 40.43 91.99 68.23 1.43 31.48 72.29 52.05 41.18 94.27 89.92 65.10 93.42 27.46 47.67 80.83 15.80 89.51 41.61 40.75 78.89 68.68 58.22 48.07 82.80 55.19 7.64 22.62 31.90 46.37 1.09 28.45 65.04 3.39 96.77 13.75 31.38 45.26 21.87 -54.48 46.21 77.31 13.57 2.21 81.19 60.80 74.24 93.44 89.16 56.19 25.72 5.60 85.91 18.86 93.54 88.37 30.64 20.28 3.45 78.95 4.42 28.72 10.74 56.89 88.96 87.40 63.40 3.52 54.46 1.72 86.15 74.40 94.53 3.21 5.31 74.06 8.33 75.51 86.00 39.88 13.27 80.25 15.76 92.88 81.11 65.93 74.91 58.22 59.39 39.85 1.56 92.07 0.30 7.10 22.95 4.03 13.99 53.17 89.99 71.30 89.70 25.70 41.38 69.21 88.94 2.98 75.58 40.18 98.15 92.50 29.83 56.23 84.89 35.41 53.69 27.14 39.82 35.73 88.25 2.39 10.80 18.31 87.54 84.49 51.73 73.90 8.90 34.86 46.96 24.63 33.98 71.38 76.59 74.45 29.85 86.42 45.44 53.07 92.88 -76.07 29.95 35.35 71.48 67.53 92.51 20.94 39.43 46.88 13.14 85.28 96.93 92.42 22.36 14.50 67.78 93.46 7.24 83.82 90.57 2.20 27.80 29.86 23.69 21.03 19.58 92.68 66.80 57.61 75.85 6.39 26.10 63.69 10.31 81.21 28.67 68.82 23.76 79.80 63.22 16.67 47.69 24.09 33.54 26.56 77.91 7.57 4.25 48.08 74.65 75.59 79.46 46.77 93.91 93.46 65.13 35.84 86.61 76.82 19.11 68.58 4.53 36.23 85.11 81.70 93.26 21.92 36.98 21.89 0.12 42.54 13.95 68.78 16.04 47.53 62.51 98.00 2.13 53.61 83.79 60.80 34.69 27.25 11.66 48.38 19.60 2.10 94.12 26.05 28.56 17.37 13.48 95.85 40.64 40.26 39.37 23.53 78.77 71.49 16.07 -35.08 36.15 86.00 23.40 31.76 68.12 43.09 26.69 32.48 6.94 41.56 70.49 87.38 93.84 56.40 62.24 8.36 82.30 84.95 64.81 89.07 19.72 37.88 83.77 67.23 85.39 35.28 24.02 80.56 39.03 74.22 63.87 10.66 24.47 65.23 82.97 18.29 76.57 90.02 56.63 72.00 94.43 39.43 16.59 96.50 62.72 50.48 74.67 88.43 23.97 51.00 14.62 89.57 65.35 66.52 8.95 39.27 63.32 43.86 37.54 82.43 26.54 60.94 3.89 62.20 22.63 74.53 2.64 60.69 75.00 63.96 88.23 74.22 41.13 29.16 70.58 85.69 10.68 90.51 76.18 25.85 49.14 54.74 24.03 32.24 88.55 25.88 9.01 0.50 23.67 20.57 35.88 73.86 9.59 69.98 34.11 21.93 28.91 23.47 18.27 -26.87 38.04 95.22 70.42 96.30 74.38 4.63 65.88 54.68 2.90 55.24 30.14 65.04 99.83 83.61 89.28 62.10 30.71 19.68 15.43 11.21 44.75 58.65 15.78 94.71 19.44 49.17 51.54 69.07 3.51 48.59 90.87 27.40 0.79 88.01 25.43 82.90 1.04 68.91 70.83 20.21 88.59 39.01 68.15 89.48 95.72 73.84 22.26 38.76 11.14 4.03 27.28 39.36 19.39 22.48 3.82 76.00 43.00 16.84 78.41 3.48 28.80 84.03 5.90 95.43 5.59 66.06 47.67 82.20 93.04 62.79 4.92 83.00 45.72 89.63 73.47 75.03 18.32 11.28 69.42 62.71 89.77 22.88 3.49 98.26 60.31 69.34 98.94 8.47 34.57 17.82 18.33 4.65 98.71 12.55 89.68 28.66 1.21 88.85 94.01 -94.06 30.71 68.76 29.03 50.89 34.59 99.66 79.11 71.26 90.22 11.13 47.04 2.51 11.87 20.59 94.37 26.25 30.22 19.23 44.32 76.69 44.97 90.00 10.10 99.29 94.68 25.24 70.05 33.81 55.20 42.49 78.69 24.50 72.94 80.64 52.68 86.95 51.37 11.36 78.13 8.80 6.72 60.06 12.37 58.19 83.35 65.88 76.35 95.43 60.19 93.35 97.94 11.65 52.08 72.07 16.79 13.94 26.76 68.55 64.81 77.25 89.51 87.03 70.17 94.33 88.90 51.42 43.82 96.08 14.03 50.82 93.27 93.72 15.19 45.32 15.21 23.86 44.13 77.18 20.84 48.72 14.56 32.46 25.86 60.43 45.20 68.94 42.86 44.30 34.85 36.35 12.84 75.66 28.59 50.79 41.82 37.11 91.77 49.54 22.39 -58.32 46.92 49.95 5.91 86.74 66.48 58.30 45.28 7.11 91.78 6.52 53.41 21.82 9.85 3.95 43.70 12.45 69.29 13.49 16.37 27.00 80.44 99.57 73.40 84.79 0.65 28.73 26.45 73.53 94.43 41.74 39.65 27.83 52.80 33.48 9.62 79.77 93.72 78.77 18.14 43.30 47.67 42.88 24.16 73.05 19.57 48.76 97.55 78.45 31.07 42.27 15.46 70.79 3.64 67.44 67.37 38.83 24.98 20.67 39.20 70.29 28.24 20.04 84.99 74.46 51.14 73.04 15.72 37.52 10.50 36.55 4.45 84.43 3.43 96.97 57.96 21.26 96.90 75.38 97.24 76.97 59.29 87.06 24.58 50.18 22.33 98.21 29.19 54.23 25.04 82.65 0.12 51.56 78.05 8.21 33.92 80.17 30.44 17.70 83.34 -66.46 14.62 31.98 34.15 17.20 90.43 13.71 73.88 73.35 25.50 52.56 21.70 52.91 0.19 81.16 12.44 15.80 51.34 27.65 96.64 80.86 60.37 24.65 94.45 91.00 85.42 3.13 81.31 13.82 83.17 15.41 61.82 82.24 82.54 12.26 68.70 93.32 18.80 41.92 42.89 42.60 65.06 45.54 51.60 36.71 38.95 8.48 60.61 13.39 12.10 58.30 71.98 53.00 54.66 33.72 79.55 19.41 0.18 66.15 49.33 57.00 45.18 78.48 73.06 20.52 78.66 55.66 78.73 4.84 6.96 89.02 66.07 90.06 15.39 99.86 32.52 19.64 41.19 16.03 35.52 63.45 93.11 58.34 89.42 3.67 99.75 39.62 62.32 41.57 80.47 53.19 26.77 75.02 22.76 91.06 24.29 93.96 23.55 96.46 13.86 -35.22 52.35 82.03 50.07 60.94 67.86 20.09 42.87 76.83 83.52 87.16 20.92 47.50 74.26 9.56 3.97 14.92 19.31 48.59 64.35 61.61 64.81 1.41 73.11 86.58 11.85 5.99 59.62 91.52 56.28 47.42 36.91 42.64 45.91 60.65 38.94 59.84 49.20 74.67 24.36 16.06 51.58 41.31 22.20 47.08 47.84 77.21 63.18 86.56 47.40 88.89 50.06 88.33 88.52 3.06 34.59 21.93 5.44 88.79 35.67 93.02 82.84 59.65 99.37 80.45 43.63 97.36 52.02 26.06 73.88 31.04 87.91 2.27 21.21 42.80 51.80 32.67 9.82 19.20 11.14 44.15 19.52 36.62 83.48 43.14 93.92 10.95 73.43 29.32 71.56 47.54 52.53 42.95 35.13 44.80 34.69 11.12 17.70 22.26 93.53 -52.86 95.99 70.51 42.62 58.73 88.50 91.46 30.68 89.40 86.56 93.40 80.33 53.29 10.06 15.88 45.06 27.45 43.05 97.85 9.41 0.67 28.48 20.08 1.13 97.90 21.81 88.98 13.57 34.92 79.98 46.24 78.62 57.08 64.90 7.86 84.68 64.39 54.82 19.20 30.67 74.03 31.91 99.33 31.97 44.17 39.70 28.46 2.64 6.53 72.07 63.31 28.09 32.53 31.75 15.52 71.70 47.03 80.06 7.86 97.28 32.14 41.06 25.24 55.76 7.11 63.21 1.68 93.10 58.04 61.93 41.92 19.47 87.30 52.28 20.67 67.00 73.94 40.40 90.65 36.15 96.65 75.75 32.58 61.15 63.12 80.25 42.02 15.58 40.69 65.34 48.66 60.93 62.90 10.70 67.91 56.66 81.06 23.19 48.18 87.68 -69.49 5.12 34.25 5.56 40.98 63.27 81.28 89.51 75.52 32.02 9.99 48.98 60.07 68.50 57.25 78.54 51.60 50.55 62.55 39.11 31.39 43.17 59.85 76.09 94.97 88.24 31.15 44.79 40.74 98.58 5.29 86.09 12.24 11.35 77.21 85.32 13.11 4.01 17.40 42.23 56.96 67.49 62.96 83.06 65.93 19.56 42.46 48.06 92.16 83.18 94.63 37.57 52.98 59.62 0.70 70.25 4.64 92.97 93.51 16.99 38.89 95.75 46.03 28.69 28.87 36.02 26.56 75.22 20.25 5.31 85.06 47.83 64.52 54.39 37.64 25.57 90.56 85.95 59.40 53.50 20.96 41.77 98.35 99.87 54.53 17.72 49.11 38.49 97.19 97.52 10.28 41.40 12.72 64.21 32.33 99.43 89.23 98.06 42.93 1.91 -75.77 73.92 52.36 43.41 79.29 16.46 5.23 9.39 53.86 19.29 64.72 23.96 98.68 53.36 38.23 89.27 22.54 46.36 6.74 97.83 88.16 43.15 37.50 58.20 14.04 42.79 39.38 2.14 3.28 13.87 21.26 0.85 79.68 25.91 92.27 74.72 83.99 50.05 71.05 95.54 44.78 19.15 69.01 84.95 72.24 2.34 89.46 92.51 91.19 62.77 52.82 17.78 76.16 49.33 32.06 92.33 25.38 43.77 21.23 15.01 18.14 99.50 79.25 13.17 66.92 57.78 57.26 0.19 5.91 39.45 4.64 79.28 76.25 1.83 62.44 10.11 15.30 13.25 60.46 91.96 70.53 27.85 58.15 3.39 16.13 40.31 12.56 26.07 76.36 69.64 8.57 74.70 70.57 57.19 70.10 15.35 42.96 73.36 86.52 22.67 -88.30 42.47 56.40 44.45 92.88 45.75 36.35 2.54 77.72 89.34 13.00 66.58 41.06 18.22 84.22 79.20 75.01 70.64 56.86 53.17 31.86 72.04 17.34 75.87 61.00 75.68 99.92 14.76 97.18 19.31 43.99 99.18 42.09 41.07 16.78 3.20 6.33 65.54 60.63 50.32 46.89 7.67 57.13 54.21 8.52 11.25 3.30 37.47 8.04 33.86 94.64 81.20 7.56 11.83 82.50 85.71 15.47 70.53 6.12 22.41 40.41 74.40 14.90 86.06 76.19 46.11 93.18 60.65 16.04 93.57 93.57 49.29 83.23 12.84 64.66 17.31 12.00 15.44 72.22 77.91 93.64 32.46 11.96 4.59 78.99 70.55 68.12 2.92 83.80 67.77 64.19 23.09 69.21 55.23 6.92 29.99 74.36 77.45 61.47 93.18 -68.33 39.40 74.54 49.43 31.57 76.67 6.67 22.64 55.68 16.97 26.26 33.21 82.57 72.54 16.78 99.38 44.91 57.34 32.53 23.15 53.73 8.38 79.16 64.87 1.58 37.88 27.56 81.08 22.08 21.42 39.62 92.11 29.65 69.43 64.07 19.22 15.75 58.42 46.69 6.57 0.94 45.59 30.28 89.95 64.38 63.03 58.54 30.50 49.26 28.09 95.39 18.49 41.82 59.63 76.75 80.19 91.98 96.74 94.82 82.56 75.98 74.96 72.21 61.63 85.59 56.91 83.98 49.75 15.03 96.54 93.10 54.23 86.07 38.98 32.15 70.18 17.57 90.94 57.56 31.32 24.17 99.34 44.03 19.72 34.52 31.28 69.42 87.82 57.58 55.73 35.77 17.03 30.26 94.06 36.81 20.13 97.73 10.63 73.03 80.66 -88.00 62.42 41.13 10.17 3.29 74.13 76.52 97.31 87.40 46.39 45.45 46.05 89.89 39.56 6.43 90.57 24.08 94.29 21.66 24.62 50.08 54.58 41.41 75.40 19.23 23.51 4.89 68.87 49.66 97.43 52.04 59.58 6.11 7.61 25.92 87.56 68.44 86.94 79.63 31.72 32.68 65.80 78.79 1.62 12.43 82.76 66.67 69.24 54.26 93.41 74.81 25.79 18.72 4.24 65.36 31.03 79.10 99.38 10.28 39.13 62.14 77.33 82.17 82.00 43.75 79.00 92.72 56.85 83.67 34.72 83.99 0.21 80.75 75.71 14.74 65.35 10.02 52.79 37.23 59.04 18.67 58.31 46.33 7.98 29.45 53.81 3.72 55.73 0.27 34.43 95.52 88.13 94.87 70.74 88.59 21.54 40.97 60.44 80.10 85.26 -23.78 98.20 2.89 4.30 29.66 68.52 11.19 63.22 52.12 39.51 31.49 0.21 40.43 20.32 28.68 10.50 10.58 83.75 94.45 68.25 65.20 26.05 32.04 78.00 67.43 29.90 70.04 3.77 46.54 58.04 42.99 91.58 25.40 31.10 39.75 62.89 73.58 97.95 91.02 54.10 62.60 89.53 98.85 62.01 13.19 87.87 75.08 43.21 87.05 45.27 99.10 13.74 33.92 99.53 87.57 56.96 0.54 95.96 29.45 54.98 79.74 4.81 45.98 63.13 6.41 99.28 80.73 99.28 50.26 32.74 1.37 57.01 32.82 15.00 0.56 40.25 29.29 23.71 27.39 73.81 62.23 28.07 86.41 82.23 59.12 91.57 66.28 25.84 2.88 90.91 81.08 14.51 94.02 21.41 32.76 89.05 97.89 9.54 90.57 94.27 -76.00 99.44 71.00 10.57 79.74 15.04 42.58 11.11 80.84 69.50 47.54 97.68 29.13 43.70 96.13 65.64 48.94 48.95 80.10 46.54 89.35 46.62 27.24 5.32 78.22 46.24 33.21 30.67 54.43 19.37 94.39 40.57 87.78 56.75 85.18 98.44 67.89 34.92 49.93 33.98 96.26 82.92 26.57 38.95 16.85 28.28 4.76 33.76 50.22 80.72 22.43 5.98 64.05 34.07 70.27 17.79 4.41 1.11 3.71 94.60 36.92 30.07 2.62 88.15 58.83 9.77 8.64 93.42 38.02 80.63 85.18 4.84 79.45 13.29 96.32 42.48 84.67 39.19 91.85 25.81 73.73 68.57 27.15 11.54 66.65 51.07 77.90 68.34 11.98 66.76 45.72 11.58 41.66 66.20 49.91 95.77 98.16 21.23 97.85 93.27 -6.38 40.63 79.13 45.38 41.23 82.48 72.95 85.56 53.68 31.81 5.24 55.79 86.22 33.82 61.70 2.31 60.59 99.49 12.84 44.31 65.48 33.44 15.34 14.18 78.01 70.29 32.34 5.54 56.80 67.71 52.14 74.67 30.65 27.98 47.12 19.66 12.14 37.06 62.87 94.61 82.45 65.55 6.25 71.42 79.90 79.88 63.69 17.06 30.81 47.82 2.41 45.36 50.46 68.83 78.44 45.67 91.51 19.15 77.22 5.08 60.64 33.74 81.61 50.29 25.92 96.41 47.83 55.74 53.67 13.34 67.03 59.25 71.29 91.12 95.59 5.66 89.69 31.52 1.41 54.41 35.82 75.03 99.01 35.16 54.60 48.61 95.88 83.16 73.45 93.61 43.32 1.72 48.52 10.37 55.28 9.90 98.99 12.35 24.95 40.60 -83.23 35.44 29.32 65.79 98.77 73.56 8.07 28.90 0.27 30.52 29.10 16.86 27.35 44.52 68.38 12.62 50.54 5.67 61.92 73.19 89.94 3.82 46.15 54.21 69.21 73.54 63.04 63.26 28.54 12.76 37.59 79.81 5.89 71.99 91.41 39.36 27.54 52.74 63.88 44.78 70.06 68.13 95.05 59.43 71.14 21.82 88.28 94.31 16.61 99.83 41.85 20.99 97.28 17.19 18.90 69.82 87.25 7.08 97.04 57.84 33.88 84.12 51.10 66.34 50.87 59.80 35.76 11.11 65.40 55.36 47.42 43.32 48.07 80.11 34.34 85.75 56.69 8.24 68.16 93.58 75.25 16.63 35.74 86.41 43.44 15.76 36.67 69.32 19.95 22.29 23.86 32.28 93.63 36.86 73.47 94.42 93.10 44.54 20.12 82.42 -10.60 41.79 35.65 58.75 92.00 29.30 44.38 77.53 39.23 93.74 30.47 30.45 33.71 18.72 53.87 53.47 10.51 8.71 56.37 69.25 32.49 41.17 84.54 20.57 43.35 23.75 26.97 15.32 43.07 56.15 58.29 16.12 21.47 85.85 64.16 14.68 57.70 45.18 55.92 95.36 40.27 59.56 88.22 68.29 11.26 74.76 23.15 20.13 62.50 36.26 80.46 41.04 95.90 74.24 50.81 61.36 31.38 3.65 0.32 10.40 88.54 85.12 90.83 50.01 70.97 89.73 0.55 35.67 15.85 88.49 39.15 80.61 15.59 41.42 1.66 77.08 93.33 20.90 90.65 76.59 18.40 82.00 1.73 59.21 53.77 55.89 92.70 43.81 87.18 49.85 46.05 37.77 97.17 93.37 5.41 55.67 71.18 51.71 54.32 57.85 -71.10 54.71 5.31 14.96 79.61 25.89 33.36 62.04 48.36 28.82 21.80 3.92 40.94 81.87 67.11 58.15 50.40 85.74 23.35 75.71 98.85 36.76 70.96 69.26 55.56 36.79 48.29 97.87 82.55 87.64 46.25 39.91 11.46 93.14 30.08 98.85 78.59 80.26 66.40 60.91 11.32 56.94 13.60 75.70 71.13 59.65 68.06 79.69 37.28 55.40 97.11 86.20 26.37 23.77 13.44 89.04 34.81 97.08 18.45 5.34 36.62 49.62 83.00 51.49 47.71 42.52 74.24 20.05 86.92 89.18 37.51 2.29 1.53 89.99 91.96 62.90 46.80 12.77 24.34 98.95 47.80 66.49 1.59 0.94 98.00 13.03 84.47 25.70 24.71 15.04 38.28 97.17 60.38 83.62 8.90 33.08 77.22 16.68 41.65 6.58 -11.95 81.04 17.14 99.70 70.85 28.96 79.72 44.74 27.15 4.03 78.90 40.10 51.49 67.84 92.04 59.33 9.31 7.16 21.77 23.64 61.80 83.08 70.14 30.39 26.90 0.79 78.01 75.48 21.28 28.76 33.19 72.19 69.64 78.14 14.73 59.74 0.04 40.21 72.06 84.51 2.72 75.41 4.66 52.51 29.13 6.76 14.26 25.08 82.74 98.13 62.96 30.14 30.96 31.83 19.97 16.21 85.63 37.86 50.90 95.61 10.59 32.05 65.42 39.91 60.17 53.79 72.53 65.40 45.63 20.49 33.30 68.31 56.89 44.24 65.23 88.25 68.84 38.67 50.84 52.17 46.45 7.15 83.17 17.77 69.54 37.58 47.65 16.73 50.01 38.91 55.92 65.08 72.23 74.95 23.09 37.29 17.55 43.28 66.96 80.86 -22.00 11.47 31.06 6.47 37.15 32.98 40.93 75.30 96.08 98.39 15.98 80.62 0.38 48.03 69.27 88.97 68.92 31.66 84.97 10.79 5.91 93.65 41.21 5.87 98.64 61.44 7.36 26.47 2.85 75.42 8.07 66.11 21.61 94.57 14.26 33.19 25.94 44.61 98.27 38.88 92.32 4.36 58.01 51.26 64.37 47.12 33.04 88.03 34.33 49.44 45.32 59.56 31.22 41.68 53.70 48.57 53.71 36.31 74.23 57.56 56.43 69.93 53.43 44.12 32.04 98.56 36.12 30.69 97.10 37.51 47.35 80.29 28.65 2.68 32.37 29.65 95.08 93.99 73.67 72.10 88.49 33.13 76.53 20.03 18.71 79.05 93.75 83.15 7.31 43.67 88.69 78.84 54.73 67.33 41.96 74.12 80.24 78.20 12.77 23.67 -86.17 33.61 48.41 71.12 72.71 18.98 26.79 96.13 36.52 69.10 41.28 30.20 82.58 17.87 13.39 68.45 28.32 62.83 66.35 16.66 30.15 99.58 84.74 10.13 15.78 27.88 20.96 3.43 66.49 70.09 47.21 79.69 88.81 32.23 35.09 94.70 33.62 4.18 99.19 27.93 17.66 3.97 27.62 9.52 90.98 34.05 30.94 64.94 35.76 16.23 75.08 20.74 29.22 48.89 30.59 33.44 22.28 7.53 81.15 87.04 19.27 13.58 48.91 53.42 4.29 69.34 31.43 63.51 10.10 27.40 73.69 24.55 21.15 82.68 24.78 85.17 34.83 94.44 72.31 69.20 76.34 70.32 71.94 72.00 49.60 88.10 87.44 71.00 5.38 19.69 93.19 47.19 29.81 88.24 11.96 18.74 43.91 35.06 62.35 67.24 -25.59 0.82 9.81 19.27 27.44 21.17 50.70 5.64 88.07 18.57 13.26 62.22 75.54 25.28 4.24 10.30 58.14 9.23 53.68 46.29 67.17 74.82 47.32 82.31 70.88 54.54 45.06 76.98 73.46 33.28 9.58 96.16 3.48 33.62 40.94 97.32 50.50 63.20 41.30 18.78 83.07 91.80 10.70 48.03 55.56 31.25 64.56 38.78 58.66 76.64 67.02 61.48 43.45 1.19 64.82 8.46 73.97 85.84 75.80 28.77 78.07 44.94 17.37 56.01 77.85 20.84 36.02 7.27 35.14 7.31 74.29 49.87 62.28 31.00 6.56 35.54 3.07 69.09 64.38 73.02 63.19 49.03 45.17 21.14 33.80 12.36 2.34 61.04 39.94 40.97 44.02 73.79 88.88 52.68 9.35 51.45 91.14 93.30 83.50 28.25 -76.64 9.27 32.97 42.26 10.72 54.59 40.39 63.90 62.63 38.94 45.79 28.61 20.83 36.84 89.24 54.18 50.20 40.93 77.10 38.80 42.84 65.29 83.48 3.44 76.43 51.29 60.83 78.38 0.95 16.12 54.60 87.05 29.86 80.63 98.84 91.59 54.40 63.70 31.33 63.00 87.23 84.85 22.62 86.39 96.16 65.39 93.85 98.02 21.65 1.59 42.98 20.33 62.60 16.01 25.05 31.86 92.52 78.87 40.81 70.69 2.03 10.09 80.08 98.00 90.72 90.37 66.06 39.33 36.67 92.62 68.21 36.03 17.70 99.21 17.59 40.99 60.53 83.48 61.38 4.70 63.45 0.26 13.65 82.35 52.30 27.77 52.21 51.52 65.31 39.67 53.38 48.83 57.35 95.09 27.29 0.57 91.81 26.45 49.59 8.67 -15.27 36.79 24.83 59.42 70.36 42.28 65.30 44.50 61.07 72.65 36.73 90.85 12.54 52.63 92.49 23.23 84.53 33.06 91.72 26.04 41.05 9.41 76.57 56.53 34.14 87.09 17.22 95.87 11.35 20.96 94.09 27.20 31.86 23.10 88.05 97.31 2.48 73.48 16.65 85.29 61.83 47.72 42.53 54.72 77.77 93.19 97.13 38.74 25.52 57.82 47.34 2.77 14.46 38.06 15.90 16.62 79.54 7.84 38.72 74.32 47.17 14.17 17.82 70.80 37.94 25.71 54.55 45.70 74.97 62.05 61.94 18.68 21.60 34.12 39.38 87.56 48.90 27.08 64.42 14.62 55.53 52.82 33.21 71.59 38.94 4.73 53.02 42.32 20.25 64.35 18.60 76.96 10.40 85.26 2.34 43.00 3.75 64.21 34.67 41.43 -96.66 96.22 29.47 22.93 91.35 47.58 5.57 24.42 90.06 63.59 49.63 17.50 9.70 92.83 66.97 95.47 36.34 77.39 4.61 88.48 40.40 6.58 11.33 41.99 94.78 97.02 74.29 39.86 98.21 57.09 96.38 57.67 93.39 24.78 23.09 21.14 42.73 99.05 89.41 95.70 52.33 63.49 8.88 11.63 32.80 97.65 30.24 4.95 99.05 2.39 56.57 69.24 65.14 30.36 88.34 86.68 7.75 20.57 53.09 44.99 27.74 64.52 80.52 64.45 39.93 32.65 2.75 83.12 10.09 60.93 9.73 76.28 53.49 79.91 81.87 56.46 27.78 21.59 33.97 19.29 87.88 66.39 43.10 3.90 12.67 1.26 37.30 28.97 55.94 0.36 78.75 99.43 31.75 44.37 83.05 88.62 51.01 30.30 44.61 93.23 -61.58 66.67 60.69 50.86 49.29 53.82 60.68 94.21 0.76 44.69 3.29 92.12 46.26 17.66 8.53 98.46 85.99 82.38 34.08 59.72 20.88 25.22 14.20 2.30 73.01 22.74 64.48 61.97 55.59 69.73 97.50 76.35 55.72 36.04 45.32 60.13 55.63 80.37 66.32 30.47 83.40 28.67 76.93 83.64 66.37 55.84 92.57 57.89 95.27 37.99 20.21 97.89 5.54 62.05 35.61 11.75 53.77 2.51 72.20 64.14 62.14 14.68 5.97 91.64 15.44 72.34 21.50 85.39 68.31 54.84 27.42 9.23 76.20 95.07 87.71 15.38 12.08 92.61 27.70 9.84 2.61 45.16 67.55 7.09 89.12 22.58 44.59 69.48 19.51 3.91 29.49 33.01 20.76 84.09 92.14 78.73 60.44 7.93 94.75 56.49 -55.64 45.84 96.81 94.48 31.35 87.39 1.68 17.46 87.16 38.52 58.35 56.46 47.68 4.86 91.40 75.47 77.61 63.02 0.63 90.66 93.03 38.58 13.71 28.79 90.26 79.21 15.25 94.63 46.49 39.09 7.16 68.25 33.27 48.23 86.05 16.88 23.16 30.11 67.72 94.02 32.03 14.10 21.28 99.08 27.64 46.61 15.25 69.97 60.96 85.43 35.60 55.37 2.43 65.65 71.75 82.47 48.63 62.18 5.44 69.88 80.90 74.18 72.52 6.25 12.39 95.61 80.62 41.74 83.81 59.03 11.06 27.81 87.13 26.65 9.29 11.07 33.52 59.12 77.34 73.39 18.35 16.58 22.03 62.48 1.94 72.52 61.60 27.27 78.01 7.92 49.02 91.43 66.86 22.41 45.10 35.86 45.48 98.29 71.25 61.15 -78.26 69.20 84.43 41.13 85.16 72.88 14.59 30.40 43.03 62.05 90.55 51.40 7.34 81.48 64.87 79.33 8.20 6.31 94.94 90.61 14.39 60.71 35.31 0.42 67.91 51.20 60.58 61.49 32.67 0.93 69.81 42.62 50.89 61.10 67.12 58.63 44.16 83.33 5.81 5.21 60.25 66.67 22.48 7.35 73.98 8.75 65.20 50.36 44.14 66.69 60.43 89.21 23.62 72.57 58.89 1.55 91.44 61.25 48.48 1.79 58.50 82.47 78.54 59.54 18.38 21.43 78.81 27.12 32.85 75.86 98.67 28.67 49.80 24.29 66.12 54.55 79.34 97.20 93.81 97.67 6.85 37.73 77.11 38.75 18.04 53.63 18.14 37.80 24.90 35.95 91.01 3.32 48.74 62.36 95.01 19.44 45.80 42.73 51.01 39.35 -32.02 96.41 51.49 96.10 3.14 77.33 89.40 25.01 48.21 89.49 94.58 6.57 94.24 12.72 74.51 80.21 33.49 87.14 6.53 61.40 42.78 78.34 15.47 2.69 58.50 63.89 42.99 9.95 84.77 75.05 2.55 11.75 91.77 29.18 4.88 91.34 65.83 25.23 32.20 81.28 34.98 59.51 96.20 72.27 20.38 42.79 82.20 82.51 90.01 35.21 19.05 49.43 86.12 98.67 29.09 61.22 99.76 36.80 25.97 90.44 5.23 93.43 89.87 34.01 36.01 36.38 96.06 57.90 92.12 95.87 47.69 86.79 5.63 94.82 19.34 74.01 33.64 41.93 13.02 63.15 95.71 3.47 83.49 34.67 45.59 82.86 81.77 82.45 44.15 83.90 79.32 59.14 85.89 76.27 62.29 51.50 23.58 26.90 56.65 12.53 -50.03 54.59 32.44 4.95 79.30 0.01 72.43 35.91 23.57 63.75 12.55 15.48 54.92 50.36 86.33 51.01 48.55 76.43 67.39 8.61 38.51 53.41 75.18 98.40 51.28 26.88 46.27 56.39 8.98 53.61 29.88 82.25 17.84 94.42 82.94 30.80 95.47 74.34 45.36 91.97 83.96 18.48 13.45 79.14 56.32 99.27 92.89 17.25 9.63 18.44 84.90 16.20 44.83 94.87 61.64 8.32 34.78 56.61 3.96 49.15 1.68 32.17 31.84 61.26 31.24 53.58 47.60 30.85 3.08 75.00 40.74 69.18 68.45 32.76 23.72 30.86 34.72 92.11 52.19 3.37 82.26 13.33 18.21 64.70 87.71 7.76 44.39 26.02 26.07 59.44 20.27 14.33 76.50 70.89 93.80 59.66 20.35 25.05 62.49 82.76 -10.12 28.25 18.90 91.69 27.61 86.61 66.48 16.22 98.80 27.12 19.11 68.73 29.32 37.80 31.10 52.56 86.34 75.27 9.36 38.02 21.59 56.34 81.82 90.10 68.05 9.68 95.27 83.89 67.81 88.93 4.46 95.13 49.85 10.23 55.97 84.79 53.36 90.03 96.46 39.96 50.92 78.31 84.78 5.70 19.84 36.88 59.24 45.08 60.20 34.81 13.77 53.06 4.57 51.90 97.19 48.81 24.73 8.59 51.35 9.03 79.25 1.51 76.65 64.06 8.99 40.75 86.69 70.26 86.06 63.74 23.50 18.57 13.22 11.86 37.52 45.60 92.40 5.19 13.22 94.93 94.29 97.98 70.99 66.96 26.61 97.67 60.30 80.46 52.72 82.32 52.97 35.74 4.66 90.50 8.24 45.27 98.53 41.24 79.12 67.94 -99.21 16.58 36.19 52.85 68.27 15.76 32.05 98.99 67.10 9.74 33.96 25.23 47.63 67.26 76.23 56.00 21.58 15.28 22.66 44.27 88.40 69.48 73.42 64.75 95.32 0.94 14.67 51.52 71.12 67.61 17.31 87.83 97.61 33.18 96.86 10.55 62.30 5.02 55.78 55.85 43.96 37.23 66.80 11.02 47.70 88.20 50.94 28.84 44.41 22.21 8.98 48.95 77.21 72.40 21.37 57.99 60.44 25.34 22.04 51.80 73.61 82.59 3.42 92.32 10.49 47.80 57.93 10.15 74.29 21.86 66.79 86.64 31.87 69.25 44.11 73.02 65.20 75.93 77.46 78.09 54.41 43.97 46.13 29.42 4.21 15.38 71.08 82.32 44.11 33.76 36.21 60.85 31.33 83.75 22.61 81.79 64.35 22.39 69.16 18.20 -30.41 79.72 43.84 90.74 69.80 45.81 40.76 40.82 93.63 53.34 70.24 27.58 30.10 56.94 94.90 62.71 6.87 62.42 46.75 19.09 73.95 3.06 96.96 2.56 75.34 34.31 64.23 21.03 75.35 78.99 95.20 90.35 96.68 73.48 93.32 77.60 7.32 3.76 93.40 52.25 39.01 42.72 11.14 41.98 22.95 54.88 68.71 53.02 61.57 71.65 15.07 44.23 8.95 94.65 60.31 57.78 88.31 60.65 0.48 44.71 34.94 12.43 13.04 34.14 35.15 85.56 54.79 54.41 98.98 51.78 24.19 72.60 57.57 81.08 58.18 7.68 72.24 0.88 89.15 23.30 48.34 0.66 90.61 84.98 71.54 44.14 48.78 21.63 98.71 44.07 62.10 64.75 1.27 77.29 96.17 64.23 22.20 35.94 23.49 34.21 -58.60 72.73 33.95 17.51 40.14 42.36 46.15 54.27 30.37 54.66 52.81 45.93 55.19 25.29 17.78 23.38 51.67 2.11 93.11 87.25 84.64 94.55 57.82 52.27 7.76 10.03 30.13 6.08 68.90 68.25 82.39 98.81 82.69 93.23 85.18 70.21 14.83 51.07 42.10 55.78 92.48 23.89 23.64 86.80 3.47 22.09 98.70 22.61 22.92 5.55 11.02 75.64 84.33 5.90 10.80 55.35 6.31 23.00 78.78 59.90 67.89 67.74 83.68 11.76 71.89 45.27 23.28 88.18 19.92 50.56 74.44 93.53 92.11 36.45 34.35 85.88 85.75 28.18 66.06 58.28 96.78 35.25 34.84 82.72 5.04 30.78 6.92 14.81 57.94 60.00 21.06 42.07 90.40 66.51 11.17 75.34 38.59 29.85 1.64 65.93 -65.47 69.13 9.41 24.98 81.29 51.38 31.98 84.60 1.08 82.62 97.99 97.51 95.44 53.31 28.81 23.15 34.33 78.11 48.97 76.42 42.16 19.70 0.42 15.94 97.71 8.81 87.78 13.39 25.84 57.59 87.41 13.86 1.89 36.64 38.00 5.91 15.53 10.17 83.18 46.09 0.50 11.29 73.72 9.60 62.32 28.97 53.77 5.78 85.08 23.39 4.22 73.18 76.17 48.92 70.16 39.19 53.45 35.17 59.53 54.09 99.69 91.52 11.26 82.78 58.48 13.35 18.61 85.10 49.72 7.02 5.60 26.24 23.51 51.57 31.75 57.90 31.13 95.11 35.81 84.37 17.71 46.56 64.89 5.30 49.34 2.15 47.73 75.21 34.56 22.09 35.04 69.57 95.53 30.56 47.76 49.58 98.89 11.91 67.99 80.91 -14.74 79.41 52.72 67.67 99.45 1.81 54.80 86.77 80.85 26.76 56.78 45.84 75.75 49.45 87.93 93.19 26.07 6.09 95.48 41.12 90.12 9.72 72.07 97.10 65.97 41.33 79.75 61.94 36.33 1.02 94.99 43.19 43.32 86.64 30.31 85.60 96.08 94.13 44.81 33.06 11.13 39.17 11.21 45.65 69.83 65.39 20.41 63.13 47.73 5.68 25.31 15.62 3.34 1.90 46.29 25.00 38.31 86.12 54.22 82.85 86.08 73.42 52.20 16.99 55.11 99.17 16.17 31.78 6.19 29.78 74.86 17.65 60.98 86.45 23.61 81.40 33.82 99.64 68.45 48.62 25.25 57.70 14.64 31.71 20.26 41.07 81.84 14.25 56.02 82.57 31.10 77.00 3.33 33.33 77.78 65.81 26.34 11.64 73.31 68.19 -92.87 37.83 13.14 56.74 83.03 0.82 11.01 70.20 32.38 20.22 70.51 61.00 7.71 83.01 30.24 41.67 20.65 31.87 72.85 96.27 0.63 58.91 69.46 85.25 65.65 7.42 1.87 27.58 23.35 15.38 64.44 56.18 0.51 14.91 64.77 66.14 95.94 69.84 15.14 4.12 15.53 25.66 3.35 80.87 45.15 56.95 5.83 37.29 55.47 65.15 62.13 19.44 38.18 19.80 92.39 47.63 56.03 44.90 47.73 41.87 74.00 95.89 10.89 67.81 78.14 54.25 28.68 72.87 84.78 95.66 58.72 26.44 18.31 15.65 92.59 79.52 24.13 78.85 94.82 87.80 89.91 75.53 65.79 55.66 47.96 12.08 99.33 25.80 84.86 42.67 80.03 24.58 68.19 64.95 65.31 25.84 84.27 4.36 43.58 3.38 -74.50 32.60 30.32 10.14 8.90 26.53 66.79 19.31 2.06 73.95 69.07 86.67 57.97 34.31 38.09 53.00 97.06 56.32 9.25 47.04 3.33 75.76 33.81 93.10 95.64 87.16 10.36 87.10 90.60 1.21 69.14 15.68 40.41 95.36 56.10 34.16 50.95 66.26 50.17 27.24 91.95 73.13 12.72 58.46 1.01 34.74 8.31 64.02 25.62 37.63 1.18 46.50 37.85 40.54 16.07 87.87 68.23 38.42 73.06 88.65 5.64 67.86 88.51 23.17 24.81 2.00 66.00 8.23 70.15 74.07 40.18 94.58 71.81 61.43 26.71 67.03 25.05 78.72 30.09 37.31 48.95 88.75 55.64 36.26 8.11 87.81 93.90 52.25 55.48 75.35 31.92 12.01 53.44 70.27 82.65 95.58 36.98 14.26 41.84 33.25 -25.97 0.11 30.89 90.70 77.96 40.36 0.69 30.89 15.54 89.61 82.09 38.92 39.38 97.01 84.78 71.52 28.61 27.38 91.96 51.22 81.84 31.28 50.87 8.27 70.58 50.11 21.74 79.83 20.91 28.96 97.94 13.96 89.35 65.43 52.18 29.54 60.06 40.03 84.20 35.40 35.20 58.46 67.17 17.17 21.17 44.13 33.78 63.33 76.39 85.57 61.55 86.54 23.97 44.08 59.41 55.45 68.63 15.85 54.13 16.35 18.19 35.38 92.18 31.93 23.79 35.28 83.11 49.14 80.72 28.77 61.59 85.37 4.80 81.00 93.80 31.41 75.86 19.48 36.08 64.67 96.04 92.79 93.60 40.67 50.47 87.24 3.43 76.00 50.05 8.21 49.90 38.60 93.92 31.66 50.27 97.58 12.00 86.74 65.94 55.64 -73.14 39.37 44.33 36.90 58.99 83.84 17.97 94.77 86.65 51.52 55.78 73.09 19.87 91.18 33.24 44.95 10.44 57.24 79.72 95.84 5.21 65.95 72.55 28.18 12.05 77.48 86.89 54.01 0.85 87.69 28.15 35.05 46.75 40.67 67.55 56.60 5.39 67.31 75.76 62.29 30.88 70.68 6.54 4.93 54.60 18.30 93.61 98.50 79.50 77.94 32.62 85.53 92.60 58.29 73.36 51.76 77.11 78.48 35.29 15.76 62.53 43.93 23.30 61.99 24.64 15.06 30.24 11.55 13.01 25.78 24.08 29.59 32.01 46.60 44.49 88.36 22.52 94.59 10.24 11.38 0.43 83.77 86.93 59.91 2.40 71.17 13.66 34.75 75.29 98.24 71.17 42.61 58.85 1.59 17.82 57.19 78.69 53.73 39.92 10.89 -61.35 94.57 84.41 3.37 73.45 71.46 17.68 38.49 30.44 38.10 56.97 43.43 9.80 68.71 62.31 42.13 77.39 49.37 28.57 79.53 16.73 20.25 41.27 12.72 36.68 35.67 37.19 98.79 19.19 26.09 70.70 58.43 9.07 24.42 22.86 4.40 50.34 98.00 11.05 14.29 82.00 3.80 33.39 43.18 33.02 18.63 38.06 53.53 22.33 73.87 76.50 0.18 96.97 67.36 89.06 14.75 39.16 42.35 50.33 46.02 90.42 19.77 11.82 24.85 13.72 67.19 82.17 20.28 20.91 58.16 17.67 73.83 11.70 41.14 6.79 0.90 77.00 71.45 57.15 74.17 57.66 71.39 6.70 37.01 12.63 23.19 70.37 34.10 36.68 65.26 79.54 8.94 83.42 2.95 59.59 76.39 95.50 6.67 45.98 54.50 -38.23 56.43 6.15 44.80 32.05 6.83 62.29 5.55 6.06 89.89 43.24 7.65 49.78 87.06 43.42 28.90 43.96 34.21 69.90 93.69 77.15 88.70 23.69 30.64 65.78 34.98 42.84 7.70 47.64 25.48 51.82 40.44 8.25 45.96 86.21 27.46 2.18 66.68 24.00 8.01 56.72 21.26 56.93 94.08 28.09 63.76 46.16 64.33 36.30 90.14 91.03 94.53 62.07 46.86 23.92 52.48 15.88 63.97 75.25 97.13 10.61 87.30 74.54 23.17 39.34 8.09 46.46 21.05 20.92 20.75 47.67 68.29 74.84 75.28 64.41 82.42 19.69 14.73 50.57 83.10 87.21 46.62 61.61 51.00 80.95 41.84 19.48 13.50 62.45 91.93 88.31 69.94 43.21 85.19 65.25 44.18 61.80 79.47 27.70 50.24 -75.61 64.89 98.91 99.12 94.39 53.68 89.31 72.15 13.24 91.41 96.95 86.94 83.77 13.91 47.30 85.02 89.52 26.15 43.02 95.33 39.49 65.09 5.04 78.28 85.82 41.44 50.72 53.01 99.47 99.84 77.26 93.94 30.70 70.04 70.22 27.28 22.35 45.35 65.13 56.22 47.61 2.95 51.35 46.09 85.13 35.74 33.07 73.02 13.85 89.53 49.88 77.70 98.75 65.68 25.71 30.56 53.47 1.19 16.44 96.29 28.66 28.04 96.93 32.90 12.34 81.62 60.95 40.55 56.45 75.19 91.47 66.94 87.91 53.97 92.23 89.47 10.71 16.20 22.94 13.09 11.28 3.54 9.57 68.25 26.23 28.14 56.64 18.99 9.39 23.66 83.15 23.88 68.44 31.08 8.89 12.17 50.23 35.50 37.22 79.80 -27.38 34.68 1.36 34.44 50.10 65.89 64.16 31.41 22.95 9.13 53.07 61.92 63.07 58.94 34.06 58.89 24.75 31.73 29.43 71.60 49.35 76.39 47.06 42.82 29.06 96.67 38.99 11.59 57.76 93.47 48.60 88.84 78.76 73.12 77.25 8.53 34.11 14.69 4.49 33.86 48.78 25.18 24.73 48.53 84.35 19.02 17.11 66.55 10.86 65.97 15.23 46.44 30.72 11.90 51.52 3.91 61.91 25.35 20.38 34.09 81.97 69.59 47.78 82.87 57.18 59.50 87.80 41.90 7.68 9.28 8.94 76.71 52.54 37.76 81.61 6.26 85.60 5.46 45.20 15.24 11.55 51.55 50.21 85.26 60.08 2.09 2.99 72.83 35.77 43.26 85.57 54.53 58.17 83.27 43.33 12.03 45.98 11.38 94.86 72.65 -82.11 25.25 41.28 69.63 4.81 52.72 21.19 59.26 2.74 2.53 19.58 26.58 2.80 83.39 21.86 45.57 39.64 31.68 9.98 49.31 15.36 3.67 68.13 10.25 82.45 58.12 75.55 46.66 15.50 79.68 15.18 96.12 26.91 18.49 21.28 11.34 96.00 58.01 1.11 82.21 16.17 15.42 67.79 0.73 46.18 86.28 10.91 46.54 98.65 77.61 66.47 91.76 82.23 54.91 87.91 41.19 98.21 76.95 45.83 64.36 13.22 86.71 8.83 68.31 43.89 80.55 14.33 47.74 96.02 57.03 70.43 45.55 91.79 6.36 32.80 13.93 15.86 63.78 56.69 64.41 40.48 3.83 77.24 75.25 18.10 10.02 28.40 32.02 55.32 8.49 31.09 53.36 69.61 58.97 17.36 73.87 6.91 72.35 22.21 76.29 -22.90 51.93 14.43 44.60 73.20 94.91 6.83 55.69 66.19 69.92 58.37 59.15 73.74 95.18 98.47 21.84 11.49 29.35 66.59 35.63 37.82 29.16 5.44 22.16 17.23 76.17 69.53 52.88 24.24 7.74 27.44 35.49 76.98 84.81 26.05 70.83 16.15 63.36 43.11 8.59 21.24 44.73 71.33 62.70 37.25 57.86 24.69 41.05 60.16 3.40 70.96 42.21 17.71 9.21 21.52 69.54 31.61 91.16 70.72 95.33 13.88 42.32 83.10 18.88 87.24 59.12 18.64 46.67 66.20 70.08 13.57 96.47 72.48 25.43 42.50 48.23 27.00 89.18 67.66 70.54 5.31 17.72 31.61 16.42 40.03 50.28 73.08 66.89 25.07 57.19 3.25 22.63 61.90 35.99 97.96 88.72 73.96 66.18 25.24 37.36 -51.39 14.66 40.82 82.94 62.55 24.62 78.49 81.76 27.69 36.47 16.33 25.76 73.37 84.43 8.93 86.02 7.27 67.96 22.90 13.35 92.82 37.00 3.06 61.35 83.86 49.57 91.14 53.84 34.16 96.96 73.22 29.13 93.80 6.39 13.59 93.30 98.47 87.61 54.30 85.10 88.43 71.18 40.96 22.00 25.90 49.41 90.41 77.63 58.24 73.05 81.37 44.23 30.35 19.27 76.70 45.95 41.21 85.05 45.68 55.31 29.70 58.86 89.28 91.75 77.88 16.46 18.29 45.34 53.90 7.14 24.45 11.06 72.74 98.38 5.02 71.60 31.77 54.78 34.90 46.29 56.28 14.03 25.18 25.95 38.51 32.71 86.63 34.05 18.71 40.09 98.00 88.40 87.75 19.46 99.33 42.20 38.24 69.68 23.60 36.65 -28.82 55.43 94.51 12.86 3.71 50.75 69.45 13.13 8.55 14.17 60.05 33.32 41.05 99.89 79.41 54.42 35.28 9.15 25.98 35.25 91.55 60.69 42.58 30.06 49.41 98.04 79.01 17.22 63.92 24.73 65.39 63.37 37.65 38.59 41.86 12.97 97.81 71.17 53.69 77.11 17.47 75.19 30.27 7.62 96.30 19.48 74.40 91.98 17.79 30.60 0.65 87.93 69.29 30.73 33.71 55.77 55.03 45.72 57.18 73.79 78.64 54.49 53.28 64.75 3.55 32.82 85.45 36.31 19.97 77.64 90.62 94.40 22.00 7.50 14.69 0.93 0.24 65.22 63.26 12.53 52.00 8.09 67.41 95.58 56.66 35.84 4.25 19.47 89.66 67.72 35.59 55.24 68.00 80.18 84.67 87.78 44.93 94.50 66.58 7.68 -37.29 28.53 14.91 44.43 71.90 46.44 89.82 38.59 36.19 2.93 34.65 3.78 67.13 3.53 21.32 16.74 93.11 85.06 40.36 66.65 98.75 8.77 54.93 69.90 92.17 98.56 83.22 91.05 52.54 36.49 93.21 31.87 54.20 35.02 6.00 4.52 11.12 79.72 31.43 67.89 50.62 89.23 75.27 42.18 42.88 72.69 85.83 87.19 47.82 42.45 10.17 9.37 93.00 82.37 90.48 11.29 60.06 34.03 89.89 13.62 27.36 83.03 99.01 25.86 1.47 82.56 1.15 66.01 3.96 50.85 12.23 85.50 34.82 5.81 66.33 76.38 89.46 47.34 94.24 70.66 80.53 45.37 28.57 4.85 13.49 14.62 81.36 89.29 97.13 39.99 24.00 66.13 6.88 0.61 27.93 60.51 56.45 85.56 7.52 63.15 -25.63 24.22 44.47 13.41 67.80 75.71 46.30 11.05 38.88 91.90 44.17 19.46 98.19 52.13 9.62 22.46 4.46 59.58 74.15 7.52 29.60 86.20 32.46 29.03 43.87 43.12 25.41 73.49 8.76 61.21 90.49 57.14 35.58 30.21 69.48 6.44 62.15 54.10 42.65 10.02 70.53 44.41 45.94 18.60 79.68 36.79 13.16 3.39 28.01 7.61 86.16 64.77 79.71 38.09 73.15 61.55 23.51 69.84 39.83 87.60 27.09 73.32 49.43 81.56 46.23 45.89 51.54 22.80 49.65 41.04 88.54 59.95 67.38 43.03 3.06 22.17 22.35 43.00 87.03 3.31 38.22 80.93 3.15 9.26 59.47 62.21 82.45 68.79 47.65 93.49 76.95 98.96 96.45 38.29 33.33 8.90 71.04 35.81 5.56 22.89 -91.38 14.95 14.69 83.05 11.05 89.00 73.22 2.15 4.37 47.81 11.63 39.51 31.24 2.91 94.57 7.49 43.86 49.52 52.54 85.27 55.59 62.98 20.17 45.53 87.99 94.84 76.01 67.95 60.70 91.46 65.07 1.50 81.56 76.47 65.34 8.57 48.36 5.62 13.00 99.46 90.12 79.36 14.00 52.03 86.18 3.93 62.14 97.34 91.08 94.50 20.84 44.13 34.75 34.82 13.85 90.72 57.28 25.87 93.84 33.83 68.31 36.65 34.90 57.91 74.71 5.61 97.96 12.91 95.27 17.35 23.99 66.36 63.49 24.52 80.03 89.78 34.39 94.06 37.55 16.12 2.89 44.50 39.11 38.25 62.54 53.25 22.88 32.30 4.46 61.83 10.24 17.55 16.28 13.69 15.77 67.96 14.86 69.82 46.70 39.82 -42.40 5.62 72.12 98.11 59.38 30.54 21.84 91.49 13.73 9.93 37.83 45.53 37.48 20.03 42.63 92.60 42.22 96.00 49.70 75.71 72.54 44.56 43.33 27.54 70.34 26.23 21.43 14.32 75.84 69.38 38.66 25.76 37.58 42.38 1.46 53.62 49.74 36.66 21.40 95.27 57.13 77.45 54.96 9.09 73.46 48.52 66.52 99.21 68.22 33.36 26.76 91.53 33.18 18.54 7.79 71.29 26.19 50.98 34.50 51.20 37.74 99.36 25.47 76.54 94.71 97.02 74.01 51.73 6.52 36.84 65.27 88.00 32.75 95.61 9.00 26.73 55.78 32.84 68.27 51.16 17.24 74.64 52.91 7.95 9.92 22.19 61.54 97.72 35.16 5.61 26.16 85.40 69.21 66.78 16.65 70.83 94.80 64.73 65.02 45.61 -60.72 48.23 7.82 25.89 91.22 81.16 44.22 46.97 21.90 27.85 99.26 1.20 27.71 54.64 75.54 36.11 34.52 11.89 65.74 72.22 41.13 94.54 29.13 56.33 80.37 44.02 0.26 90.95 95.11 15.68 97.07 96.72 86.23 90.44 26.96 8.76 76.15 81.17 68.59 24.88 0.01 32.87 84.03 64.39 42.54 6.30 5.87 98.59 47.98 82.56 41.45 82.77 24.05 25.46 1.91 90.33 5.47 93.09 30.50 60.71 20.06 81.91 85.46 69.16 51.87 86.72 5.26 9.82 9.60 33.94 75.97 5.87 76.64 84.62 72.80 6.83 6.11 41.87 69.70 43.52 53.53 33.84 27.50 99.89 65.04 46.41 48.57 95.40 97.66 56.11 49.16 25.24 55.80 93.64 32.86 62.73 74.40 17.93 31.13 28.31 -59.39 55.67 38.34 11.63 19.72 39.31 32.25 67.45 4.23 20.96 86.36 97.35 51.46 4.15 44.24 22.01 68.35 76.11 17.75 89.31 10.67 49.01 73.53 42.71 44.53 9.93 90.57 72.19 93.52 71.34 10.18 77.68 7.23 22.84 26.13 26.94 84.69 95.10 38.49 39.32 61.41 81.39 86.26 78.18 25.75 42.49 55.14 78.28 26.93 33.59 58.13 71.50 31.11 99.34 71.37 61.49 63.15 7.30 22.63 33.32 94.09 77.92 1.20 33.13 6.90 41.24 24.16 97.16 62.23 30.25 68.89 94.15 85.58 95.39 68.02 3.61 8.51 91.05 95.98 32.76 5.98 83.54 6.93 46.36 33.74 64.11 65.81 80.57 25.65 5.13 75.48 84.51 10.81 9.17 55.09 39.90 16.04 29.59 25.71 97.27 -37.68 4.15 77.88 9.01 93.94 69.78 0.36 67.97 72.79 92.88 17.90 17.80 77.99 48.79 41.32 65.96 93.74 91.37 62.35 49.38 74.08 95.22 74.92 68.50 84.67 81.95 32.80 34.28 19.33 11.89 37.57 21.57 30.91 28.39 74.15 77.99 28.89 95.19 47.21 36.67 50.22 74.03 9.69 12.89 58.69 6.67 99.89 91.49 2.44 50.22 69.30 43.55 79.55 54.70 12.55 32.35 78.06 70.51 18.27 2.04 39.81 96.31 17.41 53.23 67.47 18.39 62.31 69.34 31.64 54.76 52.08 56.60 13.87 34.02 93.83 44.22 79.32 70.94 96.44 28.29 18.25 60.30 59.88 85.17 98.12 1.84 15.32 40.07 92.67 62.69 13.08 32.34 43.51 19.50 46.32 17.31 93.45 23.66 44.91 65.58 -73.29 44.95 40.34 64.50 34.42 17.81 54.41 29.47 86.48 96.70 7.85 86.71 34.16 74.32 39.28 35.56 41.50 34.41 27.00 36.96 97.45 31.27 54.19 48.19 97.54 36.36 24.87 48.08 98.36 1.90 30.34 8.07 28.02 13.05 36.36 36.88 32.97 64.37 13.12 80.96 50.03 33.63 70.95 94.10 24.33 26.73 44.19 30.46 4.10 55.46 81.22 54.31 67.97 28.60 49.73 82.32 87.95 69.08 47.23 83.55 83.69 81.52 84.26 53.10 18.69 35.25 30.43 96.41 88.27 63.81 93.66 74.50 57.64 60.33 56.56 48.03 88.84 2.52 82.82 8.31 13.75 52.26 64.81 78.55 10.21 57.55 62.61 21.55 87.48 25.62 82.14 9.03 28.19 66.77 41.11 98.62 39.57 9.69 98.21 83.53 -61.94 20.30 39.96 16.90 36.03 60.07 69.32 77.82 32.16 37.17 68.37 79.69 46.21 61.52 46.45 84.27 5.91 7.31 38.82 26.72 58.97 99.14 70.05 15.51 91.67 44.02 1.79 24.57 70.92 44.30 24.62 96.68 30.69 97.64 49.17 34.71 79.51 65.16 38.88 32.32 35.72 96.72 80.41 4.28 46.68 52.11 6.50 50.10 38.17 42.60 30.05 28.38 56.22 56.41 76.46 12.37 79.79 31.85 52.18 46.26 46.02 94.76 32.46 55.44 60.06 46.66 11.17 26.80 33.33 88.85 8.50 70.99 85.43 11.87 95.05 93.98 0.32 39.43 7.26 61.88 41.43 53.29 89.19 94.34 44.86 59.47 85.46 85.42 3.65 72.49 67.61 8.92 18.28 86.80 70.81 10.93 38.24 1.99 0.82 58.41 -30.79 38.79 78.31 84.68 84.76 82.90 17.47 59.47 97.18 74.89 44.41 56.41 76.10 8.43 72.30 42.55 71.29 95.13 46.71 28.79 15.08 40.50 90.32 77.38 64.07 76.37 82.07 12.77 92.00 3.47 7.00 86.09 96.70 32.00 61.83 81.53 94.92 17.76 20.21 6.99 4.29 34.21 12.02 11.17 31.76 64.46 36.13 74.09 87.57 47.12 90.63 59.00 58.13 56.09 30.30 58.06 93.53 64.11 92.28 11.89 11.76 43.51 87.01 62.34 58.76 90.52 86.43 49.71 59.60 12.08 79.46 90.24 51.33 3.04 67.78 99.32 83.53 63.18 42.31 92.68 58.17 88.08 9.21 3.62 79.77 46.19 52.70 93.23 78.46 3.50 72.37 89.60 90.60 55.01 63.61 41.02 75.01 36.72 3.36 85.86 diff --git a/docs/examples/data/mfarray/mixed_layered.txt b/docs/examples/data/mfarray/mixed_layered.txt deleted file mode 100644 index 37f0bd38..00000000 --- a/docs/examples/data/mfarray/mixed_layered.txt +++ /dev/null @@ -1,1003 +0,0 @@ -CONSTANT 10 -OPEN/CLOSE ../external/array_ext.txt FACTOR 1.0 -INTERNAL FACTOR 1.0 -83.70 21.78 61.43 81.66 85.18 67.86 82.29 33.77 29.67 76.27 76.66 48.56 67.97 89.65 0.87 30.52 36.83 81.56 79.77 16.36 55.17 11.83 61.10 85.39 18.53 88.87 16.34 67.65 53.01 42.79 1.04 70.26 55.88 45.13 50.84 49.68 18.66 40.48 54.46 58.35 22.20 59.31 61.98 96.35 64.57 65.36 63.22 35.25 9.17 12.65 59.49 1.35 91.69 16.33 28.52 76.73 64.40 69.48 10.49 39.24 61.81 98.32 31.68 21.24 65.68 14.90 51.29 63.10 93.18 95.07 49.77 93.42 20.70 70.90 24.87 83.97 52.83 98.66 18.27 97.41 66.88 32.77 9.78 16.61 83.64 11.20 59.13 69.08 99.27 39.91 71.00 53.55 98.82 6.21 67.88 6.82 39.33 88.93 63.82 32.43 -20.99 28.74 2.36 43.60 43.19 2.08 98.29 29.52 81.06 74.77 88.78 17.42 66.19 7.25 47.63 73.92 13.39 90.72 22.88 97.55 26.57 99.36 40.27 42.19 85.29 31.43 51.99 89.39 0.24 97.89 90.93 58.26 64.79 40.29 95.11 48.41 62.54 84.55 44.45 35.29 14.08 70.31 73.79 11.54 48.08 43.15 76.83 3.17 90.90 33.89 15.49 46.21 97.53 86.73 47.10 24.40 44.74 56.35 18.90 93.76 39.64 15.77 72.29 4.02 84.46 42.49 48.45 48.64 16.30 61.07 11.47 19.31 11.82 54.95 31.56 62.30 35.63 34.24 65.04 71.11 41.06 61.38 48.76 17.96 96.64 12.61 65.68 82.01 17.26 42.25 70.00 1.54 82.71 71.65 66.12 18.78 11.63 80.64 94.73 10.22 -55.29 54.72 88.71 76.99 96.65 26.15 16.87 34.93 30.09 99.14 17.52 92.55 35.87 69.22 91.08 58.57 62.43 45.27 85.24 25.06 64.28 43.33 16.46 16.53 11.53 4.59 0.57 62.99 73.21 23.13 17.05 7.73 51.46 26.63 88.68 24.03 83.46 39.72 10.06 94.79 98.03 25.88 28.94 14.04 70.08 20.62 65.80 67.94 80.63 88.73 65.65 27.30 7.65 95.75 73.20 83.30 82.66 84.78 97.58 79.16 63.25 60.99 96.80 30.07 48.80 93.02 22.97 32.41 35.82 54.59 79.14 86.08 87.91 50.75 89.57 40.97 97.16 24.08 79.68 16.40 18.59 46.09 62.37 32.23 93.48 78.89 76.53 35.48 78.99 68.51 22.33 46.59 78.46 35.17 36.92 88.16 50.67 41.13 76.07 27.06 -29.38 54.19 12.38 2.77 70.27 32.76 55.26 75.65 90.14 47.94 63.86 0.84 73.58 51.34 17.42 98.84 35.09 24.60 77.98 18.38 3.05 90.60 44.92 6.39 58.33 46.55 8.58 93.44 36.22 27.88 66.32 78.00 55.69 91.21 58.57 93.10 46.44 85.89 36.67 2.83 92.53 28.51 33.04 93.63 51.97 21.99 97.84 95.58 74.11 99.91 62.48 70.39 80.86 0.57 29.77 76.06 5.23 27.90 20.66 2.66 0.46 4.36 56.67 67.04 97.97 7.13 99.07 90.38 15.03 31.87 34.86 43.92 90.23 46.54 12.08 25.97 84.77 72.81 34.07 84.00 40.80 38.49 92.16 72.45 59.26 15.94 47.39 84.16 15.02 94.13 86.86 12.12 84.70 99.56 43.57 40.22 79.64 56.25 19.32 74.20 -43.37 43.95 63.43 76.87 66.37 24.48 13.00 14.07 91.21 23.07 45.87 84.42 34.95 17.39 11.04 85.62 3.00 8.19 71.83 17.41 16.45 33.11 65.88 33.91 8.72 48.99 77.40 41.92 89.81 30.55 17.09 80.24 72.29 74.33 37.00 72.87 13.03 91.42 52.28 75.10 61.43 50.73 62.67 12.17 0.42 48.96 50.89 73.20 65.05 23.00 29.06 82.34 56.65 60.39 40.09 36.07 82.21 16.14 43.43 45.67 23.61 17.44 30.05 15.90 8.94 23.35 38.56 53.94 7.24 34.36 27.57 52.56 60.04 67.88 50.47 18.10 7.37 89.40 38.09 68.95 19.73 68.28 35.50 72.11 44.30 96.53 82.63 42.97 80.60 85.26 94.84 44.22 86.19 27.85 77.89 75.27 6.84 92.24 84.89 88.77 -15.93 44.38 68.46 38.69 80.51 33.20 65.69 35.00 87.81 78.73 31.95 46.85 57.87 24.22 51.61 42.71 0.94 4.03 10.47 37.98 61.38 63.12 59.45 37.03 22.51 4.09 10.89 22.36 45.69 53.76 2.47 11.93 90.74 10.01 12.28 56.50 21.89 30.25 95.71 18.75 91.95 77.08 51.90 95.47 63.43 36.37 71.65 92.36 52.09 71.30 21.99 42.42 3.92 59.93 64.83 77.82 1.73 55.88 56.82 48.59 67.57 72.88 56.67 29.92 80.02 11.33 93.68 3.86 48.98 84.24 18.91 2.97 64.95 30.64 91.39 39.84 21.09 23.11 48.39 85.29 47.39 58.89 32.71 18.35 15.06 13.55 93.70 40.79 99.38 11.29 20.30 49.07 45.06 48.44 86.95 53.18 92.89 86.77 90.49 33.63 -87.88 17.29 16.50 83.12 13.18 66.29 89.76 85.00 76.02 40.64 58.22 77.12 26.91 95.73 86.82 51.85 46.33 72.65 6.32 45.50 18.66 53.45 42.35 31.39 10.46 34.97 13.14 87.41 20.31 7.35 78.50 41.12 38.08 13.82 53.13 96.68 73.28 32.33 17.33 62.44 88.37 28.23 11.92 83.65 47.91 92.62 95.08 47.53 94.96 29.77 1.35 89.60 39.42 66.48 19.75 33.06 72.97 36.85 91.05 97.56 73.62 18.59 7.66 8.02 88.89 2.51 21.54 63.63 49.36 93.67 55.42 77.86 26.31 59.20 52.28 24.82 9.91 60.17 42.85 77.19 90.17 97.55 84.13 47.57 44.73 16.08 64.14 78.76 99.90 47.53 60.56 16.57 96.34 0.73 91.12 78.29 72.54 17.99 89.04 65.60 -84.13 38.54 27.03 67.32 22.34 58.23 10.12 98.92 38.16 36.00 31.68 39.45 43.46 75.61 40.80 23.10 93.67 23.01 49.47 79.43 78.28 43.47 89.44 39.54 40.90 72.89 47.05 7.67 36.49 58.95 18.41 60.74 59.96 98.92 36.44 75.22 60.71 89.58 94.51 50.59 54.20 41.64 43.17 55.50 0.26 59.15 36.66 62.17 9.53 21.64 65.59 48.93 75.53 8.96 33.56 82.88 66.64 35.96 69.16 98.67 35.75 47.12 28.84 19.65 67.99 3.01 68.87 72.89 69.16 16.32 71.84 18.84 50.05 88.46 11.26 68.59 13.88 1.13 76.55 0.30 22.62 19.68 23.37 59.56 94.62 1.67 59.17 57.59 4.37 29.19 77.54 27.47 36.83 51.08 2.54 48.27 30.75 57.64 42.74 63.43 -9.19 23.39 99.30 44.19 87.73 95.87 97.82 18.08 84.59 43.76 10.44 39.40 93.18 46.04 9.92 93.93 66.87 28.21 52.19 49.04 63.01 98.45 54.60 43.78 89.01 92.29 69.24 76.47 12.98 64.06 3.08 74.22 61.05 77.87 89.93 12.26 98.61 71.88 45.22 58.55 10.05 21.04 93.79 27.36 1.07 91.07 95.09 27.24 34.84 86.72 14.17 9.50 39.81 72.61 17.63 61.64 1.74 9.21 77.74 44.32 17.20 23.55 59.55 8.42 25.99 2.26 94.86 54.77 21.59 0.11 77.39 18.12 60.07 31.34 6.86 22.28 74.61 93.76 64.25 85.53 79.53 15.52 23.33 8.12 16.48 84.69 87.77 16.52 58.34 64.28 21.96 91.32 24.63 22.64 58.52 55.52 64.29 95.58 4.38 24.06 -44.37 70.79 64.62 28.88 56.75 71.17 66.13 35.83 33.27 97.66 1.84 92.42 87.19 76.33 93.97 72.79 13.89 80.23 29.13 46.20 53.78 94.56 98.98 7.29 98.53 34.04 52.79 67.16 38.98 68.41 32.25 48.58 92.85 78.55 15.10 46.83 12.08 69.74 93.09 69.09 49.41 9.60 50.21 99.51 64.27 97.69 8.56 67.99 23.28 64.93 38.78 44.41 77.17 65.48 19.65 66.51 54.26 31.89 38.80 60.71 6.71 17.16 10.81 67.96 53.54 1.56 19.26 61.50 3.06 29.66 62.79 66.52 35.46 74.24 58.85 6.59 76.67 95.61 90.80 55.05 82.44 92.83 95.47 33.36 21.07 80.07 96.66 5.46 60.34 71.28 26.64 98.24 56.11 78.89 93.41 63.70 2.01 22.64 88.57 65.31 -81.03 77.22 72.14 78.03 21.72 77.25 37.58 44.63 7.42 7.81 73.53 38.78 80.77 65.37 78.70 54.60 51.45 27.36 79.39 67.20 25.90 49.47 82.19 2.23 73.74 94.89 93.31 75.48 43.50 95.41 29.94 1.87 21.36 47.88 93.56 47.37 28.01 77.07 8.25 11.82 54.15 41.54 73.12 80.54 11.61 5.66 14.49 37.16 86.56 55.72 94.00 2.84 39.10 2.17 12.04 39.67 68.49 58.11 76.09 67.38 35.92 62.88 19.22 60.73 6.16 44.51 81.25 89.38 12.52 88.22 0.33 62.50 54.18 79.33 12.98 27.86 17.55 0.57 51.03 52.50 34.13 14.36 39.87 71.90 68.20 76.53 46.48 18.98 41.49 87.53 16.71 91.24 70.52 3.03 47.80 92.31 30.54 75.48 72.54 1.55 -25.05 11.37 19.69 60.53 95.11 91.85 38.52 3.78 0.51 60.67 28.82 15.95 80.23 64.33 67.90 67.49 34.75 98.39 44.87 17.92 1.74 35.04 94.89 3.61 17.99 22.67 16.18 30.09 64.92 24.56 98.30 89.99 85.57 33.15 59.97 13.49 46.70 92.10 21.08 8.27 73.09 10.73 97.67 20.05 84.70 5.81 66.93 67.12 77.04 62.43 59.03 70.65 61.22 24.54 1.95 33.87 91.03 99.29 60.83 60.14 63.30 34.83 69.46 74.31 47.79 78.76 28.70 3.91 4.73 78.71 20.28 92.43 86.24 21.48 16.69 81.13 82.22 85.96 24.20 96.59 25.03 31.13 60.04 97.00 78.53 19.52 48.64 81.42 91.82 80.91 64.71 51.87 33.23 94.33 59.66 12.04 49.12 42.08 52.76 19.80 -50.96 92.25 58.84 79.49 34.29 64.36 55.25 40.83 4.18 46.37 11.94 42.49 50.79 20.76 49.77 59.63 95.02 62.87 50.74 54.13 46.26 67.38 27.08 3.97 14.84 35.44 38.73 23.60 15.60 17.68 37.07 69.86 41.56 86.68 82.55 14.14 80.47 87.60 92.92 19.45 24.83 71.16 28.99 73.91 23.37 32.60 57.16 18.44 26.16 40.56 44.12 26.28 55.55 54.14 95.66 33.15 36.90 50.67 63.50 25.33 23.66 87.38 7.62 81.93 51.81 19.08 53.86 98.10 94.86 90.36 86.75 13.51 73.37 22.71 17.04 11.98 81.71 84.27 52.46 8.12 0.94 65.42 29.70 58.10 38.02 46.97 0.75 71.33 25.17 24.90 48.49 18.09 60.87 65.86 92.58 74.83 53.34 20.54 49.04 89.80 -49.94 20.62 22.15 0.10 86.81 86.52 88.91 3.66 71.18 50.43 45.43 61.28 88.32 64.18 17.13 76.50 61.15 43.00 8.22 11.77 2.89 61.24 20.29 90.41 92.91 79.23 39.76 84.79 16.10 30.20 30.24 1.14 5.68 60.75 64.17 32.23 47.44 64.76 68.23 5.16 77.97 15.57 27.87 99.19 7.96 14.87 49.64 83.55 16.42 29.65 36.40 12.23 55.92 46.16 99.00 34.07 3.70 28.23 20.55 97.60 56.60 54.91 9.25 57.18 21.01 41.70 29.88 46.59 67.86 0.05 28.05 6.95 93.31 17.14 22.32 60.32 53.06 17.69 8.79 36.88 85.77 25.89 33.64 99.52 55.96 70.66 96.42 67.29 2.68 0.79 62.64 96.14 90.43 73.59 12.45 36.75 52.74 52.74 39.29 9.19 -20.25 33.85 56.70 30.95 81.41 64.89 22.20 29.47 44.98 1.83 7.68 72.24 34.92 0.32 46.54 10.37 56.94 77.16 14.79 3.87 28.27 14.88 12.87 1.63 88.02 19.03 72.76 77.20 83.22 90.91 61.22 72.39 61.84 70.76 93.24 60.02 99.30 8.37 25.84 44.29 63.84 83.88 26.67 0.78 33.55 19.94 96.29 33.25 77.03 2.40 94.33 47.70 90.98 97.05 55.21 99.91 41.02 72.06 31.03 53.95 94.94 24.06 81.11 38.89 1.41 48.30 47.63 6.20 61.84 86.92 80.40 14.06 52.04 1.13 89.77 32.15 95.97 9.23 86.27 7.34 56.46 73.48 62.90 35.70 60.93 99.47 76.50 26.71 48.77 39.55 96.36 65.61 40.51 9.93 3.28 75.04 83.42 82.96 57.15 53.05 -64.33 62.95 7.45 32.77 73.86 20.40 25.11 86.83 80.47 80.66 78.04 22.62 89.31 55.79 68.58 3.95 26.80 0.19 1.28 55.48 86.49 38.06 97.13 15.24 29.04 63.30 64.36 26.91 39.40 37.47 50.02 28.54 25.63 25.14 30.35 99.28 12.74 37.02 71.49 2.21 53.80 17.24 58.64 35.86 89.59 22.28 31.58 62.98 11.74 29.61 76.58 92.60 74.71 69.25 36.62 6.68 23.76 43.05 61.54 58.40 2.99 74.72 90.20 56.02 28.17 60.76 88.99 69.97 45.19 51.49 73.84 11.91 31.11 70.83 53.92 43.79 96.59 55.67 7.72 29.42 5.12 53.56 79.76 88.40 25.88 55.69 58.82 63.87 57.23 3.20 45.96 81.36 55.12 60.79 35.41 86.99 65.48 61.18 29.38 63.66 -20.27 91.89 84.88 88.85 25.24 57.14 53.22 56.12 85.98 87.83 38.82 16.81 15.26 69.42 51.22 9.08 16.25 62.71 71.41 6.44 22.39 63.22 40.46 75.80 84.90 98.92 64.91 75.21 12.86 53.24 72.02 49.93 86.94 96.31 42.49 18.19 56.22 41.93 82.90 87.13 88.28 29.44 6.65 5.94 84.32 19.61 13.12 30.96 6.36 88.30 70.07 41.35 85.15 25.92 32.00 19.67 58.24 3.47 86.69 73.68 93.81 47.50 38.41 24.02 35.84 73.99 22.91 41.53 77.92 2.63 51.61 49.46 16.64 60.14 53.87 16.35 72.21 81.79 30.14 81.55 50.40 34.45 25.60 83.20 9.22 5.45 27.90 26.62 12.93 71.38 87.18 23.02 92.37 59.75 34.49 35.90 38.08 24.23 57.08 30.74 -83.46 88.33 39.50 51.96 61.23 0.68 67.40 36.79 56.60 56.30 93.70 86.05 28.15 4.54 84.31 77.03 69.97 84.08 67.13 33.62 73.99 82.09 16.41 70.01 50.61 35.91 78.24 90.64 70.01 7.52 25.07 33.07 28.58 77.21 91.98 49.91 95.65 18.33 94.06 12.67 60.04 53.77 15.62 12.98 52.28 65.12 37.97 9.66 64.73 55.17 98.51 63.17 78.62 36.23 47.43 61.50 26.46 4.18 31.12 40.05 87.24 86.63 64.14 71.30 12.27 2.67 79.26 63.04 19.05 12.97 90.58 23.40 18.18 38.50 95.97 14.05 66.05 52.80 26.44 12.86 51.71 49.16 32.52 58.74 34.84 53.89 92.53 80.49 84.32 11.95 54.51 52.16 80.83 72.55 7.70 6.69 42.18 14.32 22.93 43.14 -46.07 93.59 6.79 26.67 45.30 68.64 20.75 15.09 71.19 2.65 1.29 9.12 65.03 57.63 21.85 18.19 37.60 25.76 57.39 30.82 9.70 95.30 95.45 34.40 19.31 45.17 32.03 21.65 38.76 46.47 86.45 68.35 79.02 89.01 46.96 48.07 36.33 12.25 27.52 65.90 80.42 33.70 5.39 17.14 21.22 48.91 36.35 49.66 1.95 12.35 35.85 26.45 28.27 84.47 46.81 44.52 17.84 47.12 19.42 56.49 1.95 34.13 99.57 70.81 82.84 83.64 35.59 42.13 49.98 69.14 81.58 56.53 36.85 82.38 66.24 77.11 38.74 88.45 0.94 43.86 33.64 86.48 73.60 23.47 41.86 36.92 27.14 52.20 67.30 69.62 22.62 59.36 93.85 80.73 73.39 26.08 31.13 68.65 13.92 55.99 -97.20 66.28 50.99 82.72 10.83 68.41 37.52 20.25 61.45 4.72 32.83 96.67 81.02 87.79 70.43 72.13 5.79 79.49 31.78 46.55 34.26 81.90 20.81 74.16 66.60 40.46 53.51 38.19 56.89 73.16 44.64 70.61 12.98 48.91 2.93 86.77 51.58 37.37 88.07 42.32 93.03 23.99 49.29 86.16 33.78 89.49 80.07 92.95 99.10 41.60 6.28 74.92 77.23 71.66 15.88 96.62 18.81 22.72 74.55 51.93 77.29 96.86 80.20 55.91 59.42 85.79 93.06 39.66 50.70 68.76 89.92 0.95 21.42 4.35 31.70 87.41 33.58 94.52 33.58 38.94 56.03 18.92 56.74 7.66 50.69 5.23 2.12 19.28 70.92 55.34 0.67 71.45 78.88 78.38 61.71 11.93 3.42 11.69 43.13 54.17 -82.20 2.01 57.85 74.00 62.50 29.45 82.35 74.87 56.43 34.85 83.27 25.49 82.73 27.88 39.13 99.40 10.28 52.81 62.04 31.12 19.06 5.07 77.69 72.76 9.34 68.74 30.63 81.44 77.78 5.37 42.43 17.91 46.70 17.81 7.94 35.76 20.37 60.16 58.00 69.28 39.52 96.19 94.78 13.05 33.82 24.23 64.40 13.70 10.88 10.39 5.21 77.70 51.36 22.62 21.38 46.28 29.15 3.01 2.40 3.75 54.65 27.74 99.22 33.64 32.76 59.63 93.54 19.65 84.48 17.58 84.44 75.08 62.51 27.64 2.88 70.87 17.53 73.40 57.64 56.42 65.51 41.37 40.17 39.52 81.24 79.75 56.95 1.76 74.24 40.40 63.10 7.02 43.33 14.51 82.65 23.90 91.49 44.30 15.32 45.21 -84.45 73.02 77.21 10.99 41.92 26.55 16.26 65.43 46.41 43.37 48.52 62.60 55.32 42.62 7.50 4.42 17.41 24.22 52.76 12.62 13.37 95.36 52.93 34.38 64.79 6.65 21.44 98.99 89.43 90.67 98.61 3.76 24.96 77.80 75.25 27.06 55.81 98.15 57.60 81.58 57.41 4.25 66.41 41.39 97.91 11.70 91.86 81.03 16.04 75.43 54.43 39.83 36.44 46.40 75.31 42.71 84.68 28.60 54.41 64.70 46.92 75.22 19.77 92.72 35.24 51.06 2.01 57.00 16.45 32.69 29.46 61.34 83.73 9.35 17.63 15.62 51.36 27.33 34.43 20.86 38.38 57.46 17.63 41.06 32.48 74.33 32.29 87.97 16.70 9.94 73.77 94.82 98.58 2.13 97.12 43.86 82.18 2.73 50.07 68.39 -62.37 46.60 51.66 74.92 4.02 70.50 4.34 17.16 15.43 26.53 0.89 52.65 97.80 36.92 62.72 83.80 37.82 11.40 76.33 83.61 27.18 39.17 30.76 32.27 9.90 60.76 12.51 26.13 11.17 1.79 39.56 61.61 3.31 39.65 86.99 56.08 60.80 82.48 2.98 12.72 56.04 53.82 49.90 63.74 72.73 76.85 98.99 71.45 45.30 81.29 40.98 41.85 14.03 46.15 18.20 65.56 8.51 27.03 77.83 72.22 42.75 37.02 43.78 43.43 18.95 62.83 50.34 92.43 18.85 97.56 6.25 44.46 20.38 63.58 26.54 10.93 82.38 21.84 19.41 5.18 11.82 91.90 7.98 27.54 15.14 27.24 95.70 63.67 56.02 6.31 2.35 38.84 71.68 3.46 16.96 70.23 94.97 90.21 28.42 31.17 -61.31 97.83 87.00 94.07 53.39 79.14 12.43 64.39 2.44 37.63 36.81 86.09 2.80 62.00 35.76 10.98 21.85 55.60 0.68 30.91 72.57 80.24 66.68 62.49 91.13 16.97 5.09 95.28 35.83 76.27 7.15 95.42 85.35 37.62 57.13 38.78 61.62 47.98 67.85 52.32 21.05 32.67 9.41 13.25 0.34 26.67 56.38 53.67 78.92 41.49 77.59 66.30 4.00 87.67 41.71 39.96 91.88 88.36 58.53 34.96 80.82 22.03 94.22 22.73 67.19 52.98 52.70 14.04 65.59 30.36 30.81 56.91 73.07 68.20 43.20 35.50 95.29 64.64 99.68 41.58 25.70 29.58 73.89 5.52 53.69 87.29 11.58 21.41 59.18 50.28 91.27 46.86 3.74 88.48 66.08 49.87 62.33 71.36 82.43 20.33 -42.58 69.03 57.98 21.41 14.67 21.27 43.24 18.85 65.26 45.42 29.88 35.18 35.85 93.60 42.92 82.64 5.87 71.35 51.26 12.78 1.08 4.99 81.83 80.70 49.44 81.77 43.49 25.64 72.27 80.98 30.40 87.75 2.38 51.71 86.29 43.38 19.98 9.12 70.00 37.20 32.51 69.12 28.69 72.39 25.84 5.34 38.83 67.37 87.67 54.03 88.14 80.05 87.85 88.68 68.57 59.61 44.25 19.92 0.72 77.80 8.51 76.09 84.32 81.93 97.40 65.99 11.91 70.19 73.03 79.19 50.48 93.10 6.34 86.58 80.89 35.07 90.02 83.11 73.92 78.02 54.16 36.30 21.82 16.39 12.07 28.21 46.19 33.49 61.82 50.83 91.48 6.25 20.37 31.20 25.60 69.21 93.12 73.65 17.44 19.07 -87.59 7.78 34.17 29.44 6.70 60.83 98.02 23.23 48.16 30.41 22.12 0.43 77.50 7.18 92.05 50.27 36.31 39.01 39.61 70.06 23.95 2.54 56.66 57.12 66.89 79.57 33.97 20.42 76.56 75.37 75.65 75.91 15.55 98.73 92.23 78.29 18.60 29.75 81.32 56.70 45.03 3.28 60.07 72.07 62.81 84.34 68.26 76.78 38.35 10.04 93.47 20.30 58.77 22.40 65.56 80.47 38.38 36.42 93.58 70.25 2.19 84.76 66.22 82.82 29.76 42.68 61.09 15.24 39.69 8.70 17.74 18.91 4.60 92.34 53.50 28.53 55.29 51.50 43.46 64.93 65.32 99.36 6.71 48.32 13.45 73.30 25.35 20.44 70.34 26.03 15.74 2.82 42.20 83.72 12.78 41.21 43.06 27.55 54.52 89.71 -14.09 78.45 66.24 66.21 50.35 85.07 10.90 59.77 86.08 91.23 33.17 98.85 55.31 74.97 90.73 24.51 13.03 10.95 92.26 65.60 2.77 42.26 32.84 69.45 23.28 93.09 6.29 23.30 77.57 93.49 16.30 98.66 93.03 58.37 64.57 84.37 82.84 77.13 9.26 24.34 72.84 30.24 27.43 84.25 82.24 88.87 21.63 60.15 88.20 41.67 1.72 86.03 56.02 42.36 69.86 3.09 83.45 87.75 48.29 68.63 22.64 73.73 68.16 18.61 91.65 35.88 82.03 11.20 21.74 42.01 95.61 97.06 49.52 74.27 48.87 24.23 47.76 6.43 23.19 25.90 83.36 44.17 65.54 80.27 57.21 27.65 17.92 68.34 2.12 19.87 69.35 67.28 83.81 84.95 47.28 54.60 81.75 43.24 58.67 34.95 -95.58 51.71 42.83 20.18 84.62 53.24 38.09 2.87 18.47 86.59 68.74 32.88 6.88 85.38 79.01 17.27 44.49 10.59 48.74 38.42 23.13 3.47 32.91 68.07 50.50 37.07 54.66 64.03 18.76 69.06 9.59 6.79 81.42 55.14 90.61 7.30 33.10 72.66 86.55 36.88 5.83 71.23 6.37 31.38 81.23 79.58 22.58 21.11 62.70 33.53 48.86 13.17 30.67 47.20 72.74 87.66 60.90 64.21 88.50 68.25 2.72 90.14 20.35 37.80 29.55 89.29 19.62 35.94 40.48 38.53 86.95 52.83 25.60 15.31 35.26 89.65 12.26 59.63 91.34 85.76 93.19 97.42 88.34 12.63 17.61 35.94 94.99 53.68 16.88 57.12 23.96 37.99 33.63 20.45 46.70 51.06 56.18 89.37 80.96 12.02 -63.90 38.78 50.70 6.94 44.61 78.21 80.32 34.07 89.60 95.81 70.44 53.06 53.42 95.26 7.88 1.19 95.03 10.79 92.97 34.33 44.82 4.08 96.65 57.49 8.49 95.27 85.02 59.72 13.52 45.57 14.80 58.77 69.13 78.91 15.26 1.89 17.25 32.22 5.68 49.29 22.00 32.41 70.36 75.76 93.14 67.84 1.19 23.06 69.69 43.29 14.96 85.14 96.29 88.73 32.36 94.90 9.22 44.74 63.49 12.98 36.75 97.31 63.79 65.15 97.14 14.32 32.49 18.99 95.00 24.50 62.92 99.47 20.44 25.57 92.78 96.23 92.51 86.98 45.80 98.40 53.33 35.56 32.46 52.94 41.38 81.02 0.58 10.65 58.75 77.06 10.19 19.46 44.61 21.48 52.79 70.64 64.86 71.16 99.85 76.70 -29.10 47.76 25.82 19.33 91.58 44.74 98.53 30.05 24.00 22.19 86.25 73.10 31.84 33.70 27.81 20.69 8.02 87.89 23.06 21.84 29.80 92.45 74.48 96.54 16.35 43.92 72.32 79.44 87.05 76.32 65.64 99.56 70.58 32.03 17.49 82.74 89.09 35.78 52.41 67.18 44.35 92.88 74.89 93.52 22.00 76.81 71.08 85.13 57.91 36.55 55.07 56.50 82.75 3.58 52.72 76.39 43.27 43.97 30.70 64.10 90.91 20.77 28.47 57.24 37.84 35.71 92.85 26.25 54.94 11.50 9.32 0.99 83.79 81.68 32.45 69.30 84.85 46.89 84.14 12.48 91.52 33.91 78.71 64.60 37.27 30.90 81.96 16.75 34.14 63.31 20.26 59.61 58.58 78.58 10.21 81.35 67.05 9.78 83.49 0.24 -52.55 91.14 75.28 1.89 62.77 83.00 64.50 40.72 61.19 81.64 79.27 69.30 96.58 78.96 98.09 37.99 45.86 22.68 11.20 76.21 29.00 80.26 59.50 70.00 61.23 69.14 38.34 27.60 95.70 2.62 7.75 97.59 82.70 58.56 54.84 53.01 36.25 91.79 65.28 63.90 40.77 4.39 7.55 32.57 69.35 7.69 29.90 36.01 88.27 88.09 12.90 52.65 21.70 96.09 24.35 6.62 8.21 33.81 26.71 24.79 99.12 76.41 37.88 20.29 80.70 98.66 44.69 6.97 86.98 4.45 92.09 50.09 50.63 56.67 10.26 50.53 57.07 52.32 93.39 32.71 80.04 23.70 95.84 57.01 27.90 99.69 70.64 71.28 5.72 13.69 2.68 46.69 38.00 46.80 11.26 68.79 86.89 82.32 36.43 19.59 -79.31 80.85 11.87 99.95 33.53 58.81 64.52 9.49 94.26 48.71 6.41 51.58 38.28 85.68 57.32 99.03 0.74 47.25 13.29 97.50 90.94 77.18 74.35 81.12 90.24 42.02 5.03 14.84 31.44 52.84 50.36 57.81 20.96 36.62 81.02 27.29 5.58 26.34 50.95 83.16 9.35 54.87 10.01 29.99 74.86 84.49 20.62 44.69 47.23 48.25 53.06 56.40 95.25 18.38 98.83 78.12 47.78 38.25 33.24 36.04 9.60 66.53 25.19 75.60 87.01 58.61 62.18 99.23 67.64 59.22 63.04 61.69 92.72 62.19 26.04 22.55 86.17 85.11 66.39 90.20 9.72 41.83 37.72 20.41 70.79 70.35 4.89 81.65 19.80 49.28 79.80 49.79 30.91 83.63 5.55 79.61 39.66 83.87 55.60 34.92 -30.05 92.67 21.23 41.03 68.60 6.60 23.88 1.97 55.83 9.29 90.58 49.20 34.67 20.81 72.20 85.75 86.67 93.14 74.08 81.05 14.78 69.97 76.01 20.41 90.63 33.13 23.32 2.51 83.22 31.38 42.40 12.64 96.50 67.69 83.81 66.72 24.08 85.03 23.83 78.90 3.07 63.62 31.17 45.96 34.46 60.37 0.69 19.53 35.61 50.31 67.22 21.38 39.62 72.34 83.78 40.19 30.92 99.64 25.64 36.83 43.55 48.11 46.84 91.48 46.06 79.46 19.67 66.74 98.63 13.26 31.10 52.44 2.67 92.43 44.89 5.44 7.88 65.12 95.95 8.89 74.31 27.97 65.21 65.36 95.94 68.41 73.70 95.52 9.22 45.68 8.20 61.33 7.44 84.50 98.92 49.20 6.36 19.86 53.75 90.10 -25.37 15.91 39.10 0.58 85.68 67.73 66.12 3.03 75.87 2.99 58.26 37.60 8.53 30.56 30.90 6.12 5.22 62.85 12.49 46.31 37.62 78.00 11.45 22.28 71.04 13.39 78.63 23.34 59.80 75.36 69.99 35.87 79.97 74.34 41.86 64.84 67.18 99.74 98.25 87.71 36.22 28.71 50.17 37.41 94.29 33.21 64.31 8.11 41.76 8.76 22.99 84.31 27.68 5.00 70.21 11.54 73.28 9.59 19.95 82.87 99.98 99.44 81.21 77.66 53.62 21.95 11.18 86.73 40.91 28.14 75.07 94.94 85.94 45.45 42.40 70.44 28.99 69.78 49.42 2.73 53.99 90.73 50.29 49.78 1.01 25.46 14.62 84.71 60.79 22.20 73.38 17.98 3.54 53.76 87.06 93.31 26.96 49.51 52.35 38.73 -27.27 94.86 28.32 60.21 83.01 4.70 15.16 66.16 25.99 73.23 75.97 17.32 87.46 33.06 91.02 21.19 45.36 27.55 43.81 75.27 21.55 64.27 80.57 41.61 59.42 16.14 46.14 65.09 7.58 47.08 35.76 74.29 68.71 71.40 48.37 2.63 9.93 28.93 97.98 94.13 87.65 76.25 12.07 65.96 50.02 88.87 59.72 79.74 13.10 57.01 92.41 15.15 80.86 23.74 41.50 8.64 60.95 61.18 49.87 98.83 2.29 26.16 53.75 5.70 82.75 98.14 46.68 22.70 72.65 48.26 21.67 10.76 54.39 66.99 65.48 9.45 29.42 65.54 61.08 23.08 46.24 32.58 2.97 28.53 28.32 99.73 35.74 45.00 34.71 9.24 63.81 76.51 52.66 26.27 81.16 73.71 74.20 65.57 54.97 94.01 -53.47 30.13 35.73 22.10 2.88 99.98 87.09 31.17 31.29 68.87 11.44 57.36 91.08 20.99 70.93 51.23 44.65 93.67 84.52 18.83 2.95 19.07 91.35 45.37 69.73 56.00 46.42 66.11 16.65 21.85 64.28 12.69 6.31 28.87 7.20 1.59 12.48 71.80 75.12 65.50 73.29 64.34 94.10 30.31 5.37 7.01 64.24 35.97 43.07 87.50 12.31 8.19 45.48 81.55 11.60 86.38 80.90 9.47 80.15 2.98 75.10 57.71 15.58 30.47 60.07 20.82 60.85 26.36 2.75 32.16 14.64 42.27 91.65 59.78 67.86 34.62 97.50 53.84 5.92 73.96 25.65 31.17 73.58 88.06 80.98 95.69 81.89 95.56 41.72 48.52 36.20 99.44 46.08 36.72 46.94 18.73 89.98 14.99 62.78 97.51 -96.10 43.33 81.52 39.25 80.65 43.57 14.03 86.86 84.94 3.56 31.43 88.57 1.80 51.99 64.89 75.99 93.77 77.95 8.79 15.50 13.96 85.91 27.23 95.86 3.15 82.68 88.89 58.49 2.25 70.25 24.06 33.70 51.74 11.15 43.22 46.87 10.54 46.56 35.36 88.21 40.69 22.96 44.61 15.76 86.18 56.55 91.94 10.14 89.73 64.77 88.96 15.98 80.41 16.23 57.85 32.78 28.48 12.79 23.36 52.19 66.13 33.23 21.02 33.36 78.22 23.39 26.11 75.27 6.78 41.86 4.52 39.82 53.82 82.84 37.32 76.79 58.56 74.34 24.54 20.36 10.67 84.10 81.66 73.19 28.70 3.89 24.31 14.10 82.04 50.03 72.93 61.34 88.79 18.47 1.81 38.10 21.36 35.56 12.13 32.05 -85.46 88.14 6.41 2.14 45.35 90.23 46.40 66.87 88.95 11.46 49.54 26.71 88.54 35.20 31.89 78.66 49.91 96.03 23.32 57.77 8.22 6.82 12.63 18.85 70.79 81.89 49.87 85.76 53.47 34.38 43.29 52.85 64.20 55.10 77.00 40.82 32.19 11.49 77.36 24.18 76.67 73.37 64.93 12.41 68.12 29.21 53.62 82.28 15.53 70.77 94.87 48.14 77.90 84.07 25.90 83.12 88.01 95.74 44.18 91.58 36.24 13.53 57.06 2.06 94.41 34.83 79.49 7.24 28.33 25.57 77.61 35.04 72.20 11.09 4.53 79.91 0.76 37.66 21.32 64.30 27.38 56.30 4.88 6.25 29.82 51.14 67.44 44.66 73.31 50.49 9.94 2.80 62.55 63.74 91.90 19.43 27.78 39.34 67.50 98.51 -86.57 82.06 20.47 57.33 74.44 99.63 2.42 30.52 1.86 8.31 42.06 69.57 98.37 98.53 11.13 93.38 88.87 25.14 78.44 17.13 72.80 76.93 75.20 24.18 75.92 97.11 21.54 23.54 31.33 87.10 62.92 35.48 64.35 85.81 54.80 8.64 4.40 84.06 39.48 86.20 24.56 64.68 15.60 41.97 38.60 17.83 75.97 60.78 40.62 30.06 66.97 81.42 27.59 99.81 53.08 21.58 27.99 21.60 70.34 48.68 34.40 54.72 90.62 58.85 88.36 49.63 18.99 16.04 0.58 1.25 1.85 93.49 73.76 42.16 62.07 57.28 98.01 66.11 58.70 55.11 10.53 20.93 91.89 96.26 48.92 73.19 71.35 80.05 74.82 35.99 35.66 89.14 62.12 74.00 69.61 13.67 78.35 54.88 45.78 84.13 -43.95 53.69 50.05 21.32 20.99 36.82 25.26 48.77 8.10 37.78 81.72 44.34 44.71 58.57 58.48 5.86 43.66 99.88 21.70 90.43 95.67 40.30 97.80 0.29 26.04 58.11 67.52 28.68 78.34 44.09 1.94 80.49 52.82 4.59 26.64 67.77 0.31 34.50 99.97 56.95 74.18 15.86 83.41 52.95 27.29 9.23 36.40 16.03 69.05 70.35 20.63 98.34 38.98 99.93 32.30 59.57 77.66 46.51 1.16 0.31 78.06 86.62 50.33 34.30 48.98 92.87 17.25 30.38 43.20 96.21 68.97 81.27 25.13 74.45 42.75 20.09 29.78 63.53 38.10 73.22 14.99 40.32 55.71 16.42 21.91 85.94 42.47 92.04 25.14 58.93 24.17 0.48 1.70 49.14 13.13 42.98 67.13 64.08 51.84 16.05 -48.05 26.01 4.38 28.20 94.13 83.59 40.81 19.80 66.69 30.94 65.01 78.35 67.88 74.31 81.60 7.32 1.96 20.53 1.89 82.38 45.73 45.97 6.46 83.05 97.00 69.51 58.03 64.92 35.08 83.68 21.94 86.43 51.59 50.57 99.99 47.88 95.97 97.29 80.90 92.84 24.01 4.79 40.36 99.13 52.98 20.29 30.15 72.69 98.29 78.53 12.35 52.22 71.76 54.10 39.99 44.70 18.94 22.05 98.57 59.93 79.51 54.04 5.02 74.15 1.87 52.24 47.59 9.30 92.08 99.51 45.49 5.55 52.81 51.93 62.16 14.84 99.87 43.57 65.71 30.71 96.29 75.66 82.45 32.25 94.63 37.18 60.04 98.40 37.98 54.43 38.81 67.27 51.22 65.86 97.95 87.47 69.70 22.00 5.90 34.56 -74.41 10.32 46.17 22.21 59.22 89.85 35.19 25.63 21.63 87.23 39.25 77.59 76.52 7.31 12.74 62.21 72.52 39.83 31.60 53.05 45.09 59.27 48.72 89.71 65.03 52.19 45.24 96.96 87.18 81.96 39.79 29.84 85.39 27.55 98.73 84.70 59.56 8.47 6.08 44.99 44.95 40.88 35.18 48.36 84.42 74.66 28.29 16.17 20.47 90.75 75.55 50.42 92.94 56.34 66.49 93.27 91.42 29.71 85.55 21.33 32.71 0.03 97.54 72.90 9.49 89.11 98.37 67.35 65.82 9.49 27.74 9.80 26.79 64.53 42.99 7.21 11.92 90.69 18.58 91.10 32.04 4.89 91.41 0.80 18.22 57.86 33.40 83.92 67.45 9.98 26.04 25.38 87.81 35.92 20.08 99.23 25.11 55.11 58.75 73.43 -48.53 93.28 57.21 68.87 61.62 22.18 18.14 98.25 57.13 77.60 50.01 51.69 32.62 72.41 39.02 91.80 14.87 96.29 40.70 27.61 52.89 92.97 92.12 64.78 81.59 99.04 51.27 73.07 5.20 1.94 43.80 69.17 84.21 95.62 69.16 13.54 91.20 49.13 78.79 33.52 47.35 55.79 46.54 49.87 27.89 70.19 87.17 62.68 19.67 79.10 59.25 28.95 59.70 18.38 99.28 32.55 65.48 11.22 95.70 82.07 9.50 24.80 65.78 73.60 18.51 32.35 29.98 3.51 68.41 18.73 87.31 7.60 70.52 98.14 87.21 79.29 95.92 64.52 89.19 99.29 79.26 99.07 20.37 56.80 79.23 44.32 46.62 6.83 45.35 10.06 36.52 90.92 84.10 62.19 49.58 7.42 75.26 41.46 39.37 23.25 -98.39 37.09 12.19 28.28 4.06 18.76 1.41 54.89 8.73 47.29 40.18 59.04 73.84 54.27 47.71 63.11 61.01 61.44 11.01 27.15 71.39 70.11 69.47 5.56 71.94 56.27 1.57 33.14 29.88 91.06 47.71 9.20 18.96 32.99 25.78 84.54 84.52 5.18 0.79 69.91 85.24 75.56 30.43 98.79 18.28 78.57 40.12 27.44 58.34 60.41 43.53 55.48 37.03 32.64 73.03 40.72 84.73 20.64 61.56 10.44 66.84 89.13 3.87 68.44 34.12 44.71 7.83 88.53 30.76 39.29 73.25 74.58 93.41 28.94 19.29 44.64 97.46 42.38 52.18 85.82 11.22 27.77 54.67 87.01 27.20 66.57 44.18 2.54 90.63 65.29 17.54 49.87 25.55 19.49 7.84 21.81 38.01 63.18 59.71 25.97 -47.83 82.04 13.18 4.05 72.46 64.19 10.89 31.25 88.91 60.33 45.65 63.97 16.39 16.34 71.94 85.54 37.55 27.39 74.01 14.13 50.37 81.49 3.51 92.12 80.07 40.27 98.09 60.60 64.41 6.20 12.90 66.82 60.95 88.41 36.76 86.79 35.76 97.21 51.64 82.51 29.19 3.31 3.14 74.99 62.89 67.28 71.67 50.50 60.41 83.83 29.49 47.58 69.31 8.57 64.42 19.86 62.58 57.81 95.30 64.20 4.98 62.36 63.79 26.80 18.59 14.15 74.29 28.82 55.18 2.50 66.51 16.52 42.16 55.36 36.39 12.97 29.33 39.28 84.20 97.02 65.40 26.14 2.65 94.02 52.05 53.29 38.51 35.22 73.89 48.05 15.50 51.00 87.03 98.92 71.03 16.68 86.29 47.41 31.39 83.54 -98.44 92.10 17.13 12.96 88.72 52.69 43.50 16.83 71.83 1.69 6.99 98.07 83.29 12.92 21.90 4.50 16.27 25.42 3.17 85.63 76.86 29.88 66.93 74.87 53.18 30.16 26.86 50.45 61.96 8.13 46.07 73.39 58.82 39.68 77.01 5.60 58.11 48.26 93.44 32.97 49.69 31.70 55.25 93.59 99.44 26.57 92.55 14.90 82.95 64.02 85.39 75.72 5.73 81.71 55.67 79.37 46.84 38.95 1.22 41.58 51.70 31.97 76.85 23.49 32.49 75.95 78.92 29.18 22.68 71.94 77.27 51.72 30.74 31.94 99.31 24.20 61.41 12.49 28.19 30.98 48.07 59.14 55.27 16.28 26.15 42.82 6.86 2.68 41.46 20.33 54.09 37.76 49.40 22.24 9.00 26.16 73.04 2.07 99.02 56.03 -84.49 70.93 87.13 69.17 27.88 89.63 79.26 28.11 17.43 84.30 7.98 68.96 82.45 55.75 97.11 80.98 16.58 52.90 29.44 82.75 41.07 77.88 74.76 76.88 29.14 19.30 19.53 47.46 84.33 86.04 48.32 67.90 69.43 57.07 64.99 25.55 93.12 53.24 17.91 37.14 45.34 66.71 14.08 26.10 69.00 50.16 84.74 85.48 57.97 70.51 23.78 88.64 24.39 26.84 97.52 96.30 96.86 33.82 11.29 85.05 45.17 98.43 85.39 59.89 15.14 26.79 77.12 56.99 41.71 53.38 25.73 22.25 61.03 32.46 27.46 52.12 74.63 25.38 19.94 20.09 41.43 4.26 69.22 57.21 68.48 84.08 71.30 6.25 21.18 22.32 23.74 51.15 58.57 7.77 98.79 75.97 99.34 7.70 40.49 32.82 -92.44 8.22 27.53 54.06 87.78 9.31 38.83 78.77 59.56 16.30 0.45 1.29 14.36 51.68 88.24 29.20 80.59 18.88 32.90 76.04 8.39 54.36 28.94 69.88 5.73 66.26 29.83 62.94 71.21 26.68 11.75 80.42 46.70 25.57 88.67 20.43 49.91 89.77 40.47 33.90 57.43 68.11 51.46 2.00 61.30 67.90 93.33 44.03 36.71 87.16 65.80 65.42 75.21 84.12 15.65 2.50 47.36 52.87 66.71 61.49 6.88 16.72 20.49 14.35 62.60 53.42 25.72 52.80 99.92 83.62 39.10 6.48 23.93 84.38 7.79 66.92 47.88 13.28 96.51 75.89 71.05 90.17 30.04 8.60 75.22 94.21 83.47 48.94 95.65 68.16 42.62 27.62 7.40 18.56 16.11 93.66 99.44 18.32 57.73 50.94 -0.47 51.12 90.80 66.39 18.01 75.31 80.78 21.85 43.02 50.49 40.84 81.03 39.89 48.92 42.83 24.93 90.19 93.63 43.78 78.89 92.01 26.76 90.75 24.91 16.12 46.55 17.94 40.17 6.51 65.76 61.60 84.48 27.47 91.76 93.28 49.08 2.36 13.65 52.24 31.26 33.44 47.81 89.04 51.50 89.09 34.82 28.20 60.42 15.70 86.03 52.10 20.97 9.08 22.88 43.29 16.87 60.49 34.54 67.10 89.42 85.24 31.24 43.77 25.20 9.12 4.69 7.99 70.44 11.31 89.56 77.89 43.37 17.70 53.17 39.71 62.91 60.69 0.01 28.99 20.66 72.38 99.74 96.83 82.70 51.39 70.58 45.20 2.73 40.58 74.69 17.27 37.46 76.73 16.75 97.59 94.15 35.06 44.71 81.35 19.17 -29.91 20.88 37.08 82.45 89.28 59.72 49.50 49.82 35.93 33.71 64.15 100.00 66.77 73.95 43.52 21.00 88.82 36.13 85.07 6.99 94.62 20.38 53.31 14.34 45.68 82.96 14.85 5.34 19.38 86.28 93.62 27.53 58.95 33.93 41.18 40.98 74.49 9.22 91.53 51.74 90.71 86.43 10.18 38.24 32.67 65.00 9.09 78.21 20.89 58.40 9.04 41.22 8.97 58.67 11.69 73.24 75.25 41.36 4.13 98.82 73.64 50.40 20.10 38.50 99.23 40.46 35.12 68.66 99.20 26.63 31.25 78.67 63.88 11.84 21.67 38.34 48.41 84.79 28.37 9.20 62.29 73.68 28.90 76.15 60.69 68.92 8.45 74.53 23.26 29.60 76.63 66.69 98.89 55.60 34.12 81.80 20.24 66.20 90.85 9.56 -96.84 64.16 5.52 67.36 74.38 50.26 12.55 46.06 6.00 41.84 10.18 14.86 21.39 44.31 16.65 69.68 98.31 71.92 35.23 95.78 53.55 18.49 34.08 86.74 35.51 67.30 51.91 50.75 32.73 88.62 62.28 89.19 18.15 17.75 11.42 29.12 0.42 25.65 76.42 11.28 79.03 81.10 70.49 97.83 76.85 82.81 16.90 50.87 54.76 70.14 20.94 15.96 51.82 76.13 11.41 32.97 0.23 49.69 99.81 62.74 29.63 13.47 48.16 53.17 61.78 56.63 3.19 8.45 6.41 8.75 99.77 92.94 3.82 92.85 93.63 64.64 37.72 38.94 66.86 21.77 3.70 4.74 75.05 13.79 50.83 50.46 39.32 33.42 29.61 76.61 92.60 1.79 72.66 32.62 3.03 88.26 60.72 32.83 5.22 40.29 -23.63 65.05 40.41 10.84 44.59 55.94 22.71 95.51 86.90 44.12 62.82 46.52 80.43 82.83 6.83 1.24 94.28 93.99 4.04 54.14 58.43 86.56 3.84 60.55 54.77 12.78 81.70 9.07 86.67 44.30 36.12 64.34 13.23 59.47 80.22 50.41 18.27 24.84 37.77 35.69 95.23 44.71 24.38 22.08 41.15 70.03 59.38 93.53 29.34 69.00 54.01 11.34 68.29 45.78 68.21 67.20 66.73 27.92 24.86 96.31 19.20 43.34 49.17 57.11 93.93 9.09 70.18 88.42 41.25 45.97 9.91 65.91 93.72 75.90 4.72 29.11 89.75 88.60 85.46 79.57 59.13 11.25 62.43 47.80 34.99 14.47 23.59 82.26 68.82 78.02 16.28 89.60 0.25 25.51 75.87 10.98 8.23 48.39 33.11 85.40 -28.31 47.12 97.05 31.76 7.46 57.33 69.61 43.35 70.45 13.74 32.41 50.09 97.60 5.85 62.49 7.83 46.79 34.71 69.83 10.58 5.65 70.47 51.03 4.27 31.67 94.75 71.36 89.67 95.41 42.07 72.98 6.51 83.95 46.30 71.03 61.17 70.96 92.50 57.10 22.10 25.16 60.34 49.06 74.02 33.69 75.03 14.01 42.87 89.79 48.68 45.90 44.81 3.01 38.56 57.94 3.96 76.99 66.12 11.44 43.98 9.61 93.72 50.58 7.04 55.59 3.48 20.65 79.36 49.95 21.47 60.68 43.37 29.18 95.38 77.61 79.83 60.71 47.31 14.93 3.59 51.32 33.55 45.23 66.30 13.76 65.98 48.93 32.16 63.65 23.84 92.12 35.62 60.90 18.72 65.27 81.96 12.39 47.14 17.11 59.99 -45.27 17.73 74.99 68.67 74.56 73.81 52.58 78.96 68.72 83.42 44.55 96.21 94.72 47.07 43.66 86.49 50.38 3.62 8.24 84.85 7.79 51.15 46.02 6.71 15.48 58.37 0.80 63.21 6.65 52.60 41.45 81.84 2.04 53.14 2.24 4.36 31.02 2.34 91.31 27.58 1.00 79.07 32.93 42.74 67.45 5.95 16.86 78.39 85.16 55.06 32.68 81.92 65.64 75.11 92.80 67.03 67.91 57.90 73.42 98.12 23.16 57.65 64.85 11.44 65.03 37.81 96.46 32.13 64.80 3.69 90.59 34.61 19.01 30.27 81.65 82.77 53.46 37.96 29.94 15.64 92.98 78.58 48.39 65.34 53.04 13.10 17.34 52.97 59.84 28.86 39.05 73.38 41.70 90.52 7.22 35.96 49.46 24.47 56.01 3.75 -56.63 85.76 69.97 70.85 65.62 70.94 45.33 47.41 5.21 25.20 33.87 54.75 66.90 28.75 79.76 7.49 73.04 78.50 82.65 14.25 88.44 1.90 8.89 18.30 21.18 53.13 15.97 19.63 59.48 13.98 61.82 91.60 62.14 93.50 10.94 10.39 83.63 59.35 79.18 26.01 11.10 27.71 36.84 65.57 18.31 43.36 97.76 15.83 5.19 32.65 96.79 64.97 52.20 11.88 99.94 95.16 36.24 94.96 57.62 16.26 72.22 18.78 47.14 69.11 98.91 95.53 41.82 31.43 79.82 38.20 72.10 46.02 37.23 57.90 93.41 32.31 86.97 53.73 50.25 23.21 36.25 37.50 64.66 11.30 95.59 34.89 25.18 77.16 58.33 58.88 68.57 27.19 16.74 89.69 63.39 9.39 91.60 76.70 51.73 38.97 -88.60 7.38 96.94 48.46 69.12 23.28 10.89 25.94 89.33 31.64 93.21 52.20 61.85 94.87 93.80 22.52 48.73 82.21 76.84 18.47 79.47 2.57 76.95 50.93 43.25 65.98 60.64 77.58 30.96 66.13 23.12 86.61 79.34 82.59 66.73 44.84 38.80 66.14 36.50 87.14 41.03 12.31 30.53 81.08 7.82 86.98 45.73 39.73 20.55 74.40 19.81 72.97 54.43 78.57 75.01 21.50 13.14 96.28 86.98 3.08 76.10 8.03 97.17 94.40 50.50 30.08 69.78 95.98 27.21 31.85 64.58 58.12 6.19 50.08 94.89 50.88 49.90 20.90 80.65 79.16 72.77 32.94 37.54 85.70 60.71 3.78 26.90 90.48 1.22 33.11 25.36 65.75 39.04 41.49 13.83 82.06 40.15 50.56 36.69 22.38 -38.14 33.12 42.63 24.98 65.17 23.98 47.42 59.49 55.01 12.08 19.67 80.54 36.61 52.14 60.35 18.57 78.86 61.83 47.11 3.42 64.08 12.14 75.73 95.74 68.50 45.00 11.05 99.16 1.76 12.60 7.64 79.22 70.47 69.83 5.42 29.55 38.33 26.97 3.98 31.57 94.51 95.79 4.95 17.08 74.24 72.97 69.43 26.37 53.45 55.20 22.55 3.96 80.56 57.56 50.69 68.09 21.32 70.54 81.65 60.49 64.02 96.06 58.76 80.72 16.78 36.97 92.12 36.20 87.79 11.20 28.68 4.24 5.65 60.98 67.18 31.39 16.65 73.66 42.35 11.13 7.34 73.85 97.44 38.77 15.35 52.66 27.80 22.22 35.91 15.80 96.91 78.75 29.71 43.38 4.37 12.48 1.93 0.83 44.60 98.27 -44.60 41.09 19.43 40.27 2.42 51.82 37.66 95.88 25.75 51.88 79.35 55.52 92.61 40.76 88.55 3.60 31.86 23.40 16.94 14.90 97.17 1.66 10.43 59.50 90.30 27.87 77.15 54.76 29.98 38.72 22.77 56.43 72.87 50.49 30.68 7.71 48.39 80.66 20.87 41.61 90.69 79.49 17.79 43.16 31.16 81.68 36.89 50.00 83.32 5.09 77.11 10.78 14.67 41.02 35.45 53.31 0.43 99.74 72.50 60.70 49.91 17.98 14.51 65.90 70.87 86.13 95.24 59.50 7.82 96.09 56.03 66.05 30.70 21.22 29.70 17.87 19.38 99.85 35.34 71.80 18.42 41.56 8.47 39.00 23.67 55.65 84.62 97.46 39.52 80.94 23.40 21.92 64.08 50.59 9.34 28.81 6.65 48.75 78.21 19.36 -42.87 39.37 7.66 57.68 35.97 82.39 19.40 0.34 55.01 1.24 32.91 38.10 92.16 85.49 4.85 14.92 36.80 54.78 93.96 88.50 69.32 50.85 67.64 27.89 2.85 73.86 69.95 38.74 91.21 38.32 14.11 80.36 69.74 25.13 8.77 29.65 92.16 63.75 81.98 3.97 66.56 90.94 46.71 31.63 68.10 85.45 53.47 46.20 14.55 6.19 95.13 36.18 4.67 7.40 24.79 17.40 57.26 57.12 17.15 18.63 84.94 84.07 32.68 38.13 73.04 86.04 26.41 11.83 83.24 3.44 88.02 53.94 34.28 96.15 37.79 54.28 33.91 65.91 26.41 31.51 63.98 3.50 53.01 12.62 65.01 71.16 79.76 35.25 71.60 12.69 7.65 43.94 20.13 8.17 52.94 34.54 41.26 27.32 96.06 34.09 -71.08 57.62 94.81 76.46 1.27 48.05 4.83 86.83 46.40 35.86 81.07 37.13 2.24 0.14 23.21 14.70 42.98 19.48 20.08 59.07 48.37 62.31 14.40 1.14 94.11 57.75 62.12 15.23 91.12 68.87 44.76 59.95 78.84 52.72 23.66 72.28 41.99 50.31 28.01 2.98 11.86 42.22 53.51 37.46 32.21 93.43 66.09 37.65 87.49 39.12 79.50 53.04 14.14 17.10 42.65 90.71 17.76 61.87 14.78 61.68 16.26 84.01 96.38 36.23 54.15 71.59 93.92 55.76 24.43 50.80 26.72 66.82 17.93 33.44 54.81 96.95 82.84 31.47 53.97 91.65 74.44 2.24 7.86 17.07 2.95 58.15 77.61 70.41 83.67 3.23 44.24 99.18 81.56 17.76 13.00 37.32 23.36 35.67 74.11 38.40 -1.96 6.06 57.40 1.04 50.85 32.20 60.18 64.35 0.70 85.74 66.07 71.40 45.96 8.79 77.00 22.83 95.93 53.64 87.84 64.05 9.08 84.00 17.45 67.27 17.45 48.34 96.25 56.54 48.69 32.39 54.20 76.86 50.31 16.35 76.01 51.99 11.86 94.23 75.21 23.67 40.30 90.77 75.44 66.61 28.83 48.28 43.32 29.66 82.24 8.18 84.12 29.33 45.39 10.41 2.14 22.01 34.41 63.47 31.81 61.52 84.97 48.88 49.76 54.94 77.53 43.89 86.90 67.77 93.81 96.56 19.69 0.25 42.22 51.57 34.87 29.59 96.70 53.73 80.55 20.04 40.28 35.91 18.20 91.20 36.72 24.44 0.41 65.35 58.46 93.46 84.37 44.63 45.36 40.59 74.79 12.13 89.66 2.79 31.05 87.24 -56.50 26.16 17.41 92.88 63.36 27.06 61.45 4.21 69.20 46.66 67.36 83.12 57.58 31.39 91.92 96.33 26.97 18.96 66.26 4.26 26.52 20.46 19.68 96.32 16.31 94.47 2.19 11.55 90.09 34.93 72.24 41.80 20.32 70.54 50.47 61.91 0.54 93.86 22.60 56.18 86.97 33.43 55.61 95.41 2.76 20.81 38.23 87.42 30.31 69.24 87.49 74.20 72.79 53.46 46.47 62.16 78.21 63.39 19.91 54.70 84.66 38.30 5.92 93.72 1.19 85.32 64.81 91.84 62.80 86.00 68.29 7.58 27.25 20.85 51.01 51.62 15.65 5.69 31.44 22.45 33.21 57.03 36.40 78.98 8.20 25.90 31.60 64.65 14.80 71.55 30.36 36.02 58.80 85.26 84.24 10.32 46.06 36.99 36.00 79.83 -93.48 7.68 54.45 79.13 36.04 76.58 69.04 80.25 17.58 89.78 95.89 67.03 34.72 66.99 71.28 61.35 26.72 89.24 58.49 84.02 88.87 5.90 9.90 0.30 79.08 79.26 41.77 15.84 28.64 59.46 99.79 12.34 77.18 0.23 31.58 21.55 8.95 23.79 3.53 9.84 84.58 22.75 4.74 90.95 83.00 60.80 5.40 64.33 99.86 19.85 51.36 28.29 84.00 87.70 51.30 33.16 76.12 23.24 74.00 1.05 32.38 65.26 10.80 4.69 79.09 97.19 64.50 84.12 33.80 5.20 15.94 15.77 17.61 16.39 83.70 23.36 85.77 62.78 66.43 70.67 89.77 35.81 62.56 60.66 85.64 41.15 33.02 3.05 16.92 7.13 27.77 71.00 21.94 27.94 66.50 52.89 22.74 88.66 3.45 45.10 -8.43 93.63 62.97 11.80 64.52 54.42 46.23 87.96 61.50 94.98 60.75 96.21 77.37 67.84 40.35 15.58 31.56 8.15 1.18 32.52 38.79 64.16 81.57 96.76 16.77 81.33 53.66 29.93 47.53 31.74 51.67 36.64 50.65 33.11 2.24 69.38 55.90 91.89 86.71 23.67 52.64 49.39 27.05 11.15 25.80 48.11 33.83 57.94 9.90 87.24 47.97 50.87 36.41 13.35 87.00 16.96 27.77 97.07 95.24 47.43 38.12 68.40 11.53 32.51 63.24 15.79 46.03 98.54 6.62 85.88 50.85 82.17 30.35 12.68 92.99 43.53 49.09 37.61 73.97 78.27 3.78 87.45 80.58 80.72 6.18 0.88 89.62 28.12 6.19 43.44 74.23 16.45 31.61 29.91 67.39 47.34 63.84 51.97 65.87 62.53 -97.79 35.02 69.47 75.42 45.85 53.68 86.54 17.48 27.83 49.85 28.91 54.63 38.79 12.69 52.63 33.72 8.95 22.20 49.60 95.97 31.20 54.97 36.81 33.68 32.49 73.12 67.18 40.14 31.84 51.00 34.29 34.53 10.68 56.69 86.53 28.31 56.40 53.59 36.98 78.24 83.82 99.93 44.75 10.21 48.11 78.80 24.23 5.26 13.36 45.16 67.40 95.52 20.96 32.25 38.76 4.69 17.65 93.09 70.92 93.30 98.17 67.49 31.94 78.77 4.77 61.45 40.35 25.45 68.11 86.24 74.28 83.07 0.47 15.13 83.12 82.11 54.02 59.47 32.15 81.86 51.83 83.89 59.58 0.71 66.33 17.51 72.79 19.47 21.09 89.25 1.84 35.25 71.79 15.16 31.92 1.57 71.09 10.68 94.75 94.63 -48.50 61.79 95.22 98.15 45.80 96.14 65.65 6.98 31.79 39.57 69.58 29.84 4.52 25.54 41.86 76.15 56.13 74.92 93.53 99.60 3.46 2.83 25.76 60.71 2.19 87.97 90.23 5.42 42.83 93.80 97.00 55.87 6.38 1.55 28.10 23.57 94.34 23.09 0.23 1.97 2.05 95.15 42.91 18.89 9.27 57.27 41.44 91.07 57.01 1.04 28.65 60.05 47.95 60.87 73.66 96.03 89.67 32.74 18.44 64.16 95.38 38.51 8.38 23.76 0.04 3.46 43.34 63.20 59.62 49.92 47.56 12.52 39.41 46.38 33.06 46.53 40.79 66.74 5.50 65.73 10.67 83.14 20.25 65.43 51.27 40.97 7.21 57.70 99.76 44.50 38.90 11.82 11.05 87.62 11.52 40.55 12.49 23.37 98.76 78.61 -54.40 14.77 89.13 66.45 40.87 32.37 5.38 78.72 49.45 78.11 45.73 67.94 13.79 41.36 93.34 80.06 24.87 88.38 32.43 63.42 69.21 60.83 30.87 71.55 97.21 10.02 62.36 18.26 17.99 18.58 6.46 72.16 64.44 37.89 44.99 37.62 47.55 80.09 44.37 31.96 47.66 56.99 55.36 58.02 16.53 1.75 74.97 77.42 37.93 0.72 44.04 80.77 89.48 57.97 63.45 82.25 2.93 52.56 64.84 49.45 83.51 83.97 77.52 11.07 10.06 35.07 90.21 19.61 81.73 85.57 41.87 60.36 96.11 99.77 21.44 49.79 80.88 78.42 29.90 80.51 86.38 32.40 55.93 49.29 72.63 68.70 18.87 75.93 56.42 52.21 54.87 30.09 22.28 21.31 81.56 43.27 97.61 60.95 62.76 38.93 -60.61 80.70 52.30 85.44 97.41 60.51 87.46 91.53 55.47 14.44 1.77 1.26 17.00 22.97 87.71 98.37 54.38 13.44 73.27 50.87 95.27 38.95 36.67 10.36 13.58 16.52 18.37 8.01 32.88 4.62 78.91 41.19 70.87 41.45 14.83 53.74 86.07 10.05 72.55 71.08 14.59 9.33 90.72 23.43 81.60 43.56 86.68 57.40 11.32 25.00 59.64 88.79 18.03 38.29 2.94 40.81 3.70 71.74 0.91 67.34 64.71 69.92 29.58 56.19 77.25 0.34 24.78 25.85 49.93 85.69 98.89 82.84 80.80 38.79 95.56 60.98 15.91 14.68 29.32 59.90 3.37 49.12 52.18 28.47 41.97 80.99 16.15 29.96 79.11 8.42 60.75 79.43 91.14 46.38 23.37 16.50 10.72 75.16 50.50 70.01 -55.62 15.98 29.96 86.97 99.15 29.03 28.48 17.77 76.65 53.33 55.05 98.56 66.08 16.13 10.26 80.44 41.39 23.99 91.23 95.46 22.51 2.84 27.10 30.42 74.05 56.85 71.20 19.67 65.04 74.03 65.82 94.67 96.99 63.30 13.98 53.25 56.84 78.23 7.32 7.09 69.55 12.48 14.57 95.32 67.41 90.65 54.16 11.26 86.38 56.04 13.47 59.28 49.72 18.05 9.89 55.08 41.70 74.22 82.75 6.22 42.69 85.15 11.18 15.97 41.78 3.88 3.85 19.22 52.60 33.75 26.50 85.77 52.51 13.46 76.80 9.11 0.56 7.02 58.83 12.41 26.51 76.95 70.33 92.68 52.22 87.37 72.79 44.11 5.50 41.16 75.30 40.00 87.08 53.91 19.64 58.80 40.15 55.83 16.65 51.52 -2.06 28.57 12.69 38.45 43.94 18.96 43.06 94.77 64.12 60.37 31.04 81.74 44.96 7.93 15.28 3.52 50.56 54.12 64.54 18.40 53.31 67.37 82.39 92.73 17.43 66.86 78.30 11.27 87.72 41.77 67.45 37.75 88.19 86.35 91.66 2.91 68.85 17.45 12.55 73.21 23.61 52.79 93.77 33.79 11.84 50.49 22.35 20.30 20.84 42.62 88.12 3.12 67.11 0.09 69.14 50.55 32.54 16.52 44.12 29.39 75.19 65.61 66.90 4.19 39.26 80.02 93.22 27.97 65.58 71.65 96.05 49.89 39.40 85.34 94.07 4.43 89.82 88.26 67.26 99.12 35.57 94.53 18.70 68.84 0.47 78.97 98.25 0.62 9.94 58.93 47.97 14.12 89.98 58.29 13.54 46.50 60.18 83.94 33.84 29.84 -36.01 24.82 1.72 6.56 44.13 85.79 15.11 42.53 68.43 85.49 85.29 79.13 69.41 69.56 21.13 42.20 72.59 76.39 39.59 3.77 40.89 26.45 14.83 84.39 70.56 17.50 61.05 98.32 29.45 87.15 80.70 1.62 81.96 20.15 86.60 91.35 4.73 57.47 91.21 37.47 35.97 63.10 37.95 21.50 31.98 55.34 30.40 76.74 11.15 46.51 18.48 74.45 94.39 52.90 46.19 31.06 83.52 58.94 29.40 53.24 42.09 81.99 23.66 19.89 41.98 27.79 96.60 1.39 64.23 64.35 66.54 56.72 94.17 72.35 86.49 15.13 35.28 68.49 91.89 54.32 42.39 13.71 41.54 22.79 65.73 87.11 31.49 42.84 19.68 26.17 24.94 46.88 30.14 75.57 60.33 88.63 32.74 42.74 63.18 12.89 -88.71 97.71 58.19 94.79 7.95 18.14 31.11 68.29 45.87 65.73 7.49 71.60 9.62 17.75 37.96 56.43 95.50 8.96 13.04 81.15 85.55 53.34 3.58 37.26 69.62 0.57 14.14 58.20 53.46 7.14 76.29 2.77 50.03 66.32 57.64 93.74 49.39 90.38 96.24 64.68 52.44 65.97 66.19 80.06 42.63 19.56 21.15 99.65 21.66 29.95 28.64 29.90 74.40 95.35 91.80 68.11 36.11 21.52 19.95 93.38 45.43 11.29 45.25 68.68 1.63 37.88 18.65 62.48 47.56 0.42 55.07 68.78 59.85 29.53 63.27 36.27 25.20 86.13 49.51 44.36 26.71 49.28 31.34 73.30 27.98 79.25 82.51 75.52 36.15 66.87 30.20 87.89 39.35 77.17 16.35 90.40 41.62 4.78 21.57 53.50 -16.62 97.52 96.47 70.64 8.53 17.52 84.29 13.60 62.19 39.88 75.86 76.73 27.93 14.37 54.65 56.57 4.20 32.75 12.46 33.97 11.66 92.54 73.92 17.90 41.18 51.40 61.40 80.65 19.67 22.24 52.15 91.15 38.59 53.87 46.20 80.10 98.20 93.89 23.96 52.79 25.85 70.78 81.66 5.18 87.50 20.41 16.53 96.00 8.19 91.60 33.51 10.36 87.19 73.31 18.52 30.27 60.85 90.64 23.35 76.91 77.58 95.40 64.96 95.94 89.06 63.60 99.28 11.69 15.00 81.22 39.95 29.62 63.56 1.49 28.57 66.26 64.88 35.85 50.29 24.73 52.71 49.00 84.67 33.88 45.72 16.61 71.62 58.03 60.09 35.76 86.14 64.61 16.16 49.72 85.47 40.51 43.11 53.06 65.97 77.29 -46.39 54.36 22.39 41.06 79.73 99.69 74.63 89.32 30.31 47.52 79.28 85.79 85.07 74.62 28.39 46.32 67.71 18.81 10.87 7.44 29.89 56.56 91.22 3.44 64.54 39.73 17.43 78.56 97.56 78.27 15.89 95.54 29.66 7.47 23.04 82.40 90.38 60.76 80.23 87.81 34.83 3.23 76.80 52.35 21.13 20.62 90.80 72.95 9.20 0.83 91.95 84.07 73.27 11.60 36.18 24.57 41.27 57.18 81.81 47.82 83.44 53.10 85.84 92.37 39.82 47.47 79.38 97.80 1.30 13.69 65.76 23.94 4.13 65.87 3.25 62.23 24.70 22.47 42.41 38.33 23.46 86.51 50.18 17.32 53.84 1.89 48.25 24.98 44.91 28.37 17.13 86.54 13.80 2.77 30.46 41.82 42.72 86.28 9.96 97.72 -80.19 58.97 54.03 48.51 91.07 33.32 77.06 64.17 10.60 26.07 29.22 64.32 1.79 27.97 40.41 56.27 32.66 26.66 65.53 6.48 56.70 8.27 18.61 90.41 26.60 4.25 49.11 96.36 97.14 67.65 18.63 22.77 37.05 77.50 55.31 11.53 82.34 58.38 81.13 81.77 40.02 85.28 79.12 66.72 78.88 52.76 84.37 5.93 72.09 20.63 1.79 9.04 17.03 68.21 48.50 48.61 94.82 81.86 90.54 80.95 52.71 88.63 23.91 19.79 42.74 48.93 79.01 62.17 64.82 56.61 37.97 24.89 76.84 56.63 98.63 30.51 45.82 69.01 61.35 41.07 30.41 6.22 15.20 3.51 23.66 61.60 80.48 40.59 78.39 98.32 62.10 74.97 3.47 46.02 93.22 82.96 28.50 4.28 19.84 93.78 -21.51 28.86 40.19 10.71 0.17 31.28 64.83 74.45 33.26 45.80 18.26 89.55 44.89 86.01 95.36 73.92 6.87 25.25 55.71 55.44 1.69 31.71 4.51 2.79 50.18 96.52 91.14 13.81 28.64 73.04 77.72 42.63 95.03 53.97 67.76 81.38 89.78 43.19 18.23 53.06 99.58 6.36 51.03 35.83 55.18 49.46 91.67 1.48 63.02 81.87 29.79 4.10 52.30 85.57 28.57 74.56 91.09 22.85 38.50 27.09 52.11 27.68 99.94 73.49 89.70 75.69 30.90 43.65 23.35 89.37 6.33 8.52 98.40 0.78 21.45 38.13 68.77 42.62 18.47 58.44 42.47 48.65 86.68 35.81 51.62 72.70 83.64 94.54 40.33 82.19 9.95 17.77 26.66 25.92 29.15 17.18 85.44 69.76 81.39 71.18 -32.10 83.95 50.22 15.25 36.13 14.84 61.14 25.25 72.01 95.56 32.05 34.24 4.36 27.42 28.87 55.99 7.43 36.84 40.90 25.72 68.90 68.41 46.65 67.95 81.05 22.62 90.21 93.80 59.26 52.93 91.71 45.23 87.94 38.05 98.67 98.33 50.67 79.03 20.93 17.70 16.62 55.50 45.52 42.72 10.35 99.48 33.24 7.96 93.28 11.38 32.53 99.62 39.44 67.62 10.03 65.94 85.68 30.95 34.90 10.79 43.06 13.12 75.34 52.69 62.04 12.01 61.86 32.60 11.32 23.99 3.81 51.90 33.69 69.21 91.74 83.86 61.92 45.46 13.44 24.49 74.91 99.71 64.75 28.90 24.58 70.26 52.63 89.17 93.69 63.26 68.55 43.70 54.28 65.72 14.72 98.46 32.57 73.44 48.36 12.08 -9.55 91.76 13.83 90.22 8.72 40.45 91.69 55.23 72.77 60.54 54.10 13.74 82.21 33.70 50.09 63.71 39.46 23.61 5.99 9.80 53.75 33.02 16.66 75.52 35.96 27.27 13.97 27.28 30.85 16.54 34.09 27.55 23.17 99.39 28.44 48.09 74.93 98.70 92.82 22.96 15.72 54.48 73.00 58.01 10.34 81.45 95.58 22.80 44.94 42.31 56.26 38.57 56.32 62.71 2.61 4.14 2.24 54.90 45.87 90.52 28.93 50.28 42.71 38.75 44.56 17.04 72.77 16.15 95.36 14.09 86.39 86.26 42.46 31.63 25.79 89.86 62.38 31.19 52.33 27.20 58.07 36.89 9.72 0.99 36.90 29.57 26.37 44.64 36.99 22.18 6.01 5.41 31.65 10.97 42.47 11.33 38.06 57.54 4.59 83.15 -86.14 81.06 4.37 54.39 10.89 24.09 94.64 3.40 68.43 73.79 98.75 48.46 86.68 12.73 0.27 77.87 13.35 21.76 1.84 87.41 81.78 90.46 27.46 34.72 61.77 62.91 53.76 58.47 21.77 21.57 44.52 43.07 29.77 51.26 25.35 56.23 81.20 68.30 6.86 36.64 19.78 30.03 78.75 29.92 67.76 57.90 82.33 47.49 71.36 32.54 52.95 70.20 73.63 1.42 82.45 42.65 66.42 48.77 61.31 49.87 26.46 26.01 45.91 80.93 62.21 56.43 46.56 8.86 5.66 38.36 79.47 73.67 92.90 75.43 97.08 49.28 20.61 96.89 37.42 38.76 40.37 26.45 45.84 79.13 52.13 18.27 98.74 76.65 42.70 3.17 0.89 46.33 23.65 28.57 51.95 84.01 80.52 83.37 63.98 93.71 -13.24 6.04 1.16 58.48 74.48 72.35 55.69 53.36 60.59 20.64 82.38 33.98 57.50 41.82 80.10 23.69 85.33 76.82 73.11 58.00 30.46 24.46 26.45 85.98 22.71 19.11 26.42 94.39 13.93 89.01 10.77 69.56 5.96 78.37 27.77 79.89 24.82 6.97 69.07 6.60 83.62 94.96 89.73 11.55 40.71 12.13 60.29 72.58 22.73 14.41 90.75 6.25 58.02 38.06 70.03 13.69 16.24 52.52 3.22 53.83 32.45 92.21 49.51 56.94 90.13 37.10 72.81 77.40 92.93 3.71 3.84 86.85 41.55 77.66 82.83 99.52 93.21 64.22 94.64 16.06 77.02 74.32 77.29 81.01 77.72 26.81 25.40 61.39 21.36 95.32 94.64 78.86 46.52 92.04 95.89 24.37 40.40 3.82 90.45 81.44 -15.21 14.00 70.25 58.73 57.88 65.77 41.71 15.82 53.95 27.45 93.28 85.90 53.55 42.64 87.35 1.46 52.67 29.76 40.13 60.80 28.25 32.58 97.00 88.63 10.38 32.96 74.70 35.39 37.02 8.41 9.57 80.27 25.22 78.27 40.32 90.79 36.19 38.98 51.28 55.92 72.90 71.41 3.29 54.20 65.77 3.17 93.24 10.08 25.62 93.92 33.26 48.16 85.06 48.80 2.79 30.72 27.05 13.91 13.45 89.86 77.39 73.18 93.16 80.47 94.05 12.09 61.13 22.21 18.03 82.68 86.52 93.43 73.17 10.92 84.41 69.76 38.55 17.70 21.45 64.65 37.82 55.80 60.43 60.31 73.45 31.16 48.97 41.60 45.65 48.14 37.12 5.02 1.59 12.97 14.84 33.48 9.54 47.75 59.42 97.92 -60.58 30.97 49.02 19.39 35.89 99.55 4.65 16.99 22.22 57.75 2.17 63.67 57.68 50.57 86.71 44.30 26.95 97.68 90.97 81.11 78.78 58.01 66.49 94.79 37.53 14.94 91.18 32.10 61.95 0.70 90.39 22.32 1.36 77.82 86.15 0.44 69.23 66.75 47.59 3.01 33.44 30.86 61.63 68.01 50.20 32.95 93.99 48.47 39.15 71.96 32.01 90.17 35.37 50.06 45.99 1.70 31.82 67.44 63.28 84.18 79.60 2.01 12.27 93.25 54.76 48.46 67.21 40.32 58.37 48.38 53.49 79.26 61.14 22.78 29.25 66.62 58.72 2.33 94.62 98.25 39.18 97.17 57.44 98.33 14.82 5.62 31.35 86.50 38.91 6.53 44.66 53.22 56.21 87.94 30.59 99.31 67.98 65.68 52.96 45.63 -72.86 98.55 76.16 66.61 73.40 83.55 49.11 74.25 7.68 3.13 51.15 26.82 72.89 86.80 87.66 59.20 6.25 9.57 27.53 50.72 84.64 57.03 14.77 75.01 42.54 12.86 5.79 28.36 96.39 11.19 83.53 7.85 55.71 52.57 57.77 48.66 62.55 62.47 77.24 29.77 75.63 22.13 89.10 91.89 37.89 93.73 60.94 70.67 39.60 15.99 70.93 98.81 98.86 34.63 52.96 28.51 99.22 61.77 40.14 76.40 2.84 77.80 45.41 61.66 50.31 71.67 3.36 46.51 23.65 1.11 14.72 42.18 12.23 9.85 93.39 88.67 15.67 17.96 31.89 0.24 26.15 15.50 14.87 57.92 41.10 5.22 84.62 31.63 25.40 13.58 8.89 53.84 30.88 84.89 77.27 5.44 37.13 23.90 46.37 30.99 -84.97 8.96 90.87 70.95 5.36 79.60 64.73 81.25 3.22 29.23 58.32 50.84 60.29 94.62 10.51 22.73 30.72 43.01 77.10 58.47 89.46 81.00 91.38 71.98 72.86 95.30 91.25 8.01 69.94 32.99 61.75 96.61 41.14 8.93 79.89 26.79 23.25 93.42 11.75 1.06 95.47 42.87 66.88 94.67 34.16 26.22 65.56 17.29 40.71 64.14 22.06 85.11 13.73 36.54 44.06 17.06 66.92 52.94 56.27 27.51 56.41 38.01 86.23 25.65 21.47 39.98 65.37 46.52 39.55 27.44 66.22 4.16 81.84 48.59 81.78 49.17 12.23 50.28 12.40 23.79 80.03 31.60 91.04 92.29 54.22 10.49 2.04 85.15 5.66 93.44 29.71 93.97 55.06 68.20 79.46 79.26 31.66 80.56 7.04 75.97 -5.65 49.61 52.22 67.80 28.05 32.69 22.04 73.82 49.72 82.05 18.57 39.58 41.92 44.94 89.02 95.94 95.07 63.25 69.10 85.29 16.96 80.95 94.40 39.06 7.12 90.21 78.27 1.90 18.16 26.28 52.81 20.61 71.67 51.36 74.66 39.66 8.42 84.46 99.41 37.46 18.17 43.53 26.33 17.38 41.58 75.95 42.40 46.02 25.05 97.06 84.76 0.93 15.83 67.97 35.18 57.57 58.78 17.29 91.67 23.91 44.46 94.95 96.44 34.93 26.59 66.99 56.74 94.24 70.98 58.73 57.12 39.39 19.07 90.24 59.92 9.34 68.94 90.31 96.82 59.31 50.61 3.93 44.38 8.52 58.22 44.76 31.83 59.62 65.20 66.38 73.95 53.94 17.18 34.24 51.28 44.98 22.47 48.50 64.34 31.54 -31.57 31.27 41.22 73.05 14.95 67.00 26.71 26.88 41.82 97.55 27.49 27.52 77.79 94.36 68.54 62.57 43.54 17.21 4.78 71.02 58.80 53.76 51.91 82.69 2.88 89.38 68.96 44.80 50.94 24.98 22.61 42.57 63.77 14.06 53.20 39.50 62.63 52.99 70.36 58.60 78.59 89.80 28.55 99.23 52.20 75.76 26.85 33.39 26.02 38.79 36.90 87.89 38.58 4.72 71.51 89.95 98.60 72.06 0.26 84.98 11.88 74.51 5.93 11.34 50.00 39.06 62.58 71.98 84.04 66.19 34.94 28.15 91.75 86.90 12.42 75.51 74.95 89.72 14.08 64.55 18.42 71.55 3.11 24.78 16.27 17.94 72.25 55.19 31.09 94.23 0.54 51.91 49.66 86.72 28.64 65.81 27.45 86.92 18.53 21.02 -46.24 97.06 13.19 65.92 95.81 15.94 28.29 68.75 48.91 10.29 40.88 76.77 94.48 8.95 30.21 8.55 50.72 7.54 29.90 71.08 23.19 85.83 85.46 40.82 82.21 35.90 93.62 24.46 14.26 89.99 93.94 61.40 38.06 33.41 28.66 91.43 50.78 70.49 62.63 36.03 12.61 23.29 3.34 41.91 87.45 44.62 5.53 1.51 1.68 44.61 52.72 14.36 0.18 20.19 31.77 17.27 13.53 22.89 48.55 67.74 56.30 86.54 43.50 98.26 54.84 35.93 42.10 85.52 37.35 82.84 70.56 10.94 34.33 86.67 74.74 45.13 31.92 57.68 42.47 89.77 37.24 6.89 26.44 64.45 74.45 23.22 51.86 38.52 73.97 53.95 79.27 26.28 65.26 48.52 80.76 20.81 71.38 23.60 15.91 71.34 -71.93 41.83 74.58 47.69 40.57 28.06 70.98 70.70 14.14 66.68 9.00 61.58 50.11 79.12 61.37 12.23 99.94 90.69 12.70 29.96 71.43 94.54 99.04 15.83 60.42 24.22 68.75 49.68 62.77 11.79 48.82 32.45 54.65 91.63 84.61 42.54 79.34 70.91 67.71 18.06 57.37 42.40 45.30 88.98 26.38 21.77 71.44 5.57 40.75 16.21 83.96 12.98 67.88 90.57 63.65 78.60 69.70 39.95 52.79 88.27 54.10 1.01 75.34 34.43 16.77 57.17 33.24 83.25 46.07 15.32 83.76 42.92 68.64 87.41 70.47 36.20 94.52 57.07 60.39 12.51 7.55 2.75 56.85 17.83 6.00 55.03 65.44 42.10 58.44 87.71 70.76 58.37 14.08 2.19 6.35 30.99 71.03 21.79 37.12 65.62 -61.16 58.08 66.80 82.47 32.62 73.51 1.14 38.63 47.85 99.04 10.86 94.01 87.31 40.62 48.64 50.02 78.89 39.65 69.85 78.31 17.66 11.92 56.38 48.98 54.24 42.22 62.15 13.80 45.76 74.67 8.36 32.93 89.79 85.52 36.07 27.64 0.99 58.52 31.14 39.14 83.95 25.07 69.16 86.14 23.90 37.62 98.07 41.07 52.34 71.08 97.04 17.67 86.25 80.20 65.80 25.21 68.91 20.79 73.04 72.51 72.41 12.48 32.01 73.75 61.56 67.53 49.81 2.28 10.88 37.69 8.42 59.82 18.00 87.39 40.95 76.16 34.78 6.39 43.09 15.04 54.36 9.41 66.25 27.90 55.16 39.03 99.95 6.56 16.75 23.96 64.90 53.54 69.70 26.18 63.47 27.85 53.19 13.86 2.25 32.84 -52.36 20.18 14.94 74.04 94.52 73.36 55.00 48.01 87.62 58.72 4.64 78.99 25.71 20.80 6.53 69.15 60.88 16.73 67.77 56.10 30.47 10.43 9.33 63.52 71.38 95.89 9.14 69.28 62.48 46.49 97.26 73.05 0.23 54.07 97.46 33.50 38.71 5.98 62.91 50.76 75.50 27.11 50.11 26.85 35.76 45.39 76.89 99.25 60.86 83.81 6.62 26.68 50.20 68.73 8.07 95.43 70.94 60.92 96.66 26.96 10.79 28.75 74.13 82.50 22.83 13.22 82.51 16.63 82.69 51.97 28.24 0.48 50.71 86.34 42.30 81.18 0.73 8.42 7.44 95.27 85.51 17.30 62.15 36.71 28.42 90.39 19.61 86.33 25.79 73.73 46.36 92.55 12.47 13.48 86.09 30.69 81.80 13.73 77.62 4.04 -72.29 96.45 61.32 82.45 72.36 28.10 31.01 75.34 13.63 4.14 13.23 54.34 36.97 88.11 91.89 72.86 24.03 93.25 18.75 25.21 59.28 3.28 96.01 0.96 6.12 69.38 67.17 96.92 73.86 0.21 41.87 65.68 53.85 94.82 8.33 59.40 14.80 58.46 9.69 43.00 4.96 13.83 38.54 4.61 96.79 1.96 4.32 47.44 8.30 37.18 70.50 78.20 62.49 15.35 89.32 11.34 14.93 77.68 69.08 90.78 66.66 17.73 27.57 27.61 65.98 30.07 59.20 48.25 9.00 14.64 44.87 86.35 54.00 6.91 20.54 27.75 64.18 77.77 66.11 47.81 44.02 34.16 95.40 19.18 64.46 80.92 84.81 29.62 91.96 28.06 2.93 58.64 88.82 57.95 23.56 54.66 63.63 58.45 10.23 58.29 -10.80 68.08 9.83 97.28 90.32 45.97 46.31 85.22 21.67 20.42 58.52 57.86 25.18 57.30 21.01 88.51 86.23 41.74 41.08 34.38 88.70 29.08 11.89 41.65 64.88 14.54 8.65 10.70 81.06 0.02 72.87 68.64 74.00 71.71 71.67 2.11 19.01 11.81 51.44 47.74 8.14 33.15 5.25 67.91 3.30 94.99 86.25 14.20 35.07 68.62 77.27 73.74 72.69 88.33 38.20 87.18 83.72 53.90 61.80 6.64 4.84 49.45 52.86 65.22 95.49 23.38 19.52 33.56 56.89 81.18 18.80 65.87 86.12 97.68 63.75 87.39 83.89 38.09 42.89 3.49 52.49 76.43 79.08 54.79 5.34 15.63 96.75 67.85 3.07 64.08 36.16 68.48 50.21 95.16 79.90 75.21 18.73 1.89 52.29 15.51 -30.94 3.17 5.01 81.89 61.13 18.11 10.94 61.08 3.36 57.26 12.48 37.78 97.95 28.11 19.71 22.17 54.42 33.67 91.19 68.85 20.63 25.30 4.01 21.56 90.61 34.60 62.26 68.48 25.82 71.59 37.05 32.69 58.93 51.38 28.38 20.65 0.02 51.56 40.01 7.07 42.37 28.94 8.02 84.99 14.75 17.86 90.67 60.62 9.54 48.30 31.66 28.30 37.29 42.68 65.55 73.17 13.93 0.65 28.20 54.81 59.04 60.20 49.91 99.68 72.19 33.00 5.82 78.26 42.65 57.74 59.64 62.95 44.92 99.58 61.57 90.76 61.28 55.15 50.35 95.60 90.41 95.54 7.35 14.06 66.76 37.67 92.32 67.84 50.37 31.32 23.29 92.39 8.26 26.98 25.77 64.87 38.66 15.36 81.54 8.73 -49.78 23.53 35.17 75.84 73.12 4.83 44.31 89.23 13.88 80.09 88.68 40.01 31.06 69.24 42.14 54.04 8.37 83.23 77.56 83.15 89.36 32.99 42.28 28.33 18.93 50.79 44.25 60.38 92.73 41.79 71.45 88.06 13.31 1.44 39.48 49.63 90.48 52.06 87.16 3.65 97.82 54.60 44.76 1.61 23.20 54.23 49.20 52.47 31.83 98.45 75.01 6.91 67.79 33.05 13.16 58.24 10.26 21.14 17.69 44.70 67.91 63.00 92.41 42.70 67.40 3.20 36.82 95.20 4.00 97.65 3.95 52.28 26.54 19.86 4.68 84.70 25.07 57.64 87.53 88.26 51.14 33.86 26.03 53.30 83.52 78.25 40.16 32.92 52.40 89.01 20.93 93.50 97.58 80.09 96.17 29.07 49.39 38.87 3.17 26.81 -41.12 62.82 11.83 91.93 19.45 72.38 73.81 14.83 89.27 63.91 53.45 13.32 16.50 62.68 4.71 48.03 4.98 75.94 16.38 70.74 81.66 74.71 84.83 4.47 59.63 80.06 14.49 21.69 12.07 75.69 34.47 0.72 52.27 74.38 22.77 74.25 85.98 1.50 11.16 33.58 4.67 98.37 2.44 9.08 18.20 34.41 91.06 9.33 4.69 44.52 0.79 74.89 2.91 10.85 34.10 53.25 63.35 83.47 66.06 65.89 2.61 17.21 45.08 10.53 88.56 55.86 97.04 12.43 96.43 2.37 9.96 60.59 8.64 44.11 97.50 4.90 47.71 65.42 90.35 22.14 80.41 98.73 61.17 61.00 67.37 38.28 81.74 65.82 2.52 65.85 89.15 74.13 60.93 2.24 18.73 3.26 8.65 74.41 68.44 0.88 -93.93 62.38 5.10 75.00 91.56 94.76 37.59 91.90 36.40 27.57 79.06 67.96 59.94 77.58 68.66 16.97 47.40 89.31 70.97 78.76 66.05 6.12 77.37 86.93 16.53 91.60 38.63 21.21 84.28 98.51 15.12 59.90 91.69 11.60 45.54 88.14 63.49 33.35 82.84 62.23 66.97 57.27 60.58 27.56 77.37 77.50 36.75 3.83 54.13 40.29 38.98 21.82 20.45 34.72 41.38 2.62 90.00 19.27 43.54 5.12 14.03 39.08 2.32 56.75 98.71 85.90 17.18 25.13 34.41 30.28 68.90 97.77 48.28 98.92 70.98 88.32 3.04 75.46 7.17 26.13 54.81 88.25 8.15 20.26 47.19 39.57 36.07 44.47 80.38 64.11 53.07 9.27 77.69 47.48 44.58 76.76 19.40 24.81 12.42 11.83 -85.17 36.45 39.01 53.03 62.00 14.49 72.32 45.23 77.91 1.46 34.07 0.55 92.55 80.77 18.71 42.56 6.45 16.48 66.29 94.37 61.08 9.31 42.21 39.98 14.78 35.65 69.57 43.82 33.49 13.71 50.45 26.07 77.57 52.08 94.91 34.45 77.75 39.64 56.03 81.03 43.59 33.05 36.13 61.07 34.40 62.85 63.95 51.49 61.85 79.04 45.49 84.46 99.45 10.05 53.58 22.97 69.71 14.28 39.88 73.81 96.07 57.35 10.41 15.04 27.84 19.00 30.54 27.47 50.64 21.93 8.41 52.51 19.83 60.01 79.73 6.98 22.49 16.14 42.53 49.40 79.70 49.19 25.14 92.35 32.79 14.86 71.24 16.81 47.33 80.71 57.84 17.00 67.12 28.93 92.25 47.81 94.23 12.06 63.29 11.32 -50.83 62.92 65.35 9.19 83.38 75.18 23.43 98.59 9.21 78.79 45.83 19.34 11.08 5.23 91.01 46.05 35.33 0.41 96.89 75.43 34.03 52.94 56.99 25.30 48.50 35.57 19.34 77.93 88.16 9.66 20.12 95.62 63.88 61.92 21.77 29.43 0.68 53.35 98.55 21.18 99.46 17.94 87.48 53.15 97.40 9.48 16.81 78.32 72.64 91.00 38.94 45.85 31.80 8.69 46.66 49.26 60.59 67.81 94.10 87.28 31.15 38.71 96.43 83.07 57.97 5.66 1.13 47.29 3.31 85.98 30.23 57.48 54.20 94.56 28.99 47.76 48.06 81.83 7.71 76.12 8.53 22.96 18.52 56.81 48.86 55.76 21.94 68.03 82.52 63.06 64.61 92.46 30.73 80.63 31.31 86.89 87.49 62.97 32.37 54.96 -20.80 47.68 65.51 81.31 41.64 5.92 48.13 85.41 46.51 77.93 91.73 85.89 73.98 85.59 91.88 19.86 54.57 63.08 40.07 3.23 72.23 39.40 10.76 24.94 79.37 26.21 40.48 19.67 16.08 50.24 81.99 38.59 9.32 82.18 38.43 23.09 63.13 97.80 40.03 65.52 43.36 67.27 42.26 29.76 44.80 37.50 49.30 76.42 92.20 77.86 29.44 25.48 34.61 21.67 47.44 66.85 64.77 39.41 54.34 82.90 89.54 64.71 81.08 62.17 82.89 93.51 12.78 45.59 38.05 13.02 83.66 62.96 95.69 97.22 24.45 17.65 69.68 67.56 88.80 75.24 19.65 1.50 59.40 19.18 6.07 20.51 81.74 15.81 66.27 33.15 92.42 24.95 87.56 89.59 47.70 73.34 2.99 89.46 3.19 37.05 -1.40 11.03 74.17 19.95 40.15 10.23 66.81 45.62 72.98 95.43 27.80 21.31 12.81 57.44 34.96 35.06 75.17 58.33 65.43 63.41 59.62 52.97 6.78 7.91 39.70 91.49 13.19 48.59 96.29 66.31 89.84 14.41 84.47 82.17 26.03 36.44 39.05 10.00 67.01 89.47 32.26 50.60 98.03 87.97 26.08 20.09 25.95 22.89 60.92 27.33 65.90 33.70 92.30 76.07 72.13 30.01 22.50 72.77 56.92 53.14 82.56 91.37 99.75 1.82 34.95 70.67 74.23 21.81 61.91 7.17 0.53 54.57 17.12 57.96 19.61 27.14 58.16 86.35 7.82 9.85 34.05 27.01 96.08 92.06 34.11 2.13 51.29 93.08 68.84 27.38 34.82 5.60 45.35 57.87 36.15 33.85 61.04 81.62 96.78 34.11 -85.44 46.71 4.00 33.78 65.22 6.69 41.85 40.60 69.02 44.21 63.49 39.97 80.14 82.14 48.56 17.90 33.65 96.61 55.50 55.95 7.78 93.69 15.82 67.01 93.54 8.37 38.08 14.02 23.35 56.04 17.10 85.36 79.13 63.06 99.40 19.44 80.14 10.43 42.86 41.28 21.79 95.70 78.26 17.60 4.38 21.89 0.81 83.58 11.25 42.51 21.22 7.45 61.49 2.97 21.24 91.28 20.86 31.15 51.35 75.61 41.12 34.11 13.24 15.84 25.53 50.88 49.33 90.59 55.21 45.82 18.83 9.97 13.46 58.26 27.36 3.92 27.86 80.84 68.98 39.60 68.18 62.17 2.74 29.71 50.33 69.66 2.87 54.03 86.80 97.09 44.08 46.73 28.66 96.77 88.31 47.02 75.34 57.02 69.63 16.30 -56.94 92.36 30.47 38.21 17.89 73.16 27.19 77.96 39.72 46.76 66.10 31.29 35.22 96.60 93.89 23.68 55.28 11.67 78.67 23.37 45.17 47.63 22.51 83.33 12.50 56.11 14.12 4.73 27.05 54.51 78.27 24.45 82.83 23.55 76.22 80.64 61.13 99.44 6.66 42.41 5.33 60.94 82.16 15.83 91.08 84.24 84.08 12.75 80.21 65.76 85.95 97.96 73.19 31.67 46.14 60.38 38.17 64.95 98.80 88.05 56.98 90.44 50.63 52.66 78.61 27.04 33.11 1.50 68.53 24.84 44.33 32.38 63.89 40.35 57.65 65.32 44.95 25.39 79.88 60.04 88.06 90.24 18.63 79.85 90.34 72.62 80.09 62.49 94.04 88.75 92.22 49.94 65.34 25.45 36.16 58.47 66.94 40.65 0.22 30.07 -92.60 29.90 53.92 31.19 75.77 47.10 20.64 92.29 30.66 14.79 21.26 81.28 35.63 53.36 86.82 1.95 49.98 51.73 43.11 20.58 81.38 89.50 84.66 35.66 47.95 28.72 58.53 85.39 65.45 48.88 53.99 89.45 77.62 85.76 14.83 94.54 58.02 44.91 16.76 57.40 53.47 29.22 59.59 97.51 15.65 14.59 12.36 80.93 98.18 10.90 86.71 87.45 89.51 16.28 87.34 13.26 38.92 87.06 2.08 64.80 96.77 36.86 82.35 29.27 32.92 43.54 63.91 55.36 73.37 20.44 58.76 14.02 68.13 87.20 21.22 77.60 8.57 81.48 36.42 14.66 95.96 56.50 61.56 23.80 45.31 51.10 66.43 23.17 69.51 17.56 9.63 95.84 88.65 60.62 86.41 7.95 30.37 60.70 58.14 19.48 -22.43 85.95 43.59 56.78 34.02 76.65 24.83 58.57 51.42 19.37 42.32 65.82 29.61 69.52 27.13 93.43 31.17 45.80 78.12 81.73 84.22 94.79 33.16 31.30 75.41 44.47 41.35 47.88 90.75 76.03 13.50 15.13 87.07 44.10 80.16 39.72 46.81 14.79 52.12 65.23 45.02 39.52 95.06 7.32 19.62 49.66 66.84 52.03 6.78 99.21 38.12 88.26 74.91 28.10 23.54 20.28 62.23 33.34 39.33 93.73 47.58 92.71 1.21 1.70 78.27 30.27 48.20 6.64 59.67 43.65 25.33 48.04 57.13 31.99 35.71 70.46 3.75 53.50 65.87 26.46 70.63 29.52 80.12 76.06 86.77 56.15 22.88 2.76 68.85 2.52 19.95 88.30 75.67 28.27 49.72 35.59 57.11 43.28 94.76 47.60 -3.21 19.70 74.14 87.54 38.24 22.43 36.37 49.47 49.60 32.71 49.10 17.57 28.70 93.01 76.00 16.42 38.71 34.45 12.25 68.29 64.89 48.72 30.33 17.75 59.06 39.81 83.71 85.77 88.17 21.50 9.71 10.77 67.81 47.06 60.32 19.97 21.62 63.13 87.57 36.87 26.69 5.64 80.24 2.49 96.88 85.93 21.42 21.89 73.12 17.78 73.57 12.94 3.29 51.54 92.11 12.48 69.33 11.25 83.41 57.72 88.50 63.44 48.44 95.89 1.19 91.78 22.47 12.19 49.84 36.18 97.16 17.72 9.88 48.25 89.54 80.61 25.26 42.63 77.47 91.55 2.01 89.32 83.72 3.58 9.73 9.88 38.34 48.20 89.60 63.37 70.64 22.81 50.62 36.45 83.98 28.19 43.65 90.98 46.82 30.20 -96.97 19.15 28.95 2.04 95.90 23.04 71.81 65.54 9.54 81.19 42.13 12.45 73.21 35.30 66.01 63.07 5.19 34.50 41.92 6.30 82.05 71.26 52.44 77.21 7.80 32.96 94.82 69.11 21.93 51.35 11.47 43.77 50.21 0.79 73.22 10.06 26.46 34.81 10.87 90.13 12.33 69.35 36.11 50.96 85.09 8.92 18.46 3.50 68.28 45.05 26.46 81.38 15.86 60.76 57.37 19.77 17.32 51.58 97.37 54.42 84.79 54.36 24.67 80.29 72.67 48.06 26.09 50.26 39.55 83.67 15.70 23.94 83.83 72.82 11.25 61.22 47.49 29.71 19.47 51.59 99.15 91.31 65.54 29.80 7.88 23.02 99.01 61.20 50.32 57.64 74.71 96.50 34.50 50.09 89.52 49.56 32.43 73.27 86.96 83.35 -74.55 77.38 46.02 50.98 67.71 65.21 56.89 0.80 57.92 74.75 75.46 26.77 32.97 3.31 54.83 90.92 26.02 93.22 64.11 0.34 75.64 35.25 26.47 49.81 58.81 55.87 51.03 97.52 73.39 93.09 36.61 60.50 91.60 12.89 20.43 4.67 62.63 85.75 75.58 38.19 26.26 31.93 53.72 75.09 55.20 30.24 49.18 14.11 20.80 22.35 79.52 98.37 74.95 90.18 1.38 95.73 70.93 19.23 64.59 33.06 71.90 56.70 36.20 83.30 99.51 59.85 68.56 89.00 15.11 6.83 80.67 59.82 56.16 9.75 3.67 39.29 31.34 55.19 95.78 3.04 78.14 4.95 63.14 44.93 72.95 36.05 76.27 65.24 64.03 38.99 6.95 76.61 42.60 15.70 57.39 78.61 25.30 13.97 55.69 30.48 -16.72 20.09 38.13 71.94 87.37 53.11 99.85 90.14 9.17 0.29 14.70 54.22 84.60 45.09 98.78 0.03 48.03 0.93 29.87 31.38 75.67 91.33 81.60 90.60 32.44 32.46 75.37 49.61 84.44 4.05 17.58 78.21 38.67 9.13 83.16 34.72 35.01 97.03 93.83 32.16 12.92 4.29 15.70 64.67 77.43 93.53 67.22 41.58 76.23 38.93 22.21 39.93 82.03 43.37 40.47 47.61 47.74 93.39 87.56 54.43 69.22 86.28 67.77 26.60 65.24 2.79 81.27 8.65 11.90 20.72 32.58 67.90 3.15 88.03 74.91 86.22 92.75 67.86 9.22 58.00 36.91 58.22 10.59 31.76 57.32 72.68 86.26 61.31 22.13 2.09 5.39 27.07 14.91 67.65 57.57 43.19 39.23 9.00 54.64 7.96 -5.98 18.52 39.37 79.45 28.73 89.27 72.44 73.89 20.28 52.12 68.52 73.54 20.42 55.19 61.90 25.07 55.59 9.24 59.81 72.13 76.33 56.94 88.09 31.73 92.81 47.55 63.72 25.99 57.19 78.43 38.70 38.89 97.36 40.32 0.55 71.92 61.26 54.13 93.85 84.31 13.92 60.09 56.41 38.50 13.49 47.65 11.68 18.46 94.88 88.63 27.77 81.59 72.25 45.47 45.37 58.23 11.26 73.64 74.45 85.69 92.27 58.72 93.96 96.52 1.22 30.30 77.43 44.65 69.82 4.42 55.38 3.17 36.74 50.42 58.27 43.83 65.27 63.34 83.25 96.86 73.35 28.40 43.91 41.04 84.28 90.51 30.99 6.14 83.09 83.60 28.94 80.92 78.67 81.34 41.10 74.89 63.84 56.00 52.42 87.88 -71.56 11.40 30.17 29.19 62.31 68.52 94.57 4.68 59.97 35.95 17.50 84.61 49.65 78.93 55.29 41.46 17.90 15.35 72.98 99.18 29.72 7.82 70.48 87.02 69.90 68.89 87.22 98.64 60.98 34.20 3.71 28.28 66.25 72.15 4.55 34.26 74.65 25.09 71.64 85.52 24.59 85.93 65.64 72.64 32.55 69.05 35.56 5.72 61.10 95.29 97.37 31.82 52.47 60.73 3.29 4.51 96.23 48.65 11.78 51.67 4.40 41.43 78.04 92.76 80.37 45.76 93.89 0.51 1.30 22.42 92.67 0.57 87.05 88.89 70.39 34.39 81.75 97.23 60.34 17.08 66.66 26.00 54.76 53.77 52.27 19.40 52.70 31.53 47.10 38.08 44.09 10.73 89.49 70.18 26.32 20.72 79.08 95.33 72.91 95.32 -86.23 50.55 66.60 49.35 54.87 31.33 27.19 22.49 95.51 92.64 98.91 48.05 71.41 95.11 48.15 59.40 59.72 87.39 58.89 27.51 57.34 63.26 89.40 71.55 55.82 95.17 38.07 71.73 91.00 65.05 74.55 16.19 88.78 74.97 75.94 82.77 77.00 67.94 70.07 28.14 2.19 53.49 85.60 56.73 34.22 95.62 6.50 86.99 62.08 75.36 14.01 98.07 94.53 5.73 80.51 28.87 18.39 20.54 23.70 59.94 32.68 70.02 96.36 51.62 77.94 65.91 73.63 87.32 40.70 20.58 42.61 41.70 11.63 92.95 89.03 0.30 30.99 64.02 65.72 31.78 28.90 47.36 62.08 5.83 62.80 7.61 0.82 35.04 97.02 63.17 71.17 43.14 23.89 36.61 92.63 57.72 14.51 2.00 15.05 8.78 -61.74 13.50 77.01 42.01 41.08 15.72 69.47 47.52 51.28 22.19 74.08 91.50 54.48 17.88 54.89 97.62 87.49 47.84 35.74 23.47 46.21 78.67 73.57 94.60 76.56 9.53 67.34 99.57 7.77 43.71 10.22 2.68 92.89 39.31 0.93 38.30 61.14 7.20 21.68 95.52 75.96 24.98 53.74 21.92 97.36 47.99 19.86 95.41 45.43 8.40 53.08 2.33 46.58 61.73 69.93 32.93 60.14 70.27 46.97 40.05 80.46 34.23 3.00 65.90 90.49 70.57 85.73 22.93 29.77 69.78 80.81 3.99 88.60 72.51 74.37 68.09 66.37 27.71 20.17 55.16 3.40 78.22 82.96 85.51 56.92 80.94 40.91 54.38 14.33 94.01 89.06 35.70 6.51 39.56 18.78 69.80 23.81 46.69 83.05 80.57 -61.10 24.98 63.16 73.21 54.93 70.84 20.72 98.85 36.69 38.70 30.24 29.26 5.96 43.08 5.70 93.73 37.77 75.25 99.34 82.31 20.54 9.43 97.21 93.89 10.19 67.47 35.79 18.85 81.53 45.36 77.44 35.84 52.84 31.11 42.19 99.84 1.80 2.98 97.52 5.09 69.55 41.79 1.84 45.45 10.69 99.22 42.88 66.09 23.51 82.95 4.31 60.58 99.98 52.29 84.99 53.39 1.65 9.86 67.47 79.66 78.13 42.46 17.50 47.62 41.81 66.04 86.15 30.93 6.36 37.75 61.07 96.80 32.94 66.59 70.80 47.20 90.92 10.85 23.19 95.48 34.13 74.66 28.78 31.16 45.60 72.14 21.63 26.01 86.68 93.97 69.17 22.04 93.82 53.34 81.15 2.74 14.16 55.95 52.70 71.48 -40.35 15.38 68.10 54.44 44.29 36.96 45.17 97.28 34.99 35.06 52.07 39.04 54.39 79.75 76.14 35.81 12.05 55.88 64.47 47.34 62.59 10.75 17.71 14.68 11.78 74.41 55.08 38.54 76.95 96.08 5.40 93.23 42.77 35.83 12.31 50.46 80.56 33.26 84.04 50.63 91.85 89.89 89.74 83.61 7.85 13.70 19.52 98.08 27.19 16.64 83.33 30.92 50.52 26.33 49.27 71.88 27.00 73.40 55.18 94.72 10.86 58.43 38.98 14.37 81.31 79.29 18.71 34.08 94.13 80.02 20.78 22.23 55.87 41.59 20.50 6.90 32.04 74.13 36.11 63.83 6.23 24.68 86.65 0.47 78.50 32.54 12.61 79.98 75.33 27.90 18.43 8.12 66.90 30.16 55.33 68.70 35.07 94.91 44.99 95.96 -30.55 59.36 27.06 73.64 89.05 53.00 19.93 98.19 70.55 11.09 97.48 40.00 32.68 52.41 25.98 18.04 25.78 74.80 87.10 18.31 58.51 61.15 39.00 29.28 31.88 21.44 81.96 94.52 51.59 70.43 96.26 56.93 57.85 47.72 38.44 74.49 95.44 7.95 67.88 48.23 72.03 96.00 91.56 10.72 93.50 60.73 45.21 60.09 61.32 94.03 11.35 61.32 35.58 10.41 80.43 2.07 88.06 26.88 56.81 35.88 96.32 40.31 47.11 43.80 19.39 81.63 16.24 48.06 17.36 0.68 92.77 14.21 7.66 57.21 66.60 40.99 64.52 3.41 7.34 61.11 53.25 17.05 40.57 45.08 16.56 52.96 54.59 85.62 17.62 78.20 44.94 14.09 13.83 3.06 94.53 68.59 84.57 30.75 66.90 27.79 -89.92 38.57 77.48 59.76 35.18 24.62 24.24 7.49 45.08 84.43 5.30 64.40 19.38 5.43 70.26 79.81 45.54 60.52 91.06 9.98 34.21 17.04 68.71 69.73 94.00 44.73 11.74 58.75 38.83 14.24 46.06 34.86 91.49 99.87 6.08 9.69 3.73 61.52 92.27 33.04 87.29 13.07 26.33 84.28 63.95 88.55 86.10 89.16 47.84 82.38 85.25 52.63 24.87 89.21 7.53 93.17 40.81 36.75 35.55 52.65 91.31 16.99 14.91 10.70 48.48 26.94 5.50 11.14 64.75 42.11 52.84 95.78 40.01 64.08 63.69 27.18 90.01 85.91 50.67 37.10 3.68 4.06 67.55 31.29 74.85 95.26 99.89 41.18 87.25 64.11 65.15 66.64 46.41 5.60 28.87 87.21 24.78 61.52 40.28 61.97 -14.53 86.06 13.13 50.02 52.33 63.39 82.72 3.08 32.20 51.97 87.08 52.67 6.69 53.14 31.82 71.65 75.18 23.95 34.43 83.14 21.43 4.42 74.92 23.16 0.53 90.62 70.70 20.86 37.67 41.39 16.38 79.43 35.01 61.15 5.03 67.08 49.55 31.66 61.01 96.84 61.33 1.68 12.00 30.49 39.29 79.42 41.43 9.66 51.63 57.23 73.69 50.22 1.35 30.36 71.56 31.41 34.58 17.47 96.04 81.39 40.81 61.35 43.36 92.60 17.68 29.49 19.74 79.56 43.21 9.08 62.46 87.29 65.50 38.77 60.60 59.59 5.78 16.85 17.36 94.57 13.78 45.85 3.04 42.45 65.64 4.34 64.75 67.10 41.69 61.63 10.18 5.15 16.93 49.57 59.66 62.41 55.61 37.41 81.38 29.12 -76.23 49.47 44.20 16.33 99.53 33.32 91.35 64.93 56.86 97.76 82.49 33.17 44.89 10.22 5.35 23.99 83.49 84.12 96.49 14.88 22.43 97.84 72.00 8.59 22.27 28.07 0.19 4.98 50.85 69.54 5.48 22.32 55.81 11.06 18.84 0.31 3.42 23.75 65.43 46.73 20.36 74.04 67.07 0.27 64.03 40.69 89.71 22.52 20.79 92.27 60.12 66.26 9.84 57.59 33.81 28.92 77.46 11.01 11.73 66.79 24.87 80.64 77.25 41.13 20.16 75.00 99.85 95.05 7.52 95.16 39.73 61.36 15.69 65.84 55.17 0.92 62.50 75.33 65.83 60.99 45.26 68.84 23.22 48.02 60.39 78.28 52.19 72.39 1.98 84.89 44.00 38.58 55.56 54.63 18.92 0.53 49.01 73.90 65.30 8.93 -36.66 59.93 41.95 40.30 67.16 6.18 22.75 59.48 92.49 54.57 88.81 75.63 25.31 0.39 63.46 47.55 78.41 36.35 72.38 44.73 61.29 41.02 70.50 81.91 48.25 53.95 58.40 27.08 26.24 7.87 61.02 77.18 40.47 58.61 45.96 94.93 66.81 0.27 63.14 19.05 24.14 27.15 8.41 68.58 88.00 70.72 22.10 39.04 33.68 64.84 2.32 58.28 70.09 35.36 50.16 22.86 14.04 26.26 21.03 35.28 60.07 85.93 77.51 79.99 62.42 5.51 70.49 18.90 22.81 39.01 11.50 90.35 56.62 20.03 5.70 48.64 57.24 86.35 93.65 99.46 26.97 68.08 12.55 84.73 6.01 40.10 45.53 9.72 18.26 12.14 70.88 45.78 0.21 25.51 19.74 95.89 0.21 95.02 9.36 65.84 -54.73 66.98 34.42 55.52 51.73 65.34 63.43 56.07 15.88 18.61 49.38 30.19 56.49 72.17 26.52 12.58 33.87 94.39 90.84 40.64 81.08 81.94 86.46 2.44 50.30 89.67 4.69 12.45 35.16 45.83 66.12 96.19 96.70 33.55 92.37 90.51 45.29 72.89 3.26 21.70 61.29 42.44 25.36 31.90 44.92 22.67 25.83 38.47 32.70 51.57 53.06 98.00 40.06 91.82 74.67 94.03 10.89 81.91 22.18 80.45 22.25 45.01 35.23 27.81 40.45 38.82 42.06 99.17 39.23 33.78 56.83 38.98 10.73 87.57 37.63 73.30 69.40 2.36 17.44 60.55 42.21 78.40 83.03 17.38 29.57 31.46 84.35 87.32 17.32 74.77 71.27 41.14 89.26 57.55 27.41 34.19 62.01 37.29 33.95 82.74 -46.63 9.52 60.74 94.02 83.17 35.17 12.59 65.23 83.93 47.28 59.99 61.94 4.32 28.51 39.98 75.07 86.31 50.32 97.91 76.14 46.88 11.75 26.18 82.03 50.78 24.84 22.25 97.71 77.96 53.20 70.30 72.01 71.12 75.09 67.97 65.48 28.36 45.20 18.11 12.10 63.15 81.01 29.69 8.30 17.21 98.18 95.19 73.05 19.30 31.88 82.19 3.62 23.68 82.55 17.00 14.51 87.08 49.68 64.99 96.84 64.03 53.05 83.67 98.13 73.73 16.95 28.45 44.95 15.24 66.95 50.84 28.09 86.33 49.41 66.13 23.55 75.24 43.02 39.14 70.93 32.65 7.01 25.72 95.80 89.71 35.72 48.91 54.58 10.04 59.22 62.29 42.38 54.43 79.58 67.39 13.80 91.85 43.88 24.72 92.52 -58.22 94.73 83.62 52.55 47.75 17.87 74.46 99.33 11.29 54.83 36.38 4.24 43.39 61.09 46.63 90.89 20.53 73.33 20.03 37.34 51.12 51.30 89.84 45.45 74.78 15.84 70.78 26.03 25.32 23.25 94.37 97.13 8.18 60.75 80.30 26.29 79.35 64.96 55.77 47.60 89.38 3.93 61.52 22.27 18.70 15.44 43.82 47.50 77.33 85.53 35.81 6.73 77.96 89.41 38.47 53.81 61.06 81.44 30.72 34.14 90.24 85.31 43.24 49.14 29.17 31.30 89.94 45.87 89.23 54.24 28.19 54.78 73.89 87.29 59.93 41.10 24.53 54.75 8.56 67.06 17.65 97.58 77.72 43.78 24.01 40.70 66.88 92.09 37.26 2.49 80.25 25.92 95.33 34.73 47.34 15.98 84.50 78.90 45.67 49.37 -17.31 91.18 52.97 39.08 28.79 51.33 50.38 14.64 19.52 46.56 10.02 38.14 57.85 27.20 19.54 64.55 75.23 99.14 16.01 56.29 33.49 52.96 90.48 68.88 64.42 83.29 51.30 7.05 37.31 47.35 38.19 11.96 5.54 82.66 62.13 59.74 44.91 24.26 14.88 91.17 62.02 42.59 70.46 59.72 9.90 27.01 37.07 65.11 98.45 13.96 96.37 78.55 1.54 68.23 66.57 95.93 7.20 68.04 19.71 56.51 1.45 85.64 55.65 48.47 3.43 83.90 17.56 23.85 77.83 1.58 53.21 60.46 58.95 46.09 50.13 86.47 90.51 91.61 35.41 87.07 26.53 26.25 13.19 86.60 27.51 50.52 11.73 62.47 21.86 0.44 6.55 95.70 1.89 60.63 54.63 20.89 68.44 54.29 56.35 8.23 -78.98 43.20 79.67 90.45 95.05 68.38 36.42 22.36 45.57 80.70 1.32 59.59 77.12 53.30 74.78 13.02 47.07 21.15 12.29 27.65 10.05 41.27 71.02 99.33 50.31 54.58 4.93 4.99 44.19 53.84 8.05 92.47 80.36 36.65 43.66 94.25 68.86 96.72 49.28 38.38 35.36 35.75 86.96 98.54 88.11 17.88 29.52 33.09 96.13 11.84 55.49 48.46 87.35 0.97 88.07 65.13 38.90 50.90 67.83 58.07 45.23 99.53 46.62 93.10 99.29 71.44 39.02 21.96 21.35 8.69 83.70 99.10 94.46 23.62 40.79 79.37 89.41 63.36 6.12 81.38 41.01 45.65 73.69 34.58 39.55 4.21 56.34 68.24 75.56 44.05 38.57 85.40 10.51 51.49 78.42 69.04 75.24 40.57 29.98 5.07 -90.54 28.46 72.88 73.91 27.12 52.86 52.46 9.98 12.35 5.28 2.51 41.50 31.09 6.01 0.02 10.31 69.84 22.80 61.25 56.44 31.15 35.49 70.15 46.19 47.85 75.38 35.92 82.45 4.90 86.13 86.16 90.07 46.25 3.00 8.43 84.39 23.34 25.59 86.58 41.51 46.44 50.86 22.55 91.75 49.54 7.66 0.29 20.90 81.83 57.24 88.12 33.51 35.17 98.88 58.46 67.71 38.10 29.27 65.18 27.40 75.82 9.61 3.32 63.48 38.45 65.55 71.06 61.57 34.00 33.40 78.44 43.69 47.76 17.54 57.66 58.45 19.51 37.83 88.16 49.01 24.39 7.35 76.44 59.55 27.68 46.41 67.71 25.03 44.94 5.24 15.93 13.97 95.26 91.45 95.03 6.29 88.66 83.08 17.27 19.55 -89.40 11.43 27.47 0.93 42.80 31.56 33.04 70.96 85.91 72.71 52.51 50.64 61.18 50.61 42.08 40.47 72.99 4.55 65.44 47.81 96.07 20.02 96.49 75.51 95.30 30.35 45.99 63.76 0.67 64.73 71.65 19.97 92.12 51.45 38.44 77.54 39.77 50.70 62.91 91.73 3.28 87.63 2.50 46.78 8.61 94.16 30.07 46.16 88.24 34.59 58.81 81.23 23.93 2.15 79.43 83.19 60.63 29.97 17.59 20.35 86.43 65.64 61.78 96.45 95.52 16.80 18.91 59.70 36.02 45.97 19.99 27.87 68.66 38.48 36.86 62.39 7.42 34.60 18.65 68.34 44.61 7.25 49.12 16.04 90.93 8.05 39.61 60.21 82.96 84.41 90.38 61.55 11.71 66.39 31.92 43.96 77.66 37.28 92.84 90.04 -78.85 39.23 60.75 34.87 93.08 89.38 73.24 75.56 18.28 79.56 89.15 65.14 10.72 27.26 40.81 37.63 62.00 34.24 4.76 36.48 33.05 33.89 25.27 8.18 31.11 38.11 79.31 61.95 4.67 51.36 35.42 20.08 67.27 89.81 86.82 21.24 3.54 90.84 90.10 28.46 7.85 77.52 13.02 35.75 70.12 35.90 15.47 50.75 81.07 11.90 56.49 89.13 64.43 31.49 93.44 78.56 28.75 84.35 55.36 16.50 73.05 40.99 16.56 91.11 69.68 20.45 78.53 66.14 18.64 93.52 75.75 91.86 12.40 18.63 61.81 95.42 85.04 90.77 88.87 6.11 15.85 13.81 95.68 56.15 41.72 53.42 44.43 86.46 99.96 19.19 39.93 25.08 80.79 63.54 98.52 13.19 96.60 19.23 34.59 11.53 -13.50 90.55 4.51 64.10 12.82 72.91 5.23 74.11 0.54 85.98 69.16 35.27 94.96 95.72 24.02 60.19 51.94 45.37 7.51 97.98 20.29 71.42 12.00 15.70 53.29 23.66 79.78 12.23 84.02 0.95 14.95 5.31 83.01 29.07 96.64 29.97 86.53 9.37 31.30 35.06 74.62 23.10 2.54 99.01 37.92 66.28 47.12 60.19 10.36 3.58 41.99 10.37 9.79 4.14 70.52 52.05 16.70 43.36 34.46 38.84 50.05 67.12 51.17 19.65 48.97 2.65 2.25 65.53 90.80 71.52 66.26 57.48 40.50 74.05 1.56 95.57 92.61 85.64 79.87 64.64 79.24 71.20 8.48 7.79 36.62 72.35 49.22 3.06 67.10 77.61 98.98 19.22 40.41 97.06 79.68 23.68 5.71 32.53 93.36 64.33 -92.55 92.82 84.49 76.12 29.31 23.78 24.72 95.12 20.14 6.19 74.52 96.38 53.83 92.17 87.47 14.40 46.39 6.14 6.21 69.82 69.39 18.60 20.93 69.89 86.76 31.17 16.51 57.28 17.67 28.48 44.60 19.30 50.07 22.98 21.95 12.77 16.76 23.23 12.16 67.07 26.89 31.96 51.02 5.51 86.90 27.83 26.05 64.85 47.06 81.33 95.66 11.10 93.93 12.61 2.06 69.11 4.10 11.35 42.07 34.02 52.34 92.19 86.23 6.21 95.47 52.27 94.50 67.80 15.61 86.74 76.03 76.20 55.35 30.61 18.11 74.48 45.31 91.64 62.88 11.38 54.39 99.18 1.82 10.34 38.71 59.86 40.88 8.63 3.46 58.85 30.53 2.05 83.98 49.87 43.12 99.59 93.64 82.83 29.61 98.72 -53.98 83.16 32.87 12.49 66.44 5.41 99.91 52.61 6.22 40.13 59.01 88.63 20.88 23.79 37.67 81.11 6.41 0.09 6.30 93.94 22.40 35.10 94.30 79.10 32.88 64.20 12.79 79.50 41.77 80.38 42.27 77.22 6.54 38.99 51.24 34.96 7.34 55.58 73.67 78.17 60.90 2.69 97.35 43.33 8.09 75.73 10.84 34.01 23.31 73.77 25.18 6.15 68.16 31.95 25.47 67.25 75.55 31.37 12.32 66.13 18.87 40.68 79.06 20.20 1.85 46.43 56.35 38.06 47.54 41.23 43.36 79.57 6.98 92.61 47.49 74.08 62.27 67.49 97.64 92.57 70.82 44.57 81.17 59.10 46.42 56.39 14.93 39.11 24.27 83.32 26.60 77.13 85.59 25.62 76.36 83.57 9.99 89.17 28.83 90.23 -82.65 86.66 67.56 1.21 46.23 86.49 62.37 96.81 84.13 41.36 31.19 55.27 93.02 4.55 38.36 7.80 84.05 83.72 53.16 5.14 59.21 92.92 8.18 42.50 88.25 59.35 59.01 79.24 85.14 80.82 29.50 55.44 9.90 28.48 97.27 44.38 99.11 5.39 3.33 65.19 89.59 76.83 38.51 32.57 55.69 1.96 48.74 56.11 2.45 71.42 35.48 54.62 55.59 82.90 59.11 38.90 95.51 6.46 96.54 56.62 27.75 93.84 96.59 92.02 87.49 66.30 3.12 71.85 45.35 93.33 71.34 90.38 41.50 39.05 89.52 3.84 11.28 31.20 33.85 17.23 76.54 20.79 14.72 4.64 60.72 74.99 48.18 24.06 44.46 80.78 57.70 61.70 35.55 76.92 51.24 70.36 91.09 20.63 50.14 46.39 -16.96 37.87 93.58 25.22 88.83 4.55 91.55 72.88 76.44 52.86 77.84 83.95 39.56 78.08 51.53 54.94 50.37 40.76 99.89 61.27 67.89 89.13 55.91 59.37 28.49 95.59 68.30 73.94 47.80 31.05 80.76 84.46 25.73 17.01 89.27 65.46 47.72 76.92 67.26 63.24 89.59 19.49 24.17 79.21 39.90 11.09 13.22 59.07 29.88 64.67 43.19 79.88 14.28 33.43 38.72 77.69 11.29 53.68 40.15 45.62 3.29 8.53 41.81 15.94 36.26 94.93 41.86 94.82 71.32 37.50 26.82 5.85 23.18 92.69 95.11 36.95 13.50 11.15 28.89 80.95 77.35 23.13 3.70 27.46 13.54 66.32 46.74 26.69 72.74 77.90 38.81 69.65 56.89 22.99 93.25 8.34 86.61 14.70 69.74 94.85 -98.58 65.38 51.71 33.45 62.36 74.24 4.74 81.78 3.13 99.80 99.51 28.73 58.78 38.49 63.81 88.71 91.43 32.16 76.14 55.30 45.00 46.35 55.35 77.41 76.22 65.45 41.46 11.27 68.78 5.04 96.08 36.72 31.30 15.66 38.05 29.23 83.23 23.06 10.86 99.19 74.97 23.88 85.42 24.89 49.38 46.10 16.91 89.74 96.51 59.68 52.61 78.35 24.34 58.73 64.89 19.92 62.61 41.75 94.83 49.41 75.88 30.06 32.85 73.63 63.08 4.14 43.30 85.49 19.17 64.38 66.00 5.32 51.63 63.51 14.62 13.12 69.24 75.03 47.06 11.25 59.48 49.33 98.82 3.81 28.67 16.55 51.34 62.37 54.82 84.65 52.29 45.68 90.57 16.23 1.07 26.70 16.19 54.90 77.33 90.31 -62.33 15.18 26.34 34.87 17.36 3.47 43.81 82.47 50.24 27.82 18.88 18.49 40.56 59.88 67.67 36.83 0.95 91.63 91.81 59.29 24.43 22.93 34.41 22.38 46.73 29.90 75.94 30.12 22.15 64.41 2.72 0.15 98.16 75.41 17.42 69.46 76.52 66.23 80.41 34.35 34.87 87.19 71.20 94.53 75.18 23.28 95.68 32.65 62.13 0.87 3.93 16.65 27.05 95.41 8.29 92.62 35.69 65.86 65.05 48.94 85.81 95.51 14.82 47.56 17.44 51.89 11.28 0.30 97.33 10.56 98.31 10.49 52.66 22.14 50.63 85.28 25.97 87.67 53.36 7.27 70.27 28.21 65.64 27.68 28.40 96.59 46.72 77.55 28.29 59.22 80.23 22.09 36.49 15.90 0.13 36.35 19.82 17.14 19.26 51.75 -59.39 90.52 35.46 66.40 49.16 56.14 11.17 14.42 65.88 66.18 92.95 73.05 69.12 30.33 0.98 74.71 65.42 65.87 26.83 85.88 11.96 22.23 26.29 43.98 42.88 73.56 78.59 44.34 72.19 58.34 58.77 58.60 56.22 94.55 5.74 55.74 21.42 69.64 3.17 67.91 58.12 31.48 59.66 28.60 4.19 84.32 13.07 85.79 51.34 75.38 69.69 73.08 26.92 58.84 73.21 71.51 64.33 23.14 17.40 19.19 40.45 1.72 0.44 3.63 34.54 48.36 46.93 90.93 44.17 17.36 89.50 83.07 37.29 73.85 27.93 16.97 68.15 41.04 16.56 66.82 64.38 24.45 99.96 9.46 5.31 61.36 56.47 65.21 5.64 18.25 55.53 53.83 92.43 52.11 4.38 33.10 60.29 82.66 32.27 60.69 -17.23 43.98 53.78 50.28 1.39 45.92 18.61 30.90 27.08 20.49 23.90 20.10 23.73 52.79 10.96 19.98 21.77 72.22 12.44 97.59 99.96 78.53 76.08 13.35 48.41 69.71 82.44 59.48 68.13 21.27 87.69 89.89 46.01 70.23 28.50 55.27 28.94 87.81 96.64 14.67 97.85 63.29 65.44 85.56 31.69 94.35 14.56 70.55 48.65 2.77 9.06 81.31 3.13 68.36 93.16 78.56 40.79 72.76 18.50 8.33 11.65 92.97 30.57 27.71 29.55 4.89 1.41 42.26 83.47 17.77 75.69 50.46 53.73 63.91 55.48 36.52 69.47 60.16 10.56 23.07 78.10 12.94 2.91 40.04 95.73 92.38 68.49 75.19 63.28 65.84 96.03 73.91 73.48 66.50 99.16 83.13 78.65 22.31 94.92 15.12 -14.63 94.06 93.21 72.36 46.52 66.05 25.14 29.20 40.80 9.18 26.08 58.78 90.53 80.15 81.09 47.82 22.43 58.98 62.12 95.99 35.27 10.27 26.83 80.29 24.11 18.60 82.30 33.85 59.03 16.95 56.78 82.92 41.77 70.47 28.36 70.57 59.97 5.09 8.92 41.95 68.89 15.24 76.15 95.01 55.31 25.84 31.07 17.70 9.32 41.79 80.08 16.99 37.34 68.89 11.17 90.22 4.90 95.47 28.32 54.33 26.44 79.52 11.70 98.24 27.51 96.02 45.09 25.35 77.82 44.18 27.74 31.60 61.61 10.17 78.76 21.83 56.87 18.09 74.17 46.68 13.98 53.84 74.23 91.48 89.35 59.51 82.56 75.43 32.02 82.94 67.61 15.06 30.66 53.40 57.82 47.64 75.31 95.77 45.62 97.00 -84.91 34.54 9.89 90.34 52.06 46.54 51.66 11.82 1.70 60.47 43.31 13.07 59.03 99.07 82.86 93.39 25.12 35.36 52.03 20.50 76.10 16.44 76.09 93.37 67.03 19.83 65.33 78.64 30.44 2.39 59.66 51.52 37.45 28.67 14.23 28.85 6.93 43.77 59.08 87.83 17.11 77.12 66.87 84.10 11.48 33.31 46.16 88.47 16.20 52.57 91.65 1.93 8.19 4.14 24.76 85.47 38.45 68.70 81.65 51.32 73.46 92.21 69.09 51.11 20.49 2.83 4.02 68.35 47.40 98.54 91.90 83.84 89.82 31.28 64.68 18.34 5.43 38.58 65.30 87.27 99.81 18.12 4.85 94.41 99.34 42.75 41.40 45.27 67.03 24.06 10.70 89.26 88.60 46.93 54.55 91.67 73.55 10.60 29.23 54.29 -68.84 35.02 91.84 98.83 4.82 42.87 2.72 9.72 85.14 35.82 3.12 76.48 31.80 49.73 28.69 47.34 98.97 63.40 47.40 53.56 98.78 34.31 91.58 23.41 55.29 5.37 19.87 54.25 42.84 68.47 49.65 87.73 85.75 63.14 67.79 18.73 6.17 71.18 18.77 56.53 35.08 76.24 33.92 97.30 94.65 36.59 99.43 65.87 47.22 97.65 95.69 98.12 85.88 65.40 62.29 35.61 99.49 74.90 69.58 3.83 69.43 84.46 37.28 96.97 28.26 98.73 30.07 71.95 17.40 91.73 5.76 25.28 33.40 1.85 75.56 14.38 68.38 27.25 72.68 70.94 32.58 2.66 69.39 22.66 45.87 86.77 85.35 24.19 41.14 52.08 84.74 64.25 73.14 47.67 48.82 80.34 51.91 16.71 41.96 25.57 -19.14 33.99 19.70 78.12 1.20 13.30 88.21 42.67 84.03 20.83 12.00 2.67 13.64 38.80 59.95 69.40 27.78 81.35 65.20 94.07 15.81 6.20 71.58 23.97 51.61 27.50 99.88 38.11 87.53 21.34 59.10 26.67 43.01 79.05 93.49 36.45 98.67 33.52 24.32 54.27 54.74 94.05 55.12 72.76 92.91 12.54 39.60 85.20 43.00 96.35 34.12 54.16 51.44 80.48 18.04 48.90 24.39 87.83 1.30 98.48 82.83 72.36 33.94 98.11 15.38 74.70 87.48 7.86 42.53 3.43 8.37 29.65 41.00 38.72 77.66 77.61 63.60 13.47 49.08 37.07 10.65 50.56 60.28 72.79 7.30 75.82 48.09 14.40 36.64 51.49 35.12 23.28 6.28 99.64 43.95 31.84 75.70 78.11 40.67 77.82 -75.60 91.36 84.80 3.91 25.22 3.97 61.20 27.77 47.07 73.82 28.32 45.20 20.44 2.95 5.29 17.27 45.98 42.14 6.31 5.63 24.02 34.76 14.23 52.08 2.65 80.61 26.59 72.50 9.49 61.26 51.24 46.33 2.79 18.95 96.95 37.88 6.94 37.17 20.10 77.62 9.75 84.85 19.46 15.72 29.69 83.26 96.51 49.60 86.13 3.35 25.79 63.73 27.82 34.88 99.42 77.09 2.20 46.53 99.33 76.81 11.93 61.34 60.21 58.82 65.17 39.90 44.43 76.88 48.97 53.21 14.91 77.31 86.97 67.17 2.65 84.23 90.67 56.32 97.65 27.38 3.59 87.18 45.27 72.92 25.00 16.39 42.20 50.52 97.42 64.12 33.88 66.91 6.46 59.98 28.85 74.38 56.13 5.55 42.61 82.45 -37.00 36.56 14.09 91.17 3.63 32.31 44.12 94.99 54.61 41.33 23.62 34.74 35.79 68.12 46.22 4.21 56.11 45.66 2.83 35.34 14.88 89.71 41.26 33.28 35.40 41.14 43.47 82.51 43.66 13.65 52.19 79.06 62.32 69.98 14.92 18.29 45.89 66.83 86.62 84.92 71.84 46.84 63.94 62.22 41.26 33.81 46.70 75.37 36.29 81.47 12.18 40.44 29.45 86.20 22.65 61.27 41.36 46.54 30.89 51.53 14.53 15.72 30.04 31.53 53.39 80.64 36.69 33.68 21.48 94.23 99.93 1.99 92.98 16.30 82.91 3.89 17.64 41.58 54.03 98.34 5.31 0.73 84.65 31.37 61.17 79.64 25.88 85.59 66.70 82.57 90.82 78.22 19.85 93.16 36.53 1.35 86.67 90.96 71.23 93.37 -41.40 20.87 49.71 35.98 8.41 60.84 42.66 46.60 48.79 78.05 40.31 33.12 61.06 57.94 16.53 52.60 78.08 15.95 35.44 43.23 76.34 86.05 13.86 69.33 46.16 5.68 73.03 30.98 16.39 24.35 70.52 45.24 38.13 64.24 38.46 51.22 40.39 34.59 19.31 13.94 17.12 23.55 84.08 48.70 25.76 23.23 47.02 43.41 91.41 28.57 44.31 42.03 71.67 24.23 27.30 66.83 70.97 85.77 33.22 59.94 99.95 98.07 89.71 82.01 46.21 3.82 58.90 94.00 81.05 58.10 86.93 98.44 32.69 35.11 73.69 17.85 16.03 62.90 71.04 21.73 85.88 72.22 14.15 73.47 74.89 3.82 99.29 31.67 93.06 36.16 89.75 58.05 84.52 26.49 12.36 39.61 41.10 14.16 85.07 11.83 -10.65 8.96 74.62 75.42 90.95 29.99 25.79 80.64 47.18 67.56 75.29 30.21 86.45 78.09 26.52 42.09 41.77 15.19 86.85 80.41 60.14 25.34 10.09 20.69 48.86 67.07 77.81 51.87 48.74 90.27 62.87 35.76 51.46 27.59 28.23 46.19 65.69 14.51 53.23 1.29 35.62 30.78 97.88 93.84 19.08 41.08 98.93 34.89 9.82 56.36 35.17 58.89 93.72 95.30 73.59 43.93 66.32 53.66 25.49 85.17 8.09 39.74 41.27 77.26 97.01 11.19 25.82 13.63 59.76 49.07 67.56 59.82 46.30 13.47 76.64 96.47 42.44 11.87 3.66 18.95 36.27 58.55 96.60 40.87 95.70 63.76 78.30 12.66 98.10 98.20 13.88 30.80 58.29 91.96 63.26 98.27 63.13 52.24 28.54 63.26 -54.50 87.36 13.06 12.06 51.20 68.61 9.16 94.47 31.54 58.30 52.54 94.02 44.05 1.96 48.64 15.98 49.67 57.77 11.11 20.96 17.86 7.45 2.28 85.65 7.93 76.18 86.91 38.38 2.14 85.13 36.11 2.66 6.28 62.29 16.82 91.37 58.22 61.51 98.56 79.46 52.70 35.76 72.06 8.24 55.17 17.44 23.13 19.12 72.57 5.47 32.45 17.64 41.55 97.67 99.93 79.19 14.05 47.46 65.09 68.23 98.52 66.11 83.44 42.52 7.21 58.11 38.07 86.04 50.52 36.80 41.63 79.24 49.86 84.42 53.80 50.04 2.10 32.45 33.56 84.81 24.41 21.75 55.99 35.33 71.61 16.87 60.13 36.37 38.29 6.25 5.81 8.30 65.15 87.34 62.71 34.76 60.52 48.25 81.56 28.95 -51.94 25.35 20.70 94.82 18.75 64.86 80.11 66.56 23.79 53.19 83.64 49.92 63.90 7.80 89.99 0.68 37.87 52.90 54.32 88.45 36.56 69.74 64.02 25.22 71.59 24.88 16.41 80.64 14.76 20.77 32.93 94.98 10.78 10.05 68.26 53.35 81.07 79.61 74.00 42.51 50.69 96.07 82.23 91.71 16.55 20.29 32.71 79.52 88.21 92.20 77.12 47.61 33.38 17.86 16.01 86.80 24.33 42.91 19.85 75.95 18.00 0.99 13.28 49.57 53.48 0.91 47.66 34.00 14.85 18.47 25.86 81.99 23.32 86.43 95.77 72.61 88.50 31.30 50.87 39.65 31.24 97.04 77.46 63.94 98.98 27.67 18.81 18.06 38.88 31.63 49.00 90.52 5.19 96.62 46.36 24.04 85.80 76.52 42.39 59.63 -72.59 17.80 83.54 94.22 38.67 22.60 48.05 91.88 41.68 45.01 21.52 15.51 21.82 56.79 41.22 90.47 2.45 55.53 94.54 34.27 2.62 13.79 89.66 71.22 12.43 8.12 96.93 65.69 63.76 68.29 59.05 67.26 89.72 57.69 1.86 78.16 22.12 43.18 62.90 61.05 40.61 28.20 54.06 76.13 86.21 57.00 47.49 73.67 92.35 30.97 72.50 78.94 26.67 95.66 62.18 31.88 60.93 61.83 30.96 79.52 93.14 19.28 43.42 38.84 17.07 74.25 68.58 13.78 20.74 0.08 44.25 19.60 21.61 10.64 91.45 36.04 59.76 73.81 7.27 19.88 81.85 97.09 57.98 41.38 99.87 21.05 81.39 0.38 67.50 77.64 99.95 71.45 94.05 93.00 73.31 25.03 21.13 79.52 19.19 73.91 -71.69 80.44 43.53 12.56 42.15 60.91 75.17 70.41 42.91 14.50 15.94 26.31 44.32 0.19 8.39 98.61 29.91 95.66 48.02 4.78 56.74 54.12 49.40 25.29 8.18 95.35 7.27 54.27 23.57 49.30 51.14 44.34 42.78 77.76 58.14 94.23 94.34 40.95 21.17 52.91 14.48 75.41 41.81 22.73 32.55 4.97 72.57 36.11 13.57 90.03 25.52 35.27 5.59 52.76 51.35 19.26 82.51 79.17 22.62 12.03 16.07 61.21 10.43 80.42 79.58 64.37 58.12 78.34 79.27 49.32 19.14 68.46 77.91 16.09 55.19 63.13 60.91 4.99 87.83 59.46 10.99 56.71 34.14 92.03 55.52 18.18 41.99 25.55 82.78 38.47 98.35 85.69 92.80 8.35 80.66 7.16 23.14 13.96 85.24 90.77 -48.52 42.38 92.12 70.18 25.31 87.68 96.36 99.61 62.78 25.15 6.33 70.28 88.91 33.68 76.44 4.55 87.71 42.56 99.72 6.39 28.16 9.30 58.99 15.44 17.16 42.27 71.67 84.04 93.70 86.32 25.02 46.26 55.90 98.57 2.65 56.56 69.81 62.30 65.13 98.00 3.62 8.73 72.74 62.33 8.10 86.35 40.20 78.88 28.49 95.80 48.46 89.92 13.32 49.01 19.93 65.30 55.93 17.80 60.28 46.48 85.66 1.74 26.41 43.95 39.27 44.34 10.74 50.38 71.75 1.38 29.15 21.86 8.99 51.90 18.51 19.06 25.65 86.03 9.08 88.33 6.86 33.43 50.96 94.87 40.21 55.32 69.41 16.92 12.21 49.19 5.18 65.54 92.26 72.46 44.02 51.11 77.92 20.24 8.20 53.40 -66.17 73.70 61.84 65.40 53.12 23.63 30.67 12.02 4.17 50.54 71.13 35.06 54.09 63.93 95.89 6.83 62.96 46.01 95.69 84.44 7.12 3.57 34.78 87.16 24.31 95.88 81.09 12.12 20.01 26.65 41.53 74.21 31.93 10.01 69.82 38.53 40.37 47.26 94.05 80.79 6.51 2.04 83.32 16.55 30.95 78.76 2.62 36.01 99.55 86.02 25.72 23.02 71.96 32.84 74.09 76.33 7.48 18.06 88.84 69.70 66.65 55.81 13.55 62.48 65.67 92.92 66.64 48.78 14.01 79.73 3.36 11.33 57.19 47.43 19.69 74.69 92.80 11.47 61.02 55.40 81.02 10.74 59.10 41.70 47.73 22.68 3.68 94.93 94.44 25.65 30.92 53.42 20.98 23.65 76.11 12.20 82.97 55.04 61.17 50.60 -7.70 88.70 96.64 60.21 85.23 3.17 69.56 92.96 14.68 42.08 19.77 75.90 85.72 58.24 24.19 36.12 48.63 23.66 24.53 59.32 5.02 80.35 26.08 50.55 69.81 63.32 21.53 22.24 86.28 30.54 42.40 11.65 70.02 38.74 12.21 90.49 49.85 13.79 83.14 22.26 21.90 69.05 77.89 50.95 9.60 81.63 91.96 40.96 32.41 7.14 64.60 30.78 63.20 76.30 94.35 65.44 73.39 57.17 44.47 93.92 42.14 72.27 47.21 85.81 68.04 41.65 56.22 35.70 99.11 49.96 56.38 97.65 46.48 6.50 31.21 56.01 14.75 30.79 41.75 57.84 43.18 13.91 90.51 63.40 8.90 72.89 40.21 2.18 24.53 66.29 58.56 52.45 52.84 42.74 43.61 39.39 57.49 44.86 61.88 76.13 -67.20 97.66 69.84 44.67 91.71 4.26 85.90 7.36 18.91 66.52 41.62 13.80 18.44 63.03 23.44 57.57 89.18 15.60 75.21 71.10 82.91 81.87 32.31 44.14 10.21 26.77 54.17 77.61 22.12 41.64 91.87 25.59 91.39 92.70 77.20 54.39 16.17 82.79 34.41 55.18 19.19 66.08 74.05 49.40 26.46 45.32 71.89 86.52 15.76 21.35 63.57 29.05 70.56 12.51 92.58 25.91 93.73 89.98 43.39 56.81 22.04 3.22 71.23 11.58 92.59 47.12 45.68 53.86 56.08 95.17 76.03 71.13 75.22 29.40 81.18 9.10 39.72 12.06 48.34 70.64 42.58 57.24 12.35 70.95 37.30 57.29 6.22 44.44 1.01 29.09 89.37 30.05 36.39 14.57 18.18 82.48 1.44 88.81 24.49 67.92 -86.92 82.79 31.29 67.28 64.44 70.51 9.92 13.18 10.81 21.72 1.47 62.73 65.40 53.08 85.94 94.30 16.62 33.94 89.04 0.97 73.84 75.66 81.40 11.11 91.40 53.66 30.72 27.01 90.34 67.00 61.50 85.63 25.29 33.46 59.97 10.16 85.97 20.22 69.82 3.69 91.90 20.19 90.35 14.80 51.56 71.84 50.06 48.71 78.65 49.08 87.88 15.58 3.90 72.28 92.21 51.08 85.83 97.56 72.55 50.25 7.40 66.79 7.63 94.38 18.30 70.44 3.83 39.44 53.22 3.52 30.89 96.29 26.30 89.31 44.30 22.78 39.29 32.03 92.10 12.70 46.81 17.53 42.17 22.38 16.39 37.10 5.63 37.93 94.20 88.71 59.76 60.21 17.28 3.99 7.98 31.42 89.21 54.09 82.78 45.93 -92.75 53.49 65.35 54.67 9.77 96.17 76.84 67.22 26.58 72.14 3.55 24.48 47.25 12.12 4.64 37.50 22.67 32.16 48.57 71.76 87.42 24.30 10.58 61.15 61.55 14.76 99.47 66.99 61.72 78.60 67.41 67.96 80.51 66.89 10.57 48.25 70.60 4.70 23.04 38.35 53.36 69.35 85.59 75.22 63.89 45.78 60.05 9.31 18.14 21.75 29.12 95.67 70.31 93.32 61.14 21.29 29.97 55.93 91.72 2.33 66.20 0.13 63.67 71.50 69.29 49.08 76.72 5.16 95.01 55.44 66.25 46.31 3.34 91.95 89.33 54.29 68.36 36.49 67.72 46.39 21.55 99.78 7.03 17.75 30.81 33.17 83.32 38.02 44.13 63.33 46.66 33.78 35.18 49.20 18.43 2.08 96.72 76.72 5.81 90.73 -96.90 6.28 11.66 22.86 55.61 48.86 57.49 67.68 76.84 63.12 68.02 35.73 34.98 84.99 46.07 80.70 7.72 26.14 74.44 42.85 55.63 24.72 7.01 42.98 81.15 42.59 87.90 10.70 33.79 94.06 75.29 4.39 67.48 41.57 62.93 47.56 69.32 7.87 30.29 60.71 97.07 50.89 74.11 50.22 72.79 44.67 56.04 64.95 84.58 45.10 63.52 67.01 8.07 90.56 49.23 94.97 58.02 23.27 75.95 30.50 30.56 37.94 67.89 48.91 32.52 95.22 35.69 76.07 17.59 84.55 66.44 86.23 18.80 91.56 98.01 14.94 69.78 98.52 48.73 89.57 13.78 60.17 32.42 78.70 54.39 79.91 23.49 28.61 16.02 47.21 46.76 64.87 95.36 29.23 85.72 55.11 66.31 39.21 84.34 50.09 -51.27 7.34 42.31 61.58 13.36 74.03 39.49 39.71 67.22 10.18 51.39 62.90 93.18 96.53 11.37 47.32 10.39 8.68 94.51 45.42 61.88 5.11 13.07 30.12 12.59 14.46 39.86 13.71 65.16 44.01 24.20 67.14 74.24 91.59 81.25 96.55 12.85 93.28 57.61 21.99 65.50 45.84 1.71 56.40 99.28 88.30 61.14 27.41 69.75 65.90 99.87 31.99 62.09 2.36 20.83 8.43 43.64 93.47 43.32 11.77 93.37 27.30 24.67 88.70 17.53 3.20 70.44 20.66 30.50 24.24 46.14 99.42 89.11 31.81 79.04 86.53 77.72 5.11 47.29 78.33 11.85 57.23 30.55 81.59 74.28 98.76 51.25 41.81 65.34 32.96 92.10 79.94 6.34 11.17 14.17 75.47 14.84 37.08 28.02 35.82 -52.09 71.80 8.12 0.25 41.95 48.37 65.22 50.09 81.66 80.92 89.92 73.37 5.89 60.39 83.28 21.75 56.51 51.10 57.08 22.08 88.00 14.72 4.92 89.39 50.67 63.50 51.65 31.22 49.42 29.17 16.55 53.73 73.06 50.86 55.14 84.03 12.72 80.03 3.41 18.96 46.57 16.13 2.01 7.30 47.20 16.86 86.01 71.06 88.64 41.04 30.21 91.29 88.96 95.06 79.81 55.69 37.37 6.21 86.20 1.99 29.62 28.78 31.58 75.05 99.73 4.51 75.53 6.29 86.67 22.77 53.71 61.46 29.90 94.92 23.86 73.02 69.62 73.96 61.95 36.04 45.10 93.96 6.18 50.66 56.11 77.32 67.71 19.62 44.86 72.67 29.09 88.76 45.20 56.99 74.36 35.84 82.86 50.35 53.34 63.73 -44.33 78.70 82.90 81.18 97.19 91.53 85.99 40.86 49.30 27.56 0.35 6.60 98.39 19.53 54.96 3.07 49.09 74.75 69.75 72.81 99.23 43.30 5.21 22.07 80.89 71.72 17.97 49.77 35.88 75.94 84.58 38.24 45.57 37.25 39.15 95.54 66.45 97.38 84.41 96.26 83.56 65.43 17.67 91.88 82.99 82.65 74.87 34.92 3.71 77.52 24.30 22.50 49.09 5.20 3.12 18.61 29.75 97.41 19.82 41.78 8.46 57.72 4.10 50.82 48.17 35.82 27.89 85.72 7.63 4.85 44.61 89.08 46.98 72.83 98.47 52.40 2.63 97.30 82.00 44.82 75.42 89.76 78.96 39.30 92.63 17.77 2.52 73.13 43.36 86.80 70.40 54.60 69.62 19.71 91.80 17.31 59.10 48.06 68.48 7.89 -17.90 79.32 86.57 81.95 89.21 74.93 95.71 12.48 62.90 19.85 98.08 60.22 73.13 71.54 80.05 52.25 98.72 87.50 76.26 61.01 99.05 39.78 32.15 75.07 86.24 33.44 87.37 86.51 5.23 33.45 66.41 66.87 4.60 80.57 41.88 43.56 81.58 22.90 74.96 64.93 21.53 80.50 82.92 57.26 44.73 57.61 79.65 88.47 74.46 51.09 67.15 70.86 90.81 96.48 2.83 31.22 32.02 59.47 92.31 8.73 78.37 57.35 12.73 93.36 5.39 61.30 73.02 47.09 22.26 54.29 73.93 31.37 67.23 30.00 26.27 45.12 30.68 66.12 46.35 30.24 52.80 14.08 44.73 91.75 77.49 52.88 62.34 8.74 56.74 7.36 85.26 92.50 51.01 88.86 4.13 96.01 28.46 30.29 72.43 37.86 -31.13 31.98 88.62 51.87 77.72 94.02 47.44 57.92 6.70 60.27 18.95 31.19 81.20 51.87 75.81 52.07 53.24 37.55 57.06 20.17 15.45 36.16 37.18 32.30 76.38 84.94 47.93 23.73 7.91 9.23 27.59 14.35 1.05 60.76 47.86 63.89 0.02 35.49 76.55 38.64 46.93 83.25 63.74 51.95 66.56 22.31 91.55 80.83 97.23 9.01 47.18 49.39 65.52 26.36 57.79 29.73 16.66 90.94 42.64 43.71 58.22 77.59 84.55 72.54 5.75 24.54 87.66 6.39 25.81 57.19 46.92 80.11 58.07 48.99 37.20 11.29 81.10 29.69 88.77 37.97 88.33 4.58 76.20 52.00 3.35 39.82 61.64 80.92 8.58 20.13 74.92 73.99 59.19 47.53 47.13 65.05 26.13 48.33 61.75 22.30 -11.70 84.97 14.48 7.77 47.81 47.01 0.49 75.58 24.41 0.63 59.61 99.46 71.17 15.54 70.38 17.84 22.47 53.61 8.06 14.12 86.64 77.48 49.23 64.65 7.99 60.01 17.69 0.15 17.53 54.59 57.18 90.92 88.76 76.70 83.22 16.09 11.16 45.68 95.73 58.17 57.05 46.35 33.72 17.12 44.71 38.76 15.33 5.14 8.99 47.32 24.01 34.73 91.99 75.95 47.55 31.41 47.43 62.19 20.07 17.32 56.83 24.85 2.67 0.17 31.28 8.02 5.78 67.73 43.94 13.30 50.21 6.06 85.14 48.58 16.84 14.36 72.03 28.46 64.24 30.90 52.85 9.39 44.51 15.79 78.98 14.55 14.47 8.55 78.08 60.89 86.26 56.19 40.62 57.35 17.29 46.47 47.19 89.86 50.18 99.04 -23.09 69.83 11.67 64.66 89.06 21.45 95.45 87.65 2.17 43.79 99.29 83.59 68.35 31.84 52.80 76.80 27.05 43.38 52.39 7.86 20.66 67.31 50.54 9.76 4.64 34.30 46.21 11.56 63.73 65.10 2.28 61.45 28.39 44.99 91.76 68.18 71.06 78.46 25.18 26.18 7.25 71.15 38.02 75.04 41.88 59.84 28.37 27.62 28.15 41.45 64.30 40.07 58.14 54.60 27.74 33.31 29.87 59.72 27.31 15.14 24.80 53.81 31.80 77.39 48.65 15.48 2.05 17.62 63.63 61.31 19.23 70.17 18.47 56.37 26.25 26.75 43.18 15.58 17.02 37.52 37.65 31.98 36.11 50.11 50.56 58.31 33.75 43.78 97.83 94.90 92.01 45.17 56.27 71.27 86.55 28.51 25.06 7.58 96.31 46.96 -82.11 25.32 95.36 20.24 45.12 69.09 59.82 42.77 85.66 33.83 1.75 20.15 75.49 85.01 92.69 74.09 41.48 41.89 46.46 79.69 1.02 58.97 7.81 35.64 43.56 63.44 6.70 68.07 14.71 73.23 91.55 20.10 24.83 38.08 61.84 19.06 46.28 12.05 18.02 49.18 70.71 0.85 12.43 44.83 17.11 5.64 44.77 29.70 88.35 92.05 35.65 87.50 47.71 75.35 88.35 29.07 39.80 77.49 13.82 1.78 28.83 55.55 61.78 70.99 19.20 82.90 67.31 34.59 20.55 97.17 2.23 99.88 87.29 46.36 39.89 92.48 37.81 71.95 57.71 59.61 18.19 97.40 44.54 18.51 92.51 1.23 94.39 21.20 31.71 73.30 49.46 7.84 40.94 38.27 36.48 44.72 24.03 87.11 51.33 84.79 -30.64 55.41 3.40 25.74 67.97 4.47 14.95 25.50 95.01 0.41 79.92 16.54 85.32 25.90 23.44 7.96 68.89 31.93 38.65 43.12 49.49 3.88 76.32 77.45 17.28 52.88 6.92 63.13 33.87 97.63 99.34 55.20 62.80 27.62 81.30 76.31 54.09 81.88 74.27 85.03 28.69 2.52 12.29 39.23 48.23 47.80 73.10 39.27 48.75 73.70 70.88 94.66 59.62 93.81 74.77 4.60 46.75 96.50 26.86 81.91 79.60 89.88 32.04 18.11 42.98 25.41 96.71 87.65 66.88 20.66 67.65 39.28 43.86 81.83 19.78 5.74 41.10 99.92 51.86 91.14 34.28 53.29 14.75 38.88 98.86 24.59 72.05 92.64 65.62 93.54 15.03 41.32 12.69 72.57 27.82 84.94 24.37 43.80 67.52 18.04 -3.39 42.40 37.05 96.23 1.32 48.51 59.53 98.44 68.90 67.72 83.92 61.07 97.73 64.78 31.67 34.88 2.17 84.20 2.98 12.36 14.50 93.62 47.45 33.78 69.11 60.33 64.62 35.39 56.71 96.11 94.34 92.02 25.46 96.75 1.18 21.64 8.46 73.20 98.21 0.63 35.11 50.19 97.18 84.40 53.58 13.02 80.82 20.35 9.58 19.69 51.33 51.56 66.10 43.46 98.78 39.94 76.57 56.83 85.62 66.24 98.57 95.02 33.24 93.53 54.24 93.08 43.23 94.43 41.24 84.05 81.15 40.39 81.97 60.34 8.37 31.96 4.23 82.36 19.21 69.56 80.16 40.84 42.43 52.27 12.89 96.78 11.64 85.94 62.85 71.12 67.21 1.20 74.43 76.30 12.21 88.06 7.18 76.59 31.72 58.81 -16.52 90.36 81.87 34.25 22.72 67.17 48.75 63.51 13.26 22.55 49.24 85.10 37.80 5.84 58.82 52.99 68.30 25.80 49.54 77.23 6.29 56.80 96.44 75.78 36.78 44.41 17.19 64.00 72.62 80.98 21.51 39.34 83.11 92.92 62.76 37.84 27.21 35.59 3.05 57.93 35.50 97.95 38.23 74.56 7.95 60.29 16.51 84.33 93.99 85.11 13.18 50.07 75.62 47.87 9.67 46.03 92.01 1.91 9.06 76.77 35.86 11.47 1.54 9.37 27.23 68.25 85.47 35.86 13.49 81.97 82.33 25.53 43.89 49.55 25.03 56.81 86.68 1.70 89.97 27.91 11.00 95.53 87.48 6.99 52.41 32.80 93.52 4.81 61.56 22.52 83.22 37.64 67.62 92.95 40.58 32.53 86.92 79.06 44.05 72.00 -23.41 37.32 91.04 27.87 18.04 17.13 51.00 49.02 15.96 59.06 9.29 11.66 82.59 57.22 41.05 63.79 3.73 52.59 93.14 38.03 97.79 50.10 48.72 70.10 73.43 81.73 51.79 93.69 16.97 48.13 81.68 48.43 93.14 71.68 59.24 51.45 18.53 19.83 84.44 77.42 15.57 82.18 55.22 35.28 89.41 36.52 23.77 82.78 62.37 8.77 68.67 92.72 34.29 83.17 1.70 28.19 9.80 96.35 12.30 17.08 78.29 72.33 67.14 79.19 39.38 26.90 54.38 72.70 67.71 46.06 73.17 15.94 26.71 61.60 49.19 29.68 28.75 73.30 88.12 89.99 0.13 96.67 19.18 89.75 60.24 59.35 95.36 10.48 18.47 8.49 92.45 9.92 67.62 88.12 79.11 56.90 98.44 24.59 35.51 1.97 -55.21 91.96 61.24 76.38 75.83 77.00 52.98 89.62 89.11 37.10 12.44 40.07 50.28 89.39 91.08 11.82 75.22 38.85 90.19 92.86 51.42 53.68 32.89 46.00 51.34 18.42 2.82 73.14 69.63 64.91 57.56 63.82 93.62 36.81 15.79 91.95 42.81 57.99 98.95 8.41 45.69 59.03 43.76 56.02 50.92 33.57 96.89 59.27 2.49 66.31 45.60 79.43 8.45 75.71 97.72 59.02 50.01 70.10 57.57 43.96 98.06 71.10 55.77 23.53 76.01 19.52 2.29 2.10 21.89 36.78 64.13 49.96 67.16 18.82 81.49 31.97 23.69 33.14 29.43 8.59 83.69 35.40 25.54 75.93 83.66 63.81 13.10 85.72 19.48 41.14 0.25 28.55 22.75 57.09 1.04 96.47 12.38 16.29 58.33 76.34 -42.79 78.60 11.53 98.14 19.80 88.90 91.51 88.57 58.95 19.26 42.10 31.21 65.86 57.98 55.91 3.41 18.14 83.67 54.44 61.90 11.02 49.90 59.01 51.45 85.12 27.58 37.94 92.67 92.86 76.30 36.56 35.27 55.99 46.34 60.06 89.86 97.71 56.52 8.29 11.13 69.16 89.79 13.18 70.21 22.80 22.50 41.95 51.31 67.26 54.15 59.90 45.54 84.24 44.21 45.26 93.89 78.88 22.95 20.64 83.48 22.09 8.52 18.29 68.69 56.40 33.09 32.54 27.00 99.77 23.93 93.74 67.40 39.06 71.40 64.42 32.20 76.02 80.40 73.55 13.76 99.36 31.91 59.07 0.99 18.69 91.16 3.19 80.79 59.32 18.33 35.43 81.29 28.31 42.22 3.33 59.14 13.90 91.83 32.82 14.49 -66.91 67.54 79.49 69.71 44.10 14.11 8.50 80.22 51.17 84.08 38.56 90.45 60.85 23.89 22.16 28.61 21.59 28.02 78.04 69.37 86.58 39.55 39.86 79.20 65.80 0.58 26.04 35.12 93.89 94.68 3.66 65.76 0.37 80.51 33.83 89.37 99.83 42.20 64.87 29.91 12.98 59.15 94.05 47.08 52.77 85.83 4.19 47.62 59.68 58.64 82.22 41.69 32.29 12.51 6.08 88.02 39.90 87.06 84.30 94.13 61.37 38.44 78.73 9.25 56.17 73.46 15.41 39.47 19.94 31.78 51.86 14.42 82.55 50.79 78.85 18.96 57.97 28.66 5.42 95.26 41.98 17.30 27.72 40.35 63.72 51.81 97.37 98.51 54.47 36.31 76.20 93.90 82.97 28.15 0.18 0.11 61.74 55.63 78.15 41.50 -21.71 26.74 38.93 57.42 29.83 21.24 99.78 98.27 16.90 44.97 97.56 16.56 54.68 13.11 44.14 83.60 16.43 37.35 30.12 41.61 22.46 83.82 3.61 64.44 19.03 81.52 31.47 76.31 7.50 66.76 68.03 33.50 1.67 13.56 41.90 73.68 95.06 15.98 9.83 61.36 57.59 73.91 69.31 63.22 6.28 46.60 88.60 17.49 47.33 73.76 79.46 85.32 72.50 89.02 2.48 4.43 20.47 9.81 90.35 66.65 97.80 35.98 27.99 36.38 3.33 28.42 40.66 6.81 84.60 42.70 75.93 22.95 64.59 79.51 62.02 38.42 27.08 39.67 69.54 71.70 36.32 54.12 93.58 44.34 93.10 66.18 87.05 8.25 47.30 26.25 8.38 12.46 52.43 28.65 18.14 16.02 20.05 68.76 19.76 77.77 -24.45 41.32 5.72 61.01 29.26 77.65 20.00 18.97 16.81 74.23 78.16 82.50 34.54 81.26 30.76 78.17 61.35 62.40 18.14 12.38 21.95 68.41 71.64 27.06 67.88 29.92 35.72 19.98 89.47 67.05 78.15 53.87 84.13 32.22 33.96 30.03 2.80 68.48 94.26 88.64 66.58 65.89 33.69 74.16 21.12 15.32 46.75 74.22 83.12 3.29 27.07 13.85 50.19 76.05 59.89 27.77 92.40 36.98 73.25 49.03 9.84 37.27 98.48 88.92 56.70 86.71 47.92 35.07 45.82 25.47 65.27 3.45 15.70 60.13 7.06 7.84 24.88 31.58 17.40 75.96 31.18 5.90 84.87 27.51 90.37 79.86 56.29 94.30 73.59 0.63 28.80 77.27 1.81 8.59 82.08 33.24 57.53 61.81 72.26 52.34 -64.65 63.12 79.92 55.95 85.08 42.87 8.88 82.03 64.68 11.37 56.40 8.66 35.46 53.53 98.50 1.40 56.48 88.34 81.80 1.78 98.14 87.43 19.23 65.48 20.93 5.30 12.76 22.11 55.41 34.55 79.00 80.32 32.22 30.32 9.80 42.20 89.59 57.54 47.74 83.75 48.00 73.58 61.05 75.26 89.71 44.21 99.85 14.02 98.06 91.38 46.02 55.86 48.71 49.71 94.54 51.33 6.55 10.31 72.84 3.58 99.30 41.75 81.88 4.43 0.19 27.49 98.43 53.93 73.17 36.20 74.07 76.46 71.31 96.51 61.85 33.63 70.48 28.13 26.69 38.15 60.62 46.67 13.95 88.01 87.42 49.08 99.70 31.69 29.67 72.74 61.02 31.61 84.37 32.74 11.20 68.02 77.86 37.42 7.30 15.78 -78.98 76.03 94.94 53.22 68.81 60.47 50.63 83.22 14.59 45.51 31.03 97.58 30.49 38.76 78.77 32.21 30.26 20.65 51.10 72.21 53.87 78.43 92.75 76.75 18.02 2.23 5.83 77.54 95.94 87.64 33.17 10.67 92.66 41.52 21.68 27.29 21.09 3.10 76.30 79.37 2.52 40.37 27.33 84.08 51.37 50.85 70.10 58.18 57.77 11.36 43.13 82.62 25.57 23.95 93.23 82.89 84.72 59.83 18.30 19.29 54.74 58.86 5.98 93.52 60.16 85.26 15.20 46.51 8.10 40.78 65.90 17.30 39.47 19.60 2.58 10.24 90.83 8.05 95.26 1.60 86.36 92.58 69.24 55.65 56.75 53.49 11.47 87.90 51.04 25.27 33.31 77.91 89.91 93.50 85.15 34.58 4.47 23.84 16.60 56.53 -58.53 63.60 84.73 45.27 11.77 84.27 80.52 50.64 80.63 44.68 40.43 14.87 38.15 28.07 76.08 61.66 72.95 66.19 78.88 34.05 19.34 18.69 53.47 82.21 28.10 66.35 60.73 80.43 74.30 46.89 65.56 30.09 97.07 5.08 70.57 80.18 51.32 10.79 46.16 38.15 55.97 14.69 88.75 52.48 5.96 11.22 94.84 6.69 14.62 53.75 46.52 49.06 30.81 74.55 98.28 3.51 98.50 30.59 52.77 54.09 85.98 88.68 99.47 54.34 98.00 89.79 6.16 66.14 61.77 63.45 21.16 30.34 39.29 83.71 80.68 83.43 75.93 71.13 95.84 99.63 17.33 89.79 40.39 13.60 78.39 95.70 56.51 56.86 18.73 4.11 93.31 9.80 79.44 56.87 59.70 23.55 11.61 69.29 75.49 88.94 -23.29 62.54 23.42 65.27 70.69 60.96 51.68 59.50 59.42 73.78 24.25 57.75 21.49 51.00 26.27 61.28 31.82 66.72 21.26 54.62 32.48 44.28 39.88 82.68 10.84 62.01 40.30 15.56 18.56 91.31 12.46 81.94 9.30 60.82 6.49 89.43 44.01 3.64 28.05 62.15 49.73 86.10 76.04 12.11 47.60 75.41 45.07 40.80 79.47 62.58 73.45 54.20 13.73 51.02 80.64 56.67 81.44 10.48 8.40 87.54 60.43 68.24 88.23 63.09 14.10 67.23 70.43 11.94 76.36 30.54 97.64 58.66 61.17 18.65 98.07 89.06 43.22 13.18 6.64 35.47 83.98 26.83 30.11 37.13 81.98 92.03 58.71 4.17 50.35 93.12 80.02 92.18 47.76 81.19 42.66 63.55 28.96 80.85 91.54 87.70 -88.94 49.77 94.86 95.08 28.81 31.77 9.14 6.02 15.70 43.42 10.86 41.64 76.15 60.20 39.00 68.40 5.95 87.91 17.34 62.35 75.15 84.94 48.22 39.50 49.92 2.48 67.99 61.72 75.80 24.60 46.47 37.34 71.96 97.16 23.01 64.25 93.98 65.83 37.56 89.45 23.06 69.26 16.12 10.33 59.85 79.65 2.54 80.14 33.95 18.12 62.27 43.87 17.75 68.27 78.72 94.05 31.99 64.51 95.38 92.57 57.36 47.59 63.48 25.74 3.05 70.31 26.39 12.42 91.11 2.89 9.57 25.40 6.54 58.76 76.67 74.66 13.51 15.13 0.90 62.63 64.08 71.03 73.20 76.81 69.53 66.42 50.83 28.20 92.61 98.87 59.99 41.56 34.46 91.67 91.16 95.02 13.84 37.24 90.34 19.38 -32.57 31.61 78.50 69.27 25.18 2.21 9.32 26.20 11.21 74.19 23.15 75.31 95.80 16.50 72.89 62.74 96.97 97.86 32.70 12.37 73.47 55.74 8.05 47.42 50.29 78.87 7.04 41.61 90.93 88.03 88.58 32.58 47.25 83.85 87.11 88.35 75.19 65.14 60.66 12.05 30.55 98.96 98.68 41.39 68.72 61.20 75.64 97.97 10.11 5.10 31.64 4.46 84.63 56.65 87.42 93.97 80.40 30.93 92.76 7.16 65.97 20.68 46.35 61.33 94.41 29.12 93.47 43.06 15.20 74.37 82.42 42.46 24.98 12.66 3.53 15.83 57.27 91.18 95.92 48.24 70.01 63.38 52.42 37.37 97.70 34.90 26.14 51.63 61.58 71.00 33.29 88.30 25.35 71.86 24.03 52.71 7.07 21.60 69.16 43.51 -58.53 48.96 71.74 0.17 73.49 56.48 82.42 94.54 76.75 7.58 41.84 74.62 99.16 36.76 80.00 12.16 36.40 39.55 81.71 93.80 44.74 11.87 81.34 16.75 95.54 81.35 95.82 16.25 6.74 72.42 65.70 59.22 54.50 80.70 32.31 95.56 13.18 6.14 52.90 92.20 89.59 47.77 35.30 97.78 49.85 6.95 42.79 66.81 3.17 20.45 27.79 37.18 0.88 54.71 63.42 75.64 65.82 10.22 89.24 31.79 92.57 16.74 62.78 39.42 95.42 7.48 41.36 86.08 48.35 63.25 22.68 61.53 7.89 7.63 78.58 29.31 21.39 96.90 45.37 80.52 21.18 95.28 81.30 74.97 57.02 72.98 70.32 17.06 71.29 29.51 80.71 72.01 80.39 64.28 79.27 57.03 44.51 26.37 42.42 99.40 -80.55 7.23 76.04 2.03 2.02 69.13 1.38 38.00 71.44 63.88 30.56 77.44 82.38 31.60 36.50 44.49 77.51 67.91 67.07 38.97 55.98 42.78 59.79 94.21 56.70 14.53 82.45 84.25 12.20 26.86 95.75 52.60 53.33 95.54 15.00 81.26 66.51 97.92 0.35 76.31 26.45 14.16 87.09 72.42 93.23 99.20 95.49 35.32 76.30 10.51 65.16 58.90 60.77 60.87 90.84 33.12 26.09 82.22 4.48 99.34 42.72 92.32 28.61 83.58 93.88 53.12 58.75 29.04 68.25 76.49 55.94 91.07 5.20 58.29 65.17 49.09 83.02 57.79 47.32 54.90 13.34 0.20 80.22 22.94 70.89 60.35 94.06 60.50 33.90 45.00 44.85 65.49 16.94 35.58 15.53 52.43 59.86 65.12 41.60 45.01 -67.27 38.63 60.03 54.90 22.40 78.72 76.07 33.15 25.35 46.78 53.31 12.20 26.52 87.29 28.60 42.91 40.84 13.60 74.70 63.30 92.36 3.26 68.44 51.98 83.73 23.27 95.67 0.38 12.06 89.62 48.55 78.19 24.11 93.52 3.43 39.91 14.99 63.83 27.87 63.85 89.04 62.37 37.85 60.23 79.25 75.84 54.74 35.35 9.15 29.22 90.40 34.70 12.74 68.02 59.66 7.07 47.29 53.92 9.74 31.63 68.86 23.81 30.57 73.93 99.13 60.23 33.04 45.89 92.39 5.77 87.16 68.08 91.50 7.87 79.00 42.61 22.40 15.89 79.49 77.99 14.93 31.06 49.80 42.13 90.86 76.67 72.13 76.90 42.63 97.08 47.03 73.51 0.58 93.48 93.76 96.74 96.26 20.80 31.88 99.06 -10.32 28.46 23.51 17.55 38.07 20.35 72.05 44.04 12.73 48.23 36.73 35.83 81.90 8.69 80.73 85.54 78.02 27.31 56.83 6.06 82.74 27.23 99.75 77.36 34.63 58.04 67.35 48.36 41.34 91.49 26.85 38.68 96.05 48.17 7.28 89.54 95.61 67.04 2.74 1.08 12.69 97.72 37.15 57.49 44.67 64.59 47.74 44.22 59.55 29.48 90.73 91.58 35.09 49.24 59.20 100.00 60.53 91.18 14.59 29.44 55.78 40.71 91.14 42.28 99.43 56.03 30.82 70.90 14.77 39.05 81.40 98.85 41.85 20.46 90.61 45.87 1.41 16.42 71.65 80.56 51.19 44.48 72.13 94.60 38.78 83.89 17.43 5.93 33.78 13.16 39.35 73.59 93.78 52.03 25.21 79.58 91.73 76.10 93.29 90.72 -40.43 43.04 62.33 97.46 73.80 70.50 61.21 15.20 7.90 28.51 42.02 22.00 14.58 60.58 55.51 26.88 82.35 19.90 11.33 71.14 7.47 73.02 55.94 61.92 77.70 59.26 90.05 64.72 86.08 23.93 45.30 20.49 66.70 57.06 3.04 69.06 63.53 76.69 59.37 86.66 71.09 31.29 24.11 43.43 11.82 6.63 63.33 59.74 18.21 33.29 3.28 8.59 35.61 78.52 28.11 61.53 63.96 1.78 43.85 17.70 29.13 12.85 1.65 29.30 89.87 10.55 22.09 49.38 67.11 82.47 93.16 32.31 73.44 19.24 63.80 76.25 27.88 89.96 45.36 26.99 25.36 3.18 73.13 0.13 65.30 18.06 76.01 3.76 61.94 38.71 71.82 0.84 73.56 71.72 86.24 62.99 43.07 75.05 74.79 52.44 -51.35 36.60 75.49 91.17 52.25 68.44 68.36 68.44 44.55 98.09 82.49 29.94 18.33 23.93 21.80 26.50 37.00 36.61 72.28 81.93 42.66 30.25 35.16 8.90 90.88 34.27 27.88 67.26 52.94 76.71 16.76 67.64 56.13 26.83 38.55 79.48 65.27 86.17 95.49 57.07 1.37 90.23 75.75 99.02 71.60 36.93 57.49 35.22 88.22 6.41 87.16 5.27 18.59 34.47 34.12 33.09 98.57 61.92 35.16 9.29 33.91 58.31 20.56 7.28 0.17 64.10 72.91 53.37 58.82 89.51 38.46 60.66 69.77 54.53 44.61 80.38 50.50 65.53 16.79 16.99 83.10 79.27 79.83 33.58 38.88 56.13 83.85 69.45 86.56 4.89 89.79 29.24 81.77 2.19 63.94 25.67 2.15 96.34 92.92 74.73 -34.06 72.97 61.97 93.59 32.28 83.60 1.73 63.61 41.72 15.31 20.43 16.87 81.24 54.76 67.96 3.53 58.41 34.89 27.81 57.27 96.96 37.97 13.60 89.81 92.37 22.42 53.74 97.08 91.28 58.13 37.58 61.02 3.18 31.60 23.88 60.86 76.33 98.28 4.84 51.07 81.81 14.18 3.25 44.80 76.80 78.48 83.54 30.64 10.53 16.67 30.60 17.02 24.54 91.52 77.69 43.59 69.76 74.48 62.75 11.04 59.36 12.96 76.54 72.53 45.43 8.82 1.41 24.60 94.37 23.95 42.03 32.06 68.35 4.16 80.57 9.79 14.24 84.66 50.02 41.88 71.29 12.01 15.32 14.60 73.90 89.30 62.56 3.24 11.23 76.17 18.71 46.10 55.77 27.51 95.54 6.07 76.00 6.09 23.64 59.60 -98.71 2.21 87.22 1.12 31.17 77.52 63.97 52.44 78.41 13.21 12.01 81.38 51.57 29.80 22.61 41.46 44.94 59.98 26.17 60.77 89.60 49.88 52.44 16.37 91.12 14.22 32.89 86.93 86.38 41.82 64.85 71.27 4.45 66.92 51.18 24.10 84.89 49.79 7.20 60.94 76.29 28.05 11.56 51.34 77.58 78.83 85.17 92.90 74.85 40.31 3.51 91.04 99.08 50.93 54.12 87.15 29.40 75.75 44.67 24.63 99.70 61.88 39.12 96.82 86.83 78.64 10.78 91.38 32.96 61.16 69.78 51.09 87.83 56.97 89.94 55.03 72.31 84.00 97.36 40.48 85.98 0.88 30.61 71.24 30.02 67.77 77.26 18.48 64.12 83.63 57.78 50.99 68.36 15.41 7.89 14.70 33.91 97.31 18.48 26.31 -39.42 3.93 96.41 61.35 92.45 42.76 32.65 14.28 94.52 45.39 92.49 45.53 90.98 1.40 98.20 61.00 34.97 50.31 41.44 25.71 1.92 22.41 69.04 40.47 7.76 38.33 49.13 80.84 20.91 50.38 32.73 66.30 57.37 74.94 24.71 6.72 70.26 25.55 57.27 3.92 42.15 29.16 68.55 82.25 38.48 97.74 74.28 7.82 40.09 8.46 88.20 34.09 86.90 26.99 45.41 43.39 56.37 99.91 49.09 25.16 37.08 99.66 45.54 30.34 98.57 58.12 22.86 96.82 1.15 48.72 19.15 77.42 90.27 48.71 56.91 0.24 99.49 60.73 40.29 43.57 65.42 22.64 78.70 70.86 86.76 39.56 53.76 32.05 52.10 85.32 56.61 88.70 80.04 43.66 87.11 84.41 79.60 43.15 4.10 72.81 -4.63 99.33 59.91 19.21 15.54 54.14 77.73 35.87 72.94 55.56 87.60 57.33 86.56 77.62 79.00 6.61 32.74 10.04 47.90 66.88 92.94 73.90 98.86 77.84 30.98 67.43 12.92 83.14 93.56 99.46 3.69 38.54 28.55 31.65 35.63 16.70 94.58 23.66 45.59 36.47 4.08 72.87 60.07 85.39 92.60 12.23 91.40 41.47 15.24 40.62 84.81 20.96 95.19 82.46 66.63 10.19 40.82 27.05 66.39 87.65 21.07 27.26 54.59 81.03 9.01 14.31 37.83 76.55 5.70 97.42 73.60 26.95 44.37 10.05 66.87 1.72 89.07 6.90 5.90 22.47 97.76 43.50 35.15 52.44 3.76 17.31 96.55 26.31 57.94 20.58 51.91 56.40 93.69 16.58 98.33 77.39 63.97 76.51 60.47 17.26 -25.65 81.42 87.78 2.27 89.44 84.67 51.00 30.77 45.36 40.92 31.34 47.79 32.64 36.11 43.75 41.90 45.02 63.64 6.04 0.55 62.46 27.90 24.66 72.91 16.47 61.32 20.76 78.58 93.51 11.09 72.06 22.39 47.49 54.49 42.92 23.72 0.54 80.43 47.40 64.69 78.49 89.88 40.54 17.73 23.54 15.00 32.07 59.71 60.09 86.25 97.09 68.92 0.58 2.30 12.23 34.43 39.01 54.33 0.57 87.91 84.04 62.27 0.33 52.12 60.49 74.32 98.44 63.17 33.93 27.54 64.97 21.61 53.50 9.82 11.61 9.09 28.27 31.40 30.21 24.28 32.85 94.36 51.98 73.78 95.32 37.42 83.74 16.74 15.46 93.30 26.78 32.01 94.78 75.60 54.56 9.27 30.63 54.51 13.70 36.53 -59.39 33.95 71.43 96.59 30.03 19.77 7.90 22.11 84.32 75.10 82.23 91.31 72.71 67.05 68.20 32.46 95.47 6.09 51.54 42.08 16.33 24.51 50.51 73.75 22.75 86.37 46.25 12.52 10.29 45.30 83.43 8.00 14.24 7.12 48.33 65.93 50.78 32.16 92.07 23.97 77.64 87.07 94.74 19.41 36.01 77.82 76.37 23.87 26.65 19.89 1.69 49.36 44.70 27.34 90.49 82.98 56.46 38.41 68.19 8.48 50.21 9.22 61.11 43.03 76.20 55.38 46.14 88.84 59.44 83.98 81.84 18.20 17.25 10.53 53.33 86.15 76.46 23.58 91.35 45.77 50.34 5.56 28.09 29.19 41.25 90.06 53.25 81.72 93.62 92.80 43.72 9.73 63.17 35.73 57.76 18.37 82.21 36.07 71.89 26.40 -77.81 81.37 32.85 48.97 66.79 92.48 46.39 69.45 63.82 9.20 13.99 45.34 27.99 73.16 12.72 76.64 57.47 7.85 44.64 91.40 99.96 33.58 57.43 17.23 73.63 96.85 65.70 15.09 45.52 6.29 82.55 78.17 59.86 86.40 95.56 23.12 20.79 28.83 89.26 27.46 64.29 58.32 38.95 2.07 70.54 59.59 87.02 43.05 45.89 27.16 11.41 50.11 69.89 79.79 27.09 46.04 42.16 84.22 52.87 21.49 91.61 18.51 1.42 23.90 25.74 12.80 89.90 86.33 29.36 17.86 78.87 18.04 19.53 50.04 72.57 48.55 36.70 99.41 37.99 44.15 32.32 59.40 5.63 51.01 43.97 34.72 67.88 41.12 10.65 77.91 8.29 3.96 35.06 5.23 39.53 18.24 47.57 59.12 29.60 63.13 -25.88 70.18 96.14 93.62 87.70 34.49 85.06 93.96 2.04 25.70 84.65 80.40 35.61 92.93 57.61 90.07 94.94 97.57 42.16 72.60 76.92 84.99 67.10 62.14 81.35 72.53 29.22 47.08 11.86 99.80 45.82 86.42 30.69 94.51 98.67 80.43 84.52 43.62 4.06 97.25 43.23 80.51 10.06 28.59 1.32 94.00 31.38 82.58 50.68 72.83 34.82 70.33 69.66 38.52 59.02 10.67 36.42 55.48 92.56 70.65 43.24 97.74 56.11 23.16 95.53 94.06 5.31 47.37 39.29 85.18 35.17 58.92 70.43 10.93 93.31 54.68 49.11 31.17 93.91 10.29 77.79 84.72 12.43 29.51 51.80 87.83 88.57 5.35 15.52 99.20 5.70 73.79 12.37 96.96 43.63 44.48 41.09 14.50 7.87 73.23 -15.80 20.81 38.73 72.28 62.10 42.72 72.33 2.82 39.16 98.62 5.58 56.28 13.47 86.51 40.17 83.31 63.72 63.16 17.12 75.38 52.53 16.45 46.24 13.30 82.48 69.79 92.64 11.16 4.10 81.13 92.88 52.34 47.22 77.51 45.41 57.79 0.31 39.69 69.52 26.34 55.91 94.97 92.58 84.46 92.60 11.64 26.46 47.33 33.74 99.63 24.74 70.68 1.16 16.60 34.03 52.75 45.04 43.49 12.61 59.67 80.36 81.14 84.11 57.49 47.31 29.20 99.46 79.29 18.61 90.01 39.33 45.82 50.57 13.63 99.39 65.08 27.60 47.86 98.25 8.36 66.24 89.96 16.56 70.01 46.35 19.68 85.69 99.01 28.96 44.56 14.42 62.76 49.17 89.34 50.54 16.60 36.28 51.02 55.87 77.42 -6.17 63.48 87.75 94.03 62.53 78.56 91.55 68.56 59.83 57.50 19.87 13.75 56.01 77.73 48.57 12.89 22.84 17.87 7.64 30.67 24.40 81.93 46.04 21.68 91.82 13.96 41.50 60.83 38.04 23.46 68.27 27.43 20.16 85.60 53.35 33.33 52.54 35.88 11.79 94.03 6.87 79.28 3.04 55.39 81.05 85.05 78.59 16.69 31.48 23.77 46.35 72.10 67.43 54.32 90.80 75.60 53.81 84.05 85.57 23.55 73.86 61.68 84.82 5.01 37.60 99.04 87.38 6.13 64.21 46.16 97.20 32.19 76.12 88.85 7.21 91.06 51.81 17.28 71.60 53.05 99.72 6.40 14.24 73.65 89.05 51.62 15.97 31.24 6.82 10.44 74.67 74.42 91.61 21.81 28.78 26.38 29.24 52.94 18.88 66.07 -54.82 90.62 94.86 49.19 66.63 97.95 77.99 44.15 68.09 65.22 18.56 90.12 85.88 24.11 33.70 89.07 89.48 20.14 36.04 26.13 63.01 13.11 61.13 85.95 50.58 33.45 94.40 19.08 93.55 70.18 48.16 84.31 61.78 5.18 65.34 51.21 34.45 35.79 29.48 92.62 84.44 83.54 18.40 66.10 9.27 66.08 55.84 73.76 60.29 57.44 69.21 40.32 49.79 70.86 19.85 21.07 35.76 89.67 59.61 30.14 98.91 72.56 36.51 12.91 63.73 94.10 45.89 94.01 60.51 32.99 23.66 82.35 99.48 7.88 25.93 9.95 53.27 25.34 64.92 18.63 10.34 25.86 6.23 97.55 94.21 72.07 96.42 0.15 72.22 92.58 99.90 89.18 49.19 74.19 14.04 74.23 84.33 24.31 60.40 67.60 -32.63 85.35 5.47 45.66 43.95 34.53 78.77 5.92 97.79 5.67 62.15 39.54 83.05 73.82 52.46 57.92 30.14 83.60 38.33 71.09 12.36 38.81 10.49 59.13 34.69 24.85 45.30 96.62 10.57 82.05 65.80 16.02 18.29 88.56 74.01 98.03 30.36 41.92 10.72 42.85 71.23 4.34 10.05 80.49 94.01 58.48 1.14 97.47 21.32 77.22 35.28 85.69 91.45 6.91 59.34 65.69 43.04 64.37 30.51 86.82 61.40 54.17 77.89 11.75 28.41 8.10 31.49 87.18 33.60 90.10 5.99 25.46 58.83 19.55 5.13 73.86 56.23 82.11 68.60 51.82 67.42 33.30 97.54 48.83 92.72 37.94 13.34 98.33 92.53 21.20 4.95 22.26 4.26 17.07 12.42 21.37 25.90 61.94 30.56 65.18 -60.82 77.26 3.93 75.39 5.51 59.66 53.21 57.08 41.23 23.85 29.84 86.03 42.48 46.80 27.46 96.97 33.91 71.22 38.35 41.11 39.06 76.05 2.05 62.45 1.33 8.54 62.24 96.32 8.71 2.46 32.39 24.73 56.42 71.98 24.95 44.78 92.23 96.60 30.72 51.72 68.11 68.80 15.64 13.58 60.57 89.65 30.68 94.96 27.04 75.05 36.16 74.84 70.79 50.44 51.56 27.02 35.33 31.95 98.76 58.50 35.85 27.62 46.18 12.32 2.94 50.04 74.21 20.33 52.17 14.46 0.97 68.25 89.78 91.63 86.60 35.40 54.37 73.48 68.81 46.47 31.23 12.53 52.13 18.76 23.05 79.22 98.86 62.79 25.03 52.09 27.51 16.70 67.44 29.03 92.93 24.70 25.53 13.52 41.86 51.39 -16.86 0.57 48.26 68.52 8.86 17.40 62.62 85.31 30.14 49.66 72.96 16.98 29.39 22.92 37.51 5.09 36.90 28.93 86.92 59.90 54.45 55.68 18.34 41.58 29.22 8.86 78.69 83.43 67.62 4.77 95.63 84.10 93.79 63.72 38.32 54.78 49.75 0.45 57.88 62.19 18.66 59.93 22.24 12.38 9.62 66.43 44.18 57.25 91.14 2.99 58.40 8.82 87.78 29.53 19.67 21.04 86.20 57.02 4.27 47.88 87.66 1.82 95.26 71.86 56.66 94.41 47.50 43.97 0.32 53.41 35.51 45.95 73.13 33.84 65.95 56.15 47.24 15.67 95.27 17.18 74.06 85.18 54.78 47.88 74.38 95.67 86.67 66.01 58.89 44.58 23.84 11.97 45.78 60.00 5.39 41.61 86.72 60.27 31.13 85.93 -81.47 43.68 6.03 89.28 16.43 89.26 63.16 72.98 47.15 36.79 78.03 57.55 82.79 98.03 62.06 37.64 82.03 29.62 17.59 44.26 76.30 73.07 70.97 48.94 9.03 23.50 58.02 7.52 34.22 85.25 85.49 32.46 9.96 79.22 81.66 27.85 3.00 82.57 75.60 45.12 67.00 59.83 20.23 44.78 75.98 38.67 21.39 93.17 35.16 99.77 64.71 80.12 86.69 9.87 3.86 74.23 52.70 23.75 31.57 3.15 47.70 54.44 50.31 34.09 49.42 3.39 15.14 85.11 72.34 4.12 43.66 25.38 16.25 36.38 16.59 15.63 74.77 40.38 28.04 87.91 38.96 95.91 14.47 57.88 72.36 80.61 77.50 65.54 27.82 66.44 79.26 58.44 83.50 0.04 54.74 37.41 36.87 80.61 74.28 52.38 -57.31 43.94 69.66 84.12 63.31 86.24 26.37 41.77 14.72 18.47 83.87 48.64 65.02 35.75 28.87 37.10 63.68 95.47 3.82 13.12 2.49 55.39 56.24 38.52 26.48 90.75 87.75 10.93 33.91 80.95 92.92 83.94 67.69 27.18 91.15 38.03 61.79 53.40 49.42 27.33 90.49 91.88 51.42 47.32 69.30 83.42 85.07 49.46 75.84 3.91 14.21 42.82 82.24 49.03 93.12 94.14 98.23 59.93 52.70 68.42 13.76 76.06 87.58 88.83 72.15 2.88 21.00 11.38 98.65 79.02 56.66 54.87 60.87 90.43 14.66 33.93 28.49 83.01 74.18 87.63 80.60 14.43 68.19 64.08 50.72 67.70 25.94 20.21 30.00 3.44 28.47 91.66 78.60 10.61 24.29 63.96 55.76 91.27 13.61 72.30 -79.17 54.60 8.51 86.60 93.59 25.87 61.79 66.85 87.42 84.17 32.79 44.19 69.73 38.42 71.94 46.38 74.57 72.44 77.42 5.68 23.61 79.00 68.05 37.34 7.44 95.16 49.37 5.93 64.00 88.45 44.82 10.24 50.04 96.14 34.92 20.63 92.17 87.05 60.92 21.99 34.54 60.16 95.60 50.80 51.71 69.87 28.99 75.72 85.52 6.87 10.33 69.64 10.19 66.96 54.83 93.28 58.22 23.50 23.64 62.11 95.61 11.36 95.10 34.82 73.32 43.72 65.68 24.28 68.64 81.56 90.84 69.94 48.68 82.50 97.97 20.47 27.74 56.97 90.93 93.12 76.82 43.31 24.68 37.54 12.62 8.09 10.41 94.96 19.96 33.73 36.92 3.24 39.27 14.49 45.00 70.09 79.74 68.94 3.91 8.16 -91.30 55.38 96.45 26.21 6.32 65.97 70.30 36.41 80.83 31.96 29.32 60.27 6.30 89.26 11.60 32.28 85.91 56.23 56.23 16.04 48.52 86.16 12.77 79.07 45.76 70.05 95.23 8.35 83.47 70.60 93.04 87.00 91.96 70.09 58.11 6.41 28.46 77.87 65.26 6.62 77.61 3.80 59.83 91.39 61.30 90.68 28.23 55.05 17.95 40.89 54.38 53.03 2.41 39.74 83.14 77.20 64.55 88.91 91.57 72.31 23.51 8.23 25.89 21.93 36.28 88.13 78.02 52.19 73.66 80.57 79.91 25.24 69.75 50.03 88.24 2.24 78.77 62.45 79.66 70.92 6.65 67.25 77.68 96.65 74.87 47.74 33.97 3.25 31.62 55.00 66.94 23.18 31.47 66.64 23.99 58.87 24.93 45.85 21.87 15.70 -41.19 97.47 6.62 12.92 46.76 34.51 17.28 18.71 73.96 24.77 75.77 31.35 59.60 62.01 55.74 89.89 36.50 30.43 41.14 19.60 58.28 12.31 24.49 22.12 35.11 50.48 37.67 22.03 75.47 36.07 83.31 54.31 23.72 44.81 50.19 19.16 21.36 1.04 56.25 30.99 37.05 2.27 57.63 7.84 64.82 4.75 51.75 57.15 38.06 70.56 73.15 68.45 1.21 58.23 73.63 65.92 33.96 1.28 77.63 24.01 26.34 76.25 92.16 72.09 14.79 78.83 47.64 0.51 73.71 86.10 16.08 30.09 18.46 31.32 62.56 96.91 54.41 46.59 55.11 94.69 63.46 51.35 26.59 81.60 99.57 44.89 28.24 84.14 49.40 42.46 64.16 87.51 39.95 11.30 20.17 73.55 89.14 9.48 6.50 58.62 -38.73 92.53 47.48 58.40 4.68 25.39 65.66 57.71 8.49 88.38 74.06 56.00 1.59 51.02 1.61 21.36 81.17 47.54 55.41 33.75 87.48 55.74 88.30 14.23 62.16 59.51 67.78 93.25 94.44 86.39 83.97 80.17 36.49 66.68 38.99 26.51 49.45 89.16 68.03 46.43 92.55 29.55 22.05 34.38 24.55 93.83 66.66 71.91 45.00 54.30 94.61 90.07 32.95 50.12 38.16 71.02 65.60 100.00 48.07 94.83 5.01 96.54 75.35 38.37 89.34 43.21 89.92 91.77 4.50 47.70 60.34 6.55 69.38 82.60 80.93 56.42 61.43 91.76 77.81 98.23 21.37 9.21 56.07 98.43 66.81 24.66 21.54 55.01 2.38 5.25 56.19 84.81 85.85 26.07 62.34 97.52 63.46 28.68 49.23 70.70 -91.30 37.67 28.71 9.01 84.50 70.64 83.42 20.55 72.69 30.87 89.09 46.67 8.63 60.58 80.53 7.08 30.58 68.82 85.56 75.53 3.65 19.13 6.29 10.72 94.82 62.54 34.36 58.29 74.16 49.93 64.38 94.99 90.87 33.31 47.96 41.21 33.75 79.06 11.78 13.15 96.16 41.33 41.19 12.51 92.67 67.69 13.85 38.94 1.09 62.44 98.94 64.98 89.88 1.63 64.05 91.86 81.35 1.82 33.88 42.18 19.97 44.53 2.83 86.04 23.87 83.44 35.55 9.35 34.13 40.28 53.76 29.91 74.17 75.95 49.83 25.07 56.45 68.67 35.07 61.49 49.31 0.26 33.47 74.89 78.74 31.21 83.76 19.32 41.95 16.61 36.48 82.58 93.93 83.14 30.28 89.59 93.33 23.81 10.83 23.13 -4.94 19.94 67.98 29.38 8.48 44.28 90.66 98.32 25.32 33.57 20.69 53.49 90.57 90.13 94.63 1.44 60.33 77.20 83.94 48.91 39.01 74.92 16.36 35.50 49.84 0.63 86.79 45.70 13.12 35.56 41.76 0.29 26.47 37.48 71.84 69.10 21.45 28.51 88.39 37.29 37.10 55.60 29.10 61.15 76.05 72.78 22.23 89.76 16.08 20.01 30.17 28.62 44.14 87.35 43.14 43.22 32.76 8.56 89.35 84.53 49.30 69.15 66.57 11.82 39.96 32.80 28.03 82.63 55.15 63.29 37.61 42.56 44.61 49.45 22.66 76.51 44.17 14.27 31.25 20.24 9.27 22.16 3.22 38.48 58.45 7.84 99.43 44.27 3.03 37.07 80.98 53.65 79.77 78.72 13.31 91.42 28.23 71.04 43.04 4.59 -71.07 85.09 70.63 14.38 12.75 45.81 86.88 14.01 55.70 49.38 48.68 27.78 97.90 68.36 30.09 17.01 95.02 42.44 35.65 65.80 95.33 63.03 45.14 0.08 73.29 93.98 90.84 15.84 47.09 22.63 64.93 63.55 41.52 71.51 85.44 21.61 26.67 1.34 95.03 72.99 35.60 75.17 31.79 17.33 7.10 25.49 49.53 10.15 76.23 42.53 63.04 81.04 58.12 3.66 89.50 91.15 23.80 41.16 86.19 40.78 13.93 85.90 19.28 82.00 71.72 50.73 60.83 59.05 94.21 33.80 50.94 42.90 43.14 72.14 79.63 84.41 67.58 7.65 83.94 90.42 17.29 77.17 53.77 77.33 88.34 58.41 69.30 76.83 42.18 13.06 15.90 70.99 97.14 53.30 89.39 45.72 33.29 59.51 99.31 17.37 -65.31 9.48 65.33 47.35 73.72 23.17 40.54 65.56 52.79 93.83 82.13 5.97 65.37 43.26 43.17 65.48 23.23 45.02 6.77 97.82 5.41 18.13 1.79 86.75 3.56 96.88 28.74 35.57 90.12 41.84 71.55 33.73 39.20 49.83 30.35 0.56 52.41 52.61 81.08 1.01 89.05 59.29 94.78 35.65 55.41 44.08 81.15 64.45 62.96 66.89 79.74 52.25 27.65 97.95 85.55 45.24 79.54 75.56 81.35 46.70 72.39 27.92 89.86 29.39 81.37 63.87 96.58 36.32 58.96 0.49 72.77 8.06 2.47 29.25 32.10 63.27 2.17 15.00 27.04 23.61 25.91 63.56 52.99 18.96 34.72 66.50 64.57 90.43 9.11 51.84 88.56 61.19 44.61 74.83 43.75 82.72 16.89 51.89 41.15 14.98 -61.86 15.28 22.95 71.33 97.71 1.77 63.07 97.34 47.56 27.23 25.07 97.64 81.16 94.10 51.10 65.72 49.45 21.41 18.76 97.75 96.78 59.95 43.24 7.38 92.67 60.10 3.08 15.25 12.09 80.28 41.10 58.18 52.53 90.63 93.83 31.25 0.82 95.07 12.09 65.49 5.16 35.05 24.94 45.55 35.61 10.10 18.69 12.57 99.29 91.76 4.62 88.47 90.74 52.92 26.15 32.25 0.37 51.85 15.42 6.24 57.67 20.52 54.27 99.83 44.73 0.26 2.17 83.51 89.11 62.29 46.92 9.39 44.86 58.56 46.56 80.21 79.03 13.57 88.13 4.28 97.65 74.68 36.49 36.54 52.37 20.57 40.81 82.85 99.27 54.08 91.29 36.95 78.46 69.53 0.40 35.71 37.26 3.42 6.86 56.72 -58.52 78.66 77.88 26.29 35.03 88.53 66.90 68.16 15.27 83.29 56.07 71.07 67.88 26.84 11.00 69.17 32.62 93.47 76.37 74.89 5.59 27.98 98.63 42.43 55.28 0.13 66.29 20.76 25.19 57.48 94.02 62.09 84.58 81.54 27.12 74.17 95.26 28.86 53.79 4.65 36.64 52.68 71.20 62.44 5.90 24.60 79.14 4.86 71.73 66.35 30.88 37.32 93.02 17.23 63.47 27.44 90.46 10.70 22.07 10.49 36.73 16.71 80.37 94.23 85.41 82.88 59.03 3.81 19.67 30.47 24.36 30.04 28.14 91.70 91.33 36.80 47.29 28.27 21.28 48.89 75.62 40.70 81.43 11.22 97.25 82.27 55.18 33.23 48.33 89.20 4.66 36.32 60.55 5.88 25.60 69.79 2.09 57.71 35.75 29.90 -81.90 69.87 18.46 84.97 47.64 77.04 97.73 19.05 45.77 37.53 24.83 29.09 24.22 26.19 86.76 17.50 40.62 89.72 32.00 9.99 93.31 68.93 21.31 53.57 21.15 85.67 98.59 61.86 78.85 32.72 11.94 66.50 80.42 24.26 18.97 39.05 20.25 75.19 8.60 2.67 39.84 18.77 56.79 36.31 5.72 39.61 17.25 87.92 50.33 5.06 66.68 1.45 64.88 79.71 53.02 31.88 50.14 48.25 5.66 69.33 17.72 63.62 23.78 65.14 24.11 99.42 30.73 69.62 66.26 99.66 88.10 0.29 54.05 5.39 80.97 64.61 34.50 57.31 0.07 93.46 79.31 87.69 9.48 21.29 70.22 51.75 41.19 85.52 16.82 89.29 2.31 41.26 32.54 67.46 53.55 50.70 70.86 93.38 13.95 50.13 -32.42 19.22 93.35 47.53 12.47 52.38 40.84 86.22 87.02 39.92 32.38 29.37 82.86 31.13 28.42 60.83 35.88 14.75 79.25 10.67 91.00 17.57 30.17 98.76 16.16 72.00 78.86 20.86 75.47 43.50 14.44 98.26 53.17 29.10 25.39 30.56 11.07 6.36 54.55 83.33 87.21 70.88 62.01 89.06 91.94 1.80 50.93 28.14 18.72 44.06 99.41 54.83 74.42 38.17 72.95 86.78 8.37 94.46 21.12 25.88 24.38 82.48 7.72 29.56 94.07 15.67 85.56 34.36 87.24 59.96 59.81 6.62 63.85 15.86 43.48 75.36 41.64 14.12 8.94 68.46 96.75 77.32 98.88 31.45 76.73 81.08 15.81 49.80 63.60 51.58 13.86 2.49 69.02 94.65 31.53 88.83 96.99 69.58 79.05 83.02 -12.60 71.37 18.79 39.47 68.94 15.73 32.44 86.19 18.10 36.60 81.72 66.55 32.84 14.38 73.75 43.10 72.77 77.93 1.59 11.39 39.09 5.93 85.38 95.71 42.74 97.10 44.20 92.65 75.22 44.05 56.20 47.02 37.52 16.42 31.61 95.25 86.23 20.13 64.93 79.33 28.11 34.01 29.53 14.37 63.10 10.37 34.47 61.35 27.66 24.17 46.83 95.44 67.30 56.04 71.99 3.69 27.96 61.52 13.57 61.07 34.18 51.71 69.85 47.38 12.79 97.21 29.78 73.60 66.05 78.33 88.87 75.33 88.77 88.14 55.18 87.18 82.19 18.22 68.49 43.29 49.40 73.83 51.87 12.71 58.09 96.88 78.91 44.60 54.30 64.98 21.24 76.61 30.09 73.49 0.84 10.68 43.05 2.80 91.90 3.19 -11.78 80.08 53.59 84.94 80.67 26.03 56.21 48.28 76.80 10.18 6.81 24.62 58.01 83.59 65.35 80.24 35.03 93.23 98.32 34.48 98.43 50.52 31.22 31.47 40.88 30.40 69.78 25.85 11.11 79.65 70.67 85.80 71.21 16.75 35.98 29.62 64.61 82.81 7.39 49.83 61.92 50.09 80.18 58.32 23.51 66.62 12.27 22.46 2.73 46.50 66.04 58.96 26.01 90.29 93.69 22.95 15.46 6.39 86.39 32.92 0.31 3.65 28.61 28.05 63.67 39.56 96.76 59.02 84.89 65.25 81.10 56.16 28.31 83.71 11.69 44.91 25.57 84.44 33.28 37.03 43.83 13.55 1.37 6.03 52.88 78.16 41.84 82.75 41.71 91.71 7.16 48.79 38.29 71.58 19.23 69.55 12.01 15.62 0.16 67.15 -92.16 38.19 46.46 46.97 78.77 62.00 93.82 7.87 96.32 83.30 69.13 40.10 13.44 56.39 49.20 31.59 73.64 69.78 60.27 95.61 10.68 34.25 95.26 33.92 88.49 48.87 70.65 84.77 3.53 86.57 46.00 9.14 95.49 64.52 61.56 18.73 37.35 23.89 92.54 2.30 45.14 70.86 94.90 62.86 42.61 0.84 1.05 78.23 64.69 75.07 33.93 21.77 73.76 41.86 75.52 22.17 17.69 39.59 71.26 2.10 87.57 62.95 89.03 96.92 2.65 38.38 83.88 5.28 68.59 61.34 11.29 67.40 29.33 92.38 6.47 44.47 3.17 50.21 96.51 95.34 37.30 19.59 97.97 55.69 68.78 67.24 51.21 38.07 91.30 55.76 67.78 21.17 25.85 41.77 4.90 7.26 35.75 20.99 36.04 6.81 -68.84 46.01 81.34 49.53 49.49 59.69 98.83 64.41 27.89 37.21 42.46 69.68 17.06 23.63 32.87 27.91 12.35 76.04 53.96 51.25 1.05 58.51 87.15 13.83 30.41 74.05 93.17 91.95 44.70 67.51 27.53 66.50 74.15 2.98 47.85 75.02 60.82 57.19 26.63 53.36 30.99 55.51 71.29 5.77 5.09 65.85 77.30 80.85 88.82 82.28 23.05 12.53 72.60 11.64 72.07 80.61 74.24 96.96 83.16 65.37 47.72 77.10 94.78 20.58 78.52 23.21 45.76 99.09 79.43 58.63 6.00 73.73 75.01 28.06 85.88 21.80 76.79 43.88 2.63 89.42 25.17 99.32 1.52 43.28 38.82 78.59 62.23 63.35 44.05 78.98 20.79 56.21 80.17 16.89 72.63 42.77 61.59 39.40 10.07 84.32 -57.98 29.63 44.78 58.43 4.86 33.48 26.16 35.24 51.78 2.11 96.78 0.26 43.53 92.95 33.63 20.80 48.20 69.27 29.14 52.45 60.23 1.55 70.17 64.10 72.07 47.52 87.40 35.38 35.15 37.96 6.33 67.12 45.93 15.78 92.56 3.89 82.58 65.63 5.81 20.74 66.99 60.53 75.12 95.33 35.62 25.05 43.01 17.06 31.05 10.28 94.14 21.26 67.51 24.83 88.48 57.35 73.44 40.70 15.46 13.44 11.41 43.68 40.11 94.07 93.45 38.95 73.09 22.64 7.71 34.05 92.21 66.68 98.00 67.81 20.55 37.45 82.19 41.91 54.80 52.16 55.26 41.95 78.36 30.81 82.88 92.55 22.18 91.46 54.55 96.10 26.85 36.00 62.69 89.71 32.26 81.98 30.81 35.84 54.52 13.40 -37.40 83.50 47.41 26.57 69.61 18.47 23.77 54.22 7.34 9.13 40.38 3.42 12.45 82.80 44.99 75.22 65.18 22.18 34.60 59.58 8.21 51.27 22.23 76.69 31.09 62.99 30.05 43.72 79.97 17.36 48.20 18.11 41.32 14.70 76.48 88.45 67.29 23.52 33.80 50.13 11.97 72.84 77.47 82.16 44.95 20.55 73.93 32.40 76.65 59.00 83.72 74.89 5.15 39.71 63.87 68.60 88.64 94.43 51.14 6.66 71.04 7.99 4.14 43.34 58.09 42.72 63.51 97.29 22.93 11.66 43.89 29.87 94.23 57.17 59.96 59.74 91.82 96.07 5.97 68.73 89.61 10.60 45.62 95.18 23.72 66.11 96.37 8.21 61.25 35.29 85.99 17.63 41.32 78.26 70.24 3.49 95.17 30.98 46.15 96.88 -92.47 22.00 48.84 7.83 51.07 75.12 84.66 58.40 12.01 98.69 12.28 79.16 78.54 54.28 87.23 14.64 86.72 78.57 73.82 18.41 38.03 28.19 75.44 65.40 25.60 13.20 81.61 12.17 48.15 35.83 47.22 87.54 72.33 11.34 54.32 31.20 91.46 92.76 80.40 26.52 77.45 93.42 10.62 9.23 50.42 66.88 4.84 67.63 23.47 98.80 93.29 76.76 39.36 36.20 68.12 53.62 32.32 84.69 71.42 96.94 68.45 8.97 90.91 13.14 18.56 17.73 55.31 86.48 38.88 2.27 62.70 11.15 71.94 36.10 33.80 56.21 6.89 34.86 40.48 10.43 32.31 60.85 52.72 10.95 20.68 24.07 85.07 55.83 23.78 53.03 86.68 28.96 2.61 25.42 79.19 24.61 89.73 98.50 70.32 38.43 -80.18 39.09 88.55 45.30 49.74 37.55 28.14 45.43 1.76 28.39 93.38 5.27 91.82 63.30 63.56 96.33 22.27 69.38 96.66 67.03 95.73 41.15 9.77 53.28 56.53 70.76 57.28 54.39 60.09 17.97 76.44 59.38 39.14 17.07 72.79 53.49 53.94 78.26 10.64 95.72 82.39 34.32 87.20 95.32 65.42 80.12 91.80 93.14 90.96 95.82 94.71 68.70 71.64 5.67 87.18 69.62 60.71 27.18 72.22 89.46 52.25 60.14 15.65 55.69 48.23 4.34 7.21 39.82 76.80 57.71 92.13 98.21 30.94 13.61 27.79 4.52 35.96 58.13 32.46 75.97 92.27 94.29 79.52 43.82 56.63 14.75 17.75 9.61 32.78 65.23 75.20 46.68 7.40 55.29 87.23 49.99 51.39 90.23 14.48 80.57 -18.02 39.76 25.35 75.70 10.93 60.32 8.50 48.61 8.73 56.16 68.54 47.56 18.32 76.70 25.97 74.16 11.01 64.74 99.69 96.76 5.83 26.30 13.29 65.46 42.22 3.19 43.55 72.63 21.16 70.70 72.65 94.59 34.18 11.99 27.47 0.69 0.08 51.11 33.97 18.05 55.34 10.59 42.67 12.11 77.58 15.68 99.81 13.05 64.96 35.21 13.73 18.05 16.00 14.44 40.69 39.45 75.33 35.46 12.44 90.73 30.84 21.24 38.34 77.55 46.67 43.81 82.70 27.73 33.78 20.10 1.32 81.91 12.35 82.06 38.82 72.28 70.71 89.81 50.47 82.69 88.67 61.61 30.32 6.18 8.60 38.60 44.73 3.35 89.17 4.22 87.34 97.35 94.14 23.04 85.88 74.71 14.05 55.30 71.61 63.57 -2.81 18.42 79.18 21.01 41.38 55.72 23.58 22.69 44.24 40.38 98.52 56.28 3.47 29.32 40.55 8.43 20.39 48.41 65.73 6.34 14.07 94.11 17.96 88.35 21.73 38.19 77.24 74.50 24.39 18.35 2.93 35.04 4.26 50.10 14.45 19.43 78.34 66.75 17.63 67.43 94.50 29.45 91.46 22.76 37.42 15.17 90.52 4.14 2.87 92.35 68.68 77.21 4.69 70.53 24.10 71.39 65.77 51.33 45.14 5.43 26.82 24.10 49.02 94.01 7.39 12.07 68.05 33.99 36.31 92.26 99.80 36.16 18.55 46.01 2.11 46.82 65.01 65.58 32.49 88.80 80.55 69.70 72.02 94.74 8.82 96.23 95.64 68.74 79.16 80.80 9.29 22.64 88.88 94.22 75.43 67.54 65.48 34.80 1.14 4.68 -97.26 31.51 73.18 94.22 46.62 98.00 83.26 35.89 30.02 50.25 70.60 54.52 32.59 27.28 73.62 26.58 77.41 53.38 31.00 85.56 23.97 45.75 87.18 13.68 33.68 81.15 44.77 37.68 75.69 44.16 34.47 50.50 80.13 78.78 5.16 13.09 48.09 16.44 95.90 37.71 51.15 20.89 33.46 43.88 60.89 81.43 95.37 57.09 17.66 59.19 86.69 56.32 8.45 57.53 98.93 22.75 68.57 61.48 72.11 6.30 73.04 17.10 5.83 71.25 7.99 60.80 16.37 65.32 54.04 11.53 22.61 96.58 8.72 37.57 23.95 40.32 24.90 52.00 19.34 25.13 58.55 47.99 31.22 81.39 96.60 32.56 41.06 25.43 43.32 83.59 92.55 36.30 11.37 50.65 32.63 0.40 19.74 88.17 85.91 10.63 -75.66 45.77 37.36 16.97 53.43 21.61 88.02 83.57 30.76 20.22 34.92 0.16 52.33 10.92 88.49 17.14 31.68 26.44 55.41 91.18 87.21 50.11 76.93 48.31 61.42 75.23 83.05 83.74 39.07 65.94 90.06 74.33 71.02 89.15 96.79 91.15 69.62 18.57 57.02 95.93 8.10 60.87 12.87 10.71 29.89 20.38 81.53 11.18 44.92 50.54 84.48 19.63 54.84 19.24 62.54 91.85 45.21 93.74 4.06 0.84 81.10 50.09 77.92 11.74 85.39 63.74 61.12 63.13 13.63 60.78 11.28 60.07 87.73 69.03 76.98 97.71 57.74 65.03 83.96 26.81 48.74 49.18 3.43 89.88 29.28 6.98 82.82 27.59 43.94 29.84 37.74 95.88 65.97 27.53 29.34 3.39 13.97 26.09 68.45 85.94 -50.33 95.32 73.72 17.92 0.01 35.81 60.83 88.03 15.49 68.82 10.64 82.17 53.58 35.32 1.46 24.46 61.46 48.69 98.36 74.92 96.41 29.23 34.34 54.24 92.11 12.31 16.94 55.17 35.13 31.85 15.93 97.42 56.05 54.24 65.73 11.42 93.02 49.34 83.87 49.31 56.42 70.74 32.21 44.41 92.05 66.05 80.90 41.78 35.72 67.37 38.73 21.30 30.22 45.08 91.77 33.43 21.69 42.67 33.84 76.47 78.42 13.87 27.17 97.54 90.07 68.06 85.53 38.74 42.31 21.55 94.99 44.05 72.95 57.76 85.50 68.23 92.85 7.96 50.21 62.04 30.64 41.53 75.07 28.84 77.86 97.82 88.51 13.87 80.45 78.59 75.80 23.47 82.11 76.08 12.63 43.12 41.92 56.04 34.53 88.21 -68.68 35.82 89.15 22.84 69.12 51.96 72.33 74.08 45.05 2.97 62.54 28.12 22.37 26.92 41.76 34.16 25.53 23.39 96.69 23.06 95.98 5.53 46.27 65.86 46.24 13.75 95.41 52.57 97.51 57.11 80.92 25.33 85.26 50.84 27.41 22.15 41.17 0.64 84.31 4.19 62.33 69.32 87.16 13.49 56.64 61.65 17.29 32.72 84.37 53.73 2.48 62.09 57.13 58.49 33.46 57.50 91.19 63.27 92.79 47.04 48.36 52.32 0.91 41.17 80.64 55.48 39.57 63.58 37.75 15.95 70.18 49.35 70.24 77.02 98.71 58.85 86.22 30.92 55.09 17.83 62.33 53.04 54.92 54.60 13.09 74.75 49.40 62.20 98.20 95.31 77.46 89.61 3.42 20.88 71.78 75.95 97.68 77.39 12.58 3.14 -52.87 46.81 83.58 63.96 3.30 2.28 93.52 19.62 24.44 22.80 54.51 39.07 55.22 62.56 63.71 7.70 45.94 68.27 55.47 45.41 52.69 55.92 22.87 15.52 77.44 1.23 19.03 63.66 79.83 77.37 26.38 41.82 29.81 12.74 0.98 8.09 38.56 91.39 37.75 21.63 17.90 65.45 19.95 80.79 67.54 85.02 77.26 24.64 91.49 17.34 6.88 67.75 17.71 93.98 92.35 9.90 3.90 33.48 91.86 91.50 73.71 14.69 94.27 56.31 18.28 56.15 19.30 47.17 41.50 62.57 81.26 78.45 33.99 15.93 68.31 28.96 87.64 35.55 19.22 12.86 76.82 10.48 17.96 45.27 53.73 97.08 84.51 96.73 89.87 3.30 53.84 45.83 63.56 30.51 0.15 47.74 0.95 23.93 97.61 9.44 -2.25 92.22 16.72 97.36 57.96 51.57 25.71 25.93 98.44 55.93 45.28 89.26 9.54 85.56 18.11 44.72 32.44 67.22 55.77 27.12 13.82 73.38 76.87 47.07 21.08 78.57 7.47 58.62 23.86 78.89 64.89 76.49 26.45 98.61 86.44 79.41 53.87 78.61 45.36 81.81 96.43 94.98 37.17 78.74 53.05 31.54 31.26 31.69 25.83 90.23 19.86 89.15 64.18 83.88 85.12 3.78 45.78 66.25 97.01 17.63 62.92 5.33 93.99 69.14 82.87 49.05 16.60 71.14 68.49 97.91 54.58 87.83 28.97 51.24 51.38 44.53 38.01 3.54 85.36 92.00 39.89 24.03 88.02 27.49 87.86 52.31 34.42 71.87 4.42 45.86 64.98 56.68 7.08 89.49 28.61 26.46 82.64 46.35 45.21 68.35 -43.61 88.51 53.29 54.18 29.28 73.63 46.65 2.20 64.88 61.57 24.31 5.71 31.95 70.61 70.40 86.62 97.83 83.36 92.21 59.37 49.18 42.72 78.88 40.91 17.39 81.61 88.14 11.46 46.44 2.78 14.15 67.99 65.97 79.73 55.15 99.90 23.87 97.66 13.87 9.67 68.21 57.80 75.53 88.97 39.61 13.25 67.18 9.79 41.13 90.71 90.25 4.69 63.17 22.57 85.31 66.01 53.51 82.34 76.95 73.58 57.14 27.73 30.89 56.40 49.96 15.40 16.28 58.94 15.39 54.62 69.39 7.20 74.91 8.75 70.22 56.98 12.78 31.23 77.53 36.88 90.42 76.77 16.40 55.83 21.29 14.88 46.18 38.28 19.09 95.02 11.04 85.61 73.09 36.29 12.66 75.84 34.48 79.80 20.63 6.28 -52.24 74.61 65.42 25.96 23.96 43.78 0.78 29.60 80.06 37.72 52.46 1.83 69.09 16.17 24.81 32.89 14.56 43.35 7.06 14.12 61.14 42.91 87.62 56.74 37.21 7.69 42.65 9.84 65.50 93.76 84.02 47.36 24.92 13.74 16.40 63.08 57.84 62.58 9.97 46.62 60.21 31.80 32.57 18.97 80.36 95.06 10.17 56.81 5.80 16.35 63.37 60.44 95.61 5.92 30.21 1.89 82.70 69.64 44.28 86.06 18.70 39.24 4.78 41.38 34.08 35.43 35.09 61.97 95.39 35.90 47.30 49.33 66.67 9.99 85.42 81.41 85.53 10.63 44.06 14.15 25.17 95.85 39.77 79.41 11.08 4.91 28.98 97.28 49.30 14.92 2.52 17.50 33.84 46.88 93.17 56.17 62.67 14.17 37.91 8.91 -40.04 7.78 59.03 5.19 9.72 1.60 50.84 32.90 61.05 5.62 42.56 66.03 73.23 17.29 4.97 31.06 3.17 20.78 26.84 84.59 25.08 12.37 18.89 15.97 89.20 38.92 73.89 14.93 77.44 69.13 87.46 93.78 38.90 81.60 30.60 18.84 4.45 56.00 55.20 51.87 76.41 24.25 49.13 13.77 65.25 76.79 73.99 77.93 97.94 15.89 28.45 29.41 70.71 19.02 88.28 46.44 89.10 58.51 70.46 47.34 22.97 80.62 96.56 42.85 27.34 15.44 56.01 16.85 92.53 4.31 56.28 28.56 39.94 57.80 29.99 70.05 45.85 63.47 71.99 7.34 2.02 99.22 80.60 92.92 35.94 73.00 60.31 76.00 64.56 33.06 18.81 74.50 51.99 42.40 25.38 18.22 51.19 99.30 75.03 79.13 -42.17 7.87 21.15 33.92 89.49 38.84 90.08 85.52 99.66 17.68 53.09 88.69 80.10 65.94 72.12 23.00 46.96 77.55 39.37 90.11 53.05 90.82 38.37 11.61 56.42 29.15 74.07 26.76 3.51 67.76 36.90 37.74 59.92 14.29 88.95 96.24 73.80 76.15 30.45 76.94 42.67 94.01 47.75 78.96 87.38 9.04 34.02 6.66 94.75 97.27 52.89 13.41 51.61 94.05 35.40 30.67 63.35 7.06 64.34 13.01 7.77 14.86 8.10 88.02 1.54 12.87 74.06 63.82 52.85 65.41 22.02 45.67 61.10 56.68 83.21 80.59 51.97 11.05 32.62 33.49 14.18 62.18 77.22 97.84 50.99 18.19 80.49 30.78 98.44 1.64 32.38 22.39 24.96 37.08 61.86 8.42 67.69 99.83 31.17 34.16 -58.47 68.09 51.01 85.05 9.90 70.46 34.30 93.68 26.38 49.89 14.93 33.23 93.27 76.89 31.27 58.03 71.50 5.07 46.09 21.18 18.13 50.25 96.43 4.34 39.29 28.79 34.99 96.18 69.64 40.66 75.10 17.96 54.63 53.88 48.72 43.26 73.00 26.65 75.67 24.62 68.14 44.44 99.56 96.26 54.31 2.80 33.51 12.60 51.26 85.93 88.06 35.22 68.29 52.82 18.35 46.29 99.21 36.29 82.60 15.85 43.13 40.92 8.65 7.19 76.20 58.94 12.01 2.11 58.46 42.54 98.29 99.87 45.61 2.48 49.28 87.03 77.85 94.31 41.86 31.99 60.27 36.99 19.09 31.81 40.56 21.43 24.06 91.87 3.62 36.62 71.93 50.93 24.90 16.18 93.42 39.36 46.24 30.26 65.25 83.55 -21.51 25.06 52.85 67.39 99.44 97.73 83.19 45.90 23.87 97.01 83.77 95.24 88.57 35.66 52.95 90.22 35.25 96.30 54.75 77.87 48.07 79.28 76.21 60.05 24.03 67.17 68.90 0.85 75.34 22.65 58.96 21.16 12.26 32.29 52.95 84.72 64.38 83.62 6.92 0.57 85.77 17.48 64.88 45.45 78.13 87.50 56.91 2.30 26.49 45.74 81.24 38.45 86.76 88.42 33.03 49.70 73.10 88.87 19.66 2.14 39.87 99.93 76.32 87.56 63.10 49.02 48.39 33.52 20.90 10.18 67.19 1.91 72.90 17.61 89.68 46.11 82.89 42.12 68.28 76.58 94.85 25.39 12.10 41.28 91.36 11.36 89.34 53.99 26.59 68.73 14.55 32.64 63.72 58.89 19.94 75.75 7.35 81.89 22.51 31.65 -56.97 64.42 90.42 20.70 65.76 21.85 12.31 88.16 64.15 39.90 11.24 19.55 4.20 64.94 88.81 24.03 19.45 51.53 58.73 29.79 30.51 51.70 94.86 42.62 55.03 10.76 38.70 98.52 38.59 60.30 7.13 8.62 53.03 36.18 12.02 24.89 27.71 14.70 53.67 9.71 91.87 29.45 68.06 75.62 6.44 19.80 22.41 1.23 56.40 3.08 91.89 58.12 62.19 9.53 22.40 5.83 7.92 29.63 19.38 68.57 98.99 98.15 32.26 71.81 77.92 63.77 66.20 68.78 31.17 3.68 42.47 90.06 14.99 17.35 88.90 82.00 12.58 61.12 7.24 44.88 3.81 83.52 19.83 41.53 81.98 66.37 34.95 18.58 32.04 98.79 20.76 81.20 99.99 99.08 86.70 2.64 95.64 94.61 11.15 95.99 -86.98 82.06 7.46 78.72 6.21 56.79 65.82 55.85 21.12 99.07 85.95 79.42 69.63 69.05 39.07 9.60 73.58 58.42 30.90 81.67 10.67 91.60 57.88 92.43 60.60 59.21 62.23 89.71 70.50 39.23 1.65 30.83 68.72 24.66 77.66 23.27 17.15 59.86 40.91 36.31 10.44 38.01 64.18 49.25 14.84 8.26 41.82 94.25 14.12 17.86 26.44 31.45 52.87 64.94 40.93 10.46 34.59 50.25 78.44 15.83 61.20 12.67 43.20 82.96 70.73 15.43 83.70 39.22 23.61 33.34 49.76 63.55 52.17 2.76 64.42 40.42 10.52 53.69 78.55 53.59 50.25 29.85 65.72 1.96 54.20 60.21 95.76 61.00 92.23 60.86 35.87 74.86 57.93 59.79 35.74 52.58 37.44 65.55 95.09 25.52 -84.86 5.06 97.90 74.14 34.43 35.53 13.06 7.85 84.54 69.58 46.26 37.50 82.41 12.11 2.23 49.67 88.41 99.13 62.97 39.83 15.36 25.62 6.41 56.89 6.59 77.53 48.03 41.85 70.72 16.51 41.53 27.20 58.92 98.76 27.01 16.93 23.45 27.42 4.48 25.78 56.22 48.70 21.94 53.71 35.89 39.22 70.14 19.03 21.39 72.25 63.03 59.60 96.10 20.99 98.31 40.62 94.10 57.63 72.36 90.10 31.04 92.69 54.81 39.29 11.00 67.86 84.68 2.49 12.64 37.93 33.30 73.91 74.25 11.61 69.05 20.54 22.32 86.00 19.96 20.01 95.84 12.72 75.36 28.07 24.12 31.08 90.86 80.97 7.53 73.65 31.09 67.36 82.94 95.38 96.99 16.16 0.97 60.48 64.54 86.41 -68.06 29.23 15.54 69.28 56.08 89.16 43.47 12.92 27.86 15.19 29.04 55.85 49.37 0.39 90.84 60.67 37.19 59.19 92.20 38.79 90.53 54.98 27.93 5.42 59.68 82.15 87.02 39.23 36.60 54.87 74.53 24.60 73.17 34.70 46.87 26.30 23.70 93.65 11.48 51.81 93.34 19.32 58.92 95.72 54.36 66.04 60.91 81.20 26.17 75.81 87.80 98.89 76.77 75.65 79.80 20.74 26.60 6.09 33.40 9.55 31.44 72.06 59.62 76.71 82.12 12.16 0.79 36.17 15.55 54.20 53.25 3.89 8.89 20.01 40.08 77.00 69.43 20.57 12.55 88.25 48.31 62.44 59.66 56.28 21.13 99.57 79.54 36.69 67.74 71.76 66.39 63.13 22.10 4.41 41.70 82.87 0.48 78.54 46.33 31.13 -61.69 68.70 10.27 39.26 2.07 28.35 47.68 23.47 47.41 81.09 24.30 84.65 19.95 17.86 22.94 85.81 65.51 58.02 80.72 69.82 15.33 1.75 96.38 59.20 29.34 41.04 67.63 43.49 25.63 59.31 96.73 24.02 84.22 78.53 60.86 85.38 13.01 21.50 6.27 69.54 48.21 82.52 71.56 46.35 84.77 47.94 61.48 5.06 55.83 34.05 30.78 80.82 91.94 74.64 20.95 31.90 2.78 24.69 86.59 72.45 71.95 93.75 51.54 38.99 53.50 31.48 97.19 50.38 99.61 58.91 4.17 49.59 26.82 23.07 80.23 8.35 37.51 92.61 83.93 47.48 38.85 97.83 43.19 74.76 42.83 30.54 43.04 94.99 9.07 59.91 6.88 56.87 11.77 79.48 66.27 67.46 51.21 88.79 10.92 14.66 -95.25 35.80 37.79 62.31 84.35 39.48 93.03 74.35 92.92 58.77 22.70 9.81 53.08 1.79 78.05 93.88 38.59 46.33 86.49 8.79 19.95 29.19 77.60 93.69 75.50 58.53 92.11 80.44 1.70 13.83 65.80 11.41 42.11 73.88 18.05 73.18 31.91 18.50 48.05 41.71 24.35 86.54 71.25 13.94 47.06 70.89 81.08 19.18 89.64 37.15 57.97 50.59 64.33 43.70 70.29 89.85 88.98 48.90 21.65 97.35 95.43 60.11 73.50 45.88 33.57 32.84 37.00 41.00 16.25 77.13 52.01 59.26 58.51 27.09 85.77 3.15 40.00 66.73 12.16 59.82 67.15 28.36 99.58 60.77 11.82 3.65 78.59 82.08 40.46 89.99 19.05 12.44 30.05 56.88 62.15 7.22 97.77 22.71 98.11 0.02 -94.49 30.50 3.60 5.42 43.02 91.45 17.83 69.20 97.98 23.85 99.32 17.79 96.90 80.58 35.76 13.83 27.97 29.30 92.50 5.01 3.12 66.53 28.94 32.08 62.65 24.26 50.98 92.96 43.85 1.45 85.11 25.24 0.78 91.76 54.88 96.74 51.15 72.09 32.13 19.68 93.55 71.01 27.57 1.80 84.56 86.51 93.21 17.24 70.93 20.66 11.59 0.86 25.65 93.33 47.85 69.56 52.14 46.79 0.70 50.56 94.89 93.72 23.78 34.58 58.90 57.66 23.48 87.23 97.76 11.54 17.23 75.24 28.66 92.38 28.26 64.49 82.38 5.81 84.17 44.74 33.47 29.35 83.57 36.84 47.28 57.50 37.59 27.32 34.73 92.75 2.77 37.04 31.28 38.98 36.76 81.09 40.55 59.05 18.82 67.44 -45.01 65.63 32.87 70.36 4.59 64.51 72.90 32.15 4.52 79.25 85.87 43.65 52.67 0.62 21.02 58.11 80.73 50.44 43.03 35.00 36.92 1.22 33.64 57.75 67.66 54.28 28.05 42.46 44.18 63.73 81.54 43.74 50.71 0.29 35.96 7.23 46.54 94.18 22.36 3.18 93.23 9.77 76.20 22.29 73.22 78.39 29.70 44.40 61.07 79.03 95.78 1.01 65.72 53.24 11.91 47.15 22.92 69.21 13.70 45.82 80.15 73.20 86.99 27.42 89.50 95.12 77.66 48.89 92.59 68.65 11.13 6.87 55.56 91.06 35.26 13.13 60.47 95.40 42.15 53.20 42.45 73.55 8.93 11.16 30.56 99.19 68.50 28.52 74.98 17.54 77.36 54.53 72.45 60.51 16.56 28.04 90.18 63.36 78.04 8.27 -48.27 36.41 19.69 85.57 80.66 57.65 36.79 31.33 30.06 74.31 90.14 65.96 88.89 21.76 75.28 5.62 73.86 24.29 12.28 96.87 77.32 74.17 15.93 80.54 93.88 75.80 64.02 31.13 94.11 38.85 55.75 70.38 80.23 91.78 88.50 55.20 49.90 32.56 59.85 47.86 41.44 44.30 54.79 2.25 30.97 16.67 33.94 76.65 61.16 95.24 82.73 7.75 73.10 20.06 77.46 31.48 4.32 74.72 47.49 14.86 74.96 96.68 21.35 76.90 26.81 93.48 49.25 32.10 24.92 89.65 33.51 22.38 27.09 83.28 82.45 31.47 38.66 23.29 23.18 57.84 14.01 25.63 5.35 80.59 54.07 97.94 4.14 21.36 41.31 12.91 0.62 56.01 12.49 41.06 61.67 53.60 96.66 14.01 33.66 37.08 -48.18 84.82 23.57 42.05 52.18 2.64 52.84 11.64 20.11 60.87 25.06 19.22 36.91 25.78 74.00 61.45 71.63 36.12 49.17 37.53 17.76 43.84 88.35 88.60 37.76 61.05 53.08 99.82 50.59 30.05 41.52 48.72 28.33 52.36 64.72 67.98 5.56 10.89 99.42 61.30 30.29 97.04 9.69 20.67 6.52 97.23 5.21 0.17 96.28 43.93 82.18 95.71 45.51 50.76 19.97 92.08 62.14 39.51 20.52 79.19 36.40 56.03 47.86 84.62 3.80 90.16 55.06 72.03 75.41 23.05 77.41 73.33 66.61 40.76 85.47 51.96 14.81 93.33 39.45 12.90 6.57 65.47 38.45 97.83 97.97 50.37 15.15 3.37 15.32 91.39 89.86 18.63 35.44 80.65 46.66 55.00 12.71 93.07 32.22 96.67 -34.88 54.00 86.66 20.02 82.79 54.85 83.82 16.25 37.44 61.25 10.82 22.73 66.45 92.50 95.22 96.32 70.79 37.07 7.72 76.62 75.61 30.46 7.63 99.32 60.68 4.32 23.40 74.68 6.90 49.00 86.55 35.50 13.17 66.70 1.79 86.62 54.36 84.12 45.81 71.47 58.45 4.27 68.81 51.12 14.03 14.88 95.98 52.56 36.94 72.21 27.51 11.38 70.47 77.88 59.77 29.97 99.56 84.60 2.22 56.25 72.43 48.24 82.07 59.79 6.42 66.51 81.42 14.82 79.26 48.36 54.08 53.68 22.08 63.97 41.66 39.14 71.59 93.99 37.59 59.21 68.48 45.76 34.00 41.85 24.99 7.92 54.99 45.24 31.48 21.08 20.07 23.11 34.66 67.57 64.25 81.49 25.14 7.64 23.88 2.80 -50.40 29.01 65.94 92.77 20.10 85.32 10.00 85.98 70.44 88.46 31.94 92.40 34.28 1.38 98.67 63.93 46.31 72.74 96.36 20.82 89.64 73.97 83.98 72.17 29.30 48.75 63.46 91.39 71.96 19.82 92.80 15.15 56.48 89.98 27.59 53.91 51.09 48.34 79.96 44.23 56.95 47.28 68.24 48.08 59.56 28.05 95.92 12.11 21.04 31.67 64.94 11.07 41.39 94.22 35.25 34.07 57.19 69.97 37.02 3.43 43.66 11.56 93.36 0.91 78.91 80.21 59.51 65.59 85.38 59.07 79.61 83.06 75.97 43.82 11.44 54.08 3.22 17.75 37.69 47.57 54.97 99.23 26.05 20.15 20.82 47.90 31.77 14.06 16.65 66.36 38.40 70.53 0.29 34.84 5.67 11.03 3.67 92.18 42.81 24.73 -80.49 50.18 71.41 88.42 99.34 26.10 99.85 63.27 42.06 6.98 67.15 72.30 5.03 73.89 17.33 94.42 9.60 18.34 67.02 88.21 8.48 77.93 22.78 80.57 51.85 91.28 23.31 58.76 70.16 50.58 41.31 92.22 35.35 45.56 56.17 33.48 35.23 93.21 7.98 0.75 90.13 47.17 98.74 39.14 39.55 63.06 2.12 25.34 3.23 23.58 66.99 40.51 5.76 41.57 96.99 57.98 16.30 71.18 93.68 90.88 72.91 85.07 81.15 3.40 46.55 19.83 67.40 55.49 63.26 5.39 27.76 0.97 43.14 54.31 9.52 75.69 65.79 22.61 21.74 61.12 71.79 57.17 30.06 14.01 94.47 40.41 43.69 33.33 85.16 14.95 2.20 63.44 58.77 87.13 89.23 81.77 87.29 35.43 10.64 37.78 -10.39 6.42 89.86 0.70 36.19 94.82 13.76 68.77 13.34 40.63 90.22 93.97 81.54 27.68 80.39 58.04 56.36 37.07 24.44 35.13 35.98 94.60 3.51 31.32 27.91 50.44 4.95 21.25 99.90 77.55 77.66 47.72 14.20 69.94 33.49 76.84 72.47 95.92 81.34 73.19 80.12 4.74 19.49 25.21 93.45 67.85 33.96 29.34 28.59 35.61 1.61 30.01 5.31 53.49 43.61 76.48 97.42 63.79 33.52 33.22 61.27 25.70 53.86 62.31 99.17 42.37 90.59 67.63 8.78 13.95 16.33 47.94 85.50 62.59 4.67 28.40 13.16 39.09 91.23 56.48 82.82 90.65 41.84 34.95 77.53 9.35 55.39 38.06 3.47 98.48 66.34 41.25 47.67 66.01 97.64 23.53 17.96 89.48 29.51 82.75 -70.53 50.99 83.11 74.58 0.65 15.27 62.97 42.41 53.65 95.63 13.27 88.27 24.89 28.66 55.55 71.57 27.04 25.72 80.08 38.17 5.67 27.56 99.78 67.02 29.98 16.87 48.58 13.27 44.57 62.99 17.06 96.47 9.29 76.64 0.00 48.32 25.52 12.42 52.41 61.72 21.21 31.20 53.50 43.85 44.71 9.31 39.43 35.79 56.60 7.23 99.83 17.81 54.18 73.54 72.05 51.36 67.82 28.74 47.45 50.19 62.85 18.14 55.99 67.47 57.50 47.75 83.37 98.80 59.00 17.00 59.39 28.41 30.43 13.84 16.77 65.00 14.40 44.60 97.44 85.48 32.88 53.74 26.51 52.39 82.88 65.53 22.53 85.06 49.79 40.74 73.18 30.77 96.27 15.08 20.62 19.12 28.33 83.94 80.97 98.84 -68.58 75.96 18.64 54.20 83.42 51.29 35.67 70.04 7.92 72.01 78.83 18.74 14.47 42.18 82.71 80.98 16.21 69.85 86.37 77.75 47.50 44.01 99.73 90.12 72.68 57.67 99.99 57.48 97.62 31.86 90.81 43.59 83.74 14.00 39.87 98.82 71.62 38.63 80.93 66.59 97.04 98.95 36.90 50.14 14.90 1.82 38.65 8.73 46.26 50.51 42.98 53.72 93.66 78.04 55.59 78.55 24.85 76.54 55.22 23.65 2.06 48.66 46.87 59.39 46.96 93.42 66.87 48.32 15.90 17.85 2.12 36.98 33.18 53.50 90.89 78.13 46.44 57.67 99.58 4.09 72.78 69.93 92.38 43.88 14.56 77.00 16.84 54.33 37.72 72.87 92.58 43.35 60.71 3.16 46.69 27.45 56.60 49.48 45.38 15.95 -60.19 91.95 56.12 31.86 79.28 88.77 39.16 73.74 72.64 82.55 82.29 59.50 38.48 93.04 72.09 18.71 7.39 34.59 9.41 16.88 82.60 7.18 35.96 37.65 9.49 34.17 84.81 13.81 34.85 67.62 58.40 61.08 88.57 85.03 9.37 98.65 48.98 32.78 25.25 4.50 70.34 54.20 52.43 85.18 68.27 43.41 3.98 55.69 97.33 50.53 32.22 38.34 4.78 56.36 95.14 0.31 34.73 96.53 41.71 53.22 14.16 37.69 91.46 90.46 55.48 0.13 78.73 13.26 18.91 54.46 51.05 73.54 87.10 40.52 30.25 98.39 95.22 53.91 13.39 90.56 72.37 73.34 4.07 37.47 67.93 55.45 84.55 50.34 30.17 51.62 71.48 62.98 54.95 76.04 8.69 27.52 68.40 13.59 20.39 36.56 -19.32 86.24 38.10 80.16 67.84 11.98 93.72 81.92 41.39 31.47 80.02 91.98 97.60 97.01 85.04 6.10 4.77 8.74 87.42 54.17 5.82 6.29 2.77 42.29 21.16 33.16 91.25 45.31 74.77 31.36 23.18 34.10 10.16 93.01 21.88 89.07 69.44 43.34 73.89 25.09 66.12 26.14 57.74 25.11 57.21 22.70 21.81 14.75 41.90 60.59 57.44 22.81 77.99 76.71 24.63 86.68 40.74 93.10 67.56 73.06 24.31 63.97 75.48 87.58 16.12 28.27 87.92 14.97 85.77 20.50 77.29 38.23 17.02 4.39 78.49 3.24 21.48 41.76 16.23 64.93 87.37 36.04 65.59 88.36 96.24 49.14 84.06 97.55 68.69 88.70 79.03 99.40 74.91 37.08 71.10 78.36 55.10 34.90 38.26 16.80 -59.16 57.38 40.58 5.10 87.42 88.62 71.77 31.33 64.45 17.76 12.39 79.65 15.80 37.16 9.22 61.35 28.01 49.83 7.73 40.07 10.37 95.54 38.85 26.66 66.08 98.16 71.37 7.74 47.28 4.33 40.35 72.12 45.62 79.74 34.96 24.64 83.03 70.99 54.81 89.28 33.23 77.16 22.26 12.51 30.73 33.87 7.68 69.80 15.03 57.28 31.04 72.45 66.77 79.71 10.93 11.07 23.80 22.10 45.57 50.62 23.33 38.01 87.82 80.45 70.07 85.66 14.89 98.66 69.58 40.74 86.15 62.46 56.23 54.27 69.54 74.71 53.74 45.51 22.99 32.13 4.02 43.76 82.76 26.97 68.85 19.32 99.06 12.57 75.80 5.74 58.30 67.57 68.09 24.13 64.20 18.52 49.37 77.17 8.69 4.59 -75.89 10.37 41.28 21.61 69.32 59.19 25.20 89.62 68.11 76.42 65.55 50.14 39.04 24.23 95.88 83.76 5.26 97.19 15.92 88.71 18.05 19.77 74.36 58.66 11.22 4.77 41.63 69.58 23.09 2.32 44.07 96.21 23.19 9.28 64.46 25.02 6.98 68.53 32.15 65.24 26.08 2.83 68.81 57.57 25.50 76.75 37.89 82.86 77.10 26.64 57.34 29.07 86.91 83.40 41.68 73.47 42.36 7.84 3.90 87.70 41.04 40.38 12.07 31.46 58.02 49.84 68.27 84.51 15.28 9.80 57.18 63.57 89.65 36.19 42.22 51.10 94.97 18.42 37.97 20.74 50.01 20.55 74.09 18.67 37.71 93.50 65.63 1.50 6.82 53.79 25.79 68.14 52.16 66.75 8.22 5.27 32.28 94.14 99.82 7.21 -41.98 32.13 1.89 4.76 21.21 88.19 59.93 6.12 17.40 9.89 71.06 5.27 97.11 86.41 54.66 42.98 45.91 81.58 78.77 63.39 76.29 7.35 9.51 88.53 21.36 32.69 14.81 38.62 24.90 35.67 47.70 42.83 8.41 91.50 0.20 76.29 64.42 18.25 21.31 55.15 98.50 10.66 82.83 47.19 95.27 26.98 75.16 72.56 34.67 96.64 12.03 19.69 2.16 52.22 26.29 70.06 2.35 96.10 66.01 3.49 26.75 32.35 21.70 83.05 34.48 74.61 96.51 38.20 0.80 49.57 0.49 2.67 18.71 96.52 94.69 99.58 55.88 75.96 41.05 60.44 89.64 47.72 41.25 27.31 50.08 52.99 87.99 85.79 23.24 48.59 68.62 38.47 42.03 43.81 37.96 51.79 60.38 55.66 64.81 67.53 -95.53 75.68 61.14 73.48 39.03 98.41 50.53 52.44 67.24 75.89 27.40 26.12 9.45 7.56 55.46 79.20 36.15 16.25 80.34 16.42 55.81 37.53 12.34 81.70 58.40 70.37 0.43 5.27 23.05 69.67 66.55 63.57 48.74 4.32 5.52 95.26 61.57 0.17 14.40 24.80 12.34 80.33 24.25 26.85 40.36 2.31 28.54 37.22 35.12 30.08 0.20 85.03 82.38 71.62 6.20 70.46 55.81 44.29 85.45 98.83 61.63 54.54 64.93 57.49 88.99 77.26 98.28 93.52 33.14 13.80 65.72 15.64 9.94 22.98 82.90 2.79 46.76 49.15 81.16 29.17 82.62 64.95 73.85 49.28 67.29 57.81 63.14 73.19 98.03 39.70 85.71 14.00 99.96 66.13 18.74 64.04 78.65 83.38 31.08 60.57 -43.63 92.44 97.87 49.73 72.14 0.80 86.42 84.89 36.45 95.66 48.35 93.07 91.13 50.15 9.00 11.88 40.00 38.46 52.05 69.30 84.27 62.78 76.21 51.19 67.66 71.31 93.98 91.34 46.37 55.74 74.84 75.59 96.21 47.19 97.97 8.27 34.53 85.85 0.69 0.70 77.45 89.79 59.47 78.17 6.12 34.08 8.73 55.61 50.25 98.71 43.88 67.77 6.24 94.44 14.88 48.38 81.47 17.46 65.45 44.66 32.05 58.03 27.90 26.34 88.67 62.48 51.71 74.60 63.38 7.28 69.82 41.46 66.65 92.61 68.99 57.28 16.48 62.65 46.21 97.70 12.36 57.11 97.14 99.29 40.69 73.50 12.23 45.60 28.79 86.75 62.19 56.99 73.12 90.64 60.18 36.96 79.67 35.28 58.76 32.37 -64.30 73.45 59.34 76.53 45.22 22.64 32.93 28.64 14.39 98.48 92.02 99.05 55.94 37.93 72.68 52.40 12.68 53.76 47.77 17.10 40.73 8.48 85.80 8.88 99.36 92.50 89.64 30.00 68.46 59.51 95.61 45.68 59.00 42.21 21.79 50.15 27.03 38.24 55.27 43.10 56.86 83.16 49.71 26.56 98.61 62.17 24.50 63.98 32.36 75.76 56.34 19.19 89.67 84.24 34.09 55.82 73.38 26.85 47.84 59.75 93.16 11.81 97.97 49.89 21.14 57.86 93.86 51.33 67.31 92.01 72.06 40.38 45.42 47.45 74.36 68.63 83.82 22.67 92.59 56.20 4.09 18.71 80.05 78.48 13.62 29.30 98.29 47.49 59.91 71.45 9.78 18.23 9.83 37.00 75.95 24.59 98.90 23.23 85.27 79.05 -5.81 83.76 97.03 48.15 58.16 28.74 68.25 51.12 73.94 18.23 76.82 1.27 38.58 69.68 31.03 53.86 59.34 11.46 24.03 77.43 94.66 41.17 90.55 48.76 9.21 56.99 55.96 78.71 35.77 25.06 59.43 11.87 29.21 47.50 53.37 52.61 19.05 83.87 50.97 9.08 62.32 17.32 31.96 20.86 16.77 89.17 15.76 24.34 45.58 57.57 10.16 5.57 46.75 3.84 1.64 32.67 90.90 56.09 54.39 51.08 53.09 81.72 29.69 66.42 29.65 45.64 13.46 83.55 84.77 3.09 96.43 48.00 98.40 84.74 74.13 31.34 77.22 73.40 86.65 31.73 56.33 4.68 64.38 56.75 43.08 11.97 31.16 10.03 4.78 68.17 80.99 1.51 67.59 96.92 6.61 95.17 84.65 63.01 12.20 17.36 -20.31 4.01 12.85 81.40 6.38 2.64 5.16 41.09 24.40 58.23 52.41 96.51 64.87 87.30 27.26 50.08 56.44 33.82 52.58 15.96 41.71 41.04 12.25 91.84 88.23 63.95 99.87 88.40 47.12 76.03 86.16 2.67 60.00 76.79 65.36 72.10 70.00 39.67 85.62 1.67 9.24 48.14 71.43 48.13 4.86 5.07 21.73 3.72 15.12 15.49 6.55 63.75 5.25 53.39 52.79 15.75 4.28 99.33 96.32 45.53 77.99 66.78 0.61 51.88 19.21 26.22 12.25 16.60 88.48 83.02 86.98 58.90 25.04 87.70 7.47 98.11 17.45 93.35 95.82 23.49 88.60 38.43 0.93 89.73 51.38 89.28 63.33 25.56 83.00 76.73 4.59 36.26 89.69 49.80 28.33 60.62 89.29 4.03 8.21 38.07 -59.13 77.37 41.19 56.15 19.53 49.36 8.66 61.20 32.64 11.28 48.46 18.97 13.85 1.72 88.08 40.90 75.08 11.44 41.96 60.65 62.58 58.39 17.92 60.04 82.44 17.60 44.25 57.68 52.28 27.37 2.03 86.97 42.36 43.18 62.41 64.90 52.77 38.97 46.42 58.15 30.02 44.14 8.90 42.32 63.20 21.14 45.19 55.35 23.50 84.26 36.25 76.96 68.15 33.47 21.25 39.62 88.91 40.97 46.94 47.75 69.67 75.84 65.11 8.04 21.47 93.03 54.14 47.11 26.52 86.65 43.90 84.00 80.72 31.18 14.69 99.79 87.45 71.85 58.52 52.58 96.88 63.28 98.38 49.94 78.37 69.46 33.51 85.20 51.37 32.82 27.75 87.23 67.96 90.37 24.29 66.59 72.38 83.89 48.89 27.48 -38.22 7.18 12.23 38.99 18.69 13.32 82.47 28.73 44.55 91.13 80.01 26.09 49.40 25.41 74.06 96.82 69.25 31.97 75.86 97.73 48.42 50.91 81.37 62.12 84.65 86.66 92.62 57.15 72.20 78.27 0.51 0.30 17.42 32.38 6.37 58.65 32.25 69.34 8.79 64.44 10.53 77.85 22.17 31.11 35.48 56.30 31.09 90.83 80.31 9.10 73.04 84.67 46.39 8.85 16.47 90.40 69.05 43.48 87.50 86.99 85.56 9.83 94.56 59.07 3.76 98.67 28.15 88.94 91.59 92.73 53.90 40.99 10.92 41.31 25.92 51.49 57.35 63.10 42.70 62.13 37.93 27.60 77.91 33.79 56.12 13.69 49.36 25.76 35.04 5.70 74.54 30.37 59.50 70.92 10.59 39.94 96.88 16.81 73.09 46.50 -12.46 84.29 90.60 95.19 20.93 19.67 71.40 81.21 97.01 51.83 19.83 76.02 21.86 63.14 32.20 68.87 20.01 99.61 39.73 74.82 69.48 28.37 38.81 25.79 21.09 85.26 13.38 19.54 93.09 42.51 21.86 73.27 29.80 84.87 53.71 77.03 25.70 13.43 39.74 73.92 62.63 58.40 48.84 67.69 40.24 46.71 38.85 3.09 27.06 83.64 4.42 81.87 17.24 15.38 0.46 56.27 5.69 62.19 69.97 42.71 39.49 15.28 12.95 81.57 45.98 86.72 11.05 49.56 69.09 88.19 98.08 2.66 1.98 80.72 52.17 12.63 25.00 6.89 45.06 55.27 33.83 77.14 67.50 86.14 26.74 18.79 68.01 20.67 55.03 45.96 33.65 71.44 92.05 51.05 76.25 68.33 88.11 72.84 53.15 83.94 -30.66 54.05 18.72 83.52 0.07 93.22 83.22 17.36 7.26 12.25 84.27 1.24 73.30 26.81 34.84 84.01 57.21 90.29 53.63 91.60 60.36 30.61 3.22 69.45 49.13 49.13 65.79 9.75 97.22 53.14 0.03 26.49 46.75 26.42 91.88 61.42 95.42 95.05 78.71 32.12 25.70 44.75 49.36 38.08 15.13 69.42 71.56 90.87 61.32 46.31 56.92 27.09 63.54 80.78 90.37 37.15 25.18 62.28 56.24 29.23 67.64 21.01 27.63 88.06 72.25 92.37 60.32 76.25 5.32 37.87 51.18 93.39 56.39 69.98 14.95 5.00 30.36 40.01 27.48 42.97 88.20 6.24 25.64 88.75 33.09 81.82 97.67 81.71 98.34 16.24 13.71 36.45 4.54 99.39 60.20 63.12 12.43 73.88 54.21 92.09 -10.77 87.96 93.19 63.22 37.01 12.62 78.53 57.28 88.92 53.66 23.85 72.42 21.37 59.75 97.56 73.41 97.00 18.96 26.41 24.72 38.11 88.06 88.25 40.48 37.16 2.67 47.81 76.79 20.19 11.82 15.11 77.74 57.14 93.53 13.38 29.79 21.79 30.56 3.38 70.89 85.88 41.36 7.38 24.79 86.77 80.93 81.76 77.55 6.97 24.19 89.85 9.13 90.42 92.82 10.97 81.39 70.68 37.23 17.08 64.32 30.91 18.87 65.74 65.91 74.15 43.04 47.63 15.53 26.10 53.36 64.56 93.26 67.99 70.45 38.77 35.32 25.17 31.98 79.74 30.02 33.09 17.03 60.24 15.55 45.85 33.54 65.65 70.29 65.94 33.06 54.36 7.02 87.36 72.44 99.77 91.73 50.36 10.99 55.32 47.10 -71.29 44.66 22.18 46.90 79.05 59.95 47.27 34.18 79.26 2.91 58.68 50.87 76.18 77.15 59.09 44.32 73.85 33.75 51.83 29.60 9.96 54.25 32.98 18.40 71.46 78.44 36.31 71.48 68.63 32.66 6.22 82.12 87.89 71.97 76.94 58.89 31.30 16.56 77.02 91.14 31.05 88.24 15.44 87.00 40.03 11.54 67.88 56.60 39.53 93.03 65.52 72.35 29.37 92.39 12.60 92.59 11.68 25.20 36.40 68.03 77.33 97.54 14.85 77.84 60.93 53.37 62.25 2.84 66.96 54.12 61.00 18.01 5.89 92.24 17.77 76.03 10.87 86.78 70.12 73.14 61.37 93.16 93.98 40.32 41.99 79.57 47.73 32.81 23.77 59.31 79.55 83.09 97.21 52.73 30.43 21.59 7.00 57.34 17.26 95.23 -45.89 11.83 98.48 4.41 85.85 36.53 97.84 60.67 37.45 65.61 80.73 64.63 8.44 86.67 93.76 94.94 35.60 41.02 82.09 26.42 65.78 44.51 78.50 46.15 68.98 35.83 3.05 71.87 7.52 64.48 35.62 69.82 80.05 30.99 53.83 36.25 95.02 29.52 80.20 47.27 18.29 95.25 54.96 28.43 87.76 92.82 62.92 14.47 9.40 30.92 94.33 3.97 79.26 84.39 56.37 51.37 36.38 88.41 96.04 43.21 80.18 96.74 19.08 79.19 86.79 81.76 85.01 71.22 96.20 96.08 28.99 25.13 54.68 30.94 86.51 13.93 91.80 89.34 99.13 38.79 42.73 19.14 80.89 79.77 73.06 63.42 37.61 79.57 65.52 69.97 8.25 68.90 78.28 93.36 59.95 42.37 38.68 59.89 19.92 65.12 -50.74 96.68 87.58 95.87 97.46 33.95 50.28 99.53 62.28 48.32 56.05 65.76 98.26 55.97 49.67 67.29 14.91 7.20 24.90 17.38 2.30 15.40 29.92 0.27 78.57 95.76 1.66 4.56 10.29 35.67 80.65 10.17 62.18 7.83 81.90 42.62 23.73 56.51 79.15 73.70 95.82 63.97 89.96 88.58 18.10 77.63 10.36 61.51 24.09 71.86 74.98 35.02 53.07 62.44 62.88 89.04 12.18 69.80 99.37 1.37 1.75 64.93 79.79 12.75 91.90 7.18 33.10 77.55 3.09 31.84 59.11 72.83 60.18 16.97 31.66 13.59 22.48 29.82 15.68 69.16 54.78 97.12 48.69 70.50 65.71 81.23 23.79 74.47 79.69 22.88 71.33 78.59 95.18 87.40 60.56 55.35 37.65 3.97 53.35 59.99 -11.85 40.79 0.56 82.70 95.45 83.60 64.22 78.89 80.68 8.71 93.42 83.22 10.10 65.60 86.90 17.27 61.27 59.87 66.34 45.99 60.09 69.21 27.03 44.84 63.63 0.89 70.31 65.86 93.09 22.38 94.56 86.22 88.23 56.54 25.50 41.74 32.42 38.56 56.74 25.02 19.35 51.11 84.31 36.26 63.55 92.35 79.78 39.46 86.37 85.72 51.27 27.94 93.42 15.13 98.24 65.88 7.27 42.89 43.51 25.40 46.98 96.30 3.64 30.29 67.57 81.62 62.71 50.56 71.30 41.18 94.72 3.94 1.10 55.54 68.59 83.57 59.65 63.51 51.84 88.51 95.79 88.97 24.40 68.91 8.55 35.96 88.44 48.57 96.65 24.48 46.77 26.66 79.39 91.95 38.43 45.29 7.21 40.80 79.81 9.47 -34.81 25.68 98.96 93.23 9.53 49.70 72.63 33.18 62.05 54.21 35.12 69.07 36.08 92.52 64.30 14.28 97.96 83.33 23.50 17.85 26.59 77.49 0.54 26.28 42.26 45.83 77.93 50.71 21.08 33.93 86.92 21.01 86.67 8.33 63.57 59.05 82.86 49.51 17.62 39.89 45.61 46.62 53.51 27.20 83.95 15.29 22.57 72.71 28.33 52.29 3.28 33.61 14.81 18.07 20.58 34.13 75.62 13.02 52.44 3.32 48.80 59.85 6.56 81.76 41.46 81.53 40.30 58.13 34.03 37.32 64.00 80.95 75.80 91.41 68.96 82.73 32.35 23.15 27.42 60.32 58.81 61.72 22.14 2.21 90.44 47.68 51.77 57.19 21.31 76.00 43.45 37.36 89.70 93.94 99.76 32.28 58.73 43.36 75.43 3.24 -64.58 29.83 44.24 18.99 76.03 80.91 91.46 21.46 7.32 82.38 86.77 10.76 23.27 7.96 42.49 9.93 40.56 79.02 89.03 18.48 3.52 63.80 98.47 17.07 28.36 64.10 75.86 69.65 13.49 15.30 40.21 49.50 62.24 78.39 10.75 85.84 20.23 36.72 8.92 77.42 19.00 9.50 69.77 79.01 43.01 2.81 5.79 46.41 85.29 81.85 15.19 55.09 48.18 91.20 3.85 90.19 91.82 39.67 26.86 72.83 49.33 8.08 87.32 90.34 97.01 54.33 91.77 61.02 87.27 34.39 93.64 45.73 53.20 3.92 76.08 12.93 12.99 36.15 56.25 1.63 72.27 67.69 84.23 74.72 62.14 3.40 64.05 76.57 50.86 57.52 74.29 41.40 1.95 57.08 38.19 96.42 81.46 38.89 70.92 44.98 -49.13 1.48 17.90 59.99 30.17 58.44 17.27 74.31 88.97 84.36 56.12 67.11 69.25 86.67 79.43 56.13 93.70 44.40 22.38 87.19 84.73 16.52 48.46 1.38 0.52 30.09 68.55 55.56 45.99 48.80 10.85 66.13 30.37 3.44 91.11 21.75 62.87 3.24 57.52 67.00 60.92 52.96 8.76 80.78 14.33 27.33 80.54 63.82 14.31 46.68 17.25 80.25 91.37 71.28 19.15 37.52 91.25 60.07 11.52 50.40 43.26 51.60 79.65 20.77 48.15 45.35 69.65 12.77 90.69 77.13 20.52 65.98 93.03 13.55 6.94 12.72 87.56 22.64 87.13 27.20 89.78 73.80 94.65 33.89 24.30 58.45 3.10 83.77 75.35 2.06 15.22 92.61 91.23 66.64 90.45 45.75 51.34 8.60 85.19 96.00 -12.02 77.43 65.21 68.08 18.19 87.01 0.20 29.60 12.11 44.16 18.11 36.20 29.36 80.55 27.07 27.96 61.87 49.29 82.58 72.05 62.55 59.47 69.95 80.61 43.73 85.34 1.71 68.03 30.10 90.11 70.42 19.16 93.64 13.80 77.82 2.14 53.46 1.62 29.67 58.26 38.95 56.88 83.24 2.99 48.48 52.21 79.25 46.06 18.94 36.18 90.97 34.72 28.39 17.98 24.42 3.95 55.88 22.17 19.60 79.16 94.96 37.07 0.56 43.53 16.08 49.03 42.58 23.21 16.62 53.79 44.89 14.17 2.63 18.08 44.16 4.72 15.19 8.42 25.34 88.00 89.63 79.07 26.49 12.51 98.01 44.03 41.29 29.71 17.13 64.89 71.27 32.21 29.60 49.29 62.61 68.03 39.63 61.95 32.98 71.46 -30.81 67.65 66.41 4.93 30.26 52.12 45.38 85.35 34.34 98.51 67.25 93.93 2.58 92.64 37.03 61.48 98.52 42.27 85.06 89.86 86.35 22.36 31.52 44.89 72.96 63.47 79.65 88.04 43.30 95.32 69.32 18.31 36.33 78.99 51.65 90.22 30.96 41.05 48.57 14.98 27.22 62.22 94.46 40.87 72.95 93.84 21.51 17.01 64.47 65.02 3.36 25.03 74.23 92.02 42.33 78.52 55.86 16.48 8.16 12.79 57.00 77.73 15.61 11.33 60.54 65.32 35.16 1.98 25.28 93.74 52.09 12.99 43.92 42.33 80.85 43.63 9.66 54.78 87.21 7.25 6.90 81.77 71.54 90.54 88.79 42.17 38.08 95.74 11.34 34.40 92.86 92.74 11.35 89.92 23.42 32.54 83.71 58.85 73.22 19.35 -46.05 52.73 96.56 49.50 45.97 22.36 37.45 70.04 14.15 15.68 28.95 88.53 34.13 67.74 31.43 98.16 82.18 24.04 16.84 29.96 50.64 3.21 25.38 64.52 57.70 37.49 57.91 0.73 83.78 78.85 93.84 68.49 21.54 77.23 78.64 26.55 41.02 28.10 81.41 49.87 23.82 49.54 27.80 26.79 93.99 7.72 97.76 40.43 71.79 23.29 17.49 30.39 52.22 25.12 96.17 68.79 12.56 60.40 31.40 79.64 8.17 64.39 57.55 40.36 77.37 42.46 0.76 48.22 94.75 16.76 38.42 67.87 29.09 83.00 99.60 57.09 65.36 14.62 38.71 7.82 42.12 33.95 91.50 23.07 88.63 85.19 45.31 67.38 5.54 84.20 76.75 87.90 72.11 74.21 40.68 71.09 70.62 45.10 24.16 6.12 -78.30 68.29 75.14 91.95 31.53 6.65 4.16 49.86 29.50 69.50 48.40 59.65 66.60 71.38 5.92 85.59 60.63 80.60 40.91 71.24 29.10 23.04 86.62 25.28 31.15 6.39 97.20 13.73 69.54 5.48 82.17 15.20 91.10 99.26 13.81 71.21 27.85 66.09 35.77 29.22 25.97 13.58 3.84 35.54 74.70 10.37 99.69 15.10 15.91 32.68 51.22 14.96 4.85 24.44 77.14 26.68 91.69 68.76 87.24 58.26 51.11 4.43 50.85 25.88 45.93 58.12 8.52 59.85 48.91 38.16 80.72 94.28 66.42 52.21 64.20 7.45 57.43 90.93 83.77 63.47 52.77 86.71 33.29 83.36 49.22 43.95 62.93 53.97 4.45 8.51 12.45 73.68 67.74 70.44 85.03 30.39 42.54 93.11 81.26 92.62 -66.46 80.10 10.44 40.34 30.06 79.77 4.27 83.49 43.48 36.16 44.29 32.46 35.93 43.65 23.60 42.92 3.66 33.67 95.61 8.24 45.95 11.60 79.84 36.97 96.84 56.88 14.34 10.06 22.13 73.17 44.28 54.42 2.20 45.74 80.27 71.35 68.56 42.15 98.22 0.64 7.61 80.66 91.89 41.29 19.02 80.59 3.78 68.65 84.18 52.09 70.31 61.70 19.86 53.08 39.49 20.74 8.11 54.17 31.80 45.63 68.33 57.16 8.64 79.73 64.91 48.05 28.14 77.93 23.05 85.28 40.45 92.93 9.86 45.61 63.74 83.62 14.73 12.62 27.85 98.37 21.33 49.38 50.25 7.67 99.85 43.97 8.67 40.72 71.22 99.36 41.61 76.53 46.92 55.28 31.59 97.99 61.33 29.90 32.74 51.51 -58.87 20.43 55.15 88.79 74.24 96.22 75.24 80.85 26.73 8.43 67.54 28.08 98.48 20.58 59.49 75.05 16.58 86.91 9.97 70.57 92.97 93.82 89.75 66.56 30.83 82.70 55.93 49.80 38.28 44.58 73.02 27.27 81.36 77.53 38.73 28.03 1.29 51.68 19.39 55.44 23.17 11.27 66.25 91.50 52.86 72.27 2.97 40.44 75.00 78.84 33.18 6.68 66.01 57.63 68.51 43.75 79.60 98.68 42.59 35.94 60.44 70.92 25.96 96.29 11.85 47.90 49.83 54.23 77.42 21.65 98.45 59.26 40.71 6.63 41.06 79.66 64.24 60.85 66.36 1.14 7.26 59.64 45.13 59.27 55.03 73.23 12.07 51.86 29.90 79.40 87.83 79.47 63.43 62.65 14.98 6.83 34.93 51.61 8.45 78.71 -33.98 81.02 63.67 58.93 63.72 47.34 91.48 83.26 7.78 73.61 32.53 53.62 34.89 62.57 72.44 94.29 15.79 43.13 86.93 45.55 0.48 67.55 79.98 13.96 34.90 16.33 26.55 93.07 18.96 56.95 77.20 74.34 60.12 71.80 43.37 73.23 87.85 32.18 79.30 55.64 12.38 69.77 77.48 18.88 83.00 33.03 66.81 23.21 17.95 26.45 32.28 14.76 54.28 40.81 21.58 16.09 30.30 34.87 37.59 9.95 96.72 43.73 51.95 15.76 40.51 59.56 71.45 24.75 75.84 26.47 45.73 17.68 80.87 71.80 87.11 30.49 29.33 22.98 92.04 16.81 87.24 28.55 7.25 13.62 42.88 0.79 29.88 44.84 54.04 90.09 36.69 41.67 31.73 20.77 38.45 61.62 10.07 27.62 14.48 46.32 -15.75 30.84 74.88 79.58 96.99 36.26 75.03 83.60 1.77 5.88 96.77 94.43 37.85 10.98 47.03 58.04 77.88 88.44 82.36 59.52 41.76 39.05 76.69 95.88 32.05 72.55 20.49 90.13 89.66 2.93 7.28 18.70 44.55 36.70 64.09 46.10 51.91 88.22 20.67 26.27 26.89 50.03 26.14 24.78 33.44 41.56 31.08 6.46 19.36 41.69 35.74 43.35 43.60 40.45 45.79 77.36 30.71 7.63 98.14 10.88 2.30 82.61 7.66 42.17 52.05 7.31 24.31 9.63 85.17 64.83 22.47 64.41 58.61 67.63 27.31 32.42 69.96 40.05 77.49 18.40 31.17 43.66 98.69 65.16 79.98 77.65 86.83 60.05 88.83 29.50 14.86 15.11 23.54 81.04 50.37 29.46 75.67 7.70 66.88 52.41 -43.27 27.46 81.97 54.54 46.62 55.31 96.13 2.51 81.15 62.55 40.91 63.43 89.02 0.37 66.07 6.07 60.34 30.46 47.54 60.84 39.17 83.37 10.09 65.15 6.93 71.72 96.67 13.72 21.84 44.62 66.69 40.75 39.40 72.48 18.57 55.37 24.45 90.97 68.36 52.79 88.11 19.02 62.99 63.66 35.62 33.63 40.54 81.96 60.31 24.93 5.73 58.61 10.75 8.79 27.56 85.41 53.45 34.51 15.01 41.68 88.62 3.86 15.57 82.32 8.73 91.36 68.00 6.13 89.59 66.87 67.96 54.91 39.29 77.56 3.47 23.03 61.00 78.82 2.42 37.89 84.86 56.06 74.60 46.73 76.00 49.53 51.30 28.01 59.63 57.00 52.97 12.56 49.37 33.34 26.84 88.77 38.09 8.06 7.21 97.00 -98.60 27.13 71.32 84.96 50.46 8.84 75.40 51.80 26.44 25.98 0.93 66.67 92.62 8.42 83.68 91.85 16.75 37.56 47.36 67.65 70.29 96.81 74.19 46.33 70.48 91.03 48.83 50.98 79.18 90.76 55.77 83.76 21.53 30.86 24.25 49.76 0.93 24.08 96.46 17.04 15.24 25.11 26.04 55.15 58.67 46.12 22.42 32.94 93.89 76.53 60.34 62.16 51.24 28.43 36.65 3.37 94.55 52.24 40.60 51.24 33.52 42.89 65.59 97.41 76.76 73.53 49.34 39.08 91.26 48.36 2.24 46.96 95.39 13.07 13.17 25.86 25.68 4.49 9.56 90.23 26.06 70.74 29.67 47.31 34.00 55.62 51.58 61.73 25.43 41.37 50.83 4.33 52.61 0.93 58.70 56.66 32.65 76.97 37.10 11.51 -85.73 46.31 31.70 41.42 50.75 65.78 87.57 24.83 5.70 97.61 63.99 96.06 29.64 58.62 86.14 72.32 15.38 90.00 46.26 43.30 76.60 84.16 2.25 62.10 36.78 61.33 67.92 37.59 9.34 67.92 77.48 47.54 6.31 13.77 17.42 39.86 52.54 7.12 54.03 9.09 16.20 59.80 98.41 42.59 50.40 43.06 86.03 56.39 78.51 83.58 34.77 77.75 34.35 94.24 66.83 90.60 6.51 81.47 23.14 60.34 24.89 60.24 62.10 61.81 52.26 79.65 82.47 46.69 48.31 16.39 35.38 2.91 5.09 20.94 14.89 91.00 49.41 0.36 83.82 86.73 24.12 22.76 87.75 18.17 5.07 0.40 19.20 66.07 0.73 72.43 59.49 18.96 2.47 36.72 58.29 37.70 45.85 15.17 26.62 87.52 -49.92 11.49 90.13 24.79 92.67 46.28 15.93 83.53 26.78 60.00 12.03 5.48 57.05 33.89 20.65 1.53 65.66 19.23 15.56 4.02 57.74 63.89 53.94 98.91 30.78 47.86 19.57 62.70 77.21 46.94 9.31 30.32 40.78 0.33 59.06 95.93 41.48 42.76 62.55 72.82 68.81 87.73 18.36 71.10 94.03 26.64 40.46 86.92 40.46 95.25 58.65 4.99 79.49 14.26 94.93 32.54 87.86 36.06 37.04 44.48 25.59 61.48 88.56 81.78 21.42 64.22 36.25 45.32 77.34 53.26 94.69 54.87 65.04 68.99 82.91 46.61 52.70 54.26 37.05 48.80 52.75 9.57 92.15 50.16 89.57 41.34 8.23 70.20 80.59 63.36 86.76 15.90 17.29 18.97 85.78 26.14 62.64 7.77 56.61 65.44 -24.86 10.64 94.14 91.38 59.46 7.94 9.78 25.38 67.62 80.95 42.23 66.09 25.68 45.44 44.90 21.54 42.57 91.04 67.76 16.59 70.08 52.05 55.12 4.99 20.53 22.96 72.99 11.91 77.82 46.67 25.27 94.02 49.05 61.50 73.24 73.97 97.33 21.83 47.43 72.58 33.17 38.47 58.07 32.52 86.44 86.32 64.60 45.98 29.03 46.41 40.07 40.94 79.67 86.19 61.55 1.88 11.55 54.62 33.97 40.89 95.96 38.49 25.41 77.66 36.52 83.25 61.89 86.71 53.00 25.90 43.58 69.24 23.33 27.64 11.51 47.85 55.75 39.43 41.71 42.42 44.40 53.81 7.58 17.98 27.04 55.65 93.12 14.58 9.10 0.19 69.43 7.78 93.88 3.64 33.10 39.84 45.54 36.96 45.97 61.25 -4.13 16.26 67.79 78.04 94.34 79.56 65.38 84.22 43.88 7.69 59.66 77.11 27.14 73.24 86.17 50.40 57.58 90.05 61.41 21.85 89.70 90.48 83.71 35.52 86.64 17.59 28.60 82.49 7.71 20.05 35.35 60.78 29.03 61.22 38.29 8.53 2.78 24.30 81.07 54.54 69.96 98.55 9.19 28.81 48.61 20.80 71.16 34.12 37.55 44.03 35.65 12.45 65.69 25.72 70.60 29.80 2.10 86.89 6.91 17.93 17.14 45.62 26.75 48.17 41.48 65.17 72.11 59.20 15.81 70.03 56.08 20.67 30.74 92.84 36.36 87.81 24.39 46.98 49.23 94.05 51.80 50.39 9.86 36.12 92.12 82.76 47.66 39.80 70.74 16.55 53.28 95.24 84.03 7.88 31.68 27.53 56.92 27.93 39.26 25.06 -51.14 67.33 72.37 60.74 91.73 40.47 63.26 27.12 18.19 24.28 34.62 59.68 4.62 99.15 66.55 68.18 73.70 48.77 51.97 58.00 58.80 23.30 36.60 39.51 54.92 6.24 93.82 11.37 87.86 96.84 13.07 61.37 64.65 83.28 61.76 9.59 37.99 27.44 12.40 37.73 78.39 92.61 46.01 96.86 24.91 55.66 9.72 0.51 52.88 64.05 18.86 70.75 88.97 14.16 30.66 15.26 19.50 79.19 38.68 94.58 25.42 70.69 71.01 10.29 43.48 70.23 75.90 35.29 73.25 70.30 81.26 41.76 73.95 51.79 88.57 31.81 8.94 98.60 55.07 58.27 74.22 92.50 59.21 81.01 59.15 68.91 19.97 95.29 89.44 44.08 28.49 4.31 67.60 99.16 37.19 90.33 60.83 55.02 7.25 64.92 -36.66 53.41 8.48 62.50 53.83 44.65 17.30 20.32 42.13 14.42 92.89 6.12 52.70 18.22 39.52 82.35 5.33 4.47 33.62 2.02 10.15 77.13 53.36 16.20 34.15 26.91 95.44 46.69 4.91 88.51 89.32 45.37 7.17 52.35 98.71 10.19 79.08 58.03 21.76 23.61 80.72 97.82 38.94 71.33 21.24 67.46 41.73 95.56 51.89 87.02 32.98 95.49 12.65 99.85 49.70 23.66 45.53 30.66 71.43 32.95 52.82 9.31 87.49 19.62 68.35 38.22 17.31 21.47 16.10 38.91 46.66 27.91 57.85 74.56 77.91 83.70 67.98 15.32 81.30 15.24 22.57 36.36 39.94 42.73 92.50 8.40 34.29 85.87 23.60 74.30 12.43 48.69 23.03 48.18 32.95 38.60 13.12 74.96 8.40 55.69 -88.18 75.74 74.58 45.66 31.35 36.59 43.97 87.83 26.25 96.50 77.60 76.87 84.25 3.35 50.69 58.64 95.09 11.16 72.03 9.37 20.27 42.98 79.01 15.74 15.94 37.39 63.17 75.06 74.84 35.38 93.36 87.86 89.81 73.87 17.92 4.11 14.15 67.18 93.11 13.65 50.63 23.35 50.45 75.92 4.23 27.21 19.56 76.37 34.98 55.38 52.87 21.16 26.78 85.84 94.76 54.92 98.44 86.94 76.50 8.02 93.81 38.58 58.77 70.93 21.93 71.89 57.84 36.74 42.45 95.42 80.91 34.97 13.54 24.03 60.43 33.88 70.24 59.68 0.98 25.11 94.41 12.18 74.45 83.18 63.63 45.37 62.01 21.58 48.45 63.39 39.88 91.24 87.17 67.46 17.32 56.97 6.37 99.81 38.29 22.99 -92.99 28.54 47.59 1.98 11.07 26.10 11.49 79.95 18.57 38.09 59.29 20.04 5.68 78.58 91.57 75.88 55.15 30.46 40.19 16.90 86.77 90.00 43.91 80.67 43.80 81.42 70.29 85.42 63.62 6.08 87.00 57.40 45.63 93.29 94.63 89.42 61.13 86.56 14.00 25.67 52.69 42.44 62.40 45.87 98.97 1.95 77.71 16.79 98.91 36.97 25.73 9.46 4.32 8.72 49.64 8.40 11.54 2.17 18.33 62.80 91.22 11.24 44.13 60.37 78.28 85.93 73.21 79.37 61.78 66.89 3.82 7.73 29.34 41.06 52.20 56.39 58.99 37.87 91.62 48.11 19.78 62.75 89.73 78.01 2.08 60.39 31.28 78.89 26.53 80.42 4.59 92.67 89.10 8.43 44.41 86.88 47.79 84.11 98.19 45.94 -6.75 1.36 65.87 12.93 32.70 30.24 53.95 7.98 34.17 96.53 54.86 37.18 17.89 75.65 64.25 86.45 40.22 73.19 65.55 14.23 31.32 85.21 81.94 19.78 54.37 86.48 25.92 82.16 4.52 14.87 71.78 8.98 51.02 77.16 44.20 97.38 60.50 35.96 87.07 7.35 7.40 71.98 9.62 53.24 13.32 66.96 9.39 57.35 42.23 28.55 13.01 93.66 43.84 92.40 85.55 20.29 99.64 27.02 37.68 14.24 50.23 83.55 63.84 49.34 48.84 56.13 85.95 3.86 87.26 9.03 43.05 99.89 50.82 35.01 60.76 74.77 29.16 91.31 78.61 87.03 98.96 31.98 35.60 14.96 89.19 77.77 26.78 45.39 23.61 95.94 47.28 51.07 39.98 20.70 9.99 90.01 9.85 41.12 54.92 75.44 -39.17 45.69 67.76 73.65 7.99 98.63 8.87 99.47 68.61 2.08 54.72 57.54 93.64 17.51 42.84 7.10 1.42 93.23 96.08 70.80 89.33 59.31 48.51 87.90 84.24 34.68 27.98 1.48 36.52 95.06 79.60 92.83 84.30 47.81 37.78 63.56 34.38 30.17 80.94 36.77 56.80 40.07 31.60 25.88 58.48 42.57 86.64 67.50 68.79 40.14 72.43 1.88 76.17 85.37 52.78 8.83 9.09 20.74 73.61 90.90 0.49 80.42 88.68 14.89 8.82 82.74 58.52 11.15 3.75 15.09 88.43 66.32 31.27 31.45 30.94 28.68 76.61 65.80 91.58 32.26 24.42 26.27 58.71 39.13 69.95 85.37 2.09 87.44 18.16 12.49 3.59 13.49 40.99 71.53 86.38 3.47 8.98 97.13 75.27 58.53 -66.52 1.85 32.04 80.94 33.73 32.55 7.11 68.43 12.09 52.70 7.14 59.61 3.96 13.47 94.76 24.75 96.92 63.14 83.35 78.52 37.68 57.88 89.34 92.46 79.19 26.69 52.43 44.02 35.83 49.54 27.03 29.10 64.65 59.14 22.39 3.07 63.88 68.37 42.67 73.14 51.10 91.47 1.05 49.02 30.34 20.73 96.40 75.35 95.64 59.83 45.92 26.81 74.02 45.13 45.31 64.29 25.58 35.05 21.81 82.82 93.65 6.36 50.70 3.52 3.49 61.08 57.67 31.51 14.28 15.80 27.62 96.52 53.60 53.60 8.41 17.68 85.65 36.89 73.34 78.30 15.62 55.55 15.99 80.40 9.93 60.82 95.35 41.58 65.57 72.20 5.63 79.43 57.51 44.17 7.09 10.38 22.38 3.96 39.56 24.67 -81.43 64.69 21.86 93.87 44.64 78.36 25.53 51.76 91.25 38.10 54.90 87.49 41.16 70.09 43.44 39.15 30.60 24.43 76.56 49.19 15.88 20.14 93.23 16.26 7.61 36.89 81.83 0.45 12.81 24.87 80.80 2.07 52.14 20.33 24.33 34.59 60.19 55.53 18.20 13.38 19.19 89.97 14.66 50.29 93.68 4.01 47.68 15.77 28.71 52.55 13.62 80.22 71.92 44.86 28.28 75.77 35.21 96.83 66.53 16.96 38.23 34.28 62.23 8.06 91.72 87.53 94.75 71.78 87.26 58.34 70.29 40.62 50.89 67.38 16.45 78.70 7.32 65.39 54.45 61.89 88.70 86.47 66.41 46.75 5.96 20.97 11.09 98.98 68.02 48.11 5.22 44.39 80.03 85.63 83.18 13.43 91.37 16.96 28.20 76.55 -90.60 13.87 18.49 69.60 42.18 28.72 46.59 49.84 50.40 68.80 41.10 77.21 50.12 89.35 96.98 92.84 83.14 8.58 12.78 85.83 33.32 92.85 82.55 40.40 89.68 46.39 31.03 82.52 15.87 48.21 49.76 67.45 45.92 34.21 20.65 9.71 40.01 52.40 41.38 86.16 56.67 73.82 51.56 2.23 33.04 97.15 64.57 97.50 23.72 1.00 98.96 71.14 4.45 86.69 86.86 68.72 32.41 64.61 95.08 96.56 13.72 91.67 84.71 59.09 20.91 77.74 31.26 30.58 11.63 32.71 64.29 69.28 13.28 96.07 99.68 86.87 25.53 15.04 22.31 1.26 76.08 27.23 50.91 73.77 87.79 93.33 97.81 98.95 17.40 63.25 75.08 95.78 46.94 28.04 82.28 74.84 6.18 20.21 79.90 94.33 -19.30 68.26 83.28 56.90 72.53 67.10 68.65 17.65 65.83 66.89 7.69 73.87 30.76 64.18 56.48 90.23 91.91 41.98 12.96 34.67 48.82 68.56 48.89 19.46 70.35 21.62 2.82 89.30 30.52 41.48 24.30 41.18 0.17 2.44 77.39 50.10 58.90 68.44 10.33 26.87 56.65 49.63 43.16 21.49 11.50 94.46 7.46 5.40 76.86 50.06 62.57 51.04 11.55 71.61 94.59 61.49 7.87 44.57 7.22 95.21 14.46 90.91 30.24 93.16 63.35 14.86 72.78 14.54 46.86 97.11 42.93 18.29 65.82 40.60 1.03 25.14 49.29 14.27 96.10 39.45 66.50 27.56 91.33 31.05 78.16 47.50 31.33 11.29 78.85 82.02 95.25 30.24 0.98 74.64 46.53 50.68 86.71 82.81 68.18 75.75 -27.05 10.90 35.02 62.19 39.04 29.77 68.23 76.12 20.33 57.20 38.14 39.15 55.34 95.16 63.82 5.70 94.77 12.78 66.31 27.34 48.18 81.14 85.71 41.52 83.06 54.62 20.04 7.20 2.75 95.38 90.53 0.41 48.38 12.35 16.34 76.69 46.34 57.36 87.19 23.64 90.82 62.21 73.83 96.39 43.03 11.84 83.44 76.59 93.18 39.74 12.96 56.28 12.88 1.10 15.43 14.54 77.05 89.31 70.17 81.41 58.29 79.71 13.15 39.27 15.68 75.74 63.00 5.25 77.87 6.94 21.32 60.74 12.00 24.38 19.14 25.03 32.67 19.06 47.71 84.71 86.57 30.30 64.41 44.57 96.14 69.18 57.88 80.12 37.97 93.55 23.87 2.41 7.57 10.45 13.93 50.14 57.95 66.90 46.70 14.25 -19.18 88.32 84.12 85.18 73.65 84.23 89.22 56.63 27.76 26.36 80.04 46.78 72.07 2.65 21.43 8.45 99.23 23.39 84.50 8.72 25.57 39.85 65.01 32.52 43.74 99.20 64.23 42.12 17.45 96.47 83.57 51.62 43.92 25.54 38.63 20.76 59.28 15.66 70.81 85.31 85.32 77.27 90.06 34.51 19.68 48.94 90.71 52.54 50.47 20.99 80.51 63.50 30.84 20.99 78.31 94.86 46.83 5.67 78.40 95.55 80.98 33.63 94.31 71.79 92.84 15.71 23.33 65.65 68.07 32.42 26.74 42.98 75.95 69.74 4.82 9.75 16.30 83.66 99.26 89.46 73.18 64.34 98.85 13.20 96.32 40.15 68.64 35.14 88.06 32.52 8.99 55.74 34.12 56.96 2.79 36.79 80.25 29.08 79.04 23.55 -99.41 92.45 48.16 9.37 18.55 4.15 39.58 58.61 2.31 45.23 61.79 62.16 38.38 54.40 24.45 16.86 98.58 40.70 21.77 37.51 0.98 30.28 13.79 53.02 45.79 75.66 75.55 93.09 84.58 95.65 12.58 56.86 90.16 29.54 86.84 76.39 29.93 49.23 93.10 85.53 11.31 48.38 29.29 57.78 33.53 84.97 44.79 87.23 0.76 21.04 3.86 31.97 42.26 6.61 53.15 45.69 92.02 8.54 83.17 89.77 2.29 32.52 96.65 57.54 9.62 52.34 76.03 7.97 37.94 96.12 94.56 11.75 15.52 7.83 14.04 12.45 72.05 6.58 53.37 48.11 22.19 80.16 68.22 37.80 48.97 59.99 8.26 48.51 41.23 49.70 19.70 45.82 11.04 53.41 18.02 21.43 62.57 29.90 58.49 93.30 -96.36 95.66 37.83 50.25 72.16 10.18 37.51 76.08 70.98 54.89 5.95 86.78 0.69 27.26 30.51 36.15 16.71 84.47 99.60 98.36 99.58 64.64 78.99 76.85 28.98 46.94 60.67 63.45 72.86 24.96 27.66 86.95 66.91 16.92 32.70 50.54 6.57 86.51 6.17 61.41 94.75 41.81 34.43 41.34 79.91 76.11 66.69 38.04 94.11 47.84 5.20 27.76 77.58 16.50 19.11 53.29 74.15 19.21 36.95 37.88 6.76 60.56 33.48 18.80 73.45 95.78 10.32 4.23 99.01 30.09 9.59 4.54 11.01 81.68 66.73 37.61 74.93 85.20 94.12 78.90 19.59 54.12 30.35 85.26 49.81 6.14 49.71 4.04 93.70 53.54 18.93 26.10 69.84 68.33 79.81 50.17 19.76 48.43 39.78 90.29 -76.94 37.52 92.42 74.72 44.44 54.81 52.28 61.22 94.14 50.66 53.11 98.62 1.93 92.81 10.79 15.15 9.37 29.33 62.32 14.46 59.17 42.77 57.02 53.33 98.52 17.09 32.62 9.77 88.82 21.40 70.08 90.80 94.47 92.66 37.19 24.85 68.07 5.20 41.11 39.72 85.26 66.36 79.51 11.67 26.81 75.44 41.22 60.77 22.36 31.64 95.01 27.99 25.69 70.39 26.54 82.48 53.28 28.46 86.54 65.43 92.44 64.12 95.43 82.92 10.09 69.70 35.00 74.93 73.17 80.76 84.17 39.86 16.46 49.32 50.87 88.70 54.94 40.20 54.33 79.27 5.53 90.37 14.12 19.90 87.30 6.35 76.02 51.23 25.72 85.01 0.12 90.71 96.06 92.83 15.48 76.18 86.90 68.39 34.45 42.84 -42.74 99.86 42.67 35.25 22.71 85.63 23.19 72.41 66.71 68.20 50.58 13.80 94.67 91.79 15.86 12.86 55.11 88.99 81.62 4.90 55.97 89.99 90.15 85.94 38.69 95.68 65.14 94.94 29.11 43.49 7.60 77.92 34.50 21.05 69.85 23.70 78.61 32.69 55.99 57.86 60.46 0.38 81.16 20.12 67.15 40.98 46.36 1.04 97.84 20.62 76.08 9.64 49.83 83.64 46.29 11.83 9.22 21.74 22.46 23.25 3.68 1.40 27.94 74.99 1.56 77.06 49.03 24.95 62.25 39.83 36.41 61.57 18.80 36.39 12.64 2.60 48.59 2.29 1.69 22.58 92.30 90.72 47.41 44.38 42.65 7.87 73.43 9.39 12.56 17.90 8.10 30.75 31.61 66.83 37.42 6.02 52.85 22.43 28.71 36.91 -0.21 65.63 60.07 34.07 79.58 16.05 3.22 98.09 89.46 94.07 75.59 52.33 12.65 54.82 93.35 84.90 3.27 37.76 55.08 2.35 8.77 44.70 96.21 5.77 19.49 85.84 35.98 6.03 44.39 75.42 78.19 74.96 19.14 68.20 53.13 64.02 73.73 71.91 48.73 76.03 45.98 19.53 74.16 27.90 6.19 70.75 50.33 52.59 71.11 46.20 87.92 70.87 17.42 22.61 59.44 57.24 13.25 20.40 59.86 94.25 72.00 16.15 85.31 45.56 48.51 31.12 7.60 16.15 73.84 63.75 1.13 29.35 32.10 48.90 55.15 55.10 76.03 44.05 29.16 21.65 65.20 46.20 54.13 80.67 2.88 3.31 57.78 38.01 18.06 0.22 57.14 72.35 92.36 94.53 8.56 19.85 3.64 90.35 56.81 3.07 -79.15 97.20 21.85 73.17 21.74 19.41 60.01 99.16 21.16 4.68 89.00 79.06 30.39 52.64 91.19 12.58 32.49 68.51 30.01 33.12 8.47 17.81 44.53 93.36 91.46 26.09 57.79 26.83 37.79 23.85 40.53 24.18 59.15 86.85 38.04 72.98 44.00 31.25 28.33 92.12 46.88 52.02 73.91 55.69 0.87 53.09 77.87 20.23 89.13 69.37 70.31 13.27 15.65 1.83 69.54 30.81 25.15 40.82 50.80 6.31 62.98 96.84 70.99 59.95 12.35 63.12 92.24 89.75 39.26 61.41 56.55 82.12 3.65 70.28 88.21 10.67 44.52 95.66 60.86 5.39 87.78 33.59 54.09 60.37 91.00 44.07 44.93 77.61 18.81 80.08 40.63 35.63 4.09 2.32 43.64 67.85 78.59 6.55 17.21 24.00 -92.30 21.06 90.08 87.01 93.00 67.22 4.53 87.52 92.15 15.57 98.98 3.55 58.16 43.24 82.25 0.35 88.00 64.05 18.95 16.79 58.86 52.58 63.54 46.48 79.63 29.94 45.56 43.21 97.56 13.29 36.52 11.75 69.52 69.63 60.25 92.94 71.46 67.67 69.34 90.99 39.59 81.52 90.50 64.18 43.75 74.36 12.90 25.80 88.55 27.85 78.61 90.15 71.70 69.77 41.00 13.89 34.02 39.34 12.68 84.87 34.72 43.55 72.64 97.13 6.38 89.43 12.24 95.59 5.25 2.42 86.02 10.98 96.83 4.85 76.37 14.73 36.86 56.82 88.47 15.74 9.39 5.57 49.72 35.09 74.57 66.85 93.80 46.01 22.53 81.17 65.30 97.05 20.62 98.91 60.62 0.30 90.08 44.27 57.99 69.14 -90.55 80.02 58.86 72.82 76.54 91.69 63.26 70.97 86.65 95.62 18.40 36.78 89.43 78.53 39.35 76.87 11.44 47.56 83.57 64.50 62.40 69.65 61.52 7.90 22.90 76.22 12.37 1.35 7.79 84.36 34.69 60.28 68.73 92.47 99.94 39.70 43.05 75.42 69.37 51.04 28.46 95.39 54.27 35.99 15.72 48.18 83.51 42.76 68.27 67.50 56.95 60.78 69.41 50.72 24.22 70.48 83.85 5.31 63.18 31.37 30.84 14.87 56.10 65.47 66.42 92.26 39.98 35.37 55.41 80.63 48.12 29.59 90.70 98.95 32.82 96.58 3.51 45.69 7.45 13.26 70.11 18.06 6.58 34.91 66.68 17.37 33.58 20.37 54.55 96.04 25.35 73.88 44.92 90.07 59.75 88.69 54.58 92.49 97.21 56.43 -19.65 5.95 72.60 48.96 45.48 30.81 15.31 58.66 59.79 38.87 76.16 62.27 27.73 7.79 32.28 87.93 14.90 65.52 6.13 3.76 49.05 88.76 91.28 60.69 52.19 92.64 27.52 85.69 58.95 73.90 74.74 97.67 78.64 75.78 52.08 11.14 77.85 15.07 55.87 76.54 74.64 10.26 34.02 38.31 98.09 40.82 72.26 16.46 94.24 12.10 12.78 80.23 97.83 62.42 90.30 37.29 84.93 70.69 37.59 97.02 78.61 48.21 40.49 11.85 34.98 0.40 71.09 87.22 31.63 19.39 7.97 94.12 86.06 72.56 25.12 1.52 69.52 1.09 98.13 17.53 0.67 46.49 72.02 20.22 93.77 49.54 22.12 83.00 43.98 9.72 14.22 67.96 0.25 52.10 14.66 38.22 88.40 11.06 7.16 72.84 -76.52 37.97 55.08 6.69 51.14 17.48 78.98 19.92 53.57 83.25 54.96 55.58 79.95 65.91 40.06 19.02 20.34 1.64 89.51 32.58 41.09 52.49 2.22 70.57 55.89 13.39 25.96 92.97 18.65 84.54 4.23 42.35 9.48 63.96 52.55 83.00 44.32 68.51 55.36 43.31 28.52 18.46 95.17 84.43 41.83 62.15 67.75 10.19 53.28 72.62 49.88 64.39 78.45 90.87 79.69 17.55 70.33 74.05 7.47 33.15 56.27 37.91 5.84 79.22 52.96 18.38 36.33 6.72 64.89 56.58 35.96 57.36 6.58 6.54 50.06 29.86 83.77 0.10 64.11 67.74 57.13 95.06 75.49 88.43 26.58 24.77 53.01 99.25 93.53 60.61 28.03 5.96 6.70 42.54 41.04 17.88 28.76 26.78 81.99 92.03 -17.88 6.84 91.56 70.79 82.15 8.37 97.45 69.30 83.61 97.89 16.88 73.84 49.81 52.64 48.23 27.82 63.38 82.20 94.14 58.97 65.67 11.31 98.24 64.86 91.79 48.28 29.49 36.21 74.12 95.14 60.60 32.17 28.95 16.71 26.43 3.32 9.49 97.45 53.92 68.78 75.25 22.89 1.07 5.94 2.55 66.41 10.16 50.43 46.57 93.72 48.09 86.21 68.18 67.98 44.21 65.46 70.28 42.42 54.24 74.62 26.85 67.12 82.55 8.44 64.28 59.66 91.06 97.06 84.70 99.76 10.53 47.23 80.88 28.28 68.44 77.76 51.94 85.21 69.66 81.78 48.86 90.50 5.14 40.77 56.03 7.16 23.30 23.60 59.12 63.82 76.07 89.27 17.11 40.87 49.48 29.07 32.45 28.35 49.42 52.06 -23.57 19.54 86.40 23.43 27.83 15.86 88.00 15.73 10.63 86.06 76.50 72.18 36.11 27.56 68.31 77.16 2.33 22.69 3.39 93.80 67.44 82.00 83.43 94.25 75.14 27.46 41.87 10.52 53.04 14.87 17.49 58.64 56.36 41.36 94.09 1.46 63.12 0.73 14.17 65.41 62.97 38.22 87.27 11.65 13.29 51.95 89.84 52.26 39.16 78.57 67.90 93.18 91.14 95.72 22.00 60.47 44.63 52.82 22.74 71.20 83.05 27.12 86.70 79.19 93.22 94.17 5.43 38.09 18.57 21.75 84.85 45.55 12.97 93.54 47.57 37.23 19.61 36.77 82.99 40.97 18.87 92.14 84.29 62.53 68.18 63.85 54.07 99.30 83.74 12.88 81.17 36.95 56.27 9.87 7.95 97.44 79.19 57.68 99.68 74.10 -21.72 52.39 28.65 52.90 34.12 69.05 41.81 30.48 71.34 62.72 80.94 17.11 3.77 18.09 49.69 70.01 65.84 65.89 45.03 92.72 22.67 66.64 93.45 21.19 34.92 9.68 5.41 9.19 54.75 93.56 94.54 15.12 51.78 30.78 64.47 47.68 87.53 39.07 84.22 69.44 63.60 72.86 55.11 79.19 62.85 53.79 9.15 28.17 31.45 68.22 8.04 82.56 88.56 89.49 22.63 39.61 60.32 9.96 31.36 30.42 77.98 36.54 81.34 0.31 29.42 84.06 71.20 64.35 87.98 25.36 17.82 31.38 10.02 13.66 74.75 12.56 95.08 22.04 46.66 6.28 29.96 50.60 3.96 18.70 61.77 37.84 53.69 76.59 81.12 28.15 50.94 90.34 47.49 43.60 67.96 43.17 83.73 39.23 70.87 98.19 -94.65 65.37 83.06 14.11 16.53 83.71 73.88 50.49 6.39 4.91 86.20 23.60 84.59 69.94 35.04 18.74 66.95 52.19 91.98 89.36 50.34 92.01 9.51 11.11 67.90 81.83 17.49 48.66 14.14 14.36 78.96 66.37 51.26 8.97 26.17 52.68 12.09 38.35 63.51 71.20 81.70 17.08 87.36 45.39 36.38 53.38 16.00 30.80 11.94 60.99 53.17 15.23 50.46 62.21 29.84 9.68 55.71 66.97 14.81 24.18 98.36 22.85 31.52 64.93 63.63 92.58 96.13 4.52 52.17 11.72 50.97 37.63 25.17 48.70 97.84 22.66 9.98 10.80 55.65 96.24 56.85 93.48 21.02 83.73 57.23 29.37 47.48 72.80 68.79 94.37 56.70 47.44 41.33 72.60 31.10 34.95 40.88 39.16 33.90 76.98 -6.73 13.72 88.86 36.31 42.04 99.43 50.16 89.09 17.91 56.40 73.33 89.14 57.52 34.84 94.77 83.11 85.25 72.67 20.84 23.55 97.16 11.60 2.16 1.25 54.92 68.73 2.00 61.22 50.10 9.83 48.43 40.03 37.94 58.98 63.56 19.01 68.68 96.59 72.50 15.39 33.54 29.32 27.53 16.49 42.42 34.77 86.51 55.24 86.05 49.35 76.68 64.11 18.68 51.15 43.87 60.51 81.76 3.84 95.94 46.53 93.29 39.31 69.15 57.68 31.98 48.99 48.75 91.24 75.22 33.39 23.50 14.64 81.23 38.03 46.16 33.93 54.79 56.41 45.15 45.30 29.49 90.87 36.63 81.16 13.53 82.89 7.89 40.95 31.15 13.04 57.05 20.41 69.32 95.48 47.21 82.99 25.22 6.19 10.84 3.84 -33.43 81.58 62.12 72.89 87.39 8.85 22.40 53.07 42.63 9.81 18.44 40.23 77.64 86.84 1.83 94.61 92.41 2.91 51.93 27.83 28.60 16.55 13.92 73.98 45.26 55.64 29.89 10.70 90.80 11.81 56.25 3.13 30.26 47.27 94.27 51.64 25.47 8.42 7.44 36.31 29.18 60.67 90.00 98.34 60.70 25.45 71.23 77.86 20.77 7.24 63.08 18.17 29.85 42.83 67.11 84.43 36.16 16.32 37.42 60.78 39.38 97.66 75.12 81.42 76.75 35.64 67.80 17.26 26.05 69.84 17.60 72.02 31.35 48.55 56.81 83.26 50.75 32.96 21.83 77.22 81.45 71.19 74.08 19.25 76.11 35.28 27.68 75.52 41.90 55.72 30.97 64.16 44.29 61.59 37.71 37.34 95.02 76.55 11.24 15.21 -67.36 99.73 98.43 69.72 29.34 9.90 90.81 9.75 1.72 75.20 61.17 79.80 21.65 34.23 51.37 20.75 26.82 19.48 45.90 24.13 85.14 95.37 4.79 75.79 89.37 29.94 78.69 67.64 20.54 9.09 52.91 23.96 72.85 35.55 56.08 40.46 64.52 39.79 77.42 3.44 60.03 29.67 18.02 62.62 16.87 66.16 84.29 48.79 17.16 40.48 52.77 43.87 40.56 62.13 2.94 40.26 62.29 17.22 55.58 24.81 98.67 12.42 40.69 36.17 30.44 96.16 25.50 77.18 21.18 71.97 58.41 59.87 46.26 85.70 99.96 6.56 73.94 29.36 53.84 54.85 41.93 96.89 55.55 98.01 30.83 41.61 21.76 33.20 94.79 54.11 87.01 78.76 21.40 11.50 82.73 68.92 36.98 50.55 6.20 59.42 -43.47 30.83 89.35 5.35 79.27 66.80 65.91 79.37 61.06 41.97 78.04 86.76 37.48 19.62 73.55 53.49 72.86 45.41 31.14 23.02 1.48 11.94 67.00 51.33 74.86 97.88 10.35 86.59 48.03 41.01 90.98 96.50 95.07 2.93 47.84 44.92 82.67 3.12 60.93 3.92 94.21 55.01 26.68 69.19 80.86 75.53 80.94 77.51 91.69 54.32 84.27 30.39 66.41 47.35 43.32 64.23 88.90 56.44 1.40 63.71 8.82 34.81 12.49 92.36 41.38 20.24 84.20 70.85 38.80 62.93 48.27 36.31 84.70 90.15 80.43 41.71 52.93 71.06 40.74 46.56 99.33 55.11 32.18 48.15 22.58 10.46 29.18 78.88 6.37 20.14 41.72 43.87 77.09 88.33 85.54 65.82 45.92 79.77 70.02 61.00 -29.17 86.64 42.82 10.41 73.50 48.34 18.74 3.06 83.45 39.39 73.66 15.41 35.84 90.92 87.79 15.17 57.69 48.46 29.62 82.52 37.97 85.18 95.44 47.98 31.21 20.20 51.97 65.87 97.69 5.43 80.87 90.89 19.07 70.28 67.93 28.89 61.15 53.58 39.27 84.21 50.65 78.12 76.82 3.77 46.80 21.82 30.26 32.98 40.10 96.48 62.05 5.61 72.64 39.63 98.81 90.68 18.11 12.18 44.97 94.24 47.74 40.71 96.07 96.39 82.04 43.71 10.55 25.46 21.21 13.74 7.91 5.39 71.88 86.52 6.30 29.82 47.17 85.98 81.00 35.99 40.23 82.54 32.39 19.50 17.46 86.69 95.02 62.48 79.65 40.81 77.43 40.55 29.57 1.75 61.64 68.12 12.84 51.36 28.65 50.19 -99.85 83.50 39.18 2.53 24.41 60.93 38.93 32.58 2.51 38.38 50.43 9.79 98.55 68.57 55.08 35.23 65.39 44.88 66.28 96.64 32.97 27.57 24.52 89.22 41.18 69.81 46.63 71.11 24.67 13.05 71.09 52.88 93.65 12.71 27.19 19.87 3.92 17.43 2.28 35.28 32.61 63.30 4.91 9.58 43.69 57.28 44.87 45.88 67.29 3.66 50.52 26.73 31.15 56.48 30.96 97.20 51.29 87.32 11.71 97.45 34.06 23.29 18.65 39.08 59.94 6.84 71.25 75.51 48.34 15.02 65.77 30.15 48.15 70.48 77.68 64.17 54.36 67.45 91.85 76.59 13.72 54.93 59.78 86.76 87.75 84.27 93.77 89.90 17.64 65.28 42.61 3.68 45.72 15.72 23.96 25.33 57.30 13.31 50.48 32.43 -71.20 53.88 47.55 17.63 13.72 87.52 86.62 42.97 59.96 66.76 88.35 10.49 5.11 9.59 37.38 62.92 92.83 83.96 70.08 51.23 73.84 8.40 45.20 33.58 95.05 19.92 64.16 87.14 21.20 91.36 49.46 31.26 7.38 39.69 64.37 47.85 2.53 39.80 66.90 62.32 37.48 25.74 93.21 64.86 83.49 38.04 56.10 87.83 38.20 98.40 55.52 8.10 14.69 94.62 97.79 82.70 77.54 19.34 77.61 86.22 83.97 40.20 19.41 35.61 48.19 67.62 77.50 66.04 12.01 72.70 69.27 52.50 88.74 17.58 51.46 71.48 67.44 1.35 57.54 79.47 62.35 37.88 27.45 40.28 6.08 74.35 9.38 30.85 58.68 33.67 53.89 92.91 23.75 67.47 38.60 4.48 6.53 50.37 89.48 45.24 -41.11 96.44 35.47 35.41 80.34 88.33 4.35 41.44 6.10 58.85 86.83 82.39 29.66 64.24 86.15 20.37 93.38 5.70 11.35 6.05 16.37 37.79 34.31 57.09 32.37 32.20 55.64 74.45 19.16 74.44 12.74 76.38 22.41 98.94 50.04 50.79 61.76 8.53 11.11 19.06 33.96 62.21 12.78 55.07 15.77 47.41 17.78 2.28 76.41 26.85 31.45 84.66 68.43 5.77 46.83 52.04 47.57 57.70 85.70 76.85 20.47 22.97 33.67 95.34 38.38 21.31 68.06 29.06 69.79 34.03 92.83 80.87 18.96 73.67 97.21 27.86 83.00 50.74 87.34 72.21 43.95 25.31 29.91 99.48 54.19 12.90 86.12 36.78 8.97 11.63 55.25 32.83 93.47 49.62 98.20 65.29 91.97 88.20 98.73 76.99 -78.35 1.44 88.45 49.86 44.00 1.09 78.21 36.14 85.92 82.06 12.72 43.70 67.97 29.33 93.84 90.00 98.94 68.22 13.31 87.53 93.81 44.65 38.89 75.71 40.39 38.30 35.91 2.01 14.39 96.77 17.29 67.10 47.20 23.62 45.98 8.39 43.89 8.01 58.79 47.94 92.74 25.58 67.09 89.45 72.02 51.56 87.62 42.48 90.66 93.22 78.35 32.23 7.38 0.72 82.51 22.18 22.18 20.62 48.46 9.78 85.58 34.42 40.81 24.87 18.48 75.83 27.56 61.38 84.07 94.73 96.67 84.80 6.32 44.78 42.23 17.84 73.61 96.24 97.59 46.22 77.31 68.25 26.42 56.23 88.29 6.81 10.48 36.98 1.66 37.97 20.15 67.75 64.94 36.42 17.93 77.36 8.31 13.01 3.60 91.95 -23.43 18.72 34.63 51.09 72.05 61.21 36.93 35.99 65.91 43.72 60.35 63.49 33.70 85.70 64.33 85.93 58.10 90.24 90.88 3.68 95.95 38.86 42.65 42.62 36.37 46.78 78.18 63.43 73.54 11.45 30.38 60.90 47.77 67.10 4.87 38.64 51.10 70.41 46.70 47.23 22.73 99.53 95.11 40.89 69.39 98.78 13.49 33.35 40.50 90.72 97.51 72.36 78.44 92.11 92.60 58.87 71.47 10.39 1.98 49.30 9.43 78.98 99.16 75.57 41.31 70.28 37.78 26.30 9.20 1.41 38.55 50.60 99.35 15.57 96.38 2.00 97.35 42.98 32.51 57.38 53.33 84.99 6.81 25.71 97.28 32.84 4.09 64.78 5.36 48.69 2.85 3.12 93.61 62.36 56.79 51.92 87.54 61.45 9.89 34.11 -75.27 69.70 98.71 93.85 22.84 78.30 28.73 34.74 79.57 73.58 14.04 79.48 44.57 63.32 44.89 2.81 12.82 21.57 69.67 84.66 73.85 64.17 3.26 15.44 52.74 37.04 81.86 92.39 98.93 9.49 31.54 5.69 38.07 40.94 73.52 25.25 99.66 86.29 62.24 89.25 43.12 13.31 72.49 92.56 55.81 85.88 49.05 5.37 27.43 60.92 67.13 0.13 66.73 17.39 29.02 60.20 28.40 69.79 87.06 90.31 9.19 20.38 61.30 77.67 80.07 61.34 74.40 91.88 54.04 8.13 50.87 42.39 62.69 86.36 37.33 12.88 20.86 69.76 27.13 74.43 90.73 44.80 62.90 43.59 25.03 98.39 11.17 41.11 4.03 41.24 84.37 20.40 67.24 75.76 76.31 22.41 8.70 40.98 32.30 58.99 -42.70 49.69 68.17 53.66 17.72 69.30 61.06 5.69 77.85 51.70 55.27 12.96 65.96 78.89 17.92 80.48 22.03 33.88 70.55 76.33 0.99 69.14 49.65 58.59 75.05 22.22 45.29 56.28 77.52 94.45 6.99 74.45 14.21 1.16 1.01 85.36 40.60 78.20 50.65 92.98 69.15 93.28 33.78 46.43 8.55 5.51 36.52 51.98 7.87 21.68 79.21 36.49 90.64 41.69 68.26 97.41 49.33 62.77 85.93 45.84 22.98 13.00 74.21 55.72 31.44 30.70 68.67 53.38 68.02 16.99 73.18 32.84 4.54 87.21 90.76 3.30 59.79 76.63 25.20 49.92 42.25 7.55 15.72 13.72 64.92 72.29 23.84 95.35 10.85 11.40 11.24 42.32 37.12 16.30 67.05 98.50 59.86 78.25 33.58 74.31 -11.51 5.76 45.95 76.16 4.47 14.77 92.90 87.75 87.14 77.04 45.87 15.80 93.95 61.98 96.03 8.19 22.49 61.38 27.37 70.83 35.54 16.65 82.44 89.95 68.37 95.70 49.28 13.79 52.99 57.28 35.08 23.47 98.66 25.94 33.58 84.56 9.71 92.88 7.51 8.74 34.32 36.67 91.27 94.72 64.78 7.45 19.58 53.61 9.67 25.73 92.14 62.98 0.47 97.40 21.95 32.02 99.64 90.59 89.78 91.96 95.90 82.42 94.82 28.65 73.78 48.99 80.13 12.13 25.88 91.89 25.42 52.71 86.53 28.66 95.62 38.30 49.18 3.37 51.59 18.68 25.20 37.64 38.20 17.32 1.06 55.02 50.05 19.85 14.14 61.35 58.65 17.46 97.40 14.59 48.53 15.23 7.69 11.59 86.52 26.23 -36.37 66.11 62.02 59.09 82.92 47.53 27.75 1.70 48.79 22.39 80.45 19.91 4.96 96.21 70.94 34.55 66.95 33.69 97.42 56.20 64.57 50.25 26.66 83.62 58.37 21.11 68.31 82.69 88.94 82.65 94.27 48.91 53.27 81.85 56.81 32.34 28.51 69.44 59.55 98.41 33.28 15.80 64.30 48.53 57.28 43.08 86.57 51.68 1.60 83.27 25.10 20.84 99.75 88.54 43.51 6.45 56.82 15.96 84.75 35.71 51.85 1.95 26.67 93.10 87.98 82.32 21.04 48.24 36.55 56.30 75.18 87.94 90.72 51.37 90.69 10.17 25.29 52.95 9.58 36.55 73.66 87.94 96.75 49.15 38.30 10.59 46.06 14.64 47.87 41.52 94.09 60.97 88.87 70.62 85.16 66.14 99.37 74.86 82.60 68.93 -15.49 46.26 70.55 72.01 35.83 48.94 41.48 84.68 9.04 68.01 69.28 91.32 43.05 53.78 54.51 75.50 63.92 57.38 35.55 17.18 51.31 57.67 22.87 54.78 45.28 85.87 26.83 88.75 76.77 79.29 93.27 91.67 85.90 98.98 27.28 24.93 87.77 94.37 62.17 15.78 21.25 76.09 34.75 8.82 88.44 13.53 32.96 17.99 17.86 55.79 6.37 38.33 50.89 74.06 79.85 25.76 20.89 89.47 20.76 89.12 25.11 91.70 95.75 47.07 12.36 70.18 13.03 35.23 17.58 11.86 40.96 96.26 90.97 36.60 27.61 45.00 65.23 1.53 93.77 2.79 71.63 86.65 70.75 66.14 81.05 24.94 48.62 7.20 17.64 70.33 99.75 61.64 35.69 69.92 99.91 63.11 66.37 38.73 16.81 38.54 -9.03 85.95 83.93 61.11 28.03 14.88 16.72 65.11 75.72 63.33 93.10 74.67 93.63 38.26 22.40 98.67 34.08 48.10 82.35 58.85 65.91 92.23 40.05 85.25 67.46 9.24 65.86 34.16 75.30 77.14 93.05 90.79 16.25 22.94 72.54 17.34 42.07 50.67 79.55 63.35 8.10 87.28 22.99 36.42 83.44 20.48 3.17 17.43 86.53 58.54 72.99 4.75 47.74 0.90 25.55 59.86 73.09 21.56 16.27 74.11 13.60 82.54 9.82 47.22 4.69 33.21 99.60 52.29 82.89 81.04 54.48 23.25 21.31 5.67 36.92 26.11 40.07 25.97 45.11 61.14 45.42 60.16 8.93 90.55 73.42 35.50 38.27 54.13 2.12 8.97 65.45 67.34 11.62 0.35 35.46 43.89 66.70 56.45 97.26 93.13 -37.42 72.19 42.00 18.56 75.06 70.40 46.59 84.44 73.47 35.88 44.27 19.29 42.60 44.15 10.75 24.54 41.51 66.31 1.37 75.54 54.96 7.11 38.40 68.17 98.90 73.28 17.37 80.37 19.02 64.87 93.06 94.78 42.38 77.67 61.20 13.80 44.14 55.86 73.89 28.67 22.30 40.77 97.06 94.96 99.12 78.67 83.45 91.72 93.01 45.44 21.57 86.05 33.36 8.50 37.11 11.15 82.15 60.15 73.49 69.01 83.29 93.51 85.83 34.72 86.70 21.09 71.20 46.34 6.09 54.49 99.67 89.28 31.69 62.28 8.82 49.43 5.09 83.17 69.94 13.04 92.44 45.65 43.77 5.52 77.03 11.66 87.99 8.02 18.22 22.31 40.53 82.17 63.50 20.93 59.68 47.85 25.66 38.92 29.98 78.94 -93.61 52.76 62.76 73.90 1.30 65.07 19.41 59.88 70.06 86.05 11.54 9.56 99.85 8.26 72.15 14.56 83.21 77.54 61.11 99.30 55.49 9.31 17.12 0.46 34.36 74.60 16.16 63.84 17.57 79.42 10.06 99.83 27.47 80.51 1.29 68.20 65.40 69.66 36.62 19.89 77.93 37.02 4.76 94.85 8.02 58.25 46.80 81.05 39.83 69.27 82.62 57.77 64.45 2.42 27.20 86.73 10.21 46.51 10.45 15.51 30.02 1.13 62.35 14.63 95.97 84.68 68.60 72.71 4.04 64.75 34.35 91.14 31.01 33.60 92.62 24.79 22.31 88.75 22.84 42.84 54.41 13.78 13.42 91.81 59.80 9.20 72.85 22.23 76.33 98.72 3.93 87.44 14.35 56.37 36.30 90.37 90.06 89.69 83.09 54.42 -84.59 56.92 64.31 13.82 91.31 4.58 17.41 30.91 27.46 10.54 67.61 22.78 46.62 46.08 21.56 37.18 18.45 60.17 51.58 50.76 98.91 22.87 4.34 98.06 73.00 47.47 63.08 23.45 77.74 88.38 24.45 55.51 92.19 58.38 72.20 17.89 83.50 68.73 52.59 46.44 16.01 84.22 36.48 0.53 32.14 20.19 42.96 88.32 47.21 40.69 87.96 84.76 23.08 68.24 65.70 58.59 61.58 34.24 40.71 73.23 71.73 18.32 88.37 21.57 64.62 68.43 37.80 1.78 50.25 97.61 23.16 80.62 17.54 59.81 4.92 43.30 49.93 65.58 66.91 43.78 99.40 87.60 74.59 91.34 65.58 9.76 8.32 87.84 77.79 81.36 34.41 98.43 2.62 18.34 77.20 46.64 18.65 14.08 17.39 46.51 -84.46 64.72 33.08 13.55 2.38 72.82 29.01 65.78 90.99 84.91 3.75 94.15 9.00 0.79 85.46 27.30 67.60 21.81 11.86 52.59 88.71 81.44 99.25 64.28 5.53 71.03 65.92 5.74 16.23 26.18 35.15 19.30 48.00 95.68 48.39 10.80 63.44 39.46 53.54 92.16 37.25 82.96 4.62 30.42 61.37 93.09 18.75 43.86 17.77 22.95 17.07 17.22 75.36 69.97 94.22 26.22 16.23 70.98 58.17 18.46 33.48 23.62 76.95 10.30 11.12 76.96 90.26 29.51 19.26 24.40 29.01 20.92 80.81 53.51 52.62 85.40 19.14 14.55 10.28 0.29 20.25 99.40 80.78 28.52 96.59 67.15 75.16 97.77 68.60 56.59 12.60 79.34 74.24 60.33 31.56 55.39 33.46 80.83 35.55 68.17 -82.33 45.27 10.62 29.56 5.99 14.34 14.41 48.66 3.50 34.71 78.51 81.39 35.01 34.06 79.91 22.29 83.73 11.83 33.04 16.60 95.80 15.27 7.49 99.96 94.00 49.94 92.40 42.85 22.15 53.01 68.70 27.19 13.62 74.03 95.53 29.06 94.16 76.97 30.70 12.66 87.53 50.92 0.42 74.70 0.56 42.15 49.04 84.36 58.24 58.40 25.01 79.83 51.71 92.57 43.20 39.02 13.66 90.23 47.82 38.63 2.30 47.79 67.66 94.02 15.44 0.70 53.51 6.34 52.54 70.40 34.56 91.56 94.21 42.80 94.99 79.48 21.10 86.18 18.29 2.91 46.98 20.90 76.33 65.37 56.22 3.81 99.27 74.06 27.70 60.34 2.47 63.72 95.36 43.56 54.68 3.57 58.91 7.27 87.44 61.90 -88.78 43.70 19.30 83.72 91.74 2.17 74.26 47.83 54.65 7.26 39.37 11.15 52.98 85.65 70.71 24.65 50.03 19.42 57.91 25.74 81.77 40.08 23.01 76.31 31.40 76.76 46.71 5.61 38.35 88.31 40.44 53.87 27.25 10.29 47.36 60.92 39.24 94.97 5.30 31.08 51.79 91.22 73.67 31.08 55.36 41.95 89.28 56.36 60.91 35.95 16.45 10.18 28.54 3.44 15.34 28.04 63.06 21.98 25.24 48.25 35.57 43.75 55.70 95.91 18.11 69.21 55.20 81.24 47.80 97.20 92.76 84.20 18.70 29.32 6.99 71.63 78.14 41.20 41.11 38.22 36.52 70.22 85.36 84.89 99.19 88.25 63.88 85.60 18.96 78.94 35.40 92.52 86.71 56.13 26.19 43.80 58.85 52.17 46.65 43.16 -61.02 54.81 79.64 88.31 13.41 61.37 29.39 39.13 44.16 23.88 18.28 53.25 49.05 93.80 16.35 96.45 36.33 65.70 22.95 53.30 31.98 21.08 34.10 29.52 54.43 7.69 30.70 18.54 95.65 83.19 97.24 77.82 71.76 92.09 37.72 94.57 2.22 19.78 36.85 33.91 28.26 12.79 7.26 18.22 3.07 14.56 15.17 1.59 11.86 39.59 35.56 10.26 13.38 43.15 13.48 94.97 39.19 38.89 99.20 58.02 71.72 93.62 23.80 26.11 12.41 19.28 38.51 69.98 23.79 41.12 4.75 14.22 54.33 17.07 68.27 28.97 42.33 54.48 96.21 65.84 96.95 96.14 97.36 54.42 17.34 34.68 30.65 61.03 17.55 12.41 43.59 32.77 99.99 28.68 4.68 84.33 51.39 25.89 50.56 73.29 -80.21 88.31 75.33 80.00 79.51 11.98 86.88 41.13 35.51 77.96 30.67 97.07 68.20 15.09 10.05 5.92 15.18 88.17 64.33 19.05 1.27 73.18 17.55 43.34 72.96 86.44 26.17 19.92 10.24 2.37 7.99 61.39 47.31 35.14 50.45 9.05 11.62 26.49 93.86 99.95 63.62 99.46 58.83 6.72 96.77 37.57 83.27 40.17 47.36 20.97 80.70 85.65 72.02 67.24 44.92 4.48 98.50 43.76 44.79 47.37 29.21 73.97 40.03 20.74 62.40 84.39 33.34 42.16 6.06 91.76 2.76 96.62 80.08 33.26 28.45 21.92 96.62 82.92 54.65 14.10 88.14 23.19 47.52 93.42 88.86 80.54 50.68 81.50 48.96 43.28 23.90 3.69 21.74 4.10 0.09 42.22 51.47 71.76 49.63 68.65 -67.04 83.93 93.16 2.38 29.27 44.91 35.43 97.20 73.48 8.31 81.22 86.05 27.57 35.64 55.97 5.88 97.65 82.00 80.49 89.04 6.50 11.26 26.84 77.41 21.03 37.77 82.23 87.55 57.73 31.54 97.87 19.53 67.57 82.65 48.98 53.13 61.33 94.49 59.86 11.61 64.44 20.87 46.69 55.74 72.82 84.03 33.35 30.27 78.84 72.22 46.33 2.50 34.64 24.27 34.50 97.88 20.40 85.48 71.36 59.88 2.02 56.01 6.30 42.92 34.96 42.23 1.05 16.78 57.15 41.16 83.95 16.54 9.26 55.22 50.52 21.22 95.72 37.33 95.89 46.19 5.17 85.11 74.25 93.16 85.13 71.47 88.47 34.51 45.76 88.98 97.03 13.81 96.16 21.39 90.50 78.80 60.91 37.46 1.65 85.41 -92.14 6.04 93.82 47.52 21.82 66.03 60.39 18.67 48.70 84.62 45.61 44.09 40.22 18.63 34.35 43.67 84.33 96.05 27.72 41.17 85.20 56.87 59.64 80.71 19.91 60.23 91.17 33.45 25.74 25.17 42.09 26.24 95.65 24.22 88.87 61.74 29.54 86.74 41.58 47.53 42.24 56.46 97.43 8.22 5.18 57.94 39.20 93.74 27.82 69.89 25.36 35.10 37.31 37.68 25.42 29.22 16.94 55.30 92.20 31.07 12.67 98.78 65.94 69.17 79.98 25.93 18.24 14.49 8.78 12.67 7.29 1.34 95.78 35.80 6.71 52.10 53.48 39.73 95.15 78.15 70.41 65.56 68.89 90.32 66.77 31.46 8.53 12.12 90.53 27.88 83.58 23.87 11.95 37.79 62.49 2.68 22.37 23.58 84.11 41.65 -1.90 75.54 51.53 96.36 98.75 62.13 44.52 85.86 65.75 69.96 49.15 7.97 41.08 4.61 48.67 67.34 98.70 41.62 14.21 91.73 84.85 10.31 38.95 55.90 53.41 74.86 11.72 14.22 29.33 16.31 87.13 53.86 1.20 75.36 61.85 36.31 7.81 88.65 24.99 74.12 39.47 65.83 16.94 3.76 46.14 78.37 15.11 46.66 14.29 8.56 34.63 2.20 39.35 44.50 58.78 30.23 91.19 41.50 66.70 67.21 62.31 98.29 15.40 62.14 60.78 66.83 68.26 20.50 90.42 81.59 56.45 2.87 57.27 21.12 3.36 73.38 94.01 20.77 90.07 53.27 68.40 10.26 58.38 44.22 74.82 44.87 61.90 74.13 11.54 21.92 7.78 96.25 71.14 58.42 75.04 31.33 65.02 22.27 6.00 18.50 -67.22 5.32 52.88 61.77 1.50 74.97 65.44 52.36 59.22 97.38 1.50 9.49 10.86 25.96 63.90 49.97 94.62 88.12 28.34 62.89 79.77 64.26 47.49 85.74 32.42 26.13 85.26 9.62 29.43 65.80 80.71 91.36 49.78 32.85 67.83 57.46 20.60 1.36 33.84 89.25 41.41 62.42 65.33 51.66 96.34 20.61 81.07 57.81 62.69 81.19 34.64 21.83 23.15 52.85 62.81 64.08 35.07 59.44 92.97 76.13 93.45 59.29 21.68 8.33 67.71 28.82 75.91 35.99 17.30 84.41 72.39 50.39 49.09 14.47 6.41 76.25 42.70 96.43 24.51 80.90 38.20 95.75 78.93 58.95 22.58 3.29 28.25 69.89 11.34 95.45 34.17 95.61 39.93 85.14 73.85 9.20 45.33 74.22 25.38 69.86 -43.81 42.98 10.06 65.03 96.84 94.27 99.11 92.69 85.33 0.45 94.43 79.35 17.96 66.38 61.95 29.77 20.67 53.52 11.82 62.49 91.27 20.36 18.06 8.77 33.07 36.96 24.41 39.17 75.20 94.99 41.46 40.20 29.08 89.31 99.33 68.20 10.69 3.87 81.11 42.41 20.87 48.16 52.59 48.74 10.67 81.95 50.11 95.38 97.66 14.39 14.64 61.19 21.63 39.27 56.19 17.79 93.64 56.17 3.66 8.34 70.25 30.65 12.51 53.85 83.75 78.41 69.36 64.91 13.33 36.59 82.03 29.40 71.96 75.55 94.87 45.52 36.45 20.43 38.67 94.75 72.23 28.21 3.87 59.77 59.11 98.67 83.98 30.62 10.92 30.42 83.48 57.81 37.26 69.09 16.26 38.51 30.99 51.45 38.07 40.16 -76.54 9.87 79.07 92.44 43.52 60.53 7.87 7.59 1.20 33.45 48.41 57.35 46.89 58.45 58.58 40.15 0.21 27.27 27.84 72.58 69.78 16.56 10.73 83.34 80.71 88.87 47.88 38.59 4.44 96.77 18.39 52.82 58.06 27.02 72.02 39.80 73.22 6.54 7.90 81.08 95.46 77.26 89.13 26.26 84.34 50.75 66.53 56.67 11.61 64.33 70.26 84.57 6.61 12.79 15.81 73.60 55.62 66.49 44.61 12.02 30.38 98.48 39.27 70.37 84.65 6.94 22.19 73.76 73.71 49.41 82.11 38.63 49.03 54.86 94.49 58.07 94.77 86.65 98.13 42.19 17.85 59.67 93.83 31.29 50.37 67.79 21.82 51.83 10.74 82.74 81.74 77.07 13.16 37.83 32.04 87.21 11.42 16.83 98.12 47.00 -29.96 76.37 98.29 97.02 21.92 19.67 38.61 94.46 64.40 69.21 8.85 0.35 54.64 95.17 19.93 66.21 15.36 21.61 38.66 4.12 47.72 6.85 27.54 92.90 64.52 49.12 88.60 50.88 40.49 62.64 19.65 20.84 4.07 47.45 58.29 93.82 36.56 36.04 21.79 38.43 81.34 83.90 65.48 98.37 57.02 97.97 96.31 9.71 20.29 94.97 40.25 6.47 91.97 33.10 38.26 68.71 78.40 89.66 33.26 4.72 6.34 13.52 14.18 72.90 67.42 95.91 68.22 33.30 45.54 29.99 32.90 98.58 92.69 95.45 26.51 93.99 28.84 3.11 16.01 82.87 23.62 91.02 68.36 62.44 92.11 66.43 15.05 47.72 12.11 85.79 12.94 72.36 73.89 64.86 64.45 35.30 97.47 60.11 91.94 28.12 -53.55 18.96 88.75 4.99 36.28 1.87 43.37 33.89 63.23 1.47 34.83 13.35 62.28 23.22 9.70 41.90 29.29 10.94 91.71 57.75 95.74 76.77 92.98 91.96 50.52 97.00 22.28 65.67 81.45 47.17 75.99 53.59 21.50 58.39 92.80 62.61 70.90 46.99 12.11 75.29 14.80 49.13 41.91 18.68 52.66 98.90 78.48 59.26 46.99 84.38 39.83 74.41 86.42 57.46 99.99 69.28 13.55 30.38 26.01 17.89 92.38 8.26 36.29 67.63 15.23 9.34 0.90 54.27 62.19 95.45 51.63 25.79 14.49 96.98 66.28 89.08 96.99 9.13 74.85 86.11 10.45 76.64 74.03 70.95 58.74 97.10 29.48 62.78 88.88 11.60 97.52 14.22 73.01 88.32 55.40 83.58 49.38 36.77 71.49 11.28 -22.59 52.98 42.71 41.54 65.93 65.07 86.33 19.21 28.29 23.06 59.53 52.95 10.32 90.93 94.72 5.70 28.50 13.09 28.22 10.75 6.84 78.74 13.04 10.53 51.17 97.44 25.03 40.18 51.27 59.54 21.27 53.33 29.34 7.48 3.96 38.44 20.61 64.94 17.00 23.45 33.65 88.71 47.66 9.77 97.41 24.94 49.68 89.69 34.67 50.52 43.50 81.24 53.97 63.80 93.29 75.56 62.36 24.49 46.14 38.28 31.43 70.23 50.82 73.69 63.65 40.03 47.19 35.11 59.76 99.46 42.26 82.14 49.81 90.81 80.21 44.57 60.70 7.39 5.64 40.71 31.41 89.23 84.65 38.20 72.57 29.56 49.56 52.59 20.42 28.29 81.15 83.25 37.25 61.24 46.57 8.91 70.47 15.02 59.17 44.59 -6.79 6.07 75.86 53.12 28.88 6.19 25.32 91.21 1.62 31.34 97.72 77.37 56.34 85.40 28.71 77.35 51.19 97.71 0.94 93.45 14.73 78.63 97.58 46.78 84.44 44.21 56.44 40.96 68.57 86.84 27.29 81.50 68.57 58.68 57.12 84.39 97.55 68.15 75.47 51.34 55.20 8.57 91.30 97.98 48.49 44.05 44.86 47.28 68.54 2.68 7.95 20.21 48.84 43.18 92.04 96.32 19.27 23.75 65.25 35.36 92.50 39.04 67.97 57.42 27.52 62.48 10.17 12.22 51.92 7.21 22.50 71.71 78.84 93.14 24.00 0.66 66.56 59.18 5.34 27.25 51.50 75.28 95.35 43.57 78.30 34.25 66.76 15.52 89.48 21.04 71.53 28.36 57.86 50.46 46.20 42.04 68.86 22.60 5.16 68.91 -30.75 37.30 3.69 75.90 10.74 67.81 12.18 48.53 54.26 12.93 0.48 95.89 11.00 80.42 92.22 72.90 2.57 33.27 90.91 65.30 30.56 57.23 80.41 68.75 54.37 48.37 18.96 28.77 85.82 71.81 95.70 37.97 24.34 93.59 33.55 34.96 61.66 88.41 77.00 99.36 54.26 18.61 70.53 62.02 52.19 99.04 98.95 99.84 28.54 21.94 24.32 0.07 60.76 28.51 3.04 17.36 74.89 0.74 18.81 43.77 57.29 89.82 61.18 77.97 87.51 60.08 4.23 5.74 61.78 77.24 83.37 92.27 0.96 59.09 13.38 63.70 1.48 64.32 93.87 74.73 85.28 36.23 37.09 83.20 53.74 37.50 79.70 36.44 49.99 15.01 22.36 65.79 84.27 42.59 2.55 75.95 89.27 12.52 54.90 50.67 -99.29 9.11 32.49 69.69 53.95 84.75 7.00 65.66 9.83 0.22 28.32 26.61 61.39 63.45 89.00 86.80 29.92 98.85 71.05 19.49 85.56 38.58 17.42 98.61 92.65 51.34 60.46 52.86 99.52 9.06 57.16 53.14 46.79 12.33 69.18 10.36 83.67 36.59 95.28 73.93 40.44 2.42 11.83 62.47 56.26 55.81 21.05 72.68 14.42 5.41 28.13 56.62 30.44 24.84 91.88 85.70 57.40 43.92 34.69 53.00 75.37 25.81 58.30 27.86 15.16 31.31 69.31 2.09 82.96 86.10 56.66 34.97 78.13 55.95 35.76 6.54 41.65 18.77 29.77 42.88 58.26 77.46 20.36 66.86 87.10 45.83 81.31 7.36 15.01 26.23 6.74 81.32 73.54 44.72 48.42 24.96 78.07 95.99 65.32 60.60 -26.41 81.83 12.93 63.83 9.80 85.15 8.76 68.80 20.48 36.40 47.68 14.73 41.54 44.42 20.26 9.82 12.60 99.23 26.72 19.45 58.07 60.08 95.46 87.48 72.59 97.29 85.55 59.53 8.33 56.92 47.61 31.35 98.90 50.52 25.51 38.01 1.13 43.20 30.99 79.68 69.32 17.25 70.89 30.56 25.51 68.48 43.37 7.61 13.21 26.54 62.19 72.22 24.19 89.05 34.96 63.88 49.69 71.28 31.05 79.70 11.71 56.34 9.88 19.26 8.29 62.40 95.50 44.65 72.35 28.68 11.49 7.54 18.90 21.59 43.05 64.84 46.48 96.35 20.54 80.24 61.63 22.69 17.71 68.01 73.19 14.88 60.18 83.63 87.49 76.14 39.36 25.27 60.60 27.06 92.89 0.22 94.12 38.31 63.23 47.92 -16.39 33.07 2.26 32.81 56.53 82.92 52.90 67.52 16.42 98.75 90.02 89.37 43.97 63.69 91.20 1.89 20.55 18.84 57.89 41.53 59.32 23.64 29.08 4.34 80.09 48.13 14.93 88.84 54.17 27.83 21.36 35.16 39.08 12.76 98.65 64.97 5.67 56.66 76.09 29.65 67.32 0.75 81.51 27.42 42.97 4.45 61.69 86.54 85.94 48.98 0.19 51.79 48.14 10.11 17.50 68.81 12.41 82.57 61.65 72.19 7.15 6.42 23.89 70.76 84.23 23.60 63.10 15.81 40.23 87.16 87.94 23.06 6.24 17.55 14.61 69.59 10.19 42.66 2.79 51.13 67.75 88.25 14.96 34.37 85.59 55.03 67.34 53.04 5.24 7.37 55.93 83.94 80.39 58.30 77.54 21.22 41.80 38.62 2.02 94.64 -12.04 75.02 89.07 5.95 4.25 64.04 0.85 77.56 28.78 84.35 79.76 73.73 27.15 0.54 3.36 79.37 23.30 83.08 70.77 12.60 56.71 51.02 89.88 30.52 41.72 28.85 17.02 7.33 29.78 85.37 12.60 89.47 92.89 59.50 9.26 44.24 90.78 39.12 63.27 3.32 80.50 7.28 77.87 69.69 2.68 45.99 53.84 95.61 92.66 97.45 90.78 27.51 59.58 84.23 1.54 84.02 80.42 67.99 17.51 5.99 27.64 66.91 3.45 49.90 83.13 33.19 66.05 79.43 92.13 66.48 96.23 8.66 74.31 53.84 97.13 96.34 28.31 24.91 69.46 7.81 67.66 65.41 99.67 52.61 75.39 43.15 70.03 96.67 75.40 34.09 62.72 62.73 8.54 97.26 31.47 73.94 76.17 86.50 78.62 43.44 -99.02 22.40 46.16 79.26 56.12 43.58 47.50 36.12 14.94 57.99 88.24 25.65 54.81 44.23 26.66 66.16 2.16 58.55 53.87 93.05 17.19 77.57 49.66 55.20 9.66 6.52 22.32 90.55 37.80 65.81 70.43 27.68 8.74 1.06 73.48 33.38 56.10 41.56 12.70 40.77 93.67 17.23 84.28 59.90 22.17 82.34 32.56 9.78 83.11 1.49 23.99 70.61 61.89 79.56 37.12 64.11 51.32 85.58 24.27 38.27 63.37 71.32 9.82 54.35 29.47 56.16 1.53 33.73 95.20 62.63 35.98 80.86 78.33 30.33 34.14 3.98 57.14 13.00 51.53 2.05 4.08 48.18 49.31 34.41 52.56 60.12 86.29 72.23 61.73 16.33 50.75 37.24 63.22 17.64 61.34 17.93 85.82 65.54 22.14 31.22 -27.52 45.04 83.06 77.15 74.30 74.87 14.97 80.52 12.49 32.51 34.40 30.18 55.50 2.21 7.33 32.41 29.07 70.71 97.48 16.79 93.33 83.48 15.95 88.63 45.87 39.62 59.65 61.90 98.39 97.64 34.68 33.21 62.48 97.95 29.41 42.97 36.09 79.64 35.28 87.87 63.66 65.74 28.40 5.24 55.96 44.05 6.43 90.73 87.16 84.86 66.04 56.63 10.02 21.07 14.15 33.19 0.85 57.07 36.11 11.58 32.11 52.87 66.02 9.36 2.63 22.16 6.25 97.19 37.99 31.85 65.07 93.09 11.40 65.94 37.09 22.75 20.03 89.40 68.67 99.88 14.82 9.46 33.17 78.69 6.04 56.99 60.29 51.99 4.46 20.17 35.97 26.01 55.52 68.06 9.59 46.97 20.76 96.16 92.78 22.00 -2.72 88.48 91.63 79.25 37.06 97.03 93.88 25.01 62.29 83.10 34.55 5.53 74.18 22.32 73.78 72.61 59.86 38.09 4.17 50.64 43.83 71.72 11.54 41.42 5.18 84.02 37.53 5.02 5.70 99.99 2.75 14.10 91.62 55.70 52.54 18.81 47.44 69.96 44.20 72.63 38.19 19.80 55.33 27.20 2.92 0.12 24.12 6.90 32.46 97.68 51.77 20.24 61.54 27.58 56.60 37.78 53.10 43.21 77.78 53.74 60.99 44.82 8.61 38.05 95.88 41.20 15.44 86.73 46.02 69.56 95.16 72.21 19.78 16.66 76.50 7.54 10.05 39.90 67.41 34.00 11.17 48.00 80.25 81.58 30.08 80.78 57.79 85.00 89.50 86.26 9.67 52.50 23.60 77.46 54.50 49.14 71.48 90.29 6.70 46.64 -10.63 16.21 43.18 35.97 72.69 81.77 61.66 42.26 95.98 69.64 90.01 33.46 6.48 19.32 83.97 76.14 2.06 15.47 41.28 52.83 81.32 44.54 92.26 55.02 30.26 57.88 78.94 75.32 96.21 6.95 82.99 56.40 50.91 18.69 26.65 97.92 11.47 28.05 41.13 4.49 8.24 18.50 62.51 1.36 39.21 11.70 52.30 12.52 75.69 35.28 78.70 1.35 79.92 42.58 86.22 53.20 51.44 14.05 88.23 27.84 38.99 65.06 74.29 49.16 32.06 83.13 18.53 1.21 87.86 30.92 26.71 31.54 87.67 56.29 80.25 25.71 52.57 17.38 61.75 5.50 45.63 66.76 1.41 15.39 9.53 37.30 15.21 14.35 84.77 18.65 2.46 16.65 56.70 39.72 90.39 18.18 97.04 38.45 60.69 66.51 -5.55 66.55 51.48 72.26 19.73 73.29 73.45 62.55 45.15 32.98 63.71 71.50 74.85 21.04 6.43 45.63 61.35 67.58 34.53 11.47 2.23 53.36 34.26 99.58 8.75 32.76 52.07 21.34 74.98 40.21 44.76 17.52 99.39 90.66 56.22 35.60 2.54 47.29 94.75 2.70 68.01 41.43 82.65 17.88 48.02 4.69 11.03 25.08 47.31 18.30 87.29 78.11 83.00 30.25 86.45 52.08 10.45 31.62 93.50 8.20 63.05 46.15 53.65 67.02 41.09 27.25 87.98 90.21 38.01 13.86 90.58 96.48 95.40 89.44 55.52 8.84 20.05 84.21 57.97 52.24 86.87 79.38 86.37 60.15 14.33 94.44 19.36 70.78 36.33 38.66 62.42 22.34 80.36 76.40 92.76 31.31 4.24 63.59 0.85 78.08 -38.38 94.28 66.50 50.43 59.63 38.75 42.48 8.47 15.26 91.12 33.13 40.21 43.12 40.42 37.51 20.40 80.15 96.38 47.58 41.54 25.58 73.16 92.96 79.20 17.85 16.13 27.44 37.44 79.01 7.85 21.34 95.08 20.60 13.73 19.14 63.60 49.80 30.12 90.30 28.74 41.31 54.82 28.96 72.88 67.84 11.86 19.47 99.68 4.09 88.20 79.68 64.45 40.55 55.09 44.83 34.06 41.34 30.57 27.84 47.36 97.28 99.84 95.88 36.31 97.66 77.86 28.05 66.17 28.12 83.56 57.83 3.92 53.92 51.20 21.64 90.00 39.37 33.42 73.35 7.04 2.07 26.45 67.90 7.64 42.36 11.63 56.34 16.51 88.65 34.40 57.87 81.96 99.98 25.22 6.32 10.76 85.35 30.99 5.31 51.32 -92.09 29.22 25.38 4.93 50.04 72.24 34.19 39.33 12.81 90.70 62.03 39.77 78.55 51.74 84.30 19.91 59.67 61.96 41.53 89.07 4.98 87.90 53.37 7.97 11.28 2.03 38.07 11.71 82.91 50.83 25.56 60.60 84.15 37.19 36.87 30.28 35.95 49.04 81.54 24.01 99.34 37.59 93.25 5.59 78.11 76.39 38.30 75.07 3.09 21.10 69.70 35.86 75.05 49.38 7.90 54.64 84.47 85.74 43.10 54.23 22.27 26.52 9.28 4.30 71.31 99.14 47.58 31.98 40.66 56.44 29.32 95.41 7.71 30.72 7.09 68.97 82.63 34.60 24.54 7.31 58.11 29.70 85.06 14.37 10.34 87.35 28.11 24.66 8.55 88.24 85.76 24.20 36.06 53.72 16.86 71.44 90.89 18.63 19.51 80.87 -8.70 39.80 37.50 31.52 82.64 12.73 75.03 8.39 2.85 31.90 77.96 49.76 79.07 53.13 16.41 86.98 62.39 62.47 29.94 24.11 54.53 22.58 85.00 73.61 46.76 32.81 26.42 12.21 83.26 1.44 76.99 25.85 77.47 37.72 73.04 73.85 16.02 86.59 30.89 38.22 57.48 79.05 7.29 30.68 89.24 25.40 89.49 41.99 32.44 71.90 81.74 39.68 95.61 85.88 74.11 75.19 94.79 9.46 7.26 89.45 56.10 67.99 28.09 55.14 48.26 61.71 77.65 44.67 94.02 5.00 43.68 29.65 56.70 63.78 22.56 13.34 64.14 10.51 11.02 91.15 48.30 49.36 81.01 22.75 54.71 55.29 84.25 13.95 96.13 34.67 27.24 83.80 39.63 72.03 34.10 20.54 33.58 72.65 0.84 96.69 -65.06 26.01 66.96 70.74 3.94 7.94 88.84 39.61 4.39 79.71 39.96 70.53 65.01 51.16 51.56 49.96 4.12 58.51 98.33 77.14 96.78 18.21 39.28 32.18 11.59 44.29 98.92 38.00 49.83 38.59 21.35 14.15 77.27 65.54 44.64 31.39 67.01 50.01 93.45 6.32 88.78 91.60 45.70 99.39 22.32 56.86 74.48 71.92 17.07 22.81 70.66 35.66 97.73 4.91 38.61 34.36 3.83 42.41 89.85 42.60 14.39 72.40 24.45 67.51 16.30 94.41 82.68 1.06 98.93 51.93 25.33 16.66 63.22 69.21 94.50 29.34 44.93 95.33 10.72 33.75 64.61 70.14 58.21 72.90 11.34 78.90 41.65 76.77 0.38 89.04 6.39 21.89 44.30 30.91 1.71 76.64 4.72 64.74 57.22 76.16 -33.21 28.52 3.66 71.44 92.35 14.32 36.92 90.09 12.12 31.95 27.89 39.89 89.31 99.86 74.20 63.12 43.90 19.32 0.52 93.21 47.44 30.53 61.18 53.92 15.92 86.91 84.82 77.00 79.24 77.12 4.20 13.77 44.89 39.32 17.54 91.59 23.59 57.79 39.25 0.18 19.45 99.88 87.23 27.50 88.69 12.71 13.78 8.79 94.86 53.40 97.88 53.35 86.53 30.55 74.86 97.35 80.54 32.07 46.74 84.02 44.10 56.63 51.73 39.83 67.07 87.23 7.36 39.64 42.88 97.21 97.06 33.42 56.51 40.38 38.05 11.18 60.85 23.25 56.86 36.91 61.54 49.12 59.73 8.49 1.11 65.20 71.83 7.14 20.80 86.25 37.42 29.13 91.97 42.86 18.70 95.76 19.72 50.91 96.47 32.67 -35.27 22.48 7.54 81.74 16.05 40.01 15.27 74.38 21.31 57.30 19.17 68.52 84.52 38.82 12.85 20.50 17.91 73.42 65.28 3.40 80.65 12.44 12.80 78.48 42.26 44.73 87.83 79.90 69.29 6.10 50.25 61.67 25.68 46.98 81.32 26.43 72.34 41.30 95.99 39.28 1.14 1.60 68.43 65.07 12.85 73.37 63.04 55.77 47.39 86.56 90.14 51.42 16.45 4.47 16.80 16.12 50.73 4.20 27.27 18.66 99.82 25.73 78.86 25.95 38.11 7.63 28.52 49.92 35.87 93.36 90.11 1.53 32.88 70.29 42.31 15.35 98.22 74.34 46.22 76.81 21.76 4.47 29.17 0.39 42.73 97.89 22.45 52.94 39.96 8.57 15.89 20.78 28.05 88.76 75.32 4.20 35.19 47.12 37.47 16.15 -39.26 97.68 70.43 96.68 32.09 42.04 96.50 43.98 93.58 99.78 90.83 15.51 99.19 97.57 76.75 76.79 7.70 75.69 8.14 64.56 2.12 2.59 81.83 11.82 93.40 54.42 94.04 57.20 67.33 84.11 12.81 14.90 41.23 40.87 1.74 94.15 77.81 38.56 91.24 36.81 11.12 74.97 44.79 29.83 59.03 26.95 52.60 79.50 3.03 81.38 75.14 79.84 15.04 66.98 15.86 8.43 22.41 37.98 23.53 93.02 63.15 71.40 93.75 59.94 19.48 61.33 91.93 66.12 83.03 79.13 54.40 30.94 41.96 45.42 74.14 20.08 26.23 5.19 68.24 40.76 66.68 82.61 68.42 44.51 63.30 72.91 30.24 28.02 71.37 46.28 23.53 9.90 30.63 79.54 34.72 97.52 81.56 92.98 44.69 77.43 -65.07 80.19 58.41 45.89 13.32 3.76 38.14 11.08 99.27 55.93 31.35 53.71 27.64 26.73 37.19 48.67 51.89 93.08 17.17 29.25 94.02 77.33 67.96 54.98 2.00 84.78 11.81 62.16 97.49 84.34 93.57 85.07 24.09 57.66 9.70 41.93 44.97 60.07 59.66 59.20 34.71 62.12 46.41 2.54 74.13 21.33 73.80 59.61 86.86 86.15 44.85 42.69 1.86 82.32 8.97 49.02 57.49 44.05 66.92 52.33 48.38 92.64 85.90 62.01 32.26 10.98 99.31 9.28 31.68 77.45 44.97 84.71 29.15 78.78 40.32 67.28 21.13 97.70 97.74 34.24 73.79 44.74 36.79 87.52 81.75 91.70 61.25 10.73 41.36 79.67 74.39 62.45 82.69 3.19 28.36 14.94 29.55 91.88 63.36 86.96 -58.54 19.08 7.42 29.35 92.04 54.41 54.95 0.58 68.76 5.57 24.92 80.92 42.74 67.33 49.33 56.32 40.36 36.42 61.65 55.82 66.26 43.98 92.90 58.11 23.00 26.45 53.51 17.85 19.38 45.96 44.68 92.72 84.65 20.66 46.19 4.83 99.95 40.04 68.42 79.94 0.29 47.47 75.85 90.61 92.15 48.69 73.84 79.55 87.14 34.88 79.76 8.55 51.82 69.91 44.74 55.55 17.90 70.75 43.23 11.01 81.37 11.49 5.10 20.50 80.54 72.60 80.61 90.64 77.93 95.64 31.63 63.49 88.23 97.06 46.49 48.41 76.02 72.74 35.47 9.97 62.66 98.03 2.49 5.76 11.11 76.62 14.58 21.86 19.35 86.21 65.42 23.14 1.11 16.57 7.80 18.34 35.76 43.44 45.70 90.21 -95.77 2.97 47.68 37.32 91.79 43.69 86.79 22.60 50.87 98.20 86.47 96.62 36.09 53.83 50.37 87.90 26.34 74.85 69.56 57.80 58.75 0.81 39.62 58.38 20.16 16.12 83.37 13.42 48.30 96.58 43.54 38.86 23.13 15.64 91.28 51.58 44.32 0.94 96.77 77.75 26.49 93.37 74.21 32.42 76.29 87.36 61.95 5.61 56.79 24.48 51.06 42.23 63.38 15.42 6.51 58.55 34.82 88.89 23.41 55.25 59.62 81.01 96.14 13.82 4.97 98.56 71.75 12.58 20.40 25.81 54.60 12.77 32.35 84.98 54.58 0.92 53.67 90.44 63.56 75.70 81.26 4.18 83.29 30.77 66.17 72.31 31.25 57.12 19.93 94.53 11.47 91.55 96.79 66.09 70.58 3.35 23.80 32.81 54.59 21.49 -88.34 30.64 25.65 95.19 47.91 61.57 41.13 8.33 55.01 57.59 17.66 66.65 1.28 84.17 63.22 83.54 42.87 42.61 66.34 0.90 95.28 11.81 57.72 11.28 20.43 83.93 71.42 72.74 3.45 50.06 53.09 85.53 47.37 68.37 74.06 28.28 14.04 15.71 61.56 29.38 42.50 34.16 51.36 81.56 0.25 87.70 2.73 51.27 19.32 38.58 73.61 7.04 24.08 76.67 31.59 32.40 8.88 55.53 57.40 40.68 90.94 62.74 19.06 13.35 41.61 90.74 12.18 52.55 9.74 55.19 29.75 59.24 32.11 45.90 54.84 6.23 14.48 38.34 18.93 79.24 21.56 13.75 37.56 74.43 37.77 46.42 30.08 7.38 59.03 65.68 71.69 2.26 29.66 43.43 44.23 95.64 37.43 75.55 93.44 76.16 -96.52 62.70 17.92 54.98 75.42 31.87 16.08 77.35 73.20 89.11 21.47 72.38 14.92 78.63 23.05 43.33 24.09 57.43 92.45 32.53 79.07 66.40 1.38 58.54 20.24 82.62 91.69 2.57 66.45 36.01 73.07 66.02 60.19 91.40 37.57 36.29 7.23 89.15 65.05 91.58 45.17 20.34 75.93 1.53 49.71 23.48 26.46 46.76 82.49 98.50 47.85 76.82 98.54 47.40 19.52 76.99 78.55 52.94 8.92 60.50 18.63 42.96 22.13 4.41 71.06 7.53 71.32 18.14 91.84 16.37 0.90 14.24 39.73 58.33 87.00 83.00 64.63 14.42 21.38 61.12 99.47 88.69 49.51 37.89 66.14 4.36 62.24 12.48 7.41 46.65 48.97 55.26 11.12 94.98 71.09 54.45 23.48 7.62 90.69 32.51 -80.18 47.67 52.38 81.54 55.46 80.82 34.62 64.84 5.18 60.58 84.83 55.13 9.29 86.30 96.55 14.28 98.23 21.16 96.20 2.25 24.03 30.68 81.87 49.44 45.73 97.09 33.82 15.67 60.93 9.13 76.36 22.66 98.45 39.28 79.18 44.04 58.44 16.20 66.49 65.20 13.41 76.50 98.72 74.65 38.19 46.26 37.85 61.21 27.36 58.08 66.82 66.95 29.61 61.77 55.18 35.26 19.57 50.54 61.45 65.07 24.55 61.93 82.35 22.60 26.12 81.97 77.99 1.20 8.15 45.00 10.19 74.69 77.06 41.96 31.22 61.99 48.35 99.19 13.48 8.79 95.69 80.89 28.91 33.22 50.69 16.73 11.60 64.68 42.06 50.09 16.13 47.82 90.56 37.23 21.39 26.85 84.66 81.05 21.23 79.90 -96.64 27.55 32.11 79.88 52.21 53.70 44.63 69.44 31.04 18.45 5.86 49.05 73.27 74.34 83.86 5.96 12.03 17.23 16.02 9.03 66.15 23.39 29.80 5.33 0.90 75.88 81.24 78.69 49.35 21.96 92.01 67.31 33.28 93.23 30.50 76.31 27.86 25.81 61.08 88.63 2.50 35.45 71.23 73.22 1.68 55.27 81.52 25.72 0.45 67.81 11.48 0.98 44.38 23.84 99.63 74.38 79.88 38.13 2.21 51.93 25.11 96.08 65.23 5.40 17.83 11.59 63.73 29.07 17.54 95.20 44.45 5.75 31.75 99.29 8.66 23.53 49.53 41.77 99.47 81.22 43.99 41.39 32.64 81.86 56.43 25.78 36.34 2.49 49.05 59.00 83.93 6.25 58.61 88.38 23.84 76.24 25.95 54.45 93.70 35.24 -13.65 15.55 61.63 44.75 24.96 61.34 27.27 63.37 83.78 32.18 2.55 87.22 90.83 63.36 64.47 32.02 25.15 91.72 93.47 71.07 20.51 80.94 38.95 6.86 87.11 22.48 19.85 33.72 10.11 70.50 26.82 29.07 0.39 67.98 16.92 39.71 49.32 83.26 45.72 41.23 11.77 46.05 28.08 15.31 70.49 82.37 64.03 32.03 2.77 50.78 46.94 79.71 18.49 85.79 7.55 2.45 15.06 63.58 81.41 10.93 29.11 31.98 89.05 90.94 52.39 19.45 12.26 87.09 71.41 43.33 46.39 81.31 94.05 56.26 42.30 31.09 31.05 22.34 57.50 51.48 41.52 12.34 36.68 98.30 49.83 38.26 85.64 33.13 56.70 63.70 47.62 1.94 11.56 60.10 59.74 81.71 64.85 3.68 93.17 9.30 -73.61 72.09 70.97 1.39 44.16 97.11 10.64 24.52 75.64 64.23 27.67 71.86 5.86 85.58 17.38 78.58 32.44 0.97 11.27 17.88 98.05 31.82 64.03 10.57 85.00 58.74 86.43 86.63 46.46 80.63 35.85 8.51 35.37 62.07 10.75 60.43 24.90 82.16 2.14 32.81 6.22 35.11 21.03 45.30 43.11 6.14 65.84 92.64 96.04 97.58 90.19 61.93 89.54 67.83 81.48 7.06 17.89 15.39 53.44 90.29 30.04 4.84 60.85 55.62 45.41 88.55 90.15 58.30 75.54 79.99 42.07 34.56 33.73 41.00 90.60 66.37 18.43 82.18 95.90 19.32 48.61 60.25 84.16 76.82 56.31 30.58 19.25 33.95 48.97 91.74 14.63 50.94 9.82 2.35 24.12 7.84 68.66 93.15 35.50 23.80 -65.78 53.24 92.18 48.40 89.25 64.16 1.05 5.55 3.28 30.35 60.60 73.12 69.75 86.72 48.74 89.15 77.08 75.34 5.21 49.38 50.10 23.50 61.13 63.94 62.52 86.31 49.58 99.62 95.34 29.54 71.85 50.61 92.92 35.73 78.31 86.44 39.97 65.18 40.69 83.42 5.36 90.88 43.02 76.21 62.50 46.51 81.55 67.52 21.26 3.42 27.48 76.80 41.80 32.25 62.72 35.67 73.42 36.20 41.72 35.23 13.59 87.93 25.49 68.01 48.96 13.29 91.36 34.52 7.13 62.65 64.21 92.07 5.27 2.67 93.11 44.31 57.96 66.03 50.44 94.35 91.84 32.11 31.38 58.96 90.99 83.44 85.75 33.37 8.66 37.38 6.77 17.11 37.19 94.87 56.74 88.88 19.16 43.86 66.74 24.14 -68.67 28.15 36.86 89.94 0.76 2.41 85.11 45.04 13.28 83.33 86.97 39.47 15.10 14.94 67.12 29.87 54.34 6.10 50.17 12.77 57.30 92.98 46.45 1.25 53.15 34.46 10.87 15.54 22.08 31.73 68.10 85.94 88.95 75.13 41.29 60.66 53.21 86.27 22.55 92.84 73.07 16.13 65.65 80.35 76.61 39.80 21.71 71.93 85.42 17.06 29.56 57.27 23.48 12.84 55.07 14.15 71.16 39.53 27.85 7.65 77.50 38.09 74.87 7.74 67.99 31.64 11.27 70.47 52.12 70.85 67.67 85.06 19.41 52.07 2.53 88.48 71.56 49.18 70.73 75.19 27.71 29.95 70.79 31.52 23.07 11.40 96.60 9.06 61.13 76.38 61.60 6.29 82.93 11.16 78.69 55.18 40.84 68.20 72.34 76.47 -53.61 25.24 57.26 12.09 49.50 64.00 0.25 29.81 58.12 42.65 91.70 58.06 15.49 82.37 65.96 27.11 94.23 89.28 92.52 21.59 93.19 54.98 22.53 85.03 84.67 28.51 68.85 90.36 60.08 76.71 57.68 91.22 63.72 90.12 36.62 89.98 14.34 3.88 90.82 36.43 55.81 80.86 96.99 19.74 38.49 62.43 33.02 77.43 20.13 21.17 24.91 41.99 46.49 91.14 11.23 43.39 83.15 73.52 52.56 51.02 84.07 91.31 50.06 45.97 18.33 16.74 80.69 80.73 70.09 3.83 80.15 80.25 5.44 91.03 13.31 47.26 35.53 1.55 16.08 96.59 70.98 74.32 62.64 17.31 19.18 90.08 13.94 95.97 44.07 29.97 74.06 84.76 81.87 95.40 70.31 62.83 45.20 30.28 7.67 18.46 -9.75 36.63 53.41 77.30 33.14 62.96 78.16 57.24 79.68 62.47 74.78 10.97 53.72 63.58 53.96 82.70 67.45 15.43 70.49 29.97 89.44 97.23 58.01 13.21 47.83 54.29 95.73 17.11 28.90 45.35 34.19 22.22 36.67 64.40 15.51 43.86 71.75 50.18 60.48 42.12 61.77 29.99 95.09 19.61 90.32 12.61 52.15 72.49 17.84 21.25 68.14 46.68 84.92 59.31 56.58 9.93 81.26 32.39 7.69 30.49 66.23 96.95 85.96 6.55 1.88 96.86 46.66 13.84 50.90 93.92 36.08 24.15 13.76 68.97 46.87 36.33 76.86 73.43 87.00 69.64 65.57 37.57 99.08 9.65 25.53 84.32 65.17 38.80 19.25 62.09 15.83 9.83 20.82 48.85 18.81 51.37 27.31 43.19 92.35 44.45 -3.25 75.01 14.80 80.82 0.12 13.46 58.82 35.08 12.11 61.43 92.91 41.54 22.27 60.18 96.53 52.39 37.63 75.92 72.22 25.60 91.53 5.71 74.91 41.29 31.48 37.00 60.07 91.74 61.64 96.85 18.27 58.71 5.86 25.98 0.68 47.02 6.04 98.46 55.45 99.05 33.76 6.12 75.23 61.07 84.75 44.19 26.27 1.00 76.92 49.49 13.27 26.27 31.12 80.16 53.58 10.81 13.70 32.89 14.80 45.27 49.77 3.58 29.97 22.92 44.86 89.33 7.96 40.14 69.84 96.44 53.00 46.36 94.88 15.75 97.76 98.45 94.12 19.91 52.91 72.38 94.63 92.07 7.19 44.04 81.66 95.93 54.48 32.20 79.08 43.34 14.71 20.96 98.01 81.03 99.91 24.12 67.75 3.94 99.94 97.61 -46.35 14.65 44.93 37.54 56.57 99.22 23.15 40.14 74.07 7.89 71.42 49.00 88.88 10.28 59.76 68.84 56.31 19.24 81.41 86.80 58.68 31.64 98.98 40.00 98.81 66.66 79.40 92.60 29.29 63.83 55.87 10.51 98.30 44.16 85.61 7.54 16.86 74.78 26.76 70.35 98.72 28.24 30.89 27.25 39.67 90.39 82.13 44.02 59.01 74.51 13.62 72.77 12.72 36.19 86.20 34.95 26.66 69.11 40.57 48.38 85.18 98.74 97.30 51.33 21.81 6.78 85.79 23.68 9.27 65.22 9.52 33.81 38.57 58.05 50.06 73.57 20.74 37.79 48.34 53.32 65.77 41.26 55.35 4.08 54.53 8.63 92.09 71.29 15.31 43.42 51.24 86.03 73.88 3.37 37.71 33.29 9.55 45.05 46.87 83.99 -57.31 79.43 22.95 63.02 6.41 30.31 50.66 82.26 18.10 10.91 43.34 71.06 57.86 20.46 21.03 11.31 19.55 76.48 44.23 29.27 96.31 69.26 77.42 13.32 81.50 74.55 29.84 97.93 86.74 83.89 28.53 78.61 82.85 18.83 69.73 65.40 82.76 46.90 81.39 97.42 1.33 37.48 38.53 88.70 73.02 88.36 69.80 79.61 4.57 99.41 97.47 37.91 98.47 79.00 53.86 75.93 70.60 10.72 62.85 60.92 67.26 50.21 33.92 32.74 18.25 12.68 35.79 45.06 18.06 92.41 16.95 11.35 31.91 24.40 80.79 72.03 91.24 36.62 32.25 13.68 1.08 9.80 1.16 90.70 20.08 91.79 90.36 50.35 1.38 16.91 10.57 94.66 49.89 54.93 42.91 57.68 42.63 57.35 64.50 96.92 -24.85 17.92 79.81 83.07 72.39 13.67 18.23 43.71 6.60 36.62 7.96 3.30 25.68 26.81 71.73 58.22 93.84 2.83 90.07 27.65 10.41 66.64 60.19 70.31 14.13 5.70 32.28 74.61 66.65 58.75 62.65 51.28 63.46 66.33 58.24 67.90 11.90 68.43 43.67 89.47 11.03 31.89 50.80 23.03 89.87 26.60 5.40 50.71 85.74 80.96 67.89 27.83 56.87 86.08 5.97 51.89 35.93 99.06 20.98 12.63 20.51 60.01 62.21 37.04 38.83 28.73 85.41 84.45 49.22 32.75 41.71 89.08 42.49 31.98 17.50 91.69 79.94 79.70 1.91 3.18 64.97 46.08 92.42 40.17 56.30 31.09 62.56 78.40 44.43 45.48 72.47 99.10 41.43 2.89 85.03 19.16 34.79 39.13 74.58 0.69 -82.54 33.15 68.60 92.36 6.98 69.64 98.47 78.87 36.01 16.77 83.17 52.06 46.98 18.28 57.37 57.06 4.79 28.65 65.30 90.19 50.36 59.58 99.66 24.84 55.09 69.38 21.41 52.41 55.67 0.13 25.92 44.98 42.49 88.47 91.82 73.59 0.46 75.39 58.81 42.75 48.95 6.50 13.66 80.38 68.96 78.03 14.24 23.13 56.46 84.81 6.65 60.49 29.19 57.74 19.28 8.46 88.28 61.33 28.83 40.06 18.07 18.07 54.24 46.07 45.85 15.86 32.28 5.97 55.99 90.71 71.41 24.86 83.35 99.21 71.25 31.54 67.64 72.44 44.97 34.42 39.92 19.87 90.59 97.53 38.68 68.54 49.34 68.97 78.77 55.33 96.05 56.47 65.32 39.47 21.38 8.11 65.82 95.37 17.46 62.92 -66.38 46.48 10.24 41.37 38.27 15.72 18.89 37.67 56.54 13.49 4.35 68.12 43.01 35.43 99.95 3.31 33.21 62.86 26.18 87.41 18.27 78.50 7.22 71.69 85.36 10.57 15.45 34.52 54.29 12.48 42.60 81.53 73.15 58.01 12.36 22.07 27.87 61.93 7.64 32.78 74.37 81.47 13.30 21.95 67.64 15.94 96.94 42.08 46.59 38.91 16.55 40.96 31.82 9.81 55.64 29.83 9.78 54.56 9.17 26.23 73.84 47.17 26.43 23.52 8.80 51.13 7.32 36.04 12.35 49.26 67.93 49.65 60.88 22.09 26.62 14.39 79.31 7.11 59.11 26.31 27.02 61.73 67.90 70.01 97.03 30.78 50.92 77.02 19.14 6.61 70.69 89.52 3.35 85.85 51.59 97.17 46.45 16.79 27.11 66.42 -49.62 8.98 81.33 12.57 51.98 55.49 83.48 32.14 7.99 13.87 36.85 86.42 20.57 45.58 87.91 23.48 43.24 66.63 58.73 21.74 28.73 31.94 56.20 36.25 95.92 8.60 36.77 37.61 40.85 79.00 47.08 71.03 63.21 10.27 96.40 56.41 65.69 63.32 33.55 68.35 25.56 4.69 41.36 83.66 90.49 96.32 3.23 86.27 4.27 65.14 48.79 34.17 79.93 15.56 25.02 72.13 99.00 91.51 54.26 72.19 1.53 64.43 60.15 8.21 40.32 24.49 89.25 98.45 20.39 74.81 0.03 89.75 60.46 84.42 61.61 93.91 56.26 55.56 51.87 15.09 85.72 22.26 85.81 15.90 10.36 9.77 20.83 71.15 36.07 91.55 26.18 88.05 25.96 18.49 30.71 46.58 48.83 61.45 26.43 64.09 -53.62 95.43 17.96 21.20 69.75 45.87 1.41 27.97 1.22 96.91 3.11 27.40 77.71 93.00 89.97 80.95 74.37 58.19 77.02 34.41 55.99 84.95 87.28 66.36 28.78 80.88 7.83 90.91 42.22 95.06 84.18 26.03 81.76 57.08 91.73 44.10 34.70 66.18 10.49 61.60 76.30 93.09 10.05 12.77 38.33 99.48 36.42 28.21 59.73 33.54 13.36 43.38 20.90 34.41 57.59 60.37 61.54 16.15 49.67 8.07 6.17 53.12 56.49 66.11 93.65 90.00 34.65 64.22 0.22 44.85 39.50 76.25 44.80 77.89 13.95 6.02 65.23 24.55 54.44 34.59 53.57 52.46 52.54 79.60 13.98 30.08 11.71 57.33 72.27 41.39 0.42 9.94 17.06 43.03 2.86 14.60 81.14 10.25 64.24 87.97 -1.04 23.07 5.39 15.91 49.20 54.32 6.73 76.52 50.29 81.20 67.96 23.57 31.45 55.42 71.65 1.58 50.21 38.05 10.93 19.41 85.10 82.69 22.97 80.64 30.89 21.47 64.81 30.68 40.11 33.97 72.10 42.63 0.27 73.62 39.68 38.90 96.65 99.14 42.85 23.69 25.82 5.23 73.43 70.12 72.07 8.44 51.01 38.71 95.11 33.19 78.04 63.83 50.41 21.92 33.11 5.22 91.03 57.15 36.86 12.70 36.07 78.26 7.42 73.45 82.65 41.13 51.01 0.84 12.90 33.85 99.02 21.40 73.44 23.48 15.17 93.68 97.51 14.09 48.49 79.36 97.73 87.53 54.36 2.51 81.15 64.19 78.97 84.53 51.34 71.68 81.29 43.29 17.74 51.43 51.35 9.87 10.72 49.10 8.24 49.05 -54.72 5.27 27.67 39.81 96.06 52.75 64.32 54.09 41.95 22.93 53.75 13.57 62.40 85.51 5.69 60.90 22.41 82.46 81.04 58.36 56.05 95.10 5.25 59.65 56.91 32.74 2.53 19.93 3.91 64.64 13.94 11.03 98.60 26.30 70.54 52.92 72.11 22.02 51.29 97.60 61.22 96.15 94.06 67.44 61.27 54.88 14.98 51.06 28.03 15.46 60.29 79.78 33.82 43.42 72.44 91.82 67.03 48.24 86.92 43.11 76.79 5.15 26.46 83.17 36.68 2.12 65.26 46.80 59.90 49.66 0.21 66.45 49.51 2.23 24.55 74.13 81.16 26.46 24.56 14.70 77.18 17.39 83.75 3.05 34.99 55.14 92.77 98.90 26.27 48.01 75.21 15.10 27.15 65.17 91.03 25.71 83.47 4.19 0.54 41.54 -91.00 18.71 10.47 57.48 79.11 28.57 3.41 61.59 45.33 55.00 94.61 21.72 29.42 31.07 10.86 45.33 94.93 30.04 47.71 38.22 73.87 28.94 52.12 92.21 46.99 33.60 84.90 9.55 94.44 79.24 34.29 24.70 61.35 52.58 85.24 14.57 50.05 43.60 98.52 50.05 34.18 36.58 72.38 82.10 92.51 86.49 15.82 89.51 35.57 12.52 20.76 13.53 90.28 51.42 44.46 88.38 89.31 38.37 54.33 67.06 37.76 30.53 79.28 65.94 12.06 77.23 78.77 5.07 2.97 11.89 25.82 93.02 66.07 63.28 79.20 16.80 18.97 42.84 95.63 6.39 93.73 14.76 54.06 75.98 55.43 53.50 81.47 19.19 75.22 37.73 2.57 1.74 20.03 53.89 23.95 88.34 28.01 63.12 97.90 34.67 -76.17 76.18 98.71 65.60 79.09 90.90 56.79 13.35 6.32 56.19 19.92 63.80 89.35 35.29 23.50 86.72 25.63 0.36 85.33 82.98 46.99 9.86 73.24 62.13 99.20 16.16 49.86 41.38 96.18 39.32 32.91 36.76 53.68 56.18 83.49 63.45 45.96 53.29 65.31 69.93 40.20 22.17 66.48 71.62 26.20 3.84 7.06 55.46 87.83 4.45 39.90 85.31 0.25 12.67 85.59 23.38 56.02 17.78 24.68 41.36 42.84 4.27 60.79 15.84 29.27 33.92 0.27 72.00 75.67 74.86 6.76 86.98 93.37 47.98 14.76 36.26 89.43 4.92 95.80 94.61 44.90 10.48 51.06 19.42 52.00 78.23 67.40 69.23 64.59 0.68 22.69 74.58 16.75 49.16 60.95 10.93 80.24 42.37 3.20 42.50 -63.76 34.41 42.94 6.77 67.44 86.80 59.01 93.06 67.59 54.27 87.15 62.98 2.52 89.48 54.80 40.21 41.82 50.54 61.99 83.82 71.00 42.49 17.56 15.36 72.45 12.30 0.39 44.34 45.15 53.63 0.78 3.02 12.00 55.45 70.31 81.39 47.25 73.92 39.28 73.46 28.04 98.05 36.73 54.58 80.15 19.76 36.82 5.49 15.33 6.65 18.09 61.75 80.79 78.96 13.56 30.88 28.51 5.48 96.20 98.89 70.28 74.05 61.68 28.59 71.31 87.65 24.60 89.75 47.74 86.11 43.91 30.50 44.92 94.21 6.75 46.13 26.46 33.65 88.16 67.21 50.03 78.00 81.30 68.96 87.05 2.30 91.43 89.34 74.50 87.38 62.39 92.62 81.61 29.88 21.56 74.82 52.42 34.22 42.46 82.70 -39.20 49.03 4.34 13.95 45.37 70.37 11.94 55.79 54.58 93.31 81.87 96.29 51.16 24.67 86.46 82.07 58.71 80.04 94.21 65.61 34.33 62.01 23.85 6.33 60.83 45.84 58.12 73.57 9.68 38.44 12.14 44.98 25.28 61.13 22.84 89.26 28.01 27.60 30.47 67.03 46.11 79.45 6.92 52.68 4.23 13.49 60.89 27.93 92.57 90.70 66.25 39.15 81.56 8.05 5.62 47.77 18.11 97.93 83.14 12.96 44.63 80.92 90.70 34.70 51.24 5.34 3.24 1.66 3.22 99.38 5.48 32.86 33.89 43.80 49.17 48.91 27.38 87.84 6.07 35.55 96.52 49.62 85.24 0.73 85.41 15.07 32.58 47.59 46.68 89.83 90.49 74.25 67.23 37.50 10.21 89.14 46.80 2.19 57.13 97.55 -81.21 72.49 86.81 26.02 88.29 55.41 82.22 5.60 46.20 77.03 22.76 93.60 53.74 49.56 0.09 24.61 56.66 92.37 40.15 32.46 45.22 72.25 98.16 15.07 38.13 74.57 8.80 99.41 8.69 72.81 69.31 54.74 98.77 89.38 64.78 2.61 69.93 8.52 56.97 68.47 47.21 88.61 41.05 59.44 46.17 47.65 96.61 85.06 97.26 81.87 64.16 13.31 52.93 48.72 4.56 37.13 50.73 53.97 28.21 95.30 37.33 42.41 55.74 98.46 73.96 50.78 53.91 60.66 76.74 7.22 63.23 87.89 28.92 33.52 47.88 64.03 66.86 33.73 27.22 67.49 76.12 67.45 40.58 36.21 60.89 82.14 18.86 35.84 58.28 25.05 33.59 15.42 3.37 68.28 7.95 57.90 11.70 69.37 63.61 16.03 -86.19 39.69 33.24 12.11 70.35 44.12 59.70 58.53 32.17 53.13 82.76 86.86 55.82 76.25 85.84 72.22 46.57 64.27 84.89 98.82 88.34 22.03 8.41 59.83 22.03 60.84 42.87 48.14 1.26 16.12 28.12 13.37 28.87 8.57 53.58 51.39 67.52 81.63 97.51 60.14 15.74 48.34 87.92 72.85 65.70 9.95 23.24 54.43 8.74 54.54 92.17 29.00 97.11 30.28 14.60 42.92 46.20 32.90 83.60 44.69 63.17 46.96 27.13 85.22 67.21 45.12 94.27 54.05 19.03 33.12 4.99 9.80 14.25 69.22 23.98 69.94 97.66 59.79 70.63 28.01 43.76 61.63 14.70 60.20 12.30 97.62 51.00 62.21 49.58 6.11 25.39 25.70 1.24 71.66 50.41 41.31 29.12 45.58 75.79 95.96 -23.52 2.83 96.56 93.84 88.57 96.33 91.24 50.23 33.53 84.37 71.06 21.81 11.37 52.26 25.38 88.38 7.78 0.53 98.63 41.93 87.61 39.04 41.96 82.48 85.38 65.26 36.91 51.35 44.69 97.80 58.68 20.34 11.62 54.96 38.13 51.78 36.69 29.95 15.78 23.36 36.25 58.23 92.01 17.70 77.40 55.21 75.99 83.18 62.60 95.73 72.27 93.26 71.98 3.61 26.25 35.29 48.26 59.82 6.85 69.88 24.52 84.18 58.23 16.50 4.17 65.72 61.04 76.70 73.49 88.89 74.10 16.00 50.86 4.37 77.04 13.26 12.98 14.66 19.65 51.99 4.20 80.04 46.85 54.12 68.53 34.29 84.46 61.96 81.46 7.18 72.15 51.00 91.08 77.82 96.90 61.06 84.86 67.26 10.40 13.89 -92.27 97.28 58.18 87.49 36.80 19.26 26.60 70.41 14.45 24.16 37.13 17.35 98.93 3.60 40.76 42.41 61.82 44.79 50.85 95.98 43.87 34.75 73.06 43.09 20.99 55.02 62.99 82.46 5.66 83.78 54.74 5.05 64.58 8.73 4.62 82.42 38.56 8.53 35.83 71.04 64.44 94.84 84.32 36.99 34.90 15.27 17.32 63.71 84.47 67.45 92.55 23.48 70.49 84.23 30.79 3.58 84.87 71.90 63.34 7.43 69.64 0.49 18.93 2.87 43.60 61.31 62.88 27.96 99.41 58.48 79.38 6.62 52.40 64.81 81.59 98.16 24.74 15.96 35.85 85.00 79.87 34.45 27.96 91.71 5.04 19.84 93.56 35.95 56.00 69.96 17.18 12.69 22.37 19.52 98.52 98.27 10.27 39.16 43.59 81.60 -34.92 36.43 3.37 18.45 54.54 11.55 86.66 96.75 91.66 98.31 4.16 5.47 28.34 31.10 23.82 97.36 21.35 93.56 81.45 11.56 25.17 53.22 76.04 37.18 19.69 21.03 24.30 87.74 99.66 18.23 27.81 92.80 22.76 54.67 91.53 28.24 13.62 15.28 46.34 16.46 11.17 93.42 23.18 82.70 93.06 17.93 45.69 0.76 50.13 32.41 35.50 38.62 92.30 5.64 11.48 100.00 72.45 56.94 66.96 8.34 47.33 73.66 38.99 65.33 28.61 74.96 46.09 51.30 61.99 7.75 28.02 78.10 88.53 28.18 92.26 67.51 48.60 21.25 22.36 75.49 68.06 4.83 45.55 66.26 7.91 21.63 62.30 96.00 33.43 28.79 88.57 66.59 62.30 27.99 50.48 1.97 63.39 75.71 68.38 77.00 -97.73 12.51 69.04 80.10 28.05 56.70 67.66 88.76 2.42 25.73 5.10 80.80 16.45 22.64 58.94 76.52 56.90 33.54 56.87 59.88 75.76 84.84 11.16 86.64 34.20 44.92 52.14 7.55 97.94 56.64 20.26 32.59 56.72 95.54 80.35 14.20 38.04 51.83 24.48 10.80 79.57 89.64 35.75 60.08 80.26 11.82 22.37 61.95 52.03 10.71 69.47 40.32 41.95 41.06 23.47 70.38 16.09 51.67 64.46 87.22 34.84 13.53 16.12 73.86 79.61 97.99 11.24 54.84 9.57 78.02 74.80 7.90 42.42 85.06 67.72 55.71 77.04 98.13 78.01 84.79 45.29 42.13 91.39 0.05 67.15 40.07 92.57 65.54 28.17 63.71 51.50 73.42 47.27 31.68 43.89 9.09 45.76 81.53 98.02 36.51 -20.74 62.29 73.59 51.70 14.09 95.25 58.84 89.07 75.56 40.89 72.68 99.31 99.53 84.81 68.44 32.84 32.86 32.62 51.49 38.78 54.27 63.59 14.68 23.79 17.46 62.81 50.30 10.40 86.67 58.14 16.84 7.40 32.87 40.43 85.47 57.76 32.52 23.79 36.02 57.37 94.87 26.99 59.61 45.70 23.92 45.70 48.36 95.16 83.83 41.92 13.50 33.22 26.62 45.99 10.57 22.14 30.89 49.72 22.99 60.89 50.12 42.72 49.02 85.79 56.87 28.33 95.45 61.97 50.07 8.68 98.73 88.13 67.58 37.21 10.59 47.61 47.02 20.54 0.91 23.35 80.65 71.27 11.68 1.73 58.24 10.77 68.34 87.35 38.39 39.98 7.89 17.12 3.57 82.19 5.50 2.77 79.08 11.46 68.16 48.75 -78.19 87.47 84.37 67.98 11.25 81.02 27.14 88.01 59.13 12.94 13.00 6.85 28.35 33.80 60.11 60.55 3.29 44.87 44.55 92.47 77.53 19.30 96.72 91.00 62.12 14.65 29.89 66.96 69.57 77.80 25.76 83.86 1.18 82.34 28.19 36.98 52.23 72.60 18.43 14.44 19.61 87.76 54.51 71.53 70.17 34.22 69.27 8.21 52.83 69.08 81.45 33.22 82.15 13.72 36.37 23.03 21.19 56.13 73.27 10.59 22.28 10.76 22.43 52.01 63.06 46.40 47.75 28.32 5.43 98.76 40.69 37.43 75.62 88.54 47.16 1.38 15.46 54.58 52.06 19.89 13.01 14.37 86.72 67.76 15.88 12.50 10.31 75.80 14.20 58.22 68.40 61.16 68.10 75.97 87.11 35.82 47.24 61.24 38.24 36.83 -96.68 6.86 6.00 31.55 27.05 59.95 17.02 91.62 18.72 44.00 52.99 15.90 49.48 62.49 28.32 99.11 14.03 60.01 88.42 53.98 17.08 59.44 86.39 71.42 38.37 85.07 78.87 64.28 3.47 85.43 36.14 56.78 27.38 94.82 28.11 81.35 73.98 3.94 9.83 20.35 59.52 81.82 80.54 6.57 57.56 62.64 30.57 29.20 6.77 20.74 46.61 33.41 21.04 27.49 38.03 93.29 94.14 74.63 92.03 78.56 51.26 32.83 46.24 91.19 8.03 38.32 62.85 78.58 9.06 60.59 66.41 9.53 91.92 67.32 96.60 81.55 53.17 51.02 62.15 23.21 45.21 58.97 19.63 45.05 54.85 85.15 64.98 95.77 78.19 51.68 89.83 34.10 13.59 36.36 6.75 19.05 36.97 45.21 71.49 83.21 -49.62 62.40 79.35 21.12 9.57 67.33 23.61 87.64 50.17 37.68 18.73 60.47 93.42 21.97 79.87 71.04 47.07 1.24 42.62 88.50 2.93 39.31 25.35 87.44 81.98 62.48 33.29 11.29 98.47 82.60 55.31 60.48 40.05 0.68 30.08 73.80 64.42 81.33 26.25 23.52 16.96 30.43 1.08 9.80 12.68 17.88 11.01 91.84 82.84 95.09 66.45 21.53 70.02 58.98 85.94 74.98 59.56 14.74 99.89 68.13 57.87 93.79 22.40 29.73 46.89 23.14 18.97 6.67 2.96 8.95 40.35 21.56 43.95 19.55 45.99 37.06 37.12 57.09 21.92 44.93 69.64 18.52 80.59 59.16 69.80 38.52 63.14 92.48 8.58 2.41 19.15 2.00 18.75 44.64 91.56 88.94 99.92 36.09 21.18 75.21 -21.82 65.77 82.19 46.13 56.94 64.48 44.68 61.27 70.97 75.07 74.89 80.77 45.93 24.31 46.53 3.21 85.66 22.09 94.85 19.21 9.45 14.75 13.65 46.16 88.36 60.48 20.13 59.32 70.60 19.99 77.88 52.33 79.56 18.64 65.47 86.59 66.24 37.13 64.94 57.37 13.55 5.12 95.56 64.26 89.40 24.53 71.22 23.84 54.49 52.02 91.98 77.94 32.78 41.47 65.87 76.63 29.33 60.98 55.91 72.85 18.19 30.61 89.49 89.68 17.55 22.60 50.92 28.11 73.57 12.84 78.74 48.69 97.52 91.36 86.31 98.19 30.38 9.97 82.64 43.11 62.39 58.32 95.96 97.16 47.00 87.53 4.07 73.80 5.72 3.97 86.31 13.33 13.46 63.49 23.21 45.77 25.46 10.23 50.02 41.56 -11.44 98.69 55.61 12.32 33.63 51.36 9.19 40.67 83.37 88.78 81.40 61.19 30.31 91.59 60.80 61.33 94.98 77.00 34.71 15.70 10.04 69.90 29.19 28.85 84.08 75.08 87.00 99.96 81.06 0.74 57.81 69.86 23.03 95.54 89.21 68.19 83.80 32.93 16.91 75.91 97.27 43.68 32.95 73.31 46.25 6.84 49.46 86.35 24.09 54.18 91.54 45.62 56.32 53.41 0.97 73.58 30.01 50.17 0.29 24.63 23.40 91.78 67.68 61.12 44.84 0.19 32.20 32.79 77.48 30.53 78.70 53.68 42.34 7.43 29.50 92.14 74.92 8.73 50.78 22.36 95.97 70.90 71.59 60.98 39.55 95.83 83.65 71.25 52.49 1.43 40.09 37.92 16.22 44.59 99.13 73.96 33.46 65.61 88.92 27.16 -58.43 57.37 67.42 52.85 92.00 37.41 12.65 98.85 33.22 45.64 38.10 1.96 96.90 90.86 95.20 85.29 70.52 71.43 57.71 36.45 68.90 56.36 15.74 58.37 27.05 33.74 77.60 77.06 30.91 98.73 45.72 8.27 7.26 90.48 99.90 85.92 50.41 60.36 89.98 61.79 66.63 76.75 81.91 12.69 82.52 73.53 61.48 26.66 71.36 50.79 17.51 46.81 96.11 98.89 5.05 71.18 19.86 42.24 41.72 5.68 60.91 51.74 20.83 14.24 20.94 58.92 21.52 50.90 75.08 79.01 74.28 22.87 82.29 65.04 29.56 89.90 17.90 98.46 22.38 72.73 59.51 55.02 63.00 91.55 4.40 63.84 98.32 33.17 98.09 63.19 74.58 40.83 31.51 23.14 38.82 16.17 10.85 23.38 55.36 13.88 -98.02 60.63 31.92 34.22 49.26 45.21 43.35 12.81 55.65 76.80 82.38 58.01 8.86 20.68 5.61 73.95 41.07 89.08 20.54 37.08 79.28 81.18 1.40 37.57 60.24 83.91 3.03 48.36 63.31 43.30 24.15 94.72 73.08 15.57 58.58 96.91 20.86 86.46 84.64 79.96 21.68 12.76 48.14 74.10 21.64 82.66 1.05 91.63 12.85 46.73 1.84 69.96 6.68 98.38 94.38 37.41 28.36 24.86 88.90 69.98 74.01 55.22 2.96 59.07 81.22 22.53 93.92 12.66 0.61 13.43 29.40 45.92 4.07 36.29 69.38 22.67 74.97 40.48 13.86 52.81 17.19 78.70 19.30 44.67 27.02 25.98 90.23 4.18 36.11 90.04 85.92 62.99 76.33 18.89 63.45 82.89 69.54 31.12 37.02 65.85 -86.35 32.95 82.83 39.08 47.80 39.56 97.12 61.42 79.25 97.05 53.05 93.83 92.09 70.15 77.74 61.64 68.40 49.49 58.52 30.61 98.17 13.06 20.96 4.27 37.64 40.53 64.06 45.45 14.74 86.48 77.57 17.87 49.88 12.57 27.94 66.86 83.67 3.71 91.65 51.99 10.43 34.06 59.47 6.79 12.73 11.97 33.71 80.57 93.11 9.36 50.83 59.02 72.41 93.50 95.09 40.28 8.15 28.03 58.16 80.06 26.22 43.61 72.19 38.69 53.58 85.99 51.16 75.05 11.51 97.37 99.56 54.98 11.92 35.67 20.83 2.79 14.51 85.50 39.31 30.25 36.55 56.40 71.94 2.71 37.64 10.54 24.40 27.57 66.40 52.69 81.88 54.26 62.36 89.42 2.39 46.92 3.64 97.89 22.43 14.46 -70.08 77.82 28.38 60.50 43.40 81.05 19.37 70.37 44.73 50.33 20.05 68.38 19.58 86.10 65.19 35.51 52.12 79.35 97.75 60.87 67.53 16.07 62.18 36.75 16.21 19.40 32.12 97.46 66.99 54.23 11.08 64.31 29.59 53.19 40.30 59.87 80.71 7.86 18.15 4.55 41.27 81.63 18.25 48.30 88.32 60.75 21.67 34.65 4.57 71.99 16.73 84.83 38.94 8.91 21.38 67.43 63.49 25.12 48.62 46.24 71.76 6.77 44.51 72.29 72.20 48.45 0.64 48.72 88.91 89.07 99.14 72.54 14.52 48.46 90.46 23.83 15.70 66.66 86.86 9.77 38.16 16.97 20.41 49.34 63.39 54.64 92.41 79.12 36.59 3.27 35.80 97.52 61.68 82.02 30.69 14.92 48.21 79.98 56.50 90.47 -22.08 46.36 68.60 47.02 67.49 27.23 44.23 1.84 50.63 34.58 52.40 2.60 66.63 82.68 36.22 44.83 33.39 6.11 81.62 43.22 65.12 12.10 74.97 69.72 27.26 53.02 44.03 99.49 92.90 35.12 33.02 82.75 58.80 12.50 86.75 40.17 78.06 68.87 12.32 86.82 94.49 51.25 10.10 15.09 38.85 30.89 89.60 88.32 87.61 60.71 59.39 9.75 20.99 37.10 76.31 39.49 27.16 38.45 23.14 36.50 73.12 44.77 4.54 25.98 80.11 56.46 87.95 14.10 9.93 42.92 89.56 55.58 82.02 10.37 44.19 73.41 41.83 91.39 71.32 48.41 83.76 25.20 23.34 79.93 0.15 48.60 11.14 60.90 0.54 64.36 70.18 96.45 45.72 58.87 31.32 87.74 0.69 56.72 18.62 10.35 -0.79 34.93 78.44 5.02 6.02 81.53 34.86 15.04 76.80 40.74 41.11 30.88 38.09 30.90 0.74 82.46 62.92 2.46 30.17 63.70 8.56 95.21 56.48 35.87 89.26 14.25 79.19 47.94 70.60 56.47 41.33 54.32 33.03 64.73 3.04 68.05 58.42 62.87 57.16 82.84 63.02 23.77 59.42 52.69 35.53 76.67 38.94 6.28 63.12 37.58 41.42 27.90 18.54 47.18 33.60 81.08 14.06 52.97 64.53 1.71 34.82 37.21 91.32 28.97 24.13 72.80 7.64 56.50 7.94 95.34 60.42 69.75 92.64 26.81 98.75 63.94 94.28 51.82 33.31 95.90 8.66 98.93 64.38 12.78 95.64 32.17 99.63 88.68 13.42 14.55 74.51 64.85 6.28 68.49 18.86 76.92 44.98 25.19 56.49 76.11 -81.92 12.07 79.24 20.64 19.30 49.87 89.99 70.71 3.83 1.44 64.45 31.76 28.51 42.26 78.46 69.39 64.05 10.44 28.65 40.03 48.86 51.86 76.85 26.40 26.00 4.89 96.17 52.05 52.40 24.47 74.23 82.41 72.95 88.54 23.51 80.46 83.69 75.44 40.19 49.03 10.02 29.43 37.67 65.01 52.68 51.14 35.40 14.98 60.29 7.40 79.35 92.75 56.52 60.34 38.73 17.66 52.51 9.31 64.24 29.69 46.30 44.37 23.40 11.65 70.35 7.30 14.28 70.61 98.48 4.86 34.71 4.49 53.60 33.74 12.99 25.33 52.01 48.01 17.34 26.17 14.15 36.72 58.58 89.45 84.15 34.53 15.20 42.31 36.92 55.61 90.86 39.99 49.94 45.45 40.66 83.64 8.01 70.58 22.60 60.50 -34.94 1.23 59.40 59.04 96.91 39.85 24.73 87.30 72.17 0.90 85.53 10.70 68.45 63.68 4.18 18.73 61.11 44.13 92.94 0.59 46.21 80.28 91.98 78.10 67.30 51.40 46.47 8.39 66.21 9.99 2.91 34.74 29.49 54.87 86.87 78.88 2.30 57.05 65.86 6.07 20.83 85.17 37.08 25.91 1.24 44.98 35.54 18.74 91.01 62.87 74.04 38.00 81.24 63.47 98.07 55.27 67.77 97.03 15.12 48.03 25.82 0.56 82.15 4.74 34.19 23.58 21.65 56.04 70.62 68.41 19.33 81.01 63.76 91.35 46.15 52.14 94.89 66.25 81.47 26.42 75.83 32.81 87.28 27.37 11.24 42.29 5.84 27.13 3.79 27.42 40.16 30.29 33.13 76.86 33.08 62.63 72.53 90.43 73.93 14.08 -98.99 45.91 81.50 77.88 68.60 41.72 55.00 40.95 78.01 74.11 60.41 51.02 20.62 88.85 71.72 25.58 2.70 96.85 1.49 24.85 69.59 36.66 68.52 43.65 89.23 97.04 85.53 51.34 95.48 66.26 31.98 85.43 90.59 52.37 12.89 23.22 47.22 25.87 12.85 52.38 29.08 12.72 69.34 72.65 30.83 22.34 68.03 43.92 21.13 61.55 46.36 65.79 86.10 52.38 66.36 6.03 58.41 35.32 27.75 60.39 37.61 34.65 46.78 20.18 53.13 23.03 0.81 2.55 84.61 79.83 72.75 85.67 71.90 65.84 58.05 7.07 42.47 3.51 57.71 31.32 18.30 53.30 63.69 16.59 4.24 75.35 51.88 12.10 6.97 27.14 2.75 66.37 11.31 60.27 17.77 46.75 34.19 30.04 13.64 1.15 -42.61 68.07 90.41 42.72 86.68 97.75 46.85 40.89 69.39 28.80 86.75 12.97 58.57 56.27 24.09 3.34 40.31 62.39 52.24 58.99 80.99 70.93 42.81 99.58 87.44 69.14 75.20 22.83 66.24 0.46 21.99 27.73 69.97 45.57 71.81 97.31 71.47 5.74 44.72 68.15 21.00 40.62 24.35 66.41 16.82 56.83 37.85 35.27 14.85 48.28 69.93 64.91 55.37 66.91 62.51 3.40 31.20 86.42 71.82 57.74 10.79 21.75 33.05 82.01 30.25 90.06 12.06 86.70 80.37 99.22 94.95 19.00 15.46 36.09 7.57 87.97 62.31 65.24 85.35 61.14 8.25 73.63 95.69 22.34 90.32 1.73 43.47 12.76 38.32 48.81 45.87 47.14 62.58 68.88 12.93 83.48 67.93 85.14 85.91 8.46 -36.73 5.22 20.58 81.63 37.78 92.73 4.64 76.21 3.86 11.36 96.49 40.27 82.42 44.26 80.95 58.80 48.04 89.26 46.15 83.18 41.29 76.20 8.22 44.49 1.25 11.16 85.95 40.39 5.55 9.97 22.05 4.48 39.45 29.59 55.31 64.91 0.21 17.70 99.11 70.65 12.41 44.57 3.55 85.75 11.23 68.07 81.49 99.94 16.70 7.73 27.73 9.23 97.97 88.49 69.97 31.25 9.77 29.41 77.77 28.21 57.00 48.58 88.20 21.25 59.03 22.61 89.77 91.57 74.94 15.60 88.32 83.27 8.64 57.42 4.47 98.86 3.05 92.08 11.27 69.96 51.76 65.95 5.97 37.98 82.37 1.72 38.60 46.84 52.06 87.32 81.92 27.03 96.85 72.22 4.62 96.83 41.44 28.34 35.84 1.36 -51.82 74.39 68.26 70.42 35.77 27.93 41.14 43.39 35.22 58.65 85.94 0.01 60.76 86.12 65.82 4.77 98.21 45.03 1.82 47.73 46.62 60.91 92.02 74.31 3.52 94.73 60.51 87.71 28.39 0.17 20.75 63.95 56.82 53.97 78.15 0.37 77.36 40.91 30.15 69.49 86.13 15.64 33.17 13.28 24.57 41.91 22.29 75.08 28.17 91.05 71.96 90.83 71.92 31.86 37.42 44.34 19.65 75.96 63.10 5.36 43.71 38.11 29.28 98.62 77.85 44.96 99.26 45.04 33.10 95.50 4.74 77.72 51.77 84.22 13.80 17.84 56.83 65.09 54.93 63.69 54.41 55.23 60.62 64.16 52.16 13.83 85.32 94.43 66.27 52.68 77.15 1.15 58.41 39.57 34.79 91.84 92.42 50.02 16.70 28.65 -62.11 36.28 48.87 10.23 23.41 34.05 32.28 3.71 79.48 55.17 44.65 4.33 88.11 18.91 66.23 52.18 15.23 36.58 31.83 16.84 18.22 22.08 70.55 22.91 74.02 44.11 7.60 7.09 55.82 69.01 15.58 86.30 21.86 27.79 88.28 42.04 12.53 57.93 44.31 66.05 97.93 99.69 28.48 44.85 93.91 90.67 39.02 43.34 89.10 96.39 61.17 72.96 37.03 83.84 20.95 65.47 27.50 18.56 56.65 37.45 31.78 61.25 97.14 48.44 9.26 5.97 80.66 39.84 55.91 66.63 50.30 0.94 21.86 7.99 51.64 56.51 3.54 76.72 49.43 37.88 46.36 15.23 41.29 61.17 38.88 39.13 69.40 27.97 67.01 25.47 38.36 15.54 94.26 75.85 62.26 85.14 13.42 79.93 64.75 79.02 -62.00 91.58 52.49 85.26 79.47 14.36 67.82 53.79 69.21 29.14 11.06 45.37 27.25 86.23 31.59 47.22 2.80 57.43 6.16 74.47 55.23 48.06 80.84 18.45 39.82 73.34 50.05 51.69 49.38 87.79 86.12 65.23 98.14 29.20 42.81 24.45 58.77 99.78 7.61 81.83 79.99 94.69 61.80 17.57 75.15 33.19 56.66 12.84 59.17 84.59 44.98 57.05 66.63 18.68 96.21 97.28 6.28 77.39 83.73 54.17 93.72 42.89 43.12 44.17 59.89 40.92 60.87 47.25 80.51 96.46 40.81 42.61 68.68 61.98 7.29 7.24 87.02 60.79 44.76 78.24 36.89 12.43 52.91 85.23 87.83 9.04 55.07 79.91 68.64 45.01 78.16 80.04 54.93 17.39 61.03 34.05 12.86 34.19 43.41 75.67 -19.60 58.20 28.87 8.24 61.47 58.52 76.53 30.78 86.12 26.22 17.46 94.16 98.72 2.88 40.04 58.14 16.37 1.11 25.38 98.06 61.11 73.03 32.89 56.03 14.14 71.08 31.18 58.45 22.43 49.54 40.44 43.22 21.13 15.86 29.24 79.51 15.36 37.98 59.65 49.27 56.78 36.84 95.70 12.85 70.05 28.50 97.85 54.24 96.65 80.86 74.24 12.47 25.24 50.39 65.59 72.68 4.28 38.13 80.26 99.75 97.24 19.64 16.04 21.89 20.89 73.75 56.82 80.50 53.62 90.53 84.51 42.45 23.92 46.81 25.58 93.51 23.84 36.92 2.27 26.07 42.82 84.25 34.18 62.82 7.07 16.66 24.79 94.38 79.15 62.47 25.73 3.28 2.57 82.05 12.17 99.65 58.58 1.56 35.14 91.84 -99.66 26.84 15.50 58.72 88.25 7.44 23.28 20.33 51.83 70.32 86.85 5.65 13.64 70.32 46.60 19.42 16.03 54.58 83.10 45.47 96.39 45.48 79.43 51.19 31.07 10.08 0.46 46.45 50.54 23.39 17.66 42.24 42.71 54.37 17.53 42.71 37.24 60.76 30.27 33.23 28.12 72.68 54.61 11.94 45.21 7.43 88.30 60.31 1.92 77.99 14.94 27.36 78.58 27.85 33.20 91.34 59.42 89.30 43.82 8.14 68.97 83.43 16.70 66.31 79.27 53.64 43.05 45.72 10.59 64.65 78.71 42.85 57.20 13.65 75.43 26.79 78.80 74.34 1.38 53.54 98.11 41.72 13.23 1.74 40.58 84.94 0.86 59.57 63.62 90.56 27.78 28.34 50.55 92.29 0.08 37.21 72.06 38.40 54.05 72.41 -53.94 19.36 19.54 39.68 73.37 85.93 72.26 92.88 96.30 27.16 2.56 76.14 61.69 51.07 33.50 72.37 67.96 98.46 41.18 31.34 43.99 18.19 59.94 48.47 2.15 90.67 16.41 67.24 15.24 48.89 34.16 63.59 68.97 83.43 12.75 14.17 55.92 90.40 19.79 31.13 67.89 78.26 16.56 52.46 68.67 86.58 95.77 33.03 55.60 16.76 45.36 90.41 10.51 88.17 77.54 8.81 23.96 76.96 73.95 62.08 92.16 98.94 7.87 84.68 2.98 6.91 26.20 94.85 83.52 98.27 32.71 8.95 47.41 84.99 32.82 80.77 16.15 68.87 58.52 80.15 98.93 15.50 93.74 26.67 11.60 40.03 79.85 15.70 25.42 52.16 36.84 67.36 7.62 16.45 17.71 3.57 61.75 88.79 84.80 23.37 -19.06 96.81 82.53 51.95 81.25 57.22 18.68 16.14 78.41 84.85 84.91 65.27 51.20 91.43 73.73 23.31 89.62 88.43 17.36 69.29 23.28 5.88 55.31 7.69 91.94 61.39 23.70 38.79 19.82 55.97 35.72 88.01 17.96 56.50 70.72 81.68 10.74 78.34 78.49 61.14 29.36 53.76 10.64 14.02 14.75 91.50 70.15 70.28 78.32 32.54 70.10 78.98 17.35 92.58 24.42 68.14 25.24 55.65 0.04 73.32 34.17 70.97 0.58 22.21 73.13 5.07 42.24 38.45 3.46 87.65 22.17 71.29 69.09 60.65 32.77 36.20 31.89 8.20 46.32 0.65 89.96 69.26 17.12 67.30 29.53 91.50 24.54 71.78 53.69 87.29 53.37 28.62 17.68 25.46 21.64 41.00 5.93 75.66 68.44 55.99 -7.59 17.09 38.00 9.14 4.69 99.16 43.84 84.13 83.51 59.88 2.75 34.83 10.56 41.99 1.11 33.12 62.35 86.87 22.32 49.81 58.14 54.57 38.06 26.18 0.20 68.35 39.76 7.27 17.43 2.27 43.07 16.78 41.87 74.83 1.36 33.59 0.77 27.73 87.96 49.15 1.01 13.44 76.18 84.63 6.01 11.27 65.59 30.60 56.12 48.76 75.79 37.77 13.13 20.58 20.70 6.64 69.62 68.21 5.28 60.90 66.17 75.81 68.55 61.17 84.78 88.68 55.95 41.39 20.30 13.13 77.08 0.74 41.04 6.24 19.88 96.39 53.42 93.04 38.74 9.07 42.02 76.47 4.29 63.15 18.48 50.05 26.39 22.33 8.79 93.06 25.56 90.01 93.57 94.56 1.95 83.33 35.77 67.60 19.30 73.37 -80.92 44.04 57.79 23.10 85.75 52.10 0.38 93.59 77.28 96.29 0.75 22.96 86.30 45.27 41.51 33.84 94.55 94.25 26.24 85.80 99.15 8.33 64.54 23.33 52.68 59.79 55.50 76.49 32.52 82.45 35.60 57.74 86.10 11.35 14.97 70.38 64.17 43.91 72.64 34.43 23.43 73.79 97.20 66.50 78.33 23.57 27.10 99.08 80.81 21.74 20.59 25.99 5.50 66.71 83.66 33.50 65.41 59.54 4.27 86.60 92.16 99.80 67.49 94.44 27.95 11.90 72.05 66.21 47.78 49.94 40.21 73.58 74.05 16.93 93.25 8.07 43.61 54.97 50.35 80.68 40.32 87.08 67.21 70.17 59.93 42.96 62.79 79.69 64.56 63.17 82.51 33.70 82.12 19.51 24.39 6.62 95.08 80.44 52.19 47.68 -73.41 52.33 40.08 25.41 68.93 60.36 95.76 52.82 4.23 17.51 27.63 85.35 15.47 75.74 80.40 45.82 42.44 84.78 88.76 58.70 48.42 16.86 31.41 97.21 53.23 78.05 33.22 90.16 53.81 7.64 11.12 3.92 87.48 91.10 42.66 84.11 91.08 89.43 29.70 81.45 93.04 45.93 49.02 70.51 61.52 51.90 49.82 12.39 20.65 44.21 3.40 0.81 85.22 42.24 3.16 77.28 24.32 49.57 47.93 4.37 87.67 76.20 19.24 67.20 78.68 0.23 46.13 98.77 19.55 29.56 15.68 19.51 23.34 56.73 23.88 72.71 7.00 10.37 83.98 31.38 17.53 59.23 16.99 78.95 14.05 58.40 77.61 74.21 73.08 91.61 44.59 99.17 13.13 52.36 10.47 14.66 50.58 5.38 39.25 11.09 -48.29 29.86 47.41 69.75 60.41 20.42 41.24 35.34 40.36 71.48 2.43 94.40 56.13 69.29 47.95 19.66 74.56 46.49 31.59 60.26 29.26 99.86 33.17 26.59 54.66 29.90 60.13 18.44 32.12 37.79 32.53 94.12 9.32 57.71 51.13 19.31 15.30 86.25 46.51 64.17 69.73 32.46 83.23 41.38 98.75 53.66 57.93 95.77 44.82 18.09 72.37 54.46 94.37 5.64 47.61 98.36 25.04 42.95 98.63 4.41 52.80 33.48 41.88 20.67 86.13 30.31 2.81 18.78 42.45 85.90 48.57 50.23 15.53 0.55 32.67 41.97 59.41 58.78 86.63 0.15 88.97 73.80 85.73 15.00 58.88 33.26 71.43 5.88 54.68 41.82 39.59 78.84 66.82 98.29 52.99 76.58 65.92 54.76 4.37 77.79 -18.57 44.05 66.45 70.81 51.84 93.62 46.86 27.98 51.12 55.43 89.28 88.13 88.96 23.85 68.56 6.90 19.88 81.83 57.08 50.88 26.28 7.26 89.76 81.00 46.38 0.11 5.25 94.70 32.61 83.76 4.06 12.61 80.83 53.70 67.55 68.50 43.15 10.23 58.75 4.62 16.31 4.65 58.90 58.18 22.58 65.99 16.67 17.57 80.47 66.90 82.79 26.03 87.65 61.75 39.63 31.37 29.98 60.37 84.09 6.45 44.77 80.04 17.43 86.94 67.94 76.43 56.71 83.81 65.22 55.61 59.94 36.70 85.89 46.29 87.83 94.23 60.39 70.36 23.10 77.11 2.04 39.94 8.15 36.36 3.05 21.29 73.01 22.85 94.87 62.52 5.41 96.08 63.30 39.82 26.54 96.23 36.87 24.48 64.05 78.57 -49.85 29.42 10.13 61.05 22.75 25.11 55.08 36.78 55.15 84.28 6.87 20.21 24.69 5.25 57.37 47.69 95.04 8.49 25.46 33.48 84.77 33.19 90.27 45.09 62.60 21.58 61.97 30.35 4.14 6.29 54.76 86.40 62.24 45.12 23.45 73.06 47.46 76.63 64.58 9.41 11.05 47.40 81.99 36.78 18.06 59.54 95.30 7.04 86.05 84.96 90.25 74.68 67.70 85.72 92.65 1.33 68.33 68.37 88.56 82.89 42.63 90.39 70.81 11.07 70.10 71.46 77.63 21.19 60.68 34.29 21.29 79.90 80.70 54.28 1.93 2.70 57.43 84.10 11.65 20.70 83.57 1.26 78.56 17.84 74.05 44.65 55.36 63.38 69.87 98.80 40.47 1.25 61.73 94.73 67.08 15.92 23.49 36.57 14.04 9.65 -79.08 46.14 38.55 45.06 39.95 41.77 86.93 13.38 7.39 77.34 11.78 96.87 9.72 77.17 68.70 61.83 80.66 7.73 11.23 80.24 57.53 25.88 34.28 45.05 3.17 75.68 4.91 60.96 19.07 17.93 88.93 78.27 41.67 55.19 12.80 5.92 2.70 96.36 71.61 60.61 30.96 4.83 19.19 30.47 28.92 49.04 1.18 28.95 98.18 52.57 50.83 81.30 27.94 64.53 71.43 4.08 24.52 28.24 85.18 61.59 22.16 6.95 38.82 97.93 37.75 48.52 60.52 55.88 13.12 8.05 60.05 83.95 25.54 59.49 81.82 95.10 31.50 20.61 73.18 7.91 74.34 65.83 77.71 34.49 40.41 26.15 90.44 11.29 2.85 98.70 27.27 60.39 27.14 4.97 78.70 56.90 20.13 11.05 32.70 28.79 -73.80 27.75 93.66 55.63 69.40 32.26 33.78 53.45 14.89 40.80 71.52 56.13 48.01 62.60 64.34 55.47 16.33 88.19 93.36 11.11 2.69 43.21 5.98 93.98 48.67 48.98 98.72 13.39 5.45 15.63 67.31 30.89 1.34 25.29 98.67 29.53 23.74 79.15 75.34 52.56 28.33 4.41 38.89 86.14 11.01 51.77 21.84 93.28 82.07 42.92 99.05 77.45 94.31 46.02 43.20 82.48 15.26 38.64 20.08 50.08 79.80 2.65 73.36 85.70 4.74 4.29 87.46 44.37 61.52 9.71 37.51 72.94 77.06 85.59 29.00 57.07 8.02 72.75 98.04 37.51 55.36 2.18 64.47 66.01 54.67 63.53 1.68 45.01 20.32 1.95 66.72 16.69 86.15 55.65 86.26 23.50 21.53 63.41 83.23 47.42 -44.89 29.62 48.23 69.13 80.06 81.73 9.33 5.83 86.82 88.37 58.40 14.18 45.98 49.46 7.02 81.83 48.87 25.36 79.52 88.64 52.75 8.56 5.24 31.42 24.89 48.72 96.06 50.86 84.76 41.42 68.21 6.47 41.61 38.62 58.35 4.95 28.29 37.87 48.82 37.47 75.47 49.02 75.07 26.05 33.44 56.13 59.34 0.73 30.14 12.35 16.68 46.96 68.84 11.80 33.74 36.33 64.37 87.92 48.17 4.33 72.61 13.35 58.87 73.01 1.51 6.06 76.91 1.85 73.80 91.24 26.23 78.84 29.14 87.26 77.51 44.64 61.42 67.76 50.61 29.65 86.75 31.85 83.21 47.01 75.03 51.85 10.04 24.89 96.64 79.88 40.97 90.13 74.05 27.37 10.63 90.06 9.17 2.54 61.94 5.56 -98.64 0.05 16.32 73.70 45.19 25.92 12.30 18.45 97.81 17.62 51.71 86.23 56.80 22.86 86.11 27.52 34.37 81.07 28.19 53.68 16.74 41.33 47.89 96.62 17.88 44.45 55.78 27.38 22.34 79.33 52.18 3.58 3.39 98.30 37.40 60.06 87.09 73.04 94.08 71.44 85.82 49.02 11.42 10.13 92.39 52.19 57.10 9.62 63.07 73.23 9.46 42.43 80.86 98.28 68.88 62.06 28.24 26.83 15.98 55.52 86.39 50.76 53.13 84.25 91.45 77.34 7.14 22.55 25.29 10.97 77.45 70.33 65.07 42.19 76.59 37.61 73.79 59.73 48.29 54.46 2.07 8.92 70.07 20.80 60.63 49.71 58.03 66.27 2.60 97.85 96.85 99.80 99.94 62.71 15.48 39.95 3.36 34.57 53.11 47.88 -65.39 47.41 49.97 86.74 34.83 86.17 71.62 6.27 94.46 26.85 76.09 64.57 44.37 6.83 65.73 82.57 20.57 97.72 62.40 64.47 40.96 51.19 10.79 39.32 87.52 28.95 48.29 38.54 42.64 89.20 10.94 20.46 85.76 49.04 72.88 57.02 75.49 14.42 69.87 53.55 90.95 28.48 68.21 69.48 54.47 61.21 11.80 3.88 77.02 95.79 44.38 99.89 16.40 2.90 57.88 74.20 67.87 86.47 0.47 0.00 91.12 80.12 77.76 91.04 8.38 17.48 39.29 16.78 64.24 22.00 58.30 78.53 44.05 97.99 26.29 93.45 19.20 72.58 54.81 4.25 11.55 43.93 54.46 55.91 88.91 5.65 53.85 21.57 96.92 37.53 1.51 93.69 96.61 59.56 80.28 80.50 24.85 17.50 87.46 60.98 -98.20 3.82 21.90 49.36 7.31 17.27 74.71 53.80 5.13 94.66 93.42 51.77 41.84 93.15 53.12 94.37 9.93 82.45 66.78 15.45 68.40 61.93 31.20 48.09 82.75 26.98 86.76 60.87 25.66 53.77 68.68 17.14 45.10 92.81 18.61 39.95 79.77 8.01 48.70 82.79 35.07 56.99 61.52 1.22 52.88 46.96 22.15 51.70 44.40 4.38 12.72 15.45 38.73 63.70 98.99 80.43 91.90 34.05 7.23 65.56 98.31 16.80 29.65 66.36 83.92 43.37 85.83 6.62 83.64 76.12 34.48 92.25 72.23 21.36 50.86 68.54 74.70 5.47 39.56 19.29 70.07 48.22 62.51 30.85 34.64 29.48 28.64 18.60 78.44 5.08 98.68 33.60 13.71 76.88 74.74 52.39 82.33 89.66 81.40 1.75 -51.78 20.34 23.93 90.82 75.19 28.49 75.11 92.34 32.39 44.74 54.73 70.16 41.40 77.29 40.13 47.94 51.24 52.58 42.63 36.62 30.50 56.20 91.06 54.87 61.98 29.97 8.59 68.93 49.58 36.58 7.20 48.34 85.39 2.91 45.20 65.63 30.29 41.07 42.17 11.89 21.63 18.66 15.89 93.35 59.12 46.20 16.91 61.51 49.06 18.99 72.11 61.92 96.95 41.63 69.78 75.41 58.93 78.76 48.62 32.17 6.80 99.33 30.28 84.19 6.23 47.33 78.70 1.97 0.26 85.90 30.70 97.73 60.05 75.35 87.13 51.38 57.34 69.40 24.15 21.56 33.22 73.04 70.42 89.52 52.80 95.66 68.48 49.54 85.65 59.36 52.16 46.56 37.91 23.70 56.75 83.00 93.96 59.71 91.49 51.97 -3.63 18.79 11.56 36.39 60.35 54.47 51.74 69.51 16.57 69.80 52.28 37.11 22.87 37.60 61.48 81.42 64.93 36.30 42.72 59.66 30.22 48.05 89.84 18.90 89.00 88.54 37.90 59.90 85.75 72.26 23.09 90.09 93.99 82.68 98.02 8.74 1.42 65.25 8.26 51.93 20.21 59.51 11.93 38.52 7.45 45.32 59.21 50.87 41.89 6.02 99.77 67.89 6.23 13.95 18.76 84.07 48.90 55.55 32.15 65.77 34.65 36.24 61.67 27.25 92.70 10.68 88.07 17.78 65.24 85.05 23.43 40.56 98.63 88.11 95.70 0.38 7.56 57.24 60.02 20.40 9.52 49.22 82.61 78.01 12.84 28.77 56.88 89.97 64.61 12.18 5.62 46.37 67.50 7.85 1.19 28.59 12.28 94.71 80.24 22.28 -35.49 81.52 33.53 80.45 11.20 85.81 0.84 6.82 20.89 95.27 66.41 91.44 44.88 58.53 20.15 77.80 22.71 26.99 95.00 99.95 51.97 98.38 47.10 1.90 12.76 88.82 36.26 90.37 20.49 74.97 23.35 91.52 36.47 90.76 63.05 58.30 55.28 6.95 88.99 51.02 45.06 61.62 59.93 92.72 7.59 86.55 4.98 27.37 92.29 4.81 19.05 76.26 37.87 29.53 79.06 52.22 39.85 55.25 60.80 97.65 69.83 15.91 33.83 71.56 48.91 30.26 10.86 59.26 48.35 92.15 95.47 97.85 95.29 92.52 30.23 40.33 25.04 88.19 9.58 74.35 95.32 56.53 57.14 6.45 89.97 34.51 35.18 5.75 40.73 92.16 64.95 34.69 64.13 39.80 39.72 97.98 3.82 39.41 17.48 67.23 -55.88 32.76 95.23 42.38 3.00 50.75 22.16 9.86 53.50 17.17 62.02 53.77 26.57 67.13 97.87 30.17 58.14 84.09 19.27 62.99 32.07 62.20 66.32 44.82 37.39 13.02 93.26 0.65 82.69 3.30 82.77 51.25 63.17 97.71 1.02 19.42 8.18 14.84 40.92 1.00 88.68 17.49 99.25 57.53 71.73 74.67 14.39 83.20 80.36 88.14 62.15 92.31 41.48 39.38 3.27 31.13 83.91 22.60 11.76 27.52 70.40 11.93 31.01 95.13 35.66 6.37 44.04 8.59 74.94 19.27 50.63 84.43 76.49 89.06 73.58 22.55 5.51 42.62 40.43 61.37 64.53 24.38 66.81 14.00 97.35 39.18 2.20 4.22 21.17 73.82 16.13 2.07 27.20 72.47 65.38 18.18 21.32 30.70 54.54 77.15 -32.71 91.30 20.79 74.43 34.65 70.53 65.72 97.59 90.36 84.68 41.40 47.25 81.24 87.15 41.50 84.93 84.23 21.95 68.34 35.36 99.32 66.79 33.11 51.82 15.96 26.58 61.63 79.67 17.03 42.71 50.59 44.83 65.62 77.15 67.91 97.69 61.71 2.80 25.54 90.57 26.62 90.60 62.89 86.47 35.61 83.63 61.09 16.72 91.74 37.79 24.40 77.37 74.69 19.98 7.72 49.77 32.05 62.06 27.63 66.50 74.07 70.94 89.69 32.96 85.93 20.41 98.76 36.15 46.43 53.67 39.21 21.22 34.60 44.88 4.15 92.32 40.93 94.30 20.33 92.82 83.26 50.03 80.31 64.26 62.01 88.96 40.51 62.34 78.39 37.30 9.71 70.55 29.74 64.64 68.17 18.44 6.26 5.12 58.12 23.49 -58.91 59.54 24.73 0.97 51.54 93.42 30.76 15.78 69.53 41.39 64.24 74.80 45.97 72.99 63.37 3.94 98.68 96.15 29.41 65.94 0.09 58.02 81.61 42.70 1.81 75.08 71.29 5.33 93.95 84.83 89.27 36.61 69.37 98.65 13.48 74.71 18.60 2.05 20.87 44.05 36.28 29.09 96.22 32.25 34.35 99.34 86.04 93.23 10.97 67.50 94.04 88.24 13.03 81.26 92.50 75.88 88.17 22.63 89.27 87.23 33.33 34.35 16.02 92.83 67.20 79.95 98.15 33.85 39.36 51.74 44.39 34.77 98.12 49.40 69.01 83.23 40.68 77.29 57.88 57.85 84.65 19.00 81.24 35.58 71.13 64.55 21.45 70.89 13.20 52.38 96.11 99.32 36.35 20.31 76.94 2.05 60.58 57.31 61.45 98.22 -37.58 3.47 57.27 57.55 3.13 93.50 96.60 22.28 2.68 75.42 84.24 55.31 48.96 82.99 45.58 76.13 99.85 9.35 43.65 24.20 48.03 44.80 94.12 40.64 88.46 41.96 14.04 13.22 44.20 84.17 44.54 31.19 65.98 12.44 50.14 92.12 76.51 38.96 19.26 6.37 12.70 20.74 4.71 16.21 83.13 61.77 61.83 93.82 5.71 41.10 79.32 42.40 57.54 60.61 29.17 34.94 14.46 51.31 60.30 5.67 96.03 48.84 73.14 14.40 96.28 23.39 42.17 43.95 47.26 80.45 16.88 23.77 56.41 15.67 25.81 18.51 96.90 58.34 50.44 52.12 42.90 83.54 34.07 24.30 52.03 99.51 76.57 64.60 26.37 93.17 65.40 70.23 54.19 87.60 13.82 76.45 4.69 80.31 77.63 94.74 -92.10 44.62 13.22 69.76 69.24 75.46 60.65 54.68 96.31 52.37 4.88 27.90 80.86 37.22 21.08 42.37 78.78 7.97 87.97 61.50 85.90 15.96 94.59 56.75 85.80 93.95 17.11 54.99 41.03 53.06 9.70 49.49 70.33 89.45 6.62 56.40 43.03 17.35 34.70 6.26 89.61 23.68 62.00 53.02 84.21 30.76 23.56 47.26 17.19 28.54 56.41 87.61 65.06 7.72 14.37 10.02 80.63 83.05 32.48 38.96 41.04 0.94 46.13 53.90 87.37 74.69 34.88 15.00 4.85 62.62 86.90 37.17 40.63 13.73 79.20 38.67 10.58 34.29 55.89 30.99 25.74 2.81 21.98 79.74 58.25 87.19 27.97 32.38 34.79 99.94 96.36 77.88 5.69 77.84 25.37 15.43 24.11 20.50 11.09 51.25 -72.01 86.42 45.56 0.49 38.89 99.64 86.06 86.09 51.67 7.23 35.50 13.48 4.76 74.70 92.02 42.54 25.49 73.63 21.81 23.33 51.29 61.34 8.71 14.22 47.28 14.85 69.73 88.37 56.48 91.33 72.53 60.69 35.17 59.39 32.47 77.84 24.38 32.41 47.19 69.67 50.42 29.53 12.12 72.79 10.57 91.90 23.82 17.09 38.57 54.60 27.79 68.30 36.07 49.80 62.82 31.69 96.29 23.49 30.59 9.37 89.75 7.77 62.00 40.09 55.34 42.44 77.18 63.28 61.14 29.71 94.20 18.18 48.05 59.15 86.21 93.17 34.75 23.02 64.49 93.43 32.21 66.95 76.69 45.69 22.26 65.98 1.68 0.40 23.34 65.25 70.48 98.87 83.46 45.64 54.74 96.27 55.00 30.12 60.22 21.74 -93.48 61.88 97.40 79.64 56.16 97.63 1.33 9.12 11.35 21.72 64.31 80.75 69.60 21.32 47.32 96.99 9.60 92.98 63.75 15.34 82.52 7.41 0.36 35.80 80.81 10.20 26.51 3.67 44.48 19.75 31.98 78.62 30.65 77.63 97.73 44.99 96.41 12.67 59.33 96.89 28.28 73.07 11.93 47.04 7.09 47.06 99.38 93.53 20.30 88.09 25.59 14.01 9.33 69.07 62.69 52.46 45.08 28.85 69.75 0.10 40.92 96.25 41.38 25.56 13.73 10.46 0.85 15.74 33.93 11.78 19.14 98.97 38.76 20.52 38.08 65.54 72.94 86.13 61.70 76.04 90.16 76.77 66.95 7.38 50.43 16.48 64.65 51.53 93.60 27.16 83.51 75.02 60.17 16.57 32.74 17.78 50.16 37.97 62.86 2.13 -97.48 23.80 8.27 88.47 51.30 96.61 21.63 52.43 24.99 80.19 50.78 22.31 31.63 70.37 96.00 0.01 78.68 90.79 56.29 66.64 92.65 35.56 17.89 22.78 42.61 96.74 83.50 98.43 88.22 60.26 70.82 55.86 61.07 85.83 46.31 34.25 95.17 73.47 56.30 97.31 96.57 44.53 60.31 98.14 89.48 48.93 40.66 60.16 88.86 90.31 11.42 81.50 34.48 29.04 18.00 84.00 55.39 13.38 47.81 18.43 14.43 3.95 91.41 28.62 26.38 21.18 86.20 72.14 34.05 79.16 68.92 53.34 96.07 95.24 74.18 53.94 20.43 62.65 14.25 49.70 40.01 47.16 33.13 28.03 55.51 40.82 67.06 56.14 85.03 8.77 80.75 10.10 97.07 32.79 62.77 34.39 73.72 73.81 55.27 10.74 -86.98 48.62 90.50 74.06 91.81 53.82 74.89 14.48 83.75 79.28 28.43 9.52 77.83 69.94 15.42 22.72 33.48 48.96 37.36 36.41 96.57 71.38 68.00 6.53 60.68 4.96 82.04 15.46 90.48 91.97 8.95 87.86 14.21 13.61 14.80 47.25 53.55 77.04 85.64 2.29 27.85 86.49 6.56 39.08 17.53 58.43 23.36 10.70 25.19 63.17 57.17 77.97 7.92 80.45 41.86 36.41 83.39 65.48 0.20 75.52 12.97 44.23 86.25 73.02 33.82 55.10 99.08 65.82 63.99 92.94 34.05 12.65 48.46 16.33 13.63 60.92 12.62 86.09 24.86 18.72 91.83 20.08 6.19 59.61 36.21 47.46 70.50 29.59 18.01 81.11 85.63 43.23 17.01 32.46 37.98 98.17 74.68 7.23 68.26 66.79 -91.33 24.71 58.61 99.54 82.69 48.58 50.39 86.50 11.34 6.19 8.38 58.61 78.45 61.69 3.92 2.80 78.28 17.71 56.75 35.41 0.04 45.07 29.09 22.08 85.37 35.28 46.38 90.53 49.31 51.54 82.88 24.77 6.96 4.21 91.22 97.77 46.03 0.12 6.84 88.54 64.37 90.57 21.68 61.02 50.55 30.61 21.61 44.85 79.72 90.76 74.91 0.71 28.65 71.77 55.85 79.98 27.14 49.54 75.54 13.45 4.17 46.09 11.31 59.63 85.52 50.99 57.55 64.01 8.49 57.17 89.64 48.80 46.34 52.35 83.84 17.05 27.55 30.90 18.35 73.87 12.62 14.41 60.91 29.30 33.24 37.71 42.09 42.17 78.32 67.61 83.42 5.04 2.91 28.45 67.75 78.17 8.40 58.47 48.15 55.77 -1.65 51.12 45.62 46.88 97.35 91.38 12.17 63.28 11.20 74.07 66.79 17.81 20.56 51.13 43.83 44.14 28.16 58.63 87.56 50.08 52.99 49.62 8.74 52.92 44.96 8.59 80.98 43.11 91.53 13.53 76.18 66.98 57.03 55.75 88.31 32.63 31.89 54.08 45.58 98.24 56.40 87.11 32.22 13.03 81.37 46.95 93.11 57.75 16.84 84.22 89.19 52.47 19.63 53.30 98.73 45.49 47.67 69.02 8.17 97.87 96.21 26.87 62.15 91.66 23.67 65.54 32.60 43.77 24.71 65.03 71.63 18.76 11.78 16.13 49.94 83.06 46.88 49.93 88.27 42.52 24.00 5.78 83.73 54.66 93.44 35.17 11.87 64.01 31.24 38.41 54.22 41.85 53.79 29.11 22.03 61.56 12.30 24.39 67.44 81.63 -31.99 4.52 7.23 6.88 42.20 12.28 10.47 74.34 9.71 65.28 3.31 32.19 87.87 80.16 73.68 97.65 5.23 28.56 67.46 56.61 29.05 46.24 15.90 50.32 26.88 68.74 1.43 11.78 25.50 40.90 54.24 0.08 95.43 41.59 64.40 21.13 61.88 38.73 27.00 11.46 73.73 22.89 68.46 71.14 50.88 16.44 37.48 56.40 42.44 30.87 72.35 88.62 54.79 90.16 41.28 25.40 16.36 39.85 32.45 12.96 55.23 33.81 91.84 7.37 65.15 46.45 53.02 42.66 91.48 98.39 88.47 61.45 40.99 96.29 26.96 40.55 4.79 67.42 32.51 31.21 36.18 97.26 5.26 78.88 40.11 69.24 90.84 37.12 43.09 62.84 78.56 48.84 54.58 55.65 11.47 55.61 33.14 60.06 52.56 23.96 -33.47 82.65 76.53 84.46 6.59 77.74 48.06 70.49 93.89 57.00 24.89 83.42 69.90 21.52 26.06 21.87 51.36 60.10 7.92 34.03 12.57 88.29 12.38 19.66 74.08 79.10 0.58 99.29 67.46 71.97 23.74 3.64 78.85 66.19 21.19 8.57 95.71 82.17 48.54 57.68 23.70 44.25 83.42 95.62 98.01 62.39 2.05 53.69 68.43 60.10 47.33 22.99 14.46 18.51 97.45 81.40 13.92 55.72 23.74 56.24 67.06 50.82 18.89 93.86 97.95 37.63 91.69 55.79 6.77 72.10 8.02 76.19 63.17 94.34 95.09 72.65 17.42 11.90 83.57 43.18 32.39 47.08 27.28 91.05 92.64 19.28 59.48 94.95 69.19 24.65 13.59 45.68 55.56 66.68 89.94 16.44 51.81 11.13 49.76 83.94 -26.84 3.85 80.55 48.33 92.41 65.77 69.50 69.36 9.65 97.75 90.01 63.32 2.83 47.87 12.62 60.23 99.10 53.29 50.45 52.99 24.55 43.86 69.99 22.66 13.32 60.76 85.39 19.31 73.65 54.46 29.81 42.80 56.57 20.39 26.30 50.01 80.63 76.84 51.24 85.42 73.73 45.23 31.39 3.69 24.94 13.46 1.50 68.87 97.59 99.73 33.66 42.30 83.22 31.92 74.27 21.73 25.06 36.74 44.67 50.96 71.27 71.71 34.29 51.88 85.18 39.58 31.79 72.22 26.45 59.45 30.08 32.89 79.75 89.86 61.96 32.50 44.12 57.85 94.71 44.28 19.62 36.66 44.48 0.07 22.29 3.80 86.40 14.45 59.01 97.21 84.28 17.18 89.33 84.46 22.80 93.67 68.18 39.42 40.92 84.48 -28.08 68.22 30.10 46.21 69.72 47.22 18.03 45.33 57.52 41.72 72.65 49.36 36.08 29.64 53.82 79.54 43.25 67.38 4.32 48.00 6.96 40.29 52.99 88.76 4.08 76.61 7.66 34.52 92.79 59.11 36.29 44.63 27.55 89.55 13.81 16.38 45.30 19.14 79.35 88.03 95.46 74.27 3.87 16.50 67.01 68.03 87.69 52.37 32.82 41.46 72.30 43.11 22.19 64.92 43.20 23.17 84.32 65.09 86.15 27.79 84.47 24.93 75.16 66.69 82.32 93.17 38.01 30.85 42.95 15.99 77.10 61.44 33.53 28.73 53.99 84.01 54.82 73.73 61.80 13.68 8.41 92.37 57.68 15.48 95.42 88.37 39.00 48.20 16.95 20.28 66.07 9.41 15.48 89.17 32.12 24.35 90.02 11.64 21.80 28.00 -75.65 8.74 4.99 55.10 71.22 84.54 1.07 24.15 76.04 20.56 41.21 87.34 75.53 38.41 38.53 95.83 81.56 61.10 47.22 17.39 92.32 78.09 30.04 95.10 84.06 80.20 52.05 9.12 92.73 31.56 83.27 3.04 72.99 45.75 89.95 49.00 86.75 36.71 78.83 50.66 2.83 71.72 2.11 11.35 17.61 91.20 36.97 39.32 94.54 44.67 13.54 92.33 45.73 46.05 89.65 41.27 60.69 71.40 11.13 88.56 53.53 95.30 64.34 74.10 17.08 4.90 62.63 39.79 82.54 52.79 13.09 19.25 8.32 91.48 84.57 77.61 74.03 17.12 40.62 1.86 31.60 22.78 15.21 2.79 14.51 26.30 88.17 6.40 57.81 33.16 69.71 39.83 26.79 68.92 97.16 15.75 44.02 72.03 44.05 21.24 -46.49 39.94 29.92 30.21 52.51 52.04 54.12 55.54 28.53 88.93 19.67 25.51 50.53 7.29 13.80 25.17 20.28 89.04 57.09 65.40 18.16 61.09 21.71 34.98 83.11 96.97 38.20 84.03 11.66 95.89 70.46 66.86 43.92 64.28 51.93 90.19 55.03 60.81 6.08 83.89 44.87 6.00 88.07 18.74 34.50 56.11 61.11 76.24 4.49 40.50 89.31 89.05 72.64 68.22 49.29 70.26 4.75 26.57 91.08 56.24 16.46 5.85 51.24 45.54 89.39 60.26 42.33 20.04 50.44 44.95 54.72 59.15 64.20 10.34 20.86 22.87 89.73 64.78 5.00 47.15 41.00 4.87 87.14 65.71 98.58 22.97 31.43 0.66 91.07 91.97 60.50 90.00 28.04 86.06 68.80 17.76 46.10 37.18 6.67 59.91 -31.70 38.86 90.54 20.51 38.40 47.24 22.36 99.52 87.62 86.31 97.93 37.00 12.15 95.98 28.37 45.31 94.10 26.58 60.10 89.65 56.62 22.25 82.34 33.09 14.38 96.91 55.70 34.06 86.05 92.64 39.31 90.46 1.42 44.62 75.95 34.31 10.86 68.47 20.10 51.41 28.81 98.64 59.06 97.06 82.10 22.80 63.51 80.31 50.82 80.58 41.70 83.53 41.79 24.47 64.48 12.40 23.11 83.40 33.78 27.95 14.16 59.42 15.80 90.36 70.94 32.97 84.45 43.25 62.61 26.77 81.50 81.29 44.35 78.76 81.52 38.78 46.15 79.31 22.01 87.52 61.98 81.28 48.82 82.84 73.81 84.05 4.42 31.94 19.29 44.32 54.01 15.87 80.55 5.70 5.67 40.83 28.93 4.41 27.78 28.21 -91.66 51.41 99.16 23.49 75.03 16.02 98.03 13.12 67.33 56.60 11.65 84.48 45.33 87.03 12.70 67.80 87.56 81.39 26.31 90.69 60.34 97.54 76.51 75.25 84.72 91.74 49.86 64.67 83.38 60.11 60.51 78.62 37.97 39.36 73.40 42.51 23.51 77.82 67.35 18.32 88.77 61.39 4.81 64.25 11.57 29.63 88.12 93.14 19.97 11.10 23.18 80.82 43.31 39.92 41.37 74.01 45.76 77.59 7.99 37.28 72.60 37.25 55.32 63.87 28.74 77.47 85.37 94.70 39.23 40.41 8.76 43.38 60.50 34.65 74.62 96.82 96.43 1.74 93.52 84.49 37.69 34.55 37.32 63.43 11.52 27.26 87.77 26.97 13.80 40.52 22.13 92.89 47.44 25.70 1.81 9.59 26.99 57.55 54.98 82.42 -18.39 7.72 32.14 12.32 11.76 48.21 29.84 31.39 40.88 77.00 68.07 67.29 53.26 20.14 77.95 1.41 39.11 31.05 5.92 10.30 89.46 72.34 57.15 38.68 44.18 75.08 31.88 28.97 52.60 97.02 54.49 38.57 74.42 84.44 51.42 36.61 78.72 90.88 61.75 55.81 10.23 97.06 57.21 91.28 43.93 22.19 82.50 22.01 42.80 53.55 9.04 11.76 60.92 9.85 9.19 35.18 65.96 38.70 72.68 57.79 17.73 8.66 84.77 33.28 50.31 78.92 40.23 34.20 57.91 3.14 55.82 96.62 18.38 39.15 29.54 19.46 46.33 50.89 23.76 40.77 40.64 24.64 45.46 99.88 85.04 51.94 13.44 32.95 3.62 17.76 57.04 14.29 7.63 27.94 93.31 65.19 61.54 64.17 65.04 47.43 -62.30 15.60 1.61 70.73 35.32 91.91 68.11 25.45 17.79 25.00 68.05 7.59 68.73 37.98 41.80 94.92 8.19 20.75 98.18 10.02 35.94 93.64 31.62 71.89 11.99 89.73 6.82 65.90 88.28 63.52 36.06 50.67 6.55 38.28 72.46 63.63 65.39 43.95 72.14 23.01 9.86 85.19 74.20 68.55 7.19 36.44 33.21 15.86 81.20 98.30 84.65 40.86 43.63 58.08 55.47 34.44 25.49 30.32 18.05 80.69 29.80 55.33 13.84 78.10 88.68 78.71 42.76 18.48 92.14 24.55 22.87 80.22 24.19 79.47 67.86 76.24 67.80 97.82 69.35 97.62 32.98 36.87 54.81 21.50 42.74 59.07 12.76 1.97 38.52 70.26 13.73 67.16 66.98 96.04 93.50 15.71 68.47 24.16 37.92 61.06 -88.82 44.81 85.92 73.45 72.75 25.42 33.37 24.88 96.63 80.16 26.84 1.55 86.10 11.46 78.05 58.21 20.81 62.92 75.59 32.06 14.52 95.05 38.72 95.64 44.47 59.88 34.14 42.25 75.41 50.15 15.21 35.10 61.94 48.73 21.86 55.34 30.34 88.63 2.11 46.34 45.53 4.47 22.89 93.85 69.50 33.72 81.34 26.64 32.43 78.94 60.87 15.35 56.06 93.56 11.38 70.29 67.53 32.67 83.48 96.80 79.27 64.52 99.71 50.78 91.05 16.55 84.78 56.31 8.91 47.17 56.32 36.37 81.84 38.63 8.83 73.45 89.63 98.21 55.82 63.34 73.56 68.14 44.95 67.76 73.45 77.17 42.39 82.19 48.63 83.22 47.65 47.49 39.45 87.01 18.65 9.71 49.75 10.66 13.86 91.98 -35.78 7.14 17.65 68.32 80.14 39.97 7.42 90.04 37.04 35.07 85.64 33.22 11.10 62.68 19.40 1.75 73.55 68.12 90.01 59.97 25.39 50.03 53.42 67.85 38.46 30.49 22.92 56.84 45.58 58.23 27.08 55.62 89.96 31.68 82.97 71.02 76.67 23.29 11.06 24.61 94.50 51.16 91.38 59.40 64.66 66.95 81.21 59.63 6.17 23.57 74.77 37.18 54.83 90.44 71.86 68.08 6.09 61.47 76.13 42.09 81.68 66.97 43.82 11.55 13.30 26.23 41.73 60.24 26.43 12.45 99.10 98.33 89.08 55.49 44.46 42.73 83.22 36.05 37.55 31.71 29.46 5.56 8.14 10.81 53.10 25.45 9.68 58.30 86.74 73.52 57.76 48.71 16.89 97.64 54.84 76.21 83.12 88.72 58.47 64.08 -35.07 42.46 29.02 21.42 38.91 46.21 31.94 76.46 71.35 38.05 69.16 88.44 82.63 24.61 31.34 59.27 50.87 61.04 98.91 50.71 50.03 25.26 90.04 61.28 90.99 56.04 23.77 27.51 57.20 99.37 44.29 87.11 79.08 54.56 8.51 57.80 67.50 31.83 79.73 11.52 78.42 23.24 12.63 37.81 6.79 79.72 57.16 94.96 86.36 41.13 75.42 28.14 60.09 41.82 16.45 98.48 62.32 5.90 32.24 23.47 16.82 51.71 12.94 44.67 30.15 45.08 63.62 6.00 41.89 21.19 96.11 2.78 79.07 24.20 57.44 54.46 68.94 99.47 68.74 27.51 81.44 51.60 69.18 24.57 82.95 28.17 85.05 8.07 2.60 73.42 94.74 64.69 35.72 63.17 49.41 19.49 54.15 3.84 60.07 63.66 -35.39 77.35 72.55 71.38 81.45 20.22 1.05 21.10 71.90 51.86 85.92 67.66 73.59 48.41 7.26 24.06 69.50 71.16 87.59 5.48 63.23 96.63 8.35 55.68 33.43 52.07 74.68 21.50 60.41 41.98 95.28 58.37 61.78 32.19 35.91 59.73 16.56 52.62 84.67 97.46 61.14 69.35 45.77 76.02 82.96 78.41 46.12 36.30 85.57 88.00 28.06 82.56 47.09 44.61 75.69 62.47 36.75 82.64 7.93 34.21 14.06 98.45 59.35 46.09 83.67 42.95 14.00 43.96 24.32 88.27 30.34 5.69 59.58 7.63 30.24 8.41 68.36 40.76 84.53 2.04 41.00 48.45 70.73 69.56 31.65 51.32 90.51 33.59 21.10 91.09 35.74 24.62 32.27 7.30 61.09 27.70 6.42 60.35 10.60 93.71 -75.93 93.69 92.50 91.28 27.67 71.09 36.39 10.13 51.90 24.93 79.93 78.06 17.83 59.81 10.32 36.61 98.37 36.97 13.97 17.77 63.25 52.67 61.69 81.97 3.80 92.34 81.50 37.21 3.13 42.65 12.26 50.30 7.48 21.72 3.03 84.10 61.58 6.80 3.08 69.80 15.09 4.36 50.47 75.98 82.29 44.80 46.97 80.45 96.41 36.86 15.69 44.91 21.23 44.01 71.18 22.19 67.65 33.99 52.97 58.24 90.59 99.75 56.43 1.21 26.37 83.47 52.27 76.66 33.57 26.20 69.46 3.25 88.73 85.71 50.83 28.31 45.59 89.06 20.30 41.38 18.15 67.80 47.05 91.69 56.19 1.67 36.13 83.38 12.75 75.51 32.60 32.51 84.46 6.62 31.91 89.64 70.43 16.01 16.91 0.54 -90.10 93.28 55.26 82.49 76.93 94.62 42.25 98.99 47.38 61.71 77.86 85.45 10.89 27.80 89.48 61.22 41.70 18.09 27.85 34.80 18.40 44.67 77.37 30.54 31.98 60.76 20.02 74.69 80.34 71.18 10.57 15.81 78.73 81.44 91.84 12.59 24.76 48.45 7.89 85.57 60.29 41.10 49.89 76.47 61.00 35.86 10.30 65.59 34.80 79.49 78.32 43.34 43.78 35.61 96.83 79.51 6.29 97.96 37.46 20.57 94.42 82.12 68.35 34.06 51.26 85.35 37.97 11.68 71.97 81.56 18.00 87.09 37.37 68.42 68.90 17.20 85.93 66.90 55.09 63.90 30.13 68.99 82.66 49.51 27.60 50.57 80.87 76.09 76.51 14.24 97.90 73.23 18.32 32.83 35.40 23.73 76.31 59.65 47.67 67.90 -17.01 53.21 34.32 41.58 12.43 11.69 7.28 78.86 53.88 33.32 78.12 45.94 59.22 38.59 61.17 22.71 61.63 2.82 56.95 93.69 18.71 3.17 80.89 89.43 91.41 38.60 75.02 77.75 65.24 30.05 60.04 96.05 68.42 51.55 96.34 48.83 70.12 73.68 40.62 39.23 85.13 95.49 96.73 62.94 26.10 34.26 36.25 1.02 58.15 8.34 83.71 4.77 89.29 69.22 81.38 63.38 63.24 90.26 56.37 40.77 69.19 70.52 75.42 53.09 69.05 48.59 20.47 71.68 64.35 25.09 36.90 3.51 14.13 8.91 0.97 67.42 33.82 40.73 14.85 91.26 52.89 73.02 30.70 22.34 34.73 91.43 17.92 77.14 62.58 56.92 81.87 31.18 49.96 50.62 41.67 37.46 44.87 53.03 18.44 84.54 -30.07 72.87 76.85 1.81 12.38 96.97 72.51 82.84 73.83 99.63 8.55 65.98 73.86 25.38 27.36 64.79 11.89 87.44 53.32 48.22 9.64 37.34 1.34 89.46 5.85 93.82 62.11 62.05 78.85 77.02 87.73 65.91 78.42 89.16 61.69 16.13 86.88 90.70 17.60 75.64 26.46 9.05 68.69 74.56 43.32 58.27 30.49 78.14 77.58 69.79 66.56 9.60 44.32 77.85 3.04 96.84 33.59 69.96 31.59 61.94 20.71 30.95 82.40 84.29 73.70 95.46 82.20 54.60 12.93 63.63 37.48 44.27 50.01 92.72 60.20 69.36 87.02 19.03 55.28 56.16 68.41 25.35 31.45 28.92 36.80 62.61 16.36 74.40 95.98 9.26 18.53 56.97 38.82 2.94 96.55 58.87 79.52 91.62 8.53 60.56 -4.60 21.73 71.93 92.46 59.64 21.47 30.48 53.14 91.76 95.44 50.56 66.38 7.93 85.46 70.30 58.69 17.28 40.76 2.90 50.67 71.57 36.11 75.39 74.52 67.49 50.92 26.01 64.76 51.07 89.93 50.24 65.27 98.04 70.30 85.59 30.39 4.12 60.23 96.62 16.32 23.87 46.68 10.96 24.32 85.51 72.95 96.16 70.12 6.95 3.63 87.88 69.94 48.71 88.01 6.90 67.90 10.65 88.97 48.09 3.69 61.82 57.94 71.15 54.67 50.45 74.49 4.16 80.96 60.57 71.64 18.64 4.63 37.25 60.52 29.31 59.59 97.24 77.38 1.22 65.27 75.96 94.95 65.00 16.97 37.96 32.17 51.10 25.00 94.91 47.88 30.41 66.72 33.55 17.11 21.37 96.86 29.68 51.44 34.90 70.60 -9.87 74.89 98.09 5.76 13.62 89.59 33.30 46.83 74.57 42.23 59.49 76.06 49.13 49.85 40.19 77.62 6.56 63.89 37.37 62.27 91.07 92.94 92.03 5.89 16.02 90.13 19.48 81.95 53.99 8.13 33.98 21.12 94.30 78.51 18.70 85.43 85.05 7.33 17.62 4.94 17.66 62.11 65.11 77.28 74.13 82.61 27.67 65.45 84.52 20.02 9.53 18.74 68.52 35.48 71.06 49.16 70.66 55.03 85.87 97.31 48.40 40.37 33.16 52.08 1.89 16.06 69.88 12.45 47.79 3.44 20.17 60.75 59.54 40.80 24.49 40.86 35.52 6.49 52.21 87.47 64.04 76.81 55.57 13.78 31.20 51.84 58.99 53.16 85.42 60.26 60.95 88.83 13.90 37.23 10.22 96.52 52.22 81.71 59.53 11.64 -27.65 47.59 43.19 73.17 10.68 95.04 55.40 73.80 46.26 51.50 40.27 26.01 3.38 89.61 30.14 8.97 61.58 6.88 44.76 20.18 70.82 80.45 90.01 10.34 36.22 34.20 49.74 71.87 69.05 99.14 19.83 43.41 66.24 3.52 2.53 95.12 16.66 89.47 26.47 53.91 41.61 4.39 98.65 91.32 38.87 11.89 52.44 79.15 6.67 39.24 46.71 68.27 9.52 24.73 74.73 52.22 2.51 35.90 60.01 97.98 38.70 40.10 73.39 7.78 28.68 45.84 82.17 20.90 64.22 28.56 3.57 9.51 58.15 54.35 8.98 57.20 34.20 22.93 7.25 6.83 62.82 75.59 40.19 57.93 50.38 3.41 80.16 16.28 77.71 22.63 56.70 47.55 26.82 44.00 45.49 15.89 87.50 21.36 34.35 59.35 -33.12 2.32 59.91 41.81 13.55 90.66 96.80 31.97 37.59 27.89 60.13 41.67 8.79 33.77 5.85 49.83 37.30 25.46 83.16 4.89 76.10 91.93 23.16 33.19 36.50 33.26 96.88 38.27 65.84 6.96 25.99 60.53 63.67 66.62 80.36 61.44 0.80 10.91 29.36 3.36 79.91 39.61 51.85 85.26 61.92 96.82 76.95 99.14 72.48 73.49 84.69 8.30 50.41 19.64 54.17 20.29 16.96 16.54 86.07 37.06 34.64 46.91 49.30 39.27 2.29 20.40 87.84 90.43 29.60 89.49 86.31 96.48 96.98 54.56 94.98 65.87 6.88 42.32 98.56 67.73 94.07 2.30 11.11 62.32 85.65 65.41 79.34 3.96 55.73 97.24 50.33 52.39 18.11 26.31 2.00 24.02 88.89 24.03 54.83 31.30 -83.70 92.92 96.56 34.69 24.59 7.34 41.64 2.32 45.80 94.21 91.93 62.29 19.10 97.04 34.48 3.26 23.83 63.12 82.41 26.41 52.92 98.62 69.29 75.53 87.56 26.60 95.46 80.79 85.04 44.34 43.14 87.38 63.73 71.31 54.34 36.57 98.48 34.44 30.12 12.41 15.59 20.49 69.09 55.01 96.33 49.91 55.97 3.03 11.09 40.59 58.26 92.24 55.20 7.19 34.14 94.23 10.69 53.12 4.63 69.86 65.31 20.23 85.45 89.70 93.99 22.03 90.82 66.66 73.76 64.58 23.64 91.36 61.36 6.98 35.94 88.58 68.49 87.58 55.95 69.97 19.64 34.04 63.06 4.41 27.02 20.39 35.87 50.50 69.12 96.24 17.99 24.60 63.51 36.49 98.52 9.49 72.01 5.39 13.22 72.41 -85.30 97.70 83.89 76.48 28.52 80.49 54.73 15.03 58.58 37.54 43.87 80.20 56.37 86.17 15.68 31.24 16.82 42.41 3.95 67.06 1.46 23.03 12.70 51.48 32.79 65.11 22.03 43.90 37.06 52.38 89.88 99.18 58.58 61.13 79.98 17.90 63.84 90.31 11.11 45.11 19.66 25.20 74.85 50.55 56.55 55.99 16.79 16.19 85.71 75.14 94.90 38.13 35.67 31.36 11.22 60.65 87.40 13.74 4.07 11.63 25.65 76.16 90.92 75.12 93.82 17.02 24.58 87.76 88.60 26.12 86.35 14.64 46.11 17.56 27.59 94.59 89.48 42.87 54.97 75.89 25.47 88.99 7.53 69.25 77.45 12.55 79.55 20.27 37.03 46.60 85.38 85.77 20.71 84.93 6.58 61.89 43.20 90.15 87.24 43.04 -65.00 44.24 60.37 98.76 28.51 43.58 86.28 58.29 86.53 37.20 94.94 19.93 63.55 64.79 57.11 52.49 56.21 14.91 94.39 40.00 87.24 79.36 7.00 43.45 28.69 32.80 61.86 99.16 39.47 28.76 67.64 42.97 5.44 71.74 64.29 3.00 20.23 75.66 81.90 56.92 89.92 75.81 66.97 1.91 20.00 88.71 89.76 1.52 45.62 31.14 92.18 3.65 29.39 18.70 51.93 10.61 7.35 65.71 80.55 4.39 71.35 48.21 86.97 2.14 38.73 80.95 2.45 7.53 34.61 98.93 86.68 51.90 88.52 5.10 31.81 94.40 35.55 64.46 28.80 28.85 56.52 31.03 23.00 41.14 64.59 46.57 36.05 37.30 13.42 84.97 61.18 92.88 42.81 84.16 60.27 73.62 38.76 1.02 76.33 40.16 -43.08 11.77 68.56 1.14 73.73 17.15 56.35 1.95 81.23 21.26 45.74 85.21 10.04 83.95 88.08 12.59 56.69 58.52 24.14 2.14 10.79 68.74 86.46 28.98 67.03 15.01 70.25 39.44 24.33 24.17 95.98 87.56 41.65 28.84 22.86 86.28 82.38 55.19 97.00 96.68 26.16 18.41 30.22 33.62 2.10 5.03 51.20 85.55 34.12 37.87 86.42 17.30 36.84 34.03 9.91 69.73 23.15 6.08 36.74 53.81 0.50 69.47 41.89 89.45 20.59 80.63 9.38 9.56 44.30 87.86 52.83 22.31 84.77 83.81 75.14 29.59 62.23 77.80 93.09 45.11 54.58 60.87 3.84 62.53 34.98 67.06 15.12 95.28 11.37 6.41 36.06 50.14 56.23 97.66 77.60 52.84 12.48 68.86 40.21 4.09 -1.13 58.48 49.40 56.35 88.17 53.65 35.45 91.77 13.55 50.21 2.81 5.80 85.10 20.30 22.18 47.99 27.11 34.34 59.62 72.94 45.74 60.99 60.60 26.23 83.54 95.05 92.36 50.22 72.66 7.57 31.62 22.27 72.15 43.97 93.61 34.36 22.03 42.31 91.74 73.20 28.86 19.40 82.81 87.04 1.77 79.22 7.53 63.54 83.10 58.78 4.12 36.73 49.89 47.27 95.68 26.15 31.78 82.36 78.79 9.46 97.61 18.37 26.52 88.75 40.79 1.00 2.20 77.33 50.32 76.98 60.50 48.31 23.77 4.51 78.18 84.15 39.83 45.89 15.00 2.95 86.12 59.88 52.64 75.74 19.86 32.46 18.29 96.02 23.66 62.31 22.11 93.87 46.92 89.08 60.69 66.74 10.16 50.53 2.92 29.07 -52.24 28.93 58.79 2.65 21.97 10.21 30.41 27.73 77.63 49.27 61.85 4.01 71.02 40.02 59.27 15.27 34.10 43.54 95.86 97.01 17.46 78.49 75.75 80.54 73.69 89.02 91.24 10.44 9.85 72.21 39.62 56.42 55.78 53.31 90.99 60.89 41.20 55.20 16.40 70.62 91.88 89.92 89.63 10.29 52.68 53.55 24.91 42.05 60.84 32.75 4.49 26.90 14.48 39.05 69.96 26.76 40.79 0.56 90.25 54.81 52.41 79.79 13.33 31.93 21.83 52.07 85.83 11.24 21.40 79.27 30.45 0.92 88.82 13.03 3.87 85.07 33.71 25.34 8.02 26.80 62.57 33.15 24.60 84.02 78.93 94.35 65.29 77.11 13.64 26.60 63.94 37.36 50.84 85.76 52.52 19.27 22.94 29.97 11.24 39.45 -72.14 90.31 57.41 16.01 80.75 70.24 43.72 42.70 64.74 35.23 72.81 8.39 45.73 53.11 46.83 83.24 90.89 81.51 48.19 97.73 49.52 78.36 62.71 86.50 54.47 14.44 61.90 23.93 12.82 34.43 3.09 10.87 85.07 2.84 49.09 51.92 63.32 67.52 61.70 31.87 71.00 61.38 7.64 30.79 65.51 45.97 73.77 92.13 74.13 32.40 75.15 81.44 33.65 57.98 38.05 56.51 71.15 18.52 67.05 35.56 59.60 6.49 16.81 79.38 74.68 81.44 83.53 29.03 36.00 45.88 7.69 12.70 35.57 2.46 54.51 83.88 61.99 62.17 62.11 30.75 54.65 15.84 61.81 31.23 72.74 79.63 3.38 71.60 48.86 28.43 22.98 36.13 80.95 40.56 34.28 12.40 23.03 97.00 30.64 91.76 -12.01 16.23 92.64 89.67 95.05 63.46 45.24 33.80 92.43 38.25 43.29 68.77 59.57 58.93 51.79 98.50 62.38 28.44 80.93 95.35 39.03 17.88 17.31 92.50 75.35 46.42 4.50 74.92 56.32 98.02 61.63 41.25 33.71 41.33 12.79 49.08 8.24 69.36 70.01 80.33 81.59 33.10 97.26 23.27 42.88 50.37 57.57 63.34 9.00 47.43 67.52 22.42 100.00 65.98 92.01 28.60 68.70 40.21 44.64 73.62 58.10 64.28 74.18 80.67 60.42 66.28 51.19 21.75 24.58 83.26 66.94 84.25 57.19 29.81 65.00 56.47 17.44 65.22 99.95 87.75 81.80 55.58 1.72 68.17 42.24 61.49 15.01 63.62 83.41 8.18 92.38 5.28 8.99 91.45 94.84 2.81 43.21 41.05 97.11 59.40 -34.41 51.02 45.59 13.92 44.08 79.62 48.18 4.33 66.16 12.81 84.30 11.82 91.95 37.40 59.23 76.31 74.34 49.60 71.28 87.17 3.42 39.15 64.52 53.38 73.25 77.38 81.10 69.33 52.04 1.54 81.95 1.82 2.85 81.09 2.57 58.55 39.78 55.28 58.05 60.98 86.27 46.46 37.25 72.60 72.12 23.77 57.63 8.24 22.99 46.30 13.66 35.00 58.77 4.84 89.36 27.92 35.68 54.69 5.85 15.48 94.68 47.48 65.35 82.39 47.44 30.77 40.51 49.73 95.04 46.27 10.35 55.74 65.25 69.28 90.05 4.84 42.74 51.24 79.70 14.96 25.06 47.93 83.95 82.57 90.76 23.16 48.20 88.89 9.87 77.09 52.84 80.87 9.50 20.64 41.98 29.00 76.65 65.76 97.37 48.48 -88.56 52.28 76.45 98.50 14.24 20.31 59.22 35.89 81.79 49.10 51.66 81.88 75.27 78.53 12.68 75.97 32.16 4.10 56.13 5.77 95.55 97.21 80.08 20.60 14.07 13.32 49.43 57.61 79.24 92.29 12.51 56.38 30.35 89.50 69.64 25.46 30.13 75.97 78.48 94.01 38.66 85.19 87.74 24.67 26.38 2.34 5.97 54.79 57.25 77.85 36.71 20.68 64.27 45.92 75.79 85.08 35.49 63.49 70.91 94.60 50.24 58.11 18.76 66.07 71.84 12.36 52.09 66.58 6.86 19.59 15.67 9.72 49.65 57.98 12.26 51.00 4.98 84.71 59.00 82.64 65.89 69.90 54.58 92.51 27.12 43.02 83.77 54.64 80.35 50.48 42.01 53.31 33.36 83.61 24.42 7.31 24.16 58.06 32.94 41.29 -68.91 52.72 4.93 58.13 70.55 16.91 53.68 64.02 22.51 58.79 91.24 34.32 65.32 33.32 12.13 74.07 15.80 16.61 2.42 71.69 41.67 24.22 0.83 7.30 26.53 65.57 85.36 12.23 53.14 38.07 96.58 70.82 31.65 5.01 94.15 62.29 39.48 61.96 90.76 82.12 70.66 20.33 29.88 59.23 87.70 30.57 54.54 54.78 31.70 70.29 70.64 66.50 24.76 23.62 15.05 9.75 32.09 65.08 36.80 80.81 68.61 81.70 42.97 33.43 19.14 30.18 83.25 47.46 94.62 99.70 48.00 9.18 15.77 94.40 65.33 28.57 67.65 42.91 20.57 71.14 23.83 73.86 51.88 30.91 2.07 78.89 23.34 43.32 85.12 49.31 78.79 3.22 26.94 92.49 38.54 96.97 36.98 59.34 89.18 50.76 -71.29 96.36 59.49 12.93 3.70 19.85 88.34 9.39 54.72 35.17 38.14 7.84 13.56 92.57 61.37 57.34 49.79 27.01 12.90 60.39 64.69 61.50 31.26 84.48 41.98 19.36 77.89 15.76 86.60 79.17 92.21 40.41 75.80 90.63 92.08 59.37 87.78 66.83 66.92 24.56 70.22 81.09 19.11 97.93 72.05 63.61 19.22 16.50 25.23 57.16 65.99 22.10 92.46 26.09 21.07 13.53 78.33 21.52 45.88 76.75 94.81 42.00 20.16 2.34 70.27 88.98 0.70 17.40 17.02 22.21 66.92 3.17 90.46 74.22 58.43 9.79 60.79 32.46 42.59 65.65 4.92 55.52 1.85 47.41 52.70 99.18 10.00 71.80 31.00 94.53 2.68 40.82 51.35 16.90 3.89 38.65 74.97 43.69 0.86 59.47 -16.63 66.33 82.98 36.37 48.08 12.08 20.45 74.88 78.31 69.37 36.17 86.22 97.57 91.24 26.17 69.64 44.33 31.07 33.93 26.30 86.85 86.43 69.16 27.47 34.95 45.99 26.85 57.73 23.08 65.35 69.11 17.26 51.84 51.95 99.17 53.97 97.48 3.87 46.76 77.85 19.40 57.34 92.77 26.12 46.43 82.19 93.81 89.50 8.27 80.28 58.60 30.73 0.18 28.63 3.06 71.82 15.92 87.19 84.40 90.27 45.29 58.51 42.85 87.19 66.07 20.80 2.73 55.96 1.88 52.49 24.77 83.83 55.05 21.53 75.93 68.41 0.67 25.51 49.16 10.78 11.33 70.99 76.93 20.43 28.18 50.03 3.07 67.38 77.61 27.24 29.26 84.50 68.77 45.48 91.13 58.10 45.31 54.16 25.65 35.38 -94.06 93.03 92.65 58.72 53.98 34.05 90.69 41.84 19.93 48.40 28.90 73.36 62.25 82.24 83.38 16.09 85.76 83.07 21.65 8.11 66.30 86.91 18.60 14.53 19.75 71.27 94.35 80.54 37.85 32.98 47.28 46.82 50.75 78.49 28.60 98.13 10.30 16.40 97.11 77.13 44.98 0.40 64.05 74.08 89.29 0.18 16.37 3.83 61.44 70.77 77.21 50.66 77.75 39.09 73.83 37.16 75.16 10.72 34.24 78.36 19.54 42.68 28.38 56.63 14.46 32.35 39.19 21.86 55.17 59.09 28.06 0.80 22.01 85.34 30.28 94.11 45.12 50.20 41.00 19.91 47.82 23.27 32.45 66.08 89.82 73.48 50.62 15.98 2.70 32.55 21.16 65.41 81.66 71.37 57.59 40.29 99.69 67.21 0.22 64.57 -57.09 90.39 39.17 76.75 86.28 10.65 51.08 20.94 64.72 55.71 4.12 56.65 99.32 30.32 20.66 17.18 89.55 36.66 65.41 55.03 64.32 33.59 35.92 16.12 58.31 8.79 25.96 63.17 4.42 55.93 45.71 74.81 8.07 42.05 80.73 89.74 35.21 24.40 63.79 72.79 53.88 49.12 90.00 65.02 41.09 49.84 8.63 35.91 48.84 32.39 85.69 65.77 80.88 3.67 92.07 10.25 73.62 99.26 19.30 37.90 65.19 59.25 39.05 27.48 21.92 33.28 94.48 16.42 82.60 56.92 86.15 10.24 21.48 62.68 37.21 18.24 79.81 43.27 19.62 51.89 13.96 19.42 11.17 30.25 81.06 27.08 39.68 44.46 13.09 43.53 70.89 78.08 56.38 84.87 46.81 15.30 50.61 5.90 9.86 10.82 -1.26 16.49 36.35 60.91 50.33 11.85 55.55 93.11 17.07 56.86 42.29 46.92 78.12 55.82 32.14 83.12 49.06 45.75 10.82 24.49 95.25 33.61 58.41 73.78 7.86 53.40 8.83 77.77 16.64 1.75 96.88 96.17 30.49 8.91 22.00 35.34 49.76 4.22 79.36 86.18 34.95 16.85 66.62 2.50 43.67 15.89 37.32 71.33 6.73 64.63 12.68 10.80 12.30 50.83 86.67 28.10 56.22 27.02 98.93 52.89 56.42 79.53 26.81 38.79 57.49 83.88 64.71 69.84 26.87 43.33 19.82 53.43 89.54 60.67 65.96 93.86 0.42 98.72 96.91 6.27 62.13 65.91 61.38 69.30 49.01 95.59 41.12 59.40 70.74 88.01 11.95 0.59 59.95 11.55 77.48 62.02 10.23 84.12 36.56 97.73 -17.57 11.93 41.89 59.88 75.97 60.49 44.10 61.43 51.84 38.26 29.75 65.76 6.65 39.84 31.13 85.49 91.87 80.27 15.42 58.53 86.55 30.14 78.28 56.97 51.16 48.14 7.08 57.07 46.46 32.00 65.29 18.16 90.78 73.59 16.08 90.39 64.41 51.30 21.67 41.26 55.79 73.73 7.65 69.50 35.11 17.05 87.44 70.47 49.74 35.09 91.48 8.66 73.56 44.44 10.78 2.34 76.56 67.58 59.92 67.29 38.37 29.33 11.79 55.69 51.27 25.10 73.47 31.41 47.95 85.78 82.84 29.23 15.12 40.21 47.21 46.26 12.22 3.49 40.34 59.78 15.66 93.30 80.65 1.80 79.42 39.45 59.10 19.72 51.47 53.44 23.52 69.12 2.35 2.46 55.64 17.02 29.97 99.40 66.94 19.19 -94.05 46.60 16.33 39.76 30.89 50.09 15.37 30.00 61.92 62.31 96.95 41.56 92.03 87.01 70.14 28.65 32.49 13.93 14.44 88.23 84.52 14.67 36.13 99.37 41.85 91.46 23.24 19.41 37.88 37.62 82.17 0.78 27.64 3.81 69.74 79.93 20.17 39.83 88.91 6.24 46.02 76.07 34.71 42.63 98.03 14.22 99.36 26.19 64.54 83.06 70.28 68.62 97.30 23.00 25.60 54.58 94.45 57.08 20.19 10.43 25.75 53.06 12.69 63.35 62.02 63.58 94.37 47.56 75.02 21.49 30.93 30.82 33.37 53.50 41.63 20.56 94.66 84.41 98.43 6.04 85.50 8.79 81.46 63.34 84.84 54.22 86.61 54.57 24.19 97.95 25.87 89.04 98.86 90.42 41.84 55.58 74.83 95.06 72.13 59.73 -97.62 57.55 55.38 48.59 86.07 14.21 85.27 71.62 83.93 8.89 68.93 59.11 13.97 13.90 55.41 17.06 83.76 99.46 45.78 56.23 55.14 8.29 69.08 61.72 39.33 32.86 78.70 60.61 48.70 44.80 95.18 86.11 13.57 11.22 59.93 4.82 97.60 88.23 27.09 18.61 65.66 23.88 34.14 61.72 35.23 80.99 84.91 61.53 82.62 36.49 37.42 32.58 87.73 63.08 83.75 18.71 40.16 65.68 43.92 68.91 3.57 35.88 66.78 3.27 56.47 9.18 34.99 89.53 28.45 50.26 92.25 75.23 20.49 1.92 8.90 45.95 24.39 10.11 42.88 74.84 66.29 69.02 99.84 90.19 80.62 72.68 78.63 94.58 92.21 75.48 45.32 84.11 74.75 70.99 4.57 99.08 29.31 59.50 74.96 80.73 -75.80 80.83 90.33 84.38 89.91 27.94 93.16 76.37 70.13 82.20 45.62 86.62 73.01 85.25 77.04 16.67 32.38 0.23 51.88 69.87 6.19 68.47 37.20 51.71 15.23 95.55 69.59 8.52 84.55 55.99 49.73 77.14 96.60 31.98 84.99 46.52 80.48 42.10 82.03 86.66 61.33 38.06 85.77 36.14 42.43 75.36 21.19 20.37 29.12 43.56 25.42 39.18 96.18 77.60 70.13 99.96 60.73 47.14 88.59 26.67 89.06 7.06 79.61 6.22 61.79 93.59 24.13 49.59 13.81 86.89 72.33 85.59 65.89 61.81 48.58 77.13 46.81 86.88 69.32 42.57 50.74 21.19 88.73 75.58 24.97 32.85 32.98 94.23 78.05 83.52 84.77 93.41 52.59 66.28 37.79 60.89 79.05 73.46 96.41 57.21 -64.41 78.87 8.19 0.65 39.60 33.03 85.45 39.78 75.62 77.25 8.79 58.04 46.05 34.12 69.57 13.66 21.26 41.46 81.81 69.47 3.09 30.11 43.30 88.23 75.41 73.67 20.26 90.37 3.69 82.52 51.43 61.01 26.13 2.08 87.79 62.52 57.67 80.80 63.62 90.16 75.62 78.87 8.43 74.23 70.48 97.86 89.27 29.99 59.27 66.58 9.00 72.30 97.79 79.30 82.44 81.28 84.09 59.70 63.30 98.93 68.99 52.11 43.57 62.81 93.95 12.43 45.91 68.04 34.00 92.75 42.29 29.28 52.16 2.08 36.06 57.52 30.39 87.10 32.38 87.04 55.07 73.25 22.15 68.28 92.11 22.51 4.82 98.04 1.29 7.71 0.20 52.05 92.13 73.86 67.20 53.49 74.04 83.44 41.01 5.28 -7.90 56.53 89.33 31.67 88.59 38.01 49.50 36.80 30.30 76.88 57.16 16.92 52.28 61.36 33.36 48.15 1.95 98.99 38.09 62.67 40.12 98.71 74.81 38.99 80.76 11.38 50.62 68.49 67.59 20.27 74.25 69.61 46.11 41.32 35.79 36.41 41.30 85.93 87.25 77.45 13.42 44.96 4.32 56.93 33.33 7.02 84.40 20.56 86.43 93.50 18.94 31.65 9.31 86.20 73.55 22.24 76.12 84.89 0.72 19.61 5.82 82.96 83.50 72.61 13.20 3.96 45.81 95.78 46.31 50.64 32.92 89.18 21.93 33.93 29.52 64.98 51.05 78.34 75.64 76.31 32.53 87.68 83.48 16.82 76.54 18.74 47.34 31.42 52.00 16.15 68.81 6.33 32.45 8.76 12.87 90.86 9.63 0.60 30.44 2.04 -24.53 39.39 91.32 48.34 47.05 49.27 70.60 84.93 3.97 84.18 57.79 42.09 1.63 72.74 19.75 22.23 25.89 15.60 39.49 30.45 40.08 40.94 17.99 26.46 95.40 31.93 38.70 59.24 2.24 27.20 83.94 40.02 75.82 19.46 9.65 72.43 60.90 38.13 1.65 52.13 72.14 77.45 33.09 4.13 38.46 97.49 96.04 40.19 53.33 70.12 41.65 6.59 74.01 93.60 54.14 87.60 14.80 91.07 88.69 96.37 70.95 10.69 44.37 42.22 81.98 77.18 88.50 61.88 60.96 11.34 40.94 6.73 17.55 14.00 75.03 37.39 67.53 46.44 79.14 26.81 40.80 15.82 88.60 97.58 57.72 41.54 7.15 78.12 55.16 40.38 1.03 94.24 88.01 81.60 78.47 20.19 17.73 94.29 57.03 60.10 -18.67 93.18 96.20 12.52 74.37 97.24 17.53 5.40 32.09 71.60 9.15 76.26 64.39 18.32 78.42 23.87 15.41 45.12 56.41 34.25 99.29 73.81 65.90 94.74 32.30 93.31 95.63 87.31 78.71 76.25 91.03 74.99 8.09 11.20 80.87 9.97 80.58 48.42 81.14 61.10 6.78 69.08 21.54 60.76 0.71 60.96 35.96 49.40 54.35 74.94 24.02 66.77 56.65 88.42 47.70 0.77 62.35 44.33 64.59 14.40 85.77 46.73 79.87 67.06 37.30 15.30 6.01 85.94 18.60 39.89 24.14 37.75 58.38 80.08 48.45 84.85 22.72 74.42 56.08 26.92 61.04 48.23 14.38 54.57 27.94 50.55 17.32 80.20 62.27 40.75 83.37 39.67 23.86 11.31 46.80 42.41 14.85 33.05 49.42 92.41 -45.15 96.07 31.67 70.40 59.22 17.71 24.11 71.79 67.63 69.81 52.17 4.48 97.13 57.80 83.24 68.60 23.10 44.38 10.91 39.86 66.04 57.13 95.17 39.51 11.51 24.18 70.12 4.27 19.31 0.57 69.49 36.61 4.40 20.52 24.37 5.66 44.09 98.26 23.60 52.12 57.17 72.46 57.55 68.44 84.38 33.71 26.57 78.36 52.83 83.80 89.00 41.94 87.52 87.44 68.85 42.27 5.75 42.95 95.93 30.17 14.76 35.05 20.80 53.00 57.67 17.49 90.93 53.12 75.02 80.63 30.47 49.09 47.85 94.22 10.78 61.96 38.02 5.22 46.16 68.88 78.72 23.84 14.74 47.99 41.61 38.55 29.31 11.87 79.86 33.59 2.83 60.74 97.23 8.25 61.98 29.90 83.82 78.17 13.92 75.45 -39.43 62.06 15.63 68.18 24.38 82.01 34.01 0.17 55.28 79.87 56.61 38.99 2.26 38.54 23.63 41.16 47.57 59.34 40.90 55.26 25.80 75.25 78.68 25.77 38.98 64.21 66.83 8.45 46.08 75.73 51.39 55.01 91.65 48.45 82.87 41.18 61.08 42.82 0.06 16.02 61.97 98.75 38.06 0.57 77.92 19.31 3.03 68.90 36.88 12.36 99.36 0.75 14.15 67.60 31.63 56.03 72.28 20.99 94.81 87.13 20.04 70.50 22.42 22.85 99.39 46.41 74.08 97.89 56.97 3.91 70.92 16.99 58.47 25.29 83.83 31.81 56.09 68.41 10.40 4.97 68.65 81.52 95.74 51.84 3.06 71.07 21.07 90.91 36.87 0.33 36.96 63.95 42.75 11.03 64.33 34.21 42.54 81.51 24.51 13.44 -45.24 91.25 79.76 83.24 9.74 75.33 81.00 15.30 74.79 84.34 4.64 57.38 84.19 41.30 71.90 34.63 77.86 11.39 98.63 19.74 58.92 39.69 23.67 40.38 57.41 80.78 7.91 8.25 53.10 9.63 63.93 33.38 74.73 29.23 11.42 60.67 99.19 41.65 93.02 5.01 67.96 38.42 22.38 42.69 92.01 32.68 5.14 36.59 59.80 82.94 83.91 97.88 48.17 69.01 88.12 1.83 53.01 19.32 97.87 25.68 40.96 68.74 45.31 77.70 17.35 38.75 94.33 5.22 22.61 57.05 90.81 28.07 60.89 61.95 26.95 40.80 48.34 39.73 56.55 72.84 74.51 92.94 42.44 88.08 99.00 60.98 55.93 79.17 73.27 37.27 45.00 42.28 69.78 51.18 50.27 43.10 33.52 50.27 15.97 46.49 -80.63 22.98 77.02 78.18 26.17 56.21 12.09 56.13 49.41 1.26 56.57 24.38 61.09 8.00 61.91 68.88 69.06 29.76 50.81 21.74 28.68 98.03 19.28 75.13 65.53 3.03 84.85 75.94 95.45 98.82 33.72 98.94 92.50 22.72 78.03 68.51 67.71 83.50 87.40 85.67 59.07 83.90 17.86 55.75 21.88 41.32 41.13 71.25 22.78 2.00 99.64 83.49 60.79 20.99 34.78 64.12 99.74 95.13 98.77 56.57 0.08 48.13 72.66 86.64 90.61 3.85 29.85 58.57 39.74 28.07 31.24 95.06 34.49 73.26 75.46 80.29 39.49 41.91 13.75 62.36 36.59 77.63 17.70 95.41 87.36 77.73 99.55 75.72 21.22 34.55 73.73 59.05 60.34 50.18 80.78 17.82 42.84 1.47 9.54 73.84 -65.18 26.02 40.82 56.65 40.19 8.07 58.18 85.64 23.04 68.44 23.85 5.08 54.00 91.49 16.20 94.57 75.72 50.42 27.45 82.67 38.67 77.98 10.55 1.34 29.01 12.41 15.43 41.63 34.59 96.54 28.13 73.18 89.70 68.75 58.40 21.10 67.50 80.59 56.87 46.44 94.62 36.97 14.78 57.77 33.99 24.86 82.25 57.77 17.45 33.14 95.45 76.01 4.74 63.38 81.96 56.77 48.12 61.72 28.85 6.35 21.68 56.91 56.01 82.57 54.56 99.42 53.94 60.71 36.02 81.19 26.83 98.93 5.48 96.78 12.82 57.51 69.98 87.26 66.56 76.23 15.08 10.20 93.70 47.26 16.38 25.17 17.33 48.97 73.72 8.25 89.81 13.56 55.28 69.20 15.24 43.65 54.13 83.13 31.38 8.57 -86.19 90.13 39.99 43.17 40.76 3.23 60.51 81.23 63.87 43.57 74.95 78.80 86.93 53.12 80.80 26.65 3.54 85.85 23.01 97.42 49.24 47.92 28.45 47.40 20.85 58.08 68.04 9.95 70.60 31.62 46.86 19.03 2.70 34.19 33.65 53.87 4.10 0.67 19.75 15.10 61.37 38.13 93.18 65.64 6.87 71.96 22.38 78.39 39.09 16.05 52.03 99.80 45.89 10.12 82.56 50.77 59.81 58.86 85.76 74.03 82.87 55.83 21.04 94.83 56.21 50.67 75.89 4.26 76.77 73.52 69.04 11.40 80.89 2.59 38.36 12.99 48.53 72.76 69.43 47.47 4.27 10.73 7.50 32.04 57.37 58.70 59.41 92.48 69.77 96.42 49.57 43.15 49.67 78.86 33.98 5.38 58.48 30.20 35.52 1.83 -84.57 17.47 62.36 91.08 0.26 29.43 10.32 83.35 98.26 33.72 0.34 9.73 13.49 19.99 79.28 52.35 10.29 60.84 48.11 31.69 20.90 55.41 32.20 82.96 45.98 21.47 68.29 45.73 46.49 83.59 36.44 54.80 3.47 43.14 66.55 6.10 95.53 50.77 74.99 78.02 15.79 79.15 11.03 84.56 1.50 90.07 12.78 97.36 33.43 89.85 94.40 55.86 50.18 39.27 49.50 69.82 89.63 42.96 64.18 56.24 0.77 59.24 21.97 72.67 21.67 12.13 12.60 1.46 27.38 47.47 89.21 78.20 2.68 53.34 92.06 75.36 27.14 72.60 81.76 29.65 47.91 69.15 37.07 36.74 20.63 13.57 57.09 53.58 55.63 23.07 26.42 43.17 68.12 38.63 18.38 90.51 65.12 29.00 68.57 29.43 -42.56 49.84 7.67 54.05 35.44 13.29 20.10 32.38 16.47 44.77 52.30 6.30 45.72 65.60 82.09 49.52 72.75 46.10 85.13 27.04 76.38 86.25 28.99 15.06 30.84 11.94 97.43 36.32 84.68 7.73 43.07 95.28 30.53 86.20 96.22 37.06 25.00 35.25 4.22 64.41 21.08 69.38 45.95 97.38 47.73 29.95 71.89 85.83 1.43 6.93 28.94 69.25 69.64 77.10 45.04 34.14 49.06 75.43 18.68 40.44 62.42 13.49 29.88 80.64 68.81 28.43 76.52 70.87 4.47 23.68 71.45 34.92 30.35 0.80 0.95 66.94 44.24 96.98 74.16 46.17 63.89 82.23 45.01 31.77 27.80 10.15 62.19 65.07 40.71 55.20 25.28 68.36 54.20 73.95 19.00 39.28 86.31 59.43 61.62 43.65 -71.67 39.63 4.76 50.82 11.99 74.88 81.22 69.60 7.65 70.31 84.23 9.92 58.50 34.18 86.76 17.46 30.88 83.36 91.01 25.50 85.01 81.63 24.45 50.11 55.52 25.77 42.08 97.55 32.63 7.16 53.90 8.38 78.95 96.32 98.89 97.86 89.16 84.90 85.31 74.26 44.06 25.29 37.40 30.69 12.35 26.67 31.51 83.67 98.48 85.37 68.95 70.50 19.70 98.73 30.67 70.79 15.64 92.79 24.22 10.40 6.42 21.23 57.36 10.76 79.93 56.54 75.20 0.89 82.06 52.07 30.46 5.92 90.93 84.27 87.87 81.15 48.88 48.45 80.70 6.52 47.56 34.93 50.93 13.63 93.18 22.33 64.57 13.29 18.93 97.82 72.18 61.76 73.60 31.47 67.39 73.90 65.62 70.03 9.82 97.94 -33.11 70.64 83.58 9.47 23.30 91.95 45.58 93.63 23.28 71.19 56.73 5.64 17.25 88.13 84.15 31.76 3.01 66.45 89.75 43.87 16.98 37.26 75.35 68.85 12.87 3.71 69.75 72.45 15.67 2.36 57.83 47.53 90.24 37.12 77.34 89.15 61.54 89.47 26.49 14.10 96.41 58.46 0.78 87.40 70.94 6.08 98.84 10.08 4.31 80.11 44.60 60.89 1.90 93.72 30.96 41.44 81.63 80.87 30.62 24.80 43.71 10.40 47.49 60.97 48.18 3.88 99.44 1.28 16.99 92.02 85.62 42.91 40.37 66.92 6.75 44.94 8.32 97.39 88.94 7.12 19.64 73.35 68.15 68.86 21.46 99.52 37.67 64.32 65.96 57.54 73.37 33.58 48.01 9.30 17.01 42.91 94.05 32.69 61.58 35.57 -23.20 1.58 77.60 36.34 67.98 56.16 43.63 69.78 60.83 18.69 41.91 97.91 72.35 36.78 7.01 76.82 51.78 81.11 84.47 48.09 5.04 55.80 89.58 79.65 97.24 54.43 76.63 60.54 97.96 62.71 62.58 46.78 80.76 59.85 57.72 13.61 31.07 79.92 12.66 85.87 78.56 8.08 66.59 27.85 50.01 50.30 38.73 26.13 67.53 45.59 90.23 57.42 30.11 5.46 95.74 70.45 7.14 53.56 47.94 85.75 77.13 28.23 89.65 72.78 13.25 93.60 72.60 69.68 40.38 16.23 43.49 74.33 16.19 33.35 92.74 67.17 18.30 39.56 44.51 62.44 52.28 87.26 3.42 5.36 63.41 62.41 55.90 73.72 51.43 27.14 11.43 24.88 78.34 71.40 10.81 96.29 37.53 41.36 10.26 73.38 -41.80 21.55 19.54 31.24 49.52 36.78 79.04 79.34 63.72 14.60 26.99 30.70 86.64 92.98 20.69 15.97 35.30 33.52 92.25 98.64 83.76 67.79 91.75 2.08 49.27 63.68 22.43 40.83 89.01 49.53 73.87 91.79 77.64 57.81 94.36 48.91 11.59 73.45 77.63 19.80 65.47 92.53 19.62 67.58 35.67 83.03 42.41 22.43 48.45 46.19 89.28 71.21 53.10 3.67 33.44 12.66 26.19 43.58 86.39 59.94 53.57 70.34 90.39 33.29 41.37 42.24 33.81 99.44 46.73 11.83 25.64 74.98 89.35 84.78 73.18 35.67 70.57 6.99 57.99 64.16 26.69 59.37 24.62 53.92 8.84 80.99 92.09 87.03 23.35 19.93 24.70 49.66 99.13 27.82 20.38 92.18 4.10 73.69 24.43 37.94 -20.88 29.95 96.22 66.00 27.79 29.55 66.48 68.00 66.56 62.04 7.36 20.79 55.16 99.87 13.95 69.26 1.47 48.62 62.84 66.02 86.13 60.12 77.16 86.77 64.65 51.01 72.65 62.98 18.02 99.07 23.79 50.64 50.58 52.43 81.26 65.27 31.83 1.56 0.38 6.75 55.77 8.26 57.33 8.00 99.32 97.64 92.86 15.81 48.35 48.43 92.08 44.70 96.12 9.25 89.13 71.76 38.02 99.74 25.34 56.20 71.92 43.67 55.52 75.36 86.60 44.06 80.45 36.42 49.93 87.93 44.91 59.85 17.73 6.10 26.49 78.49 78.27 55.40 67.11 32.74 82.45 38.77 66.02 9.75 81.50 80.04 58.16 47.75 71.33 1.16 36.17 75.93 3.73 4.55 43.54 3.79 90.06 38.96 21.68 28.22 -18.01 54.06 80.59 39.10 79.45 61.25 22.00 96.96 54.73 58.39 8.35 5.05 72.70 41.55 89.06 88.18 67.26 31.24 36.23 0.80 60.19 2.70 9.70 47.93 47.75 50.73 34.05 71.28 69.03 56.58 51.83 42.52 44.29 20.67 6.89 99.02 78.24 35.75 88.80 99.07 55.30 18.51 59.16 1.23 4.58 80.54 3.50 33.21 76.15 91.59 88.70 40.99 68.80 41.44 61.32 56.83 69.42 99.12 37.38 13.53 73.39 2.65 85.27 76.33 34.99 56.32 73.57 53.35 28.07 72.31 41.55 23.68 58.11 60.77 96.59 99.11 67.45 64.11 54.48 53.89 6.88 56.32 0.86 7.39 66.37 83.24 72.90 49.26 3.27 60.69 41.19 68.03 76.28 13.72 38.50 37.37 96.46 6.51 54.79 82.73 -49.45 49.95 61.87 9.59 35.64 45.66 23.22 72.73 78.29 88.38 62.72 7.58 13.30 1.65 28.56 19.56 56.77 37.33 27.77 56.10 40.73 18.74 45.26 7.96 84.99 97.67 94.01 49.91 43.74 3.10 72.27 95.80 34.06 14.48 10.87 8.87 53.94 92.45 43.34 56.18 70.11 33.50 81.38 24.21 89.42 30.80 96.57 47.07 91.90 96.57 23.70 34.35 43.88 27.74 52.44 38.16 35.57 89.52 3.42 46.05 68.22 32.87 26.64 25.85 84.30 71.66 22.25 61.28 51.19 35.20 27.43 41.64 38.25 29.16 39.74 84.41 9.67 51.73 22.48 92.26 78.78 67.84 64.62 37.40 55.43 48.58 83.56 89.31 53.06 18.37 27.49 82.10 78.84 5.03 90.96 61.31 10.27 51.68 52.11 16.15 -13.01 85.93 23.90 95.90 97.89 80.67 62.20 86.89 59.97 25.94 79.44 55.29 44.36 6.16 91.21 57.77 58.44 53.98 82.30 32.79 59.40 77.16 69.51 18.51 42.07 88.86 29.91 99.28 94.40 81.43 75.44 0.51 63.09 93.00 59.08 73.84 35.43 27.45 12.93 16.30 90.03 83.17 94.51 29.79 58.02 68.13 16.18 86.53 88.48 47.96 65.79 95.50 62.32 7.19 35.57 20.52 87.23 66.01 83.34 40.40 40.69 1.37 56.87 69.73 25.43 58.30 27.79 66.38 11.83 21.84 24.06 82.83 11.94 62.88 91.60 98.22 5.53 13.80 78.71 42.68 95.67 11.90 88.84 93.73 70.39 32.27 22.64 68.59 84.05 93.76 34.20 90.79 30.63 37.43 59.53 73.97 56.15 45.07 71.49 37.34 -33.53 4.40 96.49 81.10 79.71 45.36 8.97 61.27 96.24 29.68 65.74 66.36 10.91 47.72 86.62 31.62 2.95 48.51 71.92 12.36 24.82 67.04 97.18 30.13 33.32 9.83 34.85 32.60 44.90 89.02 30.06 44.87 31.16 84.61 22.75 6.66 71.63 26.33 35.00 19.50 91.31 75.59 29.24 24.09 96.33 40.77 6.67 86.90 24.66 80.68 82.66 76.20 25.31 22.72 4.39 97.75 61.24 84.11 14.78 13.24 54.37 94.22 41.52 90.71 48.88 14.60 8.11 50.97 77.74 8.61 32.15 1.05 44.62 87.10 31.27 12.83 26.17 20.85 7.05 35.52 28.60 58.70 24.31 83.29 7.34 46.34 34.37 47.98 59.08 22.09 82.42 94.55 46.65 6.39 33.90 73.75 26.82 85.78 2.37 58.10 -27.76 54.73 61.18 62.67 40.86 12.88 12.53 45.43 0.43 35.67 52.65 81.02 53.79 67.86 7.06 23.41 50.06 94.90 70.31 51.70 58.29 53.26 83.98 34.76 77.57 35.80 49.84 56.74 41.93 80.44 97.14 36.16 3.94 18.87 20.29 85.47 9.02 50.41 38.73 45.92 44.71 97.72 68.18 37.87 69.50 78.09 51.73 28.82 91.56 59.45 94.34 24.07 55.88 27.13 56.50 63.64 22.28 13.38 83.24 10.58 93.43 98.43 79.91 3.14 58.49 95.02 93.67 4.12 82.05 18.22 31.03 41.61 6.25 88.39 96.20 63.68 25.92 85.75 42.56 49.08 50.19 70.09 23.57 87.78 56.58 57.91 28.85 32.77 94.02 97.02 21.43 54.00 42.29 40.43 58.89 91.04 92.71 8.78 63.73 10.94 -60.99 68.01 1.19 67.89 23.21 58.25 70.66 74.59 93.59 57.21 84.19 6.31 15.15 8.57 25.18 43.38 43.74 98.45 16.31 65.42 75.58 12.23 8.34 29.09 45.96 67.06 24.58 68.26 7.65 40.56 52.67 95.33 21.52 12.06 91.47 41.16 7.70 6.60 99.13 49.22 90.16 12.60 35.06 50.50 22.78 94.21 9.17 42.27 93.91 90.50 34.97 88.76 35.45 11.68 23.54 45.36 40.81 31.60 72.36 62.41 53.95 80.54 92.95 31.21 83.60 54.00 81.71 95.76 77.18 93.14 99.88 6.35 92.35 97.25 48.35 38.62 58.29 99.55 70.12 36.45 4.18 53.98 91.33 85.30 22.45 25.47 4.28 94.23 81.90 97.14 34.51 62.91 48.12 59.92 69.92 20.99 80.65 27.69 68.28 47.71 -13.40 60.17 39.78 97.66 54.20 5.62 61.97 46.97 58.22 50.10 75.31 7.85 96.84 65.79 33.80 36.49 93.61 71.01 31.84 88.32 53.98 53.06 51.00 7.17 27.15 10.41 51.24 18.09 12.43 2.25 69.83 87.51 56.03 95.83 24.07 95.67 26.72 14.16 82.34 18.32 97.41 11.49 77.83 86.47 18.20 1.16 76.14 10.44 49.83 8.29 56.29 57.49 93.23 40.38 12.96 87.23 50.75 25.48 89.85 89.51 31.13 59.21 99.93 43.94 39.24 30.60 43.30 93.78 79.01 4.01 32.55 42.62 91.22 68.66 8.94 15.20 67.44 49.69 19.56 64.54 56.56 98.08 77.92 33.85 78.01 30.93 17.75 4.75 86.27 88.23 51.84 9.02 30.38 22.83 51.43 59.15 69.96 71.93 41.63 42.63 -1.83 90.50 30.02 71.22 50.87 48.04 83.14 61.65 14.76 38.08 25.26 71.42 32.48 43.32 85.62 81.69 78.89 34.40 4.53 53.51 65.20 12.19 93.00 80.09 98.10 82.53 68.99 23.75 79.01 92.83 42.23 54.84 58.80 14.75 70.37 79.26 79.07 1.18 27.09 94.16 78.93 9.54 28.47 34.21 77.79 81.28 89.50 50.53 94.28 43.29 1.65 99.48 91.13 36.85 12.25 44.90 73.17 91.96 88.40 68.89 22.54 51.73 5.04 71.55 96.68 11.78 19.15 18.08 94.47 81.12 51.83 97.89 45.73 24.75 83.35 51.02 11.61 95.98 96.39 71.21 45.67 59.49 57.78 93.82 15.48 51.41 38.96 31.85 23.74 21.28 91.03 45.67 0.94 73.23 47.03 98.78 10.70 76.54 7.59 51.54 -84.80 38.44 60.48 38.81 55.87 86.59 49.03 70.36 73.36 18.29 81.08 13.19 66.10 82.52 88.03 21.69 6.87 11.83 51.52 74.65 48.74 7.21 51.19 50.62 70.80 19.75 92.96 99.03 24.73 38.26 46.77 34.37 84.57 93.22 48.87 0.53 27.26 70.19 56.32 99.41 66.18 93.19 61.53 4.59 79.53 55.39 90.72 67.29 98.32 34.49 94.00 79.45 75.96 92.51 71.40 49.72 67.62 93.60 67.20 38.89 8.73 53.42 17.73 74.43 61.87 88.50 17.35 34.14 18.91 94.25 86.71 52.33 24.05 46.08 77.42 53.95 63.90 14.29 49.34 35.90 55.48 49.90 85.23 66.14 26.35 56.31 44.66 42.42 10.12 88.78 22.21 41.02 51.46 91.95 93.43 42.44 40.29 4.08 50.29 19.72 -5.95 70.22 29.26 56.24 98.91 48.85 81.71 51.84 45.47 25.02 73.25 39.19 68.54 92.23 43.86 97.46 33.24 8.34 8.81 38.81 5.62 12.12 94.85 31.93 38.76 87.37 19.82 9.18 98.85 39.70 87.42 89.13 34.15 13.64 22.39 53.35 30.30 89.95 32.45 17.18 98.34 47.98 97.12 71.19 64.60 32.26 36.16 63.57 69.26 40.59 98.40 6.53 84.22 15.44 88.06 48.68 93.62 94.03 74.87 30.92 57.37 66.19 78.08 6.15 21.70 76.46 9.26 36.79 47.68 50.42 36.79 27.58 93.21 11.93 8.04 67.26 89.97 21.70 64.32 15.48 32.77 46.58 22.31 99.21 84.14 0.37 21.22 36.58 57.36 95.90 86.30 9.41 71.17 36.79 93.71 0.79 43.22 18.79 47.61 11.60 -11.59 63.50 40.51 39.55 11.34 44.18 49.20 25.60 28.47 45.48 60.94 28.84 32.33 33.77 98.50 60.38 31.62 10.85 62.69 90.15 54.25 70.89 23.27 71.37 78.05 91.15 96.79 68.53 22.37 17.98 1.96 78.63 70.70 69.27 56.66 38.76 20.39 76.40 18.89 74.26 46.37 45.96 23.95 91.61 86.78 63.50 8.57 28.01 63.77 93.12 13.86 64.94 87.75 80.73 83.86 16.36 77.94 51.77 48.69 50.92 5.37 57.27 58.27 22.13 46.55 0.50 7.27 3.31 71.96 63.95 68.23 77.34 68.17 26.31 92.82 13.84 36.15 49.15 2.01 56.79 37.17 91.65 62.98 12.32 95.65 36.18 86.45 8.62 52.95 56.47 80.54 84.02 16.77 46.57 91.46 75.74 12.97 20.44 94.58 1.22 -32.37 78.04 65.07 23.46 74.79 43.82 86.08 43.57 68.58 41.92 20.58 4.37 55.33 14.42 41.59 89.82 14.79 34.61 29.98 49.78 31.47 44.25 98.10 89.61 8.15 42.20 29.03 47.63 24.11 11.85 15.09 19.91 56.46 86.13 68.56 63.62 61.95 81.16 25.50 92.31 84.22 64.10 25.32 47.96 52.68 32.79 7.23 12.66 41.79 29.30 80.80 16.27 2.35 39.89 10.19 36.03 18.39 14.42 95.34 8.47 55.95 53.51 84.35 21.76 3.07 7.08 41.14 46.87 30.33 49.41 31.57 61.57 53.20 66.00 57.37 47.94 84.65 97.00 67.81 74.98 9.84 75.67 79.89 51.45 11.10 63.54 13.96 95.10 57.48 33.21 37.87 41.26 23.57 76.61 94.16 64.64 36.52 42.04 19.95 58.73 -32.88 8.55 35.08 59.22 85.36 11.55 63.80 21.43 84.48 4.77 23.60 96.58 55.02 32.63 97.44 43.54 50.53 32.64 57.41 42.34 40.45 16.58 86.58 64.42 92.39 70.43 62.94 13.37 40.16 55.08 58.10 32.02 59.08 94.44 35.88 46.72 9.17 13.45 35.25 51.70 46.69 87.33 32.22 48.61 57.60 44.66 62.82 94.44 41.66 78.32 50.90 11.79 56.03 26.36 59.86 52.91 67.28 11.16 42.07 2.77 88.74 80.99 98.71 22.85 53.61 6.06 81.81 1.04 57.82 85.49 32.90 45.27 44.80 12.38 48.93 22.98 96.35 48.46 77.68 41.01 65.74 71.70 77.32 55.11 76.72 63.20 40.77 9.95 22.24 89.26 23.17 7.97 52.94 37.31 11.24 49.42 29.00 58.24 91.83 58.79 -42.38 51.93 90.03 51.59 38.91 11.17 40.59 4.98 40.40 15.77 93.13 74.58 94.20 52.62 57.45 32.04 12.18 65.84 54.21 15.99 52.55 92.56 33.59 29.95 62.11 9.29 54.40 84.92 45.75 60.99 29.16 31.40 50.87 63.09 30.45 66.48 87.92 88.46 73.43 1.95 48.48 30.45 86.07 71.73 17.66 71.14 30.03 70.71 77.02 90.76 89.39 15.78 90.53 96.62 55.98 87.91 38.81 24.64 77.96 48.86 95.17 88.37 84.23 23.47 34.31 97.55 92.05 75.27 41.56 71.11 5.34 35.91 14.73 29.85 88.81 59.36 96.81 92.24 17.65 95.20 20.27 26.76 33.64 16.96 25.16 74.66 81.01 15.72 29.33 43.55 84.67 45.18 73.30 96.06 19.39 48.90 62.57 52.75 75.16 63.78 -95.79 54.13 37.32 12.77 50.69 45.23 78.12 14.49 30.48 65.34 72.28 92.46 1.41 0.20 87.91 74.06 99.44 9.13 78.53 41.44 81.04 59.14 40.69 48.47 45.55 55.76 64.32 4.04 66.92 24.21 86.46 59.05 8.16 62.02 55.51 1.92 74.06 76.18 87.47 40.31 60.19 9.19 83.72 65.86 75.93 27.72 91.97 20.58 61.19 45.96 54.20 42.27 4.41 58.44 51.80 91.85 18.45 56.81 3.29 96.93 9.48 59.46 29.37 18.45 19.47 56.05 2.66 56.70 90.48 24.88 0.51 26.63 36.92 82.80 57.39 55.43 24.86 20.94 76.63 17.40 15.35 84.87 71.20 7.24 58.43 17.21 5.42 31.70 54.65 4.95 66.19 42.07 83.99 69.49 82.05 36.38 65.89 31.49 90.81 89.45 -9.82 27.42 9.70 10.00 36.94 25.46 30.44 50.43 41.69 55.28 1.07 62.95 15.61 81.63 44.08 70.94 91.30 95.50 30.72 79.16 10.27 76.95 75.07 55.26 12.04 49.30 96.70 28.43 90.09 86.15 92.80 97.19 39.51 87.32 8.02 2.59 59.43 73.71 2.89 12.25 19.12 11.73 96.68 54.64 40.64 35.93 74.33 84.77 82.29 79.54 52.54 57.94 19.22 67.20 60.00 59.31 78.16 73.14 25.58 96.47 31.11 71.44 58.44 90.30 39.61 58.33 73.97 15.22 43.26 43.90 58.06 49.90 82.73 44.75 81.13 63.98 90.23 62.05 48.63 43.79 96.24 8.80 51.91 36.58 0.23 77.08 37.55 11.16 34.39 25.55 1.91 6.80 71.70 79.74 99.47 29.00 1.15 7.03 81.97 28.51 -92.80 51.97 72.99 42.79 6.38 18.08 10.04 15.05 66.28 68.59 37.74 61.36 39.84 94.12 44.03 3.25 83.17 71.86 4.86 55.89 29.65 44.77 74.21 36.62 7.99 9.58 97.95 53.77 21.23 71.00 88.03 83.18 62.59 99.97 47.77 16.57 33.22 31.20 35.87 55.62 19.45 81.38 39.64 3.86 86.74 78.09 48.41 87.91 42.58 7.06 56.92 6.96 96.58 72.30 16.50 1.35 95.90 83.90 14.01 43.65 95.99 53.48 80.23 10.66 14.94 5.40 70.05 1.73 99.62 14.98 75.54 12.72 51.48 80.42 83.08 98.43 33.17 95.20 74.63 30.97 15.31 53.69 3.03 61.60 22.64 24.52 91.29 32.25 1.82 90.20 62.71 15.81 85.55 5.52 8.21 33.95 46.39 65.22 56.20 97.24 -41.74 79.43 44.38 32.75 46.25 1.20 16.12 38.07 85.33 91.82 65.21 54.27 13.36 43.19 37.70 37.95 29.82 53.67 44.74 91.32 10.51 20.64 95.34 9.27 31.63 69.97 55.11 94.16 67.01 93.76 52.03 85.35 1.81 16.64 19.72 41.14 8.22 26.68 75.63 88.35 50.12 55.62 98.77 68.59 98.32 49.60 20.81 56.92 83.91 69.30 18.78 44.92 65.26 18.12 65.54 22.15 36.74 61.96 43.38 66.39 9.88 67.27 66.11 3.29 54.75 83.85 21.38 12.88 48.99 9.74 90.30 7.19 73.37 89.73 92.31 44.60 95.25 59.17 14.28 1.63 47.54 17.19 70.73 62.38 78.70 7.40 63.92 81.73 16.30 94.21 64.89 96.10 21.16 15.90 12.73 32.67 34.54 47.14 65.66 11.86 -82.04 47.08 78.73 81.29 54.72 78.45 99.71 19.98 33.73 86.04 54.23 94.08 22.28 45.16 55.79 52.84 17.04 53.13 5.81 16.65 63.06 30.60 74.40 20.32 93.53 22.34 98.47 4.97 89.12 84.86 30.46 90.18 47.34 90.18 79.17 31.64 60.64 27.10 50.42 66.01 24.63 1.84 87.25 21.57 43.20 90.71 89.44 31.55 70.17 3.06 23.94 20.17 96.09 91.70 3.92 51.90 16.75 40.23 5.52 47.57 40.45 53.44 83.44 3.01 45.12 98.52 12.44 13.16 2.35 10.78 16.39 76.38 54.88 67.01 21.36 97.19 95.07 95.45 48.18 11.85 23.67 87.17 39.01 86.40 95.48 11.47 83.71 4.32 93.78 37.98 89.69 62.02 55.25 44.24 24.32 60.05 32.75 53.44 69.80 51.95 -99.29 38.38 21.53 32.69 42.61 93.42 38.22 63.40 40.92 14.40 40.80 15.27 61.16 24.29 51.81 15.38 40.66 61.40 6.22 97.27 19.19 86.49 32.09 18.37 42.35 2.84 85.03 37.93 38.29 52.70 32.26 14.49 31.42 27.12 91.44 54.67 85.14 65.80 57.70 19.08 46.04 77.46 96.52 76.23 93.91 26.24 15.12 18.61 27.67 56.22 89.25 93.69 81.43 44.69 2.89 59.62 5.77 28.92 67.40 8.08 58.33 19.41 67.12 15.32 34.08 70.65 1.94 51.10 83.17 22.20 51.84 12.16 5.64 66.17 10.20 48.64 44.56 15.33 65.35 25.92 54.78 1.48 83.78 19.58 4.56 22.29 67.11 50.82 86.74 63.96 42.98 29.47 65.82 23.55 93.84 3.27 83.86 58.82 26.27 68.94 -62.96 20.59 15.79 69.79 23.85 63.31 50.28 37.05 50.46 4.11 56.71 79.87 80.54 70.03 31.99 73.26 67.50 63.78 90.46 97.24 24.44 52.09 70.84 78.36 55.69 64.02 47.47 15.04 51.72 96.41 68.29 96.63 45.65 31.84 33.19 39.09 9.43 65.84 6.80 44.44 44.14 58.86 97.62 22.50 14.89 20.37 67.63 85.08 77.90 33.20 84.61 87.15 37.70 87.99 93.70 68.95 8.93 43.86 26.84 44.64 35.51 58.23 41.21 68.34 27.12 77.18 74.57 17.54 89.09 40.47 48.76 50.45 98.40 94.90 15.69 31.04 27.24 13.31 60.81 35.44 28.02 60.79 16.78 74.22 39.29 87.12 40.59 5.47 35.95 39.25 49.91 48.05 43.04 67.87 77.40 58.02 38.73 95.71 77.59 44.62 -45.12 63.44 75.60 56.68 39.53 13.02 36.45 36.16 90.85 19.13 11.57 48.92 94.40 6.44 18.06 48.41 51.28 95.26 72.42 73.46 61.84 86.71 96.72 68.51 1.60 78.33 21.57 62.78 57.24 81.38 36.59 68.52 77.33 23.06 0.05 12.14 56.86 98.84 52.66 79.75 81.75 5.79 55.41 35.43 30.50 93.56 65.73 38.92 49.01 72.71 72.77 25.83 10.35 41.83 57.82 32.51 63.69 32.90 94.07 89.46 61.64 33.02 89.07 82.37 53.55 55.80 32.95 71.64 95.04 35.98 50.20 66.49 23.37 48.99 20.25 4.96 69.68 19.13 8.36 45.55 34.48 64.65 95.92 70.94 12.11 27.83 41.83 1.03 80.70 77.34 42.72 23.64 87.90 12.26 85.37 4.77 9.11 49.77 25.14 63.68 -14.39 50.37 41.39 87.86 14.34 16.69 44.63 72.21 84.57 22.26 17.65 45.65 66.23 81.57 52.67 99.84 26.69 99.01 94.49 8.06 16.56 48.51 69.21 82.86 65.02 41.18 22.89 69.01 1.34 97.61 38.18 38.73 7.68 13.33 38.44 32.41 36.66 58.12 73.92 52.34 7.37 24.64 65.88 92.83 81.12 7.38 58.09 64.03 40.33 37.39 1.17 30.84 99.87 43.91 25.26 45.68 31.85 99.76 34.63 70.45 43.74 4.15 76.15 13.33 87.22 13.55 45.13 61.50 93.75 34.71 97.91 50.70 72.60 20.20 15.60 95.25 30.06 18.84 51.73 46.76 50.31 2.71 11.98 3.90 32.57 7.40 46.12 63.05 74.27 70.60 6.52 4.66 98.53 0.03 3.04 54.80 59.88 58.51 56.98 20.79 -35.34 30.84 10.06 96.75 51.73 35.36 48.03 97.10 55.71 79.46 95.06 23.39 55.03 4.86 88.00 99.13 54.60 54.94 53.39 96.84 57.17 94.50 14.04 34.45 4.77 40.73 64.92 92.94 49.26 24.91 27.11 52.49 59.52 28.48 82.63 25.03 43.01 9.12 86.00 32.39 36.64 75.32 67.60 70.18 40.34 45.97 94.56 6.96 0.17 95.30 21.69 24.11 58.03 37.73 63.42 83.86 52.60 41.30 40.90 11.01 67.00 76.14 43.68 59.06 41.91 31.98 81.03 89.23 61.04 33.01 20.86 53.35 27.94 41.14 80.18 40.17 91.40 44.35 39.94 72.10 69.19 29.99 64.47 97.00 2.00 34.70 54.18 85.47 30.46 94.71 33.76 42.44 52.56 96.96 51.58 99.03 55.67 28.58 48.41 8.54 -50.19 55.01 29.67 71.80 18.39 68.56 68.27 13.95 63.63 48.70 6.33 22.97 15.81 58.14 80.13 66.76 23.14 97.29 29.90 33.70 65.15 61.46 84.19 57.03 81.49 86.49 50.70 82.36 49.19 0.82 7.62 82.32 62.06 20.41 25.27 72.37 76.93 90.30 74.76 21.75 45.74 48.70 31.57 16.78 53.90 73.46 48.41 8.31 55.37 36.49 38.53 61.99 83.23 50.01 64.98 27.57 37.61 14.79 5.07 7.14 48.57 22.36 60.29 64.58 2.94 41.82 0.77 29.43 61.30 92.66 68.61 96.11 78.41 76.47 56.96 29.79 4.22 84.61 76.34 82.10 98.00 92.32 81.40 22.62 51.79 16.60 12.17 95.45 20.87 88.86 99.82 28.20 24.82 95.65 71.12 45.51 65.04 5.95 95.73 61.83 -49.60 21.35 48.15 15.83 51.90 73.69 36.54 52.92 43.38 65.16 36.90 90.07 42.26 26.79 8.66 0.57 76.66 95.94 82.46 95.23 49.24 79.06 62.13 32.91 77.63 52.84 52.29 78.83 38.70 20.36 83.58 70.18 74.17 57.71 69.43 20.36 71.90 7.71 68.86 1.41 8.09 28.74 31.66 97.10 71.57 60.13 60.21 81.25 9.24 36.34 17.52 31.02 66.37 15.08 86.02 38.34 88.07 73.45 30.09 54.15 80.12 91.55 77.34 44.85 12.17 46.45 56.56 28.81 75.09 20.98 1.61 69.26 96.35 80.74 23.77 63.21 35.79 24.00 99.59 19.00 46.66 69.83 84.85 31.45 56.72 1.21 78.55 69.22 2.96 93.08 0.18 48.25 4.29 15.71 26.41 23.36 57.78 45.68 46.58 43.27 -10.41 9.10 76.12 19.06 39.70 97.76 21.89 10.63 58.52 53.27 89.42 86.16 16.61 4.89 38.01 57.16 27.54 76.06 71.82 87.15 1.32 72.83 5.69 6.46 44.44 3.36 80.21 94.93 99.92 35.34 49.05 12.49 16.71 95.89 36.83 40.45 22.40 33.98 72.39 90.42 39.85 49.11 45.53 96.98 15.63 11.82 29.62 63.29 9.02 34.06 67.91 5.95 31.05 70.15 59.04 53.35 75.61 37.89 60.10 89.51 22.29 69.23 46.84 84.75 56.55 87.40 79.74 49.50 51.18 41.29 76.37 74.59 18.48 56.47 19.75 74.98 7.82 60.67 59.87 77.82 18.62 49.63 92.13 56.04 10.81 57.52 50.52 14.72 75.64 46.51 15.72 30.43 64.68 3.20 27.64 22.31 21.36 98.17 29.48 93.76 -86.15 26.17 76.96 68.58 68.43 5.30 76.69 5.51 0.80 99.12 20.70 14.10 13.00 2.71 94.46 42.64 61.08 97.33 70.51 5.56 50.20 65.28 67.05 0.80 48.39 94.04 98.51 57.37 59.37 66.14 77.37 12.94 5.41 63.07 58.02 30.26 85.60 50.43 62.85 74.94 54.82 34.35 60.53 12.11 20.98 67.28 30.57 69.97 65.99 62.10 97.09 54.75 4.57 22.41 42.32 52.62 92.42 57.61 34.46 43.58 4.97 60.60 9.41 53.30 88.36 20.12 58.14 38.70 84.31 8.24 60.71 72.88 54.28 2.83 53.35 63.34 68.91 31.32 67.21 33.55 68.32 12.02 4.27 45.74 90.82 60.89 0.79 64.21 67.09 91.45 34.09 38.24 28.31 98.95 69.04 77.56 75.64 89.70 32.76 35.56 -40.27 90.86 86.56 75.07 84.07 85.96 91.31 0.23 48.17 28.43 7.00 36.54 81.97 30.68 31.76 20.02 18.09 34.87 83.58 5.21 94.27 73.94 39.61 9.83 87.50 0.60 68.30 53.83 56.28 16.35 41.52 60.28 74.34 21.35 62.92 34.20 18.26 21.96 23.07 63.08 26.86 19.19 39.28 30.59 99.36 21.91 65.01 89.31 83.28 37.01 53.72 45.80 40.41 30.64 35.91 64.79 69.08 56.75 60.55 30.00 35.62 40.58 57.09 52.76 77.20 51.68 28.40 68.63 7.52 56.56 85.09 12.05 86.90 9.99 68.80 76.66 20.58 68.11 44.38 12.90 52.40 37.04 26.15 4.05 95.90 43.44 20.69 96.49 20.42 65.64 10.89 93.38 74.69 25.06 15.55 5.62 64.89 84.69 71.14 76.45 -54.98 10.73 30.45 94.58 38.52 29.52 15.74 20.05 56.11 64.15 22.09 54.83 10.92 97.17 9.34 77.19 45.78 84.50 65.08 23.79 72.39 64.61 80.82 48.90 33.50 56.94 74.42 92.54 5.09 11.10 8.94 82.72 16.42 33.35 51.93 39.72 72.04 46.12 36.60 25.40 89.87 15.20 45.97 2.99 29.57 24.41 27.35 39.91 12.33 46.16 2.27 13.19 98.44 86.15 52.39 85.23 85.47 42.01 24.06 53.48 23.85 19.35 84.34 65.37 79.07 2.97 73.12 28.67 60.34 20.40 69.40 62.83 55.49 86.62 36.17 18.66 92.69 64.95 95.45 79.29 61.86 85.84 88.12 9.68 57.59 54.27 97.70 35.41 89.49 24.93 49.13 33.00 24.44 97.35 95.80 22.04 46.60 50.98 12.46 49.04 -0.04 86.10 92.44 28.58 24.80 73.91 42.34 73.64 1.16 38.82 55.10 54.79 39.45 4.91 58.87 36.65 74.63 0.10 28.91 7.34 29.39 19.50 44.31 32.64 96.79 78.46 21.64 2.16 17.99 26.95 87.69 88.10 31.00 98.78 89.12 14.88 0.37 39.70 82.15 10.98 50.65 48.48 76.82 89.82 38.80 36.43 81.59 17.33 78.05 62.45 36.72 6.21 62.21 98.67 36.16 90.69 20.10 38.17 57.36 0.70 29.70 33.56 83.55 71.16 21.19 95.05 35.68 14.66 57.93 30.95 16.28 16.10 50.93 43.13 33.28 62.08 49.33 30.35 93.49 75.88 28.05 25.82 31.18 74.35 51.66 3.80 98.42 62.98 35.74 4.23 32.86 84.80 87.95 16.27 59.92 81.42 9.80 89.36 72.60 16.79 -90.71 5.64 56.51 18.14 73.41 42.36 1.07 29.37 27.88 34.67 6.67 35.97 23.78 80.70 48.39 84.31 86.80 64.88 29.96 75.96 63.99 32.60 88.32 89.27 31.74 1.92 9.80 0.66 60.75 37.60 87.09 41.40 87.60 63.75 42.46 42.02 23.54 55.13 91.29 90.01 25.30 34.50 31.50 3.85 47.17 35.96 64.44 99.31 62.95 92.34 5.14 37.31 25.04 86.88 17.96 15.10 86.25 49.29 8.92 28.45 79.53 1.63 16.64 60.31 53.03 0.06 76.15 88.18 11.66 86.02 3.26 13.58 1.66 8.28 64.12 93.13 15.74 14.64 5.19 95.58 42.41 35.66 40.13 28.72 31.65 59.74 64.89 54.74 95.26 87.77 93.08 66.38 61.23 38.41 60.38 86.20 91.16 75.33 14.37 78.63 -98.30 54.76 69.49 35.96 84.63 4.00 52.80 43.86 40.83 45.99 35.93 99.18 33.31 92.09 29.63 92.11 52.57 99.29 41.92 17.32 70.05 27.69 43.01 51.32 75.82 92.58 41.68 72.89 40.76 22.95 49.09 22.10 67.91 48.86 63.17 48.58 72.86 97.89 78.59 33.23 87.38 52.85 4.57 98.46 82.50 40.42 49.50 98.30 30.88 52.26 81.38 97.58 22.15 42.25 66.64 57.20 90.67 61.52 58.88 17.21 21.27 22.81 25.32 62.38 74.81 5.49 95.44 30.23 9.70 2.93 24.47 95.39 78.88 59.68 0.13 29.85 51.51 7.12 74.82 19.26 13.42 69.11 20.37 88.39 9.10 96.85 58.96 27.03 18.04 84.89 91.38 12.78 37.66 78.81 36.98 9.47 60.88 72.69 15.69 77.40 -35.80 89.20 31.88 72.21 96.85 11.98 22.40 68.91 16.67 42.40 20.93 40.27 95.69 79.50 46.47 94.73 81.15 53.88 27.92 37.92 6.00 13.22 18.17 23.77 63.01 15.55 67.05 67.49 55.56 10.59 90.52 67.69 12.25 89.13 56.73 17.43 2.81 91.70 43.41 33.14 33.59 10.51 63.99 97.20 92.95 20.05 38.81 61.69 69.01 14.32 57.29 27.45 40.43 57.58 7.98 81.06 61.97 57.78 44.00 63.44 55.83 61.74 62.55 24.33 40.37 25.65 29.39 87.98 29.40 91.06 6.52 38.51 30.33 79.03 94.64 87.99 63.79 84.47 22.00 96.00 68.84 29.08 45.10 68.98 53.87 51.59 9.95 35.94 33.10 95.63 83.22 51.23 61.60 46.31 87.84 43.29 80.65 31.30 82.85 49.97 -66.08 13.75 27.81 40.95 59.40 57.27 98.14 10.85 9.48 13.95 79.04 31.58 6.54 55.64 17.46 91.76 98.61 35.77 55.68 92.46 93.53 77.88 56.59 4.62 33.89 91.05 8.53 71.23 61.93 55.58 2.88 11.02 43.24 34.50 95.12 74.12 45.54 68.77 39.91 7.07 85.44 97.15 68.42 30.02 93.29 56.69 29.68 27.99 20.52 74.47 56.20 22.71 47.59 53.01 6.70 94.57 35.94 56.65 48.18 12.42 89.69 74.84 61.14 42.58 9.44 41.10 84.87 5.49 27.52 14.93 91.89 78.83 15.51 9.70 70.77 21.98 31.00 98.60 80.02 72.09 23.98 77.90 28.22 91.98 19.00 33.77 69.17 61.19 11.05 18.81 26.64 94.61 50.61 89.54 10.08 82.97 78.70 41.44 31.77 80.12 -61.50 82.69 14.91 34.72 70.39 73.84 78.98 65.38 4.25 61.49 5.44 6.48 15.73 4.00 51.49 5.63 18.05 56.19 55.30 42.21 94.34 59.33 0.50 85.77 15.75 52.33 10.21 37.20 79.93 12.25 68.89 90.78 33.85 92.69 26.09 92.15 61.80 62.27 29.44 51.68 37.74 76.18 10.42 52.52 69.61 47.08 93.97 43.59 54.17 8.36 34.84 46.15 39.27 87.98 53.62 72.61 44.93 39.94 62.50 76.90 98.25 34.17 95.47 41.72 0.28 44.05 50.24 61.88 6.14 68.04 26.84 87.15 6.40 74.58 42.77 65.42 36.70 73.43 68.54 19.87 3.49 82.07 93.42 31.09 13.22 56.55 84.16 52.53 39.58 70.42 36.09 77.20 44.56 36.10 59.57 26.31 73.09 38.90 0.55 92.52 -86.05 32.57 28.95 47.60 19.55 38.98 34.64 93.92 41.01 6.99 50.91 17.42 5.17 72.61 38.45 63.14 96.34 99.28 62.18 88.46 53.24 63.44 32.84 84.66 52.60 6.94 65.26 69.93 59.11 44.93 36.58 0.63 54.87 14.27 75.03 88.83 94.33 70.51 23.31 5.06 21.56 83.26 72.97 82.51 33.05 0.55 50.59 73.49 30.03 18.95 23.32 66.47 53.75 80.36 25.45 38.57 99.55 76.30 77.39 59.01 22.12 30.25 9.91 25.22 19.72 57.49 52.46 92.10 28.09 33.52 28.06 93.46 50.61 14.13 93.06 61.67 61.56 5.20 64.41 36.82 64.42 95.04 71.27 56.72 28.61 30.32 46.10 85.38 40.62 3.67 55.70 43.71 64.17 65.04 34.66 19.34 9.96 74.79 23.45 56.18 -8.03 4.25 19.51 86.90 70.98 28.40 74.64 47.43 81.46 11.19 67.01 15.85 96.19 11.19 96.04 22.44 62.59 5.32 80.04 98.39 90.34 49.35 11.20 90.79 48.18 56.21 27.33 80.29 41.03 14.62 10.90 12.88 72.77 16.25 8.57 6.19 71.27 11.17 27.97 29.49 99.71 38.84 26.45 43.72 34.57 70.56 59.56 49.41 19.01 27.31 93.10 97.54 21.59 5.44 78.98 85.33 63.52 19.53 63.88 83.92 2.62 7.31 81.56 34.91 56.83 59.55 95.31 25.88 48.63 29.44 89.26 93.76 4.19 91.09 92.51 95.64 27.02 99.83 50.32 49.69 12.09 66.55 69.24 19.24 7.47 82.07 73.02 66.46 53.02 13.25 35.55 17.48 90.54 73.70 12.44 87.55 48.84 47.24 93.83 82.02 -74.79 37.55 79.23 9.22 24.50 49.68 16.91 57.61 2.78 96.35 72.06 7.05 33.93 84.62 32.88 27.04 64.77 20.65 42.84 0.06 32.95 51.11 78.01 34.39 91.23 58.59 65.67 63.18 76.98 53.56 22.66 81.59 96.42 65.76 90.19 38.98 20.49 97.96 74.76 49.89 47.79 12.04 98.51 49.46 68.26 65.05 35.70 7.23 21.32 16.15 88.36 47.52 22.19 82.87 81.72 46.29 70.75 92.07 59.15 61.39 36.64 66.37 95.14 76.84 28.35 32.21 96.87 24.07 92.84 8.17 79.86 98.11 73.56 84.28 78.17 34.26 70.40 65.64 19.37 71.08 8.81 87.84 76.82 4.71 6.24 63.36 30.82 21.69 14.08 37.49 35.32 71.37 80.75 9.79 28.32 75.07 86.14 23.11 24.30 65.16 -55.61 12.17 39.40 67.89 89.05 99.23 41.89 85.58 18.94 31.07 74.78 43.97 12.52 4.65 37.60 63.99 48.19 99.64 91.55 82.54 59.53 27.32 38.38 69.58 96.28 45.05 63.80 37.22 87.73 9.91 69.86 91.25 64.39 12.79 53.50 98.40 32.91 61.40 9.31 48.99 34.38 85.60 55.15 60.64 89.72 24.32 13.15 46.71 8.48 22.94 36.95 41.83 36.49 74.84 56.70 45.35 65.58 80.82 82.88 37.03 9.79 26.79 82.57 30.77 27.44 80.41 27.21 29.42 13.16 32.10 55.10 96.87 97.24 98.52 51.62 8.34 0.21 83.76 15.76 24.99 70.50 95.38 46.13 21.39 27.10 68.04 2.11 1.86 36.00 58.85 37.12 38.48 42.92 78.16 38.89 32.28 9.65 14.58 54.37 33.96 -9.09 35.64 81.59 21.42 56.98 40.55 13.86 7.92 68.56 24.97 82.28 62.26 95.67 3.97 30.24 39.38 81.39 74.89 46.58 4.28 49.66 79.57 88.26 41.14 10.27 65.83 84.42 84.85 9.60 21.98 28.27 75.26 90.24 7.70 73.26 40.27 6.37 52.38 51.59 66.29 87.35 12.96 25.01 36.07 55.38 64.92 47.16 2.09 3.81 19.82 72.34 57.21 49.08 53.70 98.41 13.78 62.19 48.19 77.84 90.94 92.94 60.89 71.49 29.60 76.03 52.74 74.70 88.91 84.47 34.59 17.90 7.57 26.80 53.63 2.94 7.49 65.60 88.76 46.80 95.20 69.70 32.43 8.88 88.54 61.23 88.64 84.09 48.56 61.81 85.15 80.10 63.29 40.40 1.32 92.57 96.01 82.97 35.22 79.33 58.75 -88.85 55.30 83.21 60.34 98.39 21.53 13.53 56.77 60.73 32.62 41.02 1.67 31.13 15.57 8.08 94.39 82.12 34.02 42.84 42.17 5.25 78.46 18.19 14.58 1.41 42.10 6.44 78.10 4.24 34.59 49.99 40.73 59.06 93.64 34.94 85.45 49.72 36.97 40.99 37.55 59.49 59.38 75.37 58.95 27.90 75.18 80.51 75.71 46.33 10.96 44.26 62.36 97.53 96.70 24.70 80.19 10.31 53.49 85.45 60.21 33.24 18.29 96.03 72.73 71.97 0.04 70.63 27.26 94.31 56.75 23.62 92.36 15.38 15.19 34.60 16.09 33.24 89.33 27.14 16.89 61.24 0.35 94.23 66.48 89.58 56.38 42.48 76.02 94.80 53.47 30.88 37.61 86.52 1.19 88.40 7.41 88.52 33.02 0.02 30.44 -35.02 32.12 55.32 2.02 85.67 51.76 19.79 15.25 7.49 3.67 90.22 29.07 62.67 6.50 93.10 47.93 54.37 6.73 52.91 23.31 70.36 82.70 3.18 75.71 16.81 52.22 25.15 34.98 47.59 87.89 42.86 75.86 81.13 95.48 53.48 24.18 44.89 9.49 28.65 85.02 41.43 9.08 83.80 52.14 51.64 91.68 89.43 73.46 92.60 49.20 33.88 19.82 83.17 51.54 5.70 3.84 0.34 89.15 72.08 0.52 36.90 60.44 62.68 31.62 24.57 44.20 94.11 44.69 55.40 50.84 5.83 15.17 80.52 20.54 28.05 11.16 60.13 47.16 86.76 96.06 60.30 41.02 99.46 35.36 12.61 7.18 35.15 38.82 21.61 66.05 97.30 30.81 29.88 12.62 72.84 41.05 27.07 6.33 87.29 40.74 -64.55 68.04 53.61 18.65 21.21 23.31 7.47 44.26 12.33 10.10 70.61 7.72 68.39 64.85 6.61 7.13 64.98 78.88 39.58 19.39 26.89 29.47 20.37 55.71 3.02 20.55 87.28 71.16 74.36 20.40 57.12 10.11 75.72 71.98 27.94 27.87 33.67 74.89 85.36 67.94 65.48 5.93 72.81 95.17 98.38 35.36 95.02 7.27 42.32 29.05 49.38 54.96 23.86 23.84 18.35 3.10 4.57 31.94 3.34 50.54 58.06 52.36 0.30 34.50 77.51 5.68 64.28 32.55 17.48 71.28 87.58 24.53 12.63 75.58 51.84 71.39 85.02 75.05 12.73 40.82 79.25 65.64 69.71 2.82 31.07 82.66 21.33 18.27 79.93 5.22 4.58 33.10 35.26 86.52 83.34 88.59 19.68 29.01 48.45 77.79 -17.05 31.05 43.14 66.86 9.31 25.90 75.87 19.61 3.16 25.40 94.14 9.21 83.56 48.24 75.10 12.46 97.33 27.08 85.90 70.24 77.17 54.12 0.67 26.08 21.93 8.31 37.07 88.53 90.59 76.16 19.51 91.69 49.79 74.53 23.09 69.25 80.44 45.17 20.88 6.83 54.35 78.87 36.33 37.65 97.91 21.94 40.32 88.44 19.12 19.14 22.95 65.56 37.02 98.19 50.63 33.42 84.58 88.85 39.38 73.06 45.82 95.77 27.50 99.39 64.59 53.63 48.12 73.79 5.60 82.30 4.70 12.14 94.29 64.05 58.70 19.66 26.32 69.02 34.34 53.73 5.15 81.03 24.85 25.80 18.09 53.98 45.06 16.19 23.12 90.35 94.00 21.96 53.79 86.31 81.16 62.79 33.99 42.75 3.78 85.41 -36.08 47.90 57.65 4.12 90.03 96.73 89.75 92.52 91.01 42.52 23.23 53.57 81.55 81.65 2.19 56.03 24.94 23.08 70.97 80.65 76.27 63.80 45.98 45.03 57.70 19.28 96.31 66.84 74.41 28.13 68.72 62.60 22.18 84.45 15.98 74.13 24.75 27.87 57.41 46.82 12.12 42.53 99.08 18.02 99.58 35.23 30.24 0.64 10.29 40.43 56.81 80.42 50.23 66.42 9.32 72.87 41.31 28.88 13.43 0.58 97.76 31.70 80.90 92.44 78.56 53.12 92.79 30.89 79.54 12.40 59.23 33.81 36.72 93.12 8.31 94.20 17.00 23.54 64.00 20.10 40.87 82.14 68.93 57.91 86.84 21.47 33.22 92.86 76.13 34.25 13.11 93.78 46.47 46.11 19.15 69.95 94.04 65.56 68.33 76.89 -19.13 92.09 60.57 36.71 78.48 14.80 56.11 75.14 62.76 6.92 58.72 63.28 1.16 37.79 52.74 4.55 72.54 3.23 43.78 8.20 31.67 98.05 17.57 48.21 49.33 45.44 48.35 56.06 3.58 91.15 23.60 5.21 17.88 61.38 31.37 2.78 48.47 65.03 20.95 36.26 63.72 36.78 56.96 37.55 74.37 79.62 41.41 73.69 90.11 21.93 76.04 84.87 72.13 99.52 60.05 10.70 34.68 44.31 24.22 85.97 1.94 40.82 6.96 24.32 20.46 41.62 95.06 81.12 58.46 31.93 3.79 37.42 86.40 28.26 60.00 10.73 54.23 97.10 67.22 24.04 80.06 0.03 14.75 4.23 80.87 98.41 80.34 92.02 41.02 4.66 61.55 51.69 16.66 86.14 91.48 7.67 42.66 96.41 58.02 62.65 -53.35 84.11 47.94 42.88 35.70 61.96 1.47 88.90 16.37 38.09 76.99 16.48 15.87 78.03 46.85 46.81 97.36 80.34 98.93 75.36 89.47 80.03 37.87 17.65 65.22 63.46 38.07 33.29 61.56 13.94 78.14 13.55 77.01 25.43 59.61 72.60 33.92 95.97 57.86 1.13 66.74 84.75 34.09 35.10 46.20 63.61 35.66 41.66 14.23 64.92 17.32 32.36 40.08 41.55 38.38 47.44 11.75 66.09 2.67 20.71 67.18 38.67 67.60 17.97 23.20 1.80 67.21 74.37 75.43 7.37 3.68 37.05 95.19 25.83 1.97 91.14 52.71 50.96 25.85 27.43 88.75 25.77 49.09 36.31 81.95 71.14 47.49 43.50 28.56 82.02 97.34 36.58 70.73 4.48 61.15 56.62 94.02 10.31 58.30 48.37 -92.07 39.67 93.83 12.02 39.35 91.11 63.68 4.74 39.07 44.05 88.28 7.12 64.55 10.20 51.79 4.93 55.76 89.89 25.48 5.75 34.28 39.96 90.64 78.59 60.62 17.94 63.03 93.37 43.76 77.64 7.17 81.68 8.81 88.50 95.89 17.15 47.47 68.75 21.96 92.04 84.69 74.10 77.51 73.59 68.18 62.63 76.26 52.30 47.72 4.04 4.56 91.59 42.61 89.77 57.01 3.19 31.72 69.62 47.52 19.20 0.24 24.05 74.17 99.67 28.13 41.79 24.56 5.49 95.41 50.63 21.53 44.68 30.24 65.28 14.91 66.40 82.37 0.30 42.36 59.73 99.46 40.07 51.46 59.32 68.32 58.55 51.17 84.47 67.29 1.12 1.91 36.90 26.40 89.93 25.90 71.70 25.36 42.80 86.01 92.37 -60.85 3.81 95.36 69.35 69.18 5.81 11.79 28.62 88.71 77.20 8.77 80.50 76.57 85.48 59.60 45.67 95.02 12.87 93.39 23.94 1.25 29.69 12.26 41.42 0.07 61.27 85.90 32.90 74.21 98.17 91.78 21.33 21.65 65.94 17.97 71.65 10.72 89.54 71.46 40.07 46.51 1.14 10.68 25.36 3.12 18.39 55.40 79.20 53.89 36.96 0.44 70.32 44.20 50.27 35.23 62.40 86.49 0.67 51.40 71.34 7.18 36.91 89.78 99.02 39.42 12.58 49.81 12.69 88.57 73.88 27.79 21.32 32.52 47.55 15.52 24.92 51.66 25.96 35.52 2.72 2.92 80.14 58.12 55.03 32.52 23.68 73.33 68.14 80.02 20.46 48.81 14.13 68.31 4.13 47.15 25.17 47.86 44.07 41.02 46.21 -73.12 74.24 62.04 42.04 17.90 2.48 97.81 0.03 36.63 52.40 46.58 48.77 19.95 48.47 98.43 17.86 38.56 88.48 53.15 83.20 89.80 65.82 15.26 70.03 87.82 85.20 84.37 14.18 51.73 1.45 89.41 97.61 32.49 20.36 49.66 13.88 13.85 42.32 31.63 86.66 67.04 65.26 0.82 78.37 87.47 16.87 35.98 56.57 39.50 56.16 95.83 64.57 16.07 11.56 3.21 29.17 3.24 33.08 41.40 45.56 60.47 79.18 55.79 25.12 32.05 31.75 96.79 15.87 46.13 45.98 15.15 77.05 55.42 93.55 54.21 63.42 61.82 91.85 81.86 37.25 50.03 6.05 67.48 34.70 73.03 4.85 26.05 29.87 28.49 80.35 75.20 80.28 20.66 36.31 3.58 53.57 1.11 56.07 64.68 31.07 -91.75 22.35 88.79 55.48 91.24 27.02 31.86 65.97 52.73 71.11 53.76 23.67 23.75 42.84 38.65 52.32 36.89 33.07 90.32 74.47 36.71 27.16 20.48 18.58 91.67 97.56 41.69 98.56 29.85 75.70 16.14 56.25 6.50 7.93 55.78 8.49 86.75 81.35 26.57 49.08 7.55 27.56 97.60 13.39 72.50 14.30 35.40 35.96 86.55 67.60 99.98 2.47 33.16 61.52 89.85 87.07 9.95 24.92 22.29 95.56 72.19 37.92 21.87 37.37 6.25 53.63 63.35 5.64 3.79 50.25 60.09 46.99 34.36 93.15 66.77 1.57 41.28 45.41 67.49 94.46 22.42 28.41 43.45 39.13 9.06 90.62 99.08 43.34 42.61 23.52 27.70 53.27 43.13 79.02 53.82 65.24 21.83 37.86 78.46 61.66 -90.27 25.10 72.98 62.73 52.19 66.78 95.50 48.89 55.35 44.50 81.87 10.70 27.87 35.66 89.00 54.11 30.50 72.77 36.69 87.64 10.03 89.68 87.38 37.24 78.36 92.30 89.80 57.74 8.12 47.95 75.06 99.13 5.73 51.89 74.56 70.98 1.01 73.75 16.98 33.74 91.05 57.91 57.48 94.18 53.15 12.16 40.64 98.15 49.82 13.19 17.72 56.07 77.25 9.65 61.80 20.06 85.52 5.32 17.15 59.37 12.84 91.32 56.74 7.53 77.75 26.50 63.86 34.72 28.62 25.94 96.47 30.27 66.78 19.49 67.88 45.93 85.59 87.11 3.89 43.65 24.98 76.22 2.32 92.49 41.67 95.95 60.65 97.51 35.65 2.89 1.93 34.45 30.60 80.22 36.61 31.54 21.62 71.65 44.01 45.53 -20.21 62.06 25.84 21.13 18.72 15.78 91.69 44.04 23.75 69.39 52.32 94.86 53.07 45.64 18.87 90.14 62.01 69.46 14.06 83.54 41.13 82.13 70.61 24.22 72.24 1.71 59.04 23.44 53.51 67.56 56.86 77.32 84.16 74.12 93.96 43.09 21.74 47.85 1.65 65.58 28.11 76.05 33.30 12.01 82.78 41.14 62.20 0.37 61.23 81.47 29.63 65.47 71.78 51.68 4.65 93.07 57.58 54.81 86.39 24.75 90.64 2.66 39.69 42.49 61.20 80.69 75.73 45.03 60.93 69.44 89.24 76.31 82.72 72.37 37.57 80.15 31.69 92.35 40.35 4.54 63.56 18.82 89.21 7.75 69.20 69.76 48.92 59.35 12.13 73.23 28.39 0.65 16.32 38.14 7.25 57.55 90.38 8.02 6.60 45.78 -35.83 42.66 2.61 14.09 34.05 88.18 25.78 88.31 77.18 80.58 22.52 71.99 29.86 10.25 86.95 34.82 93.30 31.26 89.27 25.50 2.97 72.96 68.18 40.12 94.87 74.77 16.05 18.11 55.82 47.73 95.98 89.32 61.98 41.97 35.11 57.22 27.36 51.11 62.53 42.19 82.43 29.07 3.44 0.07 32.72 80.12 79.45 52.77 99.61 74.88 73.31 99.38 27.63 57.04 12.14 32.92 46.27 81.16 98.14 80.45 2.56 29.31 76.95 48.90 70.07 90.90 24.33 88.45 29.93 61.66 60.31 64.94 52.38 9.83 5.60 33.91 89.92 43.73 23.21 72.09 98.60 35.60 48.56 29.45 91.26 80.08 91.19 96.61 32.15 60.33 8.07 47.71 24.39 0.01 83.80 49.19 4.47 44.45 1.12 79.97 -63.45 32.18 20.64 30.13 87.24 32.67 43.57 50.21 48.06 22.13 72.42 9.90 32.14 7.61 67.36 35.76 22.57 6.77 70.10 14.46 50.27 85.64 3.94 31.67 86.28 97.04 15.04 9.28 60.30 7.09 6.62 91.70 69.43 7.05 10.42 84.67 40.04 53.92 6.84 93.11 81.30 21.82 35.26 93.75 24.37 43.87 41.14 14.93 23.16 90.40 67.34 35.54 87.62 74.82 12.83 6.16 59.43 38.36 47.93 64.93 55.35 20.60 24.91 37.97 19.19 24.62 96.79 12.17 46.76 93.03 62.60 80.02 37.19 45.81 82.52 73.27 67.73 98.43 5.97 23.76 42.04 75.67 70.32 19.34 26.71 61.11 18.88 95.96 8.26 6.69 50.00 74.88 40.22 67.69 98.20 73.34 91.47 78.74 23.86 97.98 -0.72 48.30 57.07 27.03 41.66 64.94 65.85 42.72 37.72 1.95 14.13 96.15 21.25 39.15 37.98 70.27 77.30 3.29 46.45 60.33 55.24 44.47 5.02 36.25 15.27 20.72 91.83 26.93 94.16 40.98 49.77 15.40 94.40 56.23 44.93 1.23 18.76 24.15 24.55 87.24 78.39 19.79 1.30 7.32 75.37 83.09 30.04 25.70 95.93 41.82 61.52 60.71 28.96 91.76 46.13 60.89 41.79 84.89 71.88 91.35 57.17 86.77 52.82 28.82 17.81 12.59 73.17 23.56 22.69 45.99 11.72 68.13 3.03 10.06 17.37 41.02 73.30 66.04 36.39 3.30 7.37 67.04 94.71 73.00 5.19 89.33 83.86 1.39 45.93 99.38 72.78 99.33 11.14 84.41 4.51 51.97 51.02 66.27 19.40 62.68 -45.12 30.56 42.53 82.80 79.38 37.60 50.23 24.69 96.28 5.90 1.06 60.07 35.04 90.55 14.51 14.55 14.97 95.81 54.22 3.13 27.64 32.47 69.51 66.11 78.58 83.16 38.88 96.03 40.49 84.30 97.84 16.63 54.60 80.72 23.16 65.96 25.64 16.19 38.93 91.09 62.46 49.53 54.86 65.62 80.83 12.14 60.71 48.05 77.83 5.88 5.40 2.02 27.57 96.59 11.76 32.78 64.66 82.11 80.55 97.57 48.67 12.01 62.10 30.25 55.28 42.89 53.33 35.35 29.81 54.26 21.74 65.42 35.10 9.22 90.17 18.62 93.05 56.40 59.52 44.38 14.37 76.13 44.45 87.40 46.96 81.72 97.63 58.21 55.43 46.01 71.38 17.84 64.39 94.16 66.63 46.47 50.25 79.53 3.17 8.88 -44.81 44.67 68.88 53.35 57.48 77.17 94.04 81.90 87.48 84.02 1.31 17.26 17.30 94.95 14.90 83.82 70.34 71.51 92.88 62.29 88.29 81.16 29.14 18.63 49.10 74.76 10.76 56.54 86.31 39.80 91.60 20.34 65.98 83.99 99.82 22.57 72.87 2.42 35.49 28.30 60.04 49.23 91.52 1.42 32.54 93.58 3.22 18.62 28.15 78.01 84.32 61.35 20.34 15.01 99.64 26.91 57.41 99.05 61.34 95.96 38.03 6.33 24.55 77.43 66.44 71.02 94.33 13.22 67.42 94.34 46.91 58.36 80.98 0.50 85.48 81.57 41.91 53.50 6.35 93.93 80.67 58.35 50.57 7.70 30.82 23.54 31.19 55.62 73.40 53.50 27.00 83.86 57.15 66.44 59.19 99.73 66.73 51.71 6.08 60.77 -70.66 27.31 14.52 66.10 95.64 99.03 47.79 16.42 97.10 4.79 3.41 15.69 60.86 8.96 43.95 51.66 89.39 42.63 61.88 88.64 78.48 37.43 95.54 17.13 15.32 59.57 90.26 28.38 67.20 41.28 12.25 43.79 21.38 90.18 89.70 23.64 51.06 5.31 97.65 61.12 14.40 30.14 92.59 27.25 27.73 81.26 5.40 68.47 26.21 48.49 0.71 29.66 4.11 87.70 46.22 88.19 85.10 63.56 51.12 86.51 25.59 62.63 32.26 17.80 21.79 82.59 53.55 40.46 59.94 64.47 74.85 37.64 62.28 43.47 97.77 5.41 59.03 55.64 9.38 22.62 97.59 79.96 2.08 94.28 27.72 90.62 68.95 94.49 2.47 37.28 44.97 6.28 56.90 56.09 4.94 68.90 79.34 54.69 93.52 9.19 -68.06 1.92 77.86 89.30 62.53 48.61 13.76 69.33 49.61 14.05 53.45 92.36 91.45 30.67 36.79 69.40 0.28 30.59 65.27 80.76 56.80 72.45 92.62 98.08 51.41 74.60 20.97 76.51 81.30 27.08 60.85 80.02 85.33 60.99 45.89 71.68 6.07 41.86 75.31 81.05 12.41 11.72 44.21 68.00 92.35 78.46 86.33 34.54 46.05 14.53 7.50 25.05 64.87 40.26 50.89 71.12 1.59 66.14 38.51 40.50 82.18 37.10 16.50 16.09 38.80 35.34 44.83 44.60 43.99 95.55 33.75 47.23 88.03 31.42 58.94 93.96 3.43 14.35 49.90 67.97 16.30 1.35 18.64 26.26 94.89 70.15 79.01 44.14 54.52 88.91 1.86 29.62 12.65 12.74 31.36 99.69 74.98 1.68 58.36 42.39 -76.16 52.14 23.73 62.04 83.65 67.34 81.12 86.08 28.45 44.30 83.22 1.70 94.62 88.09 12.95 15.85 99.40 51.64 68.58 64.54 41.85 45.58 69.31 61.78 51.32 1.75 60.78 43.44 79.09 9.64 5.59 59.85 96.50 78.34 61.97 79.54 88.13 48.93 83.33 61.87 94.15 76.80 35.77 13.21 2.60 13.76 55.56 69.56 66.23 30.56 59.65 12.68 43.29 47.07 85.49 80.66 87.43 77.88 66.46 19.12 5.72 77.33 93.35 40.45 38.67 79.04 16.42 47.01 59.08 95.24 65.36 17.83 88.99 14.19 50.42 9.15 16.34 43.86 1.46 51.55 96.81 91.82 14.00 75.55 73.68 43.86 89.60 53.39 3.55 96.70 29.58 9.84 91.08 7.89 70.79 72.69 4.89 53.92 61.67 34.03 -71.70 55.04 37.03 87.40 71.73 30.65 28.09 50.74 52.16 38.19 41.45 16.08 53.98 63.38 99.53 88.19 77.14 89.41 21.39 43.18 25.64 1.53 0.17 31.18 17.90 68.13 81.60 85.96 35.21 15.00 36.12 25.64 55.98 77.26 68.35 28.03 50.01 53.63 75.28 65.20 89.55 65.03 55.85 38.75 19.83 27.63 0.64 84.06 47.19 59.32 67.12 11.62 5.44 27.95 92.81 60.71 15.63 21.50 1.53 2.24 2.63 37.29 52.41 89.69 65.45 51.58 7.53 23.75 79.74 59.83 34.66 74.12 2.93 18.93 71.88 50.05 55.41 82.91 70.18 9.53 87.30 73.59 95.97 22.86 80.56 24.18 65.63 89.50 15.56 89.74 4.04 43.76 52.38 20.85 63.21 92.78 2.91 26.01 81.19 54.42 -90.72 20.72 11.90 64.38 97.84 27.01 37.42 19.59 52.05 20.58 23.94 23.16 10.35 68.96 3.88 20.32 8.18 22.80 98.32 40.86 88.73 74.95 69.33 82.35 13.04 56.39 41.03 44.81 42.91 13.09 17.75 47.57 18.18 80.62 13.40 16.72 50.90 21.58 28.51 43.82 56.28 1.58 79.28 76.47 52.23 66.43 25.01 5.24 4.37 34.55 64.41 79.87 87.83 52.05 32.25 7.53 68.53 54.94 39.21 74.25 73.03 33.45 19.86 87.88 41.69 2.68 28.54 72.84 96.85 63.53 8.80 8.31 11.10 78.15 91.13 54.99 37.74 72.70 45.21 31.57 84.52 22.11 8.72 65.14 62.48 77.27 74.93 72.33 72.55 25.50 36.93 62.69 5.84 64.07 16.66 73.76 91.11 12.44 18.86 19.34 -47.61 53.64 39.59 48.55 54.14 56.01 98.20 42.67 13.16 97.26 81.98 77.35 82.17 62.91 22.98 64.20 56.21 3.67 35.84 44.86 68.33 43.09 49.30 89.71 32.81 48.95 63.62 48.07 83.68 49.69 51.91 16.83 78.64 81.61 24.76 86.11 95.26 6.44 56.27 63.88 92.94 31.90 71.35 38.43 84.10 68.65 24.99 21.63 41.57 40.60 42.86 50.64 31.36 67.60 57.47 86.62 15.77 1.94 96.99 15.25 66.34 12.61 28.45 55.55 54.38 4.87 31.41 16.57 31.74 85.25 25.17 98.32 37.79 92.03 69.02 91.34 52.41 47.38 47.25 15.32 77.41 7.14 99.11 47.55 33.27 88.66 44.85 73.57 81.07 92.63 57.82 40.83 55.00 29.54 57.21 34.32 41.17 62.01 5.95 46.20 -91.31 53.33 55.24 77.31 69.06 41.29 72.76 35.50 99.49 16.07 44.53 21.61 3.57 66.76 71.89 94.66 96.34 13.50 90.08 28.85 76.28 8.01 27.96 4.04 1.89 22.14 49.22 31.12 78.52 74.77 50.70 53.92 1.73 33.54 39.59 70.95 5.76 18.86 0.98 41.46 55.88 28.74 49.52 63.07 29.81 43.08 44.14 59.92 7.37 25.31 45.89 71.27 96.70 6.49 0.50 34.21 22.03 73.96 39.22 36.54 91.32 73.36 32.37 4.29 12.16 53.73 68.90 92.88 73.95 27.02 95.46 50.57 29.93 24.25 76.00 90.59 59.27 92.64 91.80 44.82 81.26 88.76 38.06 79.66 72.84 74.08 37.27 59.21 28.31 58.20 39.62 17.43 67.91 76.06 47.22 34.11 46.62 71.56 62.75 33.91 -80.89 51.21 92.32 42.09 37.61 98.49 60.11 99.54 23.60 30.40 95.20 24.56 93.47 12.92 56.07 96.83 37.44 36.30 98.37 3.81 4.73 11.61 13.88 2.54 35.49 48.63 83.68 37.86 2.15 2.16 56.61 51.36 97.33 35.42 82.60 44.52 31.66 13.92 7.16 97.77 77.02 6.47 57.56 63.03 13.18 62.78 50.11 89.04 84.09 11.16 54.96 41.60 99.63 10.66 77.75 66.43 70.62 50.19 24.88 41.80 17.06 61.98 75.03 52.10 55.35 95.43 16.90 6.08 70.96 10.10 93.40 25.10 46.58 44.45 24.48 6.50 54.91 66.99 78.78 24.84 93.85 68.89 47.81 69.74 62.70 5.51 37.21 7.80 54.00 4.45 29.16 20.65 53.28 11.67 47.78 73.61 30.52 75.66 66.42 4.07 -93.79 14.76 84.32 48.79 33.53 99.81 88.23 41.65 3.77 97.25 60.32 56.79 1.58 17.64 97.20 83.70 4.91 69.25 63.09 56.69 83.29 66.76 77.21 41.57 49.54 31.39 12.61 83.84 1.72 24.86 61.80 83.61 90.41 58.24 27.94 74.76 54.37 65.76 29.86 29.82 31.96 56.00 50.20 71.48 98.60 10.48 3.69 36.86 31.62 82.71 64.19 35.90 36.98 6.87 35.01 74.99 87.03 24.89 19.12 53.24 53.21 30.57 46.45 50.04 24.56 70.70 9.28 67.68 28.66 3.83 27.16 49.04 84.91 65.22 52.45 33.26 6.53 2.19 64.35 56.20 93.78 69.92 43.54 15.03 6.60 11.73 82.97 84.81 66.72 3.13 10.36 87.63 48.18 8.38 17.04 87.92 97.12 60.96 63.71 97.44 -56.82 0.24 56.09 13.97 1.14 70.42 67.79 58.38 7.29 79.70 81.93 97.88 45.32 20.34 90.69 54.69 88.42 95.80 96.53 40.81 99.83 35.37 97.95 33.91 64.20 41.40 89.04 84.13 86.64 16.63 95.48 65.31 44.40 33.34 39.15 16.86 81.62 28.03 8.20 51.51 39.94 54.72 22.52 37.85 68.37 27.88 34.04 38.36 54.11 1.49 83.49 68.92 50.57 84.78 85.83 48.62 52.17 3.96 98.16 61.58 20.80 12.82 28.30 89.05 69.23 1.80 42.33 91.41 55.88 2.33 42.50 50.53 0.67 4.84 92.94 47.50 82.79 33.40 94.84 87.44 35.74 21.83 37.64 56.64 19.71 82.74 58.97 76.24 88.32 73.45 76.13 17.25 83.76 79.06 30.77 99.98 71.38 26.36 9.48 51.02 -96.01 19.64 22.10 74.50 23.46 93.06 20.35 70.41 84.57 34.18 71.47 69.74 58.87 83.39 93.95 49.01 66.89 41.14 60.48 64.34 9.15 94.10 54.95 44.31 3.39 68.13 13.49 80.30 59.99 74.03 28.91 57.85 76.04 65.59 85.00 44.63 65.56 40.18 65.57 27.75 22.39 59.83 5.91 88.81 4.61 19.67 79.34 86.94 51.66 50.52 74.79 43.42 6.65 43.03 44.39 32.75 90.63 85.50 42.20 46.12 6.56 69.50 53.60 83.76 46.69 63.88 42.86 24.04 96.23 42.36 70.58 12.31 8.79 37.62 64.52 97.15 41.80 75.62 60.70 45.28 56.48 44.29 86.62 22.55 7.92 69.46 75.02 68.18 98.25 22.58 74.54 33.93 31.84 4.59 46.13 75.12 43.88 69.63 94.41 37.74 -91.39 92.48 0.25 3.98 80.98 88.42 62.59 75.82 92.39 40.03 56.80 84.93 75.58 88.69 22.43 87.23 83.03 57.20 52.36 74.63 65.32 27.57 61.17 63.09 45.93 63.14 90.33 55.38 81.54 25.56 17.69 77.23 5.58 81.16 9.21 91.15 42.07 77.16 50.33 92.37 73.10 8.96 28.94 90.87 66.99 56.30 39.14 56.88 10.05 76.91 61.28 33.91 56.34 95.12 95.67 26.85 13.09 63.81 59.41 10.95 6.67 32.60 64.72 10.23 81.46 81.96 85.24 0.36 35.80 81.91 12.58 55.85 59.43 99.58 6.01 70.70 91.71 40.64 20.71 32.97 89.98 83.38 21.98 33.44 8.76 42.26 76.83 61.62 26.56 58.02 35.28 7.21 1.26 26.42 82.67 25.94 81.55 53.22 46.50 49.71 -5.50 54.27 19.87 93.13 80.29 11.04 51.15 39.13 7.32 4.15 47.34 31.68 40.15 55.53 56.79 64.15 62.74 73.73 71.17 98.15 71.99 47.07 29.85 55.27 62.08 37.22 99.18 69.18 84.52 50.49 59.60 73.18 11.53 97.74 66.91 79.92 47.67 65.58 41.43 84.34 31.64 25.68 81.52 99.54 94.21 58.01 57.30 53.99 21.14 21.24 65.18 4.41 64.56 82.29 56.04 50.16 64.79 92.31 3.36 53.60 82.21 44.02 13.87 34.88 75.24 55.30 24.08 98.28 44.92 25.71 6.88 73.95 74.42 28.61 32.17 31.14 41.36 81.69 70.84 33.38 75.64 31.77 92.30 50.55 52.35 60.86 55.53 98.58 41.34 57.40 49.04 67.74 6.32 23.10 59.74 52.92 61.79 49.43 34.00 88.45 -39.86 31.83 5.67 3.57 50.90 64.62 76.62 67.67 25.38 62.22 9.29 25.56 95.12 28.23 41.99 85.87 18.74 77.96 35.32 39.40 25.96 66.49 55.51 35.99 53.97 54.13 59.92 73.60 74.50 18.39 63.69 97.18 12.47 98.04 79.72 81.84 14.91 53.20 69.01 26.31 50.30 87.10 49.39 56.23 36.72 45.65 26.85 85.07 13.39 7.98 62.47 38.67 0.73 91.04 65.83 56.99 46.94 72.97 77.60 45.59 61.03 38.18 69.68 26.63 60.30 90.88 89.30 59.09 87.99 85.20 28.02 98.72 20.33 30.09 3.54 5.09 0.17 45.00 34.46 15.01 79.16 69.62 71.10 97.05 32.85 28.55 68.63 94.77 93.35 30.44 73.22 37.26 74.78 85.90 72.97 70.66 39.94 83.27 86.75 49.92 -19.50 1.32 29.34 35.93 64.47 48.16 31.97 51.62 28.67 41.76 71.17 66.50 73.54 89.34 8.89 67.38 65.00 70.20 47.45 74.08 8.94 3.78 26.66 86.57 60.65 32.44 14.75 48.29 85.75 29.27 96.92 24.14 60.47 31.22 60.40 32.26 99.52 19.87 39.24 59.40 11.95 50.66 76.75 92.48 49.82 56.43 41.78 43.97 74.96 33.51 76.81 48.25 27.45 61.00 7.76 35.92 63.62 93.40 12.36 9.08 93.28 36.78 26.14 49.53 74.01 54.08 30.91 34.69 62.58 45.96 31.15 83.50 63.64 73.14 80.75 64.10 42.86 93.13 84.90 69.21 39.97 10.37 11.16 53.82 48.70 86.40 68.30 67.62 88.67 96.80 86.03 57.64 53.90 43.57 67.25 68.64 4.61 38.28 23.49 92.44 -42.93 52.36 92.18 85.15 66.91 13.63 72.15 0.05 44.91 50.03 16.00 45.79 28.14 57.51 25.57 78.88 14.58 15.16 50.12 93.27 41.81 78.50 50.79 37.21 86.67 98.73 68.37 89.90 32.25 47.60 27.10 52.01 49.94 75.98 36.65 81.89 98.87 12.42 40.25 99.71 25.25 96.37 30.63 29.45 72.42 60.74 40.02 15.39 55.58 18.33 40.47 81.49 1.16 14.77 12.55 3.49 25.85 57.27 64.61 99.52 1.09 52.79 11.17 39.38 88.44 90.42 80.71 79.20 80.76 98.50 86.04 99.36 60.22 17.35 81.10 41.30 46.60 86.74 88.73 20.07 96.89 55.79 91.19 4.18 65.82 63.28 54.87 36.77 16.28 68.91 36.14 46.55 80.14 72.50 75.69 65.43 69.41 27.36 56.81 35.57 -99.48 65.47 19.57 29.49 32.15 23.02 98.68 63.83 89.16 8.16 24.53 68.25 14.72 33.00 60.53 43.25 3.42 69.84 22.51 43.17 5.44 88.63 52.00 88.65 12.58 37.87 94.69 66.85 85.39 38.70 23.94 11.61 82.71 81.74 87.43 14.34 44.56 57.68 80.83 10.09 96.05 28.26 18.40 99.36 13.88 84.18 22.31 39.32 52.60 55.19 96.97 74.73 67.97 94.39 72.54 31.73 35.57 65.67 50.51 53.71 10.73 54.25 99.43 0.16 25.79 7.90 98.70 94.11 8.72 76.39 25.92 47.19 4.16 67.93 91.37 14.83 46.99 65.46 2.47 25.72 58.87 16.15 40.88 60.07 9.40 44.41 43.78 25.56 67.67 85.06 16.09 88.26 54.54 2.07 10.47 38.82 3.47 80.39 50.24 9.37 -68.95 5.99 75.69 63.39 57.53 9.94 30.82 68.48 9.30 19.26 1.51 34.61 4.93 73.90 81.60 3.58 66.15 50.63 92.75 34.07 89.71 19.46 22.13 58.08 28.55 67.97 87.26 18.56 62.03 64.50 32.67 7.00 96.62 70.32 74.35 80.72 67.81 18.02 64.60 81.82 73.11 78.01 22.93 81.55 25.84 90.95 66.01 16.73 78.39 68.46 68.88 91.66 81.37 78.04 6.74 54.35 59.18 70.63 80.00 4.50 51.14 53.64 90.04 47.27 35.42 86.94 50.16 9.83 32.95 49.88 75.08 12.11 97.88 80.05 10.44 10.06 46.92 64.92 25.82 42.67 62.83 93.16 73.93 52.89 42.24 92.73 2.22 95.23 29.63 36.45 72.82 12.15 6.44 50.13 22.75 18.77 27.11 22.42 46.32 37.34 -68.59 25.37 60.38 63.86 50.34 33.98 96.54 81.72 32.56 86.23 5.54 68.44 45.48 86.17 31.43 55.33 80.90 70.79 16.73 53.13 25.46 87.37 33.28 64.21 95.19 54.14 67.00 93.78 93.07 38.70 29.65 93.35 88.41 59.86 48.72 70.13 37.74 2.48 80.20 27.45 49.56 36.49 80.67 8.18 97.03 35.53 6.39 15.52 99.31 18.56 29.02 99.77 4.90 82.92 5.99 26.63 5.01 37.51 60.92 87.19 53.24 21.96 63.08 91.18 13.97 12.59 68.88 79.91 51.67 72.60 90.58 68.56 72.23 24.82 99.79 93.79 41.03 20.05 16.27 46.11 82.17 43.04 73.51 62.79 98.70 16.12 52.14 62.51 71.82 15.71 40.69 56.16 44.19 45.48 84.88 30.55 85.32 13.13 83.29 95.12 -53.62 25.51 43.22 56.97 91.82 52.17 77.32 29.50 20.90 58.69 61.18 44.92 30.08 18.31 22.46 35.50 53.45 64.57 76.99 55.60 6.42 13.23 85.48 28.20 62.41 58.59 44.51 67.61 83.98 50.98 88.38 71.83 65.91 10.42 98.26 72.96 2.39 4.40 72.55 41.71 81.39 84.19 25.79 47.55 14.86 20.15 12.83 55.74 31.27 35.66 33.00 85.42 25.65 24.73 16.16 42.84 14.86 87.52 17.03 50.94 61.66 67.35 22.72 69.35 77.53 91.11 21.61 25.42 38.14 84.25 7.53 9.97 22.25 74.56 84.32 35.16 94.54 43.05 89.54 73.36 64.44 60.20 3.24 61.27 22.94 77.74 69.77 68.44 28.98 99.39 53.67 99.64 84.41 10.59 35.34 87.39 19.00 45.79 33.09 97.90 -2.88 78.99 72.54 6.81 20.29 16.44 53.72 55.52 25.45 24.78 45.00 3.51 9.83 45.04 40.80 51.02 24.41 13.04 10.57 24.26 8.73 94.73 96.41 87.12 66.96 56.02 36.96 5.67 65.45 24.69 41.71 30.88 14.76 77.88 69.88 50.21 67.44 61.31 9.43 93.28 73.75 88.16 33.56 82.83 26.32 4.82 42.14 9.84 14.73 48.73 96.63 83.90 34.33 1.52 44.34 38.08 34.93 6.73 25.80 63.01 13.63 62.07 51.88 11.37 18.61 15.84 17.78 70.50 12.63 91.59 23.56 12.52 45.97 73.59 78.64 95.71 1.11 32.61 46.24 18.65 70.64 98.18 34.05 13.32 53.75 28.08 50.86 66.85 79.14 93.83 91.52 86.15 65.91 50.48 77.34 36.14 54.70 54.77 25.69 46.20 -18.29 55.01 32.47 97.35 31.98 14.60 19.35 42.87 75.20 2.99 20.03 59.90 49.83 47.32 87.29 60.16 33.57 59.42 4.58 42.26 55.31 39.77 94.91 65.75 78.25 49.26 22.10 84.05 57.54 0.50 67.75 56.35 20.52 96.16 2.83 76.76 4.79 91.38 63.59 59.61 17.15 66.07 58.44 13.36 18.69 81.53 17.17 53.02 67.07 47.32 54.60 49.77 26.57 47.36 20.23 82.33 16.11 37.77 10.10 49.67 51.90 89.56 83.16 99.06 57.13 69.93 25.48 54.71 86.62 68.13 76.80 27.81 82.87 10.82 94.93 86.03 54.43 36.86 3.81 51.09 65.71 94.72 18.30 97.19 52.15 99.79 64.93 18.70 14.75 57.84 22.40 82.55 48.16 61.73 17.48 8.27 70.40 14.08 54.15 81.05 -44.98 51.81 2.45 1.36 95.38 86.37 56.83 93.29 63.32 38.60 83.35 95.97 42.01 86.58 48.44 76.81 95.44 45.24 57.42 41.71 99.89 6.91 55.02 44.72 3.75 64.51 34.99 64.81 18.18 72.62 17.14 6.65 38.89 41.73 71.30 43.09 73.17 22.28 12.79 88.26 66.22 87.69 15.72 85.93 94.12 73.35 81.68 24.64 27.22 20.95 9.42 92.83 23.38 47.96 89.53 19.25 56.84 65.21 60.09 75.66 99.86 24.85 54.19 20.51 27.16 21.15 38.40 50.07 52.90 28.91 22.03 6.49 29.29 31.79 4.06 62.80 81.22 7.38 9.79 51.67 96.90 93.55 40.67 25.62 81.72 13.57 62.65 1.05 33.98 88.62 41.12 93.56 41.07 77.91 73.04 66.91 90.07 9.24 75.63 93.66 -4.13 97.21 1.10 39.84 52.30 56.56 55.46 19.51 47.82 79.02 28.53 7.85 82.10 79.42 5.34 67.33 40.07 17.15 60.20 36.21 70.44 69.82 16.18 47.69 88.10 56.05 75.53 22.80 54.93 63.94 87.93 18.63 95.90 17.75 73.28 49.16 81.43 34.20 46.70 69.26 33.73 67.49 50.47 8.21 64.29 79.76 52.81 29.73 20.84 79.46 32.84 55.28 46.19 70.68 2.22 23.28 39.79 32.59 49.51 40.94 8.57 96.82 4.39 29.93 36.41 80.91 89.65 85.07 56.70 96.79 32.68 78.66 61.45 22.03 44.44 92.33 84.26 15.38 94.70 85.77 4.82 2.99 24.69 57.97 48.64 46.82 52.45 79.30 12.09 79.58 99.17 36.02 80.77 25.33 95.08 59.16 65.74 3.47 87.24 41.90 -65.22 82.33 96.76 23.25 25.14 35.28 5.50 56.38 82.38 47.12 72.91 5.85 78.09 13.94 83.73 6.80 60.90 23.50 2.50 39.20 92.28 16.75 31.71 77.85 75.31 1.19 2.06 77.31 13.58 39.15 95.94 81.70 84.25 33.34 39.45 69.10 10.16 18.91 47.71 72.47 4.04 52.02 90.35 71.86 20.78 62.69 60.82 70.93 66.79 73.44 75.80 26.79 35.21 92.07 77.87 32.38 97.22 36.96 23.85 68.27 73.82 5.51 30.48 16.02 0.59 41.46 11.43 89.96 52.29 27.70 85.62 44.19 26.18 38.86 72.28 25.85 52.69 42.61 44.32 27.45 18.90 2.27 57.59 19.01 20.23 0.73 16.50 64.61 91.60 40.52 36.81 76.62 29.84 52.39 6.02 1.36 42.66 5.40 75.89 75.09 -46.67 72.16 79.46 89.98 48.07 34.87 51.50 10.92 85.21 9.69 68.63 39.77 99.85 10.52 26.83 58.13 52.69 99.34 86.68 34.43 63.93 58.32 49.61 70.64 56.37 0.71 76.02 30.20 63.39 57.58 84.93 0.87 21.39 1.27 18.60 93.85 5.59 69.94 38.41 40.90 12.33 67.34 98.81 60.62 40.30 23.36 64.81 91.43 77.91 48.03 30.93 9.42 19.90 43.73 29.44 74.03 43.11 92.02 78.74 66.21 22.99 81.73 10.81 10.66 67.52 72.50 82.49 58.80 88.26 79.19 57.34 46.52 0.39 15.38 55.91 61.38 22.69 30.45 64.47 81.04 15.83 91.72 97.65 53.52 53.02 72.48 76.72 8.63 76.48 37.42 19.98 34.93 18.93 49.20 69.42 1.81 37.27 99.06 6.75 39.45 -7.38 6.17 60.32 64.46 16.46 40.62 49.15 71.66 47.12 88.13 0.42 5.92 1.42 89.76 83.31 82.78 53.54 59.13 88.83 16.25 32.14 27.94 29.82 53.38 86.20 85.89 14.82 26.77 31.38 65.99 20.75 1.05 75.42 69.22 89.49 55.16 14.78 38.40 41.10 69.43 18.23 22.78 77.66 92.98 68.82 12.26 76.06 52.43 8.19 94.58 79.14 59.92 86.48 20.16 36.76 65.64 74.24 95.63 46.15 76.84 43.17 53.39 32.42 91.63 57.96 45.20 27.13 68.44 16.06 74.53 40.18 69.16 71.21 61.78 27.13 76.44 69.47 95.69 33.90 54.10 47.02 28.44 26.01 3.22 52.40 89.67 62.11 3.96 27.92 10.48 38.68 83.41 69.44 18.10 44.23 75.15 15.41 93.02 95.94 91.20 -5.58 50.34 98.40 38.27 19.81 80.87 27.82 40.91 10.75 39.70 16.86 59.47 28.80 9.98 71.25 91.20 68.47 22.64 42.96 51.25 67.84 49.27 80.07 45.74 10.93 82.20 93.59 8.92 94.52 45.23 57.59 90.22 3.48 98.73 85.53 46.69 83.20 23.27 70.19 56.50 15.51 21.83 6.01 16.60 1.18 57.24 96.79 26.97 74.87 48.59 96.51 14.31 4.86 78.84 59.21 91.46 0.97 71.09 94.12 60.49 55.38 91.57 50.33 11.15 95.64 25.03 79.40 57.20 86.45 17.83 17.05 46.93 33.69 71.50 45.38 0.81 35.08 67.17 11.51 87.13 14.88 80.30 60.09 1.63 50.81 64.91 66.27 43.46 56.32 25.88 90.82 59.00 42.70 99.88 98.28 72.15 16.25 76.88 47.87 99.76 -37.73 54.42 86.72 91.03 35.71 8.38 49.87 61.01 55.95 37.97 65.40 20.33 92.48 95.10 81.48 65.13 13.36 9.78 3.77 53.70 77.37 17.78 30.62 37.30 80.17 64.66 98.78 63.61 14.28 65.22 7.79 88.15 97.02 92.95 33.26 89.24 4.11 73.81 25.42 10.17 79.20 62.71 53.07 35.95 20.57 62.66 28.73 43.50 65.63 36.82 49.49 13.64 18.48 44.64 89.41 16.01 64.95 34.14 97.05 10.39 43.36 91.55 15.19 52.51 29.99 96.04 2.61 73.18 40.82 51.80 25.71 19.54 12.16 92.73 6.31 6.50 78.53 89.63 62.29 49.71 36.91 21.20 5.88 40.53 13.56 5.80 66.83 80.13 97.80 48.32 66.30 33.98 13.62 80.86 73.53 60.87 55.91 30.29 6.43 15.11 -27.37 81.47 10.39 7.54 8.07 81.92 37.41 31.13 3.56 24.41 52.44 71.73 3.00 37.28 42.66 76.09 16.88 84.11 45.39 90.31 94.70 17.50 15.79 75.18 9.14 28.43 77.56 63.32 31.36 81.71 65.71 0.60 63.42 69.85 51.53 67.09 82.48 36.34 78.33 2.62 89.33 89.47 53.00 90.54 44.91 8.93 18.11 13.20 68.07 96.20 68.60 84.25 84.44 90.65 23.32 44.54 94.23 39.06 82.20 60.84 57.88 16.48 93.08 96.60 64.97 3.41 32.33 50.44 89.28 29.12 18.97 56.49 73.71 86.75 91.69 42.99 31.70 14.45 86.05 33.29 85.88 41.63 89.32 79.66 82.48 59.16 38.35 9.31 52.04 79.48 20.59 7.06 37.56 84.82 42.27 81.11 29.48 78.84 65.01 75.29 -33.49 79.50 27.33 90.21 23.14 79.70 73.56 0.64 95.81 46.06 21.97 87.42 35.50 55.59 7.52 60.87 97.42 97.07 24.00 27.85 9.33 59.25 33.98 89.40 68.83 11.46 40.30 27.13 32.09 62.18 9.01 73.30 2.90 3.22 59.49 21.55 24.12 56.95 80.51 84.39 33.25 77.57 4.10 28.98 50.90 88.27 74.94 17.31 52.05 45.01 42.03 30.64 1.94 30.65 95.30 11.50 93.37 77.74 89.97 68.91 66.03 79.01 28.94 30.14 23.24 39.36 24.95 49.94 1.17 64.63 27.11 69.37 24.87 72.92 29.34 74.43 48.56 80.70 73.66 47.66 58.81 92.84 98.60 49.91 9.04 88.05 87.98 25.40 10.70 35.08 5.67 74.23 15.13 66.27 70.21 5.60 94.21 0.37 71.74 81.89 -76.28 82.32 95.53 10.00 14.64 26.93 68.95 39.48 34.46 79.92 41.21 49.85 19.97 94.35 27.20 66.73 0.45 96.54 71.03 24.56 48.22 16.83 57.13 33.71 80.56 9.11 24.18 47.84 68.16 36.51 48.67 43.55 2.96 91.35 97.51 3.14 66.94 94.88 2.74 83.94 90.38 13.26 94.29 66.42 17.64 1.38 27.36 10.25 28.53 14.38 91.80 57.20 92.26 47.12 71.76 16.17 9.27 92.83 32.55 75.47 87.23 43.56 67.51 29.98 59.42 92.36 92.73 16.37 91.62 86.72 99.33 41.47 17.32 59.65 38.67 99.84 13.81 81.26 19.95 10.72 86.66 0.70 97.42 30.61 53.19 42.38 86.97 87.78 27.83 17.88 99.63 23.29 76.43 32.93 53.71 79.18 88.82 52.26 19.77 18.89 -84.50 63.90 56.46 52.78 19.84 80.80 29.01 19.58 62.73 0.17 0.76 92.57 75.18 52.68 36.39 99.50 76.98 2.31 30.67 34.60 60.33 29.38 51.76 10.89 19.15 25.00 94.00 76.98 3.22 73.96 47.35 4.25 60.77 81.82 45.32 81.70 19.36 3.46 36.72 44.26 79.32 67.30 97.96 40.93 6.89 51.29 2.75 95.33 34.99 22.25 30.88 25.87 75.87 17.69 62.97 96.30 95.95 82.72 43.94 81.91 16.53 74.78 1.12 88.16 35.76 1.43 4.42 92.84 75.78 90.90 77.02 26.32 56.04 59.62 87.53 76.16 43.20 33.02 30.99 59.90 11.39 7.38 83.67 61.18 16.45 21.48 27.92 73.64 11.60 27.80 26.77 69.17 0.43 84.84 28.48 60.09 58.86 99.21 71.31 64.66 -43.69 28.08 73.10 92.09 9.90 59.46 95.30 52.74 45.28 80.19 39.89 53.27 8.71 92.41 55.71 3.61 66.30 31.46 40.16 98.90 86.07 60.84 77.57 54.93 15.02 14.24 32.41 78.68 85.42 81.61 47.18 72.81 64.38 59.39 50.04 24.31 68.50 28.61 23.85 4.62 30.10 71.16 24.49 58.59 33.98 23.06 15.37 24.44 70.87 3.54 74.45 99.41 52.26 13.81 14.15 91.96 70.65 7.09 74.67 92.59 54.12 9.55 51.25 12.06 2.09 65.76 43.72 23.74 29.57 37.06 64.40 73.61 82.90 87.22 66.12 39.44 15.99 67.50 54.96 44.92 44.73 19.40 66.28 42.34 88.35 43.47 8.68 52.86 36.19 38.54 6.85 28.59 33.00 69.78 37.30 27.52 95.32 74.95 63.85 41.00 -93.52 77.66 61.91 37.72 20.42 94.23 60.93 68.73 80.44 47.10 13.46 71.27 54.86 36.55 84.47 15.89 77.16 66.16 61.55 55.67 16.89 6.55 25.53 19.08 13.19 48.07 62.67 67.32 80.23 48.49 3.72 84.51 82.22 45.18 90.88 86.81 88.60 26.05 61.72 47.16 72.91 74.14 58.65 37.55 93.13 96.52 23.53 49.83 72.32 84.13 0.82 83.92 54.75 79.18 96.62 82.21 13.42 49.20 86.26 49.69 41.98 58.11 37.76 59.45 53.44 12.06 91.63 14.58 38.89 73.41 65.72 55.43 12.35 41.86 66.53 6.82 21.24 94.29 95.86 55.95 2.96 75.80 77.66 27.25 81.08 68.20 74.14 28.58 46.36 62.93 72.54 14.31 61.31 54.18 60.97 15.47 6.58 45.27 3.79 0.59 -22.43 52.77 44.98 61.86 2.18 9.89 83.18 6.95 82.87 7.83 75.79 49.04 76.20 23.33 86.48 57.22 70.28 44.43 77.52 60.18 44.87 78.87 93.13 3.18 73.52 50.04 74.00 9.46 9.33 2.69 91.29 92.18 40.26 14.10 69.37 35.54 71.68 25.00 36.91 0.68 44.50 39.43 10.85 92.05 88.46 11.80 30.51 93.51 8.03 12.36 99.66 13.77 55.68 77.88 70.34 97.99 69.90 94.14 26.43 54.02 76.41 31.83 83.31 22.92 52.93 0.98 90.28 50.45 48.33 7.17 39.22 41.97 23.63 5.65 43.29 98.07 11.85 43.04 51.00 42.79 14.57 92.94 22.29 41.91 38.51 25.26 90.65 61.23 35.14 56.12 18.66 15.20 18.64 47.16 79.99 26.06 30.14 40.65 99.63 34.83 -30.95 58.39 25.87 63.26 90.01 85.08 12.48 84.70 14.43 0.94 58.69 56.50 40.18 54.48 16.96 38.53 18.09 0.14 1.62 49.95 84.18 27.14 66.27 51.47 58.35 70.00 54.51 87.66 68.64 92.69 6.80 73.00 33.99 21.58 5.65 54.16 72.36 22.22 77.63 95.44 78.23 38.84 2.29 83.40 8.38 22.82 53.31 31.35 93.75 24.75 45.46 43.85 78.58 96.73 26.01 85.47 69.17 77.03 53.07 69.06 26.38 82.27 57.18 52.23 85.76 6.48 42.12 46.13 46.55 25.52 92.77 60.28 16.68 19.71 98.95 47.22 92.39 72.93 45.15 3.80 90.66 38.50 18.80 27.80 89.02 76.72 48.37 54.27 73.29 83.63 22.49 22.76 21.34 79.58 2.79 89.35 91.92 86.65 79.13 77.04 -1.44 23.68 40.31 87.02 94.41 39.98 77.19 48.06 21.24 67.53 33.77 67.01 95.92 64.10 24.44 40.71 28.50 18.36 19.06 69.08 28.74 54.85 53.63 19.07 47.89 19.33 83.45 70.81 19.82 34.48 29.89 81.40 89.27 72.26 59.67 8.64 44.04 21.70 10.28 39.11 11.69 48.87 93.06 99.86 39.02 74.38 30.87 26.45 51.40 75.05 41.72 51.94 31.12 86.19 60.56 18.40 82.28 9.54 94.35 15.91 49.50 1.42 70.77 60.57 88.61 17.63 86.80 47.23 48.94 7.95 35.18 84.83 71.61 87.07 28.99 25.42 54.05 83.56 51.03 95.84 87.59 9.31 70.61 41.62 29.15 32.30 50.96 82.89 20.76 24.98 82.01 99.11 53.24 4.97 16.26 46.38 21.66 30.67 15.02 28.19 -95.52 24.92 63.50 34.99 43.22 13.06 0.33 57.77 47.68 12.47 65.43 17.53 10.99 90.89 52.82 6.62 23.50 5.62 91.49 38.38 29.23 24.95 93.36 69.43 14.49 96.88 75.71 67.83 30.19 52.39 93.00 3.53 29.11 2.52 63.22 90.54 57.28 76.54 64.92 45.20 27.21 48.74 52.45 72.11 19.22 46.34 39.83 29.99 11.78 63.69 83.89 4.71 44.04 75.46 19.55 10.92 30.44 15.28 12.02 79.90 20.50 68.16 38.24 60.04 70.70 86.75 34.79 86.35 22.79 84.63 65.42 76.51 36.57 96.26 48.74 9.52 54.35 70.68 74.76 95.58 69.93 28.88 63.26 13.19 39.37 25.56 98.94 48.27 79.17 4.82 6.30 90.51 66.31 89.57 16.65 52.55 40.18 3.63 94.47 80.19 -1.21 2.21 1.79 20.46 89.96 74.82 13.98 17.26 85.90 88.89 45.79 35.83 53.65 4.05 43.25 30.28 62.59 91.94 53.54 93.09 69.36 37.68 71.41 20.02 70.37 30.58 91.20 80.10 97.50 6.01 82.70 76.68 75.96 48.03 34.68 97.38 93.40 49.52 36.68 58.20 21.12 89.75 53.57 44.93 55.91 61.11 93.12 61.16 12.50 98.59 98.05 81.15 45.50 56.33 42.20 57.78 26.50 76.20 79.52 98.41 22.06 30.03 53.19 0.08 51.55 92.10 92.62 66.95 89.30 39.25 63.01 14.30 64.82 69.34 75.61 15.93 6.82 54.15 55.51 15.71 29.84 45.85 2.52 86.55 3.78 13.20 55.55 40.71 48.96 28.62 17.74 62.87 13.76 58.44 87.94 52.53 88.37 24.64 84.60 99.89 -19.06 74.20 50.11 3.14 14.58 16.55 48.52 25.85 25.95 90.06 0.62 1.58 12.33 11.88 66.16 3.03 4.28 7.04 71.55 5.90 89.68 52.74 18.95 30.02 90.62 79.60 3.03 47.66 2.15 34.11 34.43 97.13 88.69 63.49 55.13 98.66 5.63 9.60 93.15 29.12 0.99 19.13 20.81 27.75 27.62 32.73 40.24 63.03 11.39 57.61 13.29 48.50 49.16 80.23 58.24 25.32 50.75 1.02 30.52 0.07 85.86 90.92 40.52 2.96 12.30 15.94 13.73 12.37 77.90 0.13 58.23 9.86 70.32 12.03 20.01 81.72 87.75 23.93 58.06 91.02 16.37 58.81 63.71 14.17 32.18 72.36 52.83 60.12 55.01 60.95 41.41 13.47 70.25 91.61 63.17 32.34 69.64 27.10 35.62 94.36 -68.04 55.27 7.18 51.44 0.80 70.84 63.64 88.74 63.80 95.32 52.64 2.73 79.53 15.16 58.14 5.63 73.91 6.23 78.36 80.13 68.92 70.55 30.45 19.40 19.82 4.09 0.49 68.46 52.56 99.77 7.94 49.59 51.11 72.05 96.50 3.92 31.48 11.29 65.04 64.53 82.61 90.54 78.77 17.86 24.75 73.43 8.27 95.22 46.46 0.38 16.57 30.69 62.58 62.36 91.34 37.31 21.60 77.40 95.09 31.96 73.74 30.18 53.77 59.68 40.70 42.11 12.34 50.54 39.89 11.29 56.88 77.44 84.69 24.79 89.75 84.91 63.99 11.95 63.21 23.68 16.45 55.42 5.60 51.94 45.30 70.97 33.27 61.75 35.78 60.94 86.28 31.89 46.48 8.19 65.90 99.02 94.27 2.78 11.84 45.10 -86.20 18.64 15.31 52.15 21.51 3.38 41.31 33.45 8.27 44.53 92.32 94.37 75.56 71.17 21.47 12.46 28.40 55.18 67.84 90.87 56.91 99.56 39.87 0.66 59.85 65.21 55.58 90.63 0.15 24.26 71.28 70.08 30.62 74.64 99.00 41.27 92.86 90.81 62.41 69.76 9.54 58.77 64.83 34.00 43.20 2.04 99.46 70.64 16.02 40.86 36.89 93.63 82.97 13.14 74.54 91.98 50.28 55.33 8.53 0.32 7.21 88.71 93.37 54.07 27.38 16.68 26.51 87.71 14.94 15.58 89.37 89.13 35.84 84.08 12.61 1.07 38.38 22.70 68.17 39.78 84.43 51.51 99.75 79.61 91.67 57.80 1.28 12.26 71.24 6.84 62.75 40.16 27.57 11.28 47.07 37.72 63.49 50.78 87.21 60.06 -31.98 19.63 16.77 13.18 82.68 43.38 49.14 51.38 42.97 34.33 65.55 38.94 88.28 96.90 39.71 32.22 60.51 87.94 19.93 17.38 14.16 92.59 23.27 1.18 15.28 89.50 83.14 53.50 47.87 92.67 28.47 64.63 51.43 38.30 8.29 80.36 2.15 13.16 49.80 6.66 1.69 95.87 74.55 71.40 69.39 54.97 49.57 80.07 54.82 59.25 41.36 31.91 85.58 21.09 54.65 64.73 32.79 10.38 16.59 92.86 0.14 41.59 15.91 79.41 18.80 74.68 89.61 64.70 0.29 7.95 20.72 54.37 4.09 48.12 74.75 54.81 78.68 9.22 68.67 18.61 34.11 88.32 85.16 49.58 35.73 87.59 51.33 14.51 70.72 43.71 0.34 53.39 2.54 49.89 7.68 70.67 63.11 35.72 47.68 86.80 -78.17 18.24 97.04 57.33 62.61 39.86 14.04 71.51 98.80 39.84 36.69 31.61 83.78 30.01 61.83 4.88 58.75 22.00 22.72 66.38 14.45 13.85 69.21 60.04 70.32 86.09 96.62 77.02 63.95 27.27 11.32 89.24 82.47 77.15 18.79 94.39 92.26 16.60 5.87 88.12 26.95 68.09 71.20 80.03 53.95 92.86 25.16 28.14 63.89 35.41 20.12 50.40 16.50 52.17 19.27 58.62 0.64 12.57 8.39 71.86 15.50 77.48 54.77 97.15 63.94 43.47 57.48 99.65 63.24 41.83 33.76 0.25 87.99 51.77 3.14 41.94 69.94 76.37 78.69 94.01 13.38 27.64 50.17 96.12 40.06 42.92 11.68 76.52 38.01 93.27 41.02 53.74 94.63 76.68 81.05 17.28 89.14 50.03 81.27 12.89 -36.26 88.37 61.80 26.25 76.15 82.39 75.45 42.52 6.28 69.57 83.79 32.41 15.92 10.35 16.39 12.51 80.38 91.80 10.55 69.05 41.02 94.31 55.82 51.42 19.65 41.77 96.91 76.69 24.32 26.98 62.56 66.58 19.63 65.06 34.70 12.48 37.04 48.25 63.49 28.62 37.88 50.32 66.50 13.54 72.60 49.56 10.86 23.03 74.57 49.28 90.14 6.99 42.37 84.63 47.54 48.83 38.46 27.60 17.81 66.65 70.50 18.07 63.44 66.93 90.97 66.79 41.97 98.21 8.21 37.26 34.81 58.69 9.38 44.45 15.55 76.56 95.97 92.22 50.25 60.48 65.98 72.03 21.35 81.39 45.56 78.41 33.02 63.75 67.46 22.63 86.08 2.69 60.44 91.37 94.71 50.93 13.10 45.92 65.53 82.72 -92.39 36.85 84.41 79.21 18.05 55.30 62.18 97.96 65.85 79.24 71.69 61.54 27.57 71.47 71.38 43.61 72.97 55.37 95.73 91.40 66.09 87.85 33.48 16.20 69.26 48.89 78.39 52.18 13.42 88.53 66.49 58.66 69.38 46.32 9.60 46.57 77.93 25.61 57.44 98.07 94.01 2.35 4.44 28.73 40.04 86.90 2.65 41.09 62.12 42.81 4.21 64.17 57.45 64.10 75.43 13.10 43.97 88.58 11.02 21.87 22.31 50.75 9.76 22.12 63.07 96.79 79.31 34.48 5.36 33.00 67.84 69.65 25.89 9.31 15.28 40.13 59.12 12.71 79.83 11.46 80.26 99.57 95.62 11.21 50.88 97.59 46.57 61.52 77.70 71.85 3.47 4.91 16.31 99.98 32.29 73.74 65.20 82.27 8.90 29.46 -75.14 83.93 27.24 72.41 22.15 69.81 19.96 75.78 91.56 51.43 23.17 8.99 67.52 92.13 19.24 79.24 53.40 41.06 25.98 58.67 9.19 44.25 21.23 94.50 6.45 34.28 51.51 74.65 67.99 6.12 85.89 13.37 61.10 85.09 24.12 91.62 88.16 30.62 41.02 45.43 42.12 46.30 33.55 60.55 30.11 66.27 48.49 79.88 12.24 77.96 36.45 75.85 90.38 93.87 40.71 51.12 30.57 11.25 52.85 71.96 82.23 30.19 39.89 51.73 3.69 57.00 31.05 84.45 63.57 16.01 34.58 98.65 51.40 53.26 45.41 52.42 45.00 46.98 21.74 13.47 64.97 24.53 52.83 66.35 27.16 51.38 91.72 76.62 51.39 89.56 2.21 55.68 27.84 63.03 65.08 0.12 63.29 25.82 21.52 3.79 -23.48 79.01 85.93 52.04 43.59 36.37 41.68 59.55 4.38 42.46 56.88 85.89 81.54 62.94 73.02 97.83 53.24 15.28 95.08 85.17 47.71 11.23 38.08 60.77 44.91 56.69 74.94 3.27 91.84 91.02 99.77 14.03 64.75 21.55 82.09 85.93 83.25 61.97 18.04 67.45 34.38 90.90 3.71 93.93 62.51 45.57 75.35 77.29 72.62 44.42 79.56 33.20 85.83 14.87 23.90 12.62 74.66 48.60 65.78 3.25 52.17 55.07 95.27 2.89 53.15 22.82 40.27 27.68 49.84 69.08 35.10 57.16 0.04 64.71 93.63 47.52 74.14 73.87 0.76 63.95 56.57 29.36 35.73 67.00 26.10 25.82 59.37 23.66 99.71 10.24 9.80 17.13 83.63 71.31 92.28 39.62 44.61 25.65 82.18 80.19 -64.77 70.73 19.89 59.63 55.85 28.67 79.72 74.24 67.49 24.10 44.60 41.89 61.86 46.30 86.65 82.15 4.64 68.28 59.46 22.59 91.44 12.56 1.00 6.65 70.18 68.41 61.81 57.11 15.38 38.24 57.27 79.22 4.60 60.69 35.87 26.62 10.72 65.32 30.15 74.54 37.68 68.76 62.35 17.44 4.25 11.05 28.73 48.63 21.75 53.33 42.13 45.75 32.47 86.53 56.73 64.47 35.34 62.99 3.63 75.83 63.13 32.96 66.26 99.21 82.93 90.30 30.73 4.90 68.02 47.78 89.36 9.30 27.44 87.38 9.51 15.95 55.99 71.94 16.18 56.32 0.12 78.77 54.37 49.77 23.32 88.07 50.66 21.12 47.01 36.71 69.37 90.81 28.90 1.12 39.71 69.43 22.97 82.15 36.98 39.15 -98.71 86.77 59.37 55.33 96.83 18.86 39.23 71.08 42.27 50.03 8.92 95.35 1.20 76.41 74.84 50.44 98.78 86.52 90.15 69.61 30.82 99.05 59.51 9.69 28.94 99.79 26.23 81.39 79.58 78.87 16.99 68.57 96.82 74.11 3.46 20.76 76.77 24.23 53.13 82.24 96.00 21.21 28.37 31.13 56.98 63.62 76.12 75.95 52.38 47.89 99.85 94.74 20.78 69.74 82.91 14.52 30.23 59.56 42.06 53.14 11.15 17.41 94.47 94.12 6.52 11.85 14.98 86.10 62.27 48.78 94.51 85.32 43.00 87.46 23.11 1.76 84.88 30.31 48.23 22.05 10.04 60.63 93.77 50.69 85.80 83.86 96.63 19.22 24.43 43.54 48.60 38.95 51.32 5.43 58.73 40.36 84.69 75.22 68.44 83.03 -94.89 74.62 16.74 72.21 8.76 87.36 8.16 53.84 76.19 80.70 52.38 17.42 15.35 82.33 85.15 48.13 24.78 60.53 61.30 55.37 81.75 5.27 13.27 75.32 31.33 48.76 85.74 77.64 15.70 63.29 13.16 82.09 29.09 3.60 50.18 98.02 33.80 43.78 69.92 64.41 77.29 73.89 3.05 25.61 25.16 73.57 71.54 52.19 93.71 27.42 76.87 96.76 92.59 9.01 57.82 34.87 54.20 7.85 40.65 38.71 63.81 12.73 38.94 38.63 94.96 88.90 9.63 36.72 61.25 71.98 19.84 36.42 24.69 99.00 84.31 82.43 19.41 63.57 87.83 36.84 85.60 88.98 91.48 43.48 2.91 58.16 91.00 87.04 96.15 72.64 87.54 72.60 19.99 23.35 0.48 4.32 28.89 85.12 23.37 58.51 -0.14 43.63 0.46 44.17 81.27 47.10 24.05 75.53 85.08 63.73 43.09 47.04 39.99 85.44 99.42 46.15 85.03 51.32 50.40 30.48 42.71 32.50 81.06 76.49 62.50 42.50 76.84 88.81 36.77 15.74 37.66 79.70 32.25 66.22 94.76 22.75 31.05 5.36 32.54 51.81 13.51 50.52 71.08 67.95 36.89 27.21 31.56 73.62 70.54 70.87 73.96 72.97 82.26 31.01 4.59 88.96 79.82 71.54 28.51 2.19 0.06 48.47 65.83 51.83 47.61 83.72 99.65 33.41 75.21 13.95 66.13 15.99 57.63 65.18 78.62 62.99 59.53 27.64 10.30 60.65 81.97 61.78 29.21 90.30 4.42 12.21 99.51 56.18 60.91 28.28 67.40 72.99 80.32 85.09 38.82 14.35 77.88 4.53 61.60 76.29 -63.67 71.93 13.23 82.51 52.68 41.18 43.96 7.49 23.00 75.95 58.47 85.51 99.10 3.63 18.79 64.46 79.80 99.53 7.15 60.12 75.44 23.02 1.55 71.86 22.79 71.59 86.30 50.13 64.75 15.14 65.66 77.47 83.18 99.53 86.80 5.59 46.99 0.85 9.19 7.98 50.73 49.46 34.71 39.31 68.48 85.68 22.22 35.33 22.69 18.48 31.61 44.69 2.17 38.03 61.00 58.73 75.41 50.57 56.54 22.71 31.45 21.55 49.38 34.01 91.24 39.05 45.92 53.76 38.84 3.74 58.42 5.07 31.25 94.64 48.05 49.51 44.70 85.81 72.83 54.99 13.08 78.90 76.87 9.03 30.63 51.37 10.56 75.73 70.14 45.86 3.85 76.18 38.58 40.12 23.20 80.83 16.36 23.89 53.10 90.57 -11.40 48.37 87.67 74.65 36.76 69.22 83.78 43.27 97.26 28.94 30.24 69.32 30.04 17.77 4.48 74.95 50.17 56.14 83.91 29.03 99.29 87.89 1.67 87.13 47.97 94.73 76.18 97.89 42.77 33.44 92.93 32.15 38.94 36.41 69.28 22.96 55.34 75.82 27.01 88.04 10.60 79.29 34.52 2.88 75.00 76.90 91.22 86.88 83.98 20.80 96.49 54.66 84.45 38.72 4.28 28.89 62.50 37.60 47.08 1.48 13.37 91.83 65.13 82.24 86.29 23.58 27.68 52.60 81.54 6.29 24.76 80.95 6.93 95.91 81.41 2.18 77.71 64.59 7.82 71.85 24.75 99.79 78.24 48.91 94.02 77.58 4.07 73.86 37.22 54.23 14.29 85.84 92.02 68.34 3.69 82.64 41.35 60.88 40.17 90.50 -63.25 88.08 78.80 84.43 84.34 79.61 30.50 26.89 48.36 17.20 97.95 20.35 20.40 74.31 1.60 76.31 62.39 88.87 78.29 64.64 98.87 44.90 84.43 74.08 30.92 16.96 91.25 10.68 65.37 69.84 22.99 68.15 66.94 67.97 98.90 23.69 97.94 13.04 35.56 6.56 33.40 73.49 26.64 75.36 39.42 11.36 94.18 86.91 24.02 88.41 88.42 33.83 72.52 14.48 32.51 85.59 14.39 77.93 7.51 78.68 3.88 76.78 24.12 49.90 95.89 24.26 64.72 86.20 85.74 23.72 50.18 89.03 49.61 36.51 8.78 75.63 68.48 79.14 70.45 71.90 23.91 13.95 24.96 30.09 74.32 60.39 50.01 74.64 82.76 50.43 79.31 27.23 75.94 93.13 57.21 14.87 90.35 74.06 27.38 41.78 -76.71 63.53 57.68 80.68 35.67 67.34 7.53 39.48 69.08 29.88 36.27 30.32 31.15 91.78 30.61 49.24 29.38 57.47 33.39 29.79 21.27 97.23 97.56 99.75 30.39 49.80 15.57 79.67 80.48 77.99 21.53 49.53 32.35 6.21 47.79 76.47 22.21 7.18 84.27 88.64 61.52 67.30 7.51 42.55 90.83 55.07 34.47 95.70 53.47 31.95 26.45 1.15 90.33 66.67 56.03 39.68 73.86 39.00 30.34 44.27 59.53 87.12 40.60 80.74 75.99 64.26 41.11 50.13 69.91 38.19 42.66 99.60 47.94 74.85 89.52 50.20 25.82 77.35 15.72 67.57 52.35 0.32 9.01 46.02 2.39 50.79 81.28 73.74 6.50 85.73 96.59 91.41 94.95 3.70 67.52 83.44 11.29 20.84 50.02 73.90 -20.09 68.09 75.60 92.82 46.19 93.56 41.83 39.67 79.73 69.70 7.85 78.52 8.11 9.69 41.21 38.33 77.06 59.96 53.01 55.11 36.27 62.93 10.06 65.47 91.90 95.09 51.87 72.84 5.62 8.41 6.44 45.86 35.51 28.50 67.42 7.59 13.01 88.65 19.15 79.08 10.29 97.91 50.19 12.96 62.29 20.67 44.42 53.74 55.87 31.83 36.23 66.29 50.84 68.23 66.00 27.73 69.70 98.76 36.64 99.16 10.45 34.75 21.85 11.23 26.85 92.44 52.21 88.34 73.63 19.89 18.86 46.13 86.35 49.18 41.27 51.06 56.54 8.40 47.33 7.31 6.93 88.14 91.18 6.71 23.06 28.41 33.27 21.56 17.19 7.63 54.78 49.07 35.62 75.55 75.43 40.69 16.86 2.48 18.35 24.86 -77.96 64.91 14.22 27.28 42.55 12.70 52.83 52.98 71.22 97.89 9.22 17.76 4.17 77.76 55.33 71.91 7.83 52.72 46.87 24.65 29.00 97.93 22.01 16.44 49.71 85.46 67.30 98.99 45.40 79.85 42.31 26.20 57.88 24.08 22.92 97.54 45.17 10.57 26.75 87.85 26.43 2.10 80.72 39.14 51.80 81.59 11.35 2.21 85.52 52.76 87.42 9.78 92.98 1.72 77.05 11.15 65.97 59.35 62.05 4.79 40.13 6.51 93.50 22.14 34.81 94.44 2.63 50.40 37.73 46.04 0.31 91.69 48.51 87.00 99.60 83.34 7.19 84.64 84.99 39.32 24.30 84.87 14.69 3.80 9.71 22.39 3.68 73.14 49.66 72.21 83.13 59.70 65.04 12.72 83.27 68.07 76.99 9.19 17.20 32.69 -65.45 18.76 45.46 73.30 72.94 36.42 34.92 17.52 72.17 97.91 32.09 92.82 5.74 91.79 2.79 58.60 63.74 79.00 94.16 55.44 98.13 61.46 62.03 56.71 24.93 11.00 74.68 4.14 70.08 94.08 16.16 83.37 56.07 20.56 6.65 81.29 72.73 84.20 6.03 8.61 32.90 97.87 88.70 25.21 2.01 34.26 47.91 79.41 75.89 6.60 61.59 63.54 56.97 32.11 0.89 20.21 47.90 23.16 8.66 71.40 27.71 11.42 12.50 44.77 38.35 79.09 14.09 50.49 9.54 28.25 83.35 36.24 17.93 39.43 1.00 65.46 67.90 97.57 23.13 98.76 23.74 83.57 61.13 64.71 42.04 91.24 18.63 14.78 22.72 79.10 2.69 32.08 42.68 94.01 71.10 47.00 32.27 7.61 96.25 86.29 -40.52 0.94 41.33 18.64 11.53 51.21 34.93 98.99 67.27 29.17 51.48 74.75 71.27 98.18 52.09 89.22 96.33 48.54 9.13 16.45 69.42 30.04 59.57 7.47 82.58 55.38 94.65 69.85 79.80 98.23 48.86 12.51 26.38 5.67 47.62 92.60 78.57 75.43 17.25 63.33 23.44 29.02 58.90 67.64 88.35 70.21 44.78 49.84 38.35 97.55 97.92 7.88 13.38 71.50 81.20 25.98 55.92 47.83 50.41 68.06 20.88 71.53 48.11 98.66 21.62 71.08 79.33 88.23 65.54 61.32 30.08 79.64 87.05 17.85 86.08 80.21 55.87 63.55 12.31 89.62 14.73 53.06 66.42 37.86 29.90 14.58 67.16 45.73 10.74 45.32 64.04 52.21 82.44 88.94 23.47 69.51 49.61 95.43 51.34 28.67 -71.18 85.44 93.59 52.96 37.06 20.07 76.35 56.42 57.70 30.93 53.13 34.80 2.85 89.31 11.07 41.89 46.14 17.71 66.24 41.44 23.06 97.03 85.93 22.85 93.14 44.53 35.87 79.25 96.69 6.30 29.90 27.19 2.96 71.41 0.18 0.50 22.07 69.59 61.04 50.26 16.97 55.69 74.19 68.61 5.35 70.02 60.30 79.28 84.92 65.85 92.42 6.67 75.55 19.60 29.17 27.39 2.89 72.98 52.33 5.25 15.99 36.31 30.42 95.13 65.78 76.91 50.11 52.85 47.17 8.67 34.30 85.55 99.11 42.33 88.22 80.00 72.22 11.69 61.75 51.67 38.57 89.86 23.60 11.98 98.68 6.21 54.90 35.07 99.96 47.58 60.52 31.61 50.43 91.23 50.95 53.94 49.99 21.16 89.00 0.01 -27.33 93.85 0.35 49.43 63.68 21.22 29.29 16.24 71.49 80.01 54.85 62.07 24.56 69.54 42.35 28.15 15.10 43.19 18.08 88.54 65.72 88.04 93.66 41.41 85.38 85.10 22.63 0.44 16.12 93.92 67.49 69.16 63.60 71.51 85.27 57.72 5.76 82.05 87.87 31.77 58.02 27.29 54.57 4.57 49.79 41.45 81.12 74.67 96.21 17.36 92.64 58.32 73.70 4.17 87.15 44.61 10.97 20.95 5.26 30.82 5.24 0.96 59.41 11.83 84.57 35.41 15.82 25.85 72.14 64.51 47.10 39.99 98.31 72.63 27.74 37.55 99.62 27.42 6.77 80.76 87.68 29.11 42.64 85.17 97.07 87.82 73.67 19.72 13.06 41.89 46.80 18.96 98.08 36.83 79.10 93.78 2.96 61.27 62.47 33.26 -77.93 78.07 27.52 13.46 15.28 42.30 83.58 76.49 18.72 84.12 80.67 58.53 73.54 45.42 90.80 53.56 12.85 17.65 51.20 33.26 48.00 26.43 75.02 35.32 62.07 77.54 61.70 60.09 41.52 34.11 19.26 84.94 98.35 0.03 87.78 43.23 55.34 5.07 55.83 37.99 11.75 6.24 26.66 73.65 17.48 42.03 49.58 41.72 51.98 91.20 12.92 31.73 94.38 56.31 52.63 97.88 89.11 23.37 24.48 43.45 91.02 7.64 3.99 24.16 4.61 89.45 91.47 34.44 32.51 0.78 52.44 60.92 78.99 5.35 9.17 60.79 90.64 52.00 59.22 91.32 48.21 47.62 51.76 13.59 65.01 40.53 18.74 58.77 91.57 36.09 2.57 5.02 13.07 66.86 41.72 22.18 32.32 82.40 36.04 12.14 -21.44 67.66 71.51 34.92 47.84 10.42 70.34 20.42 23.47 87.84 89.46 9.60 22.66 58.47 78.76 42.34 99.56 87.37 88.52 70.27 34.16 33.33 54.21 20.82 15.04 77.55 43.75 67.17 79.11 95.92 66.09 13.80 36.31 73.83 11.53 10.93 0.50 57.81 44.36 6.51 48.57 23.23 15.67 59.23 89.45 69.34 77.66 55.32 25.55 21.55 19.05 42.88 31.50 36.82 31.67 43.53 86.60 98.47 10.71 15.77 11.24 46.08 57.76 32.74 4.29 79.79 71.31 43.11 29.22 32.68 7.58 28.00 32.67 24.13 19.47 54.27 41.86 5.72 30.46 92.38 53.63 99.35 52.92 84.59 50.72 33.57 4.72 71.76 80.17 92.85 71.99 45.83 68.64 60.92 13.80 60.89 69.40 58.24 27.21 40.77 -14.13 34.33 57.40 75.20 96.18 22.30 4.53 27.88 12.91 53.27 46.90 41.12 50.36 56.75 47.13 30.72 49.38 24.34 76.55 94.36 73.05 86.58 11.89 39.32 22.14 3.74 95.49 49.23 19.57 69.22 45.97 5.45 50.64 65.97 80.85 16.62 69.83 65.53 87.78 52.06 9.34 35.17 10.15 76.95 31.89 20.72 38.94 63.00 38.40 71.28 34.18 79.93 38.37 12.32 18.91 3.18 54.77 3.98 55.85 72.54 1.66 29.65 68.56 53.12 61.54 38.01 46.21 76.00 73.33 8.15 94.91 40.36 29.96 98.49 94.37 65.35 32.98 97.85 64.52 66.50 25.03 0.29 95.55 43.31 66.05 71.78 77.57 37.65 39.18 43.58 0.69 72.23 53.96 69.23 49.38 94.60 57.22 78.68 0.73 3.97 -97.34 61.22 3.05 17.23 54.65 20.06 38.64 36.33 71.06 71.77 72.53 61.83 89.66 81.36 32.85 43.30 59.90 68.75 9.82 98.41 23.00 57.59 47.95 17.38 76.88 4.88 85.23 53.59 86.12 19.90 80.60 38.91 81.35 7.58 50.91 16.21 4.59 18.44 84.03 26.58 41.69 30.07 43.58 87.65 19.07 7.52 66.28 63.18 87.94 72.10 98.31 6.67 36.69 4.54 85.41 79.45 97.65 25.30 12.44 72.63 30.55 78.69 54.81 59.91 47.85 48.87 67.20 20.78 96.98 48.36 99.33 91.16 91.86 11.86 65.44 38.91 13.47 94.98 18.52 27.90 69.71 66.56 86.46 85.52 90.82 70.27 41.61 52.51 76.13 92.20 98.45 93.71 80.24 50.32 80.03 1.84 12.59 13.73 67.65 99.44 -31.84 67.34 11.32 98.87 22.86 64.64 70.93 69.38 16.32 18.49 24.54 23.50 18.34 86.10 68.28 82.33 42.98 47.05 91.20 13.66 86.97 15.28 55.46 25.73 34.02 91.17 67.15 55.40 75.42 79.31 70.41 62.63 30.66 3.35 84.93 33.42 35.01 4.57 41.63 28.33 71.88 24.84 43.35 75.27 14.73 70.40 31.78 13.04 97.35 36.39 0.17 98.43 79.91 99.38 21.23 4.02 18.30 53.95 68.30 98.63 76.22 89.86 68.52 12.16 71.27 68.48 9.74 78.40 46.65 20.07 21.99 34.86 75.27 7.11 92.13 36.03 94.21 60.12 59.19 92.01 66.58 24.05 97.18 99.87 51.77 63.25 19.43 25.51 72.68 5.03 6.47 89.72 7.10 22.24 66.54 21.99 76.33 90.34 16.33 20.00 -28.42 51.83 71.21 20.26 72.15 22.53 88.67 37.75 43.36 24.47 28.37 23.70 76.69 80.03 89.07 25.94 15.91 90.59 34.02 77.95 58.37 38.28 9.62 66.43 51.71 48.39 42.52 31.95 29.27 4.34 63.45 0.94 86.53 76.97 40.70 54.89 65.70 85.53 8.64 44.62 49.03 36.70 72.78 74.52 29.81 19.75 70.33 96.37 38.98 9.13 69.99 9.14 77.00 57.82 91.27 66.36 81.32 94.16 19.66 67.93 15.90 37.29 77.42 91.34 60.98 66.57 52.49 77.33 32.69 74.95 6.22 92.22 93.75 26.50 56.78 91.59 90.71 82.01 57.73 51.55 8.22 57.55 96.86 11.36 35.68 49.99 54.23 17.31 28.61 24.84 63.91 13.83 72.92 33.12 82.57 79.88 98.39 15.12 20.59 83.16 -96.45 63.34 30.82 17.95 74.41 46.12 2.93 78.85 82.98 92.15 42.32 98.66 14.04 81.41 61.20 68.83 65.46 57.17 97.70 32.13 96.60 77.16 92.00 99.38 15.67 56.45 28.39 58.62 13.44 49.07 99.64 33.02 43.72 23.36 48.83 31.40 99.67 29.64 87.92 11.91 39.26 99.18 89.91 62.05 60.78 26.38 38.90 52.77 46.67 40.86 56.97 65.20 84.98 48.58 45.96 58.41 97.48 12.35 53.09 1.18 12.14 18.99 98.99 73.17 76.68 98.76 41.68 13.24 57.99 29.79 53.49 75.07 99.06 24.69 79.33 38.51 76.64 34.47 76.56 27.62 47.36 66.39 13.30 81.87 65.55 46.79 74.26 28.80 65.69 86.41 36.38 31.44 82.73 6.78 53.25 52.94 44.59 47.68 85.72 3.31 -75.62 76.92 92.40 9.79 39.76 25.55 41.59 44.41 21.67 48.27 41.99 79.84 73.86 88.22 72.69 74.61 20.71 0.99 35.17 35.38 23.92 28.21 32.08 8.73 50.13 9.45 36.63 84.52 57.90 39.78 11.23 76.32 50.89 41.38 3.45 24.88 7.89 62.99 30.64 88.78 60.66 98.16 49.72 37.76 59.65 57.71 52.34 59.49 4.62 6.11 52.60 91.83 2.44 69.53 97.81 89.84 92.01 35.60 64.62 70.16 13.99 38.81 22.23 87.55 81.87 56.18 61.43 82.13 2.00 86.29 77.66 33.88 80.72 8.52 72.26 60.05 94.60 47.51 32.35 67.50 58.48 6.48 8.11 91.64 58.25 87.63 16.14 44.01 81.25 60.28 47.53 16.59 73.41 5.51 33.77 45.44 32.95 58.65 70.53 17.21 -93.83 4.32 11.35 86.94 36.50 68.50 81.29 14.17 42.35 70.26 29.51 88.73 66.87 22.17 7.01 84.39 52.65 56.25 13.83 41.68 38.68 94.11 3.47 43.89 33.72 81.92 20.76 69.86 71.56 91.62 26.28 66.66 17.56 45.21 42.59 96.10 89.63 83.29 16.54 27.54 30.04 96.42 91.45 78.70 53.32 10.43 88.04 35.06 37.09 15.66 72.25 27.77 82.27 37.80 32.96 78.61 10.30 38.35 96.04 54.00 29.68 36.13 64.96 31.11 33.49 89.68 48.20 98.37 92.42 62.63 79.66 77.88 36.34 2.73 8.83 23.66 51.77 90.06 97.74 85.50 72.34 18.21 36.19 62.45 79.31 38.76 34.81 29.62 77.98 28.85 87.99 20.35 9.89 62.92 52.00 8.47 98.13 86.31 43.59 57.97 -41.65 80.83 32.82 49.53 13.63 22.30 73.14 52.96 81.58 29.04 39.17 9.44 77.52 67.63 90.78 65.77 88.51 80.22 42.18 41.49 86.50 85.25 15.24 46.61 70.02 55.99 87.93 3.11 84.72 34.99 77.05 58.67 58.43 97.23 88.31 92.66 49.60 58.82 42.37 52.65 14.70 64.62 82.50 48.51 33.80 64.56 19.61 32.39 59.14 13.13 74.81 96.63 9.49 54.17 24.12 0.96 85.56 4.54 73.47 41.68 18.50 94.20 6.09 24.69 18.73 9.88 75.72 64.43 73.25 37.34 23.25 22.23 21.44 86.47 45.06 52.51 21.99 72.60 34.52 31.02 3.30 76.06 87.48 54.26 18.38 89.62 1.32 42.40 35.87 45.04 74.65 1.13 13.03 42.82 27.48 33.35 36.59 61.27 99.26 59.71 -50.41 35.01 87.71 94.41 80.67 67.10 89.50 97.61 22.06 6.12 72.90 7.46 80.64 94.06 79.22 57.29 34.69 94.43 67.77 82.19 18.12 51.53 66.73 7.84 7.23 45.58 26.18 57.86 41.59 92.46 18.32 9.07 57.51 16.58 80.77 75.61 70.80 17.66 86.26 97.15 59.79 21.40 7.33 94.88 40.62 60.09 93.30 73.23 17.78 6.95 65.22 36.38 30.30 22.07 7.72 54.32 21.89 71.06 95.59 34.34 35.85 57.73 96.16 96.06 34.20 28.38 70.77 93.30 94.89 69.16 2.27 93.11 7.77 55.74 5.85 44.34 40.61 43.14 77.87 99.26 6.04 2.21 98.79 32.65 5.47 57.82 87.21 62.06 71.08 89.86 76.90 75.65 48.52 71.30 98.02 71.68 33.39 49.06 64.24 85.44 -56.59 73.65 17.55 50.97 17.30 30.28 28.94 6.10 10.51 72.25 43.23 58.23 67.87 33.25 61.59 44.39 81.35 11.19 33.79 38.14 80.76 65.55 61.18 22.84 93.63 10.25 10.11 6.35 1.09 86.54 7.92 36.59 53.66 48.95 26.47 89.97 51.18 73.79 59.96 93.31 87.69 36.43 93.56 56.48 25.22 65.58 12.31 46.12 24.23 28.69 23.94 25.43 42.08 19.88 43.38 96.07 75.26 71.26 65.28 8.31 45.30 73.85 77.24 35.55 92.19 96.46 15.16 49.70 27.96 71.44 82.88 93.08 1.08 97.15 12.66 51.82 35.51 97.19 47.06 48.31 46.45 30.25 76.24 31.93 83.50 67.09 43.83 13.79 56.82 55.80 23.96 97.49 19.98 57.32 55.00 63.39 26.47 36.83 28.90 67.79 -92.07 0.29 85.00 65.46 84.15 70.50 47.47 80.39 89.47 44.50 62.40 17.83 23.15 42.92 68.69 69.52 68.64 4.68 52.17 60.77 3.72 60.25 36.16 68.20 0.57 28.08 11.64 22.87 73.91 15.19 35.02 61.92 8.15 81.66 82.16 34.74 29.94 9.52 35.88 49.71 62.34 29.05 44.64 39.54 52.19 75.52 80.73 95.24 79.04 80.50 69.57 23.52 54.50 25.62 9.06 73.50 61.84 39.16 71.18 45.32 30.21 25.40 74.60 88.88 24.57 47.12 13.44 45.02 93.70 31.82 79.08 6.00 30.25 57.78 6.17 16.03 94.38 19.84 48.51 99.49 13.87 93.96 14.30 32.57 40.61 6.42 11.63 61.29 79.59 80.52 37.53 5.75 63.82 55.21 19.26 85.89 71.52 46.89 19.57 98.73 -86.86 53.09 79.19 59.95 15.10 62.90 70.17 37.26 92.65 7.83 13.99 25.25 65.14 69.69 38.50 80.62 83.66 4.90 52.06 72.96 77.18 80.75 66.00 2.32 58.25 89.80 48.52 92.08 90.75 96.12 3.31 19.98 69.60 85.60 53.40 28.21 44.95 12.30 79.79 21.39 63.64 64.97 12.38 81.71 24.43 78.59 45.57 8.81 92.95 67.76 31.46 19.06 15.90 31.73 28.70 19.29 14.13 18.77 67.33 89.45 87.77 5.59 52.41 17.28 12.84 83.27 50.18 64.54 11.48 83.92 25.03 98.99 7.04 87.03 26.08 41.27 83.27 17.27 37.48 76.65 57.63 64.32 9.80 77.58 82.15 25.31 62.72 4.66 91.36 76.36 55.13 53.59 70.75 26.59 98.37 41.77 41.11 10.41 37.47 47.27 -39.87 59.81 19.86 4.80 3.41 72.93 33.57 16.06 87.84 28.37 95.65 50.64 84.19 1.81 41.16 46.97 51.93 43.44 82.81 28.64 21.12 53.60 87.08 96.23 89.26 62.25 29.74 40.59 23.97 9.61 87.51 7.84 5.75 47.04 44.34 81.01 81.49 99.05 84.58 43.72 96.31 19.82 50.89 62.68 66.67 56.19 8.59 5.59 85.72 6.88 72.27 38.59 30.23 59.26 76.29 10.50 76.11 14.46 28.75 87.07 41.77 42.21 62.68 41.95 89.94 50.61 55.29 58.55 72.74 54.74 31.08 12.45 49.88 70.82 28.94 64.76 34.44 72.92 27.60 76.95 41.44 35.03 71.24 75.22 8.08 55.37 77.98 6.62 39.40 76.69 25.87 23.76 9.99 30.06 15.43 7.77 47.41 79.52 78.24 99.24 -27.28 56.42 9.69 84.11 90.26 13.03 87.44 17.21 67.68 8.64 8.78 1.51 92.33 76.91 60.00 53.98 97.55 90.53 4.20 62.60 26.33 70.95 83.44 45.42 43.93 59.32 15.64 41.62 76.01 77.34 67.12 1.04 70.61 44.28 27.03 45.88 40.23 83.79 29.86 23.41 30.07 44.35 34.42 92.28 39.49 64.54 34.35 72.46 49.06 39.35 4.45 43.59 83.95 87.25 13.33 15.43 71.51 96.19 61.09 29.06 26.90 25.83 92.46 90.80 98.26 21.03 31.22 99.05 98.29 17.49 2.34 59.39 89.84 78.34 20.93 56.55 28.74 50.63 66.10 44.40 53.22 55.72 29.46 11.50 14.58 44.75 80.08 83.40 89.66 69.60 90.73 69.04 78.51 18.50 61.41 20.14 22.87 96.44 31.78 47.96 -7.43 11.46 85.94 48.88 69.20 22.36 82.60 27.67 93.43 63.01 42.96 62.53 16.66 59.10 3.83 87.99 29.77 94.13 57.56 93.79 47.92 49.57 19.41 18.70 42.21 45.86 24.27 48.34 43.51 35.93 24.49 96.87 92.95 51.20 56.26 20.10 33.37 14.54 46.70 24.93 0.92 55.31 42.61 42.21 4.91 85.38 93.06 5.29 22.42 14.69 21.13 50.11 78.67 18.63 35.92 0.98 70.50 89.28 79.36 29.69 25.45 91.10 6.10 62.23 99.56 30.92 6.99 30.53 67.74 17.15 38.01 73.71 73.03 28.30 66.33 10.62 35.06 40.79 75.11 80.59 85.59 25.43 79.30 93.12 42.91 23.60 19.88 62.39 34.24 56.99 92.92 17.04 39.46 13.90 4.50 74.15 8.09 13.85 18.85 84.07 -96.57 92.51 28.07 45.45 3.49 64.48 40.56 11.99 95.31 43.12 10.90 98.41 21.08 27.64 30.21 19.19 57.69 14.21 20.34 49.11 47.47 12.99 14.42 41.62 95.21 51.86 67.26 47.98 62.40 59.63 24.95 57.02 5.32 63.82 32.11 70.61 44.67 11.33 7.20 75.59 46.10 86.42 40.29 8.03 20.48 81.27 70.35 85.06 7.71 65.38 2.51 2.63 16.85 69.68 66.90 56.38 49.79 88.57 82.76 40.40 2.66 89.40 67.26 70.22 58.06 88.14 65.87 40.54 16.52 99.36 19.68 49.10 61.54 37.03 73.47 27.57 82.13 74.05 35.17 2.41 18.17 60.91 34.78 23.57 57.24 84.06 88.17 14.94 72.40 40.31 5.88 29.25 84.42 8.87 27.05 62.65 91.98 15.83 94.67 37.65 -48.80 97.06 6.59 56.47 13.36 71.19 83.17 10.08 76.73 59.51 16.88 87.87 27.15 77.88 72.58 1.79 23.03 1.20 41.50 81.71 63.97 30.26 77.33 18.81 2.46 8.34 27.70 93.87 4.03 47.10 68.45 46.09 37.73 77.44 7.53 50.27 81.67 13.35 84.60 3.60 64.08 30.00 55.50 18.63 64.29 53.82 68.45 13.11 5.64 96.51 64.97 7.44 91.26 21.30 7.32 58.23 65.59 64.91 62.40 35.62 85.02 79.49 97.44 12.51 52.82 41.82 67.85 9.21 51.08 72.59 10.74 31.86 60.28 7.41 31.35 43.18 86.87 69.63 20.84 17.93 8.10 41.71 69.13 89.44 2.25 54.08 96.53 85.30 88.37 29.86 39.80 31.85 5.33 91.59 69.61 46.98 75.76 99.46 78.73 71.66 -79.76 3.00 51.34 11.16 0.11 81.83 15.66 81.82 88.03 64.09 76.07 19.24 10.85 40.82 16.20 9.06 29.97 49.28 44.75 2.73 42.42 12.67 51.75 34.03 27.62 46.34 30.05 61.22 89.53 5.22 14.77 51.09 87.16 52.02 95.86 6.36 8.80 94.44 64.53 53.97 94.44 4.68 16.46 11.28 76.10 78.94 54.23 45.50 8.60 63.85 99.70 74.70 93.66 13.76 91.62 89.45 64.01 52.83 82.21 53.27 60.16 33.59 46.53 65.40 78.70 22.06 46.55 47.43 74.10 70.07 40.26 78.23 46.87 73.56 36.70 19.21 21.14 70.38 22.65 48.24 80.70 49.25 65.24 52.58 32.52 20.88 74.17 98.24 32.89 90.44 65.46 96.96 93.69 4.16 73.46 43.28 44.98 71.87 82.80 53.48 -63.34 54.71 25.86 97.30 78.32 68.18 65.04 83.93 8.93 12.79 20.85 23.49 83.39 45.26 3.09 55.43 36.93 29.43 83.94 39.35 93.18 80.53 48.20 34.77 68.61 19.78 2.43 67.56 62.13 39.54 94.11 6.89 31.59 39.98 98.50 27.35 78.60 34.07 8.16 35.69 42.18 66.47 71.56 7.37 55.67 31.69 54.71 32.94 19.79 9.88 7.71 50.61 34.37 42.29 94.21 18.66 41.22 8.83 91.47 68.89 66.88 37.43 62.33 83.94 45.19 32.87 61.48 62.87 10.94 47.36 94.25 68.58 18.88 36.77 66.73 13.28 63.55 90.61 25.90 28.11 27.28 21.51 85.86 15.03 13.85 88.60 51.44 59.04 80.60 9.09 57.73 64.67 1.25 66.17 14.40 6.59 61.38 91.04 71.57 43.75 -22.30 71.79 21.56 83.46 88.12 1.23 94.07 46.87 60.75 82.95 16.71 85.47 34.95 95.38 5.55 56.43 8.04 21.23 21.55 87.34 25.50 55.05 42.08 31.03 4.19 74.92 14.43 55.41 10.02 58.62 96.79 68.37 40.83 33.36 74.28 61.46 10.16 5.97 80.10 36.70 54.23 19.11 11.91 96.46 24.89 63.60 88.20 91.41 56.18 95.63 69.26 72.14 33.66 6.15 76.14 35.11 54.06 24.14 35.16 27.36 10.18 17.46 95.24 28.46 61.04 82.45 27.84 81.62 32.85 64.06 91.77 93.07 78.57 57.92 88.19 30.45 77.86 34.37 30.33 97.83 99.06 53.58 72.57 58.69 74.56 78.16 16.50 59.67 66.87 25.48 49.09 35.86 8.63 9.85 63.60 39.21 17.90 13.21 49.05 82.16 -65.36 64.84 87.92 20.26 84.41 29.39 7.09 54.50 24.82 64.86 97.57 35.17 58.89 6.89 39.85 18.04 76.78 87.83 41.61 8.82 30.12 54.46 14.32 3.16 32.22 48.75 5.99 61.63 10.82 56.43 33.70 1.43 86.40 54.02 61.61 8.71 50.75 57.88 27.45 43.93 60.68 91.16 32.97 40.85 53.39 16.87 17.81 12.70 67.87 59.51 77.75 60.59 94.88 1.91 71.52 3.46 16.33 22.12 53.81 52.69 2.71 10.34 79.01 84.30 99.28 71.46 50.97 42.32 13.86 49.11 56.30 88.10 65.08 13.97 32.01 60.20 75.46 15.28 38.94 64.43 65.30 79.39 11.72 65.12 15.72 12.43 58.69 1.30 92.13 42.40 27.55 20.84 73.69 76.03 10.15 96.01 49.05 85.16 15.28 57.11 -7.87 90.40 85.32 43.32 12.62 54.72 77.46 29.08 31.41 40.20 58.00 19.03 23.42 49.68 30.18 86.83 33.78 91.14 3.14 33.92 5.59 97.25 75.03 51.86 92.15 19.18 66.76 10.10 88.52 70.85 85.69 82.92 56.87 17.68 79.23 6.42 59.02 86.24 31.75 8.99 81.59 45.11 8.01 76.49 49.41 40.32 61.25 98.78 52.28 83.23 3.40 93.81 13.81 33.07 60.73 92.69 72.50 31.32 27.12 79.83 13.19 52.04 56.31 26.57 19.65 97.23 16.15 65.03 70.68 34.84 95.04 78.40 99.96 43.00 35.66 30.33 47.42 2.47 11.33 45.21 19.82 53.85 64.69 61.68 40.90 48.85 34.54 26.97 53.02 92.58 99.18 24.84 12.95 73.44 31.47 34.83 76.00 45.09 33.38 7.37 -67.38 63.24 57.96 15.76 52.87 18.17 32.80 21.02 15.83 0.39 12.75 32.61 62.59 1.95 9.19 38.01 83.06 47.12 98.82 59.45 18.18 73.68 41.64 10.88 66.73 24.34 58.00 26.04 77.79 68.31 80.00 8.21 39.46 62.82 98.38 98.15 72.89 84.20 86.78 51.61 58.31 33.39 94.61 75.60 26.50 52.13 28.41 78.56 88.11 31.65 65.79 27.86 72.36 11.87 8.26 29.83 40.41 0.06 32.33 50.35 20.86 98.14 98.63 74.87 43.44 73.81 42.66 40.87 22.20 67.69 96.33 61.54 44.25 72.47 48.47 53.02 77.97 35.87 3.35 72.09 29.41 41.52 29.05 43.71 50.65 41.04 81.73 11.07 89.73 25.10 26.78 83.91 96.25 81.52 38.49 61.15 58.32 13.17 62.36 10.28 -28.86 9.33 97.57 98.95 25.31 99.15 77.13 88.58 12.94 21.34 10.86 32.07 98.79 20.13 40.13 37.04 53.80 15.18 37.95 54.71 77.62 95.24 91.09 31.25 50.27 55.14 79.35 97.50 33.66 61.55 8.67 33.36 8.74 24.98 69.66 66.83 33.19 98.43 68.56 88.69 81.54 12.20 40.82 45.72 14.55 29.27 92.89 89.55 1.40 13.62 6.95 9.56 67.55 69.40 64.95 96.56 92.65 44.95 38.24 76.75 14.38 64.40 65.90 27.30 38.17 35.91 36.13 28.87 61.82 3.27 28.34 98.95 75.49 59.84 35.88 34.66 48.92 13.51 42.79 25.76 6.08 77.61 50.71 39.47 28.85 34.68 35.84 18.43 9.71 18.89 80.53 76.77 20.41 25.22 50.47 18.56 36.71 16.77 93.58 59.90 -78.63 70.31 2.74 65.21 94.29 83.12 84.92 72.03 61.43 24.32 30.65 13.98 85.27 85.97 24.27 35.78 44.55 74.07 59.37 49.04 24.55 38.55 50.62 36.36 17.52 94.03 87.60 43.98 8.34 57.81 7.28 91.08 74.25 45.18 13.11 24.77 92.73 23.85 30.29 77.08 33.89 66.89 71.71 20.97 86.58 3.02 63.93 26.28 37.74 19.83 20.85 72.34 23.77 25.80 32.28 75.16 35.44 53.88 13.97 31.95 2.14 33.55 23.83 51.41 93.90 43.35 73.15 6.09 89.04 58.62 95.32 57.33 47.76 97.02 64.86 27.81 76.22 59.71 8.95 85.31 97.58 77.28 67.44 27.84 51.48 92.16 12.94 28.13 6.95 36.42 6.45 38.38 14.98 66.46 21.74 9.68 9.93 22.00 20.22 45.55 -15.95 71.79 75.08 5.47 86.53 90.20 13.53 74.68 17.61 80.03 67.54 49.34 18.87 68.84 68.52 95.00 71.94 47.76 8.42 96.49 30.50 33.44 83.89 98.88 82.39 50.25 74.81 59.76 89.48 11.95 54.70 1.92 84.95 43.15 48.24 15.89 23.31 78.53 45.65 11.19 45.10 16.30 59.45 21.40 49.03 35.99 40.23 28.10 92.88 99.55 53.75 8.33 75.67 13.11 61.82 32.85 28.21 16.11 43.50 39.11 7.14 3.91 23.04 5.24 3.48 66.75 77.19 56.65 0.82 83.99 49.43 97.66 65.44 65.19 59.97 92.04 30.24 80.02 20.23 52.48 16.28 86.41 94.43 39.81 12.76 30.23 38.16 58.07 33.92 13.65 79.78 83.74 5.69 38.52 82.40 92.83 14.91 80.02 86.22 76.49 -15.24 90.14 48.60 11.88 85.52 33.85 87.39 38.11 58.60 25.16 72.64 97.58 13.27 78.37 59.50 21.41 87.42 25.40 12.59 36.58 24.94 82.68 57.27 42.59 60.91 13.19 17.54 19.92 91.19 22.45 31.48 90.89 24.73 41.34 2.39 57.99 99.25 11.53 64.24 84.03 60.84 63.30 45.17 60.33 17.58 53.70 91.36 61.23 31.21 33.96 21.96 69.73 31.69 81.00 64.50 51.83 86.48 12.85 50.42 88.01 67.08 27.12 0.79 46.66 88.41 40.84 1.87 73.53 81.39 19.60 27.03 78.46 88.67 41.10 74.26 28.55 45.95 76.78 26.72 59.82 41.81 65.39 6.50 69.68 72.61 48.90 29.44 16.78 71.27 70.73 23.82 1.04 71.13 74.97 30.30 5.27 11.81 24.02 99.68 49.18 -88.80 56.11 27.44 53.30 92.66 55.35 68.77 4.96 45.88 13.17 8.31 29.02 37.79 74.50 75.05 7.75 10.69 70.27 12.97 52.07 89.99 73.65 86.88 92.63 71.51 54.09 12.82 49.33 71.92 45.93 2.97 71.53 52.08 89.91 40.79 27.73 1.85 10.07 82.14 17.85 52.89 2.34 21.29 56.21 12.28 24.97 28.65 81.72 76.18 54.50 84.92 38.37 96.86 41.60 76.14 51.77 17.94 71.47 74.10 27.27 71.83 49.55 33.12 55.29 66.11 95.01 14.87 44.73 36.62 45.90 93.22 95.90 39.29 36.00 66.24 65.50 15.44 32.35 20.47 74.07 29.32 64.72 91.09 83.15 4.00 68.86 76.99 6.62 11.42 20.16 83.75 50.80 10.90 83.45 7.68 17.23 72.81 78.06 69.95 14.11 -49.79 56.12 58.55 58.99 32.54 30.49 33.96 5.10 88.07 72.72 27.35 92.90 17.95 17.17 19.77 6.96 26.51 88.79 50.43 36.27 11.75 6.05 54.40 41.03 36.39 97.30 91.12 77.12 44.23 3.88 25.45 17.75 1.18 65.56 3.18 53.23 46.31 5.16 86.46 23.10 9.69 43.71 10.97 93.49 65.62 46.11 62.13 24.38 65.23 63.57 36.88 93.18 47.76 60.35 55.48 32.60 44.63 6.09 3.46 45.52 59.75 88.66 83.58 54.78 22.22 55.25 54.93 66.70 5.69 16.63 0.69 91.85 32.76 36.66 53.45 60.52 38.23 79.19 72.40 18.77 35.92 53.67 41.37 78.93 56.57 13.84 25.68 83.53 52.06 4.98 36.32 83.40 70.63 84.27 65.80 46.46 43.17 73.57 28.09 68.94 -22.65 25.84 46.17 44.69 89.14 81.27 94.40 72.41 22.14 9.74 42.82 77.48 36.55 15.39 84.09 78.40 97.37 24.88 41.74 34.69 54.23 90.02 66.82 51.83 13.59 74.28 88.64 81.64 91.94 37.60 24.09 89.54 19.03 42.17 89.61 87.19 82.68 28.88 70.34 60.71 62.78 21.98 58.73 88.58 65.18 16.31 5.59 42.65 16.62 75.22 6.84 12.73 35.67 75.54 36.97 16.89 38.54 42.12 50.26 1.65 88.99 70.33 95.14 68.56 59.13 64.74 20.30 80.05 82.30 77.60 44.10 51.82 11.72 3.37 21.47 65.42 37.76 32.24 32.14 6.56 81.05 97.62 22.83 39.90 50.11 13.47 28.52 64.11 24.94 92.13 17.82 46.48 93.37 61.10 9.64 3.22 53.16 99.08 96.03 26.24 -65.96 27.42 44.01 30.36 23.38 19.73 0.53 60.06 22.33 51.78 45.32 59.00 36.97 34.92 4.98 51.12 83.04 76.12 92.84 36.44 48.45 84.97 64.31 28.54 23.67 49.33 45.27 98.94 32.06 75.15 91.86 60.33 36.23 8.35 94.91 32.55 40.43 0.34 86.84 37.13 3.22 11.67 28.62 84.41 45.73 18.33 28.32 23.10 62.03 41.30 39.22 94.33 52.26 70.68 4.41 81.94 67.38 80.98 58.04 66.56 39.22 35.28 65.84 27.95 21.73 50.77 82.44 6.06 30.39 87.98 63.93 22.98 51.94 97.19 83.86 24.19 23.75 2.08 41.81 67.64 6.30 13.24 20.78 19.70 13.99 38.26 43.95 45.07 94.20 36.66 23.14 40.49 28.94 92.82 72.31 38.47 14.24 10.11 11.15 78.08 -8.89 47.39 60.19 69.24 52.66 48.26 15.45 52.50 43.40 28.46 98.71 60.37 9.74 96.97 14.46 86.97 52.46 95.70 80.85 67.36 68.69 95.80 8.25 74.85 59.88 75.07 63.70 79.28 34.82 77.32 38.08 51.73 78.30 71.28 22.40 25.89 56.81 35.13 92.56 3.43 64.10 20.24 89.24 8.39 29.31 71.14 50.12 86.32 98.41 26.11 1.73 0.18 69.08 86.96 73.83 11.08 81.64 30.95 29.62 47.45 78.66 46.32 18.95 74.82 94.54 9.72 83.91 71.64 44.41 76.77 5.99 91.05 99.57 81.56 4.45 67.48 87.61 52.22 55.23 97.69 87.62 84.80 26.95 41.69 21.44 10.65 22.24 83.39 48.84 34.84 45.83 61.79 39.15 49.60 70.19 29.58 16.71 80.31 20.41 42.52 -4.52 29.00 59.64 56.59 26.49 92.10 33.49 6.82 56.54 2.19 9.30 72.69 91.98 80.25 22.87 50.17 44.57 57.81 11.43 44.24 1.46 24.44 24.68 9.08 99.06 65.34 32.58 45.12 88.79 99.45 98.74 86.77 66.40 12.56 93.89 94.65 4.93 21.80 1.90 99.61 6.58 71.65 76.93 3.74 48.71 29.01 34.64 55.86 49.74 88.02 52.44 85.17 23.28 86.46 49.66 91.93 7.22 83.30 16.16 65.08 80.34 36.40 5.43 93.56 77.85 61.97 72.81 81.27 53.47 59.66 63.19 90.26 20.88 74.91 98.82 56.34 39.18 15.74 37.33 61.26 66.78 22.92 74.34 23.07 96.38 25.04 97.70 61.05 9.15 72.66 87.59 78.71 61.03 13.74 32.55 18.39 78.75 40.62 8.71 82.87 -96.21 94.98 1.33 73.42 4.98 45.24 81.70 77.10 83.39 32.02 75.75 4.85 81.32 71.46 19.23 81.34 83.47 34.34 45.32 34.76 55.44 62.81 62.52 69.30 17.55 16.91 40.80 7.89 92.42 36.04 62.39 25.44 77.65 71.74 13.64 10.86 51.07 14.43 61.64 3.03 89.41 26.27 15.27 30.58 46.60 48.53 27.68 84.35 46.86 8.55 53.82 81.65 71.66 10.91 6.83 5.37 54.40 79.96 22.60 66.21 15.06 62.91 21.48 45.58 61.44 94.38 50.14 44.82 22.19 28.10 38.28 77.39 14.41 86.96 34.07 20.77 1.95 75.94 71.02 80.79 81.58 33.90 41.40 62.30 20.80 9.89 86.57 87.02 11.74 87.32 55.70 8.64 27.93 21.80 23.35 63.49 57.04 60.56 9.17 40.00 -25.64 22.80 58.06 92.76 22.32 49.95 16.14 34.30 81.16 80.28 63.48 59.99 82.43 37.69 39.20 75.04 0.07 90.62 50.26 39.47 49.30 61.11 71.38 31.32 37.23 83.69 82.09 3.51 41.25 89.25 93.66 25.28 17.18 63.33 49.65 91.78 10.93 66.26 38.79 27.35 1.00 65.52 23.23 27.97 71.75 3.91 1.26 0.43 48.47 8.81 51.41 97.66 58.35 26.68 34.59 39.19 25.28 86.72 46.25 79.71 37.39 7.12 98.95 55.97 23.06 0.72 69.69 67.12 36.25 75.86 20.70 54.70 1.64 44.26 51.07 69.95 55.78 62.19 22.81 85.91 91.83 67.90 9.36 85.28 93.24 35.28 76.90 11.85 39.87 91.51 66.06 40.59 40.77 96.93 14.39 66.12 30.17 53.61 38.08 80.47 -68.84 43.85 72.73 79.92 89.73 39.47 78.08 55.45 35.89 13.84 98.98 70.35 96.99 100.00 57.75 97.87 19.28 45.18 11.36 19.81 27.68 0.05 17.11 91.91 75.77 57.85 81.30 43.13 36.22 38.55 97.76 58.97 76.17 22.43 82.37 50.34 48.66 92.87 40.18 74.87 85.04 35.33 97.92 50.63 18.57 8.62 20.82 93.55 48.70 21.09 1.86 53.99 67.14 79.89 89.76 52.28 35.35 20.29 0.19 18.34 91.79 69.90 64.73 82.04 73.25 16.46 6.67 18.52 70.72 8.14 10.00 71.94 4.29 1.12 97.36 57.31 80.41 87.53 84.21 0.34 24.01 29.05 88.03 76.22 72.66 86.30 1.59 35.46 40.03 73.71 44.09 11.53 63.13 69.53 47.48 70.84 40.22 39.65 55.30 28.42 -40.90 97.39 70.29 36.37 11.25 15.11 7.16 35.22 32.56 2.95 73.26 27.60 37.67 19.72 14.18 54.26 34.78 99.40 48.07 19.25 63.23 94.10 13.50 20.63 15.04 36.38 84.50 61.69 43.94 6.25 63.87 36.36 46.16 62.98 12.13 75.33 46.57 75.10 54.58 90.44 27.42 87.76 71.85 71.58 48.73 88.57 53.95 37.59 46.24 40.15 20.59 14.62 77.96 84.43 83.01 71.91 89.29 53.36 10.27 30.43 76.07 68.09 67.31 28.49 8.82 54.34 88.04 78.71 37.84 19.84 59.84 38.75 72.69 30.07 11.55 7.05 32.22 75.52 80.44 8.77 44.26 48.60 71.30 8.80 15.78 30.24 87.58 17.83 80.13 22.76 57.69 24.19 55.32 39.26 76.99 61.77 23.71 30.82 5.85 37.59 -37.29 22.03 95.04 90.84 8.53 99.31 9.85 61.57 43.52 78.98 0.75 45.36 47.59 10.58 72.43 85.04 76.97 94.81 27.24 25.42 61.82 90.27 32.55 12.66 8.23 44.65 1.07 11.20 61.16 45.06 61.32 28.26 81.46 80.92 34.23 13.93 59.55 77.07 7.12 99.82 79.36 75.24 76.48 68.69 9.07 14.57 88.78 44.19 4.99 62.30 19.72 71.81 86.34 63.24 98.44 86.80 2.41 60.39 12.47 82.66 42.44 97.62 11.83 99.97 74.13 44.10 28.68 10.89 96.71 69.43 93.14 23.81 91.12 81.95 39.08 37.95 35.71 70.49 76.62 76.33 96.09 99.80 65.96 93.76 18.64 65.96 28.78 76.05 89.92 85.91 24.68 50.70 43.43 91.48 57.72 28.44 39.88 64.65 32.35 90.22 -24.33 97.70 96.45 20.45 32.36 16.62 14.78 75.23 55.29 73.72 6.27 3.45 60.47 32.28 36.39 21.16 46.04 76.12 5.76 36.45 64.62 61.27 85.34 10.27 87.60 94.09 93.83 80.94 77.07 86.31 32.33 23.84 88.05 52.68 24.35 50.85 97.74 21.80 35.05 93.40 15.41 66.09 27.55 60.62 23.02 26.99 53.26 27.37 77.66 50.80 24.74 62.14 51.22 79.31 88.13 59.42 23.59 3.93 31.01 2.46 13.77 33.84 77.70 44.96 4.60 46.01 75.61 9.30 76.52 33.54 82.06 22.25 37.50 78.44 48.35 5.92 20.08 58.76 14.20 91.71 28.66 21.47 52.83 60.27 96.79 93.41 6.95 0.78 99.68 6.35 64.91 72.78 13.48 3.62 21.98 51.31 3.53 64.00 65.60 71.81 -41.80 23.52 37.60 86.02 0.11 30.31 52.60 24.73 6.01 4.12 47.69 84.07 49.60 23.62 68.18 32.57 24.51 36.38 78.21 80.37 89.33 53.57 4.51 43.52 76.72 11.18 14.76 36.41 44.89 92.76 25.81 32.01 79.72 1.24 70.45 46.66 13.65 4.65 20.74 94.31 43.60 58.66 86.22 95.37 53.79 52.26 40.39 45.66 39.28 94.78 50.59 86.31 88.95 88.70 12.79 31.13 56.30 80.88 10.10 29.33 79.58 77.55 39.89 62.96 1.92 58.85 34.44 93.81 89.37 86.89 38.83 56.27 33.50 36.02 70.74 24.63 66.93 64.88 26.93 14.58 14.95 43.96 24.85 96.22 64.31 64.52 13.88 91.82 81.05 9.38 25.27 89.71 22.88 2.26 25.60 52.85 48.15 94.62 77.53 53.19 -7.52 90.62 13.84 81.72 68.48 47.03 20.38 18.29 10.78 93.87 78.69 84.99 75.07 36.28 99.18 52.62 90.43 71.75 16.21 12.04 27.86 41.54 44.05 91.22 3.33 59.75 43.21 68.40 11.34 94.82 31.68 17.44 57.03 15.31 59.54 49.86 44.03 95.64 90.80 58.00 73.10 26.99 53.43 4.20 99.02 64.76 92.41 48.58 25.02 67.18 42.30 11.39 54.32 57.08 97.59 76.46 1.99 88.31 82.09 69.20 72.65 10.42 39.08 42.11 9.54 55.47 24.75 20.66 53.21 65.15 97.66 6.13 29.26 70.04 31.18 22.28 14.62 76.93 42.21 15.56 16.67 47.02 20.36 25.57 7.90 93.65 72.88 14.64 21.37 30.43 68.75 13.61 48.33 17.94 87.99 3.75 91.94 73.35 63.81 90.35 -9.00 68.39 49.29 79.71 48.69 48.89 9.12 24.63 76.16 90.88 44.92 39.14 78.90 89.40 28.76 47.09 73.92 15.23 19.85 73.04 68.67 38.10 80.25 18.24 44.31 15.01 58.87 12.25 5.63 48.62 49.31 62.25 1.70 81.13 1.52 81.19 22.94 76.86 29.29 91.37 51.50 92.59 98.88 48.18 21.86 57.26 20.51 48.91 91.43 25.08 0.70 37.95 3.20 21.56 24.59 73.97 65.65 78.97 47.81 10.81 20.39 28.95 57.81 90.23 84.12 69.06 79.00 16.81 4.98 40.53 96.19 13.12 39.20 47.54 89.32 65.31 37.00 19.43 76.66 14.69 71.00 86.33 58.18 60.22 92.91 8.52 29.33 36.49 30.66 32.39 70.52 58.68 9.95 91.32 58.98 77.89 83.11 0.19 85.91 79.62 -24.57 94.81 51.95 43.28 24.52 79.68 80.20 5.86 74.50 0.13 54.20 57.23 98.94 8.29 9.72 91.23 29.44 35.90 7.12 71.32 80.33 52.74 81.05 28.36 4.57 57.42 30.47 59.30 4.30 12.75 22.97 21.07 68.89 78.33 40.10 91.95 88.65 38.42 17.51 66.20 78.99 53.20 29.69 61.19 14.98 68.87 22.65 7.23 74.54 13.21 2.48 82.96 70.47 64.04 50.84 94.74 16.25 70.01 91.47 85.59 6.04 76.36 53.05 35.42 88.10 60.71 14.36 33.60 67.91 18.93 61.58 32.76 23.89 34.73 89.40 16.84 42.52 10.91 38.55 37.24 32.68 58.65 23.35 14.82 40.16 51.32 16.06 51.83 94.57 56.72 50.60 14.61 20.81 21.15 23.83 41.03 35.43 27.58 13.34 37.88 -26.05 69.55 0.86 18.84 47.73 17.96 96.12 45.33 49.64 74.76 62.15 45.02 11.25 70.19 49.26 28.66 20.48 47.00 55.48 88.13 17.70 79.23 38.51 57.38 22.02 54.62 12.59 68.48 34.83 42.55 83.88 26.76 68.93 4.31 18.18 8.60 93.88 41.98 2.92 53.27 87.70 75.20 77.54 12.67 21.21 69.90 94.38 61.89 1.25 19.81 72.93 13.34 13.71 91.27 76.00 71.89 47.15 26.87 62.36 82.22 11.74 11.08 63.75 14.76 1.33 87.86 4.44 23.61 0.94 51.25 32.16 26.75 51.31 51.88 39.45 65.62 25.88 2.82 73.24 43.28 78.33 57.19 38.40 94.06 70.02 52.18 97.70 4.83 4.94 25.21 81.83 3.95 45.01 5.03 7.33 58.14 89.98 52.74 72.16 84.78 -61.40 3.70 56.62 42.88 14.80 48.45 67.62 93.98 79.48 47.37 70.99 62.98 85.21 41.08 45.68 88.63 29.50 11.07 64.04 18.43 99.68 44.18 6.01 91.90 10.83 16.55 75.81 62.74 48.38 33.33 84.38 82.65 80.73 42.06 43.07 48.71 23.36 16.92 44.27 65.90 48.68 69.85 26.41 54.12 87.32 24.34 0.62 28.79 40.62 37.94 45.61 31.26 46.30 37.74 61.43 22.22 86.12 81.84 93.84 15.48 6.25 69.21 10.04 89.47 48.13 87.04 56.74 81.48 28.75 86.37 8.10 79.60 45.38 77.14 99.75 22.94 8.45 49.06 33.27 42.01 91.13 7.98 84.28 66.03 12.03 1.78 0.68 16.05 26.68 31.05 82.22 3.61 11.97 93.10 75.95 51.46 1.80 67.47 77.29 88.19 -45.99 76.91 86.74 70.62 45.56 70.90 22.21 17.06 10.84 60.51 65.63 23.79 58.05 51.35 81.17 90.70 74.72 36.67 13.59 6.24 94.77 91.78 6.94 50.33 81.14 13.86 78.72 94.99 45.62 54.51 61.62 5.63 80.95 24.98 11.41 7.31 21.34 6.62 1.88 1.42 72.50 83.22 43.42 58.38 59.10 93.52 0.30 61.04 8.90 74.84 85.35 77.34 81.77 12.97 39.46 97.34 28.30 6.56 96.71 4.68 66.27 48.08 94.36 92.27 50.89 80.92 21.82 30.03 17.66 99.94 40.13 98.75 95.79 80.62 23.16 35.68 98.91 29.64 75.51 97.71 24.51 50.00 8.48 80.02 7.24 42.87 58.65 34.63 73.95 56.02 11.38 8.53 81.25 51.99 47.61 34.09 37.08 36.36 64.65 49.20 -24.58 89.39 27.80 10.21 72.80 97.14 79.27 19.75 64.58 61.15 59.39 37.77 46.72 35.49 41.36 22.61 44.05 58.72 8.55 0.98 19.36 28.45 57.26 25.33 38.70 57.21 59.48 58.46 93.22 8.52 98.27 62.48 79.81 58.27 32.85 6.89 43.72 48.96 67.85 52.74 84.71 79.64 50.00 32.18 22.62 72.16 71.91 68.59 29.71 45.18 85.38 13.34 25.35 21.81 36.21 86.52 43.77 73.45 79.20 30.46 71.02 39.36 3.50 91.31 46.14 44.90 70.41 37.01 16.93 26.88 13.74 96.28 96.12 71.97 72.29 79.30 53.47 40.98 56.24 61.76 88.01 4.32 74.20 63.36 58.99 68.48 2.58 18.91 34.15 92.59 49.82 18.86 29.39 42.87 0.13 33.07 78.44 87.98 78.94 82.61 -7.02 30.49 20.89 30.68 86.54 77.44 11.69 48.89 40.69 73.93 34.75 54.82 33.88 99.51 95.34 88.96 64.87 99.31 5.59 25.02 71.99 0.27 23.48 97.48 37.83 20.46 11.30 87.65 90.94 87.32 83.77 67.90 59.11 22.92 78.76 12.46 90.29 35.07 21.15 48.38 42.66 70.43 43.28 37.96 32.05 99.94 62.72 97.46 89.24 78.31 85.01 86.22 31.00 67.28 47.01 97.73 85.13 47.46 45.54 88.75 0.51 3.35 69.60 26.53 88.83 54.04 8.54 54.06 35.79 49.30 73.57 33.05 12.59 97.39 11.91 85.97 75.52 21.71 50.45 5.21 26.21 30.39 70.20 5.45 74.39 46.28 19.38 65.28 1.64 77.43 17.05 29.87 12.38 25.11 31.16 28.97 94.18 76.09 42.70 6.29 -9.14 89.39 83.53 59.23 62.54 22.39 27.92 83.57 63.55 5.18 62.39 14.56 16.59 90.83 32.75 69.02 93.26 97.37 87.89 26.78 26.31 13.04 59.05 71.55 14.74 1.37 44.66 86.50 50.81 68.39 15.62 70.70 16.36 63.54 55.65 45.87 44.24 52.81 48.85 37.28 61.65 88.31 37.53 0.98 68.62 55.25 61.57 13.29 82.18 15.13 10.56 13.18 65.01 34.89 18.94 98.17 5.36 56.29 49.08 43.61 56.68 70.36 63.23 86.33 85.59 63.42 34.71 22.05 50.39 76.80 69.02 57.53 79.36 80.75 27.79 74.83 72.91 38.54 17.14 97.58 49.31 61.72 56.37 22.75 6.47 22.79 88.93 31.67 47.90 57.22 53.15 45.28 90.15 37.19 55.94 50.73 49.66 10.11 32.64 88.80 -52.75 1.31 67.41 25.43 98.85 62.82 61.63 72.42 0.23 50.43 2.91 85.47 45.68 50.38 73.60 54.07 92.71 93.01 91.26 85.11 55.47 3.04 27.57 53.52 41.06 53.20 25.49 53.79 19.65 73.43 95.66 82.93 83.36 56.82 20.18 9.87 40.65 92.97 0.76 96.21 33.68 42.80 32.19 31.23 23.08 59.53 28.03 29.53 36.45 99.68 15.09 80.78 59.48 87.21 38.40 53.56 7.31 65.25 66.33 36.66 50.59 36.21 59.38 65.47 14.39 75.31 39.19 75.43 59.39 75.10 41.34 68.21 47.85 78.26 87.99 55.79 32.81 92.24 84.50 22.14 83.61 92.03 1.93 73.56 47.83 85.43 1.38 3.51 36.58 74.00 62.68 59.51 3.69 74.54 32.81 52.46 95.47 50.13 52.02 26.79 -73.77 5.34 36.01 76.70 59.27 98.46 80.74 41.35 74.97 0.22 87.66 56.24 75.81 13.11 78.39 54.18 89.06 35.70 36.31 42.44 92.62 8.69 24.62 92.39 82.54 16.64 43.10 6.16 7.83 2.05 76.05 46.04 38.45 17.90 83.05 88.10 12.75 29.55 0.33 4.49 68.93 48.32 25.57 65.92 44.58 95.60 14.44 52.32 41.82 83.06 12.94 74.16 33.41 8.64 49.16 60.56 7.27 78.50 4.81 54.14 98.17 21.13 3.06 47.20 76.28 53.05 0.63 18.90 21.21 22.71 48.23 24.85 88.65 96.66 88.25 23.90 52.03 64.68 98.17 77.55 8.08 65.26 29.59 15.21 51.63 47.32 97.29 27.21 4.23 5.18 92.45 57.18 50.62 66.98 75.09 77.69 90.17 35.45 5.78 26.84 -37.08 29.13 93.07 34.84 67.77 54.41 84.51 81.51 84.67 79.96 35.13 29.22 19.14 51.14 45.84 46.39 61.80 20.95 72.88 71.70 84.43 27.41 92.86 10.70 78.12 40.72 32.44 10.86 10.59 24.11 35.88 88.67 0.24 75.26 35.83 16.66 23.97 12.72 9.19 23.51 81.82 91.63 60.52 71.90 53.68 49.81 61.88 85.23 50.68 39.10 80.06 75.67 41.31 35.19 45.04 88.54 36.45 16.20 93.10 10.66 41.82 5.88 76.11 76.17 43.82 55.79 83.25 80.42 96.01 83.26 96.97 3.65 69.00 25.07 14.66 51.93 35.43 38.47 49.50 5.29 4.24 77.13 97.78 30.89 37.07 76.02 14.73 69.35 42.81 35.74 43.13 78.08 22.76 43.39 83.62 70.76 21.70 89.19 84.25 23.47 -9.05 12.23 37.03 64.13 54.19 50.08 71.31 58.56 76.30 74.95 76.12 3.18 58.27 11.47 59.76 19.87 38.05 79.73 60.43 93.09 18.38 2.90 89.68 30.87 20.14 95.87 75.28 52.09 0.60 18.28 52.17 37.77 63.26 48.90 16.47 31.50 93.49 36.16 47.08 48.73 76.70 21.34 7.74 9.15 49.32 68.77 97.67 2.33 94.84 14.68 60.51 19.41 57.92 47.86 57.35 98.22 95.22 56.45 47.43 1.24 8.47 62.91 17.90 6.76 39.64 35.87 80.46 8.12 24.97 72.40 61.40 56.51 47.51 18.78 9.95 64.17 85.89 70.21 88.40 95.84 4.73 14.28 52.12 61.65 94.13 16.78 65.47 58.80 84.70 77.01 6.79 35.57 75.63 59.34 36.14 51.17 89.36 62.83 82.42 10.75 -75.45 97.50 34.69 67.20 14.68 55.92 94.32 67.61 82.31 90.84 62.18 53.75 84.56 65.26 23.16 90.80 30.22 92.64 8.16 94.48 1.75 67.99 58.26 98.90 76.10 54.28 45.15 45.56 44.49 9.38 24.48 98.30 62.91 53.90 99.94 58.28 26.73 13.30 44.49 13.42 85.40 24.47 36.47 47.14 59.10 6.57 13.16 62.20 65.36 7.63 46.16 86.08 68.45 29.66 98.62 93.16 97.18 16.74 47.81 40.38 79.58 22.46 4.38 76.12 96.97 90.38 5.69 7.84 82.07 84.61 73.62 91.88 42.43 54.51 84.39 86.63 63.29 48.85 74.99 54.18 2.22 93.63 10.51 54.12 27.30 9.97 2.24 81.89 74.80 29.51 92.40 89.44 40.24 72.37 35.61 23.16 33.05 62.44 86.90 83.71 -71.38 70.53 74.99 58.86 29.96 41.52 26.90 16.62 41.79 16.60 80.15 89.64 74.42 70.66 22.64 15.91 42.48 3.76 16.20 17.97 37.38 33.58 12.10 78.22 85.04 12.25 88.84 84.96 88.15 5.29 49.39 76.40 24.91 29.56 54.01 90.75 95.40 9.43 60.49 84.83 82.26 9.08 78.18 67.37 59.78 9.19 10.47 64.56 86.12 77.35 58.04 59.61 68.23 45.72 94.06 5.53 91.88 98.73 77.93 82.09 61.09 97.69 66.16 88.79 80.99 97.84 39.90 86.62 62.88 36.42 67.29 80.83 42.35 28.93 41.01 16.36 7.50 23.32 44.88 73.24 48.11 10.62 32.22 27.45 63.75 77.41 2.80 5.04 37.12 52.79 69.42 25.08 10.53 92.05 22.11 81.22 81.56 24.05 34.36 94.43 -22.93 32.31 42.54 4.77 45.24 12.75 7.72 34.75 80.28 78.60 39.76 40.94 47.88 39.45 16.23 34.12 93.15 72.84 18.22 7.24 1.88 3.72 66.44 39.95 98.21 12.46 3.91 33.59 44.38 33.08 25.16 9.06 61.72 35.95 6.86 92.13 37.54 75.30 34.84 45.40 39.31 44.11 3.76 99.21 28.01 63.78 72.56 9.86 68.47 72.20 36.92 25.05 27.81 47.50 16.81 31.98 37.01 45.77 26.37 22.91 98.89 78.93 15.53 49.58 58.40 58.52 4.46 69.84 76.41 35.14 88.66 21.39 17.12 75.64 21.68 20.88 62.81 96.81 25.98 9.00 13.33 1.31 5.06 29.75 53.46 45.60 36.99 38.61 71.18 45.51 62.72 55.16 65.02 49.05 69.34 1.24 61.35 36.63 58.81 2.72 -14.86 31.33 38.24 97.54 98.71 26.58 44.27 82.10 89.87 13.26 70.69 27.26 45.42 3.89 50.21 34.91 27.22 64.69 14.97 19.80 11.14 83.09 97.77 28.84 9.09 79.92 68.00 69.18 40.07 35.45 83.97 73.38 31.88 74.39 65.22 57.39 75.12 20.84 16.38 42.95 87.72 19.26 58.83 77.34 5.19 7.30 96.33 27.56 75.30 12.11 41.44 45.96 44.24 27.61 59.94 36.62 82.74 34.75 36.02 59.19 50.47 31.86 98.96 27.74 9.00 86.31 94.39 59.35 83.55 41.29 5.22 17.90 60.33 68.35 16.33 57.34 54.38 25.12 58.50 25.88 6.94 5.37 64.65 69.66 30.28 36.39 65.41 91.72 57.29 14.07 68.28 1.20 5.58 96.17 89.20 3.15 45.21 43.10 65.34 31.53 -10.58 11.53 2.32 79.90 74.28 93.53 42.64 31.88 43.93 33.17 40.82 24.04 4.33 28.23 69.41 22.73 44.17 0.77 40.38 47.87 20.40 45.78 39.05 56.94 15.26 93.80 21.86 61.05 71.48 35.08 63.53 2.43 66.19 61.22 52.17 79.32 30.89 22.71 36.01 43.35 52.30 19.49 81.09 59.00 86.23 82.00 35.35 0.55 3.64 71.02 84.05 24.97 64.90 1.10 47.97 50.48 3.43 37.51 22.64 46.34 22.79 63.20 55.20 99.83 53.68 5.45 8.60 67.26 90.41 79.87 18.76 35.07 88.27 76.06 93.00 23.48 69.74 58.55 16.79 71.04 63.81 78.22 42.28 79.04 63.60 20.41 26.64 71.60 11.46 25.11 46.47 53.56 38.24 88.73 70.32 19.64 55.54 22.54 20.92 90.00 -68.72 37.31 92.89 75.66 63.37 93.37 38.54 57.90 67.55 8.59 98.67 17.65 35.55 19.59 51.74 24.69 92.82 68.19 14.05 64.04 55.36 39.41 19.57 71.31 80.72 10.83 51.18 73.49 48.12 25.03 39.99 52.25 38.72 79.01 12.99 67.59 92.73 76.84 30.78 82.45 89.12 75.83 50.44 18.07 2.88 30.61 77.78 45.31 8.11 92.34 62.29 32.93 14.21 8.74 12.51 6.35 11.19 44.19 3.90 17.86 59.56 63.49 67.30 40.75 17.18 69.13 83.71 9.98 52.14 50.02 36.20 37.84 32.86 69.96 67.10 87.25 66.45 0.45 33.59 54.75 7.39 95.14 51.99 69.16 2.73 97.33 83.22 24.15 55.57 85.19 43.77 45.45 62.74 17.03 11.27 22.53 46.32 49.75 78.71 79.88 -94.18 83.08 77.71 84.57 24.09 94.65 25.04 6.07 14.84 62.81 71.09 73.24 2.52 40.77 1.27 48.00 8.66 19.71 28.72 2.69 76.56 11.10 83.41 60.41 2.98 84.24 97.25 18.22 20.48 42.14 28.52 33.05 23.94 47.96 49.28 4.95 84.49 47.67 84.94 39.56 14.80 39.84 61.90 67.73 12.76 25.92 57.68 96.73 50.99 10.40 95.69 59.28 88.48 6.30 91.74 27.70 59.72 69.96 59.92 90.00 3.62 60.21 98.35 82.08 0.95 0.13 70.44 49.68 65.05 15.75 12.23 51.79 2.69 31.44 63.87 60.41 78.80 4.51 92.95 62.26 62.49 92.19 76.92 5.00 40.17 69.25 78.65 17.68 72.92 50.03 30.86 2.68 18.69 84.87 65.63 49.84 30.75 24.07 87.27 80.41 -18.68 59.62 38.04 44.49 12.17 14.36 22.66 22.82 54.59 69.35 21.00 33.48 6.88 65.39 74.09 93.47 80.04 74.43 69.56 7.58 55.26 4.68 60.47 91.66 19.85 70.01 3.16 82.95 74.88 50.96 91.43 76.81 94.50 86.95 6.85 81.45 22.85 52.73 26.64 54.82 97.64 88.05 89.68 42.67 25.15 57.41 54.54 36.16 42.72 70.02 93.97 19.15 15.24 42.73 48.51 84.00 36.77 40.81 76.27 12.99 0.76 54.44 85.01 10.91 71.32 34.98 57.19 22.45 54.25 45.55 53.94 88.61 40.04 98.40 2.90 25.58 15.99 38.13 21.00 53.71 66.80 63.29 68.54 98.54 90.02 78.18 3.98 39.67 32.81 23.18 85.24 51.89 71.62 76.35 12.87 63.34 95.33 34.65 75.57 14.81 -85.45 35.29 48.89 58.73 89.61 14.74 78.52 95.26 80.96 35.51 47.07 48.11 85.55 84.54 20.24 2.13 23.78 91.92 66.13 52.88 32.42 22.06 54.28 73.68 39.33 90.34 57.13 60.96 33.23 49.53 33.42 85.57 56.25 38.09 74.80 22.06 52.86 19.68 63.18 13.29 53.89 84.95 76.54 92.96 54.26 14.41 62.97 76.65 56.77 43.30 14.40 97.00 11.52 50.15 32.61 47.37 76.87 69.64 87.39 39.17 63.18 96.46 88.14 70.56 53.90 45.86 27.32 4.77 90.86 32.41 75.08 71.95 26.42 75.80 49.92 50.12 66.52 81.40 65.74 99.54 60.76 59.61 99.81 50.50 29.65 92.08 60.11 86.20 7.47 17.10 59.49 11.95 11.28 34.85 7.52 41.56 94.57 49.29 47.75 22.96 -0.73 32.57 94.38 5.29 98.41 61.80 87.78 49.99 2.47 8.60 82.43 46.50 18.88 74.46 4.75 46.14 62.67 69.84 93.42 12.66 58.89 40.78 41.40 78.68 88.44 24.84 41.81 13.26 45.79 4.05 32.38 68.77 92.40 5.21 43.67 95.88 90.71 87.89 81.93 21.03 77.38 18.20 15.76 6.96 11.78 10.10 49.30 41.75 8.99 10.89 13.15 47.65 0.88 63.06 17.17 10.63 72.35 75.93 17.91 77.16 90.31 23.11 17.16 25.08 6.96 17.56 87.65 42.03 62.76 86.79 29.52 13.39 8.88 2.47 47.12 69.48 21.54 58.86 97.99 46.15 52.57 93.10 74.85 93.89 59.99 6.85 54.15 43.88 10.29 33.94 62.87 60.47 25.55 81.20 80.52 21.06 8.76 8.14 41.37 82.62 -70.73 30.70 23.78 99.83 80.04 82.65 87.72 58.79 33.31 44.17 78.03 48.65 61.94 40.14 52.21 85.89 53.33 55.87 87.73 74.93 7.09 82.39 23.91 37.49 47.21 81.29 80.41 12.54 37.92 63.40 84.11 43.98 0.19 57.81 22.90 7.60 97.38 71.85 6.51 48.32 55.93 43.18 13.88 64.75 6.85 76.56 96.82 45.67 98.85 59.86 36.18 0.53 25.70 33.77 42.90 92.52 14.92 30.27 60.01 61.91 4.98 27.75 31.02 55.62 13.56 91.76 32.14 81.79 59.84 42.38 73.37 17.29 29.61 70.54 30.71 22.70 2.56 1.32 10.98 92.72 40.68 21.44 71.21 41.90 12.27 32.72 23.98 72.81 15.97 27.36 40.17 14.55 48.38 22.83 56.89 31.33 27.00 92.21 46.50 98.41 -53.88 98.52 52.03 87.43 55.50 61.11 17.81 18.68 35.81 87.79 8.63 4.21 53.00 73.93 38.23 58.56 22.94 50.06 42.59 71.14 50.23 76.81 10.72 11.26 12.08 96.38 58.83 1.60 42.19 64.66 75.78 42.08 20.76 52.45 78.76 93.10 67.25 18.24 76.60 47.64 3.89 38.44 43.22 80.50 49.92 50.55 94.38 45.30 29.84 49.15 74.50 26.01 42.37 54.20 7.55 74.17 3.19 20.98 20.44 7.88 10.58 39.60 8.20 7.35 88.99 30.58 43.59 80.47 94.21 4.91 43.91 83.25 13.17 55.64 74.26 67.35 53.34 1.06 58.46 11.82 0.91 52.61 43.42 2.45 11.20 14.35 82.85 77.85 53.20 96.62 94.22 15.15 8.99 5.15 78.72 16.24 66.52 7.40 69.10 91.74 -77.49 16.47 47.53 45.03 40.12 88.33 67.73 50.71 51.17 56.08 87.05 90.19 69.99 84.26 97.07 6.03 18.70 88.16 20.32 56.30 88.11 1.41 3.04 47.81 89.30 21.88 69.25 0.29 75.24 77.48 0.51 81.85 23.22 39.55 76.96 55.07 23.88 8.06 50.20 36.95 39.68 40.75 41.27 47.13 73.90 30.09 86.45 72.88 82.73 19.12 18.56 21.82 62.96 88.40 74.49 61.45 5.63 33.32 41.86 3.54 30.69 58.81 52.65 74.80 33.46 20.43 74.93 20.12 37.79 72.98 38.23 6.18 96.11 37.10 89.32 73.67 16.08 72.96 60.71 32.92 28.35 70.73 84.68 36.25 51.67 94.70 88.53 57.59 25.90 90.29 77.51 23.82 46.02 84.95 51.14 40.53 75.36 13.13 87.78 42.26 -53.14 42.10 60.89 2.80 79.52 77.90 94.41 1.96 71.90 78.45 4.44 71.21 39.80 38.32 3.58 4.39 70.09 41.88 55.95 70.58 0.29 52.11 69.63 90.30 18.74 84.38 44.44 81.71 74.57 24.12 34.44 77.15 37.27 77.57 39.99 71.52 68.92 58.85 62.33 48.96 43.88 62.55 2.75 90.01 42.95 74.58 48.76 99.55 57.36 25.78 60.20 16.54 91.13 38.93 36.78 34.09 6.91 66.81 26.49 4.70 72.30 12.69 51.18 15.90 31.67 29.92 85.52 80.85 37.14 57.37 80.31 26.96 45.97 5.51 31.56 76.19 18.17 58.77 66.11 57.68 96.58 78.77 60.61 43.61 32.27 77.48 13.74 46.63 28.29 59.26 42.02 3.74 87.67 98.81 67.62 81.54 51.44 22.69 74.42 17.57 -78.87 96.77 6.33 13.64 34.00 89.64 87.71 60.48 38.04 17.54 88.09 30.97 9.19 17.89 79.67 4.17 59.11 23.67 1.84 48.26 13.40 41.28 13.77 59.73 59.58 0.22 29.96 77.90 18.82 92.45 97.14 95.20 5.99 54.00 22.10 80.57 95.87 54.30 77.70 18.03 81.51 45.93 32.21 38.22 66.97 63.28 46.11 90.29 73.53 55.32 8.86 66.76 73.05 65.50 36.16 8.77 85.29 65.56 4.60 54.58 20.11 63.09 39.69 61.91 60.96 37.91 88.61 61.62 29.51 67.51 18.52 37.58 21.16 67.54 76.34 44.98 24.14 74.19 40.14 68.19 80.63 47.61 14.30 83.40 87.65 51.63 74.31 82.41 11.05 72.83 43.05 99.08 27.25 66.85 51.01 7.47 2.11 6.41 57.25 19.08 -67.90 90.61 74.91 69.17 5.68 91.58 60.67 36.37 1.69 60.75 90.16 32.57 91.36 65.28 51.15 45.61 46.26 48.33 27.20 53.02 46.18 87.83 70.93 66.44 29.46 86.96 30.63 57.78 43.28 83.88 6.28 51.00 76.38 24.94 13.90 18.10 83.87 95.36 89.19 4.84 73.19 64.95 93.08 32.57 12.64 85.79 70.87 54.53 44.27 4.47 88.06 10.65 72.77 89.32 18.26 68.60 52.69 58.02 90.17 97.78 16.38 60.67 4.05 18.30 21.88 37.69 31.32 39.70 83.07 68.33 41.80 94.06 87.83 77.57 44.46 62.64 61.18 54.64 82.45 33.32 9.84 85.48 80.21 59.49 97.60 84.69 68.52 75.89 21.20 28.07 36.49 52.15 73.82 58.93 0.15 30.50 46.95 83.53 54.16 77.89 -24.19 11.67 30.91 84.44 49.29 44.78 71.87 34.47 58.08 97.72 29.03 23.16 72.71 53.83 33.20 29.89 76.94 46.05 49.66 47.01 25.06 72.19 60.55 21.54 58.79 5.74 67.35 29.31 32.15 29.72 91.70 83.22 27.75 34.47 3.58 6.95 79.00 5.47 96.42 18.05 44.19 73.61 23.77 8.57 78.89 73.03 18.53 31.12 41.90 27.52 68.45 98.87 14.38 74.56 3.54 76.73 31.17 25.26 61.63 85.56 63.66 4.78 99.55 99.44 45.12 73.85 77.94 92.77 47.04 34.95 71.65 34.12 83.52 2.54 91.00 60.16 45.82 68.10 81.51 62.31 76.66 80.94 27.78 79.57 63.51 60.02 97.69 53.76 96.59 64.79 57.67 9.05 38.71 10.00 59.96 95.16 54.94 75.14 31.26 85.30 -32.26 77.86 70.07 0.70 11.45 49.57 52.24 32.84 76.49 94.21 33.77 14.47 43.14 2.96 39.33 36.67 89.15 49.01 61.29 92.75 44.00 28.65 98.28 55.31 82.91 92.04 87.58 34.52 58.19 53.36 47.07 27.91 3.73 20.72 20.58 65.27 99.35 70.92 70.04 6.91 47.58 38.64 20.68 64.21 65.33 22.27 6.28 94.96 20.14 85.84 59.01 24.54 6.20 14.49 11.04 30.50 60.21 6.38 57.43 66.67 55.19 93.53 4.51 11.79 18.24 72.83 89.73 99.52 95.04 95.48 97.72 53.97 87.86 46.62 19.49 13.87 38.97 29.66 77.20 66.91 41.42 63.44 5.36 9.86 79.51 29.31 90.40 31.63 44.00 42.40 12.89 14.56 83.59 15.46 57.96 31.06 61.25 4.14 30.08 17.59 -38.81 48.16 91.18 44.28 89.25 84.48 67.18 76.18 42.19 65.67 19.42 94.73 22.16 83.02 44.90 74.39 82.17 62.31 97.38 53.39 88.57 18.00 25.37 96.62 49.89 33.03 97.33 13.42 81.55 7.68 23.88 5.71 96.70 95.98 92.32 17.41 1.15 86.72 90.57 17.72 31.56 49.26 53.53 86.80 27.11 93.42 46.08 90.18 6.79 14.43 32.05 64.31 48.81 80.13 4.90 22.80 33.18 36.86 5.49 85.60 0.95 98.06 27.71 73.21 14.22 76.14 35.70 28.21 82.42 65.31 98.28 8.51 93.99 21.60 17.36 1.14 16.11 18.18 41.40 61.60 58.45 67.86 81.23 58.24 55.60 71.98 60.10 42.70 86.18 59.06 6.43 3.48 42.72 55.78 78.98 55.89 65.25 86.60 72.83 0.88 -15.36 5.86 70.32 83.80 35.85 64.67 88.37 39.22 6.35 57.18 77.06 0.52 94.25 20.17 77.87 21.51 85.32 76.14 84.54 10.23 87.89 92.11 14.21 75.61 97.30 46.26 59.28 15.18 12.63 33.37 3.69 23.64 16.65 58.96 87.43 85.25 2.20 95.15 33.69 80.68 57.88 60.44 84.36 32.67 31.00 92.77 73.44 4.55 58.60 34.37 55.22 26.28 23.59 44.66 36.80 9.06 16.24 23.45 84.00 5.11 1.39 46.92 95.17 97.53 48.99 41.00 3.92 51.75 91.37 44.63 68.13 69.49 21.04 49.62 72.44 11.74 25.16 72.90 59.94 15.08 26.33 30.10 14.33 61.90 39.07 24.98 1.49 64.40 34.21 79.36 80.87 65.89 82.43 75.44 33.10 84.96 87.43 70.70 27.91 69.14 -88.28 8.93 30.22 52.10 41.95 63.14 89.85 87.13 97.30 23.90 41.87 4.03 49.57 46.99 52.24 76.32 71.29 54.35 67.65 54.20 75.55 18.05 84.40 91.47 4.91 52.05 7.30 9.21 17.18 79.67 0.63 12.25 85.29 6.97 88.05 16.67 84.77 93.32 22.83 37.01 17.35 97.47 24.37 0.75 43.04 33.46 13.62 4.26 70.48 79.45 97.19 74.81 27.25 46.06 78.50 75.64 43.24 34.67 31.51 70.11 79.40 26.58 17.63 43.78 49.55 86.83 46.28 78.68 49.96 83.17 64.48 8.50 16.07 22.04 10.83 54.52 55.49 23.28 68.34 20.68 63.67 82.96 93.65 0.98 36.58 57.37 84.43 60.24 12.24 68.36 78.87 78.27 71.27 38.29 41.67 41.20 60.46 73.85 16.91 92.51 -8.20 2.57 52.76 65.92 28.74 70.16 15.94 52.57 50.41 90.27 29.69 59.23 37.19 94.63 74.74 82.12 32.54 41.23 45.84 95.27 26.44 25.94 88.02 74.13 26.73 34.17 80.85 77.38 0.33 35.15 48.00 48.05 43.95 8.71 91.11 0.31 83.93 91.10 30.51 83.93 75.83 6.63 81.88 23.58 95.84 87.16 71.45 11.29 52.86 17.52 91.71 6.59 6.31 74.55 4.20 62.32 94.96 34.31 54.23 22.86 64.36 32.30 10.82 13.82 14.92 16.42 3.14 26.17 18.69 98.19 77.32 42.79 29.91 95.22 89.97 49.53 34.99 91.51 57.69 2.23 95.53 76.59 75.45 69.28 59.26 7.96 36.15 91.70 90.78 35.45 10.78 74.38 93.09 29.97 73.37 85.72 22.21 70.77 79.07 1.79 -14.34 18.45 85.30 66.26 73.91 99.99 10.06 17.35 75.33 82.45 33.47 65.12 91.26 51.24 29.32 8.50 44.77 28.06 69.80 53.47 13.33 96.82 60.36 5.52 91.07 20.84 46.89 30.21 46.92 4.40 43.82 0.33 98.25 32.24 59.24 72.96 91.62 92.24 27.42 12.83 65.24 7.97 58.07 87.10 90.04 44.49 92.86 71.21 23.10 24.62 88.65 31.37 16.58 30.13 58.48 64.56 42.90 44.86 56.36 34.05 43.31 87.69 96.39 42.17 93.35 18.43 3.51 85.02 73.83 9.61 53.84 9.08 37.56 60.05 33.40 0.59 47.94 71.71 73.19 91.23 80.11 54.87 43.30 95.25 31.09 72.61 97.65 10.40 79.46 21.98 0.10 45.54 7.36 11.85 85.01 26.56 92.32 50.74 50.32 84.41 -93.30 28.75 47.03 70.29 79.00 58.70 2.41 39.63 60.57 17.85 22.60 43.90 3.84 0.86 84.80 84.98 69.36 22.17 64.74 2.44 20.17 0.43 71.85 85.65 96.45 88.38 57.04 11.89 76.05 60.51 83.50 72.74 22.75 38.14 98.57 34.39 90.46 33.12 35.73 37.11 40.66 78.99 52.21 49.57 72.86 67.07 16.16 88.13 71.37 44.04 41.21 86.60 63.17 13.01 16.33 72.08 46.75 86.06 86.23 87.73 44.80 84.03 96.74 29.83 96.56 50.81 26.19 14.31 1.48 0.63 28.19 49.80 5.85 11.99 3.20 54.31 10.79 24.68 97.77 9.20 31.60 29.17 85.23 46.48 10.52 58.40 23.93 44.13 38.34 70.84 38.23 44.58 66.99 27.60 11.10 62.21 47.71 43.74 75.45 17.64 -62.56 13.02 28.61 66.48 62.48 97.19 54.01 33.39 13.31 58.24 23.31 1.47 15.64 90.91 28.69 20.30 79.89 46.79 92.30 27.18 16.40 45.97 9.78 5.39 85.37 15.43 1.77 61.12 12.34 87.04 18.80 78.18 19.17 87.85 63.97 71.59 33.19 84.06 52.36 96.20 52.49 86.66 2.10 49.51 41.94 39.29 91.24 30.61 92.98 82.88 64.46 42.93 31.88 16.94 51.33 50.09 76.62 51.91 30.42 81.22 87.24 29.37 47.30 95.05 21.85 21.18 61.14 26.76 71.48 91.33 81.12 93.12 95.59 93.35 94.23 11.97 65.08 52.78 78.80 50.77 89.14 8.28 79.88 95.67 16.54 65.95 37.42 4.03 95.60 40.16 33.99 29.39 17.76 10.12 27.91 56.43 36.54 49.67 7.70 52.91 -92.79 70.60 16.18 98.09 80.76 9.78 81.03 71.91 93.08 43.49 78.75 58.08 4.52 42.66 12.01 14.55 8.64 86.03 73.46 75.50 10.93 19.06 77.38 53.52 76.34 90.96 29.83 17.80 37.59 34.50 49.70 19.54 60.24 60.98 38.75 45.43 70.81 91.44 93.03 41.65 40.18 60.05 35.56 94.21 46.79 27.10 9.43 99.86 22.74 92.13 44.44 47.81 4.44 25.94 85.98 54.31 80.52 98.41 41.30 9.90 61.23 45.41 47.52 64.92 56.05 45.07 31.93 15.77 17.24 7.93 41.28 13.27 35.89 28.35 40.78 67.23 93.94 96.71 39.12 73.52 35.63 18.03 40.94 53.96 39.18 81.06 54.22 33.81 81.32 78.46 61.65 31.65 97.46 68.48 16.42 36.63 89.92 79.57 30.51 93.75 -78.18 15.65 11.21 73.73 82.85 77.56 81.18 31.63 54.73 1.17 78.04 56.65 10.78 78.13 33.32 83.50 24.43 88.80 98.31 31.31 16.36 25.03 38.87 89.87 29.67 31.35 82.61 82.71 87.66 1.98 32.37 15.72 41.00 88.69 69.76 73.91 79.87 36.05 3.08 81.66 48.62 82.01 70.34 10.51 52.15 95.45 0.01 37.48 25.01 75.28 75.49 12.65 16.83 90.16 77.47 10.54 37.40 54.94 4.48 93.17 43.87 31.67 91.16 3.70 72.75 65.60 16.83 31.48 89.95 78.47 42.52 43.07 48.65 40.31 70.97 72.66 51.07 17.67 10.66 35.25 79.09 79.72 87.57 98.29 85.91 84.40 64.03 63.17 98.74 81.01 96.51 3.24 71.48 96.65 74.65 63.14 88.20 5.23 82.88 37.36 -12.16 91.21 48.91 20.66 95.29 44.76 30.88 53.49 24.81 20.57 17.86 19.49 22.22 41.18 12.35 60.67 29.11 60.26 10.03 51.58 3.32 39.07 53.84 12.46 9.01 43.18 14.71 88.99 60.14 49.30 26.49 34.10 64.37 47.87 58.50 33.19 67.63 79.37 11.31 49.52 52.32 76.74 88.71 90.56 39.86 23.04 72.56 11.95 11.45 43.12 60.86 46.35 2.65 9.01 84.40 74.21 74.51 98.63 0.10 96.79 97.18 83.10 1.52 10.96 6.70 94.23 4.30 92.51 39.67 35.64 98.72 12.91 34.01 79.19 25.91 73.19 24.19 44.68 30.68 54.75 66.44 28.55 81.19 78.89 85.28 22.21 43.33 33.36 41.86 38.18 17.15 61.39 55.24 59.68 97.53 57.71 41.26 37.50 6.10 75.16 -6.98 49.97 38.53 70.91 52.12 7.53 89.64 98.72 12.18 3.02 97.31 32.95 29.88 75.12 57.17 13.42 64.18 99.78 15.24 85.17 49.84 20.10 52.24 11.24 44.96 64.41 90.17 99.46 41.42 42.75 8.07 6.06 35.72 65.87 56.70 65.27 74.11 22.24 81.10 34.32 59.37 31.86 70.03 11.51 55.94 53.83 52.20 56.36 84.80 51.21 85.43 12.98 72.25 5.99 79.11 73.21 73.83 92.98 6.10 70.00 43.71 95.60 34.37 83.23 63.17 69.16 85.92 22.28 51.57 83.91 25.51 1.77 79.67 25.42 48.91 88.46 88.52 35.38 85.91 26.12 40.36 95.81 14.41 97.72 56.89 67.40 10.11 51.14 25.83 50.06 26.92 71.76 30.53 18.20 68.98 67.63 49.38 89.67 98.46 62.65 -48.32 57.28 69.44 16.52 13.83 61.95 40.83 68.58 9.74 16.87 64.21 1.96 57.78 1.53 57.77 76.55 58.93 72.85 98.80 64.16 75.02 72.39 99.50 8.10 19.96 33.87 90.91 98.01 30.99 5.86 21.04 31.01 46.06 9.09 62.19 34.83 9.81 34.40 6.41 29.91 7.58 18.84 35.63 29.98 74.71 99.70 3.60 2.49 69.23 52.93 90.23 85.86 98.95 67.27 70.76 40.78 33.67 95.15 96.70 80.15 18.99 30.59 61.20 98.48 80.78 37.09 85.97 25.46 35.23 70.90 12.60 9.32 98.84 85.73 72.21 54.59 46.55 96.07 99.97 17.83 9.12 46.23 7.41 78.43 54.31 58.57 89.47 17.21 59.58 6.93 54.22 86.85 95.84 13.36 40.89 17.22 67.96 14.55 62.05 90.94 -32.50 46.00 57.98 3.07 64.55 36.24 24.75 16.64 6.32 53.64 50.62 56.79 37.68 89.90 21.03 92.27 70.68 5.87 35.27 10.59 24.56 97.09 60.63 60.02 9.40 92.03 39.21 85.36 22.80 84.79 36.32 27.02 74.98 17.33 35.63 18.97 89.77 61.76 87.19 25.48 66.76 2.37 7.70 46.47 26.78 49.98 35.17 90.80 79.03 13.27 82.61 81.72 63.10 51.62 43.26 26.86 31.83 28.54 97.64 18.86 83.12 76.37 57.77 96.91 27.65 76.76 34.76 14.26 56.04 5.68 47.54 96.07 7.81 23.60 33.69 78.03 76.66 71.50 37.73 0.10 46.11 35.81 60.45 82.89 49.76 97.23 98.47 26.27 36.91 39.05 8.10 47.99 89.34 22.30 83.42 22.87 92.54 47.83 33.21 87.59 -62.03 11.71 69.66 22.99 1.29 50.09 3.26 2.17 33.73 11.31 48.00 71.58 82.04 44.75 23.19 93.92 15.95 6.75 94.22 57.08 41.07 27.22 85.70 70.71 29.75 52.75 8.64 27.50 86.71 88.23 76.32 0.17 3.37 66.07 24.99 42.48 97.50 39.86 60.47 25.10 3.08 52.49 2.33 2.05 90.30 44.52 3.69 21.02 89.84 91.48 98.19 24.65 88.21 59.02 45.72 73.58 76.87 73.92 46.51 79.26 34.98 93.62 74.35 73.95 13.44 39.57 45.93 74.04 10.75 42.31 67.26 87.56 28.86 9.49 91.09 50.19 58.52 79.84 15.32 2.04 45.41 94.75 34.96 93.07 31.13 42.20 45.80 51.55 3.14 62.69 65.47 90.44 66.88 45.55 85.99 58.07 27.79 37.78 74.49 24.25 -79.60 81.52 18.16 83.66 99.71 66.99 77.57 12.56 89.97 94.66 69.82 27.76 47.42 19.05 80.60 51.37 32.55 74.16 91.73 44.34 46.81 21.77 48.39 31.35 47.62 74.26 11.71 11.92 99.45 68.38 36.53 78.85 86.64 66.53 81.45 82.54 92.06 80.74 33.28 4.57 58.68 62.81 89.85 97.88 36.48 93.41 65.37 85.59 79.70 54.53 99.33 12.48 87.38 39.19 41.35 36.28 97.03 8.15 88.95 45.32 83.90 37.29 26.29 4.36 33.46 13.71 77.54 94.28 98.75 9.63 44.27 27.34 18.69 5.62 9.44 50.91 56.71 30.29 58.68 2.90 48.24 59.29 69.76 60.59 56.72 0.76 27.84 94.90 3.96 35.95 21.26 15.99 92.57 54.55 62.93 87.46 65.00 36.73 79.47 95.10 -68.51 52.19 24.01 85.84 51.62 24.93 45.88 20.17 51.11 54.28 95.62 71.69 51.59 57.41 12.86 75.68 37.67 85.54 3.02 3.32 84.85 70.81 6.68 68.52 42.82 28.77 10.58 47.99 36.05 79.80 36.76 56.84 84.18 76.79 20.63 31.05 83.18 71.13 52.68 96.91 10.04 94.01 87.08 93.90 29.79 77.08 43.38 90.88 76.29 71.92 89.93 95.06 63.52 22.09 75.11 33.54 38.84 92.23 93.38 4.63 97.19 49.59 3.37 32.05 53.40 27.95 24.24 59.69 39.89 72.22 47.32 69.55 12.24 63.84 89.21 42.55 31.79 84.01 53.06 63.11 14.92 11.84 86.45 8.34 93.76 91.29 64.05 94.67 2.26 97.79 46.46 28.28 64.36 15.53 84.70 28.97 46.50 14.39 48.85 34.34 -9.61 7.30 55.39 45.94 46.33 16.61 59.48 88.71 97.11 29.23 15.42 70.99 84.34 80.49 13.38 41.80 45.16 58.95 99.26 63.67 51.53 23.01 87.00 64.46 67.72 87.74 94.42 36.44 81.96 39.82 14.05 91.16 69.74 7.14 54.69 6.72 96.19 18.52 17.70 5.45 19.91 51.60 72.65 35.43 19.37 98.28 0.85 32.33 65.24 99.00 77.81 70.47 86.00 88.54 35.30 28.10 6.17 93.23 93.82 24.56 20.55 5.95 13.68 41.61 18.08 28.31 85.48 82.50 0.06 76.91 61.47 47.47 66.30 45.53 45.79 20.77 18.69 8.53 90.48 30.63 55.07 28.83 10.14 97.95 67.80 77.10 43.45 95.94 37.77 68.73 95.18 73.76 33.96 73.54 52.95 69.76 21.62 12.04 90.37 14.89 -74.92 10.94 42.25 17.98 19.29 60.43 25.95 73.14 63.84 46.76 52.71 53.38 99.87 48.56 69.93 62.36 39.23 76.01 83.18 24.77 16.69 11.55 16.73 54.59 10.71 20.50 94.65 61.77 12.98 31.59 31.34 26.34 18.56 37.89 89.95 65.41 8.20 51.62 20.04 81.78 37.44 29.46 35.38 39.62 52.96 27.94 51.87 88.77 46.91 19.50 83.79 59.50 98.50 16.66 23.43 61.94 73.10 25.55 51.28 61.71 38.32 17.64 49.36 23.80 43.39 62.93 40.05 32.06 30.58 31.53 30.03 25.55 78.88 6.90 76.30 34.44 60.02 11.27 68.09 54.70 62.65 98.44 79.55 26.29 6.65 20.88 40.53 50.03 78.89 6.70 20.66 13.78 1.30 75.02 38.18 81.03 58.02 75.44 31.99 46.37 -89.20 4.20 99.36 82.83 33.44 85.90 9.71 60.83 78.26 37.65 21.55 52.60 16.64 44.13 74.87 58.97 65.87 73.88 35.01 78.32 16.04 84.70 94.49 2.42 46.74 88.96 47.89 57.51 72.31 54.64 69.50 45.35 38.45 6.10 26.60 31.11 80.63 6.54 28.88 47.05 70.44 66.31 67.98 91.73 34.32 59.35 54.45 73.18 82.87 51.88 65.25 13.72 54.27 47.51 4.05 24.31 75.30 21.61 75.41 18.33 93.81 86.21 88.76 44.74 62.98 36.74 96.73 52.71 49.36 41.01 67.73 44.85 18.56 29.67 60.67 96.82 31.76 14.28 47.24 49.87 72.11 24.95 2.17 16.31 4.81 76.55 83.20 67.45 38.11 86.96 57.57 62.31 79.42 60.91 22.73 94.06 14.34 13.30 25.97 16.99 -70.27 46.39 55.32 16.23 92.34 60.65 23.11 48.30 94.56 33.19 8.90 69.40 72.15 5.50 14.18 49.74 50.48 42.92 41.86 77.01 43.40 89.58 14.67 71.72 74.40 94.31 37.57 31.72 91.08 34.88 63.85 80.94 36.12 82.97 77.18 23.84 46.92 78.19 88.14 67.41 93.10 76.27 21.39 3.77 36.78 77.79 51.23 84.81 67.75 96.96 12.03 77.71 53.90 63.10 47.62 46.58 28.56 20.22 38.99 91.99 43.18 61.31 5.38 50.05 34.00 89.96 51.50 70.65 76.92 70.63 70.01 27.10 51.78 9.59 57.69 11.83 15.85 53.14 41.56 40.03 1.66 78.23 18.86 75.88 80.86 92.15 85.70 36.80 85.45 12.64 59.01 89.90 50.60 24.46 38.00 37.02 23.41 26.11 18.43 82.26 -46.64 51.88 77.97 5.46 35.89 35.34 53.56 20.85 79.68 53.30 90.58 40.82 99.35 17.42 9.46 21.53 36.63 99.51 61.16 99.09 12.89 43.96 13.69 43.63 49.94 73.84 45.40 75.55 93.67 35.11 47.47 65.24 57.42 78.58 32.03 60.65 14.10 6.31 45.68 5.60 83.85 29.58 85.00 55.30 60.19 94.02 37.37 67.04 32.50 51.87 33.86 65.12 84.75 65.55 68.17 24.01 57.17 96.29 8.44 4.83 55.72 52.96 25.38 24.23 39.10 43.08 30.76 25.04 89.75 3.99 29.24 62.08 25.40 15.09 33.89 48.71 80.31 14.14 51.07 39.18 48.24 89.91 26.89 86.45 72.92 70.77 74.37 88.14 92.20 74.05 70.44 89.90 59.45 75.31 65.55 69.32 43.80 77.28 98.11 80.77 -74.63 17.91 28.07 18.33 84.81 79.06 60.94 64.57 83.22 10.16 4.63 6.48 46.43 89.21 42.12 36.50 20.87 0.62 75.82 23.11 95.99 31.41 28.28 66.88 95.18 70.51 22.31 94.83 82.45 73.79 40.50 61.59 59.78 11.08 16.74 55.35 95.16 59.06 82.20 26.35 35.23 96.63 85.89 43.78 89.36 94.80 17.99 96.13 56.48 35.88 24.85 48.97 78.09 26.29 8.77 89.34 55.57 47.83 33.22 36.22 21.22 77.68 26.48 54.92 48.71 31.37 13.75 92.51 28.48 81.35 97.64 3.87 80.48 92.49 22.38 44.67 29.71 76.41 51.69 43.43 34.53 27.31 3.92 51.06 75.28 35.08 82.20 21.67 22.49 41.69 10.89 38.21 28.33 63.68 60.83 3.40 56.02 74.49 94.92 74.48 -35.72 11.47 42.76 56.77 71.90 89.15 30.14 73.55 98.56 36.16 23.03 19.61 2.05 61.46 12.81 31.53 11.02 96.65 43.00 20.89 42.48 3.34 82.75 49.14 79.11 0.90 9.09 51.02 64.55 83.10 43.42 62.65 12.90 71.77 55.24 93.50 34.18 30.57 47.28 34.11 35.19 16.08 66.20 82.01 40.08 21.46 98.66 31.50 10.81 81.87 24.85 90.14 15.58 71.59 52.63 28.64 76.81 56.58 68.40 23.79 77.12 25.66 89.74 81.60 46.44 90.13 10.58 37.73 27.34 57.49 33.31 65.60 1.48 75.43 79.01 21.66 33.96 80.35 71.72 20.48 67.65 82.30 1.01 43.24 91.93 2.56 23.41 84.55 15.22 44.04 26.27 3.38 98.75 6.50 35.35 62.38 99.05 2.48 80.71 28.93 -32.13 92.14 83.86 75.70 98.64 47.41 81.11 75.80 89.23 43.35 91.23 72.40 0.63 51.05 4.70 46.86 84.10 50.63 11.09 7.84 73.72 22.60 63.10 9.32 96.28 53.90 20.76 12.98 37.66 18.18 88.44 98.75 76.91 64.58 63.97 16.71 33.41 7.79 11.67 97.74 10.29 57.33 43.35 96.93 10.41 90.76 46.43 94.28 23.93 16.40 99.66 26.10 28.03 85.10 33.17 20.71 88.74 25.82 69.75 30.34 24.63 12.26 40.68 0.47 1.75 32.40 92.22 64.71 60.25 77.25 80.85 1.47 41.99 47.36 87.03 68.63 3.43 48.29 27.20 31.92 16.29 96.61 9.87 91.70 29.90 78.87 44.19 39.32 74.59 15.47 20.61 87.76 54.24 72.09 72.94 92.45 44.44 24.22 91.66 65.84 -83.82 5.02 32.95 8.50 65.82 68.51 79.26 12.87 42.29 3.84 57.75 34.22 63.02 28.03 26.39 20.96 17.51 76.51 24.34 29.71 26.13 64.45 18.18 67.28 32.74 24.78 57.79 79.71 80.99 40.66 24.86 15.97 68.10 91.75 5.48 69.02 74.65 59.06 6.96 93.97 25.90 76.33 74.95 85.22 54.67 79.71 11.83 78.38 15.89 3.49 10.62 17.42 37.80 61.33 95.82 36.90 36.64 20.88 37.57 56.56 26.55 88.56 36.43 95.01 89.66 42.42 78.31 66.70 76.90 30.11 33.86 79.84 78.89 76.61 81.21 61.14 47.80 97.89 99.97 97.74 45.69 39.26 53.58 13.57 7.89 24.78 37.40 54.26 6.96 64.07 67.65 40.48 4.63 63.71 98.97 51.48 55.91 55.44 81.40 21.30 -68.73 48.32 90.30 94.15 21.57 44.71 17.50 79.80 78.36 65.12 2.72 66.16 50.25 4.70 59.20 91.90 88.52 92.18 3.65 75.50 30.04 1.13 19.80 19.45 6.05 57.05 9.95 40.13 90.98 5.73 15.28 92.76 4.89 25.29 63.61 54.59 55.99 68.14 22.42 30.72 49.82 52.84 44.71 27.14 5.70 7.76 43.39 77.62 83.19 47.92 99.85 57.23 91.30 37.88 19.03 23.22 94.66 56.40 29.77 77.43 4.35 47.66 88.73 58.98 41.07 99.93 87.95 78.21 75.78 30.54 14.09 24.41 72.52 77.91 0.48 85.25 75.19 78.42 47.79 80.50 55.76 85.81 48.41 97.03 26.20 99.41 52.24 97.74 82.15 64.74 48.90 10.41 27.57 28.22 8.01 26.82 70.46 77.65 76.24 5.44 -85.84 10.29 21.62 60.99 26.46 11.34 90.32 78.69 13.97 10.37 29.18 27.52 65.16 14.38 32.36 35.44 43.64 89.39 9.74 70.25 1.84 70.73 69.51 43.67 81.00 3.92 87.46 85.41 99.40 69.42 38.46 66.29 9.07 96.14 59.45 14.51 33.91 70.68 91.04 20.30 42.62 41.92 1.60 50.87 75.69 7.58 71.44 78.28 31.62 0.01 70.78 98.25 98.34 85.62 29.14 2.07 27.61 80.58 91.70 45.73 49.34 54.44 82.06 52.30 80.96 55.33 10.94 43.83 31.28 81.67 73.72 82.25 61.19 82.17 34.94 84.75 10.42 80.02 82.85 10.54 46.46 15.60 16.94 95.39 26.84 4.53 53.96 60.82 57.29 45.35 2.59 58.23 59.24 62.71 52.45 96.28 58.40 70.29 91.50 54.86 -90.09 31.28 13.30 17.75 72.33 44.58 42.38 61.16 82.14 75.60 66.73 15.99 95.48 3.87 14.08 5.00 27.70 41.03 62.95 41.33 73.35 75.63 67.53 28.25 77.53 78.37 43.56 9.35 98.61 76.29 10.12 75.88 97.57 42.01 47.13 14.63 90.21 49.46 75.92 86.63 22.33 11.79 50.44 47.05 7.58 4.00 73.21 26.14 94.08 31.33 62.06 26.96 92.25 54.49 83.58 29.16 82.25 67.26 7.88 82.67 25.42 49.09 30.28 18.00 29.21 25.97 83.95 82.69 93.52 52.80 77.79 7.97 58.80 0.76 30.41 3.29 94.03 92.40 57.50 80.42 97.68 0.23 95.42 90.91 78.36 56.45 70.25 50.99 85.32 47.09 23.92 83.72 58.55 87.79 72.60 37.62 10.96 91.43 83.58 76.89 -97.96 48.85 18.14 47.23 98.98 3.98 32.73 89.78 38.96 58.29 36.21 78.75 30.00 7.95 59.31 45.47 25.11 81.56 98.21 78.98 10.62 82.46 48.07 3.51 75.51 72.56 28.43 73.23 6.01 47.83 1.71 83.06 5.05 0.00 14.45 25.55 39.89 7.27 7.94 42.63 46.70 67.65 32.46 24.82 2.09 70.23 79.69 61.92 30.14 84.98 54.16 8.98 42.64 69.88 46.10 30.34 67.96 89.30 79.89 78.43 53.75 3.33 73.58 9.52 95.97 53.78 88.81 89.10 99.81 11.62 26.00 82.92 40.10 68.17 55.35 80.26 33.77 99.01 3.53 14.95 48.38 13.65 74.08 35.67 67.44 24.40 89.06 54.59 63.47 94.71 95.88 87.42 95.88 56.02 65.19 77.88 47.13 4.10 78.01 44.51 -30.09 40.84 24.08 23.23 63.29 83.82 92.05 39.79 77.84 10.12 95.74 39.66 22.47 98.30 96.96 75.18 84.01 59.59 98.40 15.42 91.39 61.41 6.18 37.28 13.45 82.28 34.50 15.50 28.64 26.27 61.39 74.40 32.67 83.54 40.56 34.79 76.39 77.32 37.78 19.84 92.68 70.81 36.79 26.22 80.16 92.01 85.65 13.78 46.37 77.77 32.48 52.25 1.21 99.06 91.28 54.82 27.62 64.47 20.19 85.22 61.14 53.76 39.36 29.97 9.90 77.36 72.02 65.22 5.83 99.00 37.54 94.82 95.59 61.52 48.58 72.56 27.28 65.27 9.16 74.85 50.38 8.25 57.16 69.21 62.80 94.42 66.74 10.66 25.77 82.30 21.75 20.15 68.72 36.50 10.53 64.66 74.03 64.16 0.95 3.86 -18.73 96.24 51.05 76.29 13.50 12.88 61.69 81.15 34.03 35.85 82.35 51.61 12.68 73.42 32.52 93.21 32.25 97.03 28.35 66.67 57.98 81.42 70.34 10.13 4.59 15.78 89.97 61.55 48.29 86.75 11.46 74.55 45.23 40.49 81.43 2.74 5.08 60.20 72.14 92.80 25.49 0.84 10.15 88.09 67.06 83.07 38.19 62.56 65.81 8.72 92.52 76.49 6.51 31.75 36.20 91.87 16.15 97.45 23.50 68.50 82.77 43.17 56.98 68.65 5.49 92.18 31.35 64.80 33.81 19.23 48.44 56.96 69.26 78.70 75.00 22.89 65.17 44.25 24.08 3.06 25.58 11.91 24.08 15.71 6.42 16.23 97.14 37.23 17.32 68.50 68.68 35.88 72.08 94.91 92.63 51.27 6.37 78.64 78.25 59.22 -6.59 80.73 47.12 76.43 90.16 60.08 38.71 53.94 3.09 69.71 0.79 38.22 47.56 58.67 1.76 4.16 21.80 23.72 58.44 61.72 69.62 18.24 91.20 3.16 25.38 20.43 5.66 50.06 28.93 39.82 60.64 81.35 28.88 13.08 40.24 34.56 58.93 92.55 68.52 43.01 70.67 36.86 40.13 27.42 52.97 14.70 73.28 83.47 39.37 83.73 49.80 28.21 9.79 19.96 30.99 68.16 32.30 23.87 69.06 90.38 77.79 78.37 75.40 81.59 32.28 83.16 2.46 51.22 31.15 20.52 71.24 67.07 38.35 1.73 43.77 16.69 59.72 97.77 93.63 80.61 51.28 7.22 1.14 70.60 44.73 43.41 29.12 79.63 88.43 9.49 7.09 14.41 19.50 33.48 30.26 97.36 93.22 24.39 52.58 82.18 -12.33 77.14 74.97 81.33 84.26 4.81 34.92 23.75 98.64 35.50 62.58 9.42 41.14 24.27 47.07 61.14 77.60 68.67 78.97 43.20 87.99 35.38 76.68 37.63 34.25 46.60 13.83 38.78 96.59 9.40 24.40 8.98 41.60 16.61 79.03 13.65 22.01 94.57 17.05 99.12 39.73 64.05 15.30 54.13 20.67 77.57 0.25 2.66 71.89 58.98 92.53 66.77 88.98 4.05 94.96 99.12 35.31 80.94 25.42 5.45 76.11 25.20 79.99 96.39 33.20 8.28 88.20 6.97 93.53 40.32 71.96 32.18 67.18 93.61 70.39 26.51 26.36 19.93 94.06 9.96 59.45 37.75 70.25 56.28 15.54 23.15 66.30 83.26 81.72 84.22 28.49 55.92 62.67 47.67 80.22 14.08 74.71 69.47 72.30 66.21 -29.67 22.94 65.35 61.95 35.80 77.84 81.66 5.83 85.66 8.88 64.46 21.92 76.09 4.92 8.72 3.60 29.40 25.30 80.24 16.03 62.10 62.67 33.20 28.29 53.58 32.50 96.91 40.22 41.20 93.96 65.04 99.76 61.43 54.97 70.89 90.77 66.04 1.36 46.04 24.66 74.63 68.42 90.20 35.13 54.24 74.75 12.07 71.17 7.67 20.01 7.67 69.63 21.84 29.18 62.85 48.90 73.93 8.09 67.68 34.53 65.11 56.51 40.87 54.83 85.21 10.35 66.51 75.21 27.21 27.29 27.14 55.50 24.35 85.88 49.01 60.65 8.05 20.34 44.84 62.71 94.54 23.77 30.90 39.06 89.54 87.61 83.54 51.23 10.48 98.76 54.99 51.21 25.60 72.51 70.80 70.61 89.42 97.82 53.88 57.70 -81.47 52.02 74.69 89.83 71.48 44.88 92.83 16.89 77.98 57.61 45.74 35.66 15.48 31.76 1.33 82.93 51.52 86.09 91.18 39.42 45.02 42.46 95.82 73.96 33.61 22.05 36.86 61.49 25.86 52.47 96.35 36.17 81.74 32.75 92.44 22.67 33.58 43.28 67.99 55.76 61.40 1.57 88.86 90.44 86.06 38.24 42.22 29.34 57.66 15.81 42.47 41.94 39.69 60.09 17.61 3.25 7.72 21.73 83.68 96.95 23.49 37.05 82.70 68.17 59.60 46.24 7.27 88.76 93.15 36.70 30.06 89.31 51.64 7.05 26.62 3.15 42.62 51.93 47.33 63.45 46.48 77.71 83.37 49.62 92.09 83.57 70.96 45.72 17.52 90.95 64.93 52.89 69.13 25.66 49.29 18.38 47.00 32.01 0.87 86.60 -52.20 43.28 16.73 3.50 26.55 33.09 57.83 58.54 57.27 16.98 76.89 14.35 95.42 26.88 17.43 33.07 8.39 68.99 24.22 87.93 60.31 44.21 81.34 98.10 31.26 21.33 88.26 81.73 98.02 90.70 43.27 30.49 54.28 74.96 50.56 3.03 8.08 19.51 98.37 96.11 99.93 5.93 64.10 93.81 85.77 47.76 70.20 86.44 73.27 31.64 77.17 48.44 36.33 77.54 96.90 26.86 32.23 74.34 25.76 27.28 44.40 11.07 86.86 62.95 80.89 70.06 79.32 32.11 96.97 20.08 75.69 23.50 81.46 60.13 68.94 55.49 7.83 52.47 15.06 15.15 97.95 28.76 97.91 91.52 6.29 94.94 53.93 73.48 24.83 12.26 88.95 17.69 12.48 11.86 62.13 86.79 45.17 67.82 58.62 11.02 -9.08 78.41 55.36 53.91 86.55 32.38 9.01 55.15 1.99 99.08 49.59 19.27 98.51 3.50 37.93 52.24 24.89 10.81 78.25 13.57 71.17 72.72 39.56 72.57 70.57 22.11 70.54 15.00 93.23 36.42 81.02 57.22 46.02 82.80 25.51 86.66 66.88 57.75 42.67 95.31 31.16 57.24 86.38 45.18 31.29 69.06 85.09 82.77 89.48 11.93 8.85 34.78 8.79 80.30 92.28 45.31 6.65 77.32 40.67 22.10 90.41 8.79 44.60 89.94 90.61 20.74 54.35 20.68 54.78 8.22 62.22 51.32 84.29 34.12 81.75 81.28 26.04 14.02 77.37 82.53 79.44 54.56 87.63 75.79 90.34 38.71 3.58 94.41 21.72 47.97 79.38 10.73 98.71 30.90 32.61 27.13 83.11 89.73 80.20 9.55 -93.37 68.31 92.23 17.43 63.84 79.19 99.02 12.12 28.40 35.85 98.29 6.81 36.29 16.75 51.97 39.88 58.92 23.48 25.46 79.46 58.52 38.52 98.45 92.65 21.73 25.79 23.53 52.54 83.44 29.90 84.25 34.97 17.04 20.38 21.83 11.02 37.60 97.37 96.80 73.93 1.63 9.04 72.31 44.05 20.68 86.32 75.52 31.11 7.21 36.82 71.67 75.21 20.48 95.49 1.31 87.71 9.75 9.29 48.45 71.25 89.33 39.64 60.30 40.84 65.37 27.29 76.58 2.59 76.99 20.70 48.62 36.34 88.31 35.54 19.82 75.26 4.68 74.75 90.91 92.34 60.27 72.22 52.58 94.44 57.94 81.28 10.96 64.36 65.54 80.12 23.95 89.08 39.01 41.38 16.69 47.32 21.79 0.87 72.78 34.05 -0.61 3.41 16.34 73.09 9.82 38.68 46.46 34.05 97.39 71.48 64.16 30.12 70.47 34.73 16.42 62.12 11.62 86.97 62.71 98.84 9.68 70.69 57.89 47.01 32.23 40.75 1.87 21.90 58.95 59.45 12.75 74.76 1.67 34.08 24.22 92.18 91.20 46.72 96.18 30.01 21.18 52.43 8.36 43.43 0.78 62.86 4.73 43.66 88.05 1.07 44.84 14.64 61.51 87.48 46.69 53.99 58.52 47.62 87.96 84.97 85.28 62.78 80.73 42.40 70.38 54.51 62.33 31.52 6.00 5.68 82.72 27.06 19.50 14.34 36.06 78.50 25.28 26.12 45.09 83.06 22.30 4.91 29.03 13.40 95.75 7.53 73.99 0.09 86.75 97.86 49.76 82.58 90.54 43.44 59.90 6.88 69.82 47.66 59.95 37.60 -40.54 8.04 4.02 65.06 24.97 22.10 17.17 69.14 28.56 71.31 31.41 60.59 44.37 13.96 27.08 4.97 60.58 76.03 26.94 58.30 18.28 86.72 34.86 7.05 24.56 64.86 68.40 64.93 6.88 38.74 45.63 58.99 35.67 19.77 30.99 91.78 74.52 77.38 76.49 13.17 89.78 69.14 27.60 58.79 76.69 4.53 95.55 0.34 4.37 42.28 70.55 22.82 19.77 38.37 30.45 58.77 77.71 33.57 31.61 41.52 42.23 42.16 0.76 93.33 89.26 85.43 89.16 34.13 1.07 59.90 12.21 54.28 3.68 74.56 73.33 98.19 3.02 44.78 38.91 79.76 52.39 81.19 11.46 77.93 54.97 66.05 69.73 13.06 72.92 48.97 84.39 56.97 44.33 54.78 73.72 13.68 36.21 95.50 6.83 59.22 -24.63 29.72 86.63 31.87 2.61 98.22 76.67 77.86 97.26 42.49 99.25 51.85 18.64 77.37 90.90 66.40 38.52 73.60 48.90 48.84 67.39 65.45 68.97 74.65 45.49 67.70 11.38 29.12 37.42 10.13 58.54 24.63 11.72 19.84 45.87 71.22 6.72 35.70 5.03 43.82 98.89 8.55 58.52 37.91 79.34 70.94 4.14 27.97 12.23 78.23 20.90 74.40 65.60 4.02 64.15 14.16 97.31 75.29 74.89 62.62 60.69 24.06 11.42 7.29 49.86 34.60 61.92 84.73 52.34 5.09 67.59 93.52 97.24 51.79 51.87 73.74 88.85 53.22 81.96 69.95 51.93 73.57 11.20 52.70 74.90 45.03 8.01 70.66 44.75 34.07 22.00 93.72 52.28 4.09 86.87 75.45 92.00 52.36 74.20 71.29 -95.25 35.83 37.47 75.55 30.34 91.19 39.40 16.66 10.92 96.57 5.13 9.01 62.11 47.80 9.37 66.18 83.44 3.93 75.33 23.78 19.83 65.55 21.02 40.84 26.99 59.38 11.66 51.97 22.12 75.73 22.78 87.28 83.87 12.45 15.21 18.65 84.91 85.91 53.84 40.38 59.90 85.44 70.26 72.94 1.75 41.76 48.27 39.78 27.61 49.90 44.74 62.92 63.17 62.88 36.05 62.33 7.08 96.95 38.24 26.67 85.67 93.67 38.92 51.97 44.33 26.67 6.24 21.94 62.17 64.20 54.41 35.52 58.17 47.04 68.42 48.16 6.26 73.48 99.49 82.31 97.94 23.87 32.31 15.48 22.13 85.39 35.54 31.46 31.36 39.89 56.63 4.16 70.17 96.03 2.00 38.62 22.49 69.69 37.72 37.36 -37.13 47.48 75.37 37.35 21.65 63.24 96.83 82.51 32.62 87.13 1.97 70.65 68.77 40.92 5.09 51.84 15.15 34.78 95.30 35.24 20.51 87.14 18.06 25.41 35.85 82.50 90.98 15.57 56.13 95.31 64.84 98.35 66.21 19.67 51.10 38.95 66.96 61.82 36.63 7.69 56.42 1.91 8.69 80.75 85.69 89.94 20.57 92.80 63.96 39.71 14.06 73.97 96.13 32.95 60.91 67.37 97.87 24.67 85.17 19.48 66.79 49.43 20.75 78.59 4.79 50.69 78.19 82.94 85.45 26.09 62.20 44.41 20.70 79.18 87.45 31.13 97.43 9.59 1.02 93.91 75.14 61.91 33.43 96.28 50.28 0.87 67.58 26.76 70.53 92.56 90.87 20.30 87.45 46.34 87.07 29.24 79.51 27.72 5.29 59.28 -54.53 95.43 33.00 72.47 63.45 28.54 37.06 4.83 88.52 70.50 77.48 43.24 78.07 37.14 61.99 51.15 71.82 49.30 34.93 77.32 82.89 13.70 52.49 0.25 10.77 44.42 69.78 79.28 56.19 49.75 37.00 21.12 49.07 0.80 64.44 4.97 95.96 12.03 77.26 85.86 12.64 53.34 61.20 73.01 27.04 48.81 34.91 43.73 69.89 50.94 2.39 88.02 99.96 96.50 95.42 93.45 73.03 14.68 96.33 32.19 44.48 42.07 77.46 21.19 21.93 82.26 93.44 13.85 75.50 56.63 24.02 75.86 58.05 3.12 64.70 6.46 94.74 9.66 19.55 8.67 25.72 70.87 14.90 17.48 96.13 13.58 62.94 30.69 45.36 10.46 90.75 1.61 20.99 47.14 66.36 17.72 82.66 72.68 73.96 15.06 -5.47 55.74 5.76 83.94 2.53 58.04 33.56 24.75 14.37 57.64 28.52 84.90 15.06 61.59 24.73 52.83 23.38 73.96 89.31 8.03 73.16 36.13 73.79 12.85 94.59 46.08 55.85 2.91 15.48 66.21 11.03 68.66 87.97 91.62 69.22 9.55 57.05 59.48 37.82 88.62 34.02 33.30 98.76 27.90 42.70 80.93 29.85 7.40 10.08 60.83 81.01 98.20 26.65 0.30 76.83 53.80 18.53 89.99 13.16 92.36 82.34 97.11 46.67 95.62 91.46 77.04 79.29 72.43 23.16 56.91 15.89 55.87 48.43 60.17 67.43 4.59 20.81 23.90 69.70 28.14 5.16 43.30 66.49 30.81 85.44 28.06 54.29 78.07 61.09 40.59 12.93 91.32 38.93 85.01 21.71 33.56 52.68 6.47 66.70 86.01 -81.24 88.57 24.45 45.38 88.23 69.28 21.42 82.72 6.26 1.13 37.02 51.54 73.67 66.82 46.50 16.88 33.62 64.53 83.91 50.77 77.07 70.35 21.81 97.55 65.63 13.53 76.59 56.82 31.68 45.37 56.27 67.59 20.36 70.12 92.46 56.79 41.05 5.20 28.65 28.43 49.50 44.30 26.11 94.16 90.67 43.51 87.42 76.44 73.87 54.65 25.13 90.46 58.50 75.61 71.11 13.69 49.02 16.06 3.79 70.88 47.94 65.82 8.14 3.33 95.97 50.78 9.11 23.30 11.82 80.50 21.38 78.13 64.55 10.17 30.89 72.58 30.58 95.75 43.61 19.12 64.57 76.14 51.41 17.35 83.52 89.77 12.69 94.55 17.86 33.63 64.07 1.02 4.41 38.72 42.94 65.91 19.89 72.27 29.72 57.79 -67.41 20.92 69.40 99.45 11.47 99.34 88.89 37.87 5.58 94.09 19.67 28.64 85.26 93.67 5.59 14.36 95.83 96.93 22.90 92.05 84.47 40.97 55.99 74.11 67.96 58.89 9.85 39.32 23.93 10.84 74.73 85.09 25.06 47.73 18.97 43.14 47.08 14.27 66.57 36.58 26.96 36.03 17.38 6.21 57.21 96.87 7.08 54.57 0.44 58.82 37.51 5.45 14.09 85.25 93.77 89.31 6.28 71.02 82.33 43.48 41.85 50.53 58.83 20.74 20.68 30.08 38.89 65.98 22.07 21.70 44.59 57.15 61.14 18.54 76.96 98.81 1.09 50.10 0.30 98.23 50.65 55.28 60.21 57.74 66.62 35.48 65.04 68.93 35.39 80.81 16.33 8.34 1.30 24.68 35.20 64.81 84.23 14.30 70.12 38.07 -32.70 18.38 42.72 69.24 52.52 68.19 9.92 80.58 70.85 72.25 23.14 55.52 69.37 95.16 63.99 10.41 11.51 70.63 89.20 74.29 97.39 81.18 99.91 3.41 77.99 93.46 67.93 50.80 95.25 26.36 71.81 64.19 27.16 12.98 87.09 20.76 0.14 82.26 83.86 84.14 32.87 23.22 14.99 38.00 74.99 99.74 92.38 93.54 2.47 38.72 43.92 55.22 4.51 92.79 35.95 35.22 24.21 17.29 78.16 70.73 2.75 74.21 61.43 12.04 66.61 97.42 13.14 40.86 5.29 52.12 49.52 14.65 79.43 5.59 44.53 74.37 7.62 32.16 66.33 67.57 85.09 46.43 0.21 0.33 38.27 8.88 25.32 39.19 0.22 64.54 23.96 14.47 86.68 42.53 53.63 4.30 14.05 99.46 12.00 33.91 -28.50 19.77 21.22 44.79 96.17 82.56 16.49 25.37 77.59 88.03 63.61 92.11 96.78 27.73 12.44 19.23 95.91 68.45 61.46 4.97 23.36 94.25 81.35 16.94 38.04 2.79 43.98 80.52 27.23 36.45 32.24 61.07 0.89 75.91 57.88 77.44 37.34 67.29 98.27 39.42 45.80 31.71 1.72 64.71 25.92 6.68 45.02 56.04 53.34 7.21 72.17 58.95 54.79 9.98 45.64 25.31 12.93 74.25 96.58 33.37 86.09 0.98 63.56 11.83 25.50 63.94 67.31 7.77 39.15 47.23 49.74 78.35 95.04 53.93 74.19 81.27 90.26 40.58 51.54 71.05 7.47 7.79 83.72 96.75 62.82 70.55 15.97 15.84 89.54 66.61 18.62 1.02 20.83 19.17 49.40 37.19 26.47 60.98 36.52 40.34 -70.92 85.98 3.92 86.65 91.39 64.03 22.76 61.61 65.02 57.43 31.49 83.37 4.80 78.87 12.71 95.48 12.35 85.15 60.13 4.40 91.41 55.06 73.13 13.85 96.20 97.45 36.46 32.68 81.91 24.11 89.57 46.70 52.25 60.46 75.99 84.58 5.41 97.46 34.97 85.00 79.05 88.24 86.23 13.25 56.52 65.89 88.99 66.41 53.32 64.12 90.05 10.20 95.24 29.00 30.96 91.74 52.29 68.29 66.18 31.44 62.54 90.15 52.37 85.24 45.65 23.08 70.41 63.50 27.28 76.69 61.83 15.21 62.48 56.80 28.98 69.40 35.23 8.25 98.93 31.15 90.20 70.23 24.56 39.11 29.96 19.44 1.00 93.13 54.33 73.57 86.98 60.37 83.28 55.33 96.64 5.28 97.54 38.48 23.09 40.41 -89.92 84.96 52.23 5.40 11.03 85.87 74.61 66.32 31.74 10.12 75.95 95.72 66.58 41.80 81.58 73.32 37.16 83.52 28.62 97.57 53.85 56.71 78.71 7.79 71.83 56.70 63.38 22.35 93.94 47.56 21.04 13.36 65.33 85.87 8.05 43.22 99.18 68.73 60.00 89.06 31.84 22.81 18.99 52.18 74.29 97.04 15.46 48.87 23.95 29.54 79.48 94.61 93.04 16.18 9.45 25.55 75.30 12.72 13.01 49.61 63.41 3.06 93.85 44.79 35.60 44.08 48.29 88.78 34.75 60.14 52.81 55.57 8.78 4.36 95.21 8.87 64.49 50.23 25.01 65.49 23.34 27.30 24.43 19.38 36.25 81.94 43.24 41.99 71.91 46.89 50.54 14.77 63.33 54.96 56.62 17.22 8.59 1.39 16.39 56.74 -83.59 12.49 50.50 62.88 51.17 56.35 29.53 97.51 30.76 3.87 19.44 21.31 54.18 80.31 78.79 13.24 95.40 67.57 91.77 54.55 97.48 16.36 27.90 85.47 81.72 2.67 28.23 57.22 10.70 30.65 88.50 81.94 18.91 78.71 52.21 44.54 16.26 62.85 64.01 26.76 70.71 15.49 45.77 66.79 36.83 50.56 89.52 7.47 9.38 86.77 98.55 66.19 88.66 66.84 40.93 76.42 32.80 2.78 58.99 65.54 0.38 89.61 14.24 36.78 42.94 59.11 70.55 84.79 30.92 60.45 59.91 25.97 38.71 88.75 72.20 92.15 54.72 31.38 61.20 86.29 3.70 43.57 51.65 47.30 83.24 28.76 94.31 23.86 15.53 19.75 99.72 72.92 81.23 21.79 45.56 29.58 94.14 39.16 30.12 78.16 -85.96 92.95 26.75 18.02 16.70 86.39 61.92 40.49 32.55 61.47 82.14 41.91 15.39 83.05 90.56 51.03 25.83 69.79 26.72 39.95 10.59 28.16 0.33 5.83 67.40 43.72 13.73 34.94 34.35 89.55 98.60 74.73 73.64 42.36 65.94 95.03 57.64 59.68 31.06 76.19 87.78 45.90 11.30 81.74 45.41 18.88 29.09 6.12 46.70 63.65 85.48 54.94 78.31 90.39 15.24 24.68 36.37 17.17 38.49 56.59 75.27 42.86 76.46 66.72 63.04 63.56 80.82 93.65 63.29 89.05 40.57 24.25 38.47 97.49 35.93 44.56 71.16 91.52 46.24 88.47 44.92 39.85 78.01 52.42 62.13 56.46 99.73 88.99 55.48 99.25 19.28 23.43 8.23 36.09 46.78 5.95 24.90 32.97 29.96 1.16 -4.65 99.87 68.04 62.41 86.92 79.54 47.39 36.50 92.51 1.00 66.69 61.43 43.00 66.52 1.05 18.14 15.20 55.32 72.35 68.46 27.34 39.49 42.99 62.16 88.50 65.56 31.85 80.57 78.37 37.76 93.18 96.25 11.68 67.92 4.99 48.83 76.71 78.01 49.36 37.39 59.96 27.73 26.84 98.51 64.21 98.13 19.37 97.67 90.45 1.31 21.25 11.94 82.99 6.45 12.74 43.38 17.16 21.50 3.68 0.11 23.68 95.70 18.15 18.53 79.94 91.20 93.25 26.65 26.49 18.33 20.99 56.68 35.03 65.03 25.16 24.76 2.53 17.83 44.14 80.69 68.68 17.54 84.12 56.97 62.40 77.32 94.21 63.34 96.42 35.73 61.90 20.40 99.42 87.85 31.84 5.00 4.74 37.26 49.25 52.19 -20.20 73.89 96.26 45.03 86.60 83.00 57.91 33.88 22.09 34.73 30.67 10.81 92.07 4.13 19.08 35.04 92.11 79.91 92.40 7.60 48.12 90.35 67.86 57.36 64.03 93.95 6.16 49.85 91.30 47.89 67.34 14.54 98.43 79.81 27.62 60.59 45.72 28.21 23.83 3.07 39.09 3.68 47.59 49.98 16.96 10.69 62.87 97.71 8.27 7.48 70.98 59.38 84.87 5.66 45.17 84.97 44.20 68.03 35.00 20.15 82.96 20.08 71.27 86.78 72.87 11.43 6.11 73.21 68.24 75.88 92.67 77.41 38.33 96.99 92.82 97.80 93.46 83.38 8.08 27.48 81.64 97.52 95.21 6.04 11.35 84.55 19.46 0.08 76.01 71.90 49.07 60.67 65.54 41.99 2.86 51.46 20.64 42.57 84.25 25.65 -88.08 14.90 12.82 92.02 41.42 46.40 48.53 12.69 31.39 26.67 7.77 74.69 27.73 20.92 99.16 20.14 77.23 67.07 3.37 89.32 93.88 4.68 32.46 43.34 23.80 63.55 88.13 60.44 15.24 7.20 26.55 68.02 23.86 37.44 83.73 62.80 94.00 66.27 79.13 50.07 7.18 78.09 9.05 52.29 7.73 67.93 62.14 29.42 22.88 53.48 60.28 59.09 67.33 0.13 39.47 52.48 31.61 37.26 47.36 30.76 74.99 2.00 42.80 33.95 20.14 31.23 85.61 63.18 70.56 59.86 3.43 25.69 13.94 63.00 9.27 36.68 40.42 17.23 75.58 90.51 74.71 49.72 30.68 12.09 86.35 49.28 37.06 14.61 18.71 67.31 6.79 90.47 84.01 98.71 88.98 49.71 96.77 4.70 87.71 63.82 -96.52 13.66 34.67 59.76 99.27 40.87 38.08 15.93 76.14 84.39 16.79 21.74 78.64 50.11 10.04 36.48 33.60 46.33 64.59 7.64 38.51 45.49 25.31 62.76 60.27 92.42 26.40 7.03 74.03 65.82 43.46 33.35 11.19 67.64 96.34 99.98 57.67 61.23 96.35 16.31 39.17 13.51 69.42 70.49 64.53 53.18 35.42 77.45 64.71 44.41 26.78 11.39 86.85 83.95 30.96 5.04 77.41 82.17 17.56 8.49 4.06 21.67 60.66 0.21 47.18 66.28 83.96 94.70 57.64 0.61 52.29 58.16 24.65 91.62 58.26 92.78 87.77 21.22 82.70 46.87 50.27 70.74 52.41 76.61 23.88 63.23 11.85 10.70 39.35 44.45 67.17 16.85 45.09 48.75 3.63 9.70 56.62 50.18 65.40 95.52 -95.74 49.24 23.15 68.41 22.87 14.66 63.20 2.83 93.70 49.11 71.85 13.38 74.71 37.30 69.46 36.90 84.00 31.38 98.91 95.61 88.48 79.99 95.64 92.19 9.95 3.90 69.53 49.52 81.69 29.71 87.92 88.23 86.81 24.42 63.69 77.19 64.03 88.54 69.86 8.20 22.52 39.39 77.95 18.10 21.18 72.36 78.30 98.15 17.85 60.50 60.69 73.23 3.17 10.25 23.81 72.04 66.71 23.44 52.44 69.18 23.79 71.74 38.30 51.59 94.25 10.84 11.39 69.13 95.76 50.53 73.75 34.29 41.66 85.46 7.25 53.23 12.00 53.85 97.30 23.05 9.53 97.83 52.99 15.05 16.39 1.55 34.88 28.39 99.87 86.80 58.26 33.12 84.24 16.42 43.42 55.33 46.48 93.86 45.78 72.66 -31.14 70.29 67.39 54.60 17.45 74.58 15.29 16.50 32.37 18.49 51.44 41.00 8.66 63.96 57.81 87.42 71.85 96.68 11.72 96.22 50.48 59.15 47.47 61.98 18.50 26.96 34.25 89.90 77.72 59.25 55.62 27.84 32.61 50.18 70.90 81.22 90.22 53.53 24.51 28.01 33.97 89.32 65.44 94.99 84.69 71.14 40.59 30.07 38.82 43.71 84.20 50.33 38.21 38.40 65.25 1.48 60.58 1.62 2.76 1.20 91.03 84.90 71.01 12.47 84.66 32.79 29.78 15.42 34.66 38.86 32.26 9.30 24.99 57.76 67.02 33.70 89.32 61.35 26.33 10.64 32.99 48.90 33.57 50.79 30.49 29.33 19.64 11.08 34.84 25.73 84.57 69.54 63.39 11.86 88.30 46.76 12.52 22.72 83.39 46.53 -22.94 25.53 30.35 49.75 50.40 63.89 70.84 67.31 74.34 78.67 33.85 79.00 20.71 67.70 73.13 50.24 59.86 70.31 32.40 32.33 75.48 56.92 21.96 38.83 24.06 69.96 1.48 47.07 63.72 55.94 68.71 91.26 12.19 30.73 21.03 95.96 48.55 37.21 92.61 14.87 55.50 47.09 39.29 36.61 42.51 1.64 63.64 87.60 47.06 97.03 56.01 82.93 95.98 18.39 43.20 5.11 14.61 11.33 16.19 37.80 80.34 18.89 43.37 12.71 22.49 27.63 30.88 24.25 39.70 55.86 4.90 88.21 21.05 60.41 45.93 15.00 32.85 55.73 82.06 93.53 77.78 75.41 82.22 32.15 89.02 5.26 14.23 59.63 81.08 78.92 81.07 83.94 31.08 48.66 63.96 41.30 72.41 39.88 48.79 66.92 -4.13 80.36 50.52 6.57 28.72 4.43 53.30 25.19 16.06 84.27 53.68 93.33 16.13 47.91 12.70 47.99 93.87 64.16 95.53 9.91 97.24 42.85 42.79 46.69 71.13 21.01 40.49 58.46 14.40 42.48 77.13 31.91 90.60 54.92 65.51 87.91 1.82 55.59 13.73 39.15 42.55 51.00 60.11 53.25 97.06 11.99 12.59 42.57 37.26 76.98 17.63 20.94 23.85 31.98 39.67 56.66 60.71 8.92 68.34 19.24 2.38 87.07 41.04 42.80 13.33 40.02 76.91 94.98 81.60 11.00 64.43 28.24 47.23 21.32 57.10 75.50 37.68 39.25 21.22 96.05 11.98 66.74 3.73 81.19 1.21 34.20 85.37 63.92 43.63 47.83 11.02 56.57 74.46 83.67 36.72 9.83 93.14 40.38 17.84 37.69 -3.18 65.80 16.35 4.92 85.14 84.07 69.50 25.82 52.40 33.46 9.10 7.74 32.37 82.26 17.80 48.41 1.86 53.06 53.59 64.06 82.11 27.26 68.77 33.05 69.98 24.79 55.79 3.34 71.26 40.22 48.21 83.26 57.81 83.33 79.68 20.88 13.64 79.27 27.59 12.39 73.66 83.47 43.69 71.22 37.13 90.68 56.59 31.42 36.03 25.91 28.22 80.93 72.04 18.87 47.60 94.83 30.45 22.77 11.24 53.14 82.78 80.63 99.64 96.71 14.06 19.40 91.21 19.35 43.02 70.02 84.09 9.43 98.50 63.54 6.37 72.83 81.92 94.59 58.26 95.00 17.04 81.57 61.22 20.64 50.27 39.97 50.02 93.01 67.50 50.77 29.11 35.37 90.27 46.28 86.11 33.93 8.31 87.87 97.94 3.02 -93.09 65.55 30.49 58.06 90.80 89.33 87.41 81.39 81.54 67.83 25.62 61.69 45.26 36.45 11.35 27.32 31.84 19.49 35.85 91.62 91.74 14.02 2.39 47.08 44.98 75.27 85.85 6.35 51.95 45.78 59.85 44.85 18.44 36.15 67.32 40.50 26.75 13.66 26.11 40.23 73.04 27.24 59.42 88.63 9.45 91.39 0.04 79.46 16.77 86.20 32.48 14.37 95.50 61.82 3.95 31.53 57.34 19.64 21.04 66.66 6.71 28.26 55.81 80.97 44.08 92.53 92.36 68.01 56.89 2.37 31.76 53.43 12.26 66.86 57.45 5.29 39.01 47.84 3.96 60.07 34.87 90.10 99.89 27.29 95.95 30.31 33.31 35.48 41.49 44.87 12.98 90.69 21.17 16.70 85.40 64.59 8.08 71.67 91.54 3.99 -71.91 4.49 85.60 55.13 83.17 23.25 82.05 52.85 60.18 36.18 29.91 42.23 36.84 84.90 83.33 56.30 84.33 34.90 5.18 7.74 81.35 54.47 56.98 14.82 95.63 89.46 35.13 57.40 49.97 36.33 10.64 84.11 40.58 15.23 50.94 69.91 14.71 30.14 45.81 72.86 21.53 28.86 64.02 87.06 84.43 68.99 68.34 15.03 77.75 70.97 92.52 45.87 37.70 52.67 90.00 20.43 21.26 0.06 0.35 70.72 53.41 56.81 71.14 21.66 59.89 87.70 11.09 56.87 86.88 61.91 7.33 9.10 25.14 57.85 99.96 56.76 46.43 17.34 48.86 34.71 79.12 76.73 9.48 30.34 73.62 68.34 59.48 69.07 80.98 17.62 52.31 43.25 88.44 15.25 65.04 73.10 99.82 84.89 62.87 73.05 -55.75 89.17 2.94 36.11 31.48 37.52 3.32 73.99 84.31 34.66 10.60 51.48 23.07 52.46 45.62 47.71 33.08 88.20 72.47 35.33 68.69 97.32 41.10 98.39 88.63 67.30 7.35 3.74 53.20 5.66 31.59 57.59 5.11 31.88 50.44 14.39 13.68 15.88 63.96 27.01 79.25 80.16 93.09 66.73 61.51 77.64 76.30 44.91 35.25 29.31 87.08 5.26 72.73 90.31 61.49 14.58 21.20 12.59 38.31 35.12 30.72 84.26 76.03 30.82 38.89 95.77 80.89 90.81 88.06 59.13 3.08 42.17 35.56 95.36 74.05 56.91 60.92 58.58 28.81 33.33 85.57 16.64 20.85 57.36 15.50 87.15 63.41 45.23 82.88 56.74 2.31 5.93 41.93 79.83 90.15 53.43 97.07 87.81 1.44 66.34 -12.07 57.82 29.17 10.76 64.35 49.38 55.73 50.38 8.76 21.08 8.67 46.83 25.34 97.16 40.99 77.13 47.71 13.24 52.26 4.87 60.31 40.91 50.21 18.27 31.08 59.04 19.12 15.71 37.88 37.05 50.94 18.23 66.86 2.83 81.94 84.46 68.64 13.56 82.93 52.98 92.83 69.13 94.97 1.20 40.14 25.07 66.81 21.65 40.78 74.78 2.11 83.31 52.78 86.30 90.62 5.87 46.58 23.30 66.38 67.94 79.80 7.51 66.54 12.18 23.73 8.25 23.93 38.10 27.81 21.17 91.40 13.14 22.80 64.37 50.66 54.01 44.47 62.79 30.55 52.73 69.13 89.97 87.42 13.69 31.81 99.87 99.90 30.71 50.71 97.17 8.02 62.17 8.99 87.08 86.32 19.68 74.94 53.25 26.25 23.83 -37.26 56.53 90.93 48.54 16.63 78.51 9.81 17.13 39.42 46.26 77.68 72.01 70.47 63.87 45.20 73.66 48.11 99.63 73.01 52.14 27.66 28.76 95.32 60.60 41.83 54.99 31.82 15.20 1.09 16.05 83.39 41.93 33.75 96.79 59.80 35.68 84.97 32.69 56.49 14.76 4.84 20.75 47.52 38.75 18.02 8.26 49.39 2.62 3.59 64.87 54.88 96.56 89.56 30.88 29.11 69.62 8.60 26.53 66.07 16.79 8.78 82.45 37.44 59.32 1.50 13.81 80.07 64.94 95.46 19.51 15.92 38.04 97.94 54.42 30.84 87.83 44.23 19.42 44.59 28.43 18.08 54.24 86.56 83.36 50.13 31.79 29.87 60.08 82.39 23.68 88.82 86.11 28.64 23.26 56.32 36.44 36.80 26.19 5.16 91.00 -42.07 84.09 63.67 73.17 54.98 66.92 78.43 28.06 46.25 73.41 71.40 99.73 4.26 0.09 65.71 71.80 71.37 92.13 51.40 99.73 92.74 52.63 3.60 83.08 96.95 99.45 44.94 73.20 29.48 93.54 90.88 50.28 64.28 86.79 64.74 71.11 22.53 79.48 80.59 2.80 72.02 5.83 41.74 64.05 55.71 43.38 6.30 76.49 1.83 85.92 3.54 54.19 33.34 35.18 71.29 22.32 94.89 24.84 24.55 52.30 72.29 34.85 15.67 73.65 14.78 5.73 86.89 42.34 93.43 60.26 60.85 94.44 30.70 68.37 40.01 40.01 96.18 18.67 15.99 86.07 0.31 32.52 13.47 25.87 41.72 23.88 31.40 82.40 82.67 29.95 84.21 19.32 18.05 46.08 67.17 41.25 14.26 64.32 86.72 18.34 -75.63 80.23 52.02 82.24 66.03 16.83 25.35 30.42 34.23 45.83 64.14 60.06 68.32 12.73 91.86 1.42 18.34 52.70 82.50 63.35 34.04 78.20 75.70 10.11 97.31 83.04 1.94 62.81 40.24 77.23 5.53 16.90 94.19 30.16 74.11 48.39 20.92 33.09 21.78 91.79 87.24 96.67 75.26 54.68 4.73 21.94 59.75 75.60 57.30 33.36 15.88 8.13 17.71 70.46 35.41 63.50 84.94 82.05 90.27 19.79 98.12 43.87 70.99 76.29 75.65 51.37 53.18 32.32 61.51 78.86 60.79 23.81 5.99 5.57 89.03 34.13 97.28 63.20 49.67 84.23 79.53 89.62 79.59 39.81 68.69 91.31 94.30 21.79 8.80 81.48 20.97 95.01 79.41 6.08 70.86 65.40 21.79 62.69 20.75 89.25 -38.07 49.39 92.43 41.09 5.64 40.07 97.04 18.50 20.81 27.84 69.78 73.67 19.27 42.35 84.57 96.87 90.38 25.00 85.91 96.45 23.19 8.10 73.45 82.85 99.51 84.40 43.44 15.60 55.49 42.36 76.28 20.82 35.83 59.72 73.92 59.25 28.91 31.25 47.63 97.22 26.94 27.26 63.02 99.18 62.81 65.46 17.90 79.68 58.23 77.74 29.26 67.13 30.80 58.47 98.50 97.77 12.47 13.85 6.37 45.17 42.84 15.58 59.59 42.27 27.95 68.10 84.89 37.71 36.80 24.83 55.64 29.67 76.24 34.32 89.62 67.27 85.77 36.95 83.14 73.83 13.73 98.96 63.87 96.16 33.31 55.92 55.08 56.41 66.53 91.54 73.36 38.08 72.28 22.99 29.74 19.64 28.38 57.09 49.05 67.06 -16.29 5.78 80.21 84.11 75.28 12.82 27.65 43.51 71.12 99.96 67.33 14.29 59.34 53.31 77.78 63.13 35.72 96.80 94.73 87.47 90.82 76.32 76.55 84.80 78.12 28.43 12.01 85.13 9.99 88.29 28.12 44.72 10.48 84.25 86.14 6.07 79.61 63.63 78.43 23.98 16.98 49.73 63.97 27.15 80.78 70.95 72.71 6.63 96.95 89.32 66.92 57.59 55.63 21.99 16.35 67.76 45.35 78.52 56.24 78.65 37.77 27.83 66.41 78.00 76.84 19.62 39.19 75.44 55.77 17.03 1.74 49.44 89.82 55.10 28.85 84.99 62.63 65.75 59.58 13.47 3.55 22.68 32.81 64.07 16.20 75.68 26.44 39.80 86.34 49.73 35.22 18.31 73.16 48.24 44.99 64.71 76.18 51.49 75.36 71.44 -49.48 40.30 79.50 78.73 14.45 76.09 3.70 19.38 79.44 8.59 25.18 93.21 20.31 47.41 48.67 19.80 14.40 36.74 38.47 81.90 24.92 56.04 34.22 66.70 75.32 75.02 48.44 21.79 31.33 40.53 2.18 9.50 62.76 62.16 89.89 16.39 65.52 4.75 32.77 29.96 24.50 67.30 23.99 57.60 90.97 65.27 92.48 54.78 32.89 36.70 49.40 90.28 69.21 7.62 24.23 59.23 70.93 18.30 75.25 67.01 87.56 44.11 20.27 12.85 78.24 24.83 49.23 89.90 45.38 91.40 86.61 4.94 59.10 67.28 42.80 97.89 20.27 48.57 74.40 65.88 6.08 10.19 41.79 39.50 63.22 84.87 31.20 12.44 4.39 8.41 25.77 89.90 95.60 88.50 67.43 14.72 91.99 74.69 65.53 19.52 -83.31 47.62 2.31 79.85 3.91 13.37 59.59 22.75 9.32 63.50 28.99 52.16 84.90 26.39 6.41 4.31 34.14 84.26 19.60 21.55 50.80 84.40 38.85 63.03 54.38 16.62 98.97 12.79 25.48 60.24 4.58 53.25 10.84 55.66 21.26 54.42 60.43 12.74 64.80 40.12 44.56 55.13 60.50 34.75 77.80 21.46 54.55 96.00 15.46 34.49 1.16 54.25 23.66 18.00 13.54 83.12 4.90 31.67 40.02 19.01 53.94 12.69 12.80 6.28 68.08 63.97 92.13 92.01 33.32 37.03 9.83 74.48 76.26 70.40 41.00 37.22 59.56 81.35 29.40 7.26 38.13 8.10 86.78 12.88 53.81 17.27 5.94 34.17 12.25 15.37 35.95 44.35 77.89 40.66 77.14 9.94 82.93 23.68 12.23 5.50 -58.57 3.33 87.72 99.21 14.89 37.21 35.37 61.86 88.57 29.01 81.84 91.21 36.23 23.59 84.25 96.23 91.48 14.89 21.08 1.65 43.78 23.39 95.06 66.03 10.79 39.04 33.83 47.90 17.89 3.67 76.25 13.59 1.01 36.53 80.31 34.29 26.93 14.03 64.05 13.48 4.11 37.30 91.10 41.54 93.07 36.43 28.08 70.80 10.12 28.90 13.47 27.05 35.75 32.82 61.30 36.50 86.87 36.81 99.14 82.75 27.03 1.98 17.82 6.03 25.96 40.41 58.54 54.63 49.41 67.78 88.41 74.38 30.63 46.75 40.72 49.72 85.58 89.09 62.61 64.20 47.13 5.61 71.41 48.67 38.84 4.11 2.06 26.54 52.25 59.81 71.13 6.00 81.31 33.67 61.72 2.26 10.79 82.25 3.16 84.31 -67.11 60.17 62.25 57.49 73.91 91.48 59.12 95.36 39.14 93.34 10.96 86.14 32.26 89.72 1.06 82.71 8.54 80.89 69.51 65.14 12.33 22.09 35.15 68.10 32.96 92.81 13.86 31.06 9.72 72.24 23.46 95.85 82.04 83.66 10.20 55.45 10.53 11.99 66.77 33.10 79.99 88.21 45.82 42.96 82.22 55.61 13.33 82.32 89.29 48.55 77.35 65.56 27.29 52.31 0.35 33.27 63.64 41.76 93.56 44.66 8.31 36.01 21.64 29.09 5.99 59.34 27.38 13.37 40.37 79.75 59.05 47.61 12.97 69.70 81.74 22.09 44.05 5.44 41.50 56.42 10.88 69.57 53.82 62.67 58.96 25.69 50.95 49.21 17.45 41.35 53.38 78.86 26.81 4.44 92.82 5.65 90.17 78.95 87.74 0.69 -55.60 88.52 62.73 35.87 90.55 89.78 33.99 79.47 24.25 78.56 30.40 44.62 11.37 25.23 47.39 30.76 90.94 95.70 4.85 35.91 48.35 12.14 65.18 25.92 25.11 62.61 14.00 97.17 87.55 58.34 90.89 65.86 76.05 48.48 81.39 27.97 73.67 71.16 72.04 38.62 64.31 88.45 6.74 45.97 18.78 10.77 64.39 33.16 17.28 63.35 36.13 11.11 84.45 61.06 56.71 26.70 80.54 86.65 8.55 64.14 18.02 77.93 9.77 75.29 2.56 67.56 68.93 88.48 55.24 92.05 10.63 12.58 7.81 50.01 98.41 44.07 57.48 98.42 1.15 88.85 32.76 81.18 66.94 11.96 54.11 92.45 55.36 74.63 39.42 24.65 2.52 5.32 71.21 61.24 98.66 92.42 70.16 85.43 3.10 90.78 -2.04 67.70 2.64 3.53 10.04 62.82 66.06 67.45 34.15 53.75 23.14 11.83 30.71 63.81 36.37 93.23 73.11 13.31 19.87 41.55 29.26 97.50 98.49 95.32 11.23 97.59 55.09 64.63 43.97 14.72 10.32 58.04 34.30 25.64 74.14 74.97 26.22 56.22 15.25 48.01 44.48 44.74 79.70 66.55 24.54 1.42 52.51 6.14 49.81 38.54 31.10 58.76 69.96 61.57 37.38 94.40 69.04 38.36 38.91 89.03 78.39 11.38 21.18 42.64 15.80 93.71 32.66 78.33 80.96 82.95 78.74 80.51 93.17 27.91 95.01 72.66 11.40 3.86 20.71 11.85 8.16 42.77 39.18 11.83 2.62 44.99 51.25 56.85 64.51 82.12 92.82 76.52 60.86 5.74 87.25 83.96 73.34 34.86 92.36 98.23 -41.17 63.15 2.14 19.02 84.95 38.84 76.17 91.76 35.13 37.17 3.24 65.94 31.34 10.30 60.11 55.99 9.48 14.46 21.01 51.82 43.00 65.86 37.72 29.62 61.77 78.42 54.49 25.87 0.92 81.43 3.33 50.35 67.06 17.27 93.98 59.78 50.10 18.12 29.34 19.08 90.62 18.23 42.46 1.58 62.65 59.02 77.56 98.17 23.62 30.40 94.34 33.37 88.47 34.52 56.20 30.52 26.49 64.41 29.94 98.96 88.53 33.88 38.36 38.89 51.88 99.78 7.99 66.43 33.87 14.14 93.85 40.92 43.80 95.66 62.57 34.82 91.93 75.04 63.79 67.49 46.54 36.45 93.19 43.63 68.41 60.36 54.14 58.97 37.86 40.71 26.92 84.69 50.63 8.97 25.66 65.42 80.64 58.19 73.82 16.74 -64.54 23.07 81.55 92.33 94.50 47.37 6.13 76.91 98.22 2.37 58.71 26.26 53.19 27.90 1.86 78.62 52.12 11.85 29.77 80.39 14.90 21.41 86.53 9.01 73.54 91.21 97.27 57.50 43.97 65.94 45.22 38.24 66.89 1.47 41.11 60.49 58.80 30.42 90.27 90.59 72.67 15.23 25.00 3.28 6.21 28.41 30.58 4.16 15.38 70.37 7.11 79.76 25.05 11.48 18.79 17.08 74.74 25.99 75.76 62.72 78.34 54.08 68.25 62.08 88.56 26.92 82.16 97.81 42.68 0.86 41.86 85.28 28.68 79.00 92.31 98.53 6.83 14.79 73.32 74.97 95.31 74.90 63.87 68.16 1.05 33.89 36.90 27.15 59.16 46.70 19.50 28.25 74.52 50.73 59.01 61.58 50.49 93.71 83.94 70.30 -82.47 4.15 53.52 91.57 44.53 8.66 59.43 74.79 11.73 33.89 18.46 36.00 71.56 96.67 12.97 29.68 73.72 95.82 83.56 23.45 88.11 27.02 36.50 85.61 95.37 82.18 30.88 73.28 85.15 77.67 68.55 26.16 32.48 99.33 93.60 46.82 30.06 71.77 8.58 82.25 67.15 71.78 38.35 14.76 37.46 47.91 84.26 80.16 35.71 71.77 73.06 55.21 59.40 27.30 96.39 65.17 19.22 67.09 2.75 47.17 37.16 23.58 6.09 93.85 51.70 78.18 49.80 47.65 48.16 94.79 30.03 38.23 76.56 71.23 2.92 51.17 66.16 14.81 51.92 67.44 79.74 1.72 28.39 14.14 34.95 84.04 48.66 15.82 18.65 23.49 58.93 50.11 13.02 47.40 30.44 6.47 73.73 80.71 64.86 27.99 -0.32 97.79 33.84 57.11 39.01 71.67 46.84 36.24 51.14 78.55 26.52 87.78 34.40 8.68 47.76 20.48 73.52 75.26 91.91 93.37 55.83 95.77 87.72 98.75 55.18 28.00 25.39 68.81 76.07 95.33 39.50 12.79 40.11 92.28 20.46 21.50 21.34 5.80 43.99 23.84 89.86 79.71 9.20 21.61 28.13 50.79 72.64 80.89 15.48 31.08 40.79 94.62 24.67 8.17 92.65 75.47 33.76 94.14 81.74 55.17 91.99 58.55 98.91 61.51 44.67 51.61 54.55 23.00 74.97 29.21 31.38 32.30 89.60 73.44 40.30 92.19 34.94 9.55 44.32 63.12 51.22 85.20 90.56 62.05 61.76 46.65 76.37 25.39 97.25 74.98 61.50 31.27 31.60 71.47 38.45 2.21 79.64 28.93 90.16 58.95 -58.56 76.54 15.76 6.77 39.57 78.46 22.10 28.64 92.55 86.15 90.87 46.43 86.39 83.61 82.58 13.86 59.65 68.61 89.61 94.83 61.68 95.93 17.84 73.76 43.75 90.46 59.93 26.58 2.26 17.64 50.88 61.03 42.38 9.64 31.16 79.45 0.32 37.43 3.86 1.68 32.58 0.34 30.64 22.23 87.57 7.40 27.19 24.85 90.23 65.13 88.99 7.71 25.29 0.50 57.80 15.20 42.47 67.66 80.37 1.85 36.91 42.09 3.75 48.56 73.48 83.69 14.94 58.07 87.28 23.63 41.65 74.99 34.00 56.54 36.03 99.08 68.93 70.63 46.26 59.83 98.90 32.53 65.58 51.76 37.64 4.91 74.62 6.72 98.61 13.17 22.49 99.07 95.92 81.71 49.76 41.82 79.54 71.61 30.09 48.97 -49.46 85.74 48.98 0.36 31.81 95.64 99.58 43.52 29.55 52.39 83.65 66.82 38.80 35.78 42.52 36.68 70.69 17.37 71.77 60.09 95.68 45.65 56.37 0.36 51.21 65.90 40.95 90.17 45.29 27.63 57.08 72.96 97.14 57.30 96.14 73.67 6.03 10.11 39.96 89.81 74.00 36.18 51.21 96.51 1.12 98.67 32.20 90.57 21.97 35.64 30.37 2.54 43.08 8.41 54.27 43.13 43.05 66.44 99.45 1.09 62.71 28.22 31.57 5.92 81.12 73.59 57.34 55.72 84.06 57.78 49.04 97.26 29.70 75.29 19.84 86.82 69.25 0.77 24.84 81.19 86.43 2.48 69.93 95.42 63.93 92.20 5.00 14.24 4.86 45.91 71.41 49.77 89.26 27.00 91.42 26.18 77.87 56.61 83.74 99.32 -25.09 84.07 0.04 44.26 7.58 7.77 48.19 10.88 90.83 96.94 47.85 97.78 63.20 34.31 51.36 78.04 79.38 76.42 86.12 12.42 72.37 65.32 94.28 83.00 82.29 61.06 81.43 18.68 96.16 91.21 21.50 0.05 21.07 61.99 18.58 79.32 88.13 36.63 79.55 26.07 83.25 54.50 20.45 0.53 69.35 68.43 66.69 65.08 63.96 13.61 84.65 86.61 87.28 91.02 83.94 59.97 24.90 82.00 64.55 51.29 64.36 9.30 16.69 18.08 54.60 45.17 20.82 44.38 88.89 17.13 22.59 41.26 29.69 70.04 42.76 62.50 73.64 98.47 68.27 13.17 77.32 55.72 6.44 92.20 99.00 94.16 89.86 36.16 2.90 37.66 25.75 57.78 2.26 10.04 41.96 49.77 38.69 78.49 32.58 31.58 -40.26 54.95 49.20 24.44 81.97 11.49 79.62 29.16 19.56 29.57 87.80 67.08 20.94 41.62 42.20 38.61 88.07 27.17 70.36 7.39 75.65 34.81 39.46 49.58 14.20 56.48 26.83 97.24 15.34 87.60 87.50 90.94 97.38 62.77 80.88 93.28 6.78 41.20 41.41 11.58 77.27 57.49 26.40 81.19 95.11 23.14 68.55 24.19 25.37 76.51 35.48 60.39 47.71 78.06 47.35 49.59 34.40 31.02 16.22 80.97 0.96 38.54 23.70 67.92 54.12 61.47 3.10 31.32 19.70 68.14 26.32 44.99 11.15 39.47 71.88 76.69 61.53 57.56 10.06 24.21 89.77 34.91 16.59 10.35 91.40 71.13 95.07 6.93 91.56 8.49 39.46 74.55 64.15 19.48 72.07 38.03 93.39 59.41 41.65 40.98 -20.51 92.39 38.29 63.41 50.26 98.17 47.19 83.14 20.15 22.98 46.20 1.78 56.32 86.62 35.08 0.07 69.30 29.14 74.67 41.49 47.49 57.90 43.57 72.61 78.44 72.32 0.26 76.09 82.36 86.79 26.95 49.31 78.69 66.31 89.81 58.12 34.20 43.47 54.25 2.77 26.09 37.13 63.18 27.97 40.04 83.06 2.86 38.87 92.34 47.47 48.92 90.97 37.80 84.80 82.54 2.98 47.57 31.11 44.47 54.81 50.15 65.76 14.30 36.28 29.19 0.44 5.02 23.66 23.08 50.57 38.51 45.66 88.20 1.46 46.38 46.89 35.26 59.39 71.98 75.60 9.34 80.85 54.09 21.68 52.62 69.07 69.81 2.75 75.63 26.31 79.28 80.90 73.74 42.02 46.15 24.17 75.57 85.34 18.98 19.79 -66.91 32.29 89.58 57.89 58.52 2.87 44.97 30.30 71.28 96.21 13.59 29.07 23.00 49.41 43.86 27.67 12.57 70.76 1.19 45.44 48.04 86.65 30.23 57.18 26.87 70.27 73.95 52.36 64.76 32.69 88.04 64.54 63.81 51.15 2.75 66.05 32.43 95.93 99.38 10.44 65.33 12.91 61.11 26.25 54.94 61.55 24.19 12.89 31.80 6.80 15.99 41.04 42.33 33.86 43.34 56.58 53.44 83.49 66.09 37.51 50.22 65.90 73.37 38.68 35.28 84.17 74.46 94.78 96.49 98.39 71.97 52.41 4.41 99.63 73.29 36.67 71.32 69.32 80.12 34.36 99.35 91.68 40.44 18.45 97.58 53.09 94.23 9.70 91.49 88.02 30.37 65.48 12.06 76.53 76.07 40.83 3.00 23.94 52.22 38.57 -16.20 21.05 31.47 64.97 95.59 60.05 26.92 95.07 10.61 55.46 88.78 62.46 41.21 26.33 70.75 76.55 68.24 10.90 41.64 70.30 17.10 86.42 30.23 88.44 82.19 33.22 52.24 32.98 25.38 23.88 14.93 8.13 87.63 39.02 7.93 54.80 26.91 95.13 70.29 2.84 56.49 30.65 75.28 25.84 33.67 49.64 79.55 47.51 56.14 62.89 62.22 43.86 58.98 71.74 10.69 93.58 78.11 39.65 54.91 17.46 22.54 38.45 42.48 51.03 93.79 65.69 76.13 4.55 92.70 33.77 83.79 36.83 37.64 38.88 25.25 47.23 10.70 0.78 19.66 44.62 94.08 92.13 38.30 68.84 45.47 62.23 2.10 76.09 5.22 9.10 88.59 33.26 39.49 79.50 39.27 63.49 23.50 74.73 34.43 88.08 -25.00 81.13 75.52 1.03 20.59 6.93 77.80 79.27 90.59 94.71 16.15 66.44 34.57 97.79 52.68 53.70 52.43 38.94 98.80 42.21 22.36 52.07 85.01 33.42 71.50 89.51 60.77 49.96 99.86 69.60 97.64 53.81 59.58 17.31 9.08 4.93 70.17 17.16 18.56 26.09 47.04 62.06 36.97 36.28 33.54 22.49 13.13 58.81 16.66 66.84 39.20 77.08 26.63 70.95 49.24 13.28 42.20 0.10 43.87 94.52 51.92 25.48 4.02 7.36 62.16 74.04 75.22 23.65 25.04 10.96 22.89 99.60 88.57 94.67 93.69 61.96 49.21 96.10 20.67 10.23 42.51 68.17 29.99 87.18 47.87 46.83 43.95 22.22 19.36 72.94 28.99 54.34 70.88 14.89 2.05 96.44 61.85 33.29 37.34 28.99 -15.32 89.64 4.47 15.18 93.41 51.94 8.35 8.08 18.99 54.72 15.63 76.90 98.61 60.15 17.20 91.52 4.31 58.99 57.25 66.19 97.34 40.01 63.58 39.48 29.84 30.08 71.69 18.21 76.43 46.33 23.25 41.25 96.53 10.07 48.02 31.85 67.67 50.51 3.12 66.79 6.90 51.07 65.52 67.40 30.65 60.32 86.04 17.83 3.66 99.18 96.18 0.82 72.52 26.53 10.79 65.86 0.17 17.23 52.04 16.05 33.07 63.24 85.55 29.93 75.50 97.97 44.92 55.59 44.72 54.68 74.73 52.80 21.17 35.94 4.31 95.33 79.13 26.25 26.68 28.10 96.35 59.43 6.75 48.33 90.60 15.26 21.95 9.05 46.28 48.40 55.48 8.32 4.20 92.60 14.42 56.72 3.03 6.33 44.44 82.43 -67.79 16.18 25.85 78.88 26.52 70.24 64.02 17.61 40.08 52.82 0.32 49.99 33.51 70.10 32.47 62.65 6.09 80.09 88.86 97.44 77.38 50.40 33.06 20.57 82.12 99.54 20.67 9.89 78.90 50.57 50.06 52.94 14.55 23.05 25.01 30.22 70.70 22.37 35.47 82.39 10.13 76.64 29.49 0.96 54.55 89.13 0.32 20.27 76.57 92.58 60.81 54.07 57.56 15.17 97.80 6.85 83.14 4.52 12.12 93.57 81.59 25.19 45.13 18.92 21.81 60.55 12.34 47.12 29.24 22.11 89.43 67.98 11.16 71.98 69.55 55.06 62.09 55.25 57.78 28.16 89.43 87.20 9.43 10.76 12.81 96.99 5.85 39.71 92.01 97.27 26.41 31.05 8.42 77.82 38.97 24.57 5.72 66.17 63.38 22.02 -23.01 17.22 30.84 18.94 75.16 91.42 61.04 8.04 66.40 34.20 20.51 62.72 65.11 0.08 11.02 59.65 78.82 43.89 10.37 49.61 3.88 51.91 25.87 63.37 91.68 58.38 12.93 93.79 5.21 88.83 53.37 18.26 3.69 58.67 35.27 15.60 75.10 62.01 50.91 55.75 2.80 66.44 72.19 20.47 1.77 3.02 84.98 88.97 78.10 2.30 95.86 80.82 45.29 55.59 4.54 34.01 71.26 47.10 17.57 36.77 10.93 19.66 77.71 68.82 63.88 80.50 86.52 26.79 63.36 51.70 37.60 55.29 1.14 94.35 1.68 18.58 18.02 30.43 0.82 88.64 51.18 59.50 88.93 99.58 83.19 49.64 67.18 10.73 25.71 48.21 30.62 73.56 46.45 43.57 89.73 66.74 3.09 64.67 94.67 89.23 -75.24 0.31 65.05 51.77 73.40 60.97 63.05 60.06 0.64 49.71 85.14 80.77 96.09 78.73 37.51 4.87 99.95 59.80 76.59 3.94 49.14 74.09 29.19 88.22 52.54 63.61 32.23 54.31 77.32 73.10 20.83 57.42 72.21 30.19 84.30 84.45 36.94 61.61 81.75 14.04 27.84 51.67 68.27 87.31 76.31 15.37 90.59 46.86 98.75 56.87 67.07 47.85 53.79 74.46 41.09 35.95 88.36 98.13 60.27 30.12 81.41 43.42 36.25 1.56 24.94 95.05 12.14 49.21 89.17 53.22 96.30 53.07 32.67 43.66 15.53 99.24 54.32 25.84 80.23 35.76 26.45 84.58 15.79 22.33 66.32 50.98 62.40 64.23 54.20 29.61 96.34 86.94 59.05 6.67 99.70 86.80 18.03 58.23 38.07 28.93 -22.06 28.95 39.85 69.03 4.45 59.88 29.26 93.16 76.51 67.28 64.73 34.08 41.04 1.29 51.26 50.48 67.15 98.60 69.67 56.80 24.24 32.67 81.60 93.06 81.23 99.60 56.04 29.10 97.20 84.29 80.50 34.61 35.31 15.90 51.69 91.28 51.15 59.29 29.82 46.77 42.20 45.25 43.43 23.29 42.10 31.78 25.77 72.97 13.50 81.11 69.38 45.77 48.23 62.19 64.25 29.31 33.74 48.85 88.50 55.71 27.85 79.00 40.52 87.95 85.37 94.23 71.20 99.56 79.35 47.50 27.62 68.75 84.41 11.58 37.21 56.92 83.54 59.19 18.68 64.73 59.37 36.39 37.28 8.53 2.29 39.49 30.13 81.17 42.28 97.83 0.25 10.94 56.95 29.39 15.36 31.80 13.10 16.15 15.29 32.58 -17.80 87.13 19.80 28.50 99.90 84.24 86.73 1.22 51.35 88.94 74.82 9.97 47.06 56.77 56.84 95.84 67.35 6.71 26.49 60.94 72.56 18.41 54.01 14.69 56.13 28.28 15.38 82.24 69.29 0.26 7.57 83.17 35.71 34.62 17.16 37.51 63.11 91.64 22.71 59.59 59.55 98.80 93.47 98.45 72.69 88.47 24.70 41.59 71.74 93.63 14.96 59.05 76.05 62.73 17.99 8.33 7.39 47.56 34.77 46.75 21.85 54.64 72.00 3.11 9.61 49.71 10.84 20.67 94.03 78.84 71.13 34.75 64.12 55.05 82.37 6.01 69.73 45.19 82.52 85.31 3.48 25.98 30.70 80.96 74.44 26.25 11.46 76.18 89.32 42.88 13.93 11.75 9.79 86.69 40.78 76.17 26.67 80.34 83.03 4.37 -20.57 60.78 87.18 6.58 97.66 25.95 12.41 60.09 4.91 20.62 5.50 64.37 69.97 83.75 22.24 46.16 45.14 16.48 18.18 52.75 19.72 64.57 6.66 78.71 28.19 56.01 92.67 85.85 56.94 79.81 48.22 90.89 4.45 20.96 6.00 12.03 95.48 89.42 12.49 96.79 63.58 75.88 94.55 67.37 87.33 21.21 29.41 48.18 57.13 41.75 91.42 13.00 26.71 51.70 43.23 34.48 34.50 44.13 54.49 47.40 88.78 96.28 59.66 6.99 55.30 2.53 14.37 41.99 96.13 88.27 59.17 91.71 17.77 37.90 30.87 19.38 88.66 76.66 61.74 56.89 99.88 48.40 88.35 53.01 41.55 39.66 58.01 9.46 4.11 2.88 8.60 25.79 2.48 92.34 76.58 59.29 42.33 1.70 45.78 26.92 -18.79 19.47 76.16 98.19 36.17 68.20 84.75 27.46 45.81 44.35 73.73 68.06 6.65 64.40 23.78 61.75 97.38 38.52 80.96 6.66 48.47 31.18 37.70 44.37 90.73 66.20 69.64 26.53 13.84 50.53 91.03 35.61 26.23 65.51 16.10 1.25 62.40 95.74 84.33 1.87 69.87 14.59 30.11 8.18 74.90 80.35 93.92 29.82 63.19 94.75 93.37 7.34 4.84 99.62 78.46 25.48 57.50 56.96 72.90 7.28 7.04 65.52 86.51 75.93 9.05 74.18 66.65 98.95 93.82 67.36 29.98 58.90 64.03 1.78 11.01 45.63 47.52 17.45 14.84 85.34 4.95 68.71 74.25 1.81 47.09 53.90 87.39 79.74 57.60 67.37 25.06 88.06 1.12 33.60 47.08 60.45 32.84 17.26 34.64 50.74 -74.96 7.12 84.37 3.22 85.71 50.67 67.85 51.58 55.03 0.34 78.03 22.42 84.69 50.79 50.99 44.51 46.93 26.02 80.73 54.99 82.28 16.05 4.58 39.15 92.95 21.85 61.55 11.52 29.31 43.13 57.08 98.13 49.22 36.75 16.53 89.79 60.72 85.14 97.26 2.63 29.96 79.81 68.03 88.44 49.23 90.99 66.43 63.49 36.36 7.02 35.36 84.31 75.98 43.55 78.09 16.39 21.59 23.90 90.07 17.35 63.68 10.83 75.57 19.10 93.04 5.00 6.53 99.30 41.23 42.61 27.87 47.70 95.26 53.90 11.50 13.86 5.92 2.34 64.57 73.41 38.64 82.96 84.59 9.99 12.33 78.50 58.40 97.82 71.99 15.21 1.92 10.94 49.82 76.25 62.69 9.77 13.73 3.91 65.34 57.40 -15.66 81.39 54.67 84.74 45.85 67.22 55.54 33.69 93.74 83.28 9.32 46.91 64.94 65.96 96.57 10.04 29.16 81.49 92.78 5.28 91.21 8.34 13.91 54.58 30.14 8.31 19.11 1.08 58.62 17.51 88.53 2.65 42.89 25.78 57.35 8.83 99.69 74.30 72.55 66.12 38.46 51.98 92.85 98.03 85.19 74.48 29.20 30.79 16.81 87.56 19.75 32.51 67.93 80.54 42.71 62.03 75.76 50.73 62.36 0.61 75.42 55.55 63.97 49.32 41.76 98.59 36.74 40.68 77.95 58.86 38.54 21.72 17.23 69.03 84.32 77.64 63.13 76.39 81.70 97.46 77.02 98.00 37.53 61.79 0.32 1.14 59.71 45.88 93.77 10.43 62.68 2.58 27.77 82.13 16.41 48.18 92.95 94.90 37.79 5.76 -72.30 85.67 20.92 49.58 7.28 26.46 73.89 0.69 47.83 86.12 58.20 55.67 28.42 10.89 85.62 18.66 17.41 57.13 67.57 75.55 43.21 67.61 79.31 80.49 41.00 69.81 51.12 38.80 85.12 66.66 67.21 91.92 38.34 70.48 34.34 63.78 57.00 68.15 81.73 18.72 97.62 64.19 81.76 3.36 71.17 7.71 92.56 85.88 32.74 31.47 85.76 75.72 2.61 83.91 6.10 1.07 56.41 53.39 91.22 27.58 19.48 86.58 14.70 42.01 68.98 11.78 32.82 63.83 68.36 51.56 41.89 0.07 70.16 28.89 25.76 71.98 5.03 50.12 68.56 33.75 52.78 22.43 47.02 86.36 75.76 65.91 95.12 94.48 33.35 15.14 62.74 28.58 17.07 93.13 50.08 42.79 44.98 28.14 97.50 56.36 -45.83 87.47 43.50 55.29 32.40 81.76 18.65 64.37 22.51 29.17 69.45 67.31 82.27 46.19 27.91 33.00 50.69 98.74 79.90 73.23 72.59 57.98 58.39 26.40 94.85 38.23 2.42 74.57 57.06 95.13 84.28 62.46 83.44 57.49 69.95 33.64 40.79 99.53 22.03 16.65 36.37 35.70 99.94 45.53 77.45 53.17 2.50 60.23 22.96 46.92 24.71 50.39 15.71 85.93 35.15 11.58 50.60 36.44 65.92 23.23 94.81 74.72 42.78 95.42 70.48 84.82 69.84 66.19 87.11 55.18 38.86 83.86 52.31 78.79 14.61 89.53 10.95 42.02 4.11 84.64 68.82 34.67 13.39 90.44 49.19 28.51 86.62 74.97 4.66 52.95 0.94 55.71 37.84 94.96 56.78 64.05 2.53 24.94 11.53 67.68 -61.56 37.84 15.05 97.68 2.93 13.01 12.50 65.87 70.47 90.73 53.47 28.81 73.29 83.49 79.16 97.68 88.53 92.66 34.67 17.63 41.83 70.80 43.21 72.22 43.56 38.11 20.58 26.35 6.55 3.50 29.59 12.12 90.05 45.98 90.52 33.03 23.22 1.33 25.99 82.52 25.61 53.00 43.12 96.62 67.31 80.11 65.80 45.56 28.09 8.16 34.94 14.52 8.93 50.11 36.26 18.02 18.45 13.87 4.10 30.58 23.25 38.84 26.94 72.96 27.35 54.87 91.26 75.38 47.83 78.15 59.49 18.88 53.27 54.16 81.33 40.03 8.71 65.72 49.87 80.73 50.73 56.42 60.82 32.11 28.51 21.34 20.80 28.30 22.17 19.58 43.30 21.46 81.89 21.91 25.14 83.62 3.20 91.70 16.52 31.94 -2.41 74.53 74.53 91.39 19.61 98.56 42.18 8.51 36.36 18.00 54.04 56.57 55.66 18.15 79.44 28.91 49.28 4.76 20.12 55.37 11.98 72.93 48.26 69.56 54.92 37.45 37.08 58.31 33.46 16.39 11.38 88.67 32.41 26.79 55.38 46.13 5.30 57.85 64.48 74.63 88.11 63.87 32.21 91.95 60.75 30.66 24.53 39.15 2.52 28.50 5.19 43.60 98.49 12.80 53.39 78.93 25.72 45.32 17.00 52.23 2.47 4.11 96.47 1.57 26.86 18.97 57.57 6.13 84.92 62.18 79.93 5.62 94.44 24.56 63.98 76.70 41.80 1.62 91.35 88.58 24.06 52.00 20.83 70.28 13.58 97.23 64.90 97.56 75.22 27.95 4.12 62.24 8.35 43.92 81.56 91.52 73.21 58.82 79.73 17.26 -8.05 64.63 25.67 45.35 81.38 37.86 87.21 31.11 83.71 9.09 5.70 70.79 24.23 16.15 54.73 14.79 36.38 45.35 20.66 48.85 78.17 10.36 80.72 0.12 17.43 1.17 20.16 74.80 55.48 59.49 55.77 72.11 74.61 40.86 58.30 82.10 47.18 12.74 69.09 58.65 85.22 1.50 75.59 15.55 7.16 98.54 28.41 38.18 6.98 78.31 74.33 47.17 68.00 52.61 22.73 68.57 43.60 1.96 49.79 64.03 32.16 74.65 12.70 69.14 69.41 29.36 86.62 70.44 72.96 14.17 18.76 13.06 93.10 10.83 89.11 77.12 8.58 85.69 45.02 46.97 83.88 82.40 58.22 83.72 82.98 71.34 24.70 0.95 17.18 90.42 58.80 84.37 73.66 2.94 84.70 47.00 50.89 58.48 37.51 62.18 -83.87 34.29 82.14 21.81 98.62 46.32 90.07 59.78 29.19 49.64 74.16 13.77 53.70 52.44 37.67 17.56 3.62 38.46 49.05 75.34 21.01 87.52 19.21 16.07 20.78 7.11 23.37 51.35 41.04 2.43 53.46 22.25 44.10 63.25 41.91 14.15 17.11 11.59 39.89 30.75 70.73 25.24 69.66 69.06 52.19 12.19 5.97 9.63 22.26 61.52 85.13 7.59 97.34 56.70 5.26 42.35 26.19 10.56 63.92 15.66 8.06 37.50 85.48 59.89 43.48 1.77 51.16 67.72 58.79 72.23 30.13 84.56 90.36 69.26 42.35 15.92 40.48 49.66 38.60 92.04 56.14 39.88 32.80 23.01 1.62 9.20 16.60 20.67 25.21 52.28 78.67 51.78 94.68 38.37 13.69 66.99 86.70 37.30 83.14 58.35 -61.67 32.49 84.05 81.82 59.96 11.25 85.78 12.56 27.09 56.06 97.18 52.39 86.62 4.61 20.60 13.00 97.15 21.74 47.00 41.37 70.56 36.87 49.19 91.44 18.37 58.73 57.19 0.43 4.06 48.83 98.80 93.49 17.42 95.30 39.84 77.99 65.44 44.59 98.92 38.79 87.01 33.49 1.22 48.70 88.64 14.72 11.44 20.63 70.80 29.55 95.36 68.21 39.18 78.80 64.78 3.61 19.16 72.42 27.42 57.43 16.80 72.30 23.06 64.28 14.42 1.51 0.74 73.87 2.08 3.52 40.16 96.56 92.05 98.57 13.17 48.74 60.49 43.48 21.86 46.15 23.67 21.94 49.43 87.07 95.19 99.58 88.22 19.79 55.64 22.78 82.01 94.57 20.00 87.12 35.56 43.96 49.25 35.15 66.80 67.85 -35.69 91.51 60.59 22.17 13.86 61.80 32.69 26.80 92.32 0.38 39.76 55.01 85.18 17.29 10.96 16.23 45.68 98.90 25.69 12.38 26.61 87.41 64.06 87.82 57.17 3.86 9.70 29.16 30.51 17.35 43.64 46.93 37.63 56.36 78.70 7.86 79.98 75.80 47.09 26.72 66.06 62.40 89.20 75.16 12.02 7.13 85.65 13.91 86.92 27.31 92.63 19.52 27.70 72.20 21.32 79.23 29.80 96.03 73.09 76.90 11.54 84.70 34.05 49.97 61.25 18.80 72.96 68.90 46.07 79.65 91.77 9.40 17.20 86.60 45.54 48.94 14.22 6.54 17.97 83.43 39.51 9.92 57.92 24.97 49.89 41.91 32.57 65.63 7.13 83.14 83.64 88.45 42.51 72.89 75.35 41.16 76.84 44.50 27.20 59.88 -51.69 68.62 67.23 73.21 38.10 66.48 82.14 99.42 8.62 5.05 75.94 28.70 30.27 37.52 32.19 88.67 79.34 78.86 44.07 72.67 23.03 76.33 75.38 66.98 75.91 53.35 69.05 36.48 42.54 15.29 94.65 15.29 74.88 24.68 41.26 73.95 52.44 33.10 75.07 91.35 85.67 37.54 71.07 77.42 99.71 18.55 24.61 58.03 74.30 30.36 58.76 13.12 97.22 18.82 56.63 12.15 26.01 91.68 39.46 17.59 99.04 19.51 58.80 54.43 24.50 73.74 3.44 30.13 58.52 30.99 27.31 31.99 78.45 68.70 48.17 94.05 9.17 48.78 14.78 66.97 14.74 71.09 22.74 0.37 23.67 92.29 20.24 66.46 87.66 30.07 79.38 22.71 25.66 66.29 30.53 12.28 33.29 3.55 78.45 25.23 -6.77 38.35 18.38 32.62 9.37 40.57 27.55 29.34 75.41 70.08 6.33 91.91 27.16 88.44 74.10 88.29 4.25 40.93 35.56 38.42 49.93 79.27 59.24 15.55 10.08 81.85 57.40 31.77 6.86 79.46 36.04 98.93 73.65 54.30 18.99 63.29 2.46 14.57 29.68 16.38 13.12 98.49 97.38 18.04 91.57 19.85 85.86 68.49 94.86 10.12 72.41 20.06 8.60 37.34 26.57 74.64 52.88 71.06 23.33 46.38 60.60 18.62 62.93 99.02 91.77 63.60 72.67 62.85 84.05 79.13 63.38 32.06 56.36 60.17 49.46 41.74 10.17 87.29 22.62 82.67 1.20 72.93 61.60 29.96 48.55 87.12 19.72 49.37 47.63 55.21 4.50 38.84 50.79 8.82 64.67 77.36 68.31 88.36 38.78 85.87 -75.15 29.53 37.90 24.09 9.01 92.93 93.69 96.42 38.11 8.87 87.35 35.57 81.73 45.59 80.82 19.11 76.97 72.34 73.17 67.16 97.88 37.33 50.52 85.11 14.40 58.78 53.64 86.77 66.49 40.19 29.61 96.80 74.61 43.60 5.89 38.49 76.20 3.25 79.56 11.21 54.07 86.69 9.84 60.00 7.37 41.17 24.67 30.83 84.86 16.43 34.27 84.17 32.00 4.42 68.73 21.92 60.52 82.38 83.80 30.15 52.86 69.86 87.15 79.11 61.19 1.34 4.60 87.85 29.15 20.40 17.32 32.71 62.29 18.94 84.78 27.63 35.73 46.75 93.76 47.29 9.24 69.75 40.26 21.07 68.62 11.83 29.23 40.34 17.09 51.81 96.81 51.64 2.01 90.24 62.11 52.65 22.59 29.66 23.58 68.58 -75.53 32.42 82.90 58.87 81.18 14.35 45.94 13.85 44.54 48.85 4.06 9.84 76.88 42.68 12.92 22.87 81.79 10.88 45.04 5.53 32.77 56.57 81.58 82.90 88.82 4.09 89.75 34.18 59.57 43.81 36.03 71.33 84.79 85.62 99.12 6.89 26.38 14.80 45.22 12.96 65.89 16.53 20.12 18.31 41.24 67.18 88.89 67.98 96.12 27.48 71.24 73.38 51.27 70.85 11.45 60.57 21.12 41.63 61.55 16.79 55.16 95.04 8.56 73.15 1.29 61.93 40.86 14.24 94.36 84.22 72.99 36.52 60.89 41.56 10.74 5.89 64.73 59.44 76.68 32.19 35.49 90.22 63.86 13.33 61.39 82.42 70.20 0.83 24.72 88.80 98.51 23.60 58.75 53.02 39.67 54.16 32.46 85.00 21.65 86.14 -74.90 7.56 22.03 62.60 27.98 68.03 48.78 14.78 70.08 14.35 13.45 86.30 20.35 60.08 26.30 28.69 39.39 39.03 21.96 97.64 48.49 39.13 96.30 22.21 26.56 63.44 49.75 73.14 98.22 32.03 44.54 7.45 51.79 62.18 24.37 68.20 78.11 4.02 57.01 85.87 1.48 90.72 31.39 67.46 0.44 27.09 83.26 27.96 83.51 44.68 23.35 51.94 64.22 23.59 15.49 2.96 89.19 89.62 70.76 51.19 9.31 85.61 32.55 19.20 8.94 72.52 4.36 96.40 45.37 99.30 6.07 48.72 33.39 12.71 82.09 83.73 60.58 66.83 21.88 40.27 67.60 42.28 98.53 27.27 12.69 37.54 66.29 47.50 80.00 66.04 4.13 80.91 46.20 91.38 72.86 68.04 84.81 49.53 57.98 55.91 -84.66 67.86 23.90 73.71 2.89 73.54 97.29 11.14 40.65 17.42 10.45 79.42 74.83 48.92 30.23 79.77 12.34 83.35 32.28 22.12 40.24 50.71 17.97 57.18 55.70 20.03 16.13 65.58 29.45 45.04 7.60 29.93 60.95 32.05 61.87 96.63 84.65 29.65 78.95 84.52 98.13 95.46 85.35 4.32 24.21 79.31 27.02 64.12 76.96 63.13 50.39 74.00 44.08 24.95 22.52 52.06 75.20 94.25 46.99 94.65 31.01 22.59 55.66 73.21 52.71 22.72 38.53 89.01 7.63 9.47 16.12 41.25 47.84 11.14 93.75 31.25 45.72 38.65 29.04 4.49 78.61 97.18 82.02 10.87 73.03 59.45 22.00 11.11 21.98 2.33 3.26 4.31 60.42 13.26 94.96 49.60 89.64 99.67 96.66 72.74 -47.18 34.43 51.37 18.43 2.33 23.27 2.76 27.81 78.89 7.18 69.44 23.64 34.91 57.16 87.56 80.50 55.45 95.98 37.61 81.71 57.72 36.31 35.99 13.65 2.92 0.81 97.55 22.08 97.84 82.74 45.33 10.42 62.63 72.91 97.71 88.92 27.88 91.83 27.42 69.38 94.02 29.09 33.08 50.81 38.04 5.50 97.47 27.93 84.75 12.03 47.60 42.02 70.40 35.12 48.21 67.68 26.50 93.42 61.55 15.83 34.40 59.63 88.91 49.43 49.30 84.30 9.19 49.63 24.91 96.21 83.88 21.23 36.24 98.48 18.59 97.51 86.47 65.74 72.62 19.43 32.91 13.85 97.98 90.71 29.11 46.84 77.83 29.23 59.99 80.47 74.20 22.26 84.26 25.82 78.69 16.20 76.46 64.41 7.31 68.51 -18.56 49.27 13.15 11.14 25.09 91.49 24.29 16.15 52.33 12.13 32.12 52.30 42.74 25.30 59.37 93.61 82.22 84.61 26.95 76.03 51.71 75.14 14.92 67.57 45.63 51.64 2.22 66.68 9.64 5.56 15.60 93.35 59.30 25.21 25.70 80.49 81.64 63.62 92.95 6.79 57.81 48.54 76.16 31.02 45.55 97.11 71.35 90.44 26.66 42.19 47.36 99.25 17.46 29.56 80.47 16.20 13.61 80.46 2.47 30.58 83.53 52.03 47.83 75.73 75.54 32.66 65.95 57.02 9.71 2.64 22.58 67.78 37.82 6.17 60.26 51.15 9.82 43.22 18.51 42.34 97.80 60.25 73.85 54.91 63.21 25.36 11.44 78.51 12.78 45.36 86.57 39.70 38.67 99.23 66.72 16.00 15.06 48.77 10.08 55.11 -74.24 75.71 93.63 70.56 2.41 69.90 81.61 17.68 31.06 27.15 45.83 53.73 8.03 81.73 50.91 59.40 2.77 21.09 91.96 47.25 91.84 33.95 50.94 23.69 60.06 90.29 42.93 27.09 4.58 64.44 72.18 73.81 85.87 61.64 55.83 93.85 68.24 29.33 70.23 87.85 54.42 93.07 6.77 98.34 92.53 95.86 70.12 95.84 13.55 61.79 86.39 10.29 2.37 80.12 63.74 48.16 36.56 9.95 89.75 87.93 68.79 53.07 97.83 73.13 50.22 74.36 28.14 22.00 87.38 99.25 55.41 59.05 75.08 36.04 35.51 86.56 47.82 33.04 5.77 28.68 63.87 92.53 94.56 96.71 84.47 87.66 62.36 80.78 98.68 31.02 53.36 56.75 77.81 78.92 33.93 77.62 21.41 81.59 83.20 67.11 -33.34 71.38 58.07 0.84 92.37 86.60 85.40 12.47 65.27 78.66 95.21 37.91 2.79 34.58 46.06 3.27 86.12 77.99 37.00 62.19 20.63 72.32 5.69 11.09 53.44 64.14 27.73 5.63 68.14 49.24 6.19 96.01 3.15 33.52 57.24 73.25 38.29 13.73 14.20 86.11 81.95 32.92 85.66 67.19 74.99 26.80 89.55 36.06 88.90 61.60 68.35 56.41 92.38 91.98 4.51 45.55 56.05 67.11 31.61 78.89 70.49 29.40 5.54 20.97 18.76 0.68 69.07 54.14 8.66 69.36 13.93 75.65 46.12 29.79 56.68 82.52 85.20 63.92 59.56 79.22 41.69 62.47 46.80 86.96 12.92 55.28 44.63 5.63 42.44 56.45 78.08 26.40 46.89 61.78 29.41 58.99 45.96 67.55 39.40 37.51 -58.33 3.19 13.49 53.44 22.29 40.76 7.08 43.20 69.53 33.76 15.20 9.19 3.11 43.16 93.13 70.45 68.22 57.06 16.83 23.31 68.08 77.80 89.43 51.22 73.67 23.09 31.73 97.03 94.29 86.29 24.77 68.18 5.52 10.56 41.32 26.47 86.02 8.35 97.67 99.93 72.89 9.50 93.68 29.33 7.97 68.15 9.02 47.20 17.54 80.72 48.68 18.50 25.79 84.50 35.76 5.12 87.32 38.04 70.83 31.52 62.87 56.44 45.67 76.92 2.47 35.88 37.67 7.05 17.34 11.97 61.35 59.40 46.37 75.19 38.66 81.72 77.35 80.85 82.68 48.88 29.79 10.85 96.43 20.67 77.54 10.15 73.14 77.57 86.70 82.15 1.40 34.17 38.70 46.87 60.19 28.86 17.05 1.87 73.68 98.05 -12.39 15.82 24.91 98.44 11.02 6.85 26.94 98.90 50.61 67.66 18.05 78.79 86.60 42.83 65.61 19.24 77.15 65.99 48.70 5.09 82.68 5.43 63.51 9.79 35.64 58.51 46.91 71.48 1.28 22.67 66.24 98.60 23.24 23.70 80.93 72.49 87.84 78.72 3.50 24.89 98.60 21.50 63.41 12.64 28.22 15.65 81.60 38.80 13.04 53.90 0.54 80.66 29.24 86.50 60.91 8.41 16.17 91.24 41.12 17.94 34.78 73.77 15.98 89.70 7.51 45.30 93.87 16.32 69.11 49.13 45.32 38.78 21.83 10.19 28.46 1.37 76.54 14.97 97.75 73.32 53.11 41.54 61.32 15.82 64.11 48.81 54.16 48.90 65.86 90.07 71.32 75.84 12.84 51.97 8.06 92.38 68.10 8.48 68.65 72.62 -76.34 44.13 82.80 84.71 35.86 96.25 38.91 50.96 26.12 31.51 64.69 32.81 16.36 61.99 20.45 13.27 52.08 39.89 73.27 92.56 70.71 83.06 29.22 51.17 39.15 89.78 98.75 18.97 60.54 6.80 93.24 95.12 63.58 35.17 65.94 73.42 10.73 60.81 13.53 27.47 82.85 85.39 34.82 76.51 91.85 95.67 3.86 65.80 50.17 79.20 6.05 45.26 72.35 40.43 22.77 79.31 34.66 66.89 97.50 98.75 92.08 43.79 12.59 3.39 62.42 48.26 70.92 71.53 27.95 93.23 16.98 97.05 57.67 78.46 60.61 32.24 12.47 52.62 63.75 43.36 22.56 8.00 17.38 69.17 77.90 5.60 0.29 42.86 94.96 50.31 40.46 9.96 92.84 56.86 7.65 95.40 96.24 40.44 56.26 56.29 -11.71 9.00 11.21 73.22 11.04 8.59 44.49 17.64 82.29 17.29 39.72 51.42 72.99 45.95 32.69 62.96 62.65 43.57 82.73 68.79 19.40 19.24 58.60 55.59 58.38 17.60 18.02 10.78 81.07 15.19 57.26 77.37 82.19 3.93 51.43 40.32 25.27 61.32 36.92 69.03 44.47 95.58 15.77 48.38 74.97 61.66 22.79 49.39 84.08 71.29 6.85 94.74 26.09 73.64 74.74 4.09 3.07 38.82 51.30 58.33 47.99 45.43 53.85 82.30 6.40 6.40 0.66 15.14 87.22 77.27 2.02 49.84 45.53 52.17 26.73 43.17 19.93 5.95 16.18 3.62 61.39 0.39 80.74 20.63 76.77 31.31 15.63 82.74 46.10 95.91 86.30 83.82 6.38 36.62 41.05 11.28 71.14 16.21 82.63 95.71 -84.37 97.61 49.71 57.67 1.31 66.77 6.51 32.05 3.40 66.16 91.85 34.46 41.22 76.55 65.25 28.97 59.42 49.83 22.77 17.22 18.41 15.46 47.61 33.97 49.09 53.88 54.69 60.10 39.95 70.35 13.86 82.94 12.29 54.24 61.14 50.27 56.51 34.72 99.15 82.20 80.48 53.95 50.12 70.71 1.98 4.08 54.88 35.30 63.06 35.04 35.85 90.31 64.27 62.04 50.22 38.24 95.58 40.47 71.33 7.91 37.18 89.18 92.58 62.86 96.70 11.56 37.43 1.22 72.33 5.22 99.07 63.92 16.60 85.73 59.30 15.53 62.97 41.95 75.98 83.70 31.94 84.99 44.39 35.42 31.86 50.81 56.00 18.55 87.05 28.43 43.74 73.63 29.28 91.51 73.80 69.44 82.86 93.06 69.21 79.01 -30.94 66.33 50.44 46.60 7.62 46.73 61.19 96.82 56.91 78.52 54.30 90.38 72.78 0.29 24.45 35.32 87.81 87.21 91.59 99.40 23.98 32.26 90.40 18.55 10.70 83.40 19.02 67.11 73.72 1.43 19.54 65.95 48.80 33.48 17.17 16.40 54.17 46.76 48.52 9.28 44.81 60.78 69.49 48.51 13.34 7.47 76.07 60.29 28.44 71.30 80.17 99.80 71.91 65.55 81.11 31.62 74.79 48.99 21.52 85.64 60.59 87.82 9.23 44.34 41.93 42.93 90.90 6.08 83.10 2.42 58.11 11.46 23.62 95.39 0.37 89.27 52.60 57.00 26.25 81.25 46.20 46.35 1.52 46.91 46.31 74.85 75.40 67.10 64.57 62.78 67.50 14.91 14.25 68.52 92.75 37.77 44.04 1.66 99.79 17.38 -23.28 31.90 66.57 32.06 25.00 49.65 0.56 80.79 40.23 13.57 12.79 25.32 61.08 28.19 27.14 0.72 71.74 83.42 98.15 28.66 26.44 9.23 85.63 76.20 92.47 45.74 4.19 75.05 1.92 20.59 74.38 9.66 4.45 55.92 8.89 42.33 23.05 96.19 99.58 85.87 73.78 2.48 23.42 55.92 19.26 59.64 81.91 48.02 66.65 57.94 82.44 59.60 79.75 79.41 61.87 57.87 75.29 62.91 5.18 73.32 29.08 93.64 10.40 25.15 18.27 6.22 66.07 41.21 88.96 81.99 40.69 66.93 63.78 63.82 22.37 96.88 5.50 5.59 88.57 50.40 73.83 3.58 83.94 89.88 89.93 56.85 33.29 14.97 37.96 92.81 68.75 19.46 82.69 98.29 44.02 56.52 64.76 58.97 60.53 53.10 -6.25 47.78 77.39 43.18 44.85 93.83 41.80 95.67 67.81 89.44 26.88 39.37 54.11 24.99 85.30 99.28 1.42 35.68 24.53 70.89 89.84 55.11 43.78 36.09 64.64 83.48 87.90 97.34 73.17 0.51 18.57 71.16 5.57 68.55 57.84 70.03 1.28 26.18 85.63 54.87 80.91 49.88 6.63 64.13 90.51 33.69 18.00 73.17 7.21 58.88 19.23 54.11 77.57 93.34 85.28 32.10 39.63 25.11 93.42 24.11 55.91 7.84 95.79 51.38 70.53 95.40 54.95 24.92 35.07 10.73 31.94 47.22 89.86 60.27 76.48 11.15 21.51 13.64 45.67 36.33 33.21 5.56 93.95 4.04 98.17 51.78 89.02 48.71 71.06 70.72 42.89 13.02 8.66 94.09 44.27 75.99 43.42 55.37 93.19 1.78 -53.95 58.62 68.71 16.98 66.90 65.18 7.70 9.03 30.97 59.05 0.14 69.47 11.85 96.12 38.57 29.55 47.71 81.68 49.18 27.99 97.29 50.14 35.50 92.70 30.68 82.96 18.49 61.71 15.93 95.27 24.96 36.75 56.55 70.92 47.21 7.54 19.27 96.85 92.96 59.99 37.81 80.31 88.83 94.92 36.83 27.24 14.47 71.24 81.71 87.54 94.30 97.75 41.37 18.13 21.53 67.19 1.06 87.57 71.32 35.51 23.85 89.64 92.48 60.18 74.38 10.80 30.71 1.43 31.80 82.98 3.78 82.25 15.16 35.35 41.52 34.39 60.15 91.23 82.19 50.09 44.58 14.53 97.19 17.27 96.98 24.45 70.92 11.75 66.12 75.62 29.83 24.12 14.95 51.88 48.49 22.97 32.92 81.87 9.95 88.14 -76.53 86.31 67.42 58.98 75.22 62.66 14.64 49.09 83.43 22.69 31.94 81.25 4.74 28.30 8.88 4.70 69.21 1.82 44.80 75.68 59.16 2.69 97.55 65.05 27.67 14.96 17.65 67.95 66.11 9.46 41.14 99.04 2.69 91.11 87.65 61.77 24.50 64.04 66.27 15.77 54.84 80.31 68.50 67.98 18.56 82.07 63.12 13.45 50.34 70.57 86.11 90.77 5.70 76.49 14.17 21.86 50.99 32.37 77.03 75.28 77.22 91.47 20.25 84.39 72.47 21.51 98.05 60.41 17.01 13.39 0.81 34.36 45.08 46.69 77.50 66.67 78.35 49.44 18.08 16.37 32.47 61.11 42.79 38.11 52.38 92.59 47.31 49.41 26.48 5.00 90.51 79.20 35.18 37.18 90.43 30.02 79.57 32.68 92.61 4.01 -35.23 32.55 24.86 6.55 11.74 26.29 98.03 84.45 48.42 79.65 88.53 41.02 71.86 97.40 39.42 75.79 15.59 99.30 29.17 52.37 75.31 94.17 7.65 7.89 58.39 40.03 48.90 89.89 68.32 54.16 25.69 8.86 59.80 25.41 54.75 3.59 31.89 58.07 45.70 32.54 45.22 1.93 83.51 24.79 25.75 23.47 46.14 66.94 44.86 7.11 1.33 2.90 37.07 30.93 58.80 38.60 51.54 4.30 41.43 83.46 22.73 62.98 82.00 71.72 54.19 81.89 21.31 97.35 12.19 37.89 81.06 0.07 3.93 93.06 28.93 25.18 84.92 13.98 46.42 27.30 88.73 43.59 19.77 53.72 35.35 94.15 20.46 57.73 55.63 69.64 32.90 86.26 53.03 96.68 34.36 72.14 76.27 24.85 30.67 21.22 -62.94 98.88 30.67 14.52 18.09 72.91 0.49 45.87 69.07 57.15 84.98 17.78 40.81 98.56 41.37 38.02 76.33 85.12 28.26 51.93 6.11 72.67 2.18 27.85 6.71 50.05 40.50 48.67 10.12 23.23 7.88 4.90 89.47 56.39 96.10 67.31 67.67 35.21 84.79 59.73 92.43 76.72 84.35 72.73 98.86 31.48 3.55 64.44 65.10 8.54 21.61 56.56 80.11 24.55 25.58 56.59 32.83 4.12 52.31 4.08 80.92 89.29 42.11 65.64 49.76 68.21 34.37 6.31 92.92 69.40 60.86 92.54 6.54 90.38 92.28 98.08 33.68 71.42 33.44 92.15 7.91 32.21 16.66 3.65 47.89 85.17 83.56 7.50 39.16 69.84 4.21 49.53 58.53 58.69 31.07 28.79 57.95 75.38 95.91 25.34 -88.53 6.90 53.11 80.39 59.39 83.57 5.56 45.71 3.44 45.02 6.91 37.29 13.84 37.57 31.45 59.88 50.65 30.32 98.66 36.35 90.60 81.88 53.06 26.49 67.91 61.92 10.11 94.71 34.89 6.13 96.06 91.81 48.02 35.55 56.76 18.19 56.48 91.45 53.27 87.80 41.25 2.63 75.55 88.49 54.67 96.58 10.36 68.97 77.01 56.91 89.40 57.65 95.53 27.03 49.05 88.23 35.32 6.45 16.10 65.68 79.99 85.79 39.22 0.63 33.76 71.53 44.30 81.38 2.25 0.54 13.37 78.52 41.69 86.55 78.85 65.57 85.99 94.79 6.45 5.14 39.21 52.65 49.73 64.86 36.36 24.54 97.46 89.11 99.03 13.61 42.81 85.23 98.82 89.51 12.41 11.57 46.53 59.24 78.34 83.87 -72.64 86.95 18.47 2.31 45.38 35.91 6.93 97.36 46.84 71.87 20.91 4.19 51.07 63.50 59.16 26.36 78.28 14.56 38.20 55.12 4.25 86.39 23.50 6.94 69.61 72.66 45.95 28.10 41.01 40.35 57.32 87.99 57.52 41.17 5.24 52.89 25.83 23.44 33.60 72.34 32.80 15.92 87.75 52.67 58.53 64.24 90.49 29.38 73.25 56.32 28.23 16.81 17.48 18.73 11.06 99.08 70.93 18.48 64.07 72.31 89.09 36.70 89.96 44.02 90.77 30.65 36.46 43.27 39.65 28.23 46.85 24.83 25.58 84.57 6.16 46.25 7.23 23.49 47.44 29.41 59.86 99.83 0.13 30.94 22.43 3.07 72.11 43.46 98.97 85.52 94.39 1.85 77.45 0.33 63.52 75.42 25.27 98.84 93.97 45.94 -63.84 18.33 63.69 18.89 91.47 85.00 63.37 92.08 97.38 29.52 36.33 40.60 36.23 48.65 80.56 91.49 74.08 92.16 19.13 90.76 5.44 54.63 46.25 13.65 30.87 42.15 46.89 33.58 72.14 67.49 0.33 46.66 67.44 9.85 90.93 29.79 65.38 10.48 70.37 90.14 65.42 8.58 99.18 20.00 0.65 33.24 3.88 73.80 25.72 7.24 62.68 61.06 98.77 16.73 40.52 11.01 0.49 85.18 95.60 13.30 81.46 62.18 5.08 41.34 10.03 26.43 70.25 72.60 66.91 47.61 3.28 55.07 7.33 81.42 51.14 24.56 6.37 57.63 23.90 86.79 71.07 18.27 6.96 29.44 64.16 56.64 72.08 75.99 77.79 69.89 25.58 52.76 32.96 70.04 15.37 40.48 51.68 54.32 16.51 85.87 -72.90 96.49 12.54 80.89 36.98 61.68 73.37 61.49 25.23 56.78 86.75 12.17 56.45 14.52 71.84 52.35 50.82 23.00 59.71 92.37 64.42 26.05 27.99 34.30 91.92 82.58 50.34 3.65 90.03 62.89 48.34 50.20 30.25 26.94 85.32 97.45 48.85 15.49 87.39 0.94 17.43 51.63 96.08 10.32 16.74 42.70 29.26 55.67 6.93 13.83 78.49 69.01 26.32 69.96 24.76 75.16 45.83 57.83 46.15 68.71 84.20 45.72 61.83 56.25 70.15 36.74 15.72 6.81 93.50 9.64 96.15 20.07 46.69 57.38 66.67 61.20 13.58 66.49 3.35 81.81 84.76 0.48 45.39 89.78 68.65 96.32 62.28 35.39 9.31 86.01 9.25 98.07 14.63 96.70 38.07 5.18 25.40 92.80 12.47 79.51 -14.96 54.97 1.69 97.15 26.50 5.73 38.10 89.36 17.19 79.49 90.04 19.56 41.17 43.02 9.85 1.24 6.43 70.70 22.33 68.65 8.49 20.24 34.52 96.00 63.85 12.86 4.51 17.02 55.63 14.24 80.28 98.33 99.65 29.72 96.07 54.23 6.49 47.73 85.70 96.68 43.40 34.76 48.92 92.69 15.57 1.30 14.56 51.84 41.47 64.98 87.95 6.35 58.39 10.46 66.51 97.62 89.74 83.15 26.07 89.58 19.60 67.42 2.87 70.26 7.43 88.35 10.63 91.51 13.14 51.91 47.00 43.14 53.48 36.28 46.63 19.04 55.52 86.98 44.83 82.33 46.84 38.69 22.45 2.83 70.86 33.38 5.44 86.41 69.86 80.82 60.08 66.69 44.19 89.69 17.51 56.83 72.55 91.86 52.80 80.10 -97.08 60.01 91.80 44.75 99.18 35.46 98.68 15.81 33.17 72.01 49.05 67.15 81.04 63.27 24.65 75.36 83.86 92.60 89.15 50.11 9.93 14.01 33.91 76.31 99.04 90.63 20.55 90.35 51.46 62.32 84.67 15.24 30.10 3.54 3.69 88.53 53.99 52.82 1.87 8.37 64.62 87.95 18.80 48.27 47.45 85.54 37.29 44.11 66.61 12.99 75.20 89.04 34.48 41.26 75.61 39.57 16.69 99.46 24.76 11.06 9.68 46.99 14.70 0.85 26.82 81.04 98.41 40.38 10.28 34.47 65.86 88.99 84.36 61.06 74.09 68.75 73.34 17.24 65.00 62.06 84.97 77.42 4.18 84.54 26.61 73.32 80.21 16.81 78.39 94.96 19.49 2.45 13.33 53.39 90.03 21.06 46.39 17.05 65.05 32.34 -37.89 42.26 50.64 97.25 17.38 54.36 56.50 91.67 0.14 3.07 47.92 57.93 40.04 78.31 61.94 47.78 63.38 83.27 85.51 95.94 84.33 96.90 75.13 1.15 35.48 8.15 65.07 79.81 82.20 95.88 28.27 85.56 0.10 84.95 13.83 16.41 6.16 88.31 80.24 19.82 91.27 75.19 1.54 30.06 21.04 98.34 24.98 80.66 4.62 49.43 49.93 4.27 98.86 4.28 97.38 58.56 1.61 51.10 47.08 71.78 49.32 57.32 16.95 45.77 34.10 87.12 32.39 55.54 55.28 85.52 93.49 16.76 48.61 6.34 82.51 73.24 65.22 71.08 82.70 58.28 37.32 81.55 59.09 58.29 28.47 20.13 16.48 14.41 47.19 48.29 31.34 20.67 71.10 49.18 99.72 96.04 17.46 14.75 12.70 36.88 -41.93 45.94 50.53 15.18 1.69 12.88 26.55 77.64 62.27 95.75 86.56 5.13 60.30 50.65 43.73 96.20 32.98 95.40 43.49 22.54 2.91 17.96 76.31 94.42 52.91 85.16 68.85 59.34 39.79 78.68 90.55 21.30 48.13 88.23 74.26 57.34 93.57 85.18 51.22 22.07 99.15 73.10 34.34 34.12 47.76 74.51 0.25 95.85 62.94 44.43 86.83 25.75 50.79 60.86 86.14 93.51 19.89 33.48 49.26 1.36 5.10 3.50 10.31 50.59 98.32 74.82 17.37 0.44 76.36 55.39 8.82 37.32 16.15 63.45 69.13 81.27 76.93 13.21 41.13 98.76 48.27 42.53 92.97 13.23 74.56 69.94 21.29 87.45 64.39 12.51 86.44 15.62 66.70 16.77 98.50 98.34 38.99 9.15 47.25 97.00 -62.17 33.86 87.10 59.82 61.70 38.35 70.35 56.31 86.20 6.53 87.66 8.91 17.20 22.08 97.23 74.87 9.32 28.53 77.99 4.62 58.84 61.95 13.77 82.75 92.80 61.92 27.52 16.30 54.31 25.43 29.61 79.46 18.41 9.13 67.46 61.01 23.33 33.38 96.14 79.41 24.04 47.31 59.75 76.46 85.45 85.54 99.75 88.14 12.97 74.79 37.97 58.45 27.80 66.87 65.69 81.34 33.10 89.43 71.71 27.43 76.34 18.99 48.79 13.10 37.13 77.11 74.75 42.09 17.05 87.11 48.36 75.18 92.30 71.58 79.88 96.76 16.94 33.12 28.54 76.53 72.16 25.25 31.92 7.50 63.47 99.23 63.62 45.21 20.39 78.88 75.66 51.71 70.08 55.41 8.80 69.17 81.66 28.25 57.47 43.18 -74.63 22.79 49.84 95.92 88.97 62.31 3.86 52.85 42.23 8.78 19.67 29.07 45.64 23.21 92.36 53.28 0.67 74.85 62.88 74.79 69.97 67.96 75.82 59.38 78.54 19.95 62.27 95.87 3.12 17.47 50.22 2.97 83.57 89.68 80.50 70.75 44.92 36.30 73.07 33.99 81.53 41.64 30.63 58.08 41.96 78.26 96.74 13.44 36.91 96.09 43.48 55.95 83.01 28.52 84.20 14.24 34.77 92.67 27.73 96.37 76.08 14.26 95.33 17.43 68.77 48.14 62.86 4.59 2.55 59.95 13.86 17.36 51.15 91.11 72.03 49.45 0.93 87.86 94.59 84.06 91.03 38.28 18.25 57.57 90.80 6.10 47.43 43.95 13.14 24.41 83.07 89.79 62.12 28.12 13.76 58.50 13.61 51.78 77.83 25.54 -61.00 88.91 82.97 49.55 3.94 36.28 12.73 44.43 53.70 14.89 96.24 56.94 59.33 80.27 95.49 64.96 54.17 43.30 97.24 61.57 7.45 17.84 84.60 8.76 41.34 39.37 57.33 94.77 61.70 17.45 8.21 75.76 80.51 43.58 11.68 37.67 86.77 42.08 57.48 83.58 0.59 35.67 38.04 68.03 70.38 52.88 73.90 52.18 4.80 31.22 28.61 4.92 25.75 11.78 7.18 23.17 8.00 37.81 46.32 3.06 0.81 42.12 55.84 53.77 99.90 7.34 45.63 76.81 89.12 57.75 56.06 1.69 32.47 44.76 84.60 52.93 64.57 70.82 32.59 40.97 94.58 53.96 9.09 4.32 23.50 45.46 51.91 79.48 80.37 91.85 42.29 79.53 76.38 59.58 44.14 17.40 27.90 94.49 5.52 87.02 -30.83 46.86 89.69 73.46 66.03 75.90 73.19 78.98 92.23 70.83 35.94 52.69 79.95 55.35 59.56 7.71 32.57 67.75 53.78 90.18 93.27 8.61 69.47 72.14 70.77 17.60 36.42 40.81 74.21 22.63 95.58 98.32 67.56 81.36 73.00 15.00 58.01 54.08 20.44 59.01 72.69 1.59 26.36 93.89 73.26 21.99 7.03 19.84 1.80 22.64 1.09 24.86 17.16 79.35 69.77 32.26 27.30 41.80 45.32 59.37 51.02 16.24 18.72 47.37 99.51 56.19 92.25 59.35 36.06 37.16 58.99 84.09 83.10 11.51 40.68 90.39 85.69 52.08 60.71 49.33 77.12 4.05 64.97 51.98 38.09 60.15 46.98 27.40 88.39 24.47 31.39 23.76 82.28 37.12 19.31 70.56 37.06 70.96 69.60 89.56 -24.91 57.52 60.34 46.30 12.10 13.11 87.12 19.90 42.94 70.09 9.36 16.73 62.18 85.91 62.79 27.23 57.83 56.07 98.82 35.88 42.77 3.80 43.54 68.85 85.26 57.22 49.56 63.92 58.04 48.03 23.64 64.61 33.45 83.07 21.72 69.47 64.16 19.56 67.15 3.93 7.67 62.37 58.13 17.54 45.88 78.62 71.10 10.75 15.14 46.23 14.41 44.46 47.82 98.68 90.83 81.30 67.40 60.89 0.89 40.54 30.24 64.21 21.52 53.32 0.50 85.97 86.38 50.91 94.17 18.26 28.93 9.09 63.55 42.72 30.29 75.84 91.07 60.37 83.21 68.40 72.76 94.40 51.21 17.70 69.24 5.37 8.07 54.51 93.46 46.20 26.61 84.57 56.31 95.49 42.99 19.86 51.89 40.42 52.22 57.54 -54.25 22.83 21.52 67.38 71.25 5.01 70.49 8.33 70.37 98.51 99.86 25.95 3.08 70.72 11.87 1.90 99.10 81.32 44.70 58.04 91.60 54.98 10.11 66.57 24.19 4.38 97.19 78.52 32.64 93.62 75.58 32.55 1.10 89.84 88.42 64.99 93.32 24.88 33.79 97.38 9.24 15.37 87.54 68.33 1.51 87.58 63.18 14.14 56.52 45.27 12.08 93.12 0.66 7.30 61.29 75.28 49.80 80.75 81.59 37.27 33.80 29.79 45.34 90.60 48.99 79.31 25.57 63.46 48.58 68.41 76.96 44.21 60.23 68.40 36.03 63.81 17.71 70.62 34.30 16.50 33.15 76.43 68.52 22.49 81.71 61.11 36.62 39.56 28.67 20.81 43.56 12.81 62.85 43.94 92.85 85.45 82.00 7.37 23.24 74.28 -91.55 36.55 17.68 27.97 18.77 36.65 79.43 87.97 41.35 9.40 68.99 25.45 63.80 49.14 59.45 77.52 4.77 61.86 96.04 59.49 30.97 14.24 78.49 89.23 35.44 7.39 26.52 94.03 34.35 18.84 11.94 25.39 7.35 37.86 88.12 50.40 90.89 97.55 98.11 20.05 39.81 83.13 39.87 79.64 36.72 83.33 89.55 26.65 23.44 74.56 47.46 77.14 67.00 11.77 56.19 57.19 28.59 99.70 4.08 69.27 53.04 70.38 92.78 14.22 92.18 29.85 67.64 23.63 33.08 22.15 53.66 58.02 0.70 51.75 33.72 16.67 48.97 86.78 26.43 30.47 6.63 37.81 69.10 81.82 40.54 55.57 23.80 64.15 11.19 94.40 42.87 8.34 53.41 80.07 85.16 24.10 37.15 99.13 97.12 32.47 -18.90 40.23 3.41 34.75 8.73 98.24 20.42 39.80 75.91 29.04 99.38 91.02 3.76 60.62 37.13 34.08 91.88 47.56 4.13 77.15 2.82 33.24 73.04 99.55 35.93 6.86 41.03 97.42 38.49 82.60 49.26 24.32 41.50 34.86 42.44 56.38 37.39 6.41 97.99 6.32 92.16 68.80 89.72 98.31 40.46 43.87 39.64 84.51 40.76 32.99 57.53 32.47 34.08 30.42 42.30 60.04 25.88 98.31 35.97 99.21 12.81 29.92 24.75 11.29 22.86 48.93 76.79 26.12 48.01 27.06 68.80 99.18 68.54 52.77 81.17 78.85 4.18 28.86 75.20 11.10 56.14 44.66 49.25 97.11 83.14 84.17 58.50 29.42 5.84 55.27 25.61 26.50 2.57 3.36 53.40 20.08 9.35 10.75 70.59 67.46 -34.22 60.55 20.45 60.07 42.73 77.39 45.17 5.65 51.91 78.26 14.40 80.02 13.57 18.99 43.56 3.37 32.58 66.34 16.79 21.62 90.88 26.37 34.82 28.50 38.63 55.42 38.14 52.42 66.34 5.71 63.62 61.07 93.78 93.08 91.28 37.55 93.64 33.61 95.45 75.82 37.86 89.61 15.08 67.96 78.38 40.17 16.76 21.80 78.90 2.32 40.84 71.53 54.02 57.44 6.49 94.02 82.67 4.03 86.84 74.80 73.40 60.42 84.65 41.86 87.28 55.89 85.78 96.75 53.05 23.56 73.58 75.73 8.11 4.96 56.67 47.64 99.10 54.75 25.26 1.74 70.74 5.67 21.29 37.65 86.48 41.01 86.48 5.78 98.83 10.62 88.04 88.72 58.05 28.57 66.75 48.34 96.46 73.90 76.66 20.36 -85.29 30.88 98.96 90.37 75.96 94.69 34.43 63.79 48.59 72.22 96.14 28.95 28.90 47.35 98.89 96.67 44.00 99.48 75.16 82.43 90.94 67.69 11.99 66.68 24.29 73.12 20.35 31.59 71.04 9.08 48.43 20.92 67.20 68.81 15.75 14.06 28.60 96.61 49.38 76.56 91.56 96.07 83.35 37.89 49.81 43.13 18.02 52.81 42.97 56.85 75.76 29.79 89.02 75.02 36.62 90.21 18.92 31.98 85.97 0.02 23.24 21.06 41.67 75.34 52.20 65.16 70.21 25.78 55.38 40.00 78.90 63.01 2.32 80.82 49.62 61.74 0.05 99.58 27.43 84.96 41.87 94.60 47.34 78.16 87.91 77.93 17.26 63.62 36.55 86.45 53.54 30.33 20.55 50.22 82.46 72.71 32.04 46.67 74.74 5.74 -48.84 86.98 26.69 51.42 45.55 82.65 67.74 97.48 56.43 52.81 42.38 60.43 93.82 4.20 92.90 0.69 68.95 83.51 77.59 92.98 19.77 86.49 18.42 39.10 45.94 22.86 32.46 46.03 62.86 30.67 54.38 31.61 10.98 41.84 71.22 31.51 49.99 4.88 76.38 75.49 23.51 56.08 51.06 51.56 94.94 70.15 34.47 42.41 68.73 80.15 54.79 20.62 88.61 57.80 38.55 64.36 79.91 42.98 94.28 60.30 85.00 27.31 89.12 80.11 26.91 48.55 71.31 85.40 67.24 30.85 69.31 43.35 9.25 99.49 72.18 56.96 4.30 55.12 12.67 35.88 68.59 49.91 30.66 56.40 51.56 63.14 17.91 83.63 35.11 33.47 45.94 8.67 51.02 35.68 53.23 81.32 9.77 98.68 40.64 11.01 -12.14 81.63 95.06 12.37 56.96 84.18 24.06 9.89 92.30 12.70 71.59 1.33 48.55 44.03 44.27 15.19 58.44 33.48 18.02 31.12 42.31 0.60 51.02 49.32 47.24 85.96 98.81 20.54 81.48 33.53 61.57 77.66 10.46 90.29 42.13 4.45 12.74 50.68 7.33 11.97 78.64 98.92 48.46 58.39 11.39 40.44 66.91 58.01 59.97 49.00 51.63 53.90 7.51 24.87 92.09 83.68 96.20 21.52 34.18 2.76 89.10 71.21 61.75 56.25 5.66 86.21 56.43 93.94 61.22 83.92 9.85 94.28 84.56 19.95 13.37 54.59 28.71 43.99 12.46 18.56 24.11 73.38 0.47 29.56 14.59 1.15 31.62 86.72 72.06 75.24 38.43 48.25 4.21 4.07 71.73 86.59 40.22 33.95 68.35 62.73 -15.15 42.00 19.02 46.18 28.96 60.30 11.12 35.32 59.96 10.69 64.30 40.39 76.96 9.51 48.37 33.09 5.74 31.89 81.17 76.59 66.65 13.48 27.11 99.38 38.99 17.55 83.32 76.92 89.30 4.35 4.31 82.14 59.31 68.77 18.27 67.28 86.60 91.69 38.94 15.60 54.92 94.57 62.67 3.71 70.07 10.04 16.97 4.98 69.91 93.79 23.43 9.02 75.80 14.54 3.07 55.80 90.96 33.23 26.34 77.83 54.21 76.62 37.27 20.49 8.81 84.38 2.33 72.72 59.04 98.43 15.37 63.94 21.45 82.62 17.92 29.90 2.03 1.98 69.93 30.19 12.82 17.81 2.32 87.19 87.67 54.78 99.38 18.98 94.88 92.44 89.94 34.29 70.02 28.90 9.69 97.01 7.38 32.78 72.13 20.74 -71.16 82.11 57.55 86.55 61.97 32.07 67.99 97.23 90.32 31.12 43.31 98.49 20.92 77.77 63.77 64.15 84.84 27.83 46.74 78.33 92.83 84.33 16.65 20.13 73.39 62.47 7.09 76.66 16.74 88.59 87.56 8.79 26.86 38.89 21.94 5.28 7.69 79.24 41.01 80.65 59.46 78.47 4.52 18.65 77.23 68.41 12.82 21.39 73.32 60.64 49.75 18.05 70.11 34.64 98.41 91.11 10.23 14.18 75.31 22.23 74.41 87.68 7.45 99.64 46.49 44.72 4.23 56.16 44.71 22.99 77.61 99.75 79.24 26.41 61.90 88.91 8.89 24.77 80.86 33.87 4.63 99.00 10.93 25.12 84.93 21.79 92.81 27.27 92.77 57.19 61.36 56.53 62.04 74.85 81.85 83.24 40.13 48.66 22.92 27.02 -29.65 66.37 16.40 26.73 23.92 36.75 58.95 79.52 42.36 75.91 15.27 45.50 90.64 59.62 64.34 49.50 6.87 63.25 36.12 73.15 76.49 99.45 76.43 77.83 93.11 48.22 45.34 70.02 58.93 33.77 90.52 18.88 52.06 74.93 24.29 65.74 48.21 23.95 14.03 69.09 28.58 73.89 56.64 55.63 49.20 59.36 38.42 46.69 12.51 15.83 61.57 5.56 42.00 13.80 3.64 87.48 66.21 42.52 58.91 58.51 52.59 38.09 68.80 24.23 19.67 7.66 91.51 28.50 63.15 6.83 28.68 92.06 57.39 63.42 80.22 91.56 40.74 75.26 52.54 20.23 64.45 48.70 40.06 31.22 46.22 11.79 5.90 57.99 20.47 28.57 62.70 43.20 92.85 96.70 75.86 36.84 49.35 37.77 31.37 0.57 -23.84 40.12 97.14 11.24 23.51 71.82 67.22 33.07 8.33 8.48 33.31 21.93 34.06 84.89 68.96 23.28 57.03 99.02 89.49 36.04 77.58 79.76 69.18 5.10 92.26 29.24 35.33 69.39 85.24 93.68 77.56 22.94 73.04 78.27 40.18 80.79 18.91 61.22 31.08 0.69 56.65 85.26 20.74 82.65 92.97 29.93 14.57 84.85 48.75 34.61 74.59 17.17 78.91 37.97 88.08 11.49 79.40 2.71 52.14 68.49 96.05 24.11 73.15 46.94 19.19 76.82 43.89 21.71 49.75 23.65 69.36 71.21 71.27 95.67 91.83 66.12 72.10 45.09 62.31 42.47 26.70 60.19 22.35 61.13 99.72 71.56 21.43 76.28 86.17 36.22 98.81 77.54 28.41 86.75 64.26 41.48 69.58 72.30 80.91 8.96 -49.74 61.67 78.44 7.78 77.80 12.73 12.97 5.57 57.80 94.66 60.69 30.52 37.75 45.04 98.92 8.06 50.60 24.90 10.18 42.62 61.92 61.20 90.17 88.69 93.29 44.03 14.12 94.06 28.81 31.87 71.82 19.54 98.86 57.08 48.28 51.61 19.33 66.84 98.25 44.09 94.28 90.02 17.24 18.55 84.65 4.50 62.05 33.94 82.07 57.14 23.39 47.95 73.90 62.68 28.18 65.58 95.18 63.30 75.63 33.09 42.11 7.61 66.66 17.61 64.51 3.64 75.35 43.76 35.44 92.91 43.44 20.90 5.59 1.45 4.20 55.97 8.04 82.77 33.53 77.92 71.34 17.11 39.77 61.99 87.55 34.99 15.66 77.90 6.58 32.06 56.53 28.20 49.71 86.90 94.47 54.73 6.85 95.12 83.69 3.40 -51.22 49.17 88.81 19.83 99.33 14.27 64.45 31.59 93.39 5.25 96.66 34.52 90.58 48.21 90.63 59.30 80.03 66.14 6.59 35.44 86.93 41.78 69.94 68.59 86.38 20.00 80.10 94.22 72.42 48.33 2.18 77.02 21.65 73.74 52.11 0.88 97.20 6.88 18.39 31.45 44.11 24.08 37.40 89.16 14.50 2.82 13.68 49.39 3.27 32.48 89.65 14.91 85.04 31.51 7.25 43.20 38.19 53.04 32.09 36.92 91.37 64.05 41.96 57.34 23.56 14.39 6.76 86.02 5.56 29.10 71.78 77.41 28.33 33.62 82.83 20.78 58.10 29.96 25.79 20.76 45.03 24.63 86.58 15.06 48.04 86.16 64.38 52.90 0.32 57.35 21.20 81.22 34.81 62.68 97.78 56.98 46.40 44.24 10.93 92.80 -70.90 40.44 28.04 44.31 15.23 16.22 8.89 95.28 98.23 79.68 58.46 58.95 90.89 4.19 96.18 33.06 40.81 36.54 18.05 31.63 20.42 73.54 75.35 22.52 50.77 23.80 33.68 20.72 89.16 1.15 26.77 99.59 7.11 46.95 13.30 45.84 8.05 68.70 25.24 91.60 69.39 17.65 14.47 29.26 12.41 80.08 67.36 76.43 89.57 97.28 16.58 2.14 78.33 58.21 86.61 54.64 82.05 64.23 4.31 53.25 20.72 19.32 7.88 25.63 80.62 22.68 20.82 39.42 82.70 24.21 76.53 86.00 35.13 20.74 82.33 15.88 93.99 4.52 26.89 18.96 35.37 92.31 51.50 92.52 61.42 29.69 61.38 0.82 46.23 83.38 59.58 54.67 42.10 96.98 69.02 35.84 38.34 67.65 32.03 0.71 -95.92 63.19 47.27 34.55 84.18 36.99 45.79 21.99 37.23 48.99 96.95 40.57 49.24 65.98 73.81 16.59 28.66 15.78 14.39 92.29 39.62 13.98 94.02 56.72 28.69 68.61 86.89 69.82 80.96 81.90 96.76 6.25 91.69 28.62 30.11 56.59 67.67 35.63 60.25 77.41 54.27 23.19 78.69 76.61 72.85 39.04 20.24 5.96 97.39 64.08 62.61 71.68 47.45 51.49 22.13 14.10 80.54 92.37 9.79 95.36 51.17 90.78 57.48 0.55 91.71 83.80 8.62 94.20 88.82 21.24 62.57 41.99 76.46 83.93 41.16 74.85 88.40 0.41 97.82 54.86 87.08 64.91 53.83 51.69 36.94 6.81 10.00 84.34 67.66 63.66 13.40 14.26 49.02 43.35 59.49 72.98 95.97 77.39 44.57 6.88 -94.67 5.94 65.32 36.39 5.55 92.71 76.18 34.85 18.19 32.34 73.92 96.13 62.68 1.09 36.12 89.33 29.20 79.43 65.79 91.81 51.04 7.18 60.24 83.17 64.92 31.78 33.04 8.21 47.45 28.31 50.57 16.30 72.22 56.33 84.37 40.97 73.29 42.15 67.83 3.48 60.90 79.71 52.49 34.10 15.39 1.04 99.43 21.98 69.50 96.42 13.05 69.27 5.96 32.74 72.47 92.91 48.96 32.03 16.86 75.69 63.22 56.01 25.89 60.45 42.77 88.38 20.63 40.78 25.25 1.95 78.75 77.46 4.94 86.33 32.78 84.38 95.96 59.18 61.64 98.19 48.89 55.84 88.80 92.68 25.03 67.18 13.99 26.66 97.76 42.54 24.17 26.19 43.63 19.54 56.01 67.74 94.42 77.11 83.13 52.92 -36.92 76.73 29.68 5.41 81.78 77.73 63.89 24.16 66.81 23.46 93.01 7.07 14.60 37.26 95.28 88.53 34.70 1.55 87.25 62.39 53.55 82.06 30.72 42.65 16.39 84.56 74.96 60.13 46.72 99.54 14.71 86.23 83.05 2.49 88.15 60.81 23.94 77.90 86.51 91.80 45.32 37.40 18.54 4.66 1.05 80.52 5.91 76.32 48.52 59.08 5.98 81.69 46.20 3.74 69.15 8.90 32.58 83.61 95.66 9.31 88.72 11.36 43.23 54.34 94.63 57.03 77.07 15.29 16.19 52.68 31.76 16.42 8.05 98.62 39.74 28.40 9.31 87.32 81.24 46.64 69.16 15.21 29.14 87.81 39.24 76.25 57.36 1.66 58.79 95.94 56.57 91.39 42.10 62.33 75.81 83.59 57.33 98.34 92.51 37.39 -12.15 98.78 44.48 74.07 28.66 45.47 39.08 23.77 17.45 81.56 73.00 57.31 18.16 17.39 85.93 74.75 86.73 43.47 67.20 58.77 14.11 69.04 55.12 58.87 86.54 67.93 99.19 62.18 16.95 44.95 22.14 57.69 13.36 9.51 83.76 5.82 34.82 9.02 66.92 66.43 38.23 11.23 23.51 67.37 95.67 52.40 42.33 78.24 12.56 7.47 82.81 98.64 55.23 69.97 32.02 57.45 70.33 5.56 36.08 75.30 51.53 92.27 15.16 96.47 63.98 51.76 53.16 24.27 77.53 40.56 98.91 92.37 93.15 98.97 60.04 41.52 51.10 12.21 64.80 38.29 36.04 75.57 49.10 24.91 20.46 28.88 33.59 50.70 77.22 95.37 98.96 73.86 13.93 83.18 18.77 27.10 68.53 4.93 56.04 36.05 -18.52 70.62 38.31 71.03 87.37 43.68 10.30 26.47 79.03 87.28 7.93 24.24 48.95 61.14 9.37 55.99 60.72 60.69 68.90 5.45 13.65 34.36 39.60 61.97 28.07 0.71 13.73 16.88 41.62 0.24 87.24 6.37 87.66 60.91 58.66 77.40 36.91 58.03 11.43 87.98 28.98 67.43 93.75 71.64 94.26 22.03 37.03 42.77 38.93 98.98 22.11 69.97 21.08 92.29 17.71 87.28 31.30 2.02 88.95 98.27 35.37 83.59 32.25 93.40 28.53 43.87 84.42 12.87 4.94 90.61 33.11 47.91 78.03 15.30 89.38 13.59 75.73 3.95 62.08 3.93 59.86 44.05 62.49 96.33 85.03 54.02 34.98 14.56 36.25 25.12 97.70 73.23 79.51 98.06 87.57 34.42 97.19 33.25 82.57 18.84 -97.84 2.14 79.60 10.00 18.77 90.82 88.80 8.15 82.60 36.78 84.28 67.59 46.66 12.99 70.14 15.82 28.94 83.86 9.28 1.03 79.11 33.34 67.75 73.41 38.81 85.48 13.52 56.48 38.68 86.87 19.95 85.26 7.00 38.92 64.13 68.59 65.34 11.66 86.09 96.56 32.90 42.44 68.64 1.09 44.48 41.86 46.17 22.58 17.67 30.95 83.02 13.97 27.19 58.33 68.96 4.69 40.07 13.29 95.99 7.27 89.68 50.99 45.82 24.89 43.06 59.41 66.26 53.73 77.40 41.89 10.64 34.18 37.97 40.46 2.97 4.72 54.16 71.67 81.63 34.77 54.59 55.08 28.02 79.90 82.16 63.94 90.01 31.75 17.01 97.86 94.30 79.93 55.76 34.86 37.41 66.67 47.46 6.51 36.64 14.34 -20.95 49.50 43.25 17.22 13.13 76.32 65.55 51.90 53.33 84.34 99.68 46.55 20.92 74.18 19.15 46.70 14.84 42.21 20.56 18.08 12.65 53.60 30.49 29.82 88.13 27.48 47.97 45.64 40.95 65.67 9.01 0.68 87.08 15.31 40.28 54.32 93.66 22.90 62.90 7.79 41.39 32.88 52.47 51.37 16.02 40.36 82.28 42.25 30.71 55.49 19.36 18.83 29.31 92.05 8.91 30.75 69.86 0.80 72.12 41.81 43.18 19.65 1.37 88.64 53.75 0.71 95.39 67.54 19.62 38.90 43.11 86.89 90.58 97.00 26.45 41.26 28.97 33.15 82.57 82.32 63.54 94.69 15.94 43.52 72.91 31.22 14.61 34.42 34.96 3.67 61.34 43.15 62.64 51.75 35.97 66.65 21.62 44.22 61.71 36.53 -40.30 25.62 67.13 9.12 49.29 77.29 8.73 37.52 99.30 89.36 78.02 52.75 94.00 10.44 8.43 92.92 66.30 9.91 44.51 77.80 7.50 72.48 14.23 63.06 1.14 38.31 16.19 43.59 94.60 15.13 1.03 5.86 96.59 74.15 53.36 75.25 69.17 66.16 86.40 92.84 73.46 22.31 78.25 8.95 89.08 48.18 53.71 6.42 46.89 85.09 67.01 97.55 94.70 94.62 59.60 7.70 94.77 88.37 42.41 1.80 73.54 99.04 72.05 91.89 22.39 98.27 1.44 5.98 49.86 29.95 34.88 4.45 80.37 94.85 89.22 74.11 53.31 19.28 46.81 99.74 32.41 19.77 55.14 64.12 95.23 1.35 56.97 68.25 55.23 48.25 40.13 98.48 42.67 35.81 53.67 40.21 30.76 9.80 60.35 90.25 -35.57 44.72 89.05 20.63 9.98 31.25 47.74 84.02 34.30 35.73 46.76 19.20 77.04 88.65 73.47 94.54 29.73 91.35 66.28 54.48 6.81 46.99 98.11 30.31 87.25 99.24 36.10 99.80 9.19 94.43 81.64 76.08 50.92 90.01 30.93 78.74 43.60 83.37 86.59 13.87 4.61 91.28 43.48 90.63 24.62 0.60 11.66 4.15 59.15 46.47 31.65 56.03 92.56 23.38 32.12 50.98 12.75 91.77 75.71 44.54 39.53 82.03 82.40 80.60 19.72 85.90 66.10 47.25 81.93 70.11 43.25 58.22 44.76 88.77 86.84 96.52 42.06 49.04 39.49 18.93 55.44 99.22 14.02 51.63 34.61 52.24 25.61 66.98 87.38 33.27 58.48 14.35 27.96 17.44 16.21 3.86 90.59 21.32 23.40 33.89 -40.28 89.24 78.08 48.08 4.24 53.49 16.14 22.22 76.39 79.80 24.76 43.57 58.62 10.82 3.02 87.94 55.20 11.00 70.03 69.27 21.78 63.62 78.68 25.87 37.39 6.52 52.26 90.66 39.22 79.84 29.83 23.33 3.23 67.70 26.83 92.98 3.14 84.77 39.45 31.20 59.53 15.80 55.26 49.38 8.92 62.11 29.34 91.37 86.12 92.30 33.36 20.90 1.22 81.46 5.84 71.24 47.09 78.31 52.04 50.64 24.79 51.65 33.14 24.90 45.76 18.92 55.69 11.43 9.25 82.37 45.33 32.75 44.34 81.75 8.98 22.03 99.92 66.99 22.34 26.32 27.68 39.22 16.02 5.72 50.73 56.96 2.55 5.21 63.96 6.25 10.90 92.58 81.85 35.28 80.28 47.89 45.13 61.43 33.25 1.24 -40.21 84.64 85.57 39.57 43.18 78.66 15.73 15.55 2.03 13.80 68.16 49.93 66.49 64.46 4.51 55.32 84.43 32.19 12.24 16.57 19.38 25.62 93.09 47.91 97.23 16.24 11.43 89.38 76.96 16.96 45.87 22.48 83.07 55.69 32.14 12.74 86.11 63.62 14.03 88.71 66.62 79.93 49.69 34.02 26.72 56.71 44.95 52.69 98.06 36.33 84.21 2.96 62.58 19.02 84.62 72.53 1.85 90.37 73.51 74.12 49.40 51.60 43.42 62.67 74.18 19.50 33.92 50.12 82.13 24.31 95.22 90.77 4.22 0.22 72.16 80.15 9.25 71.81 99.99 24.25 12.24 98.76 46.24 52.16 93.98 93.23 97.95 1.20 3.80 94.89 7.21 94.28 42.95 1.38 38.87 22.12 48.03 3.78 93.71 4.40 -38.01 42.49 46.98 6.69 46.79 40.77 73.58 36.10 48.64 42.86 50.42 22.60 46.24 61.51 70.00 24.39 81.96 42.26 95.16 27.11 19.14 0.01 93.40 16.09 1.95 89.49 42.32 77.24 9.04 24.92 74.12 14.57 79.08 80.20 76.33 19.02 41.99 44.87 99.49 66.45 5.46 78.68 23.34 73.02 72.38 87.36 65.20 57.52 84.83 84.70 3.63 24.87 45.55 39.74 32.14 15.96 40.48 89.92 29.11 36.46 8.07 21.19 39.28 49.14 4.29 58.85 60.91 73.22 59.58 34.06 59.09 76.82 1.93 84.51 19.55 0.51 17.21 84.07 30.68 28.12 69.77 57.31 70.93 76.03 29.43 31.99 39.64 77.42 51.69 78.66 51.76 41.00 99.93 1.38 92.88 78.16 22.02 64.18 80.25 90.25 -15.93 68.28 56.02 8.69 45.05 18.10 55.52 96.08 47.56 47.30 15.60 59.02 10.53 86.30 0.20 12.73 51.83 21.17 61.34 75.91 88.15 82.85 92.69 85.94 91.14 66.50 90.26 0.69 73.80 21.01 61.76 93.47 39.70 52.80 92.30 55.61 59.55 38.94 9.31 32.57 28.06 15.16 23.64 51.09 26.19 92.43 34.49 3.69 92.79 25.57 88.78 24.40 66.51 89.24 78.18 42.91 30.85 98.49 59.53 42.49 40.69 38.65 89.04 9.27 87.23 5.11 91.77 29.43 15.05 43.15 97.30 84.96 16.69 47.34 87.63 10.03 7.71 87.12 85.17 17.86 99.97 22.08 39.32 21.24 84.23 74.30 1.92 81.60 46.47 60.78 70.64 95.27 78.86 81.70 58.80 2.70 20.59 40.25 25.68 63.75 -4.10 38.54 93.41 14.59 93.95 74.85 27.04 65.79 18.97 63.63 70.53 4.30 57.32 87.46 75.69 99.96 98.18 10.95 2.85 82.17 96.46 88.47 18.69 14.87 85.07 86.75 86.83 57.22 49.81 24.12 19.45 51.44 14.65 6.80 55.87 46.54 47.79 96.62 69.08 52.80 60.97 78.21 69.14 53.28 56.53 29.09 41.94 85.56 12.16 56.16 82.23 72.64 8.55 58.42 1.07 19.85 58.37 17.55 17.48 84.31 72.53 93.86 17.43 60.12 2.47 60.15 85.04 23.56 54.87 35.05 66.56 25.17 42.38 99.68 59.09 61.08 93.17 94.23 34.35 4.69 51.62 66.46 17.56 14.83 96.35 2.22 90.88 4.26 44.51 24.55 73.15 10.84 32.44 18.81 56.52 69.48 49.70 13.76 43.22 20.59 -10.67 84.44 44.14 64.00 83.17 89.38 28.65 71.73 33.86 48.46 70.99 37.01 42.10 39.90 45.81 73.24 50.55 98.47 69.04 9.60 99.06 8.62 40.61 36.46 61.30 37.57 89.73 51.99 97.62 90.40 57.47 86.44 72.85 51.32 20.67 25.88 54.16 15.00 97.07 16.10 71.95 7.06 68.02 47.98 37.96 45.17 74.29 27.56 22.34 38.11 94.51 73.67 87.48 52.09 88.62 53.34 28.73 53.05 57.17 47.42 28.45 84.92 62.54 94.20 43.58 62.05 49.65 24.36 26.71 97.57 58.57 97.54 10.77 50.22 96.44 64.33 91.92 30.51 4.53 82.87 29.82 43.63 97.95 52.32 85.86 92.45 96.37 89.65 93.22 50.26 0.15 38.46 10.60 12.05 60.82 41.08 89.83 37.95 78.29 81.92 -76.17 72.06 13.28 57.01 64.16 54.48 63.97 29.71 87.78 26.28 52.58 94.89 27.80 72.88 64.20 46.04 48.41 27.79 10.59 23.83 37.43 67.79 44.25 53.47 17.19 34.33 11.27 44.02 89.56 77.21 90.50 92.70 0.33 78.90 34.61 72.16 64.18 49.64 71.41 49.05 91.42 83.77 90.24 70.80 48.12 62.75 51.94 93.03 49.09 89.36 77.41 98.92 94.73 25.86 10.77 68.99 16.93 55.07 99.99 61.74 9.23 0.00 69.54 10.83 84.57 41.70 63.41 48.91 11.33 35.92 38.45 3.68 57.61 23.30 68.01 85.56 65.67 80.07 7.16 61.82 21.64 18.16 73.84 9.11 73.76 44.49 5.94 38.49 97.04 25.39 67.20 33.14 67.62 4.27 0.08 54.26 11.75 82.56 57.56 99.21 -62.19 21.22 67.04 97.92 91.73 11.86 68.05 72.89 8.10 69.89 86.59 14.92 23.33 71.98 54.14 91.21 13.79 5.40 84.85 48.25 30.31 37.24 78.19 32.74 49.49 95.15 55.94 94.49 42.93 89.03 34.94 34.46 18.26 52.34 86.48 23.56 44.26 94.32 52.27 85.16 58.22 26.92 36.93 29.90 67.36 99.65 60.50 48.93 18.34 32.95 5.15 76.50 54.76 41.64 82.47 34.48 52.32 7.70 25.70 75.49 45.39 33.04 39.99 79.24 93.49 10.16 58.61 99.17 9.40 49.89 22.54 67.39 81.26 46.63 67.42 86.09 28.65 31.65 10.31 54.25 39.32 27.53 86.35 26.12 65.95 10.53 78.90 99.03 34.55 16.41 69.98 60.59 22.32 21.04 86.74 44.64 63.17 53.82 66.53 92.54 -4.19 55.91 81.44 60.92 83.39 59.59 86.51 14.88 16.38 43.77 39.29 56.48 12.30 84.99 95.02 91.49 16.84 54.56 77.75 97.55 14.23 37.28 89.55 59.75 95.26 80.32 62.22 9.79 51.49 40.32 62.63 97.85 6.72 2.41 97.30 70.76 13.19 31.95 21.71 6.13 85.21 35.69 97.76 21.55 48.53 22.61 33.53 58.59 8.50 5.52 70.46 75.24 96.26 27.00 3.03 32.58 31.14 14.71 18.66 17.42 16.52 80.20 9.13 93.90 71.40 74.33 7.58 56.59 5.29 22.17 47.86 26.08 77.10 98.66 44.78 79.04 66.42 70.38 48.85 58.39 98.48 36.62 21.13 94.39 6.48 95.40 14.24 68.02 69.35 32.00 13.06 51.57 75.56 90.16 26.78 60.52 44.68 54.36 10.16 91.39 -71.57 3.76 74.24 61.76 68.39 5.22 57.76 10.93 23.46 53.76 41.99 56.03 77.95 16.34 38.67 72.55 18.87 98.38 3.38 29.55 50.69 92.19 89.41 91.37 89.12 97.14 99.54 30.24 1.38 63.05 28.98 87.07 51.49 96.98 71.96 26.60 43.45 3.87 10.04 75.90 37.29 79.78 15.63 19.67 13.02 12.18 78.48 83.89 64.97 44.21 98.17 97.22 76.28 59.34 28.61 36.36 98.38 48.83 82.72 65.24 82.14 17.82 59.89 17.71 74.76 43.52 17.39 12.40 53.23 45.35 61.38 50.18 86.75 72.16 45.81 53.53 34.99 2.48 19.60 32.41 57.45 43.00 48.23 77.05 8.94 2.83 25.44 51.51 90.22 57.01 93.15 15.88 43.05 39.40 34.91 11.96 36.93 8.44 54.46 25.83 -20.78 54.63 44.02 31.73 88.66 62.80 71.22 14.37 74.68 95.61 18.01 19.86 29.76 34.52 21.22 93.68 12.54 77.76 31.65 37.49 80.70 12.07 74.52 45.50 91.20 75.04 5.95 93.13 10.87 87.47 93.67 22.24 85.78 70.93 92.36 80.98 77.69 0.03 97.49 98.16 75.53 90.17 75.80 57.75 76.34 53.13 47.68 98.73 59.78 23.11 22.44 36.18 30.86 48.77 13.16 98.52 32.21 79.39 87.95 85.23 27.62 83.58 75.02 81.81 45.62 82.19 78.74 0.72 26.87 17.66 92.24 99.26 90.74 5.23 12.75 14.55 56.47 60.57 51.42 21.20 92.12 42.15 78.94 25.34 23.89 0.70 37.76 72.57 21.12 65.37 0.86 95.38 15.07 17.39 75.84 0.11 93.85 36.69 85.59 76.50 -73.04 1.09 56.47 33.44 16.52 97.46 98.23 53.87 22.84 50.45 77.61 3.80 22.46 72.05 79.92 62.61 33.45 59.54 65.36 32.89 32.09 32.37 20.84 61.06 58.92 6.71 26.74 70.36 51.99 38.61 67.80 64.61 87.92 69.74 85.30 26.57 44.52 51.03 54.40 43.30 19.67 54.83 97.20 82.66 52.17 26.48 7.02 85.28 30.25 95.50 74.67 60.89 27.40 42.42 91.51 82.55 6.76 66.04 84.89 12.83 30.35 47.76 54.67 90.51 37.93 30.10 25.63 97.68 40.84 89.32 38.33 91.40 65.31 15.66 56.46 84.39 71.36 29.03 5.84 35.67 31.05 66.08 26.60 17.16 21.34 34.86 28.77 41.52 48.22 47.09 34.03 5.71 44.39 1.70 67.14 33.04 3.48 8.65 67.21 19.61 -7.15 64.07 8.40 94.00 82.88 93.32 32.03 19.43 23.34 66.22 61.61 88.81 61.88 91.99 44.94 81.59 60.52 1.34 13.64 75.83 51.66 50.15 51.43 53.44 26.33 59.11 29.28 94.29 37.25 0.18 10.90 13.01 30.74 14.01 92.01 50.99 98.73 56.93 34.10 88.07 39.92 23.91 67.64 19.75 86.74 13.96 46.30 84.32 17.15 10.94 41.98 59.32 73.36 61.30 80.41 20.80 47.42 41.58 95.20 43.79 7.39 88.15 90.02 29.07 60.17 63.03 7.19 97.83 61.80 52.94 55.27 24.66 42.52 95.83 75.12 35.93 5.53 18.01 2.92 37.62 67.87 83.95 74.88 25.03 59.59 42.68 37.11 89.34 83.13 36.82 32.71 40.96 35.00 38.43 76.34 26.03 86.82 35.60 84.28 74.99 -59.35 53.61 16.10 86.91 57.52 7.64 78.61 63.66 20.46 19.36 24.15 78.31 58.03 34.64 36.04 36.03 30.57 91.48 14.87 26.60 53.63 64.81 18.16 98.13 78.30 82.45 51.42 15.26 98.86 79.65 67.27 41.42 28.58 19.26 37.90 77.00 70.44 92.42 69.87 25.82 55.37 48.38 59.57 22.33 1.61 77.87 66.73 10.37 12.66 98.10 95.16 29.03 6.68 1.10 57.20 18.16 1.79 48.78 91.07 59.33 17.33 2.35 17.21 80.44 19.55 8.58 63.77 89.56 24.77 7.57 73.92 15.53 34.51 24.66 86.81 84.89 4.29 17.49 60.27 13.09 78.17 68.12 26.01 90.26 51.95 6.69 0.03 7.41 9.82 58.56 90.45 58.43 28.94 79.73 34.04 21.18 39.58 71.84 5.50 38.14 -95.58 7.83 6.67 38.56 46.59 79.76 98.38 22.27 34.40 37.23 2.47 62.36 65.24 15.92 34.82 43.45 44.58 60.12 12.26 68.18 63.37 89.71 45.96 81.02 59.05 74.84 7.30 44.54 60.54 55.54 49.53 37.42 6.36 38.24 86.34 99.34 3.47 51.54 62.61 58.32 27.56 57.77 52.35 61.08 43.35 7.32 69.34 32.35 65.34 99.16 21.57 15.38 61.49 59.43 78.32 5.20 42.73 3.35 11.30 0.23 37.42 90.30 22.44 43.79 96.29 62.42 12.00 14.60 36.14 34.37 32.81 97.91 15.93 14.82 50.63 12.60 61.14 94.21 82.12 75.34 37.10 63.81 68.53 82.97 98.70 67.50 1.53 35.26 52.72 43.89 36.58 4.17 3.22 98.79 84.00 81.10 15.37 50.68 45.24 45.20 -47.29 5.56 12.85 25.44 7.82 77.55 40.53 76.97 20.21 40.03 54.18 78.60 26.44 2.09 97.39 57.33 67.57 97.62 74.10 33.39 44.29 51.76 51.75 23.36 85.65 71.09 1.03 30.11 51.00 83.75 22.07 29.88 3.43 1.42 57.23 9.91 99.38 95.85 35.01 16.03 9.55 34.87 53.22 94.61 12.40 37.22 30.89 43.87 13.57 19.44 66.10 73.04 41.15 50.93 89.05 32.98 88.25 6.22 6.13 18.91 18.55 59.24 80.23 93.57 22.02 98.04 23.82 49.37 6.85 83.57 94.09 80.89 86.41 94.47 21.02 93.60 69.22 71.87 89.41 31.19 92.91 42.55 56.39 5.82 65.95 80.15 42.64 97.85 43.72 8.09 68.22 68.85 83.70 8.95 4.67 41.56 4.65 79.41 45.31 82.78 -68.07 67.78 37.85 72.80 88.10 90.85 5.55 4.52 93.26 71.22 67.69 50.51 9.03 56.60 39.72 66.82 72.33 11.01 65.74 66.26 47.05 27.69 1.93 30.90 29.57 63.11 6.23 68.71 67.05 64.13 44.39 18.37 13.26 88.95 13.44 89.84 7.21 96.29 61.96 75.63 39.27 6.72 11.23 38.40 72.87 44.26 37.39 32.88 52.11 20.66 29.98 10.63 30.11 20.17 49.67 64.66 63.15 61.85 3.22 94.73 16.19 80.79 95.86 45.65 35.44 29.63 73.28 75.84 97.15 53.64 49.91 2.41 11.45 46.65 86.29 96.65 30.92 33.94 54.30 74.14 64.34 53.55 81.09 60.18 15.95 19.86 8.19 38.78 63.09 13.14 45.64 98.99 61.95 75.24 97.63 42.62 16.53 21.96 31.23 27.77 -40.93 46.78 40.41 54.63 24.27 2.32 14.94 68.37 57.36 71.83 66.53 57.88 8.21 34.66 79.92 86.66 29.09 0.82 12.64 80.63 63.94 8.86 38.77 27.99 5.22 65.26 20.94 61.25 7.13 41.07 0.75 99.37 5.65 29.46 82.88 86.31 93.85 94.99 91.32 70.15 50.77 89.46 37.89 38.06 19.82 17.01 91.56 45.83 10.90 98.98 70.36 29.69 91.21 73.73 34.43 41.96 56.87 59.14 6.20 76.96 10.27 2.13 30.83 64.96 89.29 47.84 70.94 92.91 22.22 62.04 82.56 70.62 34.20 14.74 35.35 99.14 77.10 27.48 95.56 75.55 17.75 15.84 65.13 40.89 56.15 60.70 84.53 9.26 73.56 51.02 16.44 7.70 6.73 65.78 6.66 22.02 30.31 1.05 93.73 87.73 -39.16 16.05 74.79 70.90 29.57 82.19 76.80 82.16 34.62 90.33 25.44 83.10 7.20 63.87 21.63 34.81 6.44 40.40 68.10 83.15 71.11 55.87 60.88 34.54 44.41 92.15 84.97 11.20 0.17 28.00 15.74 97.72 52.38 39.38 10.07 53.34 89.17 13.84 15.59 76.32 54.68 8.79 56.95 45.45 31.31 42.44 52.50 7.25 88.79 10.65 51.25 90.81 63.11 94.34 33.52 88.42 83.20 97.76 26.02 20.67 16.80 29.13 71.78 30.12 36.35 92.19 53.21 14.85 39.82 82.36 25.69 28.65 98.23 2.04 63.77 89.79 99.26 96.44 90.78 89.69 85.81 91.98 3.23 40.71 68.63 83.21 70.19 90.43 2.92 89.95 37.25 14.57 93.63 32.34 34.64 35.13 97.40 58.88 80.32 43.80 -93.36 51.89 99.17 3.09 63.74 63.44 2.96 18.09 84.68 46.55 78.61 10.14 96.41 12.73 16.13 71.92 58.62 91.55 40.03 11.13 40.98 92.40 96.23 35.56 6.09 25.27 89.69 53.43 30.08 70.40 93.52 26.58 46.05 64.03 63.76 97.09 73.78 59.62 58.02 96.36 9.67 16.02 23.51 2.75 60.25 69.05 87.56 31.97 16.21 64.80 94.23 42.37 14.53 70.56 8.15 57.86 14.77 0.52 89.33 55.48 44.97 80.05 47.89 53.35 79.91 89.98 10.18 16.42 98.34 2.54 84.35 24.11 38.38 84.64 21.88 95.07 48.07 74.47 61.66 30.50 76.18 7.72 46.67 7.92 1.82 80.08 19.00 95.87 10.31 65.29 95.74 95.23 19.59 0.11 58.97 46.77 45.16 16.09 22.50 8.17 -32.48 68.69 81.08 88.03 99.25 45.46 98.50 4.59 53.67 97.08 25.32 24.15 61.45 55.75 25.43 54.29 31.73 31.40 18.90 98.83 64.22 93.76 5.45 4.90 1.06 14.71 60.88 36.89 35.63 32.60 80.46 90.06 40.38 16.46 17.24 94.85 97.68 5.21 24.34 62.96 34.32 28.86 17.87 62.62 23.26 72.72 38.30 88.45 38.25 14.75 76.96 22.39 5.63 2.60 84.43 57.38 73.36 66.26 76.92 19.27 66.16 20.85 61.68 9.06 93.81 51.03 99.34 81.68 9.78 80.92 60.12 52.78 1.63 75.19 37.27 1.71 11.64 41.96 81.60 92.26 15.29 32.64 52.19 27.66 5.80 89.81 83.92 31.03 12.67 60.54 14.34 85.76 42.34 23.14 99.83 54.56 55.85 74.06 8.98 39.91 -7.49 15.58 1.84 55.07 99.57 35.15 32.12 73.08 30.13 28.13 47.84 76.21 93.84 21.92 63.06 97.09 98.75 55.12 45.07 40.84 97.35 52.31 64.62 50.82 45.64 94.22 77.55 36.28 26.65 23.57 15.65 77.72 0.81 95.79 25.42 71.93 42.92 3.10 9.30 37.49 84.51 1.27 62.16 7.23 16.03 58.05 62.03 38.03 30.65 81.27 62.74 56.00 36.09 63.29 13.04 8.08 82.31 80.96 77.99 16.56 56.10 62.46 62.81 96.95 37.48 4.87 37.89 31.48 77.13 0.02 46.89 79.94 39.49 96.99 55.37 21.42 18.60 1.27 48.97 5.80 98.33 32.19 79.13 86.78 34.54 18.23 38.14 44.61 44.48 71.47 93.56 15.42 96.23 72.72 68.98 30.31 85.92 67.97 51.10 52.09 -17.64 37.35 88.71 41.43 68.16 68.50 32.67 78.52 13.93 75.80 1.00 64.19 25.42 16.95 51.55 1.40 86.91 6.98 48.79 90.29 16.14 63.30 99.28 2.83 47.15 10.57 68.32 46.33 14.24 89.61 28.58 97.92 41.95 98.77 55.52 80.24 86.28 42.01 63.46 86.96 13.00 14.22 55.24 14.13 1.10 49.79 87.99 58.59 8.58 69.79 92.62 62.35 8.43 67.25 93.46 64.69 36.95 8.53 5.00 21.25 83.21 26.74 47.31 9.03 53.75 91.84 42.95 6.00 98.40 64.78 60.24 14.64 12.60 81.13 93.82 89.03 63.22 89.15 9.38 25.36 27.59 56.58 44.72 51.54 86.00 70.20 91.44 70.47 77.34 45.32 36.66 27.73 7.83 90.32 68.72 21.42 53.42 45.88 61.27 31.80 -7.02 38.42 59.21 98.43 9.20 66.33 31.66 95.10 66.56 27.98 23.91 68.89 52.08 11.36 5.33 75.74 38.19 43.74 25.50 31.89 25.87 51.21 88.95 72.56 25.83 1.81 35.93 25.48 52.22 42.18 93.56 64.93 38.61 4.96 92.31 93.53 50.03 5.79 64.15 75.27 14.70 31.67 29.36 55.64 86.80 14.28 85.74 90.99 82.56 54.80 32.50 84.35 44.10 88.30 87.99 44.48 19.68 44.50 93.84 45.36 42.28 90.96 79.77 36.51 58.90 98.21 5.77 65.70 28.58 53.71 7.42 0.87 39.96 39.52 18.07 61.83 37.25 20.20 78.19 60.26 13.24 98.94 81.33 34.48 58.43 68.74 68.45 3.51 34.81 79.16 75.57 19.80 69.44 21.18 15.48 17.79 31.02 75.54 4.42 16.18 -74.29 27.49 49.83 26.35 13.61 1.68 36.98 4.86 23.18 22.54 60.11 9.23 61.21 57.17 53.81 87.29 13.97 73.98 98.71 34.73 79.35 29.88 0.95 39.21 67.08 81.08 3.70 49.97 86.80 76.56 1.29 96.16 76.73 83.56 22.33 95.77 89.78 24.88 49.13 75.95 43.11 76.88 10.75 19.41 90.26 63.32 31.65 56.62 20.00 17.48 63.73 76.78 26.80 1.49 27.89 10.61 95.39 25.44 28.54 93.74 21.32 26.96 14.38 99.17 16.81 32.80 88.75 84.61 1.89 90.99 75.25 59.62 45.90 80.30 96.48 2.70 16.51 73.81 17.80 63.60 12.29 2.63 97.16 30.58 46.27 88.74 94.74 44.60 44.83 2.85 61.66 88.41 60.25 73.07 21.17 88.00 61.29 2.03 81.74 0.93 -1.93 83.10 61.44 6.13 87.14 68.13 89.82 88.52 82.46 49.44 83.82 10.40 74.44 76.73 3.83 61.78 29.88 41.10 65.84 8.88 93.66 19.08 69.24 23.45 19.86 40.27 92.37 19.63 18.85 72.18 67.69 99.92 18.28 89.12 97.47 48.03 40.04 42.25 26.09 13.61 32.17 68.91 6.99 57.20 44.32 94.37 25.06 24.29 17.34 29.73 37.59 89.05 72.91 3.12 99.61 7.61 24.24 9.42 11.79 80.22 99.00 30.89 4.97 0.52 57.20 55.57 69.71 0.61 75.89 52.40 99.64 91.58 73.90 20.61 99.03 77.01 81.45 68.85 13.41 99.76 37.20 86.04 22.73 5.19 72.01 31.74 10.23 63.87 19.28 72.78 65.77 2.73 62.45 64.00 4.49 27.03 29.12 64.51 51.95 20.10 -53.29 72.48 26.26 74.84 10.46 51.15 36.48 36.02 87.01 69.94 39.17 21.77 93.04 16.95 66.72 98.49 95.88 33.67 27.14 27.38 35.14 70.70 33.49 5.24 8.81 65.72 19.64 55.95 15.35 14.37 57.99 17.35 61.16 20.55 74.91 2.21 41.20 10.40 42.28 66.07 99.22 87.60 55.33 73.93 40.70 0.34 4.00 25.09 93.77 69.23 10.70 84.34 11.03 37.39 3.00 35.66 99.45 7.06 45.21 71.78 49.45 40.49 42.44 96.89 36.02 4.67 76.96 29.95 42.99 77.49 62.99 50.31 50.31 18.97 23.67 2.43 17.64 93.11 63.53 23.23 21.03 61.67 43.36 21.20 31.99 59.78 87.86 71.44 30.50 10.57 45.95 51.66 95.19 43.03 79.57 40.42 69.57 72.10 96.14 88.94 -37.98 98.11 6.53 17.38 97.68 13.94 45.98 5.27 58.13 61.95 83.87 34.62 76.58 41.46 99.46 59.06 89.59 72.04 35.52 7.48 59.82 62.15 14.38 41.24 88.40 9.00 75.09 58.60 26.31 88.56 31.42 28.95 52.52 12.39 62.83 5.66 70.29 59.61 26.03 61.98 45.04 8.94 1.04 74.38 42.04 66.39 18.13 89.41 14.14 35.15 2.92 26.98 18.91 39.05 4.71 11.21 90.67 8.14 80.41 52.65 88.38 26.74 15.09 83.30 87.58 63.19 14.49 36.37 90.66 83.22 83.30 78.63 29.31 85.27 95.59 67.34 43.88 52.70 56.29 51.41 57.42 21.66 76.96 77.77 74.27 47.63 46.52 33.46 48.66 69.43 2.22 93.83 98.92 43.92 12.96 17.64 11.19 71.55 10.00 84.63 -4.34 18.65 23.48 29.51 19.37 34.21 8.30 82.05 3.34 83.27 76.62 5.14 44.38 93.19 24.03 96.11 3.06 39.75 64.93 0.61 13.00 60.28 0.05 26.49 26.09 36.09 8.51 64.21 61.95 28.76 60.50 33.08 60.42 65.51 55.18 78.44 86.87 50.74 76.21 16.13 90.84 75.94 79.83 86.27 81.90 20.13 14.73 46.28 1.02 58.52 73.57 12.06 50.18 61.99 33.57 22.12 68.52 66.77 14.19 58.56 81.90 13.38 26.87 31.73 34.51 27.12 41.89 5.68 9.30 83.51 6.54 47.80 87.79 87.09 86.69 70.63 13.73 25.83 75.28 21.92 48.17 14.52 87.56 80.11 58.73 68.49 67.26 92.75 36.43 41.89 54.10 13.02 84.72 63.44 12.10 50.27 13.87 53.03 29.79 33.79 -53.96 92.72 94.81 74.53 8.65 97.03 17.57 62.13 75.62 43.71 12.28 2.95 33.31 61.66 8.56 12.09 92.79 25.64 36.42 32.75 78.61 17.17 16.13 3.24 9.36 15.07 16.65 49.72 16.84 21.82 78.64 71.81 76.41 47.94 7.26 20.31 83.16 14.99 5.30 67.20 96.35 10.92 5.24 63.75 13.23 61.42 69.92 33.04 84.72 98.31 25.33 15.77 88.42 92.28 67.79 89.57 39.20 74.86 53.32 91.67 52.06 13.59 4.87 51.77 67.52 13.79 9.78 67.56 48.07 66.54 16.97 71.49 82.91 50.87 91.35 67.06 71.13 6.41 79.68 40.23 14.87 16.86 57.06 95.29 10.93 59.80 58.70 85.97 61.85 87.29 91.72 14.73 90.34 70.39 80.86 48.69 91.12 42.98 91.08 51.51 -29.14 29.75 37.47 95.91 12.32 58.34 89.33 32.12 54.97 32.41 82.94 8.31 23.70 4.80 55.73 49.05 50.95 60.97 24.75 20.33 54.44 24.46 64.42 11.17 75.05 55.78 76.36 46.93 47.07 8.22 37.43 26.53 14.86 68.52 27.89 38.19 35.97 78.41 54.55 34.09 99.20 36.60 38.14 33.34 39.81 84.13 13.39 54.16 60.49 74.74 80.39 14.42 67.53 81.84 52.72 73.86 15.78 30.78 60.76 39.97 57.04 69.78 2.96 82.18 39.07 51.95 2.54 90.59 67.58 38.19 96.50 39.88 82.65 80.21 13.07 46.41 38.97 3.89 29.12 38.09 33.18 12.78 1.52 62.09 7.90 59.14 32.85 41.02 70.85 84.78 28.43 25.93 93.47 33.35 91.03 37.48 19.19 90.19 25.85 71.34 -11.54 12.85 67.33 24.50 23.82 94.68 75.21 81.67 70.99 26.30 57.60 63.00 62.30 73.72 7.25 8.62 14.54 2.94 44.89 73.31 41.35 66.20 15.49 10.18 21.27 86.43 93.66 98.25 53.00 17.13 38.88 53.50 24.64 16.39 12.77 18.31 78.11 45.10 73.18 34.89 40.62 2.24 62.86 40.80 3.63 21.57 85.30 55.34 83.49 73.77 13.00 49.66 78.42 61.56 92.23 41.67 25.94 40.77 11.56 27.20 28.76 67.84 38.57 74.75 85.69 66.10 40.56 51.00 93.99 15.21 81.81 44.02 81.70 55.17 86.23 87.41 56.07 78.27 22.36 33.07 20.03 8.59 20.18 16.25 60.89 47.81 64.77 51.03 24.21 26.11 38.09 32.59 22.55 75.41 39.14 65.01 11.43 7.54 2.89 15.33 -52.41 43.37 12.06 30.77 24.99 90.47 57.60 98.78 2.24 11.00 5.16 95.58 51.45 52.87 0.21 6.45 59.73 92.60 96.08 68.68 23.29 13.24 73.34 93.22 45.27 78.93 54.48 51.82 66.56 37.38 79.88 64.43 43.82 63.34 11.27 15.63 32.92 59.18 46.99 30.69 96.33 30.20 87.21 56.47 39.38 23.36 38.16 59.04 29.01 96.43 44.93 1.94 89.03 26.85 48.52 44.45 76.94 94.58 82.52 68.26 25.29 23.55 32.66 33.74 72.03 4.32 8.97 26.65 43.16 35.58 98.75 91.80 23.13 72.34 99.19 99.01 20.95 75.02 96.46 79.23 24.45 29.48 14.69 88.35 74.16 28.50 76.91 99.12 32.97 83.34 80.30 79.55 10.07 69.42 62.24 4.88 21.86 46.42 89.49 16.43 -88.95 21.90 44.74 62.31 84.42 70.22 20.69 84.25 2.98 93.62 67.45 45.64 18.85 32.72 89.59 78.58 55.95 79.16 64.84 90.39 64.04 11.45 57.11 38.46 45.83 83.70 59.03 33.07 2.82 66.99 53.45 76.03 33.21 25.94 22.66 50.13 95.62 48.04 86.62 76.95 41.90 17.00 92.30 98.45 21.26 26.90 12.40 63.27 92.80 35.77 87.55 99.42 74.65 80.72 46.37 10.36 61.06 32.46 49.01 76.93 86.13 82.80 58.16 83.42 30.35 91.69 14.14 58.99 44.50 25.05 82.65 80.22 34.43 54.87 20.83 15.01 44.71 3.27 78.99 48.74 51.38 98.91 23.50 42.16 67.81 33.86 87.71 82.14 78.26 60.82 38.34 9.11 78.21 85.60 94.37 97.77 57.45 14.30 46.89 57.21 -33.23 33.46 9.18 48.01 59.58 91.48 60.43 87.42 42.57 21.61 44.31 52.84 46.65 95.60 8.05 44.04 69.99 95.50 67.11 87.60 65.74 93.28 49.71 80.91 30.01 47.95 75.74 3.72 91.36 31.27 0.10 16.60 8.45 52.73 95.89 29.48 83.31 5.49 69.21 20.55 88.34 37.40 74.73 84.56 40.69 72.62 43.92 43.20 93.81 76.61 52.22 42.27 28.39 10.67 2.46 73.65 7.58 62.51 61.10 65.53 57.34 1.73 19.74 0.23 56.90 8.05 30.50 71.90 92.82 48.67 54.22 77.47 8.31 79.31 7.83 34.03 32.35 44.79 35.78 88.86 8.32 69.63 0.66 93.53 5.48 26.62 51.51 39.19 16.51 40.85 90.21 38.36 59.84 47.67 46.96 1.46 59.34 51.34 65.15 75.14 -55.50 75.19 80.91 23.58 8.02 14.55 29.29 90.53 35.72 35.38 57.37 22.60 83.62 82.87 22.73 43.95 9.29 34.47 31.64 74.10 51.00 10.34 42.11 22.76 40.09 69.59 74.76 11.77 90.37 42.73 52.68 41.26 33.47 53.29 13.06 13.42 38.81 30.32 46.13 44.62 19.89 64.35 39.92 6.84 46.46 8.51 5.12 96.22 80.59 78.94 22.69 15.09 56.76 41.04 87.79 3.49 59.84 67.46 75.56 82.20 2.05 68.89 56.45 3.92 8.01 5.50 0.93 51.71 21.98 53.45 76.84 10.50 59.56 45.26 65.09 42.65 60.80 18.53 24.68 82.71 83.57 27.44 67.36 89.67 50.21 30.84 12.54 86.87 96.97 85.40 39.64 85.93 84.69 32.40 25.56 25.36 86.20 49.41 27.81 62.70 -7.72 87.46 49.71 85.87 10.67 58.35 90.54 4.24 38.87 93.31 59.58 8.65 25.86 83.69 70.10 60.79 45.54 6.85 84.94 18.99 52.70 50.37 14.60 38.60 1.06 8.93 55.40 15.96 44.25 46.44 5.82 82.36 0.01 41.31 69.47 28.43 15.62 95.13 28.20 77.49 82.56 63.29 9.90 48.77 9.50 59.29 84.30 89.89 15.32 75.01 1.05 78.33 21.39 89.36 34.32 0.01 29.69 91.43 68.78 61.72 52.63 8.34 22.89 42.38 40.26 27.18 40.02 63.89 44.71 1.21 9.09 51.59 66.09 78.15 84.93 85.46 86.03 55.12 12.33 75.41 1.22 16.11 39.72 75.15 65.55 19.22 42.57 12.54 15.25 57.87 95.67 96.52 31.91 85.50 55.56 32.62 18.16 61.41 66.20 30.83 -24.43 25.65 98.62 8.48 33.64 95.97 27.77 54.83 91.92 82.68 39.90 45.04 47.78 31.77 46.38 23.52 11.74 83.70 62.88 36.55 5.76 15.49 87.86 27.80 82.63 2.08 0.55 92.34 12.24 67.35 52.08 57.40 58.10 73.82 33.33 61.06 40.13 12.02 59.75 81.95 6.85 35.28 44.23 98.85 17.54 89.37 37.77 52.25 70.33 11.55 18.29 13.10 98.74 81.64 1.95 45.37 64.38 64.16 49.18 89.30 63.88 84.83 30.83 53.36 88.37 80.69 31.79 56.32 56.50 93.02 28.08 89.77 15.93 65.32 67.22 46.28 64.86 4.41 52.19 28.38 65.58 20.14 23.94 32.64 82.35 49.44 86.39 64.73 1.68 30.63 37.26 97.76 64.20 80.70 78.81 49.38 17.57 74.28 48.37 17.17 -14.13 38.96 15.22 40.35 88.75 0.13 48.43 28.75 49.66 14.78 38.69 33.00 47.59 41.29 57.11 51.15 31.40 74.60 72.66 89.48 28.55 24.91 8.92 26.90 44.51 38.50 84.20 66.18 31.04 97.17 53.62 57.55 45.07 43.02 74.03 67.43 89.39 82.50 22.31 82.17 44.99 48.67 76.58 78.21 39.45 93.93 7.73 3.62 42.46 25.09 75.87 36.61 6.58 87.60 59.93 97.14 48.36 59.23 69.20 37.80 89.27 0.71 3.81 77.55 3.56 99.18 87.29 4.86 20.01 74.24 7.78 54.43 83.23 58.53 58.74 79.43 25.40 78.71 58.17 95.88 52.81 45.93 84.82 74.66 40.20 77.68 32.62 72.02 45.55 36.27 0.13 18.15 45.44 75.73 94.19 95.95 30.93 40.51 33.80 28.39 -33.76 24.65 2.95 34.17 37.55 48.38 23.85 14.97 76.33 13.11 25.52 96.77 28.23 25.70 92.21 92.32 99.95 41.64 34.03 37.97 11.08 14.48 42.34 77.87 41.04 71.27 19.71 46.75 83.14 73.00 66.13 64.01 68.17 45.51 65.89 72.60 49.26 97.96 60.78 53.31 71.03 5.52 35.41 3.02 69.55 5.28 4.11 69.57 2.69 1.78 29.93 32.96 28.00 86.46 91.82 10.34 25.34 62.10 73.21 35.20 93.37 88.42 90.37 5.17 15.71 96.17 28.62 31.33 42.75 0.67 26.38 85.53 30.50 53.86 1.49 12.18 83.79 71.62 33.60 97.91 61.06 33.30 42.91 82.10 95.04 54.11 51.45 92.28 97.80 37.90 91.79 10.20 64.96 50.94 70.48 13.58 99.03 8.74 18.12 31.36 -89.69 17.18 29.04 21.73 72.00 76.27 64.80 21.24 90.99 41.49 5.40 61.97 39.32 99.99 10.02 80.16 4.41 43.81 39.32 13.26 92.90 44.20 14.39 62.20 5.53 42.95 90.07 89.75 5.41 94.43 49.55 25.40 55.94 84.44 98.91 41.81 28.40 28.17 42.86 64.45 11.49 75.01 15.06 28.83 5.96 0.90 53.82 57.57 41.53 87.87 19.46 58.07 34.44 22.19 11.04 41.70 33.57 60.15 66.55 74.35 50.51 8.21 21.09 37.11 94.27 17.69 56.34 58.05 57.95 85.02 94.38 61.89 21.87 59.09 53.79 61.75 20.95 97.03 58.88 69.70 52.44 47.78 30.22 61.82 62.22 3.44 27.01 94.79 6.27 30.68 30.53 66.70 75.79 95.92 89.60 20.10 29.27 7.42 29.77 45.48 -5.59 28.54 37.31 34.84 95.62 90.80 4.78 25.28 63.40 48.69 36.07 97.04 41.54 2.36 61.25 74.97 73.65 59.25 90.92 58.48 16.19 86.19 80.01 46.21 61.82 97.20 91.98 88.64 5.42 65.56 81.36 48.95 39.33 17.20 68.81 51.10 60.25 57.49 10.69 52.57 33.70 60.08 82.61 73.30 19.49 90.14 93.30 85.13 7.74 51.86 24.87 79.98 30.75 60.40 47.49 64.93 50.39 15.19 6.37 21.35 99.84 73.52 59.03 76.74 25.79 51.20 25.74 22.24 26.76 14.00 73.92 12.85 28.67 16.99 54.92 15.06 76.02 90.12 75.41 10.38 41.17 53.53 17.72 98.85 84.88 67.84 16.35 20.59 56.72 35.26 54.72 76.46 7.32 34.48 58.10 3.80 44.40 46.17 73.20 9.11 -23.23 97.64 7.86 93.44 32.81 94.77 87.87 82.19 45.96 61.74 23.72 24.58 29.59 93.55 98.28 59.47 98.71 15.55 46.63 66.26 97.27 67.95 31.11 10.27 12.21 58.61 94.51 10.70 99.32 59.72 46.36 24.76 32.47 26.86 37.03 31.52 30.18 35.86 30.53 12.93 95.51 29.03 8.29 6.28 6.45 67.24 64.91 69.27 22.41 21.99 28.87 62.81 86.49 4.51 50.46 77.85 69.46 96.43 7.44 91.52 33.20 74.49 41.28 72.19 35.71 99.20 72.01 93.97 37.96 32.57 0.80 0.21 65.04 51.17 17.63 86.63 94.89 42.49 49.66 32.71 10.07 7.27 5.79 92.79 12.21 72.74 40.61 41.17 6.14 80.94 86.89 78.30 25.72 31.68 76.51 70.32 38.17 2.76 57.73 66.70 -46.04 68.25 58.01 46.33 85.68 1.81 65.32 42.67 12.80 75.68 6.05 41.87 28.29 51.70 35.22 88.64 51.56 90.97 26.98 70.31 74.98 30.47 82.99 54.73 8.36 80.00 1.05 96.79 53.74 74.90 69.40 31.39 87.14 35.21 94.74 59.41 96.33 56.98 71.64 15.39 16.88 53.40 27.87 1.21 62.58 13.47 20.09 57.58 1.01 43.50 41.37 9.78 57.50 87.45 82.88 51.65 64.17 23.68 82.72 78.38 37.57 16.78 19.11 25.51 93.35 78.78 50.21 63.67 87.00 33.52 34.43 17.34 31.00 34.52 18.91 74.52 75.69 75.43 69.80 71.56 33.61 82.69 26.43 66.94 48.72 68.45 87.04 74.56 82.78 34.48 47.32 19.89 5.06 8.89 81.38 66.07 52.61 38.16 41.27 22.54 -25.16 5.60 71.11 88.93 94.01 41.46 17.66 30.72 89.17 12.14 55.17 40.78 36.14 39.31 33.75 99.51 74.38 42.62 46.39 39.12 8.94 37.71 59.44 52.93 79.23 59.57 74.57 75.42 28.79 32.04 47.84 27.89 11.42 7.21 24.25 99.53 3.94 98.96 82.02 62.06 55.63 85.18 51.31 57.18 96.19 50.80 99.36 8.45 29.46 75.96 77.15 87.17 22.42 55.12 98.46 49.76 32.77 21.37 30.05 43.00 87.20 85.28 2.47 2.14 75.45 55.76 23.26 58.62 42.37 58.38 61.10 87.26 5.87 79.29 24.53 27.84 80.94 13.75 61.05 10.54 13.91 91.18 74.49 94.73 31.72 58.57 78.39 25.89 90.12 48.74 91.26 72.00 97.03 0.59 68.04 6.18 42.46 58.08 82.24 61.12 -78.17 2.45 64.23 37.29 87.43 53.03 48.13 45.82 32.84 58.84 28.04 40.52 89.90 0.28 90.34 24.53 50.25 78.50 3.72 88.36 63.67 10.81 12.94 79.03 18.09 37.90 55.48 60.11 49.19 30.52 99.06 73.47 16.61 5.34 29.74 60.25 13.12 3.43 49.82 82.14 45.72 32.35 48.02 40.13 23.63 31.56 30.97 7.89 91.34 43.00 92.87 47.05 63.67 67.31 98.63 21.48 85.93 9.07 66.40 10.41 32.25 14.38 53.49 10.35 2.86 88.53 71.49 87.17 87.38 2.38 93.34 82.95 87.40 58.63 61.26 33.69 68.05 11.52 22.62 19.77 30.65 98.99 85.99 94.66 44.51 90.08 58.39 26.91 54.74 20.81 79.72 63.41 8.38 32.73 33.10 2.36 64.82 99.03 87.82 61.36 -34.29 18.87 71.91 76.37 48.15 24.50 47.14 65.27 78.71 69.50 65.94 82.03 15.88 87.63 77.42 89.01 60.11 48.23 67.34 72.57 35.64 39.27 4.40 41.46 17.23 49.91 91.61 72.72 90.91 73.64 7.89 5.63 76.13 17.82 94.87 44.58 25.88 72.94 11.40 58.14 96.17 66.14 80.43 59.66 73.15 78.87 62.25 88.15 99.12 96.35 4.91 21.39 50.04 69.63 11.73 78.66 94.26 46.53 99.87 7.18 43.85 82.02 76.18 48.51 64.56 9.03 46.52 92.09 93.57 37.33 39.80 11.62 60.76 29.55 72.44 94.87 98.23 43.04 51.72 20.70 4.69 52.01 51.53 37.61 71.66 8.19 98.47 66.77 86.68 36.09 82.12 53.41 81.67 31.46 9.07 52.82 29.35 86.54 75.58 88.88 -65.99 81.52 93.57 14.32 31.31 2.08 21.50 50.82 68.43 77.88 77.27 59.21 62.85 59.50 42.54 49.72 31.09 62.40 76.36 43.18 15.91 58.05 57.02 57.14 20.96 43.90 41.14 23.76 58.53 3.98 87.51 61.18 20.50 8.45 58.13 80.90 28.32 3.84 0.60 22.97 95.69 29.36 47.37 69.82 60.20 84.87 28.50 64.02 44.44 45.83 88.69 84.60 75.67 19.96 18.29 37.76 74.49 24.46 25.78 94.08 19.03 16.07 93.65 34.42 93.48 40.94 52.77 71.93 55.16 35.19 25.76 81.61 60.69 97.12 48.69 61.50 41.80 86.85 27.72 89.26 57.51 32.95 57.98 78.88 93.55 93.31 35.03 75.59 34.55 48.42 8.92 4.75 18.12 4.30 89.46 57.67 52.26 19.43 90.82 74.57 -70.42 39.17 53.23 21.14 49.64 77.80 70.02 3.05 52.37 53.27 68.39 33.69 28.47 0.23 63.72 24.29 1.91 54.78 8.72 78.27 91.12 31.03 17.02 97.28 20.08 79.26 99.62 19.24 16.52 88.23 70.77 23.53 3.16 91.54 98.96 87.64 5.08 67.91 96.89 21.84 69.93 6.18 57.78 10.19 34.48 8.88 73.35 18.16 49.12 97.74 71.97 19.71 14.58 72.88 1.67 17.12 47.91 52.92 99.58 19.49 38.26 15.64 65.66 91.72 18.55 25.86 42.11 99.73 31.25 73.12 58.53 23.92 29.76 15.58 72.23 13.36 81.90 97.89 2.71 43.44 71.37 95.21 59.77 63.20 56.90 5.46 17.19 77.28 24.63 46.56 57.20 72.91 37.01 18.43 86.93 11.46 7.56 8.24 35.78 28.35 -31.65 66.86 30.09 30.95 42.60 54.13 78.41 47.35 93.51 13.27 95.02 18.94 16.23 94.00 1.46 75.53 85.35 30.88 52.04 20.57 19.19 38.92 89.28 74.31 5.69 77.29 37.18 57.26 98.05 19.45 67.24 25.52 5.05 89.72 74.99 92.45 56.58 15.20 74.51 83.55 82.88 56.21 59.50 38.60 38.79 41.76 20.36 50.45 3.24 46.37 14.25 47.80 27.54 64.73 27.54 51.90 86.67 90.27 6.16 32.05 25.46 98.23 72.61 10.21 30.89 73.82 24.41 23.91 55.99 70.72 4.12 29.67 46.59 4.03 58.57 27.44 38.28 8.37 25.12 9.04 73.68 86.21 7.14 16.71 17.09 35.70 19.23 0.25 22.57 27.20 29.39 60.40 93.79 3.67 47.85 54.63 4.66 34.76 31.29 45.42 -29.14 66.30 76.51 29.13 47.84 28.58 56.79 28.66 37.56 72.83 71.10 75.54 81.50 9.81 73.64 37.55 69.21 99.37 65.80 70.20 53.95 53.11 14.98 31.71 46.24 39.79 24.70 19.07 15.82 18.15 61.93 59.96 77.85 57.86 81.78 58.22 7.81 23.14 51.57 60.20 25.01 73.65 28.79 11.32 44.70 51.84 68.86 67.06 9.65 17.93 23.88 17.43 93.78 22.85 34.71 89.34 33.00 92.63 8.88 29.20 5.14 74.25 31.07 48.40 58.89 8.15 10.29 58.53 99.80 28.57 80.51 71.52 52.53 63.42 70.43 71.76 97.07 29.37 7.08 7.65 1.60 38.63 21.86 5.53 85.57 32.16 52.80 12.44 28.72 38.96 95.62 6.48 57.69 19.22 1.69 18.73 89.36 36.95 90.99 73.27 -83.89 62.08 8.72 38.51 52.82 13.26 83.78 64.65 23.98 28.23 55.22 69.90 96.81 67.75 27.06 55.14 40.02 15.45 7.84 58.88 3.43 65.43 79.57 25.18 9.07 83.53 69.85 36.03 82.71 88.35 62.33 98.68 42.95 47.06 44.56 53.51 13.37 54.88 36.84 15.33 33.50 39.43 60.14 61.74 20.51 37.09 69.65 97.33 75.10 25.70 75.25 37.99 80.05 84.51 92.96 28.54 26.92 84.37 62.07 8.01 84.84 44.91 56.16 78.09 16.85 61.57 31.38 79.01 6.49 53.65 1.40 59.65 58.41 58.71 59.07 71.45 48.43 81.89 59.49 42.40 24.85 57.47 98.41 47.74 54.04 49.44 29.98 32.48 47.23 46.21 88.90 87.45 10.19 22.98 27.81 49.60 73.52 60.61 85.68 78.14 -22.37 25.62 23.88 44.27 48.15 42.17 90.89 18.19 60.26 10.24 55.24 94.78 54.47 23.02 87.73 83.05 72.65 3.98 91.87 57.34 55.61 16.61 59.67 13.79 81.67 67.58 92.66 12.26 60.22 52.01 45.99 4.43 21.91 88.77 17.33 82.15 5.86 94.64 96.71 74.55 73.22 8.75 29.37 29.96 8.95 12.72 48.09 52.03 97.68 10.79 0.87 22.92 92.86 5.84 19.47 5.63 68.62 72.36 38.39 58.02 24.27 19.77 57.82 13.73 81.77 1.86 73.38 96.66 51.02 31.27 20.25 49.93 94.83 81.46 10.84 9.94 10.38 11.09 39.41 87.96 73.73 2.03 84.06 34.76 13.07 94.52 55.43 32.30 95.18 25.85 36.50 94.72 59.54 40.63 29.21 8.61 19.36 66.47 19.59 90.66 -99.56 53.75 85.88 20.24 41.11 30.79 90.39 45.38 25.06 68.53 82.43 98.05 79.86 3.55 57.25 87.07 18.13 54.13 59.18 15.67 88.81 1.30 19.95 40.51 32.62 2.39 62.18 77.04 47.72 38.55 4.50 69.39 48.79 54.35 29.15 55.64 50.10 62.72 52.70 42.97 50.98 75.49 40.39 86.62 74.94 51.69 52.14 54.93 15.59 84.11 43.86 59.87 69.61 7.61 85.63 91.69 14.75 79.45 18.97 63.24 11.66 32.89 85.01 12.24 43.29 20.80 13.25 97.58 89.74 86.61 53.34 95.23 83.04 87.79 22.92 73.07 34.57 82.75 54.19 50.56 51.41 13.40 47.66 39.98 4.86 99.59 12.49 35.12 96.25 79.02 2.72 72.10 75.29 82.55 57.51 91.97 47.76 60.69 86.91 85.50 -24.75 45.88 95.34 66.99 26.86 82.21 32.27 77.42 23.77 93.42 14.61 18.59 70.33 74.07 95.17 77.02 51.19 28.71 82.42 31.85 49.72 92.93 82.18 15.32 19.94 58.61 22.89 48.47 66.28 34.65 95.35 28.49 46.50 65.44 60.17 15.98 12.94 19.06 35.02 56.66 8.39 3.25 67.39 54.51 1.54 60.53 80.03 12.31 78.72 49.03 37.08 72.74 28.27 49.03 47.94 63.33 7.90 69.41 64.75 44.54 49.13 73.01 22.44 81.27 80.12 93.42 33.07 26.06 34.30 86.08 12.84 37.72 84.36 99.04 15.31 90.42 26.69 70.97 10.09 86.92 46.83 80.71 92.04 36.26 14.79 11.00 32.65 85.53 79.11 26.01 34.93 97.71 2.04 4.73 9.55 13.48 6.68 79.63 73.54 3.25 -94.51 44.14 14.98 39.48 94.41 11.76 81.47 64.23 43.28 80.71 0.95 2.60 13.38 24.43 40.94 65.00 13.95 1.15 10.75 71.88 39.73 95.44 68.60 33.96 91.33 11.60 17.03 30.44 23.76 54.28 57.90 97.81 18.98 65.53 24.37 15.92 20.00 18.58 24.76 67.50 18.21 3.61 81.20 56.51 74.34 45.90 42.41 90.07 4.06 82.02 55.97 82.75 33.26 14.51 52.23 16.41 91.56 49.54 28.73 77.14 52.11 98.17 33.96 34.36 54.71 87.52 95.42 77.64 61.38 27.04 55.59 41.10 13.79 7.98 46.33 68.95 75.90 60.35 79.07 0.19 28.90 11.16 76.72 18.64 79.08 84.17 19.78 49.01 89.36 82.47 16.33 16.83 4.47 58.31 21.91 79.62 64.52 63.94 57.78 6.04 -8.15 97.33 41.04 19.84 89.24 31.81 70.00 96.84 10.48 75.75 54.75 0.24 21.06 22.75 38.22 10.08 33.68 58.61 18.00 62.02 90.64 80.58 30.80 91.22 73.25 11.36 84.11 34.21 30.05 30.88 43.64 56.02 86.37 63.45 10.74 40.90 29.27 71.12 11.60 2.37 16.37 46.88 64.73 72.54 62.43 93.08 97.80 72.49 67.41 1.68 12.06 77.64 34.49 6.65 77.70 12.92 96.97 80.88 93.53 4.88 45.70 25.77 28.53 11.17 78.13 16.02 32.83 52.75 24.23 50.50 20.04 58.56 69.43 88.78 55.66 33.46 12.95 32.99 8.43 39.99 58.02 47.21 8.34 78.88 1.80 11.44 41.75 88.67 42.26 53.41 24.74 43.67 33.59 64.26 15.65 76.53 98.10 77.03 97.50 42.72 -88.46 7.88 7.55 88.91 78.66 29.35 16.42 93.65 56.25 28.00 32.69 42.16 32.58 76.10 92.18 33.73 45.18 42.26 12.67 32.29 59.15 90.62 98.28 23.44 53.16 72.58 41.42 23.36 86.40 68.57 33.90 17.84 92.17 8.43 94.83 98.38 44.03 0.93 29.97 85.03 1.91 52.67 64.02 50.17 18.26 73.45 24.63 4.45 54.21 27.05 19.90 35.64 28.06 80.45 56.32 87.18 29.65 7.18 52.38 20.02 71.98 46.71 21.95 86.83 86.45 54.06 74.57 22.76 48.68 32.90 45.25 24.04 80.25 88.68 1.18 66.61 44.72 43.54 70.12 8.66 15.35 22.51 24.53 38.92 41.82 2.83 35.06 73.78 94.92 55.31 65.42 4.86 10.88 56.52 23.11 49.44 61.09 24.56 78.18 8.18 -65.59 42.11 90.16 64.16 79.39 53.05 85.96 93.95 45.50 4.48 66.14 84.77 67.33 47.52 30.85 99.88 9.68 5.57 4.07 59.20 60.79 17.67 0.51 38.85 66.60 46.13 67.25 1.68 15.53 43.79 47.18 92.64 71.78 13.99 16.86 68.09 17.53 58.85 75.18 2.62 63.72 41.11 39.77 89.84 22.04 24.10 67.47 11.82 50.70 48.02 91.12 1.94 19.39 32.62 12.27 55.02 76.10 53.10 52.09 92.99 9.72 96.04 40.52 2.05 83.58 52.58 23.75 18.65 88.93 57.19 58.75 84.78 71.99 31.80 19.62 61.14 7.08 10.60 77.29 24.06 45.26 40.46 48.21 89.43 63.14 47.67 81.63 68.87 83.29 53.70 22.90 24.02 25.81 39.01 57.30 85.19 8.32 64.96 99.99 14.43 -28.55 44.38 32.45 64.30 23.35 23.10 28.98 7.01 49.47 68.71 18.94 4.93 86.43 74.17 75.65 79.02 5.87 62.60 57.66 82.00 4.94 98.25 29.61 53.32 64.21 13.87 35.27 97.44 45.22 54.08 15.70 4.28 74.70 14.24 47.32 8.13 76.18 13.72 3.03 3.52 67.76 79.22 50.30 24.04 79.61 87.42 99.77 36.70 95.21 52.90 92.09 90.97 35.72 81.73 65.01 51.24 60.85 9.95 62.17 29.48 58.91 54.03 56.54 31.98 23.44 32.42 56.08 27.48 30.93 41.16 60.47 53.03 61.09 14.57 6.07 71.69 13.01 76.40 85.06 11.60 61.57 83.00 96.63 4.93 99.00 94.96 91.69 56.46 0.78 43.56 7.83 2.64 58.23 42.59 60.98 41.77 83.42 4.28 26.29 93.06 -25.16 11.60 54.70 12.97 82.47 22.98 21.98 77.51 56.05 77.47 79.08 54.04 11.58 31.81 41.24 6.50 29.91 54.74 24.15 35.07 71.69 7.99 23.93 87.19 72.43 53.71 70.77 84.61 74.00 7.52 65.63 94.70 41.91 38.52 1.70 4.10 91.51 37.72 22.82 77.32 26.22 32.49 52.40 81.24 43.87 47.86 27.51 39.88 32.64 11.87 91.16 6.45 42.30 85.20 57.53 23.89 60.15 86.38 46.40 16.56 98.62 61.64 20.33 16.07 29.05 69.29 26.10 66.63 66.82 3.52 75.47 20.02 68.43 39.62 38.35 60.39 40.67 27.45 98.67 43.19 70.05 59.56 49.83 71.72 89.71 2.75 13.78 37.93 94.59 68.93 53.05 38.95 0.23 98.97 44.74 61.21 72.47 9.02 54.97 88.77 -69.47 28.48 15.43 91.02 8.68 64.37 59.65 22.02 42.34 61.05 81.21 66.94 15.04 42.94 97.60 93.83 69.05 32.06 81.40 60.45 12.36 23.71 42.48 9.53 9.08 72.37 90.15 62.36 6.63 41.02 35.63 64.23 55.34 22.13 10.61 45.03 22.93 64.80 22.12 43.25 70.16 15.97 74.11 67.90 21.09 11.03 10.73 97.45 31.44 77.69 92.81 65.77 66.53 94.96 16.42 59.22 91.51 83.39 98.84 39.89 13.89 15.71 89.64 23.49 97.54 21.12 94.03 63.75 36.63 21.62 6.70 62.01 11.35 16.70 79.92 42.31 47.04 21.66 61.23 5.79 83.03 78.35 50.54 92.79 37.57 50.86 2.75 51.04 22.95 6.90 64.06 53.27 88.45 99.42 89.72 9.57 54.47 97.06 9.11 11.09 -48.97 32.94 60.78 56.57 24.29 3.12 10.37 64.95 84.68 36.15 24.85 73.20 91.82 16.77 37.54 87.75 97.52 81.72 90.70 64.62 23.90 32.63 44.15 8.47 84.30 43.07 33.09 87.36 6.80 74.41 46.21 19.68 33.02 72.14 99.02 36.69 91.83 27.46 75.15 79.65 69.63 92.05 78.47 33.14 97.76 29.43 73.42 8.20 14.79 91.51 68.40 56.67 83.56 22.42 81.76 63.90 57.09 74.48 95.41 48.36 93.58 45.98 10.45 28.30 25.61 38.92 48.56 61.58 78.59 75.27 98.11 29.93 31.49 78.75 47.81 30.85 83.64 17.03 69.17 64.94 57.87 15.43 91.57 28.01 2.82 85.40 97.56 91.16 48.72 64.17 63.17 49.07 36.07 46.60 99.26 13.27 94.12 70.73 51.94 58.70 -0.95 54.78 95.84 15.70 82.51 45.33 31.10 18.37 17.17 47.75 82.78 17.64 22.51 24.67 56.56 68.91 91.99 8.39 88.96 45.70 66.25 45.94 0.97 1.13 91.91 23.76 13.34 43.79 91.91 35.98 76.39 67.20 77.02 59.33 12.11 16.89 28.92 46.25 45.86 92.61 85.25 85.91 39.92 70.85 19.44 58.18 8.79 26.27 42.34 70.88 56.75 67.05 5.36 1.14 85.77 69.46 93.83 97.46 11.00 60.88 6.82 14.55 89.51 53.85 49.49 12.35 13.98 15.49 44.53 10.41 23.37 32.66 58.40 56.34 46.91 41.67 30.02 7.00 72.08 31.45 59.59 63.18 10.35 40.15 52.15 22.21 58.08 46.49 69.74 48.14 44.68 37.78 55.92 48.09 55.94 51.95 67.04 24.30 82.00 59.56 -69.26 62.63 2.86 93.82 86.90 85.12 86.32 9.36 21.16 16.68 39.72 58.06 47.78 34.50 43.11 13.36 53.46 85.38 51.51 23.59 54.38 0.12 24.26 98.21 31.53 90.06 79.48 30.60 52.08 60.00 40.45 84.10 93.12 73.53 32.59 96.10 3.37 96.31 23.37 35.61 90.18 7.12 96.70 85.32 95.43 69.39 44.37 48.68 40.04 43.24 41.73 5.60 61.16 90.75 6.60 87.41 52.28 77.98 37.67 45.87 88.86 86.66 80.49 96.71 9.68 74.63 72.70 49.55 0.66 3.93 40.33 30.98 45.78 71.58 72.47 6.46 3.13 62.18 24.19 10.83 98.21 21.34 22.25 36.08 97.00 73.60 7.56 48.77 96.07 19.31 4.85 35.21 15.67 97.13 45.00 19.73 0.09 84.33 29.47 37.54 -33.13 46.27 7.30 63.48 49.77 10.01 10.45 7.22 94.58 52.86 2.46 53.62 2.66 19.50 65.58 16.54 8.74 66.71 16.08 60.09 82.11 65.97 24.85 92.43 49.76 79.15 65.51 28.10 99.47 82.95 46.16 21.54 88.91 74.38 76.54 15.96 30.38 50.05 77.98 45.67 95.87 69.64 9.47 33.35 77.11 45.16 39.52 61.87 14.80 7.51 56.33 16.26 19.00 91.57 7.17 20.48 78.96 44.67 52.96 28.08 64.65 17.31 91.28 6.51 31.56 90.36 36.49 21.92 30.48 48.82 0.30 61.79 59.79 34.58 49.51 53.29 52.48 71.13 90.99 10.35 85.04 12.71 15.81 57.17 56.77 69.46 69.93 28.85 85.08 52.17 35.73 64.85 20.26 55.84 1.87 60.67 30.80 19.35 89.75 49.09 -94.82 36.60 41.82 87.25 69.82 0.40 56.99 91.98 4.97 79.35 34.10 57.58 97.97 65.52 98.19 70.13 50.33 60.69 63.58 40.18 57.98 88.16 40.97 25.40 59.18 71.90 55.48 83.95 38.74 32.68 52.35 62.57 53.12 87.15 78.14 40.19 25.60 84.36 16.25 4.25 89.89 56.49 66.58 11.43 93.91 35.39 76.90 74.17 88.79 81.02 82.12 49.50 80.94 19.48 65.38 27.80 52.48 48.52 75.93 80.16 92.41 90.12 1.13 60.01 75.36 99.40 31.34 35.24 51.17 0.70 21.29 87.38 77.51 36.03 66.80 37.15 61.40 94.40 97.72 24.26 80.30 86.58 92.32 76.42 97.07 46.38 78.21 32.45 98.12 24.63 80.80 64.16 56.87 47.50 1.93 11.34 10.15 16.53 7.36 3.45 -14.64 44.44 5.05 12.35 58.32 6.69 84.44 96.15 40.04 68.78 65.46 53.47 91.53 98.90 84.79 37.41 24.10 33.16 43.32 54.02 60.94 97.58 14.00 72.30 61.31 4.72 92.46 43.01 87.09 20.93 26.26 23.03 88.29 8.74 18.75 36.92 15.67 29.10 68.70 25.39 3.60 43.99 2.12 95.14 39.36 87.52 68.16 7.17 85.78 8.00 34.25 79.93 66.01 83.43 61.76 17.49 51.91 99.80 1.54 94.35 1.29 97.83 43.12 14.99 4.44 60.38 99.33 62.18 34.09 6.13 10.42 89.99 14.59 54.70 20.57 15.46 49.64 71.49 17.51 68.67 39.64 58.22 37.37 78.31 80.36 86.99 69.95 60.87 36.55 3.51 58.49 20.08 68.52 52.13 39.16 34.21 21.38 65.49 99.26 21.73 -14.42 9.80 26.22 0.58 42.97 8.82 43.51 18.88 52.90 59.94 30.37 70.95 62.12 95.56 8.99 76.28 56.44 90.83 73.29 17.16 73.89 59.33 8.73 10.91 47.30 36.66 58.68 78.03 62.48 43.99 98.25 20.12 89.23 95.49 94.18 69.03 13.97 5.47 26.64 17.23 81.28 51.80 50.87 79.62 58.40 57.69 81.82 45.61 57.26 64.03 91.30 80.98 68.99 19.26 86.69 43.73 7.31 80.13 54.09 50.51 39.82 25.54 27.02 13.76 26.92 47.75 64.92 95.47 18.83 26.52 62.67 89.58 83.24 52.44 19.72 57.05 86.41 98.69 42.70 6.66 33.80 5.50 15.42 43.11 63.07 89.47 14.75 32.89 84.85 17.85 10.33 71.07 48.86 97.60 17.91 22.54 42.96 90.80 49.22 26.81 -57.80 96.75 10.95 36.35 0.92 40.65 56.85 54.39 55.78 26.75 56.11 91.30 10.54 98.85 42.92 32.66 48.62 62.69 93.87 66.43 44.02 17.26 60.89 79.72 20.23 95.86 13.57 91.71 91.23 1.06 13.51 47.23 41.75 3.63 39.89 49.76 36.27 11.20 83.70 0.57 48.31 14.40 37.25 94.96 64.84 26.41 32.17 81.14 11.57 37.86 57.35 52.92 16.44 19.26 47.18 14.84 15.47 47.95 48.36 17.95 29.52 36.91 84.99 61.27 77.52 11.15 55.20 47.09 95.59 63.06 88.84 96.56 14.87 90.40 92.28 28.54 45.98 57.58 7.46 90.93 84.84 34.74 56.08 84.35 35.56 57.05 76.88 14.09 6.18 96.91 66.75 16.88 43.45 41.84 62.77 8.12 24.49 94.65 74.91 8.04 -7.31 17.84 30.24 5.40 98.70 63.14 42.81 73.63 22.82 78.92 87.67 59.92 82.37 63.25 59.30 56.57 42.99 60.75 51.87 1.03 85.74 92.03 74.33 20.04 51.59 81.95 70.05 84.85 91.15 80.72 85.01 76.28 64.91 15.24 95.15 49.77 52.26 95.96 68.70 7.18 15.63 48.97 88.03 95.31 41.51 49.58 48.87 4.99 32.50 83.19 32.40 77.55 14.82 74.90 92.70 91.17 30.22 55.81 86.45 6.00 8.37 35.25 96.28 34.12 21.94 89.41 25.17 29.91 10.74 51.39 65.37 5.00 31.61 49.64 10.67 96.62 74.85 66.74 36.76 23.93 21.59 15.33 74.23 28.61 30.67 85.33 63.81 99.07 54.78 33.79 25.65 84.66 28.50 31.00 35.24 22.50 68.27 78.55 60.50 20.07 -60.48 73.91 11.66 77.53 43.10 38.23 24.41 57.75 60.47 69.56 98.36 24.16 26.90 65.15 46.86 58.04 38.43 9.97 85.80 8.55 54.44 62.80 10.85 38.20 24.07 92.17 41.81 22.30 67.47 48.94 63.60 91.93 62.06 29.63 0.01 20.15 25.31 13.00 37.54 63.20 84.25 78.34 99.39 81.14 43.44 31.65 18.37 63.78 57.99 73.24 70.67 70.88 63.48 19.04 2.16 43.85 16.14 58.45 2.69 91.43 53.43 55.67 56.64 87.01 80.90 66.68 2.62 14.74 82.71 73.55 14.63 87.76 92.79 76.17 2.05 88.42 99.96 21.31 91.26 51.58 93.51 94.19 68.85 56.26 12.43 7.96 19.74 52.64 49.54 69.64 27.19 92.48 11.96 44.56 30.48 71.14 64.36 42.62 61.44 36.43 -83.59 69.03 73.41 21.76 58.15 75.46 36.25 66.11 72.62 48.82 80.27 0.37 44.15 66.63 6.57 30.52 48.42 9.73 81.62 76.32 35.21 58.80 54.79 87.01 56.80 20.76 80.62 65.86 33.78 55.14 2.81 20.94 47.90 33.76 28.01 82.53 33.55 39.18 22.49 57.36 17.70 38.23 81.16 98.54 38.58 45.35 85.54 84.90 71.41 36.72 25.84 96.41 77.76 30.98 73.11 64.51 35.61 1.46 59.68 0.50 18.65 12.50 32.06 10.90 13.98 40.55 28.97 1.23 84.57 59.50 11.86 92.76 39.89 44.10 74.27 12.02 48.28 72.93 74.29 42.41 96.77 8.84 44.61 2.71 15.50 20.45 17.33 62.56 73.79 32.50 9.27 65.98 53.80 6.38 28.95 25.21 47.29 63.05 43.04 44.53 -68.23 9.82 28.74 54.31 29.49 68.88 24.41 71.43 95.63 25.83 78.55 51.03 82.89 47.37 71.88 92.85 27.16 50.16 99.60 37.11 42.88 83.32 86.90 18.44 26.44 10.84 51.41 31.14 92.86 69.80 15.86 32.94 24.13 47.95 18.89 63.99 19.98 36.29 11.27 15.75 41.63 93.95 8.24 37.60 28.03 36.80 78.19 65.14 74.11 72.49 83.00 65.05 67.11 79.79 69.61 18.66 21.87 53.85 50.21 13.75 34.81 13.51 38.76 20.33 54.44 40.12 96.57 64.19 34.74 55.21 17.26 96.06 18.16 69.76 0.40 80.21 22.11 82.78 68.01 65.11 19.61 23.86 3.78 90.49 80.17 86.48 14.23 73.34 74.78 27.23 56.08 90.72 58.50 61.43 72.21 94.60 14.93 98.00 13.12 62.71 -76.56 29.54 78.41 18.64 50.42 1.71 0.20 44.47 33.00 58.44 99.11 95.03 26.58 61.07 55.40 55.92 11.95 81.94 17.59 54.94 85.42 55.56 36.91 25.37 22.55 84.12 92.58 50.85 59.53 50.24 37.39 88.47 98.19 3.73 91.82 91.09 75.24 62.39 30.78 37.87 77.43 8.68 71.64 36.10 21.58 65.39 20.27 82.72 87.52 68.02 65.52 54.67 42.54 56.24 68.03 44.45 70.58 84.14 78.09 74.71 20.66 53.25 66.38 64.96 69.20 45.77 63.33 63.30 9.41 96.37 2.61 98.87 75.20 43.84 55.46 77.49 79.92 83.40 38.36 94.88 75.08 84.22 73.68 2.26 10.56 92.65 64.84 60.49 10.61 12.00 24.05 29.70 16.45 16.93 5.53 15.40 79.65 42.50 42.32 49.23 -10.69 42.72 59.92 84.76 34.71 21.38 40.93 8.01 83.25 46.07 37.94 84.66 34.72 11.06 70.20 84.85 61.11 72.19 20.62 64.83 72.05 85.61 93.09 83.35 35.89 59.08 15.85 85.23 16.04 65.33 88.21 41.92 46.61 86.92 85.67 84.27 9.29 54.08 94.35 83.76 14.51 49.35 25.46 55.47 51.95 95.76 71.95 81.19 74.09 76.90 51.41 85.93 99.81 94.34 79.51 81.93 41.82 26.85 98.72 79.16 42.69 31.96 49.44 30.44 45.76 86.08 37.69 69.76 73.68 2.18 87.99 18.86 56.54 44.28 63.44 11.23 52.00 28.93 73.89 81.03 12.60 52.94 53.16 94.38 61.31 2.36 13.75 42.14 38.70 72.43 89.98 56.89 81.25 14.36 56.37 42.49 18.88 53.22 16.89 31.93 -90.02 47.12 33.48 36.60 15.54 40.91 53.59 90.36 94.36 60.75 29.80 30.84 61.07 19.85 97.31 62.49 19.75 72.70 94.05 95.25 78.94 10.17 62.40 71.12 31.64 69.13 53.90 2.69 54.79 7.76 42.39 2.80 31.74 96.63 38.90 46.02 98.91 95.38 95.02 11.09 39.77 30.18 70.30 96.95 89.00 22.69 56.66 56.08 93.86 83.05 92.60 26.66 72.87 75.32 74.64 34.66 69.45 81.11 15.49 96.69 0.02 65.30 56.49 84.20 19.18 86.03 87.87 34.79 71.10 43.33 52.19 97.13 24.51 93.59 87.09 35.75 13.24 0.74 40.94 75.96 69.78 96.13 23.97 4.63 67.81 91.90 80.83 8.52 31.25 93.94 27.84 70.18 69.64 46.97 67.82 44.97 95.91 78.27 25.18 54.59 -9.61 14.51 9.39 34.78 75.09 32.24 49.74 82.57 30.63 52.24 93.84 74.47 97.33 8.58 6.65 51.69 18.86 98.66 37.06 22.09 73.97 83.15 64.92 56.16 20.86 93.15 42.93 55.80 71.96 44.59 26.52 5.26 54.44 91.15 7.91 4.03 50.71 1.91 1.92 19.62 13.04 74.19 81.61 47.24 58.62 74.01 40.75 43.33 75.20 63.31 33.09 59.65 89.72 17.88 15.31 5.79 25.36 65.63 78.37 38.11 75.17 99.09 61.12 5.37 19.52 75.42 80.86 46.51 93.63 40.14 12.20 55.13 74.96 54.54 31.06 17.67 24.15 17.05 32.01 78.35 53.25 54.40 15.16 80.46 30.14 88.87 0.53 89.35 69.78 16.10 61.32 3.00 33.29 72.78 35.93 31.83 51.95 64.08 80.96 46.92 -24.35 4.16 13.18 69.00 86.89 42.28 72.00 46.69 98.07 90.73 67.94 40.02 23.75 91.70 42.43 72.24 65.15 30.00 1.25 17.94 0.91 30.49 25.83 93.17 47.89 61.53 87.61 91.37 48.43 46.52 95.64 2.17 10.03 78.81 50.29 44.09 65.40 49.43 33.89 17.35 17.75 91.89 73.53 68.80 18.15 41.64 14.30 42.96 62.40 13.69 4.18 52.19 54.31 20.72 69.54 51.23 90.46 44.52 96.40 68.14 79.53 89.76 14.01 71.18 14.48 71.48 60.15 60.47 16.25 80.87 61.76 86.50 11.76 16.89 98.96 31.71 2.52 44.55 93.30 32.07 55.34 8.75 77.89 76.89 84.02 33.95 54.53 14.65 39.29 81.34 2.78 18.32 55.94 68.38 87.84 65.52 47.98 30.75 40.98 30.09 -29.17 52.23 64.18 9.93 98.76 76.52 59.79 92.98 97.40 72.81 82.11 95.75 43.79 39.73 52.51 69.48 55.25 54.13 80.70 64.84 16.51 72.37 8.88 99.24 38.98 53.59 2.23 3.08 64.54 25.01 83.36 33.57 72.83 30.50 29.06 13.46 32.64 74.44 51.91 27.10 78.72 18.88 94.43 37.46 48.27 98.63 55.74 18.69 56.93 84.43 34.87 58.93 71.81 64.13 73.81 15.28 18.92 60.94 39.59 67.84 86.16 36.78 87.49 5.45 98.50 98.66 50.75 68.87 99.28 48.82 63.85 29.28 28.57 89.17 30.61 9.53 91.17 32.53 76.56 11.23 58.09 4.39 22.18 90.35 10.14 89.22 77.16 44.73 12.87 50.76 15.33 86.05 45.49 43.18 14.65 35.12 66.61 92.77 65.32 2.90 -22.53 13.69 18.66 42.58 72.83 13.18 27.44 69.36 78.63 83.63 86.87 16.92 66.38 21.09 2.89 54.88 41.44 11.49 14.54 21.83 29.03 61.94 31.04 40.64 16.64 28.01 28.33 29.33 27.09 75.19 68.63 15.52 77.35 31.59 21.18 11.13 92.79 30.10 88.47 8.42 45.15 32.01 53.76 82.87 49.38 85.35 84.98 37.30 74.16 52.11 8.52 27.84 59.01 94.55 71.02 78.49 67.98 37.01 99.89 24.96 19.79 59.54 20.71 51.63 26.54 13.90 49.17 63.92 20.15 40.63 94.31 37.16 10.32 68.06 71.96 32.90 77.90 48.06 42.68 24.99 23.43 18.77 22.71 62.11 95.59 68.97 87.47 26.51 35.38 2.27 54.00 26.12 43.98 98.97 72.34 73.24 82.48 38.98 50.66 15.82 -96.01 92.40 34.73 81.54 99.02 69.09 80.58 2.73 76.46 21.86 78.07 20.94 46.83 60.22 57.61 29.03 35.23 14.81 36.94 95.33 50.99 61.94 80.22 31.25 0.13 3.27 34.21 35.42 82.39 88.46 13.85 41.19 59.21 19.98 78.77 73.05 2.98 14.27 39.01 34.16 29.53 76.59 83.18 11.94 54.22 61.34 46.94 85.17 2.39 16.20 86.29 31.98 4.38 1.27 83.23 88.69 59.86 61.71 88.20 17.56 84.19 13.62 87.78 78.48 12.63 0.12 68.23 27.44 92.38 96.79 96.43 28.24 90.95 43.80 63.44 89.86 77.74 62.65 79.50 69.64 42.12 80.29 33.10 69.40 57.08 45.43 78.28 88.76 70.00 44.28 83.73 37.34 6.59 54.07 4.51 65.03 22.97 81.84 14.56 36.74 -70.51 70.11 52.43 20.95 17.08 49.33 15.91 94.14 53.27 66.09 97.43 71.52 44.03 20.59 90.86 54.58 68.00 71.80 83.27 56.27 14.00 2.91 99.28 4.03 72.23 73.80 25.56 13.97 99.48 38.86 92.60 64.39 36.05 11.10 67.80 57.30 13.19 94.25 82.15 88.96 42.36 14.73 10.31 58.31 13.51 12.31 7.61 93.56 15.14 73.43 68.36 93.69 27.42 53.98 66.59 89.34 74.06 73.67 75.60 86.77 19.26 90.15 10.47 36.95 76.60 91.58 18.64 71.19 50.04 94.62 62.86 23.97 20.19 95.04 67.72 78.64 22.65 25.30 30.81 70.87 46.84 91.36 23.86 52.97 11.24 70.08 87.69 67.94 15.07 89.10 32.97 69.93 8.95 13.72 20.64 78.50 33.42 62.82 88.27 60.24 -19.99 81.77 85.66 48.31 80.85 48.55 44.16 24.68 3.28 61.09 47.01 48.00 3.52 93.58 73.52 55.06 96.22 50.37 5.11 13.01 52.89 60.48 45.62 91.20 98.40 55.99 1.68 32.77 4.41 38.48 69.76 48.58 49.90 50.89 62.56 53.51 47.76 37.13 28.47 26.10 48.58 57.37 88.90 76.21 99.44 19.22 71.95 3.91 35.28 45.99 68.26 85.88 66.49 43.79 99.87 28.99 10.59 38.61 56.70 76.95 44.53 97.43 30.68 49.41 14.00 64.15 16.78 23.18 33.32 34.55 67.30 71.20 28.00 5.32 90.18 36.95 78.66 69.40 15.61 48.82 7.56 24.53 60.55 71.24 46.66 67.91 12.18 16.36 92.82 24.24 70.33 82.09 94.56 54.06 96.37 32.99 63.63 25.68 72.64 13.66 -96.48 8.25 13.87 36.62 61.83 11.77 72.89 95.17 61.12 54.51 47.76 71.41 12.82 84.77 11.54 57.47 93.26 4.32 97.01 11.06 79.43 25.32 89.11 86.90 65.59 47.75 72.15 34.10 20.43 57.43 38.65 80.93 32.18 66.62 53.05 0.13 28.11 75.01 12.57 70.47 98.26 46.63 63.42 76.63 37.59 89.12 37.98 96.54 83.52 94.45 7.81 50.49 8.31 15.55 10.25 61.93 48.46 25.59 50.45 24.00 67.37 78.75 58.26 36.23 8.43 83.54 81.75 76.70 13.24 89.57 93.92 84.96 95.92 72.08 26.61 32.96 23.15 79.88 11.22 63.01 66.91 14.94 76.04 61.76 49.52 12.97 59.41 50.83 22.90 51.19 48.04 99.74 65.99 94.83 24.02 0.48 61.65 4.41 77.70 55.83 -3.88 86.04 21.04 30.11 90.49 6.18 65.87 12.48 22.18 51.18 58.27 63.78 18.65 77.22 81.71 35.46 53.40 76.30 47.71 29.45 69.61 17.95 62.20 37.57 54.73 61.72 32.74 64.84 59.81 8.23 15.30 89.68 73.72 31.08 57.38 0.76 92.23 30.21 34.76 67.32 52.05 31.13 24.38 95.17 81.50 95.97 78.63 1.41 78.16 31.54 11.55 13.79 25.30 18.20 86.08 49.21 51.61 80.59 59.72 45.49 96.43 22.26 65.45 52.57 95.77 89.42 3.92 18.27 83.96 11.29 14.07 84.57 72.12 90.95 74.08 82.39 34.33 78.25 29.44 26.61 4.90 83.46 82.37 80.94 47.36 10.01 32.03 30.48 44.50 52.37 13.41 19.79 32.58 99.00 21.97 24.50 74.43 96.85 66.24 20.21 -23.90 59.63 81.50 26.85 28.71 93.30 53.11 80.14 3.08 49.73 69.09 8.70 91.99 6.58 31.35 27.33 91.20 10.50 25.26 5.86 84.51 27.61 75.72 73.21 23.27 11.72 72.36 92.97 19.31 4.44 40.88 28.34 84.45 62.57 74.53 34.38 44.63 87.26 55.80 60.49 97.62 14.91 36.42 79.05 20.60 28.81 77.13 63.95 23.36 38.78 4.83 41.59 7.36 37.53 25.03 15.50 7.19 99.54 39.83 26.84 3.83 55.30 53.28 99.50 94.50 8.57 19.80 20.77 58.52 15.08 44.41 76.48 25.99 42.98 26.32 80.18 23.95 61.12 20.29 69.38 68.22 78.53 99.55 3.50 59.74 5.86 92.62 30.89 8.54 75.28 78.05 28.25 61.32 64.48 45.20 84.40 75.32 52.25 52.62 74.65 -26.63 48.07 86.40 66.78 73.17 28.93 10.58 40.05 18.97 78.26 90.01 10.02 55.87 85.78 80.62 26.14 26.29 71.22 72.18 83.61 33.37 48.24 30.21 39.15 31.32 8.95 24.42 34.15 62.52 47.43 92.03 85.05 62.17 6.99 73.75 55.17 51.04 77.98 86.03 86.02 85.20 21.55 38.14 42.08 51.31 36.53 66.52 97.22 9.50 47.64 41.60 8.75 42.00 6.17 96.65 80.38 92.62 66.60 20.62 96.19 75.37 7.85 12.52 27.16 33.26 17.95 87.20 53.73 11.16 32.39 83.06 40.95 35.75 18.85 83.18 20.66 73.43 49.89 1.55 47.93 46.45 21.99 93.56 60.68 94.15 56.40 27.23 7.83 79.73 2.39 10.61 95.65 16.61 0.54 2.13 89.16 90.95 4.98 77.34 92.31 -90.47 82.99 82.81 90.69 76.65 92.94 10.04 59.11 76.35 21.04 69.52 52.94 58.52 14.40 70.06 20.95 83.88 48.25 42.48 99.76 58.34 92.35 48.17 56.85 42.76 11.96 15.71 55.74 22.06 4.52 50.21 13.87 43.61 7.43 43.48 89.54 75.98 72.16 71.01 17.39 66.78 52.38 44.43 64.82 43.03 21.53 99.71 76.74 88.41 81.06 59.20 10.27 85.93 27.73 2.48 44.75 40.54 54.67 82.56 32.56 60.45 63.75 8.26 1.95 49.60 88.92 34.05 48.72 73.22 40.53 98.98 9.50 5.73 15.14 96.60 25.66 83.13 26.22 23.73 79.86 4.93 27.42 41.15 2.76 5.83 39.06 16.03 92.25 40.99 97.15 84.27 41.06 25.72 34.08 70.01 14.15 79.81 60.75 56.25 72.86 -58.59 74.25 36.75 46.15 3.48 11.53 31.44 16.70 80.50 66.28 1.50 58.91 26.97 80.07 60.03 85.36 34.85 48.64 49.05 14.56 92.95 97.65 32.67 42.32 84.76 9.17 20.55 85.45 52.33 75.01 93.66 96.09 28.18 52.67 78.96 21.51 51.70 80.44 34.27 54.28 65.86 74.08 90.94 36.87 38.13 85.68 31.52 12.71 84.40 89.56 17.19 46.65 4.80 28.37 1.55 44.22 88.37 22.43 29.54 99.56 26.73 12.69 85.09 67.45 82.05 9.82 47.65 15.38 49.91 34.53 15.10 6.78 2.61 95.04 11.24 5.33 70.68 8.33 94.20 4.21 9.19 73.86 17.06 10.94 75.24 15.49 78.34 70.32 17.17 10.57 65.74 24.50 56.50 72.47 2.50 98.73 19.97 84.73 55.02 66.08 -78.35 36.71 25.18 2.51 99.19 68.38 49.18 3.23 80.90 34.26 16.47 85.51 3.83 66.35 7.57 62.03 31.22 75.45 91.32 2.05 22.01 65.24 55.51 70.30 34.22 58.90 38.37 83.68 61.14 63.54 61.60 90.17 66.47 37.88 91.39 1.47 52.67 77.67 20.13 48.56 32.22 7.34 44.40 78.27 99.02 45.87 24.96 61.46 70.12 9.43 40.26 2.44 34.34 60.37 66.29 90.53 94.39 64.13 93.55 56.35 81.31 17.30 55.60 36.23 96.56 73.94 42.09 71.62 30.10 38.97 97.07 95.01 79.28 27.70 76.70 40.61 85.19 64.17 37.87 94.42 13.62 58.00 81.46 69.22 48.47 86.48 51.69 73.44 33.59 28.74 5.67 66.71 15.51 70.15 8.55 87.72 1.21 73.46 21.01 51.93 -99.31 25.36 80.21 26.41 5.17 13.08 16.45 56.64 46.31 6.89 12.02 62.91 81.83 95.47 76.82 27.78 89.00 0.49 1.17 84.03 88.46 31.02 73.51 23.04 49.34 22.22 79.60 67.92 8.51 34.98 38.04 40.91 4.11 66.85 68.74 82.11 25.57 87.98 82.54 9.23 91.78 10.49 57.13 66.56 60.39 51.63 12.32 97.84 57.92 62.50 20.60 39.17 33.88 72.85 12.87 83.08 63.14 19.52 56.38 36.76 52.59 72.66 10.37 34.16 59.72 1.82 76.11 70.13 78.50 72.33 3.67 6.12 65.95 33.58 55.57 7.15 30.91 3.18 61.52 97.63 71.10 66.37 60.50 12.90 8.95 69.96 37.75 62.54 89.12 94.60 34.04 1.92 81.81 40.36 40.27 95.71 8.75 15.87 10.80 70.87 -52.70 94.31 34.11 29.60 3.82 43.75 56.77 75.23 58.80 92.70 64.01 30.61 91.98 61.17 10.75 12.85 76.96 62.61 80.81 79.56 25.05 74.28 67.05 21.28 0.73 19.85 70.00 49.40 9.52 8.24 85.43 24.33 17.33 73.71 43.38 56.74 11.08 35.16 12.63 76.23 23.47 76.92 41.85 9.88 93.39 95.54 65.14 42.06 50.99 22.72 37.24 80.74 44.69 85.04 45.90 90.47 4.55 28.93 85.56 49.73 25.32 50.93 31.95 73.82 63.35 69.79 73.37 31.27 3.75 56.74 62.76 4.53 60.02 91.23 33.78 94.85 61.42 35.88 16.92 26.78 25.15 70.44 88.62 46.75 11.95 97.64 65.45 81.82 6.64 87.23 66.21 61.01 73.37 99.70 69.92 71.80 87.55 30.15 40.13 35.70 -50.70 27.45 75.10 13.56 22.20 91.59 64.94 59.43 53.43 50.24 49.43 44.60 7.51 21.38 61.98 70.70 83.00 33.03 22.63 97.97 62.42 12.06 33.55 6.87 25.54 25.40 99.14 12.27 57.04 29.92 56.66 79.32 44.57 52.32 22.97 52.35 9.86 97.77 88.48 64.87 85.99 31.58 74.22 33.53 17.26 16.64 28.31 71.14 18.07 71.58 20.23 30.74 32.59 5.45 64.91 55.89 69.71 15.18 23.97 83.52 64.82 47.39 32.27 24.63 66.88 1.78 48.40 6.55 81.76 74.16 14.86 94.79 9.18 36.66 3.09 54.95 16.60 67.75 69.40 92.71 48.41 2.51 52.09 47.80 89.45 2.17 63.43 31.96 14.08 48.25 82.84 31.39 37.60 4.08 96.29 81.51 66.14 98.40 71.26 81.01 -27.79 85.80 68.57 90.44 95.36 5.16 17.39 59.69 47.47 97.84 72.69 0.98 51.65 83.99 61.71 91.41 27.76 14.51 71.58 36.80 51.79 83.48 22.73 94.81 53.57 53.14 17.55 79.91 5.37 59.97 98.50 41.97 35.21 97.93 68.55 18.63 8.37 0.83 8.00 20.47 92.19 3.35 79.26 97.06 99.08 65.10 26.01 45.73 41.37 91.44 5.52 3.93 38.00 41.03 15.74 82.19 29.75 53.67 6.64 62.62 66.91 0.12 44.24 49.36 28.33 14.91 68.42 49.04 82.74 17.09 13.03 49.29 65.11 7.45 36.09 29.98 55.88 92.04 51.94 11.50 76.28 54.11 23.05 68.71 16.92 19.46 21.54 65.67 92.45 61.02 73.61 59.38 64.28 73.05 78.09 18.82 85.70 59.94 67.91 69.29 -52.92 63.20 66.79 33.95 78.61 52.92 82.24 73.28 46.65 26.54 59.86 86.68 52.37 43.75 13.38 69.91 31.21 76.59 13.88 13.25 39.82 28.29 82.45 77.22 27.47 5.34 16.01 40.66 39.70 71.24 44.79 9.74 49.37 80.34 94.14 88.40 25.12 64.40 26.97 92.54 89.71 99.02 11.57 10.58 31.54 57.32 36.22 68.83 46.60 90.69 19.14 56.08 85.67 70.78 57.13 99.20 85.98 22.99 44.35 43.62 35.32 77.96 9.20 75.95 22.50 9.37 53.53 1.03 90.03 85.99 15.89 46.77 87.40 16.82 28.49 29.69 17.12 84.70 28.98 65.88 34.26 59.00 19.18 86.33 25.70 44.35 42.51 13.48 71.21 23.32 77.40 91.96 99.01 62.29 36.81 95.85 55.93 20.42 37.06 35.48 -33.89 55.72 69.90 51.62 96.83 89.14 99.32 82.84 42.59 29.12 9.27 19.89 27.37 41.18 23.00 21.91 44.35 94.31 23.63 94.61 31.83 0.73 74.67 34.71 31.98 4.58 55.58 38.52 5.94 12.18 33.85 15.81 62.95 10.67 69.42 94.90 38.76 36.07 4.48 61.82 77.51 1.95 73.84 44.53 11.88 5.33 5.92 61.69 29.45 20.90 37.99 76.98 39.45 34.87 6.73 1.61 1.82 78.70 61.92 51.65 7.23 72.06 43.03 27.98 71.29 77.90 1.82 16.44 49.86 50.59 2.60 23.57 89.33 4.09 69.95 5.96 42.04 92.97 62.41 53.28 2.99 72.54 20.63 20.79 70.57 58.66 12.34 14.23 82.17 14.84 50.82 77.33 66.17 35.94 79.72 15.83 26.88 82.07 74.01 88.12 -29.62 42.90 25.87 83.56 89.76 75.91 76.08 71.98 35.75 71.93 76.44 91.04 90.57 23.67 67.19 48.52 52.10 67.06 61.80 95.35 80.69 26.34 59.71 6.50 91.07 74.65 11.98 94.56 95.79 23.30 54.18 79.07 57.17 77.80 20.20 49.45 73.33 82.85 5.62 77.41 4.34 14.04 19.14 31.19 50.14 41.90 34.22 92.60 64.96 10.26 88.64 72.04 27.67 47.82 34.92 40.76 75.08 18.18 53.05 63.85 78.74 87.12 22.48 19.01 97.41 23.57 77.98 59.29 67.22 11.31 8.83 6.44 98.02 12.72 27.65 41.55 92.70 48.48 50.70 92.58 70.59 39.95 8.85 95.19 93.73 16.39 96.42 21.22 36.87 54.48 2.20 50.55 67.96 22.04 92.51 88.59 91.76 72.59 43.58 5.82 -83.82 24.51 53.32 24.96 60.79 29.17 43.26 55.92 25.53 80.32 92.18 78.78 35.79 0.64 84.91 97.69 27.43 79.11 94.45 98.76 68.51 8.56 62.06 17.59 35.60 22.21 9.19 58.65 18.96 89.19 10.54 94.51 28.26 82.40 27.52 89.07 31.48 46.43 13.12 71.59 40.49 3.56 26.67 65.10 94.90 81.21 20.07 17.21 86.65 66.89 98.25 10.55 52.46 26.59 92.90 11.15 38.26 85.86 19.49 57.62 62.00 59.42 59.92 26.05 19.24 29.40 25.05 56.57 18.40 61.50 16.41 13.33 91.68 27.42 14.01 30.74 34.24 91.09 17.36 31.90 58.93 22.27 45.77 45.66 34.20 96.17 99.75 74.44 69.12 63.35 46.10 36.11 72.84 28.06 69.83 14.01 3.38 36.99 41.42 96.48 -11.17 16.73 69.97 40.40 47.29 28.51 13.98 96.73 40.22 70.20 94.27 53.35 0.25 39.40 66.64 34.91 51.76 91.25 80.99 96.49 70.13 61.92 7.86 94.35 78.33 98.04 44.06 11.88 18.56 54.13 68.43 19.83 95.06 23.94 1.09 47.04 35.24 0.65 16.46 54.56 15.90 56.32 53.29 69.09 59.12 1.49 24.95 55.02 89.15 78.42 9.66 30.25 18.81 1.60 3.52 36.38 17.15 37.68 59.50 96.14 14.89 75.56 43.93 86.46 91.51 99.10 41.01 83.44 36.34 82.80 82.31 20.97 10.53 91.19 16.52 61.37 88.02 72.28 15.26 93.49 56.09 7.29 18.69 77.35 33.22 44.29 22.01 51.55 80.77 43.55 3.25 11.62 99.33 87.36 16.82 11.22 69.83 33.05 60.70 53.30 -14.65 30.83 28.52 3.42 59.75 56.03 16.48 56.70 11.67 90.17 58.47 85.23 37.97 33.15 14.11 53.25 2.59 33.49 43.92 71.48 61.62 69.87 70.42 51.07 12.40 38.39 73.68 59.81 62.67 13.36 16.04 22.64 53.27 87.83 12.03 70.00 11.43 24.59 2.85 68.13 60.84 61.71 52.25 59.63 53.27 43.27 22.12 26.10 57.54 93.44 48.56 68.46 17.27 68.28 29.95 37.86 80.76 2.93 28.75 65.91 0.42 29.55 31.68 45.47 28.23 57.51 90.68 57.55 32.90 86.95 15.89 99.90 92.17 44.30 69.47 83.58 83.79 12.56 40.89 99.17 55.62 66.98 11.66 92.42 95.40 80.19 10.66 96.26 31.69 80.69 72.71 51.86 13.72 20.71 74.80 10.66 76.19 67.46 9.87 17.85 -9.10 16.11 40.96 76.68 49.56 60.80 75.82 53.15 36.57 60.69 31.82 58.30 29.85 4.85 56.03 54.76 2.58 73.51 48.88 13.21 7.96 28.18 54.18 56.76 24.57 70.08 12.60 34.30 71.49 62.89 92.83 45.17 26.29 74.40 99.98 9.87 79.72 14.95 79.46 86.02 54.55 42.01 3.23 69.86 64.76 68.86 79.62 36.85 74.67 73.09 49.81 58.02 59.21 91.37 33.53 58.84 84.09 77.82 60.41 24.53 53.05 7.08 20.77 54.44 63.06 86.04 49.87 39.80 49.17 27.59 43.16 59.95 2.61 81.14 92.08 29.25 47.16 30.10 22.40 59.10 78.46 7.88 20.79 59.62 90.12 29.86 31.47 32.00 9.20 58.43 68.82 58.12 87.70 23.64 30.27 31.86 72.93 36.49 71.07 27.52 -44.54 37.54 66.61 84.36 18.27 38.88 16.39 32.62 19.28 76.01 57.03 82.23 29.50 55.32 64.31 83.01 97.45 93.24 69.54 11.93 4.03 34.83 41.89 47.40 43.17 2.01 54.97 72.75 31.19 50.59 23.45 77.63 4.10 65.33 84.07 27.59 34.86 25.67 87.36 19.80 7.09 42.67 90.47 60.68 86.78 58.72 36.33 88.50 95.10 38.16 20.92 74.16 98.34 97.35 78.77 18.65 74.14 49.95 18.33 54.36 88.27 69.03 11.25 72.98 5.75 5.47 17.65 29.02 93.90 91.94 36.98 61.06 98.72 43.15 77.97 83.52 48.38 9.08 98.79 86.85 32.80 66.52 89.94 81.76 68.92 22.63 58.23 52.26 99.91 91.81 50.42 67.71 98.64 28.78 64.27 35.19 71.79 48.23 99.37 60.94 -55.09 1.74 62.42 16.62 5.58 23.63 89.69 32.64 2.36 73.82 19.61 94.17 97.64 45.00 9.10 69.79 68.86 62.31 3.93 20.52 35.91 1.25 91.54 34.42 69.38 64.63 8.21 81.97 43.22 72.06 49.67 97.89 97.02 23.93 6.77 53.06 51.44 4.29 51.47 55.63 91.45 73.89 35.02 88.37 90.00 77.23 10.14 13.15 19.64 88.21 51.76 96.15 67.24 11.36 26.37 34.29 88.62 49.94 68.43 25.04 96.74 82.10 44.27 15.45 86.48 49.29 23.46 46.73 64.75 87.64 87.91 60.45 15.70 43.56 51.45 52.57 97.09 67.97 96.66 51.20 63.92 14.39 82.06 78.71 6.73 81.30 34.24 24.38 19.56 62.30 47.92 31.61 17.92 55.19 79.81 16.72 46.97 21.19 60.52 62.16 -59.93 63.88 49.01 51.02 9.21 93.85 39.97 70.05 4.11 7.49 89.07 53.32 50.04 22.29 17.23 84.40 50.36 71.13 38.23 84.27 94.07 40.93 13.32 18.54 78.65 68.96 76.83 22.79 22.56 75.46 36.62 39.93 21.78 68.22 59.15 95.10 64.25 73.41 27.21 30.78 62.70 21.37 26.75 86.44 9.14 96.12 40.95 7.34 98.04 4.47 13.05 35.14 11.97 29.67 72.64 63.00 79.44 83.06 74.07 88.34 79.37 76.47 44.42 4.51 52.44 50.08 86.13 16.61 99.11 26.67 60.41 8.24 12.67 91.73 95.43 36.18 63.84 26.00 2.79 37.07 75.26 18.95 1.06 72.61 70.68 73.07 44.81 35.30 39.97 46.42 63.73 74.47 26.84 23.83 25.44 36.64 70.51 2.74 48.11 8.69 -54.26 89.90 10.37 17.81 11.01 6.86 50.46 7.41 18.85 96.02 76.31 70.74 68.31 0.98 84.52 59.64 32.27 8.74 7.45 1.20 99.57 70.44 53.38 86.60 44.02 22.99 39.96 62.15 95.84 90.86 60.96 95.86 17.64 29.14 37.94 47.10 66.61 56.80 16.90 33.45 61.94 79.18 1.41 35.62 35.75 39.05 36.88 57.72 84.55 75.14 16.01 38.88 71.03 71.99 59.65 39.17 73.36 28.92 70.78 45.33 78.11 83.06 31.84 8.38 72.49 30.55 84.67 34.33 17.53 4.58 16.47 19.38 92.21 50.11 79.87 67.80 33.65 43.36 27.69 90.31 45.75 62.38 84.22 39.18 61.52 0.84 39.09 53.82 38.99 2.94 38.59 2.34 53.05 34.70 1.78 69.15 16.48 15.12 11.73 51.99 -88.64 14.42 77.98 45.84 73.45 13.82 87.07 85.35 31.10 1.52 76.66 77.67 46.42 78.93 81.22 76.58 24.26 9.70 6.75 21.26 29.99 67.91 80.18 77.97 56.03 87.69 65.05 5.82 7.25 35.52 46.17 40.04 53.73 38.72 38.46 83.95 63.45 63.52 82.41 42.15 23.31 90.51 11.60 93.35 25.74 30.79 70.79 21.79 46.70 43.87 27.75 31.83 49.71 64.10 13.13 49.33 76.95 5.97 52.86 28.80 87.34 21.90 88.97 28.62 82.47 61.31 49.86 65.10 92.14 68.36 68.23 2.54 52.08 63.02 34.11 0.92 60.60 1.17 49.14 32.37 45.80 0.65 83.48 96.29 2.28 34.14 79.32 75.67 72.70 36.40 76.93 73.49 47.61 25.17 57.79 7.21 42.99 62.91 37.59 4.47 -82.70 35.30 28.80 30.07 64.46 5.35 94.70 93.56 64.77 24.61 0.45 90.59 86.60 56.61 2.69 10.78 80.21 38.12 94.96 2.78 23.72 47.94 57.68 42.12 7.22 58.08 45.04 65.67 72.00 16.12 94.68 18.35 56.37 70.11 63.21 22.63 12.26 27.39 43.83 51.52 47.25 37.31 54.07 86.73 96.46 76.94 20.79 19.92 30.27 10.28 69.88 21.78 0.51 44.62 6.48 89.45 41.32 47.90 43.34 71.94 22.92 95.47 92.37 6.47 89.54 35.31 2.23 3.98 24.71 97.73 94.02 21.49 18.60 23.14 21.63 39.47 6.18 19.98 49.06 83.67 60.80 58.12 72.08 29.80 71.48 99.88 93.40 4.97 96.61 68.49 8.55 44.86 94.74 33.72 92.96 95.10 83.95 55.71 4.94 43.53 -59.19 96.41 92.64 36.74 59.18 62.22 24.94 4.03 70.53 51.94 12.34 82.29 33.56 33.55 4.75 29.03 4.36 60.58 59.77 65.99 43.14 33.23 37.79 58.49 48.23 36.45 77.15 47.12 55.00 63.80 92.48 57.05 5.01 21.58 79.05 5.61 10.35 89.09 7.96 99.46 8.73 58.37 48.33 92.23 8.94 14.64 92.05 44.70 20.28 91.81 79.78 62.76 91.17 17.74 39.98 66.79 59.81 77.59 0.52 5.19 3.11 10.77 15.97 74.31 55.27 6.80 41.95 91.96 78.82 72.75 95.25 80.81 89.68 48.68 89.19 61.24 69.38 21.01 54.92 9.15 57.67 33.25 95.26 41.99 30.11 53.20 48.89 57.35 4.33 91.90 96.61 48.96 26.17 38.62 25.84 16.52 5.77 4.94 49.59 29.04 -39.30 65.29 40.42 5.96 17.01 8.71 63.42 36.49 79.65 28.91 36.36 65.76 10.33 4.16 23.81 56.17 94.41 4.23 10.51 37.15 32.02 33.00 62.26 78.97 37.48 46.28 47.19 8.62 82.67 81.06 52.75 12.86 4.91 65.13 73.90 92.34 44.49 19.36 97.32 2.45 43.39 28.46 40.17 27.06 48.17 15.76 2.92 17.84 7.47 23.34 91.40 71.92 98.17 68.22 66.47 77.18 89.50 94.64 1.14 55.70 93.22 11.94 47.70 30.61 53.46 7.27 38.13 71.62 29.37 10.47 33.35 12.78 72.05 14.54 10.90 31.16 5.06 94.39 76.57 90.29 35.77 12.25 57.85 14.85 80.28 78.25 73.09 37.13 28.38 7.90 90.60 27.22 18.10 94.88 93.89 99.17 63.98 14.79 22.94 83.77 -74.27 4.65 44.89 64.88 47.73 21.10 52.63 61.73 61.56 79.89 46.34 78.50 48.38 29.40 74.44 92.44 71.01 61.03 57.93 17.35 32.77 71.49 66.90 93.20 8.25 43.49 64.07 63.64 49.51 59.69 86.62 64.42 50.47 93.78 4.68 59.60 40.86 58.87 20.76 15.55 57.37 89.42 10.53 29.24 67.21 90.19 50.93 60.04 2.16 21.34 93.30 99.23 90.29 69.12 31.04 60.49 35.98 24.82 1.01 61.96 88.49 38.79 78.25 34.88 52.55 30.64 88.25 69.51 54.12 80.00 16.29 93.31 61.64 48.53 42.13 24.61 81.16 86.83 32.36 58.18 80.05 20.13 1.84 89.41 63.99 36.46 86.49 65.32 83.38 37.93 17.40 33.34 19.06 34.94 89.55 79.09 83.14 14.94 95.21 40.19 -14.55 6.83 60.11 85.32 57.60 49.40 74.28 11.87 41.47 63.59 17.22 0.87 32.31 4.15 23.41 85.59 48.42 3.47 54.28 56.36 45.30 75.09 49.19 51.41 10.77 36.26 68.48 93.32 44.20 61.38 34.86 0.36 58.82 40.41 70.53 40.58 21.93 39.82 92.62 35.28 39.30 65.05 99.90 34.26 31.87 52.86 63.15 94.19 57.28 61.60 76.31 25.95 73.03 15.57 69.84 84.94 53.97 97.09 12.78 92.43 45.69 54.51 46.98 55.21 97.00 6.21 17.51 73.52 28.59 64.43 62.05 67.21 63.82 44.83 31.79 9.51 76.59 93.00 63.32 40.04 0.42 49.69 44.26 23.78 59.09 8.69 54.19 84.60 84.77 14.81 1.57 80.29 65.28 36.70 17.14 90.35 48.12 87.81 76.91 71.12 -30.45 66.46 50.98 53.73 25.45 5.31 14.09 85.69 17.72 11.99 29.88 29.04 93.33 50.58 73.31 4.17 9.22 40.24 35.56 9.13 34.93 84.48 57.48 53.83 82.19 98.18 97.40 43.04 1.83 78.30 71.37 5.68 23.68 74.37 50.23 25.29 72.22 88.14 76.53 19.21 95.65 62.04 7.52 70.86 72.81 16.05 54.06 40.30 73.93 31.27 1.29 54.07 68.55 69.85 14.58 16.48 80.73 84.75 0.90 20.33 45.80 57.67 1.51 15.11 57.45 55.79 95.56 49.96 95.82 28.05 82.21 46.26 2.43 54.09 4.33 11.54 74.76 42.99 38.25 80.89 79.86 44.84 80.15 94.00 23.22 37.38 7.70 85.64 57.04 38.71 75.99 35.17 50.73 68.93 78.63 92.73 20.04 82.62 35.40 82.21 -93.49 21.99 12.82 93.31 46.94 11.20 14.55 11.29 66.58 78.34 90.49 67.38 50.93 72.33 57.98 21.85 34.62 29.06 66.70 94.41 67.38 83.79 43.30 22.34 54.09 38.12 52.76 22.72 89.01 34.47 57.52 43.92 72.66 36.68 45.28 48.94 22.93 39.95 74.81 23.40 82.12 20.46 64.80 89.35 50.88 84.47 95.01 81.59 95.01 53.40 44.58 29.94 80.23 36.42 25.94 76.29 58.36 88.53 27.87 87.16 71.04 39.64 52.85 19.53 90.90 17.76 74.27 44.83 63.88 36.71 58.16 8.24 44.47 0.27 2.71 26.82 92.29 27.52 26.62 50.23 16.15 10.13 24.15 55.22 99.73 38.97 59.94 43.80 90.70 55.71 67.61 73.49 87.75 99.28 5.23 74.11 89.42 5.92 52.56 52.11 -6.38 49.51 14.70 49.96 0.12 89.81 13.73 44.05 28.34 52.39 64.85 51.60 45.97 16.54 31.93 11.99 52.39 9.68 93.49 4.60 49.50 73.62 8.59 52.43 27.62 93.43 27.34 6.32 99.87 55.49 83.58 88.27 46.01 43.79 75.20 6.18 89.46 24.35 32.24 69.95 54.42 86.01 15.65 24.60 78.98 38.94 47.03 56.40 48.79 27.25 53.08 28.89 15.32 32.90 31.20 77.26 93.89 83.39 82.06 58.62 42.61 84.63 36.80 33.68 70.66 53.33 99.74 49.86 69.12 62.35 50.22 35.63 35.06 39.44 38.36 17.04 32.08 19.42 80.81 20.75 4.79 87.06 34.60 99.47 18.65 44.14 87.87 50.70 96.06 97.85 51.00 80.17 11.63 89.48 16.37 73.17 43.49 69.74 62.33 72.16 -20.50 69.79 59.17 11.34 63.67 87.64 93.47 86.67 93.30 39.20 69.89 25.45 36.63 16.68 77.49 15.67 33.22 5.45 51.18 68.53 19.62 15.34 96.63 71.19 57.84 71.65 55.87 23.65 10.42 54.66 36.85 1.80 70.10 32.20 37.15 62.43 53.53 48.24 33.96 88.76 91.18 76.67 69.80 85.12 62.36 68.37 46.03 11.61 90.65 48.20 21.57 63.05 25.96 72.84 42.77 11.29 14.83 59.96 33.68 43.92 63.54 49.48 55.87 27.93 75.31 24.02 5.72 49.64 41.86 94.85 50.61 57.57 91.72 57.62 66.99 23.04 44.68 85.11 9.02 68.09 37.11 24.60 92.52 29.51 30.65 28.75 87.59 36.28 67.39 7.46 72.61 37.99 56.99 93.62 69.04 48.54 44.09 58.21 83.53 71.95 -98.43 56.28 27.47 50.44 68.71 92.90 25.50 38.35 32.70 94.12 31.75 80.30 21.45 24.17 14.55 45.41 80.25 72.33 39.76 60.13 7.53 49.99 38.20 40.08 93.68 32.08 67.58 5.55 79.77 17.72 73.73 21.54 48.86 0.14 92.08 75.70 92.29 91.07 74.60 87.61 47.39 95.50 51.12 95.43 27.80 53.19 75.01 41.25 48.73 88.04 58.71 97.21 35.65 34.75 6.47 86.97 51.63 89.53 27.29 70.79 56.62 83.24 91.86 24.54 22.38 59.00 56.68 63.30 50.35 74.95 90.71 17.76 30.38 69.88 13.17 31.81 80.78 22.10 52.99 52.86 40.99 68.69 15.60 6.46 58.07 93.37 90.34 96.59 66.51 11.82 69.65 2.76 23.30 92.68 85.88 96.58 8.56 11.17 39.65 58.34 -72.04 7.31 99.60 35.94 49.89 37.61 28.13 25.80 43.36 49.11 1.58 80.59 85.97 74.44 14.11 27.09 40.45 44.76 15.15 51.27 86.55 71.19 61.13 55.44 35.64 41.54 1.18 42.63 63.65 94.75 6.02 98.52 84.60 14.50 21.08 20.18 98.74 25.86 98.92 70.07 90.14 76.22 60.34 66.37 44.14 47.78 38.24 48.30 79.33 65.10 29.37 59.65 42.18 9.40 22.43 90.28 21.64 56.22 43.06 31.71 1.07 57.60 2.10 29.39 8.06 72.57 6.82 97.87 61.71 77.05 18.74 2.58 62.35 44.63 50.59 76.68 66.39 96.21 76.27 18.47 75.29 45.50 20.38 21.78 94.51 23.14 81.04 87.32 23.15 42.82 41.64 36.91 97.97 46.77 15.43 51.66 32.50 80.51 9.25 82.60 -68.67 34.72 54.07 0.87 87.30 4.09 6.87 30.39 78.20 51.63 17.98 35.84 13.08 73.01 58.69 45.03 71.43 39.52 9.12 47.33 92.57 63.80 17.53 31.28 19.66 26.21 20.94 82.67 36.58 20.67 23.69 16.69 39.23 84.65 81.70 28.15 49.14 33.97 42.61 77.01 94.20 56.05 29.97 33.94 26.12 25.75 84.12 68.60 42.69 60.45 41.34 1.61 72.39 48.87 76.18 76.70 51.70 38.26 5.80 39.79 68.81 64.52 87.31 50.27 51.12 69.74 54.17 36.35 19.58 83.83 57.36 65.38 69.51 96.34 28.41 21.95 36.93 20.80 1.10 46.18 9.69 81.81 53.70 16.22 48.95 94.33 21.00 85.91 67.60 95.38 15.84 81.45 60.48 62.82 41.86 35.79 30.74 75.98 40.06 55.69 -50.09 16.73 41.75 51.15 93.03 74.70 57.54 13.85 91.88 42.86 97.22 68.09 6.96 68.14 75.30 67.50 98.92 90.25 82.60 79.81 2.53 54.96 56.97 26.01 37.07 24.80 30.32 43.39 18.36 47.75 68.02 97.48 67.75 56.55 88.95 16.57 73.59 33.50 18.21 95.22 3.41 33.00 16.16 96.89 55.38 58.25 21.80 7.70 38.81 17.02 87.38 35.26 25.94 54.62 2.01 94.11 4.48 26.29 17.68 84.83 35.56 54.96 18.23 59.22 73.53 71.88 70.59 34.91 63.60 31.57 33.25 16.75 50.96 50.68 52.29 64.17 20.57 5.44 16.34 38.65 20.56 2.14 7.32 74.48 99.00 72.02 64.29 57.09 96.84 6.54 87.64 9.59 55.77 57.96 54.84 58.20 12.37 8.37 45.69 4.54 -4.47 0.07 75.70 0.28 96.15 63.37 21.99 97.54 34.19 56.32 44.82 22.15 19.83 34.82 1.97 52.85 77.62 73.58 30.91 80.95 7.12 31.38 27.07 19.67 11.00 74.24 36.86 45.74 52.76 11.31 81.79 16.25 60.78 4.14 23.84 2.09 81.28 7.56 5.59 85.26 68.02 52.60 53.20 94.59 49.71 18.32 26.55 74.61 61.02 18.95 37.47 58.35 47.97 42.15 65.69 74.31 17.88 61.18 30.36 94.95 81.67 69.05 99.63 12.23 55.67 14.39 36.44 7.48 9.52 60.22 66.15 50.01 99.30 9.82 8.61 39.33 68.42 96.50 4.74 2.25 50.46 40.25 65.51 50.16 34.20 52.95 84.54 47.96 12.70 91.92 71.66 47.26 2.80 70.83 86.54 78.99 51.87 82.38 81.51 4.21 -81.21 54.97 1.84 2.34 93.18 20.10 38.09 54.61 22.49 84.39 30.05 97.26 69.39 2.90 46.03 30.04 72.82 37.49 74.04 2.13 43.21 40.65 93.09 15.75 8.93 95.23 98.38 95.07 53.67 69.22 19.72 36.41 71.75 46.02 50.43 40.53 56.29 63.30 81.22 83.26 25.69 34.20 37.45 81.49 64.54 74.30 73.00 90.73 31.88 36.39 3.32 91.04 72.41 24.93 94.99 61.81 34.64 50.04 46.42 14.17 78.71 50.10 11.55 87.24 53.31 78.05 38.04 35.05 94.79 85.51 43.22 10.84 54.04 48.45 32.00 33.49 35.40 79.71 87.17 41.16 23.72 83.91 67.39 3.54 55.73 72.53 22.42 52.63 69.33 92.98 18.90 30.87 98.32 53.96 0.16 28.31 86.49 55.95 86.52 44.36 -18.51 24.71 76.22 43.90 3.68 41.02 75.74 67.62 95.34 25.02 41.17 26.54 24.21 55.74 12.02 3.60 70.07 76.27 66.50 19.84 10.52 8.06 7.18 0.36 8.36 12.88 72.15 57.38 98.36 86.07 29.83 31.40 11.67 87.73 96.68 31.12 46.63 56.24 72.57 24.55 40.29 74.32 83.91 19.23 43.92 48.33 5.13 40.91 83.78 32.55 57.66 68.93 79.48 6.68 17.62 75.48 71.70 83.86 35.54 64.26 87.72 29.34 92.52 0.20 36.86 77.36 27.20 8.05 7.14 73.47 42.38 79.52 87.90 67.01 0.13 68.82 81.45 85.42 53.61 95.10 81.10 14.24 40.03 4.31 9.81 55.52 46.60 12.80 51.77 59.92 12.56 17.24 87.80 51.86 37.78 71.95 14.36 60.06 89.03 70.58 -96.00 3.27 34.95 25.20 94.61 62.16 7.39 49.69 66.91 22.60 78.28 87.86 37.29 76.92 2.44 26.41 18.17 13.76 94.08 0.10 49.68 38.74 69.43 50.56 73.19 99.19 31.20 72.44 69.28 8.98 8.48 66.79 71.95 29.53 86.94 26.71 8.90 79.13 99.66 36.05 0.03 99.75 96.48 21.18 72.47 36.24 53.38 84.33 89.33 23.79 73.04 10.43 12.53 84.75 89.99 47.47 19.74 13.05 64.72 71.35 93.17 0.01 45.79 75.16 16.44 77.52 59.77 19.18 8.15 72.72 38.54 55.24 21.04 75.24 15.57 76.97 72.96 66.53 17.52 53.72 42.61 58.88 50.94 50.83 53.62 51.26 99.31 14.73 76.62 12.95 82.52 82.09 71.25 44.91 73.08 28.17 62.40 66.60 19.19 30.14 -80.85 25.66 77.74 56.16 64.12 68.14 65.40 74.09 47.82 24.00 90.02 60.10 93.58 76.04 41.43 80.46 23.39 82.70 85.40 37.86 11.48 89.91 11.01 44.94 99.99 32.78 47.00 7.84 17.49 88.41 87.76 45.93 66.14 48.88 53.64 16.92 49.53 99.42 58.45 48.55 41.81 15.36 73.25 65.64 92.10 69.03 87.39 38.48 8.68 32.90 28.80 31.94 4.04 3.33 73.54 80.36 64.06 22.80 7.82 81.96 71.82 21.76 61.04 52.99 60.48 13.81 7.91 25.16 79.11 66.16 12.35 17.18 17.96 90.85 80.07 96.21 76.62 3.28 14.89 62.70 79.24 8.70 90.66 21.36 74.89 64.02 34.74 42.49 49.49 14.26 82.24 13.47 35.49 70.14 57.48 61.10 79.81 61.50 5.29 96.44 -32.44 66.62 21.48 67.23 56.64 53.61 94.45 47.08 83.07 28.61 74.67 5.07 57.14 6.96 58.27 22.60 35.43 12.97 46.81 25.20 65.99 89.86 23.54 50.40 39.81 28.66 50.84 17.54 55.68 60.69 92.85 17.96 0.78 84.23 97.13 74.29 15.42 24.07 98.51 57.69 13.52 1.94 63.86 20.63 81.06 53.48 10.16 22.48 32.71 98.23 61.55 44.62 25.69 18.15 45.34 45.38 58.13 42.32 21.32 63.38 31.09 68.16 2.68 21.49 40.43 37.11 92.86 11.57 64.81 60.83 47.82 30.45 93.76 32.11 67.08 17.67 42.25 37.87 53.13 96.12 84.65 67.76 36.78 62.62 93.01 10.87 74.90 10.34 13.07 63.64 11.21 22.97 95.31 27.72 63.33 95.44 74.62 79.88 49.31 20.46 -23.39 36.75 73.16 48.46 14.68 19.99 60.48 10.95 71.06 29.64 92.39 39.07 15.97 19.85 76.22 59.20 3.00 60.16 23.47 42.90 38.89 54.95 64.04 42.12 42.16 51.48 91.57 14.05 1.49 32.85 84.50 36.21 69.59 86.64 85.35 8.75 74.17 30.34 94.55 90.95 19.67 92.34 84.33 86.84 41.51 88.46 55.93 91.48 13.37 16.74 18.47 39.81 35.77 54.96 31.80 42.88 30.20 74.63 68.67 31.44 2.67 98.66 56.85 53.35 21.43 90.70 51.96 22.20 60.53 97.52 65.34 28.23 88.19 11.07 92.43 97.64 15.71 83.05 39.15 48.60 47.62 58.78 63.81 41.48 95.39 58.35 6.08 90.65 22.02 78.82 50.65 24.01 84.36 35.86 57.04 89.07 38.43 5.27 87.17 50.18 -93.84 82.18 19.36 40.91 43.81 9.75 53.30 14.91 76.37 81.26 45.86 80.04 86.05 4.00 90.66 94.37 72.38 48.19 77.27 88.72 31.61 74.39 16.31 71.22 52.33 46.80 32.34 4.75 91.88 64.22 25.89 52.11 4.92 62.99 8.31 17.99 53.35 72.66 98.49 92.97 80.08 2.68 36.76 9.31 14.55 2.45 21.99 40.71 44.03 33.55 73.65 63.59 45.90 17.79 18.52 55.37 34.08 63.91 3.82 32.71 9.15 53.43 92.53 39.74 34.82 80.93 63.61 95.95 68.35 53.89 17.09 95.19 62.23 50.35 1.66 17.85 90.93 20.97 19.52 71.96 18.01 20.14 2.58 79.69 17.81 55.14 6.54 54.68 21.39 49.90 96.63 46.72 84.68 25.17 20.16 13.20 18.71 47.97 73.44 54.24 -88.66 62.38 32.45 42.17 15.48 35.59 40.57 3.83 40.33 33.89 36.91 52.97 13.32 36.83 53.64 52.50 2.71 92.77 12.83 13.89 52.33 36.32 41.09 98.13 8.53 4.10 84.79 2.05 36.48 4.27 52.63 0.41 80.25 80.00 8.09 8.04 12.22 36.29 51.09 57.08 36.53 77.55 25.76 54.19 78.39 68.04 63.15 22.87 35.19 56.72 86.37 15.10 39.37 11.29 28.96 12.47 13.01 98.49 46.34 69.61 36.98 31.69 86.20 29.76 92.60 12.45 55.38 3.64 34.89 76.53 17.63 52.68 64.01 30.23 3.36 0.42 35.08 63.05 36.70 36.19 50.93 42.18 56.95 44.20 42.02 91.84 25.66 25.78 99.45 25.36 41.29 59.36 12.11 32.20 50.85 6.29 55.91 31.18 81.04 28.80 -26.68 17.32 97.46 34.55 0.25 53.65 49.33 95.78 1.55 65.14 28.12 85.31 62.23 65.44 99.11 48.25 25.95 66.71 70.09 34.52 28.12 78.24 49.33 40.70 14.76 11.78 18.53 90.24 82.14 64.95 91.46 57.51 15.17 8.64 6.06 32.53 23.51 44.59 3.52 98.05 64.92 25.18 58.44 21.85 81.57 30.35 46.55 29.90 82.35 18.18 64.46 42.13 77.47 7.54 54.37 50.33 96.59 18.59 36.70 16.69 21.54 40.37 55.67 91.36 29.06 2.82 23.62 97.30 96.02 24.84 7.66 7.65 89.63 15.86 21.26 70.12 85.83 89.48 91.36 95.46 79.97 96.11 48.51 64.42 28.33 99.41 21.47 74.27 76.30 66.07 3.85 52.87 53.22 87.04 37.61 37.62 89.32 28.33 32.21 88.29 -83.49 36.19 41.60 63.21 36.29 48.80 62.72 40.20 9.86 94.31 56.76 86.65 76.33 10.66 16.59 93.83 63.55 83.67 82.13 49.17 69.10 32.67 48.42 66.80 40.69 90.86 43.91 20.43 80.91 91.63 46.33 29.37 43.36 53.40 61.28 34.90 85.23 64.11 20.25 61.32 10.89 90.34 4.89 76.53 27.73 91.94 87.45 80.40 49.22 10.16 62.51 82.92 66.90 4.98 75.88 83.22 53.79 71.18 68.66 78.33 58.52 53.18 68.15 13.35 21.55 89.98 25.97 18.69 56.87 14.05 28.78 80.97 87.48 6.00 89.29 6.75 26.30 90.16 58.18 4.55 6.45 25.49 47.18 74.87 98.28 18.81 20.69 74.58 16.21 66.75 31.46 74.45 76.89 47.33 22.57 86.15 54.59 39.09 9.55 31.81 -87.31 55.48 63.09 79.63 1.77 2.91 65.80 67.31 62.38 93.55 49.68 69.98 38.91 32.85 33.75 16.43 14.84 63.19 91.71 54.06 14.79 94.15 75.02 12.19 37.47 81.33 19.02 61.75 26.57 54.34 51.40 15.55 35.83 91.19 77.27 23.84 23.42 90.64 36.50 17.69 60.70 0.08 91.16 85.68 16.69 97.06 54.27 83.22 22.63 93.93 40.20 74.69 77.05 53.27 15.52 7.68 39.48 13.35 27.54 39.70 18.26 13.84 34.85 58.10 27.06 9.42 37.17 37.46 68.31 24.77 2.25 13.95 47.72 45.77 18.01 58.63 16.49 98.07 45.07 23.74 35.02 28.48 47.55 66.10 15.78 21.73 44.09 83.93 21.12 79.47 38.65 57.34 35.12 75.52 20.77 6.70 29.58 8.26 38.15 99.07 -42.45 47.55 51.79 63.14 34.18 29.71 88.97 49.57 34.75 75.21 52.79 91.20 44.28 12.31 70.76 11.12 22.32 84.08 8.42 54.95 80.50 68.84 0.60 78.52 22.33 65.35 87.42 28.76 52.79 62.24 84.65 73.33 87.42 43.84 49.92 96.08 45.94 19.14 97.94 72.45 51.93 71.72 70.02 78.66 37.82 7.23 75.80 32.80 4.14 43.71 29.33 67.74 93.40 11.23 7.39 50.70 51.32 92.59 89.50 66.30 62.14 65.33 78.22 19.51 35.24 15.79 83.23 18.20 1.80 89.84 16.90 23.28 32.76 65.68 41.46 70.14 95.36 35.28 57.03 54.01 94.82 9.53 16.92 53.56 87.55 42.35 63.18 17.98 1.49 84.66 14.05 9.41 89.03 71.65 84.04 60.34 57.27 71.39 49.99 71.88 -58.46 16.54 58.25 95.58 94.81 1.98 16.35 22.52 90.23 42.75 9.10 9.94 88.35 13.71 17.03 54.52 70.40 8.17 78.34 27.95 75.86 54.40 66.13 99.01 44.67 12.17 16.99 20.13 21.67 10.82 34.73 5.12 51.11 65.23 84.87 3.48 51.09 50.02 32.65 23.38 95.53 25.01 83.68 95.45 52.23 92.27 43.60 45.74 21.08 56.41 7.28 4.77 94.78 61.10 47.41 85.19 20.83 82.36 93.33 12.14 48.05 69.11 98.32 15.81 20.80 57.63 91.92 97.83 89.88 23.77 16.72 1.50 61.42 93.24 58.88 28.51 15.48 3.73 43.81 1.69 41.77 17.63 81.94 3.78 18.35 68.78 4.32 27.52 70.13 90.38 0.55 9.39 14.90 71.64 80.17 3.82 64.94 91.07 40.70 75.95 -51.11 49.91 95.37 51.50 84.67 92.83 68.80 52.32 59.12 55.79 38.68 78.55 42.31 48.71 39.75 74.57 51.53 52.63 3.68 30.80 10.88 79.56 99.84 12.03 57.18 7.98 1.59 33.99 16.48 49.76 85.53 32.00 61.74 32.28 77.63 22.49 77.50 72.60 85.14 99.86 20.13 72.48 42.53 92.10 80.04 45.50 83.61 85.77 46.87 77.89 67.77 18.22 41.24 49.97 46.59 34.25 9.55 97.45 48.52 83.05 98.70 77.49 52.38 60.76 92.82 47.36 7.34 19.76 33.01 42.73 26.94 73.89 78.84 61.13 44.83 38.41 14.55 76.04 88.11 65.88 34.74 63.57 34.36 41.88 60.90 43.27 64.23 79.46 88.03 92.79 58.63 85.54 17.59 56.92 39.96 70.17 20.15 15.36 1.28 49.94 diff --git a/docs/examples/list_example.py b/docs/examples/list_example.py deleted file mode 100644 index 60f02538..00000000 --- a/docs/examples/list_example.py +++ /dev/null @@ -1,64 +0,0 @@ -# # List input variables -# -# This example demonstrates how to work with list input variables. -# -# A list variable is a generic collection type, whose elements can -# be scalars, records, or unions of such. A list with a consistent -# (non-union) element type can be provided as a NumPy recarray or a -# Pandas dataframe. - -from tempfile import TemporaryDirectory - -import flopy -import numpy as np - -# set up where simulation workspace will be stored -temp_dir = TemporaryDirectory() -workspace = temp_dir.name -name = "tutorial06_mf6_data" - -# create the Flopy simulation and tdis objects -sim = flopy.mf6.MFSimulation( - sim_name=name, exe_name="mf6", version="mf6", sim_ws=workspace -) -tdis = flopy.mf6.modflow.mftdis.ModflowTdis( - sim, - pname="tdis", - time_units="DAYS", - nper=2, - perioddata=[(1.0, 1, 1.0), (1.0, 1, 1.0)], -) -# create the Flopy groundwater flow (gwf) model object -model_nam_file = f"{name}.nam" -gwf = flopy.mf6.ModflowGwf(sim, modelname=name, model_nam_file=model_nam_file) -# create the flopy iterative model solver (ims) package object -ims = flopy.mf6.modflow.mfims.ModflowIms(sim, pname="ims", complexity="SIMPLE") -# create the discretization package -bot = np.linspace(-50.0 / 3.0, -3.0, 3) -delrow = delcol = 4.0 -dis = flopy.mf6.modflow.mfgwfdis.ModflowGwfdis( - gwf, - pname="dis", - nogrb=True, - nlay=3, - nrow=10, - ncol=10, - delr=delrow, - delc=delcol, - top=0.0, - botm=bot, -) - -# Below we pass the CHD package's `stress_period_data` as a list. - -# build chd package -stress_period_data = [((1, 8, 8), 100.0), ((1, 9, 9), 105.0)] -chd = flopy.mf6.modflow.mfgwfchd.ModflowGwfchd( - gwf, - pname="chd", - maxbound=len(stress_period_data), - stress_period_data=stress_period_data, - save_flows=True, -) - -# TODO: demo typed records diff --git a/docs/examples/quickstart.py b/docs/examples/quickstart.py new file mode 100644 index 00000000..d30b72b7 --- /dev/null +++ b/docs/examples/quickstart.py @@ -0,0 +1,45 @@ +from flopy4.mf6 import Sim, Tdis +from flopy4.mf6.gwf import Chd, Dis, Gwf, Ic, Npf, Oc + +# TODO rewrite bottom up + +ws = "./mymodel" +name = "mymodel" +sim = Sim(name=name, path=ws, exe="mf6") +tdis = Tdis(sim) +gwf = Gwf(sim, name=name, save_flows=True) +dis = Dis(gwf, nrow=10, ncol=10) +ic = Ic(gwf) +npf = Npf(gwf, save_specific_discharge=True) +chd = Chd( + gwf, + stress_period_data=[[(0, 0, 0), 1.0], [(0, 9, 9), 0.0]], +) + +# list input in the mf6 paradigm, just stored in xarray. +# this is straightforward to implement. even in flopy3? +assert all( + period == Chd.StressPeriodData((0, 0, 0), 1.0) + for period in chd.data["stress_period_data"] +) + +# adopt xarray paradigm. transpose lists to arrays. this +# is no longer "sparse": in the sense that lists specify +# features of interest, where arrays specify +# the entire domain. but to maximize the value of xarray +# we want to "align" everything to the discretization in +# both time and space. + +# assert chd.data["head"].loc(dict(k=0, i=0, j=0)) == 1. +# assert chd.data["head"].loc(dict(k=0, i=9, j=9)) == 0. + +oc = Oc( + gwf, + budget_filerecord=f"{name}.bud", + head_filerecord=f"{name}.hds", + saverecord=[("HEAD", "ALL"), ("BUDGET", "ALL")], +) + +# xarray style. this is how imod-python does it too. +# assert oc.data["save_head"] == "all" +# assert oc.data["save_budget"] == "all" diff --git a/docs/examples/quickstart_expanded.py b/docs/examples/quickstart_expanded.py new file mode 100644 index 00000000..74f70a54 --- /dev/null +++ b/docs/examples/quickstart_expanded.py @@ -0,0 +1,137 @@ +""" +We reproduce the FloPy README example. + +We ask the question how, in general, to +provide transient data to components. + +In particular we consider CHD and OC. + +Transient (i.e. stress period) data are +the worst-case limit of the data model +re: nesting depth and composite types. +Everything else is easier to represent. + +An important consideration is to what +degree FloPy should comport with the +existing MF6 specification and type +system defined in it, where it can +"interpret" the spec in a way more +natural for Python, and where it may +instead be better to update the spec. + +We explore a few options, some which +map directly to the spec as it exists, +some which take some liberties with it, +and some which would probably need DFN +changes to support. +""" + +from flopy4.mf6 import Sim, Tdis +from flopy4.mf6.gwf import Chd, Dis, Gwf, Ic, Npf, Oc + +ws = "./mymodel" +name = "mymodel" +sim = Sim(name=name, path=ws, exe="mf6") +tdis = Tdis(sim) +gwf = Gwf(sim, name=name, save_flows=True) +dis = Dis(gwf, nrow=10, ncol=10) +ic = Ic(gwf) +npf = Npf(gwf, save_specific_discharge=True) + +# CHD. first, nothing but builtins. +chd = Chd( + gwf, + # 1) tuples (like flopy3) + stress_period_data=[[(0, 0, 0), 1.0], [(0, 9, 9), 0.0]], + # + # (a tangential idea) + # "*" could mean "apply to all stress periods"? + # this is the default anyway if only one period + # is specified. "*" is just a bit more explicit + # stress_period_data={ + # "*": [[(0, 0, 0), 1.], [(0, 9, 9), 0.]] + # } + # + # 2) dictionaries + # stress_period_data=[ + # {(0, 0, 0): {"head": 1.}, (0, 9, 9): {"head": 0.}} + # ] + # + # 3) typed records + # stress_period_data=[ + # Chd.Period(cellid=(0, 0, 0), head=1.), + # Chd.Period(cellid=(0, 9, 9), head=0.), + # ], +) + +# alternatively, CHD with duck arrays. +# +# 4) xarray, scalar dtypes +# chd.data["head"].loc(dict(k=0, i=0, j=0)) = 1. +# chd.data["head"].loc(dict(k=0, i=9, j=9)) = 0. +# +# 5) xarray, object dtype +# chd.data["stress_period_data"].loc(dict(k=0, i=0, j=0)) = Chd.Period(head=1.) +# chd.data["stress_period_data"].loc(dict(k=0, i=9, j=9)) = Chd.Period(head=0.) +# +# 5a) xarray, object dtype, labeled vars (does this work? TODO test it) +# chd.data["stress_period_data"].loc(dict(k=0, i=0, j=0, var="head")) = 1. +# chd.data["stress_period_data"].loc(dict(k=0, i=9, j=9, var="head")) = 0. +# TODO does this work? +# chd.data["stress_period_data"].loc(dict(k=0, i=0, j=0)) = (1., 0.) +# chd.data["stress_period_data"].loc(dict(k=0, i=9, j=9)) = (0., 0.) + +# +# 6) sparse array +# spd = sparse.COO([[0,0], [0,9], [0,9]], [1., 0.]) +# chd = Chd(gwf, stress_period_data=spd) + +# OC. first with builtins +budget_file = name + ".bud" +head_file = name + ".hds" +oc = Oc( + gwf, + budget_filerecord=budget_file, + head_filerecord=head_file, + # 1) tuples (like flopy3) + perioddata=[("HEAD", "ALL"), ("BUDGET", "ALL")], + # 2) typed records + # save=[ + # Oc.Period(rtype="head", steps="all"), + # Oc.Period(rtype="budget", steps="all"), + # ], + # 3a) dicts, {period: {var: steps}} + # save={"*": {"head": "all", "budget": "all"}}, + # 3b) dicts, {var: {period: steps}} + # save={"head": {"*": "all"}, "budget": {"*": "all"}}, +) + +# OC with duck arrays. +# +# 4) xarray, scalar dtypes. this is how imod-python does it: +# https://deltares.github.io/imod-python/api/generated/mf6/imod.mf6.OutputControl.html +# oc.data["save_head"] = "all" +# oc.data["save_budget"] = "all" +# limitation: no support for 'steps a b c ...' syntax due to ragged nature. +# +# 5) xarray, object dtypes +# oc.data["save_head"] = Oc.Steps_("all") +# oc.data["save_budget"] = Oc.Steps_("all") +# this supports arbitrary step selections +# oc.data["save_budget"] = Oc.Steps_("steps", 1) + +# TODO? mock some output +# sim.write_simulation() +# sim.run_simulation() + + +# TODO? try to reproduce plots with xarray +# head = gwf.output.head().get_data() +# bud = gwf.output.budget() +# spdis = bud.get_data(text='DATA-SPDIS')[0] +# qx, qy, qz = flopy.utils.postprocessing.get_specific_discharge(spdis, gwf) +# pmv = flopy.plot.PlotMapView(gwf) +# pmv.plot_array(head) +# pmv.plot_grid(colors='white') +# pmv.contour_array(head, levels=[.2, .4, .6, .8], linewidths=3.) +# pmv.plot_vector(qx, qy, normalize=True, color="white") diff --git a/docs/examples/record_example.py b/docs/examples/record_example.py deleted file mode 100644 index 48d5cb07..00000000 --- a/docs/examples/record_example.py +++ /dev/null @@ -1,90 +0,0 @@ -# # Record and union variables -# -# This example demonstrates how to work with record and union input -# variables. -# -# A record variable is a product type. Record fields can be scalars, -# other record variables, or unions of such. -# -# A union (keystring) variable is a sum type. -# -# MODFLOW 6 represents records as (possibly variadic) tuples. FloPy -# supports both a low-level tuple interface for records, conforming -# to MODFLOW 6, and a high-level, strongly-typed record interface. - -# package import -from tempfile import TemporaryDirectory - -import flopy -import numpy as np - -# set up where simulation workspace will be stored -temp_dir = TemporaryDirectory() -workspace = temp_dir.name -name = "tutorial06_mf6_data" - -# create the Flopy simulation and tdis objects -sim = flopy.mf6.MFSimulation( - sim_name=name, exe_name="mf6", version="mf6", sim_ws=workspace -) -tdis = flopy.mf6.modflow.mftdis.ModflowTdis( - sim, - pname="tdis", - time_units="DAYS", - nper=2, - perioddata=[(1.0, 1, 1.0), (1.0, 1, 1.0)], -) -# create the Flopy groundwater flow (gwf) model object -model_nam_file = f"{name}.nam" -gwf = flopy.mf6.ModflowGwf(sim, modelname=name, model_nam_file=model_nam_file) -# create the flopy iterative model solver (ims) package object -ims = flopy.mf6.modflow.mfims.ModflowIms(sim, pname="ims", complexity="SIMPLE") -# create the discretization package -bot = np.linspace(-50.0 / 3.0, -3.0, 3) -delrow = delcol = 4.0 -dis = flopy.mf6.modflow.mfgwfdis.ModflowGwfdis( - gwf, - pname="dis", - nogrb=True, - nlay=3, - nrow=10, - ncol=10, - delr=delrow, - delc=delcol, - top=0.0, - botm=bot, -) - -# ## Adding MODFLOW Package Data, Connection Data, and Option Lists -# -# MODFLOW Package data, connection data, and option lists are stored by FloPy -# as numpy recarrays. FloPy does accept numpy recarrays as input, but does -# has other supported formats discussed below. -# -# MODFLOW option lists that only contain a single row or data can be either -# specified by: -# -# 1. Specifying a string containing the entire line as it would be displayed -# in the package file (`rewet_record="REWET WETFCT 1.0 IWETIT 1 IHDWET 0"`) -# 2. Specifying the data in a tuple within a list -# (`rewet_record=[("WETFCT", 1.0, "IWETIT", 1, "IHDWET", 0)]`) -# -# In the example below the npf package is created setting the `rewet_record` -# option to a string of text as would be typed into the package file. - -npf = flopy.mf6.modflow.mfgwfnpf.ModflowGwfnpf( - gwf, - rewet_record="REWET WETFCT 1.0 IWETIT 1 IHDWET 0", - pname="npf", - icelltype=1, - k=1.0, - save_flows=True, - xt3doptions="xt3d rhs", -) - -# `rewet_record` is then set using the npf package's `rewet_record` property. -# This time 'rewet_record' is defined using a tuple within a list. - -npf.rewet_record = [("WETFCT", 1.1, "IWETIT", 0, "IHDWET", 1)] - -# TODO: typed API demo diff --git a/flopy4/singledispatch/__init__.py b/docs/examples/stress_packages.py similarity index 100% rename from flopy4/singledispatch/__init__.py rename to docs/examples/stress_packages.py diff --git a/docs/examples/transient_example.py b/docs/examples/transient_example.py deleted file mode 100644 index d4787507..00000000 --- a/docs/examples/transient_example.py +++ /dev/null @@ -1,81 +0,0 @@ -# # Transient input variables - -# MODFLOW stress period data is stored by FloPy as a dictionary of numpy -# recarrays, where each dictionary key is a zero-based stress period and each -# dictionary value is a recarray containing the stress period data for that -# stress period. FloPy keeps this stress period data in a `MFTransientList` -# object and this data type is referred to as a transient list. -# -# FloPy accepts stress period data as a dictionary of numpy recarrays, but also -# supports replacing the recarrays with lists of tuples discussed above. -# Stress period data spanning multiple stress periods must be specified as a -# dictionary of lists where the dictionary key is the stress period expressed -# as a zero-based integer. -# -# The example below creates `stress_period_data` for the wel package with the -# first stress period containing a single well and the second stress period -# empty. When empty stress period data is entered FloPy writes an empty -# stress period block to the package file. - -from tempfile import TemporaryDirectory - -import flopy -import numpy as np - -# set up where simulation workspace will be stored -temp_dir = TemporaryDirectory() -workspace = temp_dir.name -name = "tutorial06_mf6_data" - -# create the Flopy simulation and tdis objects -sim = flopy.mf6.MFSimulation( - sim_name=name, exe_name="mf6", version="mf6", sim_ws=workspace -) -tdis = flopy.mf6.modflow.mftdis.ModflowTdis( - sim, - pname="tdis", - time_units="DAYS", - nper=2, - perioddata=[(1.0, 1, 1.0), (1.0, 1, 1.0)], -) -# create the Flopy groundwater flow (gwf) model object -model_nam_file = f"{name}.nam" -gwf = flopy.mf6.ModflowGwf(sim, modelname=name, model_nam_file=model_nam_file) -# create the flopy iterative model solver (ims) package object -ims = flopy.mf6.modflow.mfims.ModflowIms(sim, pname="ims", complexity="SIMPLE") -# create the discretization package -bot = np.linspace(-50.0 / 3.0, -3.0, 3) -delrow = delcol = 4.0 -dis = flopy.mf6.modflow.mfgwfdis.ModflowGwfdis( - gwf, - pname="dis", - nogrb=True, - nlay=3, - nrow=10, - ncol=10, - delr=delrow, - delc=delcol, - top=0.0, - botm=bot, -) - -# First we create wel package with stress_period_data dictionary -# keys as zero-based integers so key "0" is stress period 1 - -stress_period_data = { - 0: [((2, 3, 1), -25.0)], # stress period 1 well data - 1: [], -} # stress period 2 well data is empty - -# Then, using the dictionary created above, we build the wel package. - -wel = flopy.mf6.ModflowGwfwel( - gwf, - print_input=True, - print_flows=True, - stress_period_data=stress_period_data, - save_flows=False, - pname="WEL-1", -) - -# TODO typed API demo diff --git a/docs/examples/variables_example.py b/docs/examples/variables_example.py deleted file mode 100644 index 6f4e9c7b..00000000 --- a/docs/examples/variables_example.py +++ /dev/null @@ -1,85 +0,0 @@ -# Input variables -# -# TODO: flesh this out, describe prospective plan for type hints, -# determine whether we want to work directly with numpy or with -# e.g. xarray, etc. This will probably evolve for a while as we -# rework the prototype with c/attrs -# -# FloPy organizes input variables in components: simulations, models, -# packages, and subpackages. -# -# ```mermaid -# classDiagram -# Simulation *-- "1+" Package -# Simulation *-- "1+" Model -# Simulation *-- "1+" Variable -# Model *-- "1+" Package -# Model *-- "1+" Subpackage -# Model *-- "1+" Variable -# Package *-- "1+" Subpackage -# Package *-- "1+" Variable -# ``` -# -# Note that this is not identical to the underlying object model, which -# is yet to be determined. TODO: update this once we have a full prototype. -# -# # Variable types -# -# Variables are scalars, paths, arrays, or composite types: list, sum, union. -# -# MODFLOW 6 defines the following scalar types: -# -# - `keyword` -# - `integer` -# - `double precision` -# - `string` -# -# And the following composites: -# -# - `record`: product type -# - `keystring`: union type -# - `recarray`: list type -# -# Scalars may (and `recarray` must) have a `shape`. If a scalar has a `shape`, -# its type becomes a homogeneous scalar array. A `recarray` may contain records -# or unions of records as items. -# -# We map this typology roughly to the following in Python: -# -# TODO: update the following as we develop a more concrete idea of what -# type hints corresponding to the mf6 input data model will look like - -# + -from os import PathLike -from typing import ( - Any, - Iterable, - Tuple, - Union, -) - -from numpy.typing import ArrayLike -from pandas import DataFrame - -Scalar = Union[bool, int, float, str] -Path = PathLike -Array = ArrayLike -Record = Tuple[Union[Scalar, "Record"], ...] -Table = Union[Iterable[Record], DataFrame] -List = Iterable[Any] -Variable = Union[Scalar, Array, Record, Table, List] -# - - -# Note that: -# -# - Keystrings are omitted above, since a keystring simply becomes a -# `Union` of records or scalars. -# - List input may be regular (items all have the same record type) or -# irregular (items are unions of records). -# - A table is a special case of list input; since it is regular it can -# be represented as a dataframe. -# - While MODFLOW 6 typically formulates file path inputs as records with -# 3 fields (identifying keyword, `filein`/`fileout`, and filename), FloPy -# simply accepts `PathLike`. - -# TODO: demonstrate setting/accessing scalars in an options block diff --git a/flopy4/__init__.py b/flopy4/__init__.py index e69de29b..3f2d81ce 100644 --- a/flopy4/__init__.py +++ b/flopy4/__init__.py @@ -0,0 +1,406 @@ +from collections.abc import Mapping +from itertools import chain +from pathlib import Path +from typing import Annotated, Any, Optional, get_origin + +import attrs +import numpy as np +from attr import Attribute, fields_dict +from beartype.claw import beartype_this_package +from beartype.vale import Is, IsAttr, IsInstance +from flopy.discretization.grid import Grid +from flopy.discretization.modeltime import ModelTime +from numpy.typing import ArrayLike, NDArray +from xarray import Dataset, DataTree + +from flopy4.utils import reshape_array + +beartype_this_package() + + +Scalar = bool | int | float | str | Path +"""A scalar value.""" + +_IsAttrs = Annotated[object, Is[lambda obj: attrs.has(type(obj))]] +"""Runtime-applied type hint for `attrs` based class instances.""" + +_HasTree = Annotated[object, IsAttr["data", IsInstance[DataTree]]] +"""Runtime-applied type hint for objects with a `DataTree` in `.data`.""" + +_Component = Annotated[ + object, + ( + Is[lambda obj: attrs.has(type(obj))] + & IsAttr["data", IsInstance[DataTree]] + ), +] +""" +An `attrs`-based class with a `DataTree` in `.data`. +The minimal contract for component class instances. +""" + + +def get( + tree: DataTree, key: str, default: Optional[Any] = None +) -> Optional[Any]: + """ + Get a value with the given `name` from the given `tree` + node. Look first in its variables, then dims, then attrs. + If not found, return a `default`. Search is not recursive. + """ + + value = tree.get(key, None) + if value is not None: + if value.shape == (): + return value.item() + return value + value = tree.dims.get(key, None) + if value is not None: + return value + value = tree.attrs.get(key, None) + if value is not None: + return value + return default + + +def find( + tree: DataTree, + key: str, + default: Optional[Any] = None, +) -> Optional[Any]: + """ + Search for a value with the given `key` in the given `tree`, first + within its own `Dataset`, then depth-first from the root downwards. + A set of search paths can be provided to look in before continuing + with the unguided DFS. If a match is not found, return a `default`. + """ + + def _find_recursive(tree, key): + key = key.strip() + # this node first + value = get(tree, key, None) + if value is not None: + return value + # dfs over children + for node in tree.children.values(): + value = get(node, key, None) + if value is not None: + return value + result = _find_recursive(node, key) + if result is not None: + return result + return None + + return _find_recursive(tree.root, key) or default + + +def resolve_array( + self: _IsAttrs, + attr: Attribute, + value: ArrayLike, + tree: DataTree = None, + strict: bool = False, + **kwargs, +) -> Optional[NDArray]: + """ + Resolve an array-like value to the given variable's expected shape. + If the value is a collection, check if the shape matches. If scalar, + broadcast it to the expected shape. + + The shape is expected as a tuple of dimension names under key "dims" + in `attr.metadata`. + + Dimensions can be resolved from an optional `xarray.DataTree` or can + be passed in as kwargs. If a dimension cannot be resolved or found, + and `strict=False`, a `ValueError` is raised, otherwise `None` is + returned. + """ + value = value or attr.default + if value is None: + if strict: + raise ValueError( + f"Component class '{type(self).__name__}' array " + f"variable '{attr.name}' could not be resolved " + ) + return None + dims = attr.metadata.get("dims", None) + if not dims: + if strict: + raise ValueError( + f"Component class '{type(self).__name__}' array " + f"variable '{attr.name}' needs 'dims' metadata" + ) + return None + shape = [find(tree or DataTree(), key=dim, default=dim) for dim in dims] + shape = tuple( + [ + (dim if isinstance(dim, int) else kwargs.pop(dim, dim)) + for dim in shape + ] + ) + unresolved = [dim for dim in shape if not isinstance(dim, int)] + if any(unresolved): + if strict: + raise ValueError( + f"Component class '{type(self).__name__}' array " + f"variable '{attr.name}' failed dim resolution: " + f"{', '.join(unresolved)}" + ) + return None + return reshape_array(value, shape) + + +def bind_tree( + self: _Component, + parent: _Component = None, + children: Optional[Mapping[str, _Component]] = None, +): + """ + Bind a given component to a parent component, linking the + two components and their data trees. If the parent is not + the tree's root, rebind it to recursively up to the root. + + Also attach any child components to the given component's + data tree, as well as to any non-`attrs` attributes whose + name matches a child's name. + + TODO: this is massively duplicative, since each component + has a subtree of its own, next to the one its parent owns + and in which its tree appears. need to have a single tree + at the root, then each component's data is a view into it. + """ + + cls = type(self) + name = self.data.name + spec = fields_dict(cls) + + # bind parent + if parent: + # try binding first by name + parent_spec = fields_dict(type(parent)) + parent_var = parent_spec.get(name, None) + if parent_var: + assert parent_var.metadata.get("bind", False) + setattr(parent, name, self) + # TODO bind multipackages by type + # parent_bindings = { + # n: v + # for n, v in parent_spec.items() + # if v.metadata.get("bind", False) + # } + # print(parent_bindings) + if name in parent.data: + parent.data.update({name: self.data}) + else: + parent.data = parent.data.assign({name: self.data}) + self.data = parent.data[self.data.name] + + # bind grandparent + grandparent = getattr(parent, "parent", None) + if grandparent is not None: + bind_tree(parent, parent=grandparent) + + self.parent = parent + + # bind children + self.children = children + for n, c in (children or {}).items(): + v = spec.get(n, None) + if v and v.metadata.get("bind", False): + self.data.update({n: c.data}) + setattr(self, n, c) + bind_tree(c, parent=self) + + +def init_tree( + self: _IsAttrs, + name: Optional[str] = None, + parent: Optional[_HasTree] = None, + children: Optional[Mapping[str, _HasTree]] = None, + **kwargs, +): + """ + Initialize a data tree for a component class instance. + + Notes + ----- + This method must run after the default `__init__()`. + + The tree is built from the class' `attrs` fields, i.e. + spirited from the instance's `__dict__` into the tree, + which is attached to the instance as `self.data`. The + `__dict__` is empty after this method runs, and field + access is proxied to the tree. + + The class cannot use slots for this to work. + """ + + cls = type(self) + spec = fields_dict(cls) + dimensions = set() + coordinates = {} + array_vars = {} + scalar_vars = {} + array_vals = {} + scalar_vals = {} + components = {} + children = children or {} + + for var in spec.values(): + bind = var.metadata.get("bind", False) + if bind: + components[var.name] = var + continue + dims = var.metadata.get("dims", None) + if dims is None: + scalar_vars[var.name] = var + continue + dimensions.update(dims) + array_vars[var.name] = var + + def _yield_scalars(spec, vals): + for var in spec.values(): + val = vals.pop(var.name, var.default) + yield (var.name, val) + + scalar_vals = dict( + list(_yield_scalars(spec=scalar_vars, vals=self.__dict__)) + ) + + def _yield_arrays(spec, vals): + for var in spec.values(): + dims = var.metadata["dims"] + val = resolve_array( + self, + var, + value=vals.pop(var.name, var.default), + tree=parent.data.root if parent else None, + **{**scalar_vals, **kwargs}, + ) + if val is not None: + yield (var.name, (dims, val)) + + array_vals = dict(list(_yield_arrays(spec=array_vars, vals=self.__dict__))) + + self.data = DataTree( + Dataset( + data_vars=array_vals, + attrs={ + n: v for n, v in scalar_vals.items() if n not in dimensions + }, + ), + name=name or cls.__name__.lower(), + children={n: c.data for n, c in children.items()}, + ) + + bind_tree(self, parent=parent, children=children) + + +def getattribute(self: _Component, name: str) -> Any: + """ + Proxy `attrs` attribute access, returning values from + an `xarray.DataTree` in `self.data`. + + Notes + ----- + Override `__getattr__` with this in classes fulfilling + the `_Component` contract. + """ + + if name == "data": + raise AttributeError + + cls = type(self) + spec = fields_dict(cls) + tree = self.data + var = spec.get(name, None) + if var: + value = get(tree, name, None) + if value is not None: + return value + + raise AttributeError + + +def setattribute(self: _Component, attr: Attribute, value: Any): + """ + Intercept values sent to an `attrs` attribute, and + set corresponding variables in an `xarray.DataTree` + in `self.data`. + + Notes + ----- + For the `on_setattr` hook in `_Component` classes. + """ + cls = type(self) + spec = fields_dict(cls) + if attr.name not in spec: + raise AttributeError(f"{cls.__name__} has no attribute {attr.name}") + if value is None or not hasattr(self, "data"): + return value + if get_origin(attr.type) in [list, np.ndarray]: + shape = attr.metadata["dims"] + value = resolve_array(self, attr, value) + value = (shape, value) + bind = attr.metadata.get("bind", False) + if bind: + self.data = self.data.assign({attr.name: value.data}) + return value + self.data.update({attr.name: value}) + + +def component(maybe_cls: Optional[type[_IsAttrs]] = None) -> type[_Component]: + """ + Attach a data tree to an `attrs` class instance, and use + the data tree for attribute storage: intercept gets/sets + such that the class continues to act like normal `attrs` + classes, but attributes are proxied into the data tree. + + Notes + ----- + For this to work, the `attrs` class cannot use slots. + """ + + def wrap(cls): + init_self = cls.__init__ + spec = fields_dict(cls) + + def init(self, *args, **kwargs): + name = kwargs.pop("name", None) + children = kwargs.pop("children", None) + parent = args[0] if args and any(args) else None + + # use dims from grid and modeltime, if provided + dim_kwargs = {} + dims_used = set( + chain(*[var.metadata.get("dims", []) for var in spec.values()]) + ) + grid: Grid = kwargs.pop("grid", None) + time: ModelTime = kwargs.pop("time", None) + if grid: + grid_dims = ["nlay", "nrow", "ncol", "nnodes"] + for dim in grid_dims: + if dim in dims_used: + dim_kwargs[dim] = getattr(grid, dim) + if time: + time_dims = ["nper", "ntstp"] + for dim in time_dims: + if dim in dims_used: + dim_kwargs[dim] = getattr(time, dim) + + # run the original __init__, then set up the tree + init_self(self, **kwargs) + init_tree( + self, name=name, parent=parent, children=children, **dim_kwargs + ) + + # override attribute access + cls.__getattr__ = getattribute + + cls.__init__ = init + return cls + + if maybe_cls is None: + return wrap + + return wrap(maybe_cls) diff --git a/flopy4/array.py b/flopy4/array.py deleted file mode 100644 index 0559da97..00000000 --- a/flopy4/array.py +++ /dev/null @@ -1,574 +0,0 @@ -import math -import re -from enum import Enum -from io import StringIO -from pathlib import Path -from typing import Optional - -import numpy as np -from flopy.utils.flopy_io import line_strip, multi_line_strip - -from flopy4.constants import CommonNames -from flopy4.param import MFParam, MFReader - - -class NumPyArrayMixin: - """ - Provides NumPy interoperability for `MFArray` implementations. - This mixin makes an `MFArray` behave like a NumPy `ndarray`. - - Resources - --------- - - https://numpy.org/doc/stable/user/basics.interoperability.html - - https://numpy.org/doc/stable/user/basics.ufuncs.html#ufuncs-basics - - """ - - def __iadd__(self, other): - if self.layered: - for mfa in self._value: - mfa += other - return self - - self._value += other - return self - - def __imul__(self, other): - if self.layered: - for mfa in self._value: - mfa *= other - return self - - self._value *= other - return self - - def __isub__(self, other): - if self.layered: - for mfa in self._value: - mfa -= other - return self - - self._value -= other - return self - - def __itruediv__(self, other): - if self.layered: - for mfa in self._value: - mfa /= other - return self - - self._value /= other - return self - - def __ifloordiv__(self, other): - if self.layered: - for mfa in self._value: - mfa /= other - return self - - self._value /= other - return self - - def __ipow__(self, other): - if self.layered: - for mfa in self._value: - mfa /= other - return self - - self._value **= other - return self - - def __add__(self, other): - if self.layered: - for mfa in self._value: - mfa += other - return self - - self._value += other - return self - - def __mul__(self, other): - if self.layered: - for mfa in self._value: - mfa *= other - return self - - self._value *= other - return self - - def __sub__(self, other): - if self.layered: - for mfa in self._value: - mfa -= other - return self - - self._value -= other - return self - - def __truediv__(self, other): - if self.layered: - for mfa in self._value: - mfa /= other - return self - - self._value /= other - return self - - def __floordiv__(self, other): - if self.layered: - for mfa in self._value: - mfa /= other - return self - - self._value /= other - return self - - def __pow__(self, other): - if self.layered: - for mfa in self._value: - mfa /= other - return self - - self._value **= other - return self - - def __iter__(self): - for i in self.raw.ravel(): - yield i - - def min(self): - return np.nanmin(self.value) - - def mean(self): - return np.nanmean(self.value) - - def median(self): - return np.nanmedian(self.value) - - def max(self): - return np.nanmax(self.value) - - def std(self): - return np.nanstd(self.value) - - def sum(self): - return np.nansum(self.value) - - -class MFArrayType(Enum): - """ - How a MODFLOW 6 input array is represented in an input file. - - """ - - internal = "INTERNAL" - constant = "CONSTANT" - external = "OPEN/CLOSE" - - @classmethod - def to_string(cls, how): - return cls(how).value - - @classmethod - def from_string(cls, string): - for e in MFArrayType: - if string.upper() == e.value: - return e - - -class MFArray(MFParam, NumPyArrayMixin): - """ - A MODFLOW 6 array backed by a 1-dimensional NumPy array, - which is reshaped as needed for various views. Supports - array indexing as well as standard NumPy array ufuncs. - """ - - def __init__( - self, - shape, - array=None, - how=MFArrayType.internal, - factor=None, - block=None, - name=None, - type=None, - longname=None, - description=None, - deprecated=False, - in_record=False, - layered=False, - optional=True, - numeric_index=False, - preserve_case=False, - repeating=False, - tagged=False, - reader=MFReader.urword, - default_value=None, - path: Optional[Path] = None, - ): - MFParam.__init__( - self, - block=block, - name=name, - type=type, - longname=longname, - description=description, - deprecated=deprecated, - in_record=in_record, - layered=layered, - optional=optional, - numeric_index=numeric_index, - preserve_case=preserve_case, - repeating=repeating, - tagged=tagged, - reader=reader, - shape=shape, - default_value=default_value, - ) - self._value = array - self._shape = shape - self._how = how - self._factor = factor - self._path = path - - def __getitem__(self, item): - return self.raw[item] - - def __setitem__(self, key, value): - values = self.raw - values[key] = value - if self.layered: - for ix, mfa in enumerate(self._value): - mfa[:] = values[ix] - return - - values = values.ravel() - if self._how == MFArrayType.constant: - if not np.allclose(values, values[0]): - self._how = MFArrayType.internal - self._value = values - else: - self._value = values[0] - else: - self._value = values - - def __array_ufunc__(self, ufunc, method, *inputs, **kwargs): - raw = self.raw - if len(inputs) == 1: - result = raw.__array_ufunc__(ufunc, method, raw, **kwargs) - else: - result = raw.__array_ufunc__( - ufunc, method, raw, *inputs[1:], kwargs - ) - if not isinstance(result, np.ndarray): - raise NotImplementedError(f"{str(ufunc)} has not been implemented") - - if result.shape != self._shape: - raise AssertionError( - f"{str(ufunc)} is not supported for inplace operations on " - f"MFArray objects" - ) - - tmp = [None for _ in self._shape] - self.__setitem__(slice(*tmp), result) - return self - - @property - def value(self) -> Optional[np.ndarray]: - """ - Return the array. - """ - if self._value is None: - return None - - if self.layered: - arr = [] - for mfa in self._value: - arr.append(mfa.value) - return np.array(arr) - - if self._how == MFArrayType.constant: - return np.ones(self._shape) * self._value * self.factor - else: - return self._value.reshape(self._shape) * self.factor - - @value.setter - def value(self, value: Optional[np.ndarray]): - if value is None: - return - - if value.shape != self.shape: - raise ValueError( - f"Expected array with shape {self.shape}," - f"got shape {value.shape}" - ) - self._value = value - - @property - def raw(self): - """ - Return the array without multiplying by `self.factor`. - """ - if self.layered: - arr = [] - for mfa in self._value: - arr.append(mfa.raw) - return np.array(arr) - - if self._how == MFArrayType.constant: - return np.ones(self._shape) * self._value - else: - return self._value.reshape(self._shape) - - @property - def factor(self) -> Optional[float]: - """ - Optional factor by which to multiply array elements. - """ - if self.layered: - factor = [mfa.factor for mfa in self._value] - return factor - - factor = self._factor - if self._factor is None: - factor = 1.0 - return factor - - @property - def how(self): - """ - How the array is to be written to the input file. - """ - if self.layered: - how = [mfa.how for mfa in self._value] - return how - - return self._how - - def write(self, f, **kwargs): - PAD = " " - if self.layered: - f.write(f"{PAD}" + f"{self.name.upper()} LAYERED\n") - for mfa in self._value: - values = mfa.raw - if mfa._how == MFArrayType.internal: - if len(values.shape) == 1: - v = f"{PAD * 3}" - v += " ".join([str(x) for x in values]) - v += "\n" - elif len(values.shape) == 2: - v = f"\n{PAD * 3}" - v = v.join(" ".join(str(x) for x in y) for y in values) - elif len(values.shape) == 3: - v = f"{PAD * 3}" - for i in range(len(values)): - v += " ".join( - f"\n{PAD * 3}" + " ".join(str(x) for x in y) - for y in values[i] - ) - lines = f"{PAD * 2}" + f"{MFArrayType.to_string(mfa._how)}" - if mfa._factor: - lines += f" FACTOR {mfa._factor}" - lines += f"\n{PAD * 3}" + f"{v}\n" - elif mfa._how == MFArrayType.external: - lines = ( - f"{PAD * 2}" + f"{MFArrayType.to_string(mfa._how)} " - f"{mfa._path}\n" - ) - elif mfa._how == MFArrayType.constant: - lines = ( - f"{PAD * 2}" + f"{MFArrayType.to_string(mfa._how)} " - f"{str(mfa._value)}\n" - ) - f.write(lines) - else: - values = self.raw - if self._how == MFArrayType.internal: - if len(values.shape) == 1: - v = f"\n{PAD * 3}" - v += " ".join([str(x) for x in values]) - elif len(values.shape) == 2: - v = f"\n{PAD * 3}" - v = v.join(" ".join(str(x) for x in y) for y in values) - elif len(values.shape) == 3: - v = f"{PAD * 3}" - for i in range(len(values)): - v += " ".join( - f"\n{PAD * 3}" + " ".join(str(x) for x in y) - for y in values[i] - ) - lines = ( - f"{PAD}" + f"{self.name.upper()}\n" - f"{PAD * 2}" + f"{MFArrayType.to_string(self._how)}" - ) - if self._factor: - lines += f" FACTOR {self._factor}" - lines += f"{v}\n" - elif self._how == MFArrayType.external: - lines = ( - f"{PAD}" + f"{self.name.upper()}\n" - f"{PAD * 2}" - + f"{MFArrayType.to_string(self._how)} {self._path}\n" - ) - elif self._how == MFArrayType.constant: - lines = ( - f"{PAD}" + f"{self.name.upper()}\n" - f"{PAD * 2}" + f"{MFArrayType.to_string(self._how)} " - f"{str(self._value)}\n" - ) - f.write(lines) - - @classmethod - def load(cls, f, cwd, shape, header=True, **kwargs): - layered = kwargs.pop("layered", False) - - if header: - tokens = multi_line_strip(f).split() - name = tokens[0] - kwargs.pop("name", None) - if len(tokens) > 1 and tokens[1] == "layered": - layered = True - else: - name = kwargs.pop("name", None) - - model_shape = kwargs.pop("model_shape", None) - params = kwargs.pop("blk_params", {}) - mempath = kwargs.pop("mempath", None) - atype = kwargs.get("type", None) - - if atype is not None: - if atype == "integer": - dtype = np.int32 - elif atype == "double": - dtype = np.float64 - else: - raise ValueError("array spec type not defined") - - if model_shape and isinstance(shape, str): - if shape == "(nodes)": - n = math.prod([x for x in model_shape]) - shape = n - else: - shape = model_shape - elif params and "dimensions" in params: - if isinstance(shape, str): - if "dis" in mempath.split("/"): - nlay = params.get("dimensions").get("nlay") - nrow = params.get("dimensions").get("nrow") - ncol = params.get("dimensions").get("ncol") - shape = (nlay, nrow, ncol) - elif "disv" in mempath.split("/"): - nlay = params.get("dimensions").get("nlay") - ncpl = params.get("dimensions").get("ncpl") - nvert = params.get("dimensions").get("nvert") - if shape == "(ncpl)": - shape = ncpl - elif shape == "(ncpl, nlay)": - shape = (nlay, ncpl) - elif shape == "(nvert)": - shape = nvert - elif "disu" in mempath.split("/"): - nodes = params.get("dimensions").get("nodes") - nja = params.get("dimensions").get("nja") - if "nodes" in shape: - shape = nodes - elif "nja" in shape: - shape = nja - if layered: - nlay = shape[0] - lshp = shape[1:] - objs = [] - for _ in range(nlay): - mfa = cls._load(f, cwd, lshp, dtype=dtype, name=name) - objs.append(mfa) - - return MFArray( - shape, - array=np.array(objs, dtype=object), - type="array", - how=None, - factor=None, - name=name, - layered=True, - ) - else: - kwargs.pop("layered", None) - return cls._load( - f, - cwd, - shape, - layered=layered, - dtype=dtype, - name=name, - **kwargs, - ) - - @classmethod - def _load(cls, f, cwd, shape, layered=False, dtype=None, **kwargs): - control_line = multi_line_strip(f).split() - - if CommonNames.iprn.lower() in control_line: - idx = control_line.index(CommonNames.iprn.lower()) - control_line.pop(idx + 1) - control_line.pop(idx) - - how = MFArrayType.from_string(control_line[0]) - extpath = None - clpos = 1 - - if how == MFArrayType.internal: - array = cls.read_array(f, dtype) - - elif how == MFArrayType.constant: - if dtype == np.float64: - array = float(control_line[clpos]) - else: - array = int(control_line[clpos]) - clpos += 1 - - elif how == MFArrayType.external: - extpath = Path(control_line[clpos]) - fpath = cwd / extpath - with open(fpath) as foo: - array = cls.read_array(foo, dtype) - clpos += 1 - - else: - raise NotImplementedError() - - factor = None - if len(control_line) > 2: - if dtype == np.float64: - factor = float(control_line[clpos + 1]) - else: - factor = int(control_line[clpos + 1]) - - return cls( - shape, - array=array, - how=how, - factor=factor, - path=extpath, - **kwargs, - ) - - @staticmethod - def read_array(f, dtype): - """ - Read a MODFLOW 6 array from an open file - into a flat NumPy array representation. - """ - - astr = [] - while True: - pos = f.tell() - line = f.readline() - line = line_strip(line) - if not re.match("^[-0-9. ]+$", line): - f.seek(pos, 0) - break - astr.append(line) - - astr = StringIO(" ".join(astr)) - array = np.genfromtxt(astr, dtype=dtype).ravel() - return array diff --git a/flopy4/block.py b/flopy4/block.py deleted file mode 100644 index a74edf4b..00000000 --- a/flopy4/block.py +++ /dev/null @@ -1,365 +0,0 @@ -from abc import ABCMeta -from collections import OrderedDict, UserDict -from dataclasses import asdict -from io import StringIO -from keyword import kwlist -from pprint import pformat -from typing import Any, Dict, Optional -from warnings import warn - -from flopy4.array import MFArray -from flopy4.compound import MFKeystring, MFList, MFRecord, get_compound -from flopy4.param import MFParam, MFParams -from flopy4.scalar import MFScalar -from flopy4.utils import find_upper, strip - - -def get_param(params: Dict[str, MFParam], block: str, name: str) -> MFParam: - """ - Find the block parameter with the given name. The parameter may be - a constituent of a compound `MFRecord` or `MFKeystring` parameter. - """ - - param = params.get(block) - # TODO: assumes MFList param name is block name - if param and isinstance(param, MFList): - param.name = block - else: - param = next(iter(get_compound(params, scalar=name).values()), None) - - if param is None: - param = params.get(name) - if param is None: - raise ValueError(f"Invalid parameter: {name}") - param.name = name - return param - - -def collect_params( - attrs: Dict[str, Any], - block_name: Optional[str] = None, -) -> Dict[str, MFParam]: - """ - Select package parameter specification attributes in the - given dictionary of class attributes. Set each parameter's - name (to the attribute name) and docstring (via `__doc__`, - to the parameter's description). - """ - - params = dict() - for name, attr in attrs.items(): - if not issubclass(type(attr), MFParam): - continue - attr.__doc__ = attr.description - attr.name = name - if block_name is not None: - attr.block = block_name - params[name] = attr - return params - - -class MFBlockMeta(type): - """ - Modify the creation of `MFBlock` subclasses to search the block's - class attributes, find any which are MF6 input parameters, set up - those parameters' attributes, and attach a `.params` attribute as - the parameter specification. - - TODO: specify parameters via `attrs` with leading underscore, to - avoid collisions with Python keywords. Then we only attach a non- - underscored attribute if there is no collision. Parameters whose - name collides with a reserved keyword are accessible only by way - of the block's dictionary API. - - """ - - def __new__(cls, clsname, bases, attrs): - if clsname == "MFBlock": - return super().__new__(cls, clsname, bases, attrs) - - # infer block name - block_name = ( - clsname[list(find_upper(clsname))[1] :] - .replace("Block", "") - .lower() - ) - - # collect parameters - params = collect_params(attrs, block_name) - attrs["params"] = MFParams(params) - for name, param in params.items(): - if name in kwlist: - warn(f"Parameter name is a reserved keyword: {name}") - else: - attrs[name] = param - - return super().__new__(cls, clsname, bases, attrs) - - -class MFBlockMappingMeta(MFBlockMeta, ABCMeta): - # http://www.phyast.pitt.edu/~micheles/python/metatype.html - pass - - -class MFBlock(MFParams, metaclass=MFBlockMappingMeta): - """ - MF6 input block. Maps parameter names to parameters. - - - Notes - ----- - This class is dynamically subclassed by `MFPackage` - to match each block within a package parameter set. - - Supports dictionary and attribute access. The class - attributes specify the block's parameters. Instance - attributes expose the parameter value. - - The block's name and index are discovered upon load. - Likewise the parameter values are populated on load. - They can also be initialized by passing a dictionary - of names/values to `params` when calling `__init__`. - Only recognized parameters (i.e. parameters known to - the block specification) are allowed. - """ - - def __init__( - self, - name: Optional[str] = None, - index: Optional[int] = None, - params: Optional[Dict[str, Any]] = None, - ): - self.name = name - self.index = index - - # if a parameter mapping is provided, coerce it to the - # spec and set default values - if params is not None: - params = type(self).coerce(params, set_default=True) - - super().__init__(params=params) - - def __getattribute__(self, name: str) -> Any: - self_type = type(self) - - # shortcut to parameter value for instance attribute. - # the class attribute is the parameter specification. - if name in self_type.params: - return self.value[name] - - # add .params attribute as an alias for .value, this - # overrides the class attribute with the param spec. - if name == "params": - return self.value - - return super().__getattribute__(name) - - def __str__(self): - buffer = StringIO() - self.write(buffer) - return buffer.getvalue() - - def __eq__(self, other): - return super().__eq__(other) - - @property - def value(self): - """Get a dictionary of block parameter values.""" - return MFParams.value.fget(self) - - @value.setter - def value(self, value): - """Set block parameter values from a dictionary.""" - - if value is None or not any(value): - return - - # coerce the parameter mapping to the spec and set defaults - params = type(self).coerce(value.copy(), set_default=True) - MFParams.value.fset(self, params) - - @classmethod - def coerce( - cls, params: Dict[str, Any], set_default: bool = False - ) -> Dict[str, MFParam]: - """ - Check that the dictionary contains only expected parameters, - raising an error if any unrecognized parameters are provided. - - Dictionary values may be subclasses of `MFParam` or values - provided directly. If the former, this function optionally - sets default values for any missing member parameters. - """ - - known = dict() - for param_name, param_spec in cls.params.copy().items(): - param = params.pop(param_name, param_spec) - - # make sure param is of expected type. set a - # default value if enabled and none provided. - spec_type = type(param_spec) - real_type = type(param) - if issubclass(real_type, MFParam): - if param.value is None and set_default: - param.value = param_spec.default_value - elif issubclass(spec_type, MFScalar) and real_type == spec_type.T: - param = spec_type(value=param, **asdict(param_spec)) - else: - raise TypeError( - f"Expected '{param_name}' as {spec_type}, got {real_type}" - ) - - known[param_name] = param - - # raise an error if we have any unknown parameters. - # `MFBlock` strictly disallows unrecognized params, - # for arbitrary parameter collections use `MFParams`. - if any(params): - raise ValueError(f"Unrecognized parameters:\n{pformat(params)}") - - return known - - @classmethod - def load(cls, f, **kwargs): - """Load the block from file.""" - name = None - index = None - found = False - period = False - params = dict() - members = cls.params - - mempath = kwargs.pop("mempath", None) - - while True: - pos = f.tell() - line = f.readline() - if line == "": - raise ValueError("Early EOF, aborting") - if line == "\n" or line.lstrip().startswith("#"): - continue - words = strip(line).lower().split() - if period: - key = "stress_period_data" - else: - key = words[0] - if key == "begin": - found = True - name = words[1] - if len(words) > 2 and str.isdigit(words[2]): - index = int(words[2]) - if name == "period": - period = True - elif key == "end": - break - elif found: - ptype = None - param = get_param(members, block=name, name=key) - - if param is None: - continue - param.block = name - f.seek(pos) - spec = asdict(param) - kwrgs = {**kwargs, **spec} - ptype = type(param) - - if ptype is MFList: - kwrgs["params"] = param.data.copy() - elif ptype is MFRecord: - kwrgs["params"] = param.data.copy() - elif ptype is MFKeystring: - kwrgs["params"] = param.data.copy() - elif ptype is MFArray: - # TODO: inject from model somehow? - # and remove special handling here - kwrgs["cwd"] = "" - # kwrgs["type"] = param.type - kwrgs["mempath"] = f"{mempath}/{name}" - if ptype is not MFArray and ptype is not MFList: - kwrgs.pop("model_shape", None) - kwrgs.pop("blk_params", None) - - params[param.name] = ptype.load(f, **kwrgs) - period = False - - return cls(name=name, index=index, params=params) - - def write(self, f): - """Write the block to file.""" - index = self.index if self.index is not None else "" - begin = f"BEGIN {self.name.upper()} {index}\n" - end = f"END {self.name.upper()}\n\n" - - f.write(begin) - super().write(f) - f.write(end) - - -class MFBlocks(UserDict): - """ - Mapping of block names to blocks. Acts like a - dictionary, also supports named attribute access. - """ - - def __init__(self, blocks=None): - MFBlocks.assert_blocks(blocks) - super().__init__(blocks) - for key, block in self.items(): - setattr(self, key, block) - - def __repr__(self): - return pformat(self.data) - - def __eq__(self, other): - if not isinstance(other, MFBlocks): - raise TypeError(f"Expected MFBlocks, got {type(other)}") - return OrderedDict(sorted(self.value)) == OrderedDict( - sorted(other.value) - ) - - @staticmethod - def assert_blocks(blocks): - """ - Raise an error if any of the given items are - not subclasses of `MFBlock`. - """ - if not blocks: - return - elif isinstance(blocks, dict): - blocks = blocks.values() - not_blocks = [ - b - for b in blocks - if b is not None and not issubclass(type(b), MFBlock) - ] - if any(not_blocks): - raise TypeError(f"Expected MFBlock subclasses, got {not_blocks}") - - @property - def value(self) -> Dict[str, Dict[str, Any]]: - """ - Get a dictionary of package block values. This is a - nested mapping of block names to blocks, where each - block is a mapping of parameter names to parameter - values. - """ - return {k: v.value for k, v in self.items()} - - @value.setter - def value(self, value: Optional[Dict[str, Dict[str, Any]]]): - """Set block values from a nested dictionary.""" - - if value is None or not any(value): - return - - blocks = value.copy() - MFBlocks.assert_blocks(blocks) - self.update(blocks) - for key, block in self.items(): - setattr(self, key, block) - - def write(self, f, **kwargs): - """Write the blocks to file.""" - for block in self.values(): - block.write(f, **kwargs) diff --git a/flopy4/compound.py b/flopy4/compound.py deleted file mode 100644 index f0ca4e30..00000000 --- a/flopy4/compound.py +++ /dev/null @@ -1,490 +0,0 @@ -from abc import abstractmethod -from dataclasses import asdict -from io import StringIO -from typing import Any, Dict, Optional - -import numpy as np - -from flopy4.array import MFArray, MFArrayType -from flopy4.param import MFParam, MFParams, MFReader -from flopy4.scalar import MFScalar -from flopy4.utils import strip - -PAD = " " - - -def get_compound( - params: Dict[str, MFParam], scalar: str = None -) -> Dict[str, "MFCompound"]: - """ - Find compound parameters in the given parameter collection, - optionally filtering by a scalar parameter name. - """ - compounds = dict() - for name, param in params.items(): - if isinstance(param, (MFRecord, MFKeystring, MFList)): - if scalar is None or scalar in param: - compounds[name] = param - return compounds - - -class MFCompound(MFParam, MFParams): - @abstractmethod - def __init__( - self, - params, - block=None, - name=None, - type=None, - longname=None, - description=None, - deprecated=False, - in_record=False, - layered=False, - optional=True, - numeric_index=False, - preserve_case=False, - repeating=False, - tagged=False, - reader=MFReader.urword, - shape=None, - default_value=None, - ): - MFParams.__init__(self, {k: p.with_name(k) for k, p in params.items()}) - MFParam.__init__( - self, - block, - name, - type, - longname, - description, - deprecated, - in_record, - layered, - optional, - numeric_index, - preserve_case, - repeating, - tagged, - reader, - shape, - default_value, - ) - - @property - def params(self) -> MFParams: - """Component parameters.""" - return MFParams(self.data) - - @property - def value(self) -> Dict[str, Any]: - """Get component names/values.""" - return { - k: s.value for k, s in self.data.items() if s.value is not None - } - - @value.setter - def value(self, value: Optional[Dict[str, Any]]): - """Set component names/values.""" - - if value is None: - return - - for key, val in value.items(): - self.data[key].value = val - - -class MFRecord(MFCompound): - def __init__( - self, - params, - block=None, - name=None, - type=None, - longname=None, - description=None, - deprecated=False, - in_record=False, - layered=False, - optional=True, - numeric_index=False, - preserve_case=False, - repeating=False, - tagged=False, - reader=MFReader.urword, - shape=None, - default_value=None, - ): - super().__init__( - params=params, - block=block, - name=name, - type=type, - longname=longname, - description=description, - deprecated=deprecated, - in_record=in_record, - layered=layered, - optional=optional, - numeric_index=numeric_index, - preserve_case=preserve_case, - repeating=repeating, - tagged=tagged, - reader=reader, - shape=shape, - default_value=default_value, - ) - - @classmethod - def load(cls, f, params, **kwargs) -> "MFRecord": - """Load a record with the given component parameters from a file.""" - line = strip(f.readline()).lower() - - if not any(line): - raise ValueError("Record line may not be empty") - - split = line.split() - kwargs["name"] = split.pop(0).lower() - line = " ".join(split) - return cls(MFRecord.parse(line, params, **kwargs), **kwargs) - - @staticmethod - def parse(line, params, **kwargs) -> Dict[str, MFScalar]: - """Parse a record with the given component parameters from a string.""" - - loaded = dict() - for param_name, param in params.items(): - split = line.split() - stype = type(param) - words = len(param) - head = " ".join(split[:words]) - tail = " ".join(split[words:]) - line = tail - kwrgs = {**kwargs, **asdict(param)} - with StringIO(head) as f: - loaded[param_name] = stype.load(f, **kwrgs) - - return loaded - - def write(self, f, **kwargs): - """Write the record to file.""" - f.write(f"{PAD}{self.name.upper()}") - last = len(self) - 1 - for i, param in enumerate(self.data.values()): - param.write(f, newline=i == last, **kwargs) - - -class MFKeystring(MFCompound): - def __init__( - self, - params, - block=None, - name=None, - type=None, - longname=None, - description=None, - deprecated=False, - in_record=False, - layered=False, - optional=True, - numeric_index=False, - preserve_case=False, - repeating=False, - tagged=False, - reader=MFReader.urword, - shape=None, - default_value=None, - ): - super().__init__( - params=params, - block=block, - name=name, - type=type, - longname=longname, - description=description, - deprecated=deprecated, - in_record=in_record, - layered=layered, - optional=optional, - numeric_index=numeric_index, - preserve_case=preserve_case, - repeating=repeating, - tagged=tagged, - reader=reader, - shape=shape, - default_value=default_value, - ) - - @classmethod - def load(cls, f, params, **kwargs) -> "MFKeystring": - """Load the keystring from file.""" - loaded = dict() - - while True: - pos = f.tell() - line = strip(f.readline()).lower() - if line == "": - raise ValueError("Early EOF") - if line == "\n": - continue - - split = line.split() - key = split[0] - - if key == "end": - f.seek(pos) - break - - param = params.pop(key) - kwrgs = {**kwargs, **asdict(param)} - with StringIO(line) as ff: - loaded[key] = type(param).load(ff, **kwrgs) - - return cls(loaded, **kwargs) - - def write(self, f, **kwargs): - """Write the keystring to file.""" - super().write(f, **kwargs) - - -class MFScalarList(MFScalar[type]): - def __init__( - self, - value=None, - block=None, - name=None, - type=None, - longname=None, - description=None, - deprecated=False, - in_record=False, - layered=False, - optional=True, - numeric_index=False, - preserve_case=False, - repeating=False, - tagged=False, - reader=MFReader.urword, - shape=None, - default_value=None, - ): - super().__init__( - value, - block, - name, - type, - longname, - description, - deprecated, - in_record, - layered, - optional, - numeric_index, - preserve_case, - repeating, - tagged, - reader, - shape, - default_value, - ) - - def __len__(self): - return len(self._value) - - -class MFList(MFCompound): - def __init__( - self, - params, - block=None, - name=None, - type=None, - longname=None, - description=None, - deprecated=False, - in_record=False, - layered=False, - optional=True, - numeric_index=False, - preserve_case=False, - repeating=False, - tagged=False, - reader=MFReader.urword, - shape=None, - default_value=None, - ): - super().__init__( - params=params, - block=block, - name=name, - type=type, - longname=longname, - description=description, - deprecated=deprecated, - in_record=in_record, - layered=layered, - optional=optional, - numeric_index=numeric_index, - preserve_case=preserve_case, - repeating=repeating, - tagged=tagged, - reader=reader, - shape=shape, - default_value=default_value, - ) - - @classmethod - def load(cls, f, **kwargs) -> "MFList": - """Load list input with the given component parameters from a file.""" - - blk_params = kwargs.pop("blk_params", {}) - model_shape = kwargs.pop("model_shape", None) - params = kwargs.pop("params", None) - kwargs.pop("mname", None) - kwargs.pop("shape", None) # e.g. maxbound - - jidx = -1 - param_lists = [] - param_cols = [] - param_types = [] - for k in list(params): - if params[k].name == "aux" or params[k].name == "boundname": - continue - # raise NotImplementedError( - # "boundames and auxvars not yet supported in period blocks" - # ) - pcols = 0 - if ( - params[k].shape is None - or params[k].shape == "" - or params[k].shape == "(:)" - ): - pcols = 1 - elif params[k].shape == "(ncelldim)": - assert model_shape - pcols = len(model_shape) - elif params[k].shape == "(ncvert)": - # param_cols will be updated each line - jidx = len(param_cols) - 1 - else: - raise ValueError( - f"MFList param {params[k].name} has " - f"unsupported shape {params[k].shape}" - ) - param_cols.append(pcols) - param_types.append(params[k].type) - param_lists.append(list()) - - if list(params.items())[-1][1].shape == "(:)": - maxsplit = sum(param_cols) - 1 - else: - maxsplit = -1 - assert not (jidx >= 0 and maxsplit >= 0) - - while True: - pos = f.tell() - line = f.readline() - if line == "\n" or line.lstrip().startswith("#"): - continue - elif line.lower().startswith("end"): - f.seek(pos) - break - else: - tokens = strip(line).split(maxsplit=maxsplit) - if jidx >= 0: - param_cols[jidx + 1] = int(tokens[jidx]) - assert len(tokens) == sum(param_cols) - icol = 0 - for i in range(len(param_types)): - row_l = [] - for j in range(param_cols[i]): - if param_types[i] == "integer": - row_l.append(int(tokens[icol])) - elif param_types[i] == "double": - row_l.append(float(tokens[icol])) - else: - row_l.append(tokens[icol]) - icol += 1 - if param_cols[i] == 1: - param_lists[i].append(row_l[0]) - else: - param_lists[i].append(row_l) - - if blk_params and "dimensions" in blk_params: - nbound = blk_params.get("dimensions").get("nbound") - if nbound: - for param_list in param_lists: - if len(param_list) > nbound: - raise ValueError("MFList nbound not satisfied") - - list_params = MFList.create_list_params( - params, param_lists, param_cols, **kwargs - ) - return cls(list_params, **kwargs) - - @staticmethod - def create_list_params( - params: Dict[str, MFParam], - param_lists: list, - param_cols: list, - **kwargs, - ) -> Dict[str, MFParam]: - """Create the param dictionary""" - idx = 0 - list_params = dict() - for param_name, param in params.items(): - if param_name == "aux" or param_name == "boundname": - continue - shape = None - if param_cols[idx] == 1: - shape = len(param_lists[idx]) - else: - shape = (len(param_lists[idx]), param_cols[idx]) - if type(param) is MFArray and param.type == "double": - list_params[param_name] = MFArray( - shape=shape, - array=np.array(param_lists[idx], dtype=np.float64), - how=MFArrayType.internal, - factor=1.0, - path=None, - **kwargs, - ) - elif type(param) is MFArray and param.type == "integer": - list_params[param_name] = MFArray( - shape=shape, - array=np.array(param_lists[idx], dtype=np.int32), - how=MFArrayType.internal, - factor=1, - path=None, - **kwargs, - ) - else: - list_params[param_name] = MFScalarList( - value=param_lists[idx], - # type=type(param), - **kwargs, - ) - - idx += 1 - return list_params - - def write(self, f, **kwargs): - """Write the list to file.""" - # TODO: numpy numeric data, remove trailing tab - PAD = " " - count = 0 - - for name, param in self.params.items(): - if count == 0: - count = len(param.value) - else: - assert len(param.value) == count - for i in range(count): - line = f"{PAD}" - for name, param in self.params.items(): - if isinstance(param.value[i], np.ndarray): - for v in param.value[i]: - line += f"{v}\t" - else: - line += f"{param.value[i]}\t" - f.write(line + "\n") diff --git a/flopy4/constants.py b/flopy4/constants.py deleted file mode 100644 index 5682b04e..00000000 --- a/flopy4/constants.py +++ /dev/null @@ -1,41 +0,0 @@ -from enum import Enum - - -class CommonNames: - iprn = "IPRN" - internal = "INTERNAL" - constant = "CONSTANT" - external = "OPEN/CLOSE" - format = "FORMAT" - structured = "structured" - vertex = "vertex" - unstructured = "unstructured" - empty = "" - end = "END" - - -class MFFileInout(Enum): - filein = "filein" - fileout = "fileout" - - @classmethod - def from_str(cls, value): - for e in cls: - if value.lower() == e.value: - return e - - -class MFReader(Enum): - """ - MF6 procedure with which to read input. - """ - - urword = "urword" - u1ddbl = "u1dbl" - readarray = "readarray" - - @classmethod - def from_str(cls, value): - for e in cls: - if value.lower() == e.value: - return e diff --git a/flopy4/dfn.py b/flopy4/dfn.py deleted file mode 100644 index 212a02ef..00000000 --- a/flopy4/dfn.py +++ /dev/null @@ -1,101 +0,0 @@ -from pathlib import Path - -import toml - - -class Dfn: - def __init__(self, component, subcomponent, dfn, *args, **kwargs): - self._component = component - self._subcomponent = subcomponent - self._dfn = dfn - - def __getitem__(self, key): - return self._dfn["block"][key] - - def __setitem__(self, key, value): - self._dfn["block"][key] = value - - def __delitem__(self, key): - del self._dfn["block"][key] - - def __iter__(self): - return iter(self._dfn["block"]) - - def __len__(self): - return len(self._dfn["block"]) - - @property - def component(self): - return self._component - - @property - def subcomponent(self): - return self._subcomponent - - @property - def blocknames(self): - return self._dfn["blocknames"] - - @property - def dfn(self): - return self._dfn - - def blocktags(self, blockname) -> list: - return list(self._dfn["block"][blockname]) - - def block(self, blockname) -> dict: - return self._dfn["block"][blockname] - - def param(self, blockname, tagname) -> dict: - return self._dfn["block"][blockname][tagname] - - @classmethod - def load(cls, f, metadata=None): - p = Path(f) - - if not p.exists(): - raise ValueError("Invalid DFN path") - - component, subcomponent = p.stem.split("-") - data = toml.load(f) - - return cls(component, subcomponent, data, **metadata) - - -class DfnSet: - def __init__(self, *args, **kwargs): - self._dfns = dict() - - def __getitem__(self, key): - return self._dfns[key] - - def __setitem__(self, key, value): - self._dfns[key] = value - - def __delitem__(self, key): - del self._dfns[key] - - def __iter__(self): - return iter(self._dfns) - - def __len__(self): - return len(self._dfns) - - def add(self, key, dfn): - if key in self._dfns: - raise ValueError("DFN exists in container") - - self._dfns[key] = dfn - - def get(self, key): - if key not in self._dfns: - raise ValueError("DFN does not exist in container") - - return self._dfns[key] - - # def get(self, component, subcomponent): - # key = f"{component.lower()}-{subcomponent.lower()}" - # if key not in self._dfns: - # raise ValueError("DFN does not exist in container") - # - # return self._dfns[key] diff --git a/flopy4/ispec/exg_gwfgwf.py b/flopy4/ispec/exg_gwfgwf.py deleted file mode 100644 index 35cc9fef..00000000 --- a/flopy4/ispec/exg_gwfgwf.py +++ /dev/null @@ -1,512 +0,0 @@ -# generated file -from flopy4.array import MFArray -from flopy4.compound import MFRecord, MFList -from flopy4.package import MFPackage -from flopy4.scalar import MFDouble, MFFilename, MFInteger, MFKeyword, MFString - - -class ExgGwfgwf(MFPackage): - multipkg = False - stress = False - advanced = False - - auxiliary = MFString( - type = "string", - block = "options", - shape = "(naux)", - reader = "urword", - optional = True, - longname = -"""keyword to specify aux variables""", - description = -"""an array of auxiliary variable names. There is no limit on the number -of auxiliary variables that can be provided. Most auxiliary variables -will not be used by the GWF-GWF Exchange, but they will be available -for use by other parts of the program. If an auxiliary variable with -the name ``ANGLDEGX'' is found, then this information will be used as -the angle (provided in degrees) between the connection face normal and -the x axis, where a value of zero indicates that a normal vector -points directly along the positive x axis. The connection face normal -is a normal vector on the cell face shared between the cell in model 1 -and the cell in model 2 pointing away from the model 1 cell. -Additional information on ``ANGLDEGX'' and when it is required is -provided in the description of the DISU Package. If an auxiliary -variable with the name ``CDIST'' is found, then this information will -be used in the calculation of specific discharge within model cells -connected by the exchange. For a horizontal connection, CDIST should -be specified as the horizontal distance between the cell centers, and -should not include the vertical component. For vertical connections, -CDIST should be specified as the difference in elevation between the -two cell centers. Both ANGLDEGX and CDIST are required if specific -discharge is calculated for either of the groundwater models.""", - ) - - boundnames = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""""", - description = -"""REPLACE boundnames {'{#1}': 'GWF Exchange'}""", - ) - - print_input = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""keyword to print input to list file""", - description = -"""keyword to indicate that the list of exchange entries will be echoed -to the listing file immediately after it is read.""", - ) - - print_flows = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""keyword to print gwfgwf flows to list file""", - description = -"""keyword to indicate that the list of exchange flow rates will be -printed to the listing file for every stress period in which ``SAVE -BUDGET'' is specified in Output Control.""", - ) - - save_flows = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""keyword to save GWFGWF flows""", - description = -"""keyword to indicate that cell-by-cell flow terms will be written to -the budget file for each model provided that the Output Control for -the models are set up with the ``BUDGET SAVE FILE'' option.""", - ) - - cell_averaging = MFString( - type = "string", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""conductance weighting option""", - description = -"""is a keyword and text keyword to indicate the method that will be used -for calculating the conductance for horizontal cell connections. The -text value for CELL_AVERAGING can be ``HARMONIC'', ``LOGARITHMIC'', or -``AMT-LMK'', which means ``arithmetic-mean thickness and logarithmic- -mean hydraulic conductivity''. If the user does not specify a value -for CELL_AVERAGING, then the harmonic-mean method will be used.""", - ) - - cvoptions = MFRecord( - type = "record", - params = { - "variablecv": MFKeyword(), - "dewatered": MFKeyword(), - }, - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""vertical conductance options""", - description = -"""none""", - ) - - variablecv = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""keyword to activate VARIABLECV option""", - description = -"""keyword to indicate that the vertical conductance will be calculated -using the saturated thickness and properties of the overlying cell and -the thickness and properties of the underlying cell. If the DEWATERED -keyword is also specified, then the vertical conductance is calculated -using only the saturated thickness and properties of the overlying -cell if the head in the underlying cell is below its top. If these -keywords are not specified, then the default condition is to calculate -the vertical conductance at the start of the simulation using the -initial head and the cell properties. The vertical conductance -remains constant for the entire simulation.""", - ) - - dewatered = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""keyword to activate DEWATERED option""", - description = -"""If the DEWATERED keyword is specified, then the vertical conductance -is calculated using only the saturated thickness and properties of the -overlying cell if the head in the underlying cell is below its top.""", - ) - - newton = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""keyword to activate Newton-Raphson""", - description = -"""keyword that activates the Newton-Raphson formulation for groundwater -flow between connected, convertible groundwater cells. Cells will not -dry when this option is used.""", - ) - - xt3d = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""keyword to activate XT3D""", - description = -"""keyword that activates the XT3D formulation between the cells -connected with this GWF-GWF Exchange.""", - ) - - gnc_filerecord = MFRecord( - type = "record", - params = { - "gnc6": MFKeyword(), - "filein": MFKeyword(), - "gnc6_filename": MFString(), - }, - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""""", - description = -"""""", - ) - - filein = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""file keyword""", - description = -"""keyword to specify that an input filename is expected next.""", - ) - - gnc6 = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""gnc6 keyword""", - description = -"""keyword to specify that record corresponds to a ghost-node correction -file.""", - ) - - gnc6_filename = MFString( - type = "string", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""gnc6 input filename""", - description = -"""is the file name for ghost node correction input file. Information -for the ghost nodes are provided in the file provided with these -keywords. The format for specifying the ghost nodes is the same as -described for the GNC Package of the GWF Model. This includes -specifying OPTIONS, DIMENSIONS, and GNCDATA blocks. The order of the -ghost nodes must follow the same order as the order of the cells in -the EXCHANGEDATA block. For the GNCDATA, noden and all of the nodej -values are assumed to be located in model 1, and nodem is assumed to -be in model 2.""", - ) - - mvr_filerecord = MFRecord( - type = "record", - params = { - "mvr6": MFKeyword(), - "filein": MFKeyword(), - "mvr6_filename": MFString(), - }, - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""""", - description = -"""""", - ) - - mvr6 = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""obs keyword""", - description = -"""keyword to specify that record corresponds to a mover file.""", - ) - - mvr6_filename = MFString( - type = "string", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""mvr6 input filename""", - description = -"""is the file name of the water mover input file to apply to this -exchange. Information for the water mover are provided in the file -provided with these keywords. The format for specifying the water -mover information is the same as described for the Water Mover (MVR) -Package of the GWF Model, with two exceptions. First, in the PACKAGES -block, the model name must be included as a separate string before -each package. Second, the appropriate model name must be included -before package name 1 and package name 2 in the BEGIN PERIOD block. -This allows providers and receivers to be located in both models -listed as part of this exchange.""", - ) - - obs_filerecord = MFRecord( - type = "record", - params = { - "obs6": MFKeyword(), - "filein": MFKeyword(), - "obs6_filename": MFString(), - }, - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""""", - description = -"""""", - ) - - obs6 = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""obs keyword""", - description = -"""keyword to specify that record corresponds to an observations file.""", - ) - - obs6_filename = MFString( - type = "string", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""obs6 input filename""", - description = -"""is the file name of the observations input file for this exchange. See -the ``Observation utility'' section for instructions for preparing -observation input files. Table ref{table:gwf-obstypetable} lists -observation type(s) supported by the GWF-GWF package.""", - ) - - dev_interfacemodel_on = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""activate interface model on exchange""", - description = -"""activates the interface model mechanism for calculating the -coefficients at (and possibly near) the exchange. This keyword should -only be used for development purposes.""", - ) - - nexg = MFInteger( - type = "integer", - block = "dimensions", - shape = "", - reader = "urword", - optional = False, - longname = -"""number of exchanges""", - description = -"""keyword and integer value specifying the number of GWF-GWF exchanges.""", - ) - - cellidm1 = MFInteger( - type = "integer", - block = "exchangedata", - shape = "", - reader = "urword", - optional = False, - longname = -"""cellid of first cell""", - description = -"""is the cellid of the cell in model 1 as specified in the simulation -name file. For a structured grid that uses the DIS input file, -CELLIDM1 is the layer, row, and column numbers of the cell. For a -grid that uses the DISV input file, CELLIDM1 is the layer number and -CELL2D number for the two cells. If the model uses the unstructured -discretization (DISU) input file, then CELLIDM1 is the node number for -the cell.""", - ) - - cellidm2 = MFInteger( - type = "integer", - block = "exchangedata", - shape = "", - reader = "urword", - optional = False, - longname = -"""cellid of second cell""", - description = -"""is the cellid of the cell in model 2 as specified in the simulation -name file. For a structured grid that uses the DIS input file, -CELLIDM2 is the layer, row, and column numbers of the cell. For a -grid that uses the DISV input file, CELLIDM2 is the layer number and -CELL2D number for the two cells. If the model uses the unstructured -discretization (DISU) input file, then CELLIDM2 is the node number for -the cell.""", - ) - - ihc = MFInteger( - type = "integer", - block = "exchangedata", - shape = "", - reader = "urword", - optional = False, - longname = -"""integer flag for connection type""", - description = -"""is an integer flag indicating the direction between node n and all of -its m connections. If IHC = 0 then the connection is vertical. If IHC -= 1 then the connection is horizontal. If IHC = 2 then the connection -is horizontal for a vertically staggered grid.""", - ) - - cl1 = MFDouble( - type = "double", - block = "exchangedata", - shape = "", - reader = "urword", - optional = False, - longname = -"""connection distance""", - description = -"""is the distance between the center of cell 1 and the its shared face -with cell 2.""", - ) - - cl2 = MFDouble( - type = "double", - block = "exchangedata", - shape = "", - reader = "urword", - optional = False, - longname = -"""connection distance""", - description = -"""is the distance between the center of cell 2 and the its shared face -with cell 1.""", - ) - - hwva = MFDouble( - type = "double", - block = "exchangedata", - shape = "", - reader = "urword", - optional = False, - longname = -"""horizontal cell width or area for vertical flow""", - description = -"""is the horizontal width of the flow connection between cell 1 and cell -2 if IHC $>$ 0, or it is the area perpendicular to flow of the -vertical connection between cell 1 and cell 2 if IHC = 0.""", - ) - - aux = MFArray( - type = "double", - block = "exchangedata", - shape = "(naux)", - reader = "urword", - optional = True, - longname = -"""auxiliary variables""", - description = -"""represents the values of the auxiliary variables for each GWFGWF -Exchange. The values of auxiliary variables must be present for each -exchange. The values must be specified in the order of the auxiliary -variables specified in the OPTIONS block.""", - ) - - boundname = MFString( - type = "string", - block = "exchangedata", - shape = "", - reader = "urword", - optional = True, - longname = -"""exchange boundname""", - description = -"""REPLACE boundname {'{#1}': 'GWF Exchange'}""", - ) - - exchangedata = MFList( - type = "recarray", - params = { - "cellidm1": cellidm1, - "cellidm2": cellidm2, - "ihc": ihc, - "cl1": cl1, - "cl2": cl2, - "hwva": hwva, - "aux": aux, - "boundname": boundname, - }, - block = "exchangedata", - shape = "(nexg)", - reader = "urword", - optional = False, - longname = -"""exchange data""", - description = -"""""", - ) \ No newline at end of file diff --git a/flopy4/ispec/gwe_dis.py b/flopy4/ispec/gwe_dis.py deleted file mode 100644 index 712ccab3..00000000 --- a/flopy4/ispec/gwe_dis.py +++ /dev/null @@ -1,269 +0,0 @@ -# generated file -from flopy4.array import MFArray -from flopy4.compound import MFRecord, MFList -from flopy4.package import MFPackage -from flopy4.scalar import MFDouble, MFFilename, MFInteger, MFKeyword, MFString - - -class GweDis(MFPackage): - multipkg = False - stress = False - advanced = False - - length_units = MFString( - type = "string", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""model length units""", - description = -"""is the length units used for this model. Values can be ``FEET'', -``METERS'', or ``CENTIMETERS''. If not specified, the default is -``UNKNOWN''.""", - ) - - nogrb = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""do not write binary grid file""", - description = -"""keyword to deactivate writing of the binary grid file.""", - ) - - xorigin = MFDouble( - type = "double", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""x-position of the model grid origin""", - description = -"""x-position of the lower-left corner of the model grid. A default -value of zero is assigned if not specified. The value for XORIGIN -does not affect the model simulation, but it is written to the binary -grid file so that postprocessors can locate the grid in space.""", - ) - - yorigin = MFDouble( - type = "double", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""y-position of the model grid origin""", - description = -"""y-position of the lower-left corner of the model grid. If not -specified, then a default value equal to zero is used. The value for -YORIGIN does not affect the model simulation, but it is written to the -binary grid file so that postprocessors can locate the grid in space.""", - ) - - angrot = MFDouble( - type = "double", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""rotation angle""", - description = -"""counter-clockwise rotation angle (in degrees) of the lower-left corner -of the model grid. If not specified, then a default value of 0.0 is -assigned. The value for ANGROT does not affect the model simulation, -but it is written to the binary grid file so that postprocessors can -locate the grid in space.""", - ) - - export_array_ascii = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""export array variables to layered ascii files.""", - description = -"""keyword that specifies input griddata arrays should be written to -layered ascii output files.""", - ) - - export_array_netcdf = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""export array variables to netcdf output files.""", - description = -"""keyword that specifies input griddata arrays should be written to the -model output netcdf file.""", - ) - - ncf_filerecord = MFRecord( - type = "record", - params = { - "ncf6": MFKeyword(), - "filein": MFKeyword(), - "ncf6_filename": MFString(), - }, - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""""", - description = -"""""", - ) - - ncf6 = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""ncf keyword""", - description = -"""keyword to specify that record corresponds to a netcdf configuration -(NCF) file.""", - ) - - filein = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""file keyword""", - description = -"""keyword to specify that an input filename is expected next.""", - ) - - ncf6_filename = MFString( - type = "string", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""file name of NCF information""", - description = -"""defines a netcdf configuration (NCF) input file.""", - ) - - nlay = MFInteger( - type = "integer", - block = "dimensions", - shape = "", - reader = "urword", - optional = False, - longname = -"""number of layers""", - description = -"""is the number of layers in the model grid.""", - ) - - nrow = MFInteger( - type = "integer", - block = "dimensions", - shape = "", - reader = "urword", - optional = False, - longname = -"""number of rows""", - description = -"""is the number of rows in the model grid.""", - ) - - ncol = MFInteger( - type = "integer", - block = "dimensions", - shape = "", - reader = "urword", - optional = False, - longname = -"""number of columns""", - description = -"""is the number of columns in the model grid.""", - ) - - delr = MFArray( - type = "double", - block = "griddata", - shape = "(ncol)", - reader = "readarray", - optional = False, - longname = -"""spacing along a row""", - description = -"""is the column spacing in the row direction.""", - ) - - delc = MFArray( - type = "double", - block = "griddata", - shape = "(nrow)", - reader = "readarray", - optional = False, - longname = -"""spacing along a column""", - description = -"""is the row spacing in the column direction.""", - ) - - top = MFArray( - type = "double", - block = "griddata", - shape = "(ncol, nrow)", - reader = "readarray", - optional = False, - longname = -"""cell top elevation""", - description = -"""is the top elevation for each cell in the top model layer.""", - ) - - botm = MFArray( - type = "double", - block = "griddata", - shape = "(ncol, nrow, nlay)", - reader = "readarray", - optional = False, - longname = -"""cell bottom elevation""", - description = -"""is the bottom elevation for each cell.""", - ) - - idomain = MFArray( - type = "integer", - block = "griddata", - shape = "(ncol, nrow, nlay)", - reader = "readarray", - optional = True, - longname = -"""idomain existence array""", - description = -"""is an optional array that characterizes the existence status of a -cell. If the IDOMAIN array is not specified, then all model cells -exist within the solution. If the IDOMAIN value for a cell is 0, the -cell does not exist in the simulation. Input and output values will -be read and written for the cell, but internal to the program, the -cell is excluded from the solution. If the IDOMAIN value for a cell -is 1, the cell exists in the simulation. If the IDOMAIN value for a -cell is -1, the cell does not exist in the simulation. Furthermore, -the first existing cell above will be connected to the first existing -cell below. This type of cell is referred to as a ``vertical pass -through'' cell.""", - ) \ No newline at end of file diff --git a/flopy4/ispec/gwe_disu.py b/flopy4/ispec/gwe_disu.py deleted file mode 100644 index 144b3286..00000000 --- a/flopy4/ispec/gwe_disu.py +++ /dev/null @@ -1,471 +0,0 @@ -# generated file -from flopy4.array import MFArray -from flopy4.compound import MFRecord, MFList -from flopy4.package import MFPackage -from flopy4.scalar import MFDouble, MFFilename, MFInteger, MFKeyword, MFString - - -class GweDisu(MFPackage): - multipkg = False - stress = False - advanced = False - - length_units = MFString( - type = "string", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""model length units""", - description = -"""is the length units used for this model. Values can be ``FEET'', -``METERS'', or ``CENTIMETERS''. If not specified, the default is -``UNKNOWN''.""", - ) - - nogrb = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""do not write binary grid file""", - description = -"""keyword to deactivate writing of the binary grid file.""", - ) - - xorigin = MFDouble( - type = "double", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""x-position origin of the model grid coordinate system""", - description = -"""x-position of the origin used for model grid vertices. This value -should be provided in a real-world coordinate system. A default value -of zero is assigned if not specified. The value for XORIGIN does not -affect the model simulation, but it is written to the binary grid file -so that postprocessors can locate the grid in space.""", - ) - - yorigin = MFDouble( - type = "double", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""y-position origin of the model grid coordinate system""", - description = -"""y-position of the origin used for model grid vertices. This value -should be provided in a real-world coordinate system. If not -specified, then a default value equal to zero is used. The value for -YORIGIN does not affect the model simulation, but it is written to the -binary grid file so that postprocessors can locate the grid in space.""", - ) - - angrot = MFDouble( - type = "double", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""rotation angle""", - description = -"""counter-clockwise rotation angle (in degrees) of the model grid -coordinate system relative to a real-world coordinate system. If not -specified, then a default value of 0.0 is assigned. The value for -ANGROT does not affect the model simulation, but it is written to the -binary grid file so that postprocessors can locate the grid in space.""", - ) - - vertical_offset_tolerance = MFDouble( - type = "double", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""vertical length dimension for top and bottom checking""", - description = -"""checks are performed to ensure that the top of a cell is not higher -than the bottom of an overlying cell. This option can be used to -specify the tolerance that is used for checking. If top of a cell is -above the bottom of an overlying cell by a value less than this -tolerance, then the program will not terminate with an error. The -default value is zero. This option should generally not be used.""", - ) - - export_array_ascii = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""export array variables to layered ascii files.""", - description = -"""keyword that specifies input griddata arrays should be written to -layered ascii output files.""", - ) - - nodes = MFInteger( - type = "integer", - block = "dimensions", - shape = "", - reader = "urword", - optional = False, - longname = -"""number of layers""", - description = -"""is the number of cells in the model grid.""", - ) - - nja = MFInteger( - type = "integer", - block = "dimensions", - shape = "", - reader = "urword", - optional = False, - longname = -"""number of columns""", - description = -"""is the sum of the number of connections and NODES. When calculating -the total number of connections, the connection between cell n and -cell m is considered to be different from the connection between cell -m and cell n. Thus, NJA is equal to the total number of connections, -including n to m and m to n, and the total number of cells.""", - ) - - nvert = MFInteger( - type = "integer", - block = "dimensions", - shape = "", - reader = "urword", - optional = True, - longname = -"""number of vertices""", - description = -"""is the total number of (x, y) vertex pairs used to define the plan- -view shape of each cell in the model grid. If NVERT is not specified -or is specified as zero, then the VERTICES and CELL2D blocks below are -not read. NVERT and the accompanying VERTICES and CELL2D blocks -should be specified for most simulations. If the XT3D or -SAVE_SPECIFIC_DISCHARGE options are specified in the NPF Package, then -this information is required.""", - ) - - top = MFArray( - type = "double", - block = "griddata", - shape = "(nodes)", - reader = "readarray", - optional = False, - longname = -"""cell top elevation""", - description = -"""is the top elevation for each cell in the model grid.""", - ) - - bot = MFArray( - type = "double", - block = "griddata", - shape = "(nodes)", - reader = "readarray", - optional = False, - longname = -"""cell bottom elevation""", - description = -"""is the bottom elevation for each cell.""", - ) - - area = MFArray( - type = "double", - block = "griddata", - shape = "(nodes)", - reader = "readarray", - optional = False, - longname = -"""cell surface area""", - description = -"""is the cell surface area (in plan view).""", - ) - - idomain = MFArray( - type = "integer", - block = "griddata", - shape = "(nodes)", - reader = "readarray", - optional = True, - longname = -"""idomain existence array""", - description = -"""is an optional array that characterizes the existence status of a -cell. If the IDOMAIN array is not specified, then all model cells -exist within the solution. If the IDOMAIN value for a cell is 0, the -cell does not exist in the simulation. Input and output values will -be read and written for the cell, but internal to the program, the -cell is excluded from the solution. If the IDOMAIN value for a cell -is 1 or greater, the cell exists in the simulation. IDOMAIN values of --1 cannot be specified for the DISU Package.""", - ) - - iac = MFArray( - type = "integer", - block = "connectiondata", - shape = "(nodes)", - reader = "readarray", - optional = False, - longname = -"""number of cell connections""", - description = -"""is the number of connections (plus 1) for each cell. The sum of all -the entries in IAC must be equal to NJA.""", - ) - - ja = MFArray( - type = "integer", - block = "connectiondata", - shape = "(nja)", - reader = "readarray", - optional = False, - longname = -"""grid connectivity""", - description = -"""is a list of cell number (n) followed by its connecting cell numbers -(m) for each of the m cells connected to cell n. The number of values -to provide for cell n is IAC(n). This list is sequentially provided -for the first to the last cell. The first value in the list must be -cell n itself, and the remaining cells must be listed in an increasing -order (sorted from lowest number to highest). Note that the cell and -its connections are only supplied for the GWE cells and their -connections to the other GWE cells. Also note that the JA list input -may be divided such that every node and its connectivity list can be -on a separate line for ease in readability of the file. To further -ease readability of the file, the node number of the cell whose -connectivity is subsequently listed, may be expressed as a negative -number, the sign of which is subsequently converted to positive by the -code.""", - ) - - ihc = MFArray( - type = "integer", - block = "connectiondata", - shape = "(nja)", - reader = "readarray", - optional = False, - longname = -"""connection type""", - description = -"""is an index array indicating the direction between node n and all of -its m connections. If IHC = 0 then cell n and cell m are connected in -the vertical direction. Cell n overlies cell m if the cell number for -n is less than m; cell m overlies cell n if the cell number for m is -less than n. If IHC = 1 then cell n and cell m are connected in the -horizontal direction. If IHC = 2 then cell n and cell m are connected -in the horizontal direction, and the connection is vertically -staggered. A vertically staggered connection is one in which a cell -is horizontally connected to more than one cell in a horizontal -connection.""", - ) - - cl12 = MFArray( - type = "double", - block = "connectiondata", - shape = "(nja)", - reader = "readarray", - optional = False, - longname = -"""connection lengths""", - description = -"""is the array containing connection lengths between the center of cell -n and the shared face with each adjacent m cell.""", - ) - - hwva = MFArray( - type = "double", - block = "connectiondata", - shape = "(nja)", - reader = "readarray", - optional = False, - longname = -"""connection lengths""", - description = -"""is a symmetric array of size NJA. For horizontal connections, entries -in HWVA are the horizontal width perpendicular to flow. For vertical -connections, entries in HWVA are the vertical area for flow. Thus, -values in the HWVA array contain dimensions of both length and area. -Entries in the HWVA array have a one-to-one correspondence with the -connections specified in the JA array. Likewise, there is a one-to- -one correspondence between entries in the HWVA array and entries in -the IHC array, which specifies the connection type (horizontal or -vertical). Entries in the HWVA array must be symmetric; the program -will terminate with an error if the value for HWVA for an n to m -connection does not equal the value for HWVA for the corresponding n -to m connection.""", - ) - - angldegx = MFArray( - type = "double", - block = "connectiondata", - shape = "(nja)", - reader = "readarray", - optional = True, - longname = -"""angle of face normal to connection""", - description = -"""is the angle (in degrees) between the horizontal x-axis and the -outward normal to the face between a cell and its connecting cells. -The angle varies between zero and 360.0 degrees, where zero degrees -points in the positive x-axis direction, and 90 degrees points in the -positive y-axis direction. ANGLDEGX is only needed if horizontal -anisotropy is specified in the NPF Package, if the XT3D option is used -in the NPF Package, or if the SAVE_SPECIFIC_DISCHARGE option is -specified in the NPF Package. ANGLDEGX does not need to be specified -if these conditions are not met. ANGLDEGX is of size NJA; values -specified for vertical connections and for the diagonal position are -not used. Note that ANGLDEGX is read in degrees, which is different -from MODFLOW-USG, which reads a similar variable (ANGLEX) in radians.""", - ) - - iv = MFInteger( - type = "integer", - block = "vertices", - shape = "", - reader = "urword", - optional = False, - longname = -"""vertex number""", - description = -"""is the vertex number. Records in the VERTICES block must be listed in -consecutive order from 1 to NVERT.""", - ) - - xv = MFDouble( - type = "double", - block = "vertices", - shape = "", - reader = "urword", - optional = False, - longname = -"""x-coordinate for vertex""", - description = -"""is the x-coordinate for the vertex.""", - ) - - yv = MFDouble( - type = "double", - block = "vertices", - shape = "", - reader = "urword", - optional = False, - longname = -"""y-coordinate for vertex""", - description = -"""is the y-coordinate for the vertex.""", - ) - - vertices = MFList( - type = "recarray", - params = { - "iv": iv, - "xv": xv, - "yv": yv, - }, - block = "vertices", - shape = "(nvert)", - reader = "urword", - optional = False, - longname = -"""vertices data""", - description = -"""""", - ) - - icell2d = MFInteger( - type = "integer", - block = "cell2d", - shape = "", - reader = "urword", - optional = False, - longname = -"""cell2d number""", - description = -"""is the cell2d number. Records in the CELL2D block must be listed in -consecutive order from 1 to NODES.""", - ) - - xc = MFDouble( - type = "double", - block = "cell2d", - shape = "", - reader = "urword", - optional = False, - longname = -"""x-coordinate for cell center""", - description = -"""is the x-coordinate for the cell center.""", - ) - - yc = MFDouble( - type = "double", - block = "cell2d", - shape = "", - reader = "urword", - optional = False, - longname = -"""y-coordinate for cell center""", - description = -"""is the y-coordinate for the cell center.""", - ) - - ncvert = MFInteger( - type = "integer", - block = "cell2d", - shape = "", - reader = "urword", - optional = False, - longname = -"""number of cell vertices""", - description = -"""is the number of vertices required to define the cell. There may be a -different number of vertices for each cell.""", - ) - - icvert = MFArray( - type = "integer", - block = "cell2d", - shape = "(ncvert)", - reader = "urword", - optional = False, - longname = -"""array of vertex numbers""", - description = -"""is an array of integer values containing vertex numbers (in the -VERTICES block) used to define the cell. Vertices must be listed in -clockwise order.""", - ) - - cell2d = MFList( - type = "recarray", - params = { - "icell2d": icell2d, - "xc": xc, - "yc": yc, - "ncvert": ncvert, - "icvert": icvert, - }, - block = "cell2d", - shape = "(nodes)", - reader = "urword", - optional = False, - longname = -"""cell2d data""", - description = -"""""", - ) \ No newline at end of file diff --git a/flopy4/ispec/gwe_disv.py b/flopy4/ispec/gwe_disv.py deleted file mode 100644 index aed48ca9..00000000 --- a/flopy4/ispec/gwe_disv.py +++ /dev/null @@ -1,386 +0,0 @@ -# generated file -from flopy4.array import MFArray -from flopy4.compound import MFRecord, MFList -from flopy4.package import MFPackage -from flopy4.scalar import MFDouble, MFFilename, MFInteger, MFKeyword, MFString - - -class GweDisv(MFPackage): - multipkg = False - stress = False - advanced = False - - length_units = MFString( - type = "string", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""model length units""", - description = -"""is the length units used for this model. Values can be ``FEET'', -``METERS'', or ``CENTIMETERS''. If not specified, the default is -``UNKNOWN''.""", - ) - - nogrb = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""do not write binary grid file""", - description = -"""keyword to deactivate writing of the binary grid file.""", - ) - - xorigin = MFDouble( - type = "double", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""x-position origin of the model grid coordinate system""", - description = -"""x-position of the origin used for model grid vertices. This value -should be provided in a real-world coordinate system. A default value -of zero is assigned if not specified. The value for XORIGIN does not -affect the model simulation, but it is written to the binary grid file -so that postprocessors can locate the grid in space.""", - ) - - yorigin = MFDouble( - type = "double", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""y-position origin of the model grid coordinate system""", - description = -"""y-position of the origin used for model grid vertices. This value -should be provided in a real-world coordinate system. If not -specified, then a default value equal to zero is used. The value for -YORIGIN does not affect the model simulation, but it is written to the -binary grid file so that postprocessors can locate the grid in space.""", - ) - - angrot = MFDouble( - type = "double", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""rotation angle""", - description = -"""counter-clockwise rotation angle (in degrees) of the model grid -coordinate system relative to a real-world coordinate system. If not -specified, then a default value of 0.0 is assigned. The value for -ANGROT does not affect the model simulation, but it is written to the -binary grid file so that postprocessors can locate the grid in space.""", - ) - - export_array_ascii = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""export array variables to layered ascii files.""", - description = -"""keyword that specifies input griddata arrays should be written to -layered ascii output files.""", - ) - - export_array_netcdf = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""export array variables to netcdf output files.""", - description = -"""keyword that specifies input griddata arrays should be written to the -model output netcdf file.""", - ) - - ncf_filerecord = MFRecord( - type = "record", - params = { - "ncf6": MFKeyword(), - "filein": MFKeyword(), - "ncf6_filename": MFString(), - }, - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""""", - description = -"""""", - ) - - ncf6 = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""ncf keyword""", - description = -"""keyword to specify that record corresponds to a netcdf configuration -(NCF) file.""", - ) - - filein = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""file keyword""", - description = -"""keyword to specify that an input filename is expected next.""", - ) - - ncf6_filename = MFString( - type = "string", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""file name of NCF information""", - description = -"""defines a netcdf configuration (NCF) input file.""", - ) - - nlay = MFInteger( - type = "integer", - block = "dimensions", - shape = "", - reader = "urword", - optional = False, - longname = -"""number of layers""", - description = -"""is the number of layers in the model grid.""", - ) - - ncpl = MFInteger( - type = "integer", - block = "dimensions", - shape = "", - reader = "urword", - optional = False, - longname = -"""number of cells per layer""", - description = -"""is the number of cells per layer. This is a constant value for the -grid and it applies to all layers.""", - ) - - nvert = MFInteger( - type = "integer", - block = "dimensions", - shape = "", - reader = "urword", - optional = False, - longname = -"""number of columns""", - description = -"""is the total number of (x, y) vertex pairs used to characterize the -horizontal configuration of the model grid.""", - ) - - top = MFArray( - type = "double", - block = "griddata", - shape = "(ncpl)", - reader = "readarray", - optional = False, - longname = -"""model top elevation""", - description = -"""is the top elevation for each cell in the top model layer.""", - ) - - botm = MFArray( - type = "double", - block = "griddata", - shape = "(ncpl, nlay)", - reader = "readarray", - optional = False, - longname = -"""model bottom elevation""", - description = -"""is the bottom elevation for each cell.""", - ) - - idomain = MFArray( - type = "integer", - block = "griddata", - shape = "(ncpl, nlay)", - reader = "readarray", - optional = True, - longname = -"""idomain existence array""", - description = -"""is an optional array that characterizes the existence status of a -cell. If the IDOMAIN array is not specified, then all model cells -exist within the solution. If the IDOMAIN value for a cell is 0, the -cell does not exist in the simulation. Input and output values will -be read and written for the cell, but internal to the program, the -cell is excluded from the solution. If the IDOMAIN value for a cell -is 1, the cell exists in the simulation. If the IDOMAIN value for a -cell is -1, the cell does not exist in the simulation. Furthermore, -the first existing cell above will be connected to the first existing -cell below. This type of cell is referred to as a ``vertical pass -through'' cell.""", - ) - - iv = MFInteger( - type = "integer", - block = "vertices", - shape = "", - reader = "urword", - optional = False, - longname = -"""vertex number""", - description = -"""is the vertex number. Records in the VERTICES block must be listed in -consecutive order from 1 to NVERT.""", - ) - - xv = MFDouble( - type = "double", - block = "vertices", - shape = "", - reader = "urword", - optional = False, - longname = -"""x-coordinate for vertex""", - description = -"""is the x-coordinate for the vertex.""", - ) - - yv = MFDouble( - type = "double", - block = "vertices", - shape = "", - reader = "urword", - optional = False, - longname = -"""y-coordinate for vertex""", - description = -"""is the y-coordinate for the vertex.""", - ) - - vertices = MFList( - type = "recarray", - params = { - "iv": iv, - "xv": xv, - "yv": yv, - }, - block = "vertices", - shape = "(nvert)", - reader = "urword", - optional = False, - longname = -"""vertices data""", - description = -"""""", - ) - - icell2d = MFInteger( - type = "integer", - block = "cell2d", - shape = "", - reader = "urword", - optional = False, - longname = -"""cell2d number""", - description = -"""is the CELL2D number. Records in the CELL2D block must be listed in -consecutive order from the first to the last.""", - ) - - xc = MFDouble( - type = "double", - block = "cell2d", - shape = "", - reader = "urword", - optional = False, - longname = -"""x-coordinate for cell center""", - description = -"""is the x-coordinate for the cell center.""", - ) - - yc = MFDouble( - type = "double", - block = "cell2d", - shape = "", - reader = "urword", - optional = False, - longname = -"""y-coordinate for cell center""", - description = -"""is the y-coordinate for the cell center.""", - ) - - ncvert = MFInteger( - type = "integer", - block = "cell2d", - shape = "", - reader = "urword", - optional = False, - longname = -"""number of cell vertices""", - description = -"""is the number of vertices required to define the cell. There may be a -different number of vertices for each cell.""", - ) - - icvert = MFArray( - type = "integer", - block = "cell2d", - shape = "(ncvert)", - reader = "urword", - optional = False, - longname = -"""array of vertex numbers""", - description = -"""is an array of integer values containing vertex numbers (in the -VERTICES block) used to define the cell. Vertices must be listed in -clockwise order. Cells that are connected must share vertices.""", - ) - - cell2d = MFList( - type = "recarray", - params = { - "icell2d": icell2d, - "xc": xc, - "yc": yc, - "ncvert": ncvert, - "icvert": icvert, - }, - block = "cell2d", - shape = "(ncpl)", - reader = "urword", - optional = False, - longname = -"""cell2d data""", - description = -"""""", - ) \ No newline at end of file diff --git a/flopy4/ispec/gwe_model.py b/flopy4/ispec/gwe_model.py deleted file mode 100644 index a248880c..00000000 --- a/flopy4/ispec/gwe_model.py +++ /dev/null @@ -1,12 +0,0 @@ -# generated file -from flopy4.model import MFModel -from flopy4.resolver import Resolve -from flopy4.ispec.gwe_dis import GweDis -from flopy4.ispec.gwe_disu import GweDisu -from flopy4.ispec.gwe_disv import GweDisv - - -class GweModel(MFModel, Resolve): - dis6 = GweDis() - disu6 = GweDisu() - disv6 = GweDisv() diff --git a/flopy4/ispec/gwf_chd.py b/flopy4/ispec/gwf_chd.py deleted file mode 100644 index 1e0c8389..00000000 --- a/flopy4/ispec/gwf_chd.py +++ /dev/null @@ -1,270 +0,0 @@ -# generated file -from flopy4.array import MFArray -from flopy4.compound import MFRecord, MFList -from flopy4.package import MFPackage -from flopy4.scalar import MFDouble, MFFilename, MFInteger, MFKeyword, MFString - - -class GwfChd(MFPackage): - multipkg = False - stress = False - advanced = False - - auxiliary = MFString( - type = "string", - block = "options", - shape = "(naux)", - reader = "urword", - optional = True, - longname = -"""keyword to specify aux variables""", - description = -"""REPLACE auxnames {'{#1}': 'Groundwater Flow'}""", - ) - - auxmultname = MFString( - type = "string", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""name of auxiliary variable for multiplier""", - description = -"""REPLACE auxmultname {'{#1}': 'CHD head value'}""", - ) - - boundnames = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""""", - description = -"""REPLACE boundnames {'{#1}': 'constant-head'}""", - ) - - print_input = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""print input to listing file""", - description = -"""REPLACE print_input {'{#1}': 'constant-head'}""", - ) - - print_flows = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""print CHD flows to listing file""", - description = -"""REPLACE print_flows {'{#1}': 'constant-head'}""", - ) - - save_flows = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""save CHD flows to budget file""", - description = -"""REPLACE save_flows {'{#1}': 'constant-head'}""", - ) - - ts_filerecord = MFRecord( - type = "record", - params = { - "ts6": MFKeyword(), - "filein": MFKeyword(), - "ts6_filename": MFString(), - }, - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""""", - description = -"""""", - ) - - ts6 = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""head keyword""", - description = -"""keyword to specify that record corresponds to a time-series file.""", - ) - - filein = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""file keyword""", - description = -"""keyword to specify that an input filename is expected next.""", - ) - - ts6_filename = MFString( - type = "string", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""file name of time series information""", - description = -"""REPLACE timeseriesfile {}""", - ) - - obs_filerecord = MFRecord( - type = "record", - params = { - "obs6": MFKeyword(), - "filein": MFKeyword(), - "obs6_filename": MFString(), - }, - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""""", - description = -"""""", - ) - - obs6 = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""obs keyword""", - description = -"""keyword to specify that record corresponds to an observations file.""", - ) - - obs6_filename = MFString( - type = "string", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""obs6 input filename""", - description = -"""REPLACE obs6_filename {'{#1}': 'constant-head'}""", - ) - - dev_no_newton = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""turn off Newton for unconfined cells""", - description = -"""turn off Newton for unconfined cells""", - ) - - maxbound = MFInteger( - type = "integer", - block = "dimensions", - shape = "", - reader = "urword", - optional = False, - longname = -"""maximum number of constant heads""", - description = -"""REPLACE maxbound {'{#1}': 'constant-head'}""", - ) - - cellid = MFArray( - type = "integer", - block = "period", - shape = "(ncelldim)", - reader = "urword", - optional = False, - longname = -"""cell identifier""", - description = -"""REPLACE cellid {}""", - ) - - head = MFDouble( - type = "double", - block = "period", - shape = "", - reader = "urword", - optional = False, - longname = -"""head value assigned to constant head""", - description = -"""is the head at the boundary. If the Options block includes a -TIMESERIESFILE entry (see the ``Time-Variable Input'' section), values -can be obtained from a time series by entering the time-series name in -place of a numeric value.""", - ) - - aux = MFArray( - type = "double", - block = "period", - shape = "(naux)", - reader = "urword", - optional = True, - longname = -"""auxiliary variables""", - description = -"""REPLACE aux {'{#1}': 'constant head'}""", - ) - - boundname = MFString( - type = "string", - block = "period", - shape = "", - reader = "urword", - optional = True, - longname = -"""constant head boundary name""", - description = -"""REPLACE boundname {'{#1}': 'constant head boundary'}""", - ) - - stress_period_data = MFList( - type = "recarray", - params = { - "cellid": cellid, - "head": head, - "aux": aux, - "boundname": boundname, - }, - block = "period", - shape = "(maxbound)", - reader = "urword", - optional = False, - longname = -"""""", - description = -"""""", - ) \ No newline at end of file diff --git a/flopy4/ispec/gwf_dis.py b/flopy4/ispec/gwf_dis.py deleted file mode 100644 index e21c00bc..00000000 --- a/flopy4/ispec/gwf_dis.py +++ /dev/null @@ -1,269 +0,0 @@ -# generated file -from flopy4.array import MFArray -from flopy4.compound import MFRecord, MFList -from flopy4.package import MFPackage -from flopy4.scalar import MFDouble, MFFilename, MFInteger, MFKeyword, MFString - - -class GwfDis(MFPackage): - multipkg = False - stress = False - advanced = False - - length_units = MFString( - type = "string", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""model length units""", - description = -"""is the length units used for this model. Values can be ``FEET'', -``METERS'', or ``CENTIMETERS''. If not specified, the default is -``UNKNOWN''.""", - ) - - nogrb = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""do not write binary grid file""", - description = -"""keyword to deactivate writing of the binary grid file.""", - ) - - xorigin = MFDouble( - type = "double", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""x-position of the model grid origin""", - description = -"""x-position of the lower-left corner of the model grid. A default -value of zero is assigned if not specified. The value for XORIGIN -does not affect the model simulation, but it is written to the binary -grid file so that postprocessors can locate the grid in space.""", - ) - - yorigin = MFDouble( - type = "double", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""y-position of the model grid origin""", - description = -"""y-position of the lower-left corner of the model grid. If not -specified, then a default value equal to zero is used. The value for -YORIGIN does not affect the model simulation, but it is written to the -binary grid file so that postprocessors can locate the grid in space.""", - ) - - angrot = MFDouble( - type = "double", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""rotation angle""", - description = -"""counter-clockwise rotation angle (in degrees) of the lower-left corner -of the model grid. If not specified, then a default value of 0.0 is -assigned. The value for ANGROT does not affect the model simulation, -but it is written to the binary grid file so that postprocessors can -locate the grid in space.""", - ) - - export_array_ascii = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""export array variables to layered ascii files.""", - description = -"""keyword that specifies input griddata arrays should be written to -layered ascii output files.""", - ) - - export_array_netcdf = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""export array variables to netcdf output files.""", - description = -"""keyword that specifies input griddata arrays should be written to the -model output netcdf file.""", - ) - - ncf_filerecord = MFRecord( - type = "record", - params = { - "ncf6": MFKeyword(), - "filein": MFKeyword(), - "ncf6_filename": MFString(), - }, - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""""", - description = -"""""", - ) - - ncf6 = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""ncf keyword""", - description = -"""keyword to specify that record corresponds to a netcdf configuration -(NCF) file.""", - ) - - filein = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""file keyword""", - description = -"""keyword to specify that an input filename is expected next.""", - ) - - ncf6_filename = MFString( - type = "string", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""file name of NCF information""", - description = -"""defines a netcdf configuration (NCF) input file.""", - ) - - nlay = MFInteger( - type = "integer", - block = "dimensions", - shape = "", - reader = "urword", - optional = False, - longname = -"""number of layers""", - description = -"""is the number of layers in the model grid.""", - ) - - nrow = MFInteger( - type = "integer", - block = "dimensions", - shape = "", - reader = "urword", - optional = False, - longname = -"""number of rows""", - description = -"""is the number of rows in the model grid.""", - ) - - ncol = MFInteger( - type = "integer", - block = "dimensions", - shape = "", - reader = "urword", - optional = False, - longname = -"""number of columns""", - description = -"""is the number of columns in the model grid.""", - ) - - delr = MFArray( - type = "double", - block = "griddata", - shape = "(ncol)", - reader = "readarray", - optional = False, - longname = -"""spacing along a row""", - description = -"""is the column spacing in the row direction.""", - ) - - delc = MFArray( - type = "double", - block = "griddata", - shape = "(nrow)", - reader = "readarray", - optional = False, - longname = -"""spacing along a column""", - description = -"""is the row spacing in the column direction.""", - ) - - top = MFArray( - type = "double", - block = "griddata", - shape = "(ncol, nrow)", - reader = "readarray", - optional = False, - longname = -"""cell top elevation""", - description = -"""is the top elevation for each cell in the top model layer.""", - ) - - botm = MFArray( - type = "double", - block = "griddata", - shape = "(ncol, nrow, nlay)", - reader = "readarray", - optional = False, - longname = -"""cell bottom elevation""", - description = -"""is the bottom elevation for each cell.""", - ) - - idomain = MFArray( - type = "integer", - block = "griddata", - shape = "(ncol, nrow, nlay)", - reader = "readarray", - optional = True, - longname = -"""idomain existence array""", - description = -"""is an optional array that characterizes the existence status of a -cell. If the IDOMAIN array is not specified, then all model cells -exist within the solution. If the IDOMAIN value for a cell is 0, the -cell does not exist in the simulation. Input and output values will -be read and written for the cell, but internal to the program, the -cell is excluded from the solution. If the IDOMAIN value for a cell -is 1 or greater, the cell exists in the simulation. If the IDOMAIN -value for a cell is -1, the cell does not exist in the simulation. -Furthermore, the first existing cell above will be connected to the -first existing cell below. This type of cell is referred to as a -``vertical pass through'' cell.""", - ) \ No newline at end of file diff --git a/flopy4/ispec/gwf_disu.py b/flopy4/ispec/gwf_disu.py deleted file mode 100644 index 5ccffb1b..00000000 --- a/flopy4/ispec/gwf_disu.py +++ /dev/null @@ -1,471 +0,0 @@ -# generated file -from flopy4.array import MFArray -from flopy4.compound import MFRecord, MFList -from flopy4.package import MFPackage -from flopy4.scalar import MFDouble, MFFilename, MFInteger, MFKeyword, MFString - - -class GwfDisu(MFPackage): - multipkg = False - stress = False - advanced = False - - length_units = MFString( - type = "string", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""model length units""", - description = -"""is the length units used for this model. Values can be ``FEET'', -``METERS'', or ``CENTIMETERS''. If not specified, the default is -``UNKNOWN''.""", - ) - - nogrb = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""do not write binary grid file""", - description = -"""keyword to deactivate writing of the binary grid file.""", - ) - - xorigin = MFDouble( - type = "double", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""x-position origin of the model grid coordinate system""", - description = -"""x-position of the origin used for model grid vertices. This value -should be provided in a real-world coordinate system. A default value -of zero is assigned if not specified. The value for XORIGIN does not -affect the model simulation, but it is written to the binary grid file -so that postprocessors can locate the grid in space.""", - ) - - yorigin = MFDouble( - type = "double", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""y-position origin of the model grid coordinate system""", - description = -"""y-position of the origin used for model grid vertices. This value -should be provided in a real-world coordinate system. If not -specified, then a default value equal to zero is used. The value for -YORIGIN does not affect the model simulation, but it is written to the -binary grid file so that postprocessors can locate the grid in space.""", - ) - - angrot = MFDouble( - type = "double", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""rotation angle""", - description = -"""counter-clockwise rotation angle (in degrees) of the model grid -coordinate system relative to a real-world coordinate system. If not -specified, then a default value of 0.0 is assigned. The value for -ANGROT does not affect the model simulation, but it is written to the -binary grid file so that postprocessors can locate the grid in space.""", - ) - - vertical_offset_tolerance = MFDouble( - type = "double", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""vertical length dimension for top and bottom checking""", - description = -"""checks are performed to ensure that the top of a cell is not higher -than the bottom of an overlying cell. This option can be used to -specify the tolerance that is used for checking. If top of a cell is -above the bottom of an overlying cell by a value less than this -tolerance, then the program will not terminate with an error. The -default value is zero. This option should generally not be used.""", - ) - - export_array_ascii = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""export array variables to layered ascii files.""", - description = -"""keyword that specifies input griddata arrays should be written to -layered ascii output files.""", - ) - - nodes = MFInteger( - type = "integer", - block = "dimensions", - shape = "", - reader = "urword", - optional = False, - longname = -"""number of layers""", - description = -"""is the number of cells in the model grid.""", - ) - - nja = MFInteger( - type = "integer", - block = "dimensions", - shape = "", - reader = "urword", - optional = False, - longname = -"""number of columns""", - description = -"""is the sum of the number of connections and NODES. When calculating -the total number of connections, the connection between cell n and -cell m is considered to be different from the connection between cell -m and cell n. Thus, NJA is equal to the total number of connections, -including n to m and m to n, and the total number of cells.""", - ) - - nvert = MFInteger( - type = "integer", - block = "dimensions", - shape = "", - reader = "urword", - optional = True, - longname = -"""number of vertices""", - description = -"""is the total number of (x, y) vertex pairs used to define the plan- -view shape of each cell in the model grid. If NVERT is not specified -or is specified as zero, then the VERTICES and CELL2D blocks below are -not read. NVERT and the accompanying VERTICES and CELL2D blocks -should be specified for most simulations. If the XT3D or -SAVE_SPECIFIC_DISCHARGE options are specified in the NPF Package, then -this information is required.""", - ) - - top = MFArray( - type = "double", - block = "griddata", - shape = "(nodes)", - reader = "readarray", - optional = False, - longname = -"""cell top elevation""", - description = -"""is the top elevation for each cell in the model grid.""", - ) - - bot = MFArray( - type = "double", - block = "griddata", - shape = "(nodes)", - reader = "readarray", - optional = False, - longname = -"""cell bottom elevation""", - description = -"""is the bottom elevation for each cell.""", - ) - - area = MFArray( - type = "double", - block = "griddata", - shape = "(nodes)", - reader = "readarray", - optional = False, - longname = -"""cell surface area""", - description = -"""is the cell surface area (in plan view).""", - ) - - idomain = MFArray( - type = "integer", - block = "griddata", - shape = "(nodes)", - reader = "readarray", - optional = True, - longname = -"""idomain existence array""", - description = -"""is an optional array that characterizes the existence status of a -cell. If the IDOMAIN array is not specified, then all model cells -exist within the solution. If the IDOMAIN value for a cell is 0, the -cell does not exist in the simulation. Input and output values will -be read and written for the cell, but internal to the program, the -cell is excluded from the solution. If the IDOMAIN value for a cell -is 1 or greater, the cell exists in the simulation. IDOMAIN values of --1 cannot be specified for the DISU Package.""", - ) - - iac = MFArray( - type = "integer", - block = "connectiondata", - shape = "(nodes)", - reader = "readarray", - optional = False, - longname = -"""number of cell connections""", - description = -"""is the number of connections (plus 1) for each cell. The sum of all -the entries in IAC must be equal to NJA.""", - ) - - ja = MFArray( - type = "integer", - block = "connectiondata", - shape = "(nja)", - reader = "readarray", - optional = False, - longname = -"""grid connectivity""", - description = -"""is a list of cell number (n) followed by its connecting cell numbers -(m) for each of the m cells connected to cell n. The number of values -to provide for cell n is IAC(n). This list is sequentially provided -for the first to the last cell. The first value in the list must be -cell n itself, and the remaining cells must be listed in an increasing -order (sorted from lowest number to highest). Note that the cell and -its connections are only supplied for the GWF cells and their -connections to the other GWF cells. Also note that the JA list input -may be divided such that every node and its connectivity list can be -on a separate line for ease in readability of the file. To further -ease readability of the file, the node number of the cell whose -connectivity is subsequently listed, may be expressed as a negative -number, the sign of which is subsequently converted to positive by the -code.""", - ) - - ihc = MFArray( - type = "integer", - block = "connectiondata", - shape = "(nja)", - reader = "readarray", - optional = False, - longname = -"""connection type""", - description = -"""is an index array indicating the direction between node n and all of -its m connections. If IHC = 0 then cell n and cell m are connected in -the vertical direction. Cell n overlies cell m if the cell number for -n is less than m; cell m overlies cell n if the cell number for m is -less than n. If IHC = 1 then cell n and cell m are connected in the -horizontal direction. If IHC = 2 then cell n and cell m are connected -in the horizontal direction, and the connection is vertically -staggered. A vertically staggered connection is one in which a cell -is horizontally connected to more than one cell in a horizontal -connection.""", - ) - - cl12 = MFArray( - type = "double", - block = "connectiondata", - shape = "(nja)", - reader = "readarray", - optional = False, - longname = -"""connection lengths""", - description = -"""is the array containing connection lengths between the center of cell -n and the shared face with each adjacent m cell.""", - ) - - hwva = MFArray( - type = "double", - block = "connectiondata", - shape = "(nja)", - reader = "readarray", - optional = False, - longname = -"""connection lengths""", - description = -"""is a symmetric array of size NJA. For horizontal connections, entries -in HWVA are the horizontal width perpendicular to flow. For vertical -connections, entries in HWVA are the vertical area for flow. Thus, -values in the HWVA array contain dimensions of both length and area. -Entries in the HWVA array have a one-to-one correspondence with the -connections specified in the JA array. Likewise, there is a one-to- -one correspondence between entries in the HWVA array and entries in -the IHC array, which specifies the connection type (horizontal or -vertical). Entries in the HWVA array must be symmetric; the program -will terminate with an error if the value for HWVA for an n to m -connection does not equal the value for HWVA for the corresponding n -to m connection.""", - ) - - angldegx = MFArray( - type = "double", - block = "connectiondata", - shape = "(nja)", - reader = "readarray", - optional = True, - longname = -"""angle of face normal to connection""", - description = -"""is the angle (in degrees) between the horizontal x-axis and the -outward normal to the face between a cell and its connecting cells. -The angle varies between zero and 360.0 degrees, where zero degrees -points in the positive x-axis direction, and 90 degrees points in the -positive y-axis direction. ANGLDEGX is only needed if horizontal -anisotropy is specified in the NPF Package, if the XT3D option is used -in the NPF Package, or if the SAVE_SPECIFIC_DISCHARGE option is -specified in the NPF Package. ANGLDEGX does not need to be specified -if these conditions are not met. ANGLDEGX is of size NJA; values -specified for vertical connections and for the diagonal position are -not used. Note that ANGLDEGX is read in degrees, which is different -from MODFLOW-USG, which reads a similar variable (ANGLEX) in radians.""", - ) - - iv = MFInteger( - type = "integer", - block = "vertices", - shape = "", - reader = "urword", - optional = False, - longname = -"""vertex number""", - description = -"""is the vertex number. Records in the VERTICES block must be listed in -consecutive order from 1 to NVERT.""", - ) - - xv = MFDouble( - type = "double", - block = "vertices", - shape = "", - reader = "urword", - optional = False, - longname = -"""x-coordinate for vertex""", - description = -"""is the x-coordinate for the vertex.""", - ) - - yv = MFDouble( - type = "double", - block = "vertices", - shape = "", - reader = "urword", - optional = False, - longname = -"""y-coordinate for vertex""", - description = -"""is the y-coordinate for the vertex.""", - ) - - vertices = MFList( - type = "recarray", - params = { - "iv": iv, - "xv": xv, - "yv": yv, - }, - block = "vertices", - shape = "(nvert)", - reader = "urword", - optional = True, - longname = -"""vertices data""", - description = -"""""", - ) - - icell2d = MFInteger( - type = "integer", - block = "cell2d", - shape = "", - reader = "urword", - optional = False, - longname = -"""cell2d number""", - description = -"""is the cell2d number. Records in the CELL2D block must be listed in -consecutive order from 1 to NODES.""", - ) - - xc = MFDouble( - type = "double", - block = "cell2d", - shape = "", - reader = "urword", - optional = False, - longname = -"""x-coordinate for cell center""", - description = -"""is the x-coordinate for the cell center.""", - ) - - yc = MFDouble( - type = "double", - block = "cell2d", - shape = "", - reader = "urword", - optional = False, - longname = -"""y-coordinate for cell center""", - description = -"""is the y-coordinate for the cell center.""", - ) - - ncvert = MFInteger( - type = "integer", - block = "cell2d", - shape = "", - reader = "urword", - optional = False, - longname = -"""number of cell vertices""", - description = -"""is the number of vertices required to define the cell. There may be a -different number of vertices for each cell.""", - ) - - icvert = MFArray( - type = "integer", - block = "cell2d", - shape = "(ncvert)", - reader = "urword", - optional = False, - longname = -"""array of vertex numbers""", - description = -"""is an array of integer values containing vertex numbers (in the -VERTICES block) used to define the cell. Vertices must be listed in -clockwise order.""", - ) - - cell2d = MFList( - type = "recarray", - params = { - "icell2d": icell2d, - "xc": xc, - "yc": yc, - "ncvert": ncvert, - "icvert": icvert, - }, - block = "cell2d", - shape = "(nodes)", - reader = "urword", - optional = True, - longname = -"""cell2d data""", - description = -"""""", - ) \ No newline at end of file diff --git a/flopy4/ispec/gwf_disv.py b/flopy4/ispec/gwf_disv.py deleted file mode 100644 index 142e5558..00000000 --- a/flopy4/ispec/gwf_disv.py +++ /dev/null @@ -1,386 +0,0 @@ -# generated file -from flopy4.array import MFArray -from flopy4.compound import MFRecord, MFList -from flopy4.package import MFPackage -from flopy4.scalar import MFDouble, MFFilename, MFInteger, MFKeyword, MFString - - -class GwfDisv(MFPackage): - multipkg = False - stress = False - advanced = False - - length_units = MFString( - type = "string", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""model length units""", - description = -"""is the length units used for this model. Values can be ``FEET'', -``METERS'', or ``CENTIMETERS''. If not specified, the default is -``UNKNOWN''.""", - ) - - nogrb = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""do not write binary grid file""", - description = -"""keyword to deactivate writing of the binary grid file.""", - ) - - xorigin = MFDouble( - type = "double", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""x-position origin of the model grid coordinate system""", - description = -"""x-position of the origin used for model grid vertices. This value -should be provided in a real-world coordinate system. A default value -of zero is assigned if not specified. The value for XORIGIN does not -affect the model simulation, but it is written to the binary grid file -so that postprocessors can locate the grid in space.""", - ) - - yorigin = MFDouble( - type = "double", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""y-position origin of the model grid coordinate system""", - description = -"""y-position of the origin used for model grid vertices. This value -should be provided in a real-world coordinate system. If not -specified, then a default value equal to zero is used. The value for -YORIGIN does not affect the model simulation, but it is written to the -binary grid file so that postprocessors can locate the grid in space.""", - ) - - angrot = MFDouble( - type = "double", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""rotation angle""", - description = -"""counter-clockwise rotation angle (in degrees) of the model grid -coordinate system relative to a real-world coordinate system. If not -specified, then a default value of 0.0 is assigned. The value for -ANGROT does not affect the model simulation, but it is written to the -binary grid file so that postprocessors can locate the grid in space.""", - ) - - export_array_ascii = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""export array variables to layered ascii files.""", - description = -"""keyword that specifies input griddata arrays should be written to -layered ascii output files.""", - ) - - export_array_netcdf = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""export array variables to netcdf output files.""", - description = -"""keyword that specifies input griddata arrays should be written to the -model output netcdf file.""", - ) - - ncf_filerecord = MFRecord( - type = "record", - params = { - "ncf6": MFKeyword(), - "filein": MFKeyword(), - "ncf6_filename": MFString(), - }, - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""""", - description = -"""""", - ) - - ncf6 = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""ncf keyword""", - description = -"""keyword to specify that record corresponds to a netcdf configuration -(NCF) file.""", - ) - - filein = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""file keyword""", - description = -"""keyword to specify that an input filename is expected next.""", - ) - - ncf6_filename = MFString( - type = "string", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""file name of NCF information""", - description = -"""defines a netcdf configuration (NCF) input file.""", - ) - - nlay = MFInteger( - type = "integer", - block = "dimensions", - shape = "", - reader = "urword", - optional = False, - longname = -"""number of layers""", - description = -"""is the number of layers in the model grid.""", - ) - - ncpl = MFInteger( - type = "integer", - block = "dimensions", - shape = "", - reader = "urword", - optional = False, - longname = -"""number of cells per layer""", - description = -"""is the number of cells per layer. This is a constant value for the -grid and it applies to all layers.""", - ) - - nvert = MFInteger( - type = "integer", - block = "dimensions", - shape = "", - reader = "urword", - optional = False, - longname = -"""number of columns""", - description = -"""is the total number of (x, y) vertex pairs used to characterize the -horizontal configuration of the model grid.""", - ) - - top = MFArray( - type = "double", - block = "griddata", - shape = "(ncpl)", - reader = "readarray", - optional = False, - longname = -"""model top elevation""", - description = -"""is the top elevation for each cell in the top model layer.""", - ) - - botm = MFArray( - type = "double", - block = "griddata", - shape = "(ncpl, nlay)", - reader = "readarray", - optional = False, - longname = -"""model bottom elevation""", - description = -"""is the bottom elevation for each cell.""", - ) - - idomain = MFArray( - type = "integer", - block = "griddata", - shape = "(ncpl, nlay)", - reader = "readarray", - optional = True, - longname = -"""idomain existence array""", - description = -"""is an optional array that characterizes the existence status of a -cell. If the IDOMAIN array is not specified, then all model cells -exist within the solution. If the IDOMAIN value for a cell is 0, the -cell does not exist in the simulation. Input and output values will -be read and written for the cell, but internal to the program, the -cell is excluded from the solution. If the IDOMAIN value for a cell -is 1 or greater, the cell exists in the simulation. If the IDOMAIN -value for a cell is -1, the cell does not exist in the simulation. -Furthermore, the first existing cell above will be connected to the -first existing cell below. This type of cell is referred to as a -``vertical pass through'' cell.""", - ) - - iv = MFInteger( - type = "integer", - block = "vertices", - shape = "", - reader = "urword", - optional = False, - longname = -"""vertex number""", - description = -"""is the vertex number. Records in the VERTICES block must be listed in -consecutive order from 1 to NVERT.""", - ) - - xv = MFDouble( - type = "double", - block = "vertices", - shape = "", - reader = "urword", - optional = False, - longname = -"""x-coordinate for vertex""", - description = -"""is the x-coordinate for the vertex.""", - ) - - yv = MFDouble( - type = "double", - block = "vertices", - shape = "", - reader = "urword", - optional = False, - longname = -"""y-coordinate for vertex""", - description = -"""is the y-coordinate for the vertex.""", - ) - - vertices = MFList( - type = "recarray", - params = { - "iv": iv, - "xv": xv, - "yv": yv, - }, - block = "vertices", - shape = "(nvert)", - reader = "urword", - optional = False, - longname = -"""vertices data""", - description = -"""""", - ) - - icell2d = MFInteger( - type = "integer", - block = "cell2d", - shape = "", - reader = "urword", - optional = False, - longname = -"""cell2d number""", - description = -"""is the CELL2D number. Records in the CELL2D block must be listed in -consecutive order from the first to the last.""", - ) - - xc = MFDouble( - type = "double", - block = "cell2d", - shape = "", - reader = "urword", - optional = False, - longname = -"""x-coordinate for cell center""", - description = -"""is the x-coordinate for the cell center.""", - ) - - yc = MFDouble( - type = "double", - block = "cell2d", - shape = "", - reader = "urword", - optional = False, - longname = -"""y-coordinate for cell center""", - description = -"""is the y-coordinate for the cell center.""", - ) - - ncvert = MFInteger( - type = "integer", - block = "cell2d", - shape = "", - reader = "urword", - optional = False, - longname = -"""number of cell vertices""", - description = -"""is the number of vertices required to define the cell. There may be a -different number of vertices for each cell.""", - ) - - icvert = MFArray( - type = "integer", - block = "cell2d", - shape = "(ncvert)", - reader = "urword", - optional = False, - longname = -"""array of vertex numbers""", - description = -"""is an array of integer values containing vertex numbers (in the -VERTICES block) used to define the cell. Vertices must be listed in -clockwise order. Cells that are connected must share vertices.""", - ) - - cell2d = MFList( - type = "recarray", - params = { - "icell2d": icell2d, - "xc": xc, - "yc": yc, - "ncvert": ncvert, - "icvert": icvert, - }, - block = "cell2d", - shape = "(ncpl)", - reader = "urword", - optional = False, - longname = -"""cell2d data""", - description = -"""""", - ) \ No newline at end of file diff --git a/flopy4/ispec/gwf_ic.py b/flopy4/ispec/gwf_ic.py deleted file mode 100644 index f1cf8d4f..00000000 --- a/flopy4/ispec/gwf_ic.py +++ /dev/null @@ -1,57 +0,0 @@ -# generated file -from flopy4.array import MFArray -from flopy4.compound import MFRecord, MFList -from flopy4.package import MFPackage -from flopy4.scalar import MFDouble, MFFilename, MFInteger, MFKeyword, MFString - - -class GwfIc(MFPackage): - multipkg = False - stress = False - advanced = False - - export_array_ascii = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""export array variables to layered ascii files.""", - description = -"""keyword that specifies input griddata arrays should be written to -layered ascii output files.""", - ) - - export_array_netcdf = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""export array variables to netcdf output files.""", - description = -"""keyword that specifies input griddata arrays should be written to the -model output netcdf file.""", - ) - - strt = MFArray( - type = "double", - block = "griddata", - shape = "(nodes)", - reader = "readarray", - optional = False, - longname = -"""starting head""", - description = -"""is the initial (starting) head---that is, head at the beginning of the -GWF Model simulation. STRT must be specified for all simulations, -including steady-state simulations. One value is read for every model -cell. For simulations in which the first stress period is steady -state, the values used for STRT generally do not affect the simulation -(exceptions may occur if cells go dry and (or) rewet). The execution -time, however, will be less if STRT includes hydraulic heads that are -close to the steady-state solution. A head value lower than the cell -bottom can be provided if a cell should start as dry.""", - ) \ No newline at end of file diff --git a/flopy4/ispec/gwf_model.py b/flopy4/ispec/gwf_model.py deleted file mode 100644 index 62af6c8b..00000000 --- a/flopy4/ispec/gwf_model.py +++ /dev/null @@ -1,20 +0,0 @@ -# generated file -from flopy4.model import MFModel -from flopy4.resolver import Resolve -from flopy4.ispec.gwf_chd import GwfChd -from flopy4.ispec.gwf_dis import GwfDis -from flopy4.ispec.gwf_disu import GwfDisu -from flopy4.ispec.gwf_disv import GwfDisv -from flopy4.ispec.gwf_ic import GwfIc -from flopy4.ispec.gwf_nam import GwfNam -from flopy4.ispec.gwf_npf import GwfNpf - - -class GwfModel(MFModel, Resolve): - chd6 = GwfChd() - dis6 = GwfDis() - disu6 = GwfDisu() - disv6 = GwfDisv() - ic6 = GwfIc() - nam6 = GwfNam() - npf6 = GwfNpf() diff --git a/flopy4/ispec/gwf_nam.py b/flopy4/ispec/gwf_nam.py deleted file mode 100644 index a9d75a86..00000000 --- a/flopy4/ispec/gwf_nam.py +++ /dev/null @@ -1,242 +0,0 @@ -# generated file -from flopy4.array import MFArray -from flopy4.compound import MFRecord, MFList -from flopy4.package import MFPackage -from flopy4.scalar import MFDouble, MFFilename, MFInteger, MFKeyword, MFString - - -class GwfNam(MFPackage): - multipkg = False - stress = False - advanced = False - - list = MFString( - type = "string", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""name of listing file""", - description = -"""is name of the listing file to create for this GWF model. If not -specified, then the name of the list file will be the basename of the -GWF model name file and the '.lst' extension. For example, if the GWF -name file is called ``my.model.nam'' then the list file will be called -``my.model.lst''.""", - ) - - print_input = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""print input to listing file""", - description = -"""REPLACE print_input {'{#1}': 'all model stress package'}""", - ) - - print_flows = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""print calculated flows to listing file""", - description = -"""REPLACE print_flows {'{#1}': 'all model package'}""", - ) - - save_flows = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""save flows for all packages to budget file""", - description = -"""REPLACE save_flows {'{#1}': 'all model package'}""", - ) - - newtonoptions = MFRecord( - type = "record", - params = { - "newton": MFKeyword(), - "under_relaxation": MFKeyword(), - }, - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""newton keyword and options""", - description = -"""none""", - ) - - newton = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""keyword to activate Newton-Raphson formulation""", - description = -"""keyword that activates the Newton-Raphson formulation for groundwater -flow between connected, convertible groundwater cells and stress -packages that support calculation of Newton-Raphson terms for -groundwater exchanges. Cells will not dry when this option is used. By -default, the Newton-Raphson formulation is not applied.""", - ) - - under_relaxation = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""keyword to activate Newton-Raphson UNDER_RELAXATION option""", - description = -"""keyword that indicates whether the groundwater head in a cell will be -under-relaxed when water levels fall below the bottom of the model -below any given cell. By default, Newton-Raphson UNDER_RELAXATION is -not applied.""", - ) - - export_netcdf = MFString( - type = "string", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""export model output netcdf file.""", - description = -"""keyword that specifies timeseries data for the dependent variable -should be written to a model output netcdf file. No value or -``UGRID'' (ugrid based export) values are supported.""", - ) - - nc_filerecord = MFRecord( - type = "record", - params = { - "netcdf": MFKeyword(), - "filein": MFKeyword(), - "netcdf_filename": MFString(), - }, - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""""", - description = -"""netcdf config filerecord""", - ) - - netcdf = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""netcdf keyword""", - description = -"""keyword to specify that record corresponds to a netcdf input file.""", - ) - - filein = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""file keyword""", - description = -"""keyword to specify that an input filename is expected next.""", - ) - - netcdf_filename = MFString( - type = "string", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""netcdf input filename""", - description = -"""defines a netcdf input file.""", - ) - - ftype = MFString( - type = "string", - block = "packages", - shape = "", - reader = "urword", - optional = False, - longname = -"""package type""", - description = -"""is the file type, which must be one of the following character values -shown in table~ref{table:ftype-gwf}. Ftype may be entered in any -combination of uppercase and lowercase.""", - ) - - fname = MFString( - type = "string", - block = "packages", - shape = "", - reader = "urword", - optional = False, - longname = -"""file name""", - description = -"""is the name of the file containing the package input. The path to the -file should be included if the file is not located in the folder where -the program was run.""", - ) - - pname = MFString( - type = "string", - block = "packages", - shape = "", - reader = "urword", - optional = True, - longname = -"""user name for package""", - description = -"""is the user-defined name for the package. PNAME is restricted to 16 -characters. No spaces are allowed in PNAME. PNAME character values -are read and stored by the program for stress packages only. These -names may be useful for labeling purposes when multiple stress -packages of the same type are located within a single GWF Model. If -PNAME is specified for a stress package, then PNAME will be used in -the flow budget table in the listing file; it will also be used for -the text entry in the cell-by-cell budget file. PNAME is case -insensitive and is stored in all upper case letters.""", - ) - - packages = MFList( - type = "recarray", - params = { - "ftype": ftype, - "fname": fname, - "pname": pname, - }, - block = "packages", - shape = "", - reader = "urword", - optional = False, - longname = -"""package list""", - description = -"""""", - ) \ No newline at end of file diff --git a/flopy4/ispec/gwf_npf.py b/flopy4/ispec/gwf_npf.py deleted file mode 100644 index 818d5234..00000000 --- a/flopy4/ispec/gwf_npf.py +++ /dev/null @@ -1,615 +0,0 @@ -# generated file -from flopy4.array import MFArray -from flopy4.compound import MFRecord, MFList -from flopy4.package import MFPackage -from flopy4.scalar import MFDouble, MFFilename, MFInteger, MFKeyword, MFString - - -class GwfNpf(MFPackage): - multipkg = False - stress = False - advanced = False - - save_flows = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""keyword to save NPF flows""", - description = -"""keyword to indicate that budget flow terms will be written to the file -specified with ``BUDGET SAVE FILE'' in Output Control.""", - ) - - print_flows = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""keyword to print NPF flows to listing file""", - description = -"""keyword to indicate that calculated flows between cells will be -printed to the listing file for every stress period time step in which -``BUDGET PRINT'' is specified in Output Control. If there is no Output -Control option and ``PRINT_FLOWS'' is specified, then flow rates are -printed for the last time step of each stress period. This option can -produce extremely large list files because all cell-by-cell flows are -printed. It should only be used with the NPF Package for models that -have a small number of cells.""", - ) - - alternative_cell_averaging = MFString( - type = "string", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""conductance weighting option""", - description = -"""is a text keyword to indicate that an alternative method will be used -for calculating the conductance for horizontal cell connections. The -text value for ALTERNATIVE_CELL_AVERAGING can be ``LOGARITHMIC'', -``AMT-LMK'', or ``AMT-HMK''. ``AMT-LMK'' signifies that the -conductance will be calculated using arithmetic-mean thickness and -logarithmic-mean hydraulic conductivity. ``AMT-HMK'' signifies that -the conductance will be calculated using arithmetic-mean thickness and -harmonic-mean hydraulic conductivity. If the user does not specify a -value for ALTERNATIVE_CELL_AVERAGING, then the harmonic-mean method -will be used. This option cannot be used if the XT3D option is -invoked.""", - ) - - thickstrt = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""keyword to activate THICKSTRT option""", - description = -"""indicates that cells having a negative ICELLTYPE are confined, and -their cell thickness for conductance calculations will be computed as -STRT-BOT rather than TOP-BOT. This option should be used with caution -as it only affects conductance calculations in the NPF Package.""", - ) - - cvoptions = MFRecord( - type = "record", - params = { - "variablecv": MFKeyword(), - "dewatered": MFKeyword(), - }, - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""vertical conductance options""", - description = -"""none""", - ) - - variablecv = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""keyword to activate VARIABLECV option""", - description = -"""keyword to indicate that the vertical conductance will be calculated -using the saturated thickness and properties of the overlying cell and -the thickness and properties of the underlying cell. If the DEWATERED -keyword is also specified, then the vertical conductance is calculated -using only the saturated thickness and properties of the overlying -cell if the head in the underlying cell is below its top. If these -keywords are not specified, then the default condition is to calculate -the vertical conductance at the start of the simulation using the -initial head and the cell properties. The vertical conductance -remains constant for the entire simulation.""", - ) - - dewatered = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""keyword to activate DEWATERED option""", - description = -"""If the DEWATERED keyword is specified, then the vertical conductance -is calculated using only the saturated thickness and properties of the -overlying cell if the head in the underlying cell is below its top.""", - ) - - perched = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""keyword to activate PERCHED option""", - description = -"""keyword to indicate that when a cell is overlying a dewatered -convertible cell, the head difference used in Darcy's Law is equal to -the head in the overlying cell minus the bottom elevation of the -overlying cell. If not specified, then the default is to use the head -difference between the two cells.""", - ) - - rewet_record = MFRecord( - type = "record", - params = { - "rewet": MFKeyword(), - "wetfct": MFDouble(), - "iwetit": MFInteger(), - "ihdwet": MFInteger(), - }, - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""""", - description = -"""""", - ) - - rewet = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""keyword to activate rewetting""", - description = -"""activates model rewetting. Rewetting is off by default.""", - ) - - wetfct = MFDouble( - type = "double", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""wetting factor to use for rewetting""", - description = -"""is a keyword and factor that is included in the calculation of the -head that is initially established at a cell when that cell is -converted from dry to wet.""", - ) - - iwetit = MFInteger( - type = "integer", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""interval to use for rewetting""", - description = -"""is a keyword and iteration interval for attempting to wet cells. -Wetting is attempted every IWETIT iteration. This applies to outer -iterations and not inner iterations. If IWETIT is specified as zero or -less, then the value is changed to 1.""", - ) - - ihdwet = MFInteger( - type = "integer", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""flag to determine wetting equation""", - description = -"""is a keyword and integer flag that determines which equation is used -to define the initial head at cells that become wet. If IHDWET is 0, -h = BOT + WETFCT (hm - BOT). If IHDWET is not 0, h = BOT + WETFCT -(THRESH).""", - ) - - xt3doptions = MFRecord( - type = "record", - params = { - "xt3d": MFKeyword(), - "rhs": MFKeyword(), - }, - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""keyword to activate XT3D""", - description = -"""none""", - ) - - xt3d = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""keyword to activate XT3D""", - description = -"""keyword indicating that the XT3D formulation will be used. If the RHS -keyword is also included, then the XT3D additional terms will be added -to the right-hand side. If the RHS keyword is excluded, then the XT3D -terms will be put into the coefficient matrix. Use of XT3D will -substantially increase the computational effort, but will result in -improved accuracy for anisotropic conductivity fields and for -unstructured grids in which the CVFD requirement is violated. XT3D -requires additional information about the shapes of grid cells. If -XT3D is active and the DISU Package is used, then the user will need -to provide in the DISU Package the angldegx array in the -CONNECTIONDATA block and the VERTICES and CELL2D blocks.""", - ) - - rhs = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""keyword to XT3D on right hand side""", - description = -"""If the RHS keyword is also included, then the XT3D additional terms -will be added to the right-hand side. If the RHS keyword is excluded, -then the XT3D terms will be put into the coefficient matrix.""", - ) - - save_specific_discharge = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""keyword to save specific discharge""", - description = -"""keyword to indicate that x, y, and z components of specific discharge -will be calculated at cell centers and written to the budget file, -which is specified with ``BUDGET SAVE FILE'' in Output Control. If -this option is activated, then additional information may be required -in the discretization packages and the GWF Exchange package (if GWF -models are coupled). Specifically, ANGLDEGX must be specified in the -CONNECTIONDATA block of the DISU Package; ANGLDEGX must also be -specified for the GWF Exchange as an auxiliary variable.""", - ) - - save_saturation = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""keyword to save saturation""", - description = -"""keyword to indicate that cell saturation will be written to the budget -file, which is specified with ``BUDGET SAVE FILE'' in Output Control. -Saturation will be saved to the budget file as an auxiliary variable -saved with the DATA-SAT text label. Saturation is a cell variable -that ranges from zero to one and can be used by post processing -programs to determine how much of a cell volume is saturated. If -ICELLTYPE is 0, then saturation is always one.""", - ) - - k22overk = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""keyword to indicate that specified K22 is a ratio""", - description = -"""keyword to indicate that specified K22 is a ratio of K22 divided by K. -If this option is specified, then the K22 array entered in the NPF -Package will be multiplied by K after being read.""", - ) - - k33overk = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""keyword to indicate that specified K33 is a ratio""", - description = -"""keyword to indicate that specified K33 is a ratio of K33 divided by K. -If this option is specified, then the K33 array entered in the NPF -Package will be multiplied by K after being read.""", - ) - - tvk_filerecord = MFRecord( - type = "record", - params = { - "tvk6": MFKeyword(), - "filein": MFKeyword(), - "tvk6_filename": MFString(), - }, - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""""", - description = -"""""", - ) - - tvk6 = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""tvk keyword""", - description = -"""keyword to specify that record corresponds to a time-varying hydraulic -conductivity (TVK) file. The behavior of TVK and a description of the -input file is provided separately.""", - ) - - filein = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""file keyword""", - description = -"""keyword to specify that an input filename is expected next.""", - ) - - tvk6_filename = MFString( - type = "string", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""file name of TVK information""", - description = -"""defines a time-varying hydraulic conductivity (TVK) input file. -Records in the TVK file can be used to change hydraulic conductivity -properties at specified times or stress periods.""", - ) - - export_array_ascii = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""export array variables to layered ascii files.""", - description = -"""keyword that specifies input griddata arrays should be written to -layered ascii output files.""", - ) - - export_array_netcdf = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""export array variables to netcdf output files.""", - description = -"""keyword that specifies input griddata arrays should be written to the -model output netcdf file.""", - ) - - dev_no_newton = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""turn off Newton for unconfined cells""", - description = -"""turn off Newton for unconfined cells""", - ) - - dev_omega = MFDouble( - type = "double", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""set saturation omega value""", - description = -"""set saturation omega value""", - ) - - icelltype = MFArray( - type = "integer", - block = "griddata", - shape = "(nodes)", - reader = "readarray", - optional = False, - longname = -"""confined or convertible indicator""", - description = -"""flag for each cell that specifies how saturated thickness is treated. -0 means saturated thickness is held constant; $>$0 means saturated -thickness varies with computed head when head is below the cell top; -$<$0 means saturated thickness varies with computed head unless the -THICKSTRT option is in effect. When THICKSTRT is in effect, a -negative value for ICELLTYPE indicates that the saturated thickness -value used in conductance calculations in the NPF Package will be -computed as STRT-BOT and held constant. If the THICKSTRT option is -not in effect, then negative values provided by the user for ICELLTYPE -are automatically reassigned by the program to a value of one.""", - ) - - k = MFArray( - type = "double", - block = "griddata", - shape = "(nodes)", - reader = "readarray", - optional = False, - longname = -"""hydraulic conductivity (L/T)""", - description = -"""is the hydraulic conductivity. For the common case in which the user -would like to specify the horizontal hydraulic conductivity and the -vertical hydraulic conductivity, then K should be assigned as the -horizontal hydraulic conductivity, K33 should be assigned as the -vertical hydraulic conductivity, and K22 and the three rotation angles -should not be specified. When more sophisticated anisotropy is -required, then K corresponds to the K11 hydraulic conductivity axis. -All included cells (IDOMAIN $>$ 0) must have a K value greater than -zero.""", - ) - - k22 = MFArray( - type = "double", - block = "griddata", - shape = "(nodes)", - reader = "readarray", - optional = True, - longname = -"""hydraulic conductivity of second ellipsoid axis""", - description = -"""is the hydraulic conductivity of the second ellipsoid axis (or the -ratio of K22/K if the K22OVERK option is specified); for an unrotated -case this is the hydraulic conductivity in the y direction. If K22 is -not included in the GRIDDATA block, then K22 is set equal to K. For a -regular MODFLOW grid (DIS Package is used) in which no rotation angles -are specified, K22 is the hydraulic conductivity along columns in the -y direction. For an unstructured DISU grid, the user must assign -principal x and y axes and provide the angle for each cell face -relative to the assigned x direction. All included cells (IDOMAIN $>$ -0) must have a K22 value greater than zero.""", - ) - - k33 = MFArray( - type = "double", - block = "griddata", - shape = "(nodes)", - reader = "readarray", - optional = True, - longname = -"""hydraulic conductivity of third ellipsoid axis (L/T)""", - description = -"""is the hydraulic conductivity of the third ellipsoid axis (or the -ratio of K33/K if the K33OVERK option is specified); for an unrotated -case, this is the vertical hydraulic conductivity. When anisotropy is -applied, K33 corresponds to the K33 tensor component. All included -cells (IDOMAIN $>$ 0) must have a K33 value greater than zero.""", - ) - - angle1 = MFArray( - type = "double", - block = "griddata", - shape = "(nodes)", - reader = "readarray", - optional = True, - longname = -"""first anisotropy rotation angle (degrees)""", - description = -"""is a rotation angle of the hydraulic conductivity tensor in degrees. -The angle represents the first of three sequential rotations of the -hydraulic conductivity ellipsoid. With the K11, K22, and K33 axes of -the ellipsoid initially aligned with the x, y, and z coordinate axes, -respectively, ANGLE1 rotates the ellipsoid about its K33 axis (within -the x - y plane). A positive value represents counter-clockwise -rotation when viewed from any point on the positive K33 axis, looking -toward the center of the ellipsoid. A value of zero indicates that the -K11 axis lies within the x - z plane. If ANGLE1 is not specified, -default values of zero are assigned to ANGLE1, ANGLE2, and ANGLE3, in -which case the K11, K22, and K33 axes are aligned with the x, y, and z -axes, respectively.""", - ) - - angle2 = MFArray( - type = "double", - block = "griddata", - shape = "(nodes)", - reader = "readarray", - optional = True, - longname = -"""second anisotropy rotation angle (degrees)""", - description = -"""is a rotation angle of the hydraulic conductivity tensor in degrees. -The angle represents the second of three sequential rotations of the -hydraulic conductivity ellipsoid. Following the rotation by ANGLE1 -described above, ANGLE2 rotates the ellipsoid about its K22 axis (out -of the x - y plane). An array can be specified for ANGLE2 only if -ANGLE1 is also specified. A positive value of ANGLE2 represents -clockwise rotation when viewed from any point on the positive K22 -axis, looking toward the center of the ellipsoid. A value of zero -indicates that the K11 axis lies within the x - y plane. If ANGLE2 is -not specified, default values of zero are assigned to ANGLE2 and -ANGLE3; connections that are not user-designated as vertical are -assumed to be strictly horizontal (that is, to have no z component to -their orientation); and connection lengths are based on horizontal -distances.""", - ) - - angle3 = MFArray( - type = "double", - block = "griddata", - shape = "(nodes)", - reader = "readarray", - optional = True, - longname = -"""third anisotropy rotation angle (degrees)""", - description = -"""is a rotation angle of the hydraulic conductivity tensor in degrees. -The angle represents the third of three sequential rotations of the -hydraulic conductivity ellipsoid. Following the rotations by ANGLE1 -and ANGLE2 described above, ANGLE3 rotates the ellipsoid about its K11 -axis. An array can be specified for ANGLE3 only if ANGLE1 and ANGLE2 -are also specified. An array must be specified for ANGLE3 if ANGLE2 is -specified. A positive value of ANGLE3 represents clockwise rotation -when viewed from any point on the positive K11 axis, looking toward -the center of the ellipsoid. A value of zero indicates that the K22 -axis lies within the x - y plane.""", - ) - - wetdry = MFArray( - type = "double", - block = "griddata", - shape = "(nodes)", - reader = "readarray", - optional = True, - longname = -"""wetdry threshold and factor""", - description = -"""is a combination of the wetting threshold and a flag to indicate which -neighboring cells can cause a cell to become wet. If WETDRY $<$ 0, -only a cell below a dry cell can cause the cell to become wet. If -WETDRY $>$ 0, the cell below a dry cell and horizontally adjacent -cells can cause a cell to become wet. If WETDRY is 0, the cell cannot -be wetted. The absolute value of WETDRY is the wetting threshold. When -the sum of BOT and the absolute value of WETDRY at a dry cell is -equaled or exceeded by the head at an adjacent cell, the cell is -wetted. WETDRY must be specified if ``REWET'' is specified in the -OPTIONS block. If ``REWET'' is not specified in the options block, -then WETDRY can be entered, and memory will be allocated for it, even -though it is not used.""", - ) \ No newline at end of file diff --git a/flopy4/ispec/gwt_dis.py b/flopy4/ispec/gwt_dis.py deleted file mode 100644 index 80221fdf..00000000 --- a/flopy4/ispec/gwt_dis.py +++ /dev/null @@ -1,269 +0,0 @@ -# generated file -from flopy4.array import MFArray -from flopy4.compound import MFRecord, MFList -from flopy4.package import MFPackage -from flopy4.scalar import MFDouble, MFFilename, MFInteger, MFKeyword, MFString - - -class GwtDis(MFPackage): - multipkg = False - stress = False - advanced = False - - length_units = MFString( - type = "string", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""model length units""", - description = -"""is the length units used for this model. Values can be ``FEET'', -``METERS'', or ``CENTIMETERS''. If not specified, the default is -``UNKNOWN''.""", - ) - - nogrb = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""do not write binary grid file""", - description = -"""keyword to deactivate writing of the binary grid file.""", - ) - - xorigin = MFDouble( - type = "double", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""x-position of the model grid origin""", - description = -"""x-position of the lower-left corner of the model grid. A default -value of zero is assigned if not specified. The value for XORIGIN -does not affect the model simulation, but it is written to the binary -grid file so that postprocessors can locate the grid in space.""", - ) - - yorigin = MFDouble( - type = "double", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""y-position of the model grid origin""", - description = -"""y-position of the lower-left corner of the model grid. If not -specified, then a default value equal to zero is used. The value for -YORIGIN does not affect the model simulation, but it is written to the -binary grid file so that postprocessors can locate the grid in space.""", - ) - - angrot = MFDouble( - type = "double", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""rotation angle""", - description = -"""counter-clockwise rotation angle (in degrees) of the lower-left corner -of the model grid. If not specified, then a default value of 0.0 is -assigned. The value for ANGROT does not affect the model simulation, -but it is written to the binary grid file so that postprocessors can -locate the grid in space.""", - ) - - export_array_ascii = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""export array variables to layered ascii files.""", - description = -"""keyword that specifies input griddata arrays should be written to -layered ascii output files.""", - ) - - export_array_netcdf = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""export array variables to netcdf output files.""", - description = -"""keyword that specifies input griddata arrays should be written to the -model output netcdf file.""", - ) - - ncf_filerecord = MFRecord( - type = "record", - params = { - "ncf6": MFKeyword(), - "filein": MFKeyword(), - "ncf6_filename": MFString(), - }, - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""""", - description = -"""""", - ) - - ncf6 = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""ncf keyword""", - description = -"""keyword to specify that record corresponds to a netcdf configuration -(NCF) file.""", - ) - - filein = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""file keyword""", - description = -"""keyword to specify that an input filename is expected next.""", - ) - - ncf6_filename = MFString( - type = "string", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""file name of NCF information""", - description = -"""defines a netcdf configuration (NCF) input file.""", - ) - - nlay = MFInteger( - type = "integer", - block = "dimensions", - shape = "", - reader = "urword", - optional = False, - longname = -"""number of layers""", - description = -"""is the number of layers in the model grid.""", - ) - - nrow = MFInteger( - type = "integer", - block = "dimensions", - shape = "", - reader = "urword", - optional = False, - longname = -"""number of rows""", - description = -"""is the number of rows in the model grid.""", - ) - - ncol = MFInteger( - type = "integer", - block = "dimensions", - shape = "", - reader = "urword", - optional = False, - longname = -"""number of columns""", - description = -"""is the number of columns in the model grid.""", - ) - - delr = MFArray( - type = "double", - block = "griddata", - shape = "(ncol)", - reader = "readarray", - optional = False, - longname = -"""spacing along a row""", - description = -"""is the column spacing in the row direction.""", - ) - - delc = MFArray( - type = "double", - block = "griddata", - shape = "(nrow)", - reader = "readarray", - optional = False, - longname = -"""spacing along a column""", - description = -"""is the row spacing in the column direction.""", - ) - - top = MFArray( - type = "double", - block = "griddata", - shape = "(ncol, nrow)", - reader = "readarray", - optional = False, - longname = -"""cell top elevation""", - description = -"""is the top elevation for each cell in the top model layer.""", - ) - - botm = MFArray( - type = "double", - block = "griddata", - shape = "(ncol, nrow, nlay)", - reader = "readarray", - optional = False, - longname = -"""cell bottom elevation""", - description = -"""is the bottom elevation for each cell.""", - ) - - idomain = MFArray( - type = "integer", - block = "griddata", - shape = "(ncol, nrow, nlay)", - reader = "readarray", - optional = True, - longname = -"""idomain existence array""", - description = -"""is an optional array that characterizes the existence status of a -cell. If the IDOMAIN array is not specified, then all model cells -exist within the solution. If the IDOMAIN value for a cell is 0, the -cell does not exist in the simulation. Input and output values will -be read and written for the cell, but internal to the program, the -cell is excluded from the solution. If the IDOMAIN value for a cell -is 1, the cell exists in the simulation. If the IDOMAIN value for a -cell is -1, the cell does not exist in the simulation. Furthermore, -the first existing cell above will be connected to the first existing -cell below. This type of cell is referred to as a ``vertical pass -through'' cell.""", - ) \ No newline at end of file diff --git a/flopy4/ispec/gwt_disu.py b/flopy4/ispec/gwt_disu.py deleted file mode 100644 index a6d00e65..00000000 --- a/flopy4/ispec/gwt_disu.py +++ /dev/null @@ -1,471 +0,0 @@ -# generated file -from flopy4.array import MFArray -from flopy4.compound import MFRecord, MFList -from flopy4.package import MFPackage -from flopy4.scalar import MFDouble, MFFilename, MFInteger, MFKeyword, MFString - - -class GwtDisu(MFPackage): - multipkg = False - stress = False - advanced = False - - length_units = MFString( - type = "string", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""model length units""", - description = -"""is the length units used for this model. Values can be ``FEET'', -``METERS'', or ``CENTIMETERS''. If not specified, the default is -``UNKNOWN''.""", - ) - - nogrb = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""do not write binary grid file""", - description = -"""keyword to deactivate writing of the binary grid file.""", - ) - - xorigin = MFDouble( - type = "double", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""x-position origin of the model grid coordinate system""", - description = -"""x-position of the origin used for model grid vertices. This value -should be provided in a real-world coordinate system. A default value -of zero is assigned if not specified. The value for XORIGIN does not -affect the model simulation, but it is written to the binary grid file -so that postprocessors can locate the grid in space.""", - ) - - yorigin = MFDouble( - type = "double", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""y-position origin of the model grid coordinate system""", - description = -"""y-position of the origin used for model grid vertices. This value -should be provided in a real-world coordinate system. If not -specified, then a default value equal to zero is used. The value for -YORIGIN does not affect the model simulation, but it is written to the -binary grid file so that postprocessors can locate the grid in space.""", - ) - - angrot = MFDouble( - type = "double", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""rotation angle""", - description = -"""counter-clockwise rotation angle (in degrees) of the model grid -coordinate system relative to a real-world coordinate system. If not -specified, then a default value of 0.0 is assigned. The value for -ANGROT does not affect the model simulation, but it is written to the -binary grid file so that postprocessors can locate the grid in space.""", - ) - - vertical_offset_tolerance = MFDouble( - type = "double", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""vertical length dimension for top and bottom checking""", - description = -"""checks are performed to ensure that the top of a cell is not higher -than the bottom of an overlying cell. This option can be used to -specify the tolerance that is used for checking. If top of a cell is -above the bottom of an overlying cell by a value less than this -tolerance, then the program will not terminate with an error. The -default value is zero. This option should generally not be used.""", - ) - - export_array_ascii = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""export array variables to layered ascii files.""", - description = -"""keyword that specifies input griddata arrays should be written to -layered ascii output files.""", - ) - - nodes = MFInteger( - type = "integer", - block = "dimensions", - shape = "", - reader = "urword", - optional = False, - longname = -"""number of layers""", - description = -"""is the number of cells in the model grid.""", - ) - - nja = MFInteger( - type = "integer", - block = "dimensions", - shape = "", - reader = "urword", - optional = False, - longname = -"""number of columns""", - description = -"""is the sum of the number of connections and NODES. When calculating -the total number of connections, the connection between cell n and -cell m is considered to be different from the connection between cell -m and cell n. Thus, NJA is equal to the total number of connections, -including n to m and m to n, and the total number of cells.""", - ) - - nvert = MFInteger( - type = "integer", - block = "dimensions", - shape = "", - reader = "urword", - optional = True, - longname = -"""number of vertices""", - description = -"""is the total number of (x, y) vertex pairs used to define the plan- -view shape of each cell in the model grid. If NVERT is not specified -or is specified as zero, then the VERTICES and CELL2D blocks below are -not read. NVERT and the accompanying VERTICES and CELL2D blocks -should be specified for most simulations. If the XT3D or -SAVE_SPECIFIC_DISCHARGE options are specified in the NPF Package, then -this information is required.""", - ) - - top = MFArray( - type = "double", - block = "griddata", - shape = "(nodes)", - reader = "readarray", - optional = False, - longname = -"""cell top elevation""", - description = -"""is the top elevation for each cell in the model grid.""", - ) - - bot = MFArray( - type = "double", - block = "griddata", - shape = "(nodes)", - reader = "readarray", - optional = False, - longname = -"""cell bottom elevation""", - description = -"""is the bottom elevation for each cell.""", - ) - - area = MFArray( - type = "double", - block = "griddata", - shape = "(nodes)", - reader = "readarray", - optional = False, - longname = -"""cell surface area""", - description = -"""is the cell surface area (in plan view).""", - ) - - idomain = MFArray( - type = "integer", - block = "griddata", - shape = "(nodes)", - reader = "readarray", - optional = True, - longname = -"""idomain existence array""", - description = -"""is an optional array that characterizes the existence status of a -cell. If the IDOMAIN array is not specified, then all model cells -exist within the solution. If the IDOMAIN value for a cell is 0, the -cell does not exist in the simulation. Input and output values will -be read and written for the cell, but internal to the program, the -cell is excluded from the solution. If the IDOMAIN value for a cell -is 1 or greater, the cell exists in the simulation. IDOMAIN values of --1 cannot be specified for the DISU Package.""", - ) - - iac = MFArray( - type = "integer", - block = "connectiondata", - shape = "(nodes)", - reader = "readarray", - optional = False, - longname = -"""number of cell connections""", - description = -"""is the number of connections (plus 1) for each cell. The sum of all -the entries in IAC must be equal to NJA.""", - ) - - ja = MFArray( - type = "integer", - block = "connectiondata", - shape = "(nja)", - reader = "readarray", - optional = False, - longname = -"""grid connectivity""", - description = -"""is a list of cell number (n) followed by its connecting cell numbers -(m) for each of the m cells connected to cell n. The number of values -to provide for cell n is IAC(n). This list is sequentially provided -for the first to the last cell. The first value in the list must be -cell n itself, and the remaining cells must be listed in an increasing -order (sorted from lowest number to highest). Note that the cell and -its connections are only supplied for the GWT cells and their -connections to the other GWT cells. Also note that the JA list input -may be divided such that every node and its connectivity list can be -on a separate line for ease in readability of the file. To further -ease readability of the file, the node number of the cell whose -connectivity is subsequently listed, may be expressed as a negative -number, the sign of which is subsequently converted to positive by the -code.""", - ) - - ihc = MFArray( - type = "integer", - block = "connectiondata", - shape = "(nja)", - reader = "readarray", - optional = False, - longname = -"""connection type""", - description = -"""is an index array indicating the direction between node n and all of -its m connections. If IHC = 0 then cell n and cell m are connected in -the vertical direction. Cell n overlies cell m if the cell number for -n is less than m; cell m overlies cell n if the cell number for m is -less than n. If IHC = 1 then cell n and cell m are connected in the -horizontal direction. If IHC = 2 then cell n and cell m are connected -in the horizontal direction, and the connection is vertically -staggered. A vertically staggered connection is one in which a cell -is horizontally connected to more than one cell in a horizontal -connection.""", - ) - - cl12 = MFArray( - type = "double", - block = "connectiondata", - shape = "(nja)", - reader = "readarray", - optional = False, - longname = -"""connection lengths""", - description = -"""is the array containing connection lengths between the center of cell -n and the shared face with each adjacent m cell.""", - ) - - hwva = MFArray( - type = "double", - block = "connectiondata", - shape = "(nja)", - reader = "readarray", - optional = False, - longname = -"""connection lengths""", - description = -"""is a symmetric array of size NJA. For horizontal connections, entries -in HWVA are the horizontal width perpendicular to flow. For vertical -connections, entries in HWVA are the vertical area for flow. Thus, -values in the HWVA array contain dimensions of both length and area. -Entries in the HWVA array have a one-to-one correspondence with the -connections specified in the JA array. Likewise, there is a one-to- -one correspondence between entries in the HWVA array and entries in -the IHC array, which specifies the connection type (horizontal or -vertical). Entries in the HWVA array must be symmetric; the program -will terminate with an error if the value for HWVA for an n to m -connection does not equal the value for HWVA for the corresponding n -to m connection.""", - ) - - angldegx = MFArray( - type = "double", - block = "connectiondata", - shape = "(nja)", - reader = "readarray", - optional = True, - longname = -"""angle of face normal to connection""", - description = -"""is the angle (in degrees) between the horizontal x-axis and the -outward normal to the face between a cell and its connecting cells. -The angle varies between zero and 360.0 degrees, where zero degrees -points in the positive x-axis direction, and 90 degrees points in the -positive y-axis direction. ANGLDEGX is only needed if horizontal -anisotropy is specified in the NPF Package, if the XT3D option is used -in the NPF Package, or if the SAVE_SPECIFIC_DISCHARGE option is -specified in the NPF Package. ANGLDEGX does not need to be specified -if these conditions are not met. ANGLDEGX is of size NJA; values -specified for vertical connections and for the diagonal position are -not used. Note that ANGLDEGX is read in degrees, which is different -from MODFLOW-USG, which reads a similar variable (ANGLEX) in radians.""", - ) - - iv = MFInteger( - type = "integer", - block = "vertices", - shape = "", - reader = "urword", - optional = False, - longname = -"""vertex number""", - description = -"""is the vertex number. Records in the VERTICES block must be listed in -consecutive order from 1 to NVERT.""", - ) - - xv = MFDouble( - type = "double", - block = "vertices", - shape = "", - reader = "urword", - optional = False, - longname = -"""x-coordinate for vertex""", - description = -"""is the x-coordinate for the vertex.""", - ) - - yv = MFDouble( - type = "double", - block = "vertices", - shape = "", - reader = "urword", - optional = False, - longname = -"""y-coordinate for vertex""", - description = -"""is the y-coordinate for the vertex.""", - ) - - vertices = MFList( - type = "recarray", - params = { - "iv": iv, - "xv": xv, - "yv": yv, - }, - block = "vertices", - shape = "(nvert)", - reader = "urword", - optional = True, - longname = -"""vertices data""", - description = -"""""", - ) - - icell2d = MFInteger( - type = "integer", - block = "cell2d", - shape = "", - reader = "urword", - optional = False, - longname = -"""cell2d number""", - description = -"""is the cell2d number. Records in the CELL2D block must be listed in -consecutive order from 1 to NODES.""", - ) - - xc = MFDouble( - type = "double", - block = "cell2d", - shape = "", - reader = "urword", - optional = False, - longname = -"""x-coordinate for cell center""", - description = -"""is the x-coordinate for the cell center.""", - ) - - yc = MFDouble( - type = "double", - block = "cell2d", - shape = "", - reader = "urword", - optional = False, - longname = -"""y-coordinate for cell center""", - description = -"""is the y-coordinate for the cell center.""", - ) - - ncvert = MFInteger( - type = "integer", - block = "cell2d", - shape = "", - reader = "urword", - optional = False, - longname = -"""number of cell vertices""", - description = -"""is the number of vertices required to define the cell. There may be a -different number of vertices for each cell.""", - ) - - icvert = MFArray( - type = "integer", - block = "cell2d", - shape = "(ncvert)", - reader = "urword", - optional = False, - longname = -"""array of vertex numbers""", - description = -"""is an array of integer values containing vertex numbers (in the -VERTICES block) used to define the cell. Vertices must be listed in -clockwise order.""", - ) - - cell2d = MFList( - type = "recarray", - params = { - "icell2d": icell2d, - "xc": xc, - "yc": yc, - "ncvert": ncvert, - "icvert": icvert, - }, - block = "cell2d", - shape = "(nodes)", - reader = "urword", - optional = True, - longname = -"""cell2d data""", - description = -"""""", - ) \ No newline at end of file diff --git a/flopy4/ispec/gwt_disv.py b/flopy4/ispec/gwt_disv.py deleted file mode 100644 index c8b5e075..00000000 --- a/flopy4/ispec/gwt_disv.py +++ /dev/null @@ -1,386 +0,0 @@ -# generated file -from flopy4.array import MFArray -from flopy4.compound import MFRecord, MFList -from flopy4.package import MFPackage -from flopy4.scalar import MFDouble, MFFilename, MFInteger, MFKeyword, MFString - - -class GwtDisv(MFPackage): - multipkg = False - stress = False - advanced = False - - length_units = MFString( - type = "string", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""model length units""", - description = -"""is the length units used for this model. Values can be ``FEET'', -``METERS'', or ``CENTIMETERS''. If not specified, the default is -``UNKNOWN''.""", - ) - - nogrb = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""do not write binary grid file""", - description = -"""keyword to deactivate writing of the binary grid file.""", - ) - - xorigin = MFDouble( - type = "double", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""x-position origin of the model grid coordinate system""", - description = -"""x-position of the origin used for model grid vertices. This value -should be provided in a real-world coordinate system. A default value -of zero is assigned if not specified. The value for XORIGIN does not -affect the model simulation, but it is written to the binary grid file -so that postprocessors can locate the grid in space.""", - ) - - yorigin = MFDouble( - type = "double", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""y-position origin of the model grid coordinate system""", - description = -"""y-position of the origin used for model grid vertices. This value -should be provided in a real-world coordinate system. If not -specified, then a default value equal to zero is used. The value for -YORIGIN does not affect the model simulation, but it is written to the -binary grid file so that postprocessors can locate the grid in space.""", - ) - - angrot = MFDouble( - type = "double", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""rotation angle""", - description = -"""counter-clockwise rotation angle (in degrees) of the model grid -coordinate system relative to a real-world coordinate system. If not -specified, then a default value of 0.0 is assigned. The value for -ANGROT does not affect the model simulation, but it is written to the -binary grid file so that postprocessors can locate the grid in space.""", - ) - - export_array_ascii = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""export array variables to layered ascii files.""", - description = -"""keyword that specifies input griddata arrays should be written to -layered ascii output files.""", - ) - - export_array_netcdf = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""export array variables to netcdf output files.""", - description = -"""keyword that specifies input griddata arrays should be written to the -model output netcdf file.""", - ) - - ncf_filerecord = MFRecord( - type = "record", - params = { - "ncf6": MFKeyword(), - "filein": MFKeyword(), - "ncf6_filename": MFString(), - }, - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""""", - description = -"""""", - ) - - ncf6 = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""ncf keyword""", - description = -"""keyword to specify that record corresponds to a netcdf configuration -(NCF) file.""", - ) - - filein = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""file keyword""", - description = -"""keyword to specify that an input filename is expected next.""", - ) - - ncf6_filename = MFString( - type = "string", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""file name of NCF information""", - description = -"""defines a netcdf configuration (NCF) input file.""", - ) - - nlay = MFInteger( - type = "integer", - block = "dimensions", - shape = "", - reader = "urword", - optional = False, - longname = -"""number of layers""", - description = -"""is the number of layers in the model grid.""", - ) - - ncpl = MFInteger( - type = "integer", - block = "dimensions", - shape = "", - reader = "urword", - optional = False, - longname = -"""number of cells per layer""", - description = -"""is the number of cells per layer. This is a constant value for the -grid and it applies to all layers.""", - ) - - nvert = MFInteger( - type = "integer", - block = "dimensions", - shape = "", - reader = "urword", - optional = False, - longname = -"""number of columns""", - description = -"""is the total number of (x, y) vertex pairs used to characterize the -horizontal configuration of the model grid.""", - ) - - top = MFArray( - type = "double", - block = "griddata", - shape = "(ncpl)", - reader = "readarray", - optional = False, - longname = -"""model top elevation""", - description = -"""is the top elevation for each cell in the top model layer.""", - ) - - botm = MFArray( - type = "double", - block = "griddata", - shape = "(ncpl, nlay)", - reader = "readarray", - optional = False, - longname = -"""model bottom elevation""", - description = -"""is the bottom elevation for each cell.""", - ) - - idomain = MFArray( - type = "integer", - block = "griddata", - shape = "(ncpl, nlay)", - reader = "readarray", - optional = True, - longname = -"""idomain existence array""", - description = -"""is an optional array that characterizes the existence status of a -cell. If the IDOMAIN array is not specified, then all model cells -exist within the solution. If the IDOMAIN value for a cell is 0, the -cell does not exist in the simulation. Input and output values will -be read and written for the cell, but internal to the program, the -cell is excluded from the solution. If the IDOMAIN value for a cell -is 1, the cell exists in the simulation. If the IDOMAIN value for a -cell is -1, the cell does not exist in the simulation. Furthermore, -the first existing cell above will be connected to the first existing -cell below. This type of cell is referred to as a ``vertical pass -through'' cell.""", - ) - - iv = MFInteger( - type = "integer", - block = "vertices", - shape = "", - reader = "urword", - optional = False, - longname = -"""vertex number""", - description = -"""is the vertex number. Records in the VERTICES block must be listed in -consecutive order from 1 to NVERT.""", - ) - - xv = MFDouble( - type = "double", - block = "vertices", - shape = "", - reader = "urword", - optional = False, - longname = -"""x-coordinate for vertex""", - description = -"""is the x-coordinate for the vertex.""", - ) - - yv = MFDouble( - type = "double", - block = "vertices", - shape = "", - reader = "urword", - optional = False, - longname = -"""y-coordinate for vertex""", - description = -"""is the y-coordinate for the vertex.""", - ) - - vertices = MFList( - type = "recarray", - params = { - "iv": iv, - "xv": xv, - "yv": yv, - }, - block = "vertices", - shape = "(nvert)", - reader = "urword", - optional = False, - longname = -"""vertices data""", - description = -"""""", - ) - - icell2d = MFInteger( - type = "integer", - block = "cell2d", - shape = "", - reader = "urword", - optional = False, - longname = -"""cell2d number""", - description = -"""is the CELL2D number. Records in the CELL2D block must be listed in -consecutive order from the first to the last.""", - ) - - xc = MFDouble( - type = "double", - block = "cell2d", - shape = "", - reader = "urword", - optional = False, - longname = -"""x-coordinate for cell center""", - description = -"""is the x-coordinate for the cell center.""", - ) - - yc = MFDouble( - type = "double", - block = "cell2d", - shape = "", - reader = "urword", - optional = False, - longname = -"""y-coordinate for cell center""", - description = -"""is the y-coordinate for the cell center.""", - ) - - ncvert = MFInteger( - type = "integer", - block = "cell2d", - shape = "", - reader = "urword", - optional = False, - longname = -"""number of cell vertices""", - description = -"""is the number of vertices required to define the cell. There may be a -different number of vertices for each cell.""", - ) - - icvert = MFArray( - type = "integer", - block = "cell2d", - shape = "(ncvert)", - reader = "urword", - optional = False, - longname = -"""array of vertex numbers""", - description = -"""is an array of integer values containing vertex numbers (in the -VERTICES block) used to define the cell. Vertices must be listed in -clockwise order. Cells that are connected must share vertices.""", - ) - - cell2d = MFList( - type = "recarray", - params = { - "icell2d": icell2d, - "xc": xc, - "yc": yc, - "ncvert": ncvert, - "icvert": icvert, - }, - block = "cell2d", - shape = "(ncpl)", - reader = "urword", - optional = False, - longname = -"""cell2d data""", - description = -"""""", - ) \ No newline at end of file diff --git a/flopy4/ispec/gwt_model.py b/flopy4/ispec/gwt_model.py deleted file mode 100644 index d2293dd7..00000000 --- a/flopy4/ispec/gwt_model.py +++ /dev/null @@ -1,12 +0,0 @@ -# generated file -from flopy4.model import MFModel -from flopy4.resolver import Resolve -from flopy4.ispec.gwt_dis import GwtDis -from flopy4.ispec.gwt_disu import GwtDisu -from flopy4.ispec.gwt_disv import GwtDisv - - -class GwtModel(MFModel, Resolve): - dis6 = GwtDis() - disu6 = GwtDisu() - disv6 = GwtDisv() diff --git a/flopy4/ispec/prt_dis.py b/flopy4/ispec/prt_dis.py deleted file mode 100644 index 448a4e12..00000000 --- a/flopy4/ispec/prt_dis.py +++ /dev/null @@ -1,269 +0,0 @@ -# generated file -from flopy4.array import MFArray -from flopy4.compound import MFRecord, MFList -from flopy4.package import MFPackage -from flopy4.scalar import MFDouble, MFFilename, MFInteger, MFKeyword, MFString - - -class PrtDis(MFPackage): - multipkg = False - stress = False - advanced = False - - length_units = MFString( - type = "string", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""model length units""", - description = -"""is the length units used for this model. Values can be ``FEET'', -``METERS'', or ``CENTIMETERS''. If not specified, the default is -``UNKNOWN''.""", - ) - - nogrb = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""do not write binary grid file""", - description = -"""keyword to deactivate writing of the binary grid file.""", - ) - - xorigin = MFDouble( - type = "double", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""x-position of the model grid origin""", - description = -"""x-position of the lower-left corner of the model grid. A default -value of zero is assigned if not specified. The value for XORIGIN -does not affect the model simulation, but it is written to the binary -grid file so that postprocessors can locate the grid in space.""", - ) - - yorigin = MFDouble( - type = "double", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""y-position of the model grid origin""", - description = -"""y-position of the lower-left corner of the model grid. If not -specified, then a default value equal to zero is used. The value for -YORIGIN does not affect the model simulation, but it is written to the -binary grid file so that postprocessors can locate the grid in space.""", - ) - - angrot = MFDouble( - type = "double", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""rotation angle""", - description = -"""counter-clockwise rotation angle (in degrees) of the lower-left corner -of the model grid. If not specified, then a default value of 0.0 is -assigned. The value for ANGROT does not affect the model simulation, -but it is written to the binary grid file so that postprocessors can -locate the grid in space.""", - ) - - export_array_ascii = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""export array variables to layered ascii files.""", - description = -"""keyword that specifies input griddata arrays should be written to -layered ascii output files.""", - ) - - export_array_netcdf = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""export array variables to netcdf output files.""", - description = -"""keyword that specifies input griddata arrays should be written to the -model output netcdf file.""", - ) - - ncf_filerecord = MFRecord( - type = "record", - params = { - "ncf6": MFKeyword(), - "filein": MFKeyword(), - "ncf6_filename": MFString(), - }, - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""""", - description = -"""""", - ) - - ncf6 = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""ncf keyword""", - description = -"""keyword to specify that record corresponds to a netcdf configuration -(NCF) file.""", - ) - - filein = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""file keyword""", - description = -"""keyword to specify that an input filename is expected next.""", - ) - - ncf6_filename = MFString( - type = "string", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""file name of NCF information""", - description = -"""defines a netcdf configuration (NCF) input file.""", - ) - - nlay = MFInteger( - type = "integer", - block = "dimensions", - shape = "", - reader = "urword", - optional = False, - longname = -"""number of layers""", - description = -"""is the number of layers in the model grid.""", - ) - - nrow = MFInteger( - type = "integer", - block = "dimensions", - shape = "", - reader = "urword", - optional = False, - longname = -"""number of rows""", - description = -"""is the number of rows in the model grid.""", - ) - - ncol = MFInteger( - type = "integer", - block = "dimensions", - shape = "", - reader = "urword", - optional = False, - longname = -"""number of columns""", - description = -"""is the number of columns in the model grid.""", - ) - - delr = MFArray( - type = "double", - block = "griddata", - shape = "(ncol)", - reader = "readarray", - optional = False, - longname = -"""spacing along a row""", - description = -"""is the column spacing in the row direction.""", - ) - - delc = MFArray( - type = "double", - block = "griddata", - shape = "(nrow)", - reader = "readarray", - optional = False, - longname = -"""spacing along a column""", - description = -"""is the row spacing in the column direction.""", - ) - - top = MFArray( - type = "double", - block = "griddata", - shape = "(ncol, nrow)", - reader = "readarray", - optional = False, - longname = -"""cell top elevation""", - description = -"""is the top elevation for each cell in the top model layer.""", - ) - - botm = MFArray( - type = "double", - block = "griddata", - shape = "(ncol, nrow, nlay)", - reader = "readarray", - optional = False, - longname = -"""cell bottom elevation""", - description = -"""is the bottom elevation for each cell.""", - ) - - idomain = MFArray( - type = "integer", - block = "griddata", - shape = "(ncol, nrow, nlay)", - reader = "readarray", - optional = True, - longname = -"""idomain existence array""", - description = -"""is an optional array that characterizes the existence status of a -cell. If the IDOMAIN array is not specified, then all model cells -exist within the solution. If the IDOMAIN value for a cell is 0, the -cell does not exist in the simulation. Input and output values will -be read and written for the cell, but internal to the program, the -cell is excluded from the solution. If the IDOMAIN value for a cell -is 1, the cell exists in the simulation. If the IDOMAIN value for a -cell is -1, the cell does not exist in the simulation. Furthermore, -the first existing cell above will be connected to the first existing -cell below. This type of cell is referred to as a ``vertical pass -through'' cell.""", - ) \ No newline at end of file diff --git a/flopy4/ispec/prt_disv.py b/flopy4/ispec/prt_disv.py deleted file mode 100644 index f1343e4b..00000000 --- a/flopy4/ispec/prt_disv.py +++ /dev/null @@ -1,386 +0,0 @@ -# generated file -from flopy4.array import MFArray -from flopy4.compound import MFRecord, MFList -from flopy4.package import MFPackage -from flopy4.scalar import MFDouble, MFFilename, MFInteger, MFKeyword, MFString - - -class PrtDisv(MFPackage): - multipkg = False - stress = False - advanced = False - - length_units = MFString( - type = "string", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""model length units""", - description = -"""is the length units used for this model. Values can be ``FEET'', -``METERS'', or ``CENTIMETERS''. If not specified, the default is -``UNKNOWN''.""", - ) - - nogrb = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""do not write binary grid file""", - description = -"""keyword to deactivate writing of the binary grid file.""", - ) - - xorigin = MFDouble( - type = "double", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""x-position origin of the model grid coordinate system""", - description = -"""x-position of the origin used for model grid vertices. This value -should be provided in a real-world coordinate system. A default value -of zero is assigned if not specified. The value for XORIGIN does not -affect the model simulation, but it is written to the binary grid file -so that postprocessors can locate the grid in space.""", - ) - - yorigin = MFDouble( - type = "double", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""y-position origin of the model grid coordinate system""", - description = -"""y-position of the origin used for model grid vertices. This value -should be provided in a real-world coordinate system. If not -specified, then a default value equal to zero is used. The value for -YORIGIN does not affect the model simulation, but it is written to the -binary grid file so that postprocessors can locate the grid in space.""", - ) - - angrot = MFDouble( - type = "double", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""rotation angle""", - description = -"""counter-clockwise rotation angle (in degrees) of the model grid -coordinate system relative to a real-world coordinate system. If not -specified, then a default value of 0.0 is assigned. The value for -ANGROT does not affect the model simulation, but it is written to the -binary grid file so that postprocessors can locate the grid in space.""", - ) - - export_array_ascii = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""export array variables to layered ascii files.""", - description = -"""keyword that specifies input griddata arrays should be written to -layered ascii output files.""", - ) - - export_array_netcdf = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""export array variables to netcdf output files.""", - description = -"""keyword that specifies input griddata arrays should be written to the -model output netcdf file.""", - ) - - ncf_filerecord = MFRecord( - type = "record", - params = { - "ncf6": MFKeyword(), - "filein": MFKeyword(), - "ncf6_filename": MFString(), - }, - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""""", - description = -"""""", - ) - - ncf6 = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""ncf keyword""", - description = -"""keyword to specify that record corresponds to a netcdf configuration -(NCF) file.""", - ) - - filein = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""file keyword""", - description = -"""keyword to specify that an input filename is expected next.""", - ) - - ncf6_filename = MFString( - type = "string", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""file name of NCF information""", - description = -"""defines a netcdf configuration (NCF) input file.""", - ) - - nlay = MFInteger( - type = "integer", - block = "dimensions", - shape = "", - reader = "urword", - optional = False, - longname = -"""number of layers""", - description = -"""is the number of layers in the model grid.""", - ) - - ncpl = MFInteger( - type = "integer", - block = "dimensions", - shape = "", - reader = "urword", - optional = False, - longname = -"""number of cells per layer""", - description = -"""is the number of cells per layer. This is a constant value for the -grid and it applies to all layers.""", - ) - - nvert = MFInteger( - type = "integer", - block = "dimensions", - shape = "", - reader = "urword", - optional = False, - longname = -"""number of columns""", - description = -"""is the total number of (x, y) vertex pairs used to characterize the -horizontal configuration of the model grid.""", - ) - - top = MFArray( - type = "double", - block = "griddata", - shape = "(ncpl)", - reader = "readarray", - optional = False, - longname = -"""model top elevation""", - description = -"""is the top elevation for each cell in the top model layer.""", - ) - - botm = MFArray( - type = "double", - block = "griddata", - shape = "(ncpl, nlay)", - reader = "readarray", - optional = False, - longname = -"""model bottom elevation""", - description = -"""is the bottom elevation for each cell.""", - ) - - idomain = MFArray( - type = "integer", - block = "griddata", - shape = "(ncpl, nlay)", - reader = "readarray", - optional = True, - longname = -"""idomain existence array""", - description = -"""is an optional array that characterizes the existence status of a -cell. If the IDOMAIN array is not specified, then all model cells -exist within the solution. If the IDOMAIN value for a cell is 0, the -cell does not exist in the simulation. Input and output values will -be read and written for the cell, but internal to the program, the -cell is excluded from the solution. If the IDOMAIN value for a cell -is 1, the cell exists in the simulation. If the IDOMAIN value for a -cell is -1, the cell does not exist in the simulation. Furthermore, -the first existing cell above will be connected to the first existing -cell below. This type of cell is referred to as a ``vertical pass -through'' cell.""", - ) - - iv = MFInteger( - type = "integer", - block = "vertices", - shape = "", - reader = "urword", - optional = False, - longname = -"""vertex number""", - description = -"""is the vertex number. Records in the VERTICES block must be listed in -consecutive order from 1 to NVERT.""", - ) - - xv = MFDouble( - type = "double", - block = "vertices", - shape = "", - reader = "urword", - optional = False, - longname = -"""x-coordinate for vertex""", - description = -"""is the x-coordinate for the vertex.""", - ) - - yv = MFDouble( - type = "double", - block = "vertices", - shape = "", - reader = "urword", - optional = False, - longname = -"""y-coordinate for vertex""", - description = -"""is the y-coordinate for the vertex.""", - ) - - vertices = MFList( - type = "recarray", - params = { - "iv": iv, - "xv": xv, - "yv": yv, - }, - block = "vertices", - shape = "(nvert)", - reader = "urword", - optional = False, - longname = -"""vertices data""", - description = -"""""", - ) - - icell2d = MFInteger( - type = "integer", - block = "cell2d", - shape = "", - reader = "urword", - optional = False, - longname = -"""cell2d number""", - description = -"""is the CELL2D number. Records in the CELL2D block must be listed in -consecutive order from the first to the last.""", - ) - - xc = MFDouble( - type = "double", - block = "cell2d", - shape = "", - reader = "urword", - optional = False, - longname = -"""x-coordinate for cell center""", - description = -"""is the x-coordinate for the cell center.""", - ) - - yc = MFDouble( - type = "double", - block = "cell2d", - shape = "", - reader = "urword", - optional = False, - longname = -"""y-coordinate for cell center""", - description = -"""is the y-coordinate for the cell center.""", - ) - - ncvert = MFInteger( - type = "integer", - block = "cell2d", - shape = "", - reader = "urword", - optional = False, - longname = -"""number of cell vertices""", - description = -"""is the number of vertices required to define the cell. There may be a -different number of vertices for each cell.""", - ) - - icvert = MFArray( - type = "integer", - block = "cell2d", - shape = "(ncvert)", - reader = "urword", - optional = False, - longname = -"""array of vertex numbers""", - description = -"""is an array of integer values containing vertex numbers (in the -VERTICES block) used to define the cell. Vertices must be listed in -clockwise order. Cells that are connected must share vertices.""", - ) - - cell2d = MFList( - type = "recarray", - params = { - "icell2d": icell2d, - "xc": xc, - "yc": yc, - "ncvert": ncvert, - "icvert": icvert, - }, - block = "cell2d", - shape = "(ncpl)", - reader = "urword", - optional = False, - longname = -"""cell2d data""", - description = -"""""", - ) \ No newline at end of file diff --git a/flopy4/ispec/prt_model.py b/flopy4/ispec/prt_model.py deleted file mode 100644 index f3322258..00000000 --- a/flopy4/ispec/prt_model.py +++ /dev/null @@ -1,12 +0,0 @@ -# generated file -from flopy4.model import MFModel -from flopy4.resolver import Resolve -from flopy4.ispec.prt_dis import PrtDis -from flopy4.ispec.prt_disv import PrtDisv -from flopy4.ispec.prt_prp import PrtPrp - - -class PrtModel(MFModel, Resolve): - dis6 = PrtDis() - disv6 = PrtDisv() - prp6 = PrtPrp() diff --git a/flopy4/ispec/prt_prp.py b/flopy4/ispec/prt_prp.py deleted file mode 100644 index 00f24863..00000000 --- a/flopy4/ispec/prt_prp.py +++ /dev/null @@ -1,579 +0,0 @@ -# generated file -from flopy4.array import MFArray -from flopy4.compound import MFRecord, MFList -from flopy4.package import MFPackage -from flopy4.scalar import MFDouble, MFFilename, MFInteger, MFKeyword, MFString - - -class PrtPrp(MFPackage): - multipkg = False - stress = False - advanced = False - - boundnames = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""""", - description = -"""keyword to indicate that boundary names may be provided with the list -of particle release points.""", - ) - - print_input = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""print input to listing file""", - description = -"""REPLACE print_input {'{#1}': 'all model stress package'}""", - ) - - dev_exit_solve_method = MFInteger( - type = "integer", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""exit solve method""", - description = -"""the method for iterative solution of particle exit location and time -in the generalized Pollock's method. 0 default, 1 Brent, 2 -Chandrupatla. The default is Brent's method.""", - ) - - exit_solve_tolerance = MFDouble( - type = "double", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""exit solve tolerance""", - description = -"""the convergence tolerance for iterative solution of particle exit -location and time in the generalized Pollock's method. A value of -0.00001 works well for many problems, but the value that strikes the -best balance between accuracy and runtime is problem-dependent.""", - ) - - local_z = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""whether to use local z coordinates""", - description = -"""indicates that ``zrpt'' defines the local z coordinate of the release -point within the cell, with value of 0 at the bottom and 1 at the top -of the cell. If the cell is partially saturated at release time, the -top of the cell is considered to be the water table elevation (the -head in the cell) rather than the top defined by the user.""", - ) - - extend_tracking = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""whether to extend tracking beyond the end of the simulation""", - description = -"""indicates that particles should be tracked beyond the end of the -simulation's final time step (using that time step's flows) until -particles terminate or reach a specified stop time. By default, -particles are terminated at the end of the simulation's final time -step.""", - ) - - track_filerecord = MFRecord( - type = "record", - params = { - "track": MFKeyword(), - "fileout": MFKeyword(), - "trackfile": MFString(), - }, - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""""", - description = -"""""", - ) - - track = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""track keyword""", - description = -"""keyword to specify that record corresponds to a binary track output -file. Each PRP Package may have a distinct binary track output file.""", - ) - - fileout = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""file keyword""", - description = -"""keyword to specify that an output filename is expected next.""", - ) - - trackfile = MFString( - type = "string", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""file keyword""", - description = -"""name of the binary output file to write tracking information.""", - ) - - trackcsv_filerecord = MFRecord( - type = "record", - params = { - "trackcsv": MFKeyword(), - "fileout": MFKeyword(), - "trackcsvfile": MFString(), - }, - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""""", - description = -"""""", - ) - - trackcsv = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""track keyword""", - description = -"""keyword to specify that record corresponds to a CSV track output file. -Each PRP Package may have a distinct CSV track output file.""", - ) - - trackcsvfile = MFString( - type = "string", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""file keyword""", - description = -"""name of the comma-separated value (CSV) file to write tracking -information.""", - ) - - stoptime = MFDouble( - type = "double", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""stop time""", - description = -"""real value defining the maximum simulation time to which particles in -the package can be tracked. Particles that have not terminated -earlier due to another termination condition will terminate when -simulation time STOPTIME is reached. If the last stress period in the -simulation consists of more than one time step, particles will not be -tracked past the ending time of the last stress period, regardless of -STOPTIME. If the last stress period in the simulation consists of a -single time step, it is assumed to be a steady-state stress period, -and its ending time will not limit the simulation time to which -particles can be tracked. If STOPTIME and STOPTRAVELTIME are both -provided, particles will be stopped if either is reached.""", - ) - - stoptraveltime = MFDouble( - type = "double", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""stop travel time""", - description = -"""real value defining the maximum travel time over which particles in -the model can be tracked. Particles that have not terminated earlier -due to another termination condition will terminate when their travel -time reaches STOPTRAVELTIME. If the last stress period in the -simulation consists of more than one time step, particles will not be -tracked past the ending time of the last stress period, regardless of -STOPTRAVELTIME. If the last stress period in the simulation consists -of a single time step, it is assumed to be a steady-state stress -period, and its ending time will not limit the travel time over which -particles can be tracked. If STOPTIME and STOPTRAVELTIME are both -provided, particles will be stopped if either is reached.""", - ) - - stop_at_weak_sink = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""stop at weak sink""", - description = -"""is a text keyword to indicate that a particle is to terminate when it -enters a cell that is a weak sink. By default, particles are allowed -to pass though cells that are weak sinks.""", - ) - - istopzone = MFInteger( - type = "integer", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""stop zone number""", - description = -"""integer value defining the stop zone number. If cells have been -assigned IZONE values in the GRIDDATA block, a particle terminates if -it enters a cell whose IZONE value matches ISTOPZONE. An ISTOPZONE -value of zero indicates that there is no stop zone. The default value -is zero.""", - ) - - drape = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""drape""", - description = -"""is a text keyword to indicate that if a particle's release point is in -a cell that happens to be inactive at release time, the particle is to -be moved to the topmost active cell below it, if any. By default, a -particle is not released into the simulation if its release point's -cell is inactive at release time.""", - ) - - dev_forceternary = MFKeyword( - type = "keyword", - block = "options", - shape = "", - reader = "urword", - optional = False, - longname = -"""force ternary tracking method""", - description = -"""force use of the ternary tracking method regardless of cell type in -DISV grids.""", - ) - - release_time_tolerance = MFDouble( - type = "double", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""release time coincidence tolerance""", - description = -"""real number indicating the tolerance within which to consider adjacent -release times coincident. Coincident release times will be merged into -a single release time. The default is $epsilon times 10^11$, where -$epsilon$ is machine precision.""", - ) - - release_time_frequency = MFDouble( - type = "double", - block = "options", - shape = "", - reader = "urword", - optional = True, - longname = -"""release time frequency""", - description = -"""real number indicating the time frequency at which to release -particles. This option can be used to schedule releases at a regular -interval for the duration of the simulation, starting at the -simulation start time. The release schedule is the union of this -option, the RELEASETIMES block, and PERIOD block RELEASESETTING -selections. If none of these are provided, a single release time is -configured at the beginning of the first time step of the simulation's -first stress period.""", - ) - - nreleasepts = MFInteger( - type = "integer", - block = "dimensions", - shape = "", - reader = "urword", - optional = False, - longname = -"""number of particle release points""", - description = -"""is the number of particle release points.""", - ) - - nreleasetimes = MFInteger( - type = "integer", - block = "dimensions", - shape = "", - reader = "urword", - optional = False, - longname = -"""number of particle release times""", - description = -"""is the number of particle release times specified in the RELEASETIMES -block. This is not necessarily the total number of release times; -release times are the union of RELEASE_TIME_FREQUENCY, RELEASETIMES -block, and PERIOD block RELEASESETTING selections.""", - ) - - irptno = MFInteger( - type = "integer", - block = "packagedata", - shape = "", - reader = "urword", - optional = False, - longname = -"""PRP id number for release point""", - description = -"""integer value that defines the PRP release point number associated -with the specified PACKAGEDATA data on the line. IRPTNO must be -greater than zero and less than or equal to NRELEASEPTS. The program -will terminate with an error if information for a PRP release point -number is specified more than once.""", - ) - - cellid = MFArray( - type = "integer", - block = "packagedata", - shape = "(ncelldim)", - reader = "urword", - optional = False, - longname = -"""cell identifier""", - description = -"""REPLACE cellid {}""", - ) - - xrpt = MFDouble( - type = "double", - block = "packagedata", - shape = "", - reader = "urword", - optional = False, - longname = -"""x coordinate of release point""", - description = -"""real value that defines the x coordinate of the release point in model -coordinates. The (x, y, z) location specified for the release point -must lie within the cell that is identified by the specified cellid.""", - ) - - yrpt = MFDouble( - type = "double", - block = "packagedata", - shape = "", - reader = "urword", - optional = False, - longname = -"""y coordinate of release point""", - description = -"""real value that defines the y coordinate of the release point in model -coordinates. The (x, y, z) location specified for the release point -must lie within the cell that is identified by the specified cellid.""", - ) - - zrpt = MFDouble( - type = "double", - block = "packagedata", - shape = "", - reader = "urword", - optional = False, - longname = -"""z coordinate of release point""", - description = -"""real value that defines the z coordinate of the release point in model -coordinates or, if the LOCAL_Z option is active, in local cell -coordinates. The (x, y, z) location specified for the release point -must lie within the cell that is identified by the specified cellid.""", - ) - - boundname = MFString( - type = "string", - block = "packagedata", - shape = "", - reader = "urword", - optional = True, - longname = -"""release point name""", - description = -"""name of the particle release point. BOUNDNAME is an ASCII character -variable that can contain as many as 40 characters. If BOUNDNAME -contains spaces in it, then the entire name must be enclosed within -single quotes.""", - ) - - packagedata = MFList( - type = "recarray", - params = { - "irptno": irptno, - "cellid": cellid, - "xrpt": xrpt, - "yrpt": yrpt, - "zrpt": zrpt, - "boundname": boundname, - }, - block = "packagedata", - shape = "(nreleasepts)", - reader = "urword", - optional = False, - longname = -"""""", - description = -"""""", - ) - - time = MFDouble( - type = "double", - block = "releasetimes", - shape = "", - reader = "urword", - optional = False, - longname = -"""release time""", - description = -"""real value that defines the release time with respect to the -simulation start time.""", - ) - - releasetimes = MFList( - type = "recarray", - params = { - "time": time, - }, - block = "releasetimes", - shape = "(nreleasetimes)", - reader = "urword", - optional = False, - longname = -"""""", - description = -"""""", - ) - - all = MFKeyword( - type = "keyword", - block = "period", - shape = "", - reader = "urword", - optional = False, - longname = -"""""", - description = -"""keyword to indicate release at the start of all time steps in the -period.""", - ) - - first = MFKeyword( - type = "keyword", - block = "period", - shape = "", - reader = "urword", - optional = False, - longname = -"""""", - description = -"""keyword to indicate release at the start of the first time step in the -period. This keyword may be used in conjunction with other -RELEASESETTING options.""", - ) - - last = MFKeyword( - type = "keyword", - block = "period", - shape = "", - reader = "urword", - optional = False, - longname = -"""""", - description = -"""keyword to indicate release at the start of the last time step in the -period. This keyword may be used in conjunction with other -RELEASESETTING options.""", - ) - - frequency = MFInteger( - type = "integer", - block = "period", - shape = "", - reader = "urword", - optional = False, - longname = -"""""", - description = -"""release at the specified time step frequency. This keyword may be used -in conjunction with other RELEASESETTING options.""", - ) - - steps = MFArray( - type = "integer", - block = "period", - shape = "( Optional[list[list[StressPeriodData]]]: + # if d is None: + # return None + # if instance(d, dict): + # pass + # if isinstance(d, list): + + # def _structure_period(l): + # return [structure_attrs_fromtuple(t) for t in l] + + # a = np.array(d) + # match a.ndim: + # case 1: + # period = _structure_period(a) + # case 2: + # pass + # case _: + # raise ValueError( + # "CHD stress period data must be 1D or 2D" + # ) diff --git a/flopy4/mf6/gwf/dis.py b/flopy4/mf6/gwf/dis.py new file mode 100644 index 00000000..a629d13f --- /dev/null +++ b/flopy4/mf6/gwf/dis.py @@ -0,0 +1,60 @@ +from typing import Optional + +import numpy as np +from attr import define, field +from numpy.typing import NDArray + +from flopy4 import component, setattribute +from flopy4.mf6 import Package + + +@component +@define(slots=False, on_setattr=setattribute) +class Dis(Package): + length_units: str = field( + default=None, + metadata={"block": "options"}, + ) + nogrb: bool = field(default=False, metadata={"block": "options"}) + xorigin: float = field(default=None, metadata={"block": "options"}) + yorigin: float = field(default=None, metadata={"block": "options"}) + angrot: float = field(default=None, metadata={"block": "options"}) + export_array_netcdf: bool = field( + default=False, metadata={"block": "options"} + ) + nlay: int = field( + default=1, metadata={"block": "dimensions", "dim": {"coord": "k"}} + ) + ncol: int = field( + default=2, metadata={"block": "dimensions", "dim": {"coord": "i"}} + ) + nrow: int = field( + default=2, metadata={"block": "dimensions", "dim": {"coord": "j"}} + ) + delr: NDArray[np.floating] = field( + default=1.0, + metadata={"block": "griddata", "dims": ("ncol",)}, + ) + delc: NDArray[np.floating] = field( + default=1.0, + metadata={"block": "griddata", "dims": ("nrow",)}, + ) + top: NDArray[np.floating] = field( + default=1.0, + metadata={"block": "griddata", "dims": ("ncol", "nrow")}, + ) + botm: NDArray[np.floating] = field( + default=0.0, + metadata={"block": "griddata", "dims": ("ncol", "nrow", "nlay")}, + ) + idomain: Optional[NDArray[np.integer]] = field( + default=1, + metadata={"block": "griddata", "dims": ("ncol", "nrow", "nlay")}, + ) + nnodes: Optional[int] = field(default=None) + + def __attrs_post_init__(self): + try: + self.nnodes = self.ncol * self.nrow * self.nlay + except: + pass diff --git a/flopy4/mf6/gwf/ic.py b/flopy4/mf6/gwf/ic.py new file mode 100644 index 00000000..cae8df24 --- /dev/null +++ b/flopy4/mf6/gwf/ic.py @@ -0,0 +1,22 @@ +import numpy as np +from attr import define, field +from numpy.typing import NDArray + +from flopy4 import component, setattribute +from flopy4.mf6 import Package + + +@component +@define(slots=False, on_setattr=setattribute) +class Ic(Package): + strt: NDArray[np.floating] = field( + default=1.0, + metadata={"block": "packagedata", "dims": ("nnodes",)}, + ) + export_array_ascii: bool = field( + default=False, metadata={"block": "options"} + ) + export_array_netcdf: bool = field( + default=False, + metadata={"block": "options"}, + ) diff --git a/flopy4/mf6/gwf/npf.py b/flopy4/mf6/gwf/npf.py new file mode 100644 index 00000000..23283a13 --- /dev/null +++ b/flopy4/mf6/gwf/npf.py @@ -0,0 +1,98 @@ +from pathlib import Path +from typing import Optional + +import numpy as np +from attr import define, field +from numpy.typing import NDArray + +from flopy4 import component, setattribute +from flopy4.mf6 import Package + + +@component +@define(slots=False, on_setattr=setattribute) +class Npf(Package): + @define(slots=False) + class CvOptions: + variablecv: bool = field(default=False) + dewatered: bool = field(default=False) + + @define(slots=False) + class RewetRecord: + rewet: bool = field() + wetfct: float = field() + iwetit: int = field() + ihdwet: int = field() + + @define(slots=False) + class Xt3dOptions: + xt3d: bool = field() + rhs: bool = field() + + save_flows: bool = field(default=False, metadata={"block": "options"}) + print_flows: bool = field(default=False, metadata={"block": "options"}) + alternative_cell_averaging: Optional[str] = field( + default=None, metadata={"block": "options"} + ) + thickstrt: bool = field(default=False, metadata={"block": "options"}) + cvoptions: Optional[CvOptions] = field( + default=None, metadata={"block": "options"} + ) + perched: bool = field(default=False, metadata={"block": "options"}) + rewet_record: Optional[RewetRecord] = field( + default=None, metadata={"block": "options"} + ) + xt3d_options: Optional[Xt3dOptions] = field( + default=None, metadata={"block": "options"} + ) + save_specific_discharge: bool = field( + default=None, metadata={"block": "options"} + ) + save_saturation: bool = field(default=None, metadata={"block": "options"}) + k22overk: bool = field(default=None, metadata={"block": "options"}) + k33overk: bool = field(default=None, metadata={"block": "options"}) + tvk_filerecord: Optional[Path] = field( + default=None, metadata={"block": "options"} + ) + export_array_ascii: bool = field( + default=False, metadata={"block": "options"} + ) + export_array_netcdf: bool = field( + default=False, metadata={"block": "options"} + ) + dev_no_newton: bool = field(default=False, metadata={"block": "options"}) + dev_omega: Optional[float] = field( + default=None, metadata={"block": "options"} + ) + icelltype: NDArray[np.integer] = field( + default=0, + metadata={"block": "griddata", "dims": ("nnodes",)}, + ) + k: NDArray[np.floating] = field( + default=1.0, + metadata={"block": "griddata", "dims": ("nnodes",)}, + ) + k22: Optional[NDArray[np.floating]] = field( + default=None, + metadata={"block": "griddata", "dims": ("nnodes",)}, + ) + k33: Optional[NDArray[np.floating]] = field( + default=None, + metadata={"block": "griddata", "dims": ("nnodes",)}, + ) + angle1: Optional[NDArray[np.floating]] = field( + default=None, + metadata={"block": "griddata", "dims": ("nnodes",)}, + ) + angle2: Optional[NDArray[np.floating]] = field( + default=None, + metadata={"block": "griddata", "dims": ("nnodes",)}, + ) + angle3: Optional[NDArray[np.floating]] = field( + default=None, + metadata={"block": "griddata", "dims": ("nnodes",)}, + ) + wetdry: Optional[NDArray[np.floating]] = field( + default=None, + metadata={"block": "griddata", "dims": ("nnodes",)}, + ) diff --git a/flopy4/mf6/gwf/oc.py b/flopy4/mf6/gwf/oc.py new file mode 100644 index 00000000..ac4a23fc --- /dev/null +++ b/flopy4/mf6/gwf/oc.py @@ -0,0 +1,62 @@ +from pathlib import Path +from typing import Literal, Optional + +from attr import Factory, define, field + +from flopy4 import component, setattribute +from flopy4.mf6 import Package +from flopy4.utils import to_path + +Steps = ( + Literal["all"] | Literal["first"] | Literal["last"] | tuple[str | int, ...] +) + + +@component +@define(slots=False, on_setattr=setattribute) +class Oc(Package): + @define(slots=False) + class Format: + columns: int = field(default=10) + width: int = field(default=11) + digits: int = field(default=4) + format: Literal["exponential", "fixed", "general", "scientific"] = ( + field(default="general") + ) + + @define(slots=False) + class Period: + # TODO follow imod-python for OC SPD + rtype: str = field() + steps: Steps = field() + + @define + class Steps_: + steps: Steps = field() + + budget_file: Optional[Path] = field( + converter=to_path, + default=None, + metadata={"block": "options"}, + ) + budget_csv_file: Optional[Path] = field( + converter=to_path, + default=None, + metadata={"block": "options"}, + ) + head_file: Optional[Path] = field( + converter=to_path, + default=None, + metadata={"block": "options"}, + ) + format: Optional[Format] = field( + default=None, init=False, metadata={"block": "options"} + ) + saverecord: Optional[list[Steps]] = field( + default=Factory(list), + metadata={"block": "perioddata", "dims": ("nper",)}, + ) + printrecord: Optional[list[Steps]] = field( + default=Factory(list), + metadata={"block": "perioddata", "dims": ("nper",)}, + ) diff --git a/flopy4/mf6/io/__init__.py b/flopy4/mf6/io/__init__.py deleted file mode 100644 index 2ac26a92..00000000 --- a/flopy4/mf6/io/__init__.py +++ /dev/null @@ -1,4 +0,0 @@ -__all__ = ["make_parser", "MF6Transformer"] - -from flopy4.mf6.io.parser import make_parser -from flopy4.mf6.io.transformer import MF6Transformer diff --git a/flopy4/mf6/io/binary.py b/flopy4/mf6/io/binary.py deleted file mode 100644 index 41ba91a6..00000000 --- a/flopy4/mf6/io/binary.py +++ /dev/null @@ -1,359 +0,0 @@ -import numpy as np -from flopy.utils.binaryfile import BinaryHeader - - -# todo: clean this up to not need model information beyond grid_type, -# shape, data header, data dtype, and filename, (optional, modelname, -# pakname) -# this is still a huge mess and needs a lot of cleanup to be an independent -# module -class BinaryException(Exception): - def __init__(self, *args): - super.__init__(*args) - - -class BinaryArray: - def __init__(self): - self._pos = 0 - - def read_binary_data_from_file( - self, - fname, - data_shape, - data_size, - data_type, - modelgrid, - read_multi_layer=False, - ): - import flopy.utils.binaryfile as bf - - if not isinstance(modelgrid.ncpl, np.ndarray): - if data_size != modelgrid.ncpl: - read_multi_layer = True - - fd = _open_ext_file(fname, True) - numpy_type, name = self.datum_to_numpy_type(data_type) - header_dtype = bf.BinaryHeader.set_dtype( - bintype=self._get_bintype(modelgrid), precision="double" - ) - if read_multi_layer and len(data_shape) > 1: - try: - all_data = np.empty(data_shape, numpy_type) - headers = [] - layer_shape = data_shape[1:] - layer_data_size = int(data_size / data_shape[0]) - for index in range(0, data_shape[0]): - layer_data = self._read_binary_file_layer( - fd, - fname, - header_dtype, - numpy_type, - layer_data_size, - layer_shape, - ) - all_data[index, :] = layer_data[0] - headers.append(layer_data[1]) - fd.close() - return all_data, headers - except BinaryException: - fd.seek(self._pos, 0) - bin_data = self._read_binary_file_layer( - fd, fname, header_dtype, numpy_type, data_size, data_shape - ) - self._pos = fd.tell() - fd.close() - return bin_data - else: - bin_data = self._read_binary_file_layer( - fd, fname, header_dtype, numpy_type, data_size, data_shape - ) - fd.close() - return bin_data - - def _get_header( - self, - modelgrid, - modeltime, - stress_period, - precision, - text, - fname, - ilay=None, - data=None, - ): - # handle dis (row, col, lay), disv (ncpl, lay), and disu (nodes) cases - if modelgrid is not None and modeltime is not None: - pertim = modeltime.perlen[stress_period] - totim = modeltime.perlen.sum() - if ilay is None: - ilay = modelgrid.nlay - if modelgrid.grid_type == "structured": - m1, m2, m3 = modelgrid.ncol, modelgrid.nrow, ilay - if data is not None: - shape3d = modelgrid.nlay * modelgrid.nrow * modelgrid.ncol - if data.size == shape3d: - m1, m2, m3 = shape3d, 1, 1 - return BinaryHeader.create( - bintype="vardis", - precision=precision, - text=text, - m1=m1, - m2=m2, - m3=m3, - pertim=pertim, - totim=totim, - kstp=1, - kper=stress_period + 1, - ) - elif modelgrid.grid_type == "vertex": - if ilay is None: - ilay = modelgrid.nlay - m1, m2, m3 = modelgrid.ncpl, 1, ilay - if data is not None: - shape3d = modelgrid.nlay * modelgrid.ncpl - if data.size == shape3d: - m1, m2, m3 = shape3d, 1, 1 - return BinaryHeader.create( - bintype="vardisv", - precision=precision, - text=text, - m1=m1, - m2=m2, - m3=m3, - pertim=pertim, - totim=totim, - kstp=1, - kper=stress_period, - ) - elif modelgrid.grid_type == "unstructured": - m1, m2, m3 = modelgrid.nnodes, 1, 1 - return BinaryHeader.create( - bintype="vardisu", - precision=precision, - text=text, - m1=m1, - m2=1, - m3=1, - pertim=pertim, - totim=totim, - kstp=1, - kper=stress_period, - ) - else: - if ilay is None: - ilay = 1 - m1, m2, m3 = 1, 1, ilay - header = BinaryHeader.create( - bintype="vardis", - precision=precision, - text=text, - m1=m1, - m2=m2, - m3=m3, - pertim=pertim, - totim=totim, - kstp=1, - kper=stress_period, - ) - - else: - m1, m2, m3 = 1, 1, 1 - pertim = np.float64(1.0) - header = BinaryHeader.create( - bintype="vardis", - precision=precision, - text=text, - m1=m1, - m2=m2, - m3=m3, - pertim=pertim, - totim=pertim, - kstp=1, - kper=stress_period, - ) - - return header - - def _write_layer( - self, - fd, - data, - modelgrid, - modeltime, - stress_period, - precision, - text, - fname, - ilay=None, - ): - header_data = self._get_header( - modelgrid, - modeltime, - stress_period, - precision, - text, - fname, - ilay=ilay, - data=data, - ) - header_data.tofile(fd) - data.tofile(fd) - - def _read_binary_file_layer( - self, fd, fname, header_dtype, numpy_type, data_size, data_shape - ): - header_data = np.fromfile(fd, dtype=header_dtype, count=1) - data = np.fromfile(fd, dtype=numpy_type, count=data_size) - data = self._resolve_cellid_numbers_from_file(data) - if data.size != data_size: - message = ( - "Binary file {} does not contain expected data. " - "Expected array size {} but found size " - "{}.".format(fname, data_size, data.size) - ) - type_, value_, traceback_ = sys.exc_info() - raise BinaryException( - self._data_dimensions.structure.get_model(), - self._data_dimensions.structure.get_package(), - self._data_dimensions.structure.path, - "opening external file for writing", - self.structure.name, - inspect.stack()[0][3], - type_, - value_, - traceback_, - message, - self._simulation_data.debug, - ) - return data.reshape(data_shape), header_data - - def write_binary_file( - self, - data, - fname, - text, - modelgrid=None, - modeltime=None, - stress_period=0, - precision="double", - write_multi_layer=False, - ): - data = self._resolve_cellid_numbers_to_file(data) - fd = _open_ext_file(fname, binary=True, write=True) - if data.size == modelgrid.nnodes: - write_multi_layer = False - if write_multi_layer: - # write data from each layer with a separate header - for layer, value in enumerate(data): - self._write_layer( - fd, - value, - modelgrid, - modeltime, - stress_period, - precision, - text, - fname, - layer + 1, - ) - else: - # write data with a single header - self._write_layer( - fd, - data, - modelgrid, - modeltime, - stress_period, - precision, - text, - fname, - ) - fd.close() - - -class BinaryList: - def __init__(self): - pass - - def read_binary_data_from_file( - self, read_file, modelgrid, precision="double", build_cellid=True - ): - # read from file - header, int_cellid_indexes, ext_cellid_indexes = self._get_header( - modelgrid, precision - ) - file_array = np.fromfile(read_file, dtype=header, count=-1) - if not build_cellid: - return file_array - # build data list for recarray - cellid_size = len(self._get_cell_header(modelgrid)) - data_list = [] - for record in file_array: - data_record = () - current_cellid_size = 0 - current_cellid = () - for index, data_item in enumerate(record): - if index in ext_cellid_indexes: - current_cellid += (data_item - 1,) - current_cellid_size += 1 - if current_cellid_size == cellid_size: - data_record += current_cellid - data_record = (data_record,) - current_cellid = () - current_cellid_size = 0 - else: - data_record += (data_item,) - data_list.append(data_record) - return data_list - - def write_binary_file( - self, data, fname, modelgrid=None, precision="double" - ): - fd = _open_ext_file(fname, binary=True, write=True) - data_array = self._build_data_array(data, modelgrid, precision) - data_array.tofile(fd) - fd.close() - - def _get_cell_header(self, modelgrid): - if modelgrid.grid_type == "structured": - return [("layer", np.int32), ("row", np.int32), ("col", np.int32)] - elif modelgrid.grid_type == "vertex": - return [("layer", np.int32), ("ncpl", np.int32)] - else: - return [("nodes", np.int32)] - - -def _open_ext_file(fname, binary=False, write=False): - model_dim = self._data_dimensions.package_dim.model_dim[0] - read_file = self._simulation_data.mfpath.resolve_path( - fname, model_dim.model_name - ) - if write: - options = "w" - else: - options = "r" - if binary: - options = f"{options}b" - try: - fd = open(read_file, options) - return fd - except: - message = ( - "Unable to open file {} in mode {}. Make sure the " - "file is not locked and the folder exists" - ".".format(read_file, options) - ) - type_, value_, traceback_ = sys.exc_info() - raise BinaryException( - self._data_dimensions.structure.get_model(), - self._data_dimensions.structure.get_package(), - self._data_dimensions.structure.path, - "opening external file for writing", - self._data_dimensions.structure.name, - inspect.stack()[0][3], - type_, - value_, - traceback_, - message, - self._simulation_data.debug, - ) diff --git a/flopy4/mf6/io/parser.py b/flopy4/mf6/io/parser.py deleted file mode 100644 index 492e1477..00000000 --- a/flopy4/mf6/io/parser.py +++ /dev/null @@ -1,113 +0,0 @@ -from os import linesep -from typing import Iterable - -from lark import Lark - -MF6_GRAMMAR = r""" -// component -component: _NL* (block _NL+)+ _NL* - -// block -block: _dictblock | _listblock -_dictblock: _BEGIN dictblock _NL dict _END dictblock -_listblock: _BEGIN listblock _NL list _END listblock -dictblock: DICTBLOCK -listblock: LISTBLOCK [_blockindex] -_blockindex: INT -_BEGIN: "begin"i -_END: "end"i - -// dict -dict.1: (param _NL)* - -// list adapted from https://github.com/lark-parser/lark/blob/master/examples/composition/csv.lark -// negative priority for records because the pattern is so indiscriminate -list.-1: record* -record.-1: _record+ _NL -_record: scalar - -// parameter -param: key | _pair -_pair: key value -key: PARAM -?value: array - | list - | path - | string - | scalar -?scalar: int - | float - | word - -// string -word: WORD -?string: word+ -NON_SEPARATOR_STRING: /[a-zA-z.;\\\/]+/ - -// number -int: INT -float: FLOAT - -// file path -path: INOUT PATH -PATH: [_PATHSEP] (NON_SEPARATOR_STRING [_PATHSEP]) [NON_SEPARATOR_STRING] -_PATHSEP: "/" -INOUT: "filein"i|"fileout"i - -// array -array: constantarray | internalarray | externalarray -constantarray: "CONSTANT" float -internalarray: "INTERNAL" [factor] [iprn] (float* [_NL])* -externalarray: "OPEN/CLOSE" PATH [factor] ["binary"] [iprn] -factor: "FACTOR" NUMBER -iprn: "IPRN" INT - -// newline -_NL: /(\r?\n[\t ]*)+/ - -%import common.SH_COMMENT -> COMMENT -%import common.SIGNED_NUMBER -> NUMBER -%import common.SIGNED_INT -> INT -%import common.SIGNED_FLOAT -> FLOAT -%import common.WORD -%import common.WS_INLINE - -%ignore COMMENT -%ignore WS_INLINE -""" -""" -EBNF description for the MODFLOW 6 input language. -""" - - -def make_parser( - params: Iterable[str], - dict_blocks: Iterable[str], - list_blocks: Iterable[str], - **kwargs, -): - """ - Create a parser for the MODFLOW 6 input language with the given - parameter and block specification. - - Notes - ----- - We specify blocks containing parameters separately from blocks - that contain a list. These must be handled separately because - the pattern for list elements (records) casts a wider net than - the pattern for parameters, which can cause a dictionary block - of named parameters to parse as a block with a list of records. - - """ - params = "|".join(['"' + n + '"i' for n in params]) - dict_blocks = "|".join(['"' + n + '"i' for n in dict_blocks]) - list_blocks = "|".join(['"' + n + '"i' for n in list_blocks]) - grammar = linesep.join( - [ - MF6_GRAMMAR, - f"PARAM: ({params})", - f"DICTBLOCK: ({dict_blocks})", - f"LISTBLOCK: ({list_blocks})", - ] - ) - return Lark(grammar, start="component", **kwargs) diff --git a/flopy4/mf6/io/transformer.py b/flopy4/mf6/io/transformer.py deleted file mode 100644 index 47ce6b99..00000000 --- a/flopy4/mf6/io/transformer.py +++ /dev/null @@ -1,100 +0,0 @@ -from pathlib import Path - -import numpy as np -from lark import Transformer - - -def parse_word(_, w): - (w,) = w - return str(w) - - -def parse_string(_, s): - return " ".join(s) - - -def parse_int(_, i): - (i,) = i - return int(i) - - -def parse_float(_, f): - (f,) = f - return float(f) - - -def parse_array(_, a): - (a,) = a - return np.array(a) - - -class MF6Transformer(Transformer): - """ - Transforms a parse tree for the MODFLOW 6 input language - into a nested dictionary AST suitable for structuring to - a strongly-typed input data model. - - Notes - ----- - Each function represents a node in the tree. Its argument - is a list of its children. Nodes are processed bottom-up, - so non-leaf functions can assume they will get a list of - primitives which are already in the right representation. - - See https://lark-parser.readthedocs.io/en/stable/visitors.html#transformer - for more info. - """ - - def key(self, k): - (k,) = k - return str(k).lower() - - def constantarray(self, a): - # TODO factor out `ConstantArray` - # array-like class from `MFArray` - # with deferred shape and use it - pass - - def internalarray(self, a): - factor = a[0] - array = np.array(a[2:]) - if factor is not None: - array *= factor - return array - - def externalarray(self, a): - # TODO - pass - - def path(self, p): - _, p = p - return Path(p) - - def param(self, p): - k = p[0] - v = True if len(p) == 1 else p[1] - return k, v - - def block(self, b): - return tuple(b[:2]) - - def dictblock(self, b): - return str(b[0]).lower() - - def listblock(self, b): - name = str(b[0]) - if len(b) == 2: - index = int(b[1]) - name = f"{name} {index}" - return name.lower() - - word = parse_word - string = parse_string - int = parse_int - float = parse_float - array = parse_array - record = tuple - list = list - dict = dict - params = dict - component = dict diff --git a/flopy4/model.py b/flopy4/model.py deleted file mode 100644 index 6cb5bfed..00000000 --- a/flopy4/model.py +++ /dev/null @@ -1,162 +0,0 @@ -from abc import ABCMeta -from pathlib import Path -from typing import Any, Dict, Optional - -from flopy4.block import MFBlock -from flopy4.ispec.gwf_nam import GwfNam -from flopy4.package import MFPackage, MFPackages -from flopy4.utils import strip - - -class MFModelMeta(type): - def __new__(cls, clsname, bases, attrs): - packages = dict() - for attr_name, attr in attrs.items(): - if issubclass(type(attr), MFPackage): - # attr.__doc__ = attr.description - attr.name = attr_name - attrs[attr_name] = attr - packages[attr_name] = attr - - attrs["packages"] = MFPackages(packages) - - return super().__new__(cls, clsname, bases, attrs) - - -class MFModelMappingMeta(MFModelMeta, ABCMeta): - # http://www.phyast.pitt.edu/~micheles/python/metatype.html - pass - - -class MFModel(MFPackages, metaclass=MFModelMappingMeta): - """ - MF6 model. - - Notes - ----- - Needs MFList input type and then support for - reading blocks as in package implementation. - - """ - - def __init__( - self, - name: Optional[str] = None, - mempath: Optional[str] = None, - mtype: Optional[str] = None, - packages: Optional[Dict[str, MFPackage]] = None, - nam: Optional[MFPackage] = None, - ): - self.name = name - self.mempath = mempath - self.mtype = mtype - self._p = packages - - super().__init__(packages=packages) - - def __getattribute__(self, name: str) -> Any: - self_type = type(self) - - if name + "6" in self_type.packages: - return self.value[name] - # return self.packages[name] - - if name == "packages": - return self.value - - return super().__getattribute__(name) - - def __str__(self): - return self.name - - def __eq__(self, other): - if not isinstance(other, MFModel): - raise TypeError(f"Expected MFPackage, got {type(other)}") - return super().__eq__(other) - - @property - def value(self): - """ """ - return MFPackages.value.fget(self) - - @classmethod - def load(cls, f, **kwargs): - """Load the model name file.""" - packages = dict() - members = cls.packages - - mempath = kwargs.pop("mempath", None) - mtype = kwargs.pop("mtype", None) - mname = strip(mempath.split("/")[-1]) - kwargs["mempath"] = f"{mempath}" - kwargs["name"] = f"{mname}.nam" - kwargs["mname"] = mname - kwargs["ftype"] = "nam6" - - packages["nam6"] = GwfNam.load(f, **kwargs) - - simpath = Path(f.name).parent - MFModel.load_packages( - simpath, members, packages["nam6"], packages, **kwargs - ) - return cls(name=mname, mempath=mempath, mtype=mtype, packages=packages) - - @staticmethod - def load_packages( - simpath: Path, - members, - blocks: Dict[str, MFBlock], - packages: Dict[str, MFPackage], - mempath, - **kwargs, - ): - """Load model name file packages""" - if "ftype" not in blocks.params["packages"]: - # packages block was empty - return - kwargs.pop("mname", None) - model_shape = None - assert "packages" in blocks - for param_name, param in blocks["packages"].items(): - if param_name != "packages": - continue - assert "ftype" in param.value - assert "fname" in param.value - assert "pname" in param.value - for i in range(len(param.value["ftype"])): - ftype = param.value["ftype"][i] - fname = param.value["fname"][i] - pname = param.value["pname"][i] - package = members.get(ftype.lower(), None) - with open(Path(simpath / fname), "r") as f: - kwargs["model_shape"] = model_shape - kwargs["mempath"] = f"{mempath}/{pname}" - kwargs["ftype"] = ftype.lower() - packages[pname] = type(package).load(f, **kwargs) - if ftype.lower() == "dis6": - nlay = packages[pname].params["nlay"] - nrow = packages[pname].params["nrow"] - ncol = packages[pname].params["ncol"] - model_shape = [nlay, nrow, ncol] - elif ftype.lower() == "disv6": - nlay = packages[pname].params["nlay"] - ncpl = packages[pname].params["ncpl"] - model_shape = [nlay, ncpl] - elif ftype.lower() == "disu6": - nodes = packages[pname].params["nodes"] - model_shape = [nodes] - - def write(self, simpath, **kwargs): - """Write the model to files.""" - fname_l = self._p["nam6"].params["packages"]["fname"] - # ftype_l = self._p["nam6"].params["packages"]["ftype"] - pname_l = self._p["nam6"].params["packages"]["pname"] - - # write package files - for index, p in enumerate(pname_l): - with open(Path(simpath / fname_l[index]), "w") as f: - self._p[p].write(f) - - # write name file - with open(Path(simpath / f"{self.name}.nam"), "w") as f: - self._p["nam6"].write(f) diff --git a/flopy4/package.py b/flopy4/package.py deleted file mode 100644 index 531e3c25..00000000 --- a/flopy4/package.py +++ /dev/null @@ -1,341 +0,0 @@ -from abc import ABCMeta -from collections import OrderedDict, UserDict -from io import StringIO -from itertools import groupby -from keyword import kwlist -from pprint import pformat -from typing import Any, Dict, Optional -from warnings import warn - -from flopy4.block import MFBlock, MFBlockMeta, MFBlocks, collect_params -from flopy4.param import MFParam, MFParams -from flopy4.utils import strip - - -def collect_blocks( - params: Dict[str, MFParam], - package_name: str, -) -> Dict[str, MFBlock]: - """ - Collect the block specification for the given dictionary of - parameters. Subclass `MFBlock` dynamically and set the name - of the block subclass by concatenating the package name and - the block name, with a trailing "Block". - """ - - blocks = dict() - for block_name, block_params in groupby( - params.values(), lambda p: p.block - ): - block = make_block( - params={param.name: param for param in block_params}, - block_name=block_name, - package_name=package_name, - ) - blocks[block_name] = block - return blocks - - -def make_block( - params: Dict[str, MFParam], - block_name: str, - package_name: str, -) -> MFBlock: - """ - Dynamically subclass `MFBlock` and return an instance of the new - class. The class will have attributes according to the parameter - specification provided, but parameter values are not initialized - until they are loaded from an input file or set manually. - """ - - cls_name = f"{package_name.title()}{block_name.title()}Block" - cls = MFBlockMeta( - cls_name, - (MFBlock,), - params.copy(), - ) - return cls(name=block_name, params=params) - - -class MFPackageMeta(type): - """ - Modify the creation of `MFPackage` subclasses to search the package's - class attributes, find any which are MF6 input parameters, set up those - parameters' attributes, dynamically create a set of `MFBlock`s to match, - and attach `.params` and `.blocks` attributes as the parameter and block - specification, respectively. - - TODO: specify parameters via `attrs` with leading underscore, to - avoid collisions with Python keywords. Then we only attach a non- - underscored attribute if there is no collision. Parameters whose - name collides with a reserved keyword are accessible only by way - of the package's dictionary API. - """ - - def __new__(cls, clsname, bases, attrs): - if clsname == "MFPackage": - return super().__new__(cls, clsname, bases, attrs) - - # infer package name - package_name = clsname.replace("Package", "") - - # collect parameters - params = collect_params(attrs) - attrs["params"] = MFParams(params) - for name, param in params.items(): - if name in kwlist: - warn(f"Parameter name is a reserved keyword: {name}") - else: - attrs[name] = param - - # collect blocks - blocks = collect_blocks(params, package_name) - attrs["blocks"] = MFBlocks(blocks) - for name, block in blocks.items(): - if name in kwlist: - warn(f"Block name is a reserved keyword: {name}") - else: - attrs[name] = block - - return super().__new__(cls, clsname, bases, attrs) - - -class MFPackageMappingMeta(MFPackageMeta, ABCMeta): - # http://www.phyast.pitt.edu/~micheles/python/metatype.html - pass - - -class MFPackage(MFBlocks, metaclass=MFPackageMappingMeta): - """ - MF6 component package. Maps block names to blocks. - - - Notes - ----- - Subclasses are generated from Jinja2 templates to - match packages as specified by definition files. - - - TODO: pull - TODO: reimplement with `ChainMap`? - """ - - def __init__( - self, - name: Optional[str] = None, - mempath: Optional[str] = None, - blocks: Optional[Dict[str, Dict]] = None, - ): - self.name = name - self.mempath = mempath - super().__init__(blocks=blocks) - - def __getattribute__(self, name: str) -> Any: - self_type = type(self) - - # shortcut to block value for instance attribute. - # the class attribute is the block specification. - if name in self_type.blocks: - return self[name].value - - # shortcut to parameter value for instance attribute. - # the class attribute is the parameter specification, - # and dictionary access on the instance returns the - # full `MFParam` instance. - if name in self_type.params: - return self._get_param_values()[name] - - # add .blocks attribute as an alias for .value, this - # overrides the class attribute with the block spec. - # also add a .params attribute, which is a flat dict - # of all block parameter values. - if name == "blocks": - return self.value - elif name == "params": - return self._get_param_values() - - return super().__getattribute__(name) - - def __str__(self): - buffer = StringIO() - self.write(buffer) - return buffer.getvalue() - - def __eq__(self, other): - if not isinstance(other, MFPackage): - raise TypeError(f"Expected MFPackage, got {type(other)}") - return super().__eq__(other) - - def _get_params(self) -> Dict[str, MFParam]: - """Get a flattened dictionary of member parameters.""" - return { - param_name: param - for block in self.values() - for param_name, param in block.items() - } - - def _get_param_values(self) -> Dict[str, Any]: - """Get a flattened dictionary of parameter values.""" - return { - param_name: param.value - for param_name, param in self._get_params().items() - } - - @property - def value(self): - """ - Get a dictionary of package block values. This is a - nested mapping of block names to blocks, where each - block is a mapping of parameter names to parameter - values. - """ - return MFBlocks.value.fget(self) - - @value.setter - def value(self, value): - """ - Set package block values from a nested dictionary, - where each block value is a mapping of parameter - names to parameter values. - """ - - if value is None or not any(value): - return - - # coerce the block mapping to the spec and set defaults - blocks = type(self).coerce(value.copy(), set_default=True) - MFBlocks.value.fset(self, blocks) - - @classmethod - def coerce( - cls, blocks: Dict[str, MFBlock], set_default: bool = False - ) -> Dict[str, MFBlock]: - """ - Check that the dictionary contains only known blocks, - raising an error if any unknown blocks are provided. - - Sets default values for any missing member parameters - and ensures provided parameter types are as expected. - """ - - known = dict() - for block_name, block_spec in cls.blocks.copy().items(): - block = blocks.pop(block_name, block_spec) - block = type(block).coerce(block, set_default=set_default) - known[block_name] = block - - # raise an error if we have any unrecognized blocks. - # `MFPackage` strictly disallows unrecognized blocks. - # for an arbitrary block collection, use `MFBlocks`. - if any(blocks): - raise ValueError(f"Unrecognized blocks:\n{pformat(blocks)}") - - return known - - @classmethod - def load(cls, f, **kwargs): - """Load the package from file.""" - blocks = dict() - members = cls.blocks - params = {} - - mempath = kwargs.pop("mempath", None) - pname = strip(mempath.split("/")[-1]) - ftype = kwargs.pop("ftype", None) - ptype = ftype.replace("6", "") - kwargs.pop("mname", None) - kwargs.pop("modeltype", None) - - while True: - pos = f.tell() - line = f.readline() - if line == "": - break - if line == "\n" or line.lstrip().startswith("#"): - continue - line = strip(line).lower() - words = line.split() - key = words[0] - if key == "begin": - name = words[1] - block = members.get(name, None) - if block is None: - continue - f.seek(pos) - kwargs["blk_params"] = params - # TODO: pname if multi-instance - kwargs["mempath"] = f"{mempath}/{ptype}" - blocks[name] = type(block).load(f, **kwargs) - if name == "options" or name == "dimensions": - params[name] = blocks[name].params - - return cls(blocks=blocks, name=pname, mempath=mempath) - - def write(self, f, **kwargs): - """Write the package to file.""" - super().write(f, **kwargs) - - -class MFPackages(UserDict): - """ - Mapping of package names to packages. Acts like a - dictionary, also supports named attribute access. - """ - - def __init__(self, packages=None): - MFPackages.assert_packages(packages) - super().__init__(packages) - for key, package in self.items(): - setattr(self, key, package) - - def __repr__(self): - return pformat(self.data) - - def __eq__(self, other): - if not isinstance(other, MFPackages): - raise TypeError(f"Expected MFPackages, got {type(other)}") - return OrderedDict(sorted(self.value)) == OrderedDict( - sorted(other.value) - ) - - @staticmethod - def assert_packages(packages): - """ - Raise an error if any of the given items are - not subclasses of `MFPackage`. - """ - if not packages: - return - elif isinstance(packages, dict): - packages = packages.values() - not_packages = [ - p - for p in packages - if p is not None and not issubclass(type(p), MFPackage) - ] - if any(not_packages): - raise TypeError( - f"Expected MFPackage subclasses, got {not_packages}" - ) - - @property - def value(self) -> Dict[str, Dict[str, Any]]: - """ - Get a dictionary of package package values. This is a - nested mapping of package names to packages. - .... - """ - return {k: v.value for k, v in self.items()} - - @value.setter - def value(self, value: Optional[Dict[str, Dict[str, Any]]]): - """Set package values from a nested dictionary.""" - - if value is None or not any(value): - return - - packages = value.copy() - MFPackages.assert_packages(packages) - self.update(packages) - for key, package in self.items(): - setattr(self, key, package) diff --git a/flopy4/param.py b/flopy4/param.py deleted file mode 100644 index 23bfba7d..00000000 --- a/flopy4/param.py +++ /dev/null @@ -1,246 +0,0 @@ -from abc import abstractmethod -from ast import literal_eval -from collections import OrderedDict, UserDict -from dataclasses import dataclass, fields -from io import StringIO -from pprint import pformat -from typing import Any, Dict, Optional, Tuple - -from flopy4.constants import MFReader - - -@dataclass -class MFParamSpec: - """ - MF6 input parameter specification. - """ - - block: Optional[str] = None - name: Optional[str] = None - type: Optional[str] = None - longname: Optional[str] = None - description: Optional[str] = None - deprecated: bool = False - in_record: bool = False - layered: bool = False - optional: bool = True - numeric_index: bool = False - preserve_case: bool = False - repeating: bool = False - tagged: bool = True - reader: MFReader = MFReader.urword - shape: Optional[Tuple[int]] = None - default_value: Optional[Any] = None - - @classmethod - def fields(cls): - """ - Get the MF6 input parameter field specification. - These uniquely describe the MF6 input parameter. - - Notes - ----- - This is equivalent to `dataclasses.fields(MFParamSpec)`. - """ - return fields(cls) - - @classmethod - def load(cls, f) -> "MFParamSpec": - """ - Load an MF6 input input parameter specification - from a definition file. - """ - spec = dict() - members = cls.fields() - keywords = [f.name for f in members if f.type is bool] - - while True: - line = f.readline() - if not line or line == "\n": - break - words = line.strip().lower().split() - key = words[0] - val = " ".join(words[1:]) - if key in keywords: - spec[key] = val == "true" - elif key == "reader": - spec[key] = MFReader.from_str(val) - elif key == "shape": - spec[key] = literal_eval(val) - else: - spec[key] = val - - return cls(**spec) - - def with_name(self, name) -> "MFParamSpec": - """Set the parameter name and return the parameter.""" - self.name = name - return self - - def with_block(self, block) -> "MFParamSpec": - """Set the parameter block and return the parameter.""" - self.block = block - return self - - -class MFParam(MFParamSpec): - """ - MODFLOW 6 input parameter. Can be a scalar or compound of - scalars, an array, or a list (i.e. a table). - - Notes - ----- - This class plays a dual role: first, to define blocks that - specify the input required for MF6 components; and second, - as a data access layer by which higher components (blocks, - packages, etc) can read/write parameters. The former is a - developer task (though it may be automated as classes are - generated from DFNs) while the latter happens at runtime, - but both APIs are user-facing; the user can first inspect - a package's specification via class attributes, then load - an input file and inspect package data via instance attrs. - - Specification attributes are set at import time. A parent - block or package defines parameters as class attributes, - including a description, whether the parameter is optional, - and other information specifying the parameter. - - The parameter's value is an instance attribute that is set - at load time. The parameter's parent component introspects - its constituent parameters then loads each parameter value - from the input file. This is like "hydrating" a definition - from a data store as in single-page web applications (e.g. - React, Vue) or ORM frameworks (Django). - """ - - @abstractmethod - def __init__( - self, - block=None, - name=None, - type=None, - longname=None, - description=None, - deprecated=False, - in_record=False, - layered=False, - optional=True, - numeric_index=False, - preserve_case=False, - repeating=False, - tagged=False, - reader=MFReader.urword, - shape=None, - default_value=None, - ): - super().__init__( - block=block, - name=name, - type=type, - longname=longname, - description=description, - deprecated=deprecated, - in_record=in_record, - layered=layered, - optional=optional, - numeric_index=numeric_index, - preserve_case=preserve_case, - repeating=repeating, - tagged=tagged, - reader=reader, - shape=shape, - default_value=default_value, - ) - - def __str__(self): - buffer = StringIO() - self.write(buffer) - return buffer.getvalue() - - def __eq__(self, other): - if not isinstance(other, MFParam): - raise TypeError(f"Expected MFParam, got {type(other)}") - return self.value == other.value - - @property - @abstractmethod - def value(self) -> Optional[Any]: - """Get the parameter's value, if loaded.""" - pass - - @abstractmethod - def write(self, f, **kwargs): - """Write the parameter to file.""" - pass - - -class MFParams(UserDict): - """ - Mapping of parameter names to parameters. Acts like - a dictionary, also supports named attribute access. - """ - - def __init__(self, params=None): - MFParams.assert_params(params) - super().__init__(params) - for key, param in self.items(): - setattr(self, key, param) - - def __repr__(self): - return pformat(self.data) - - def __eq__(self, other): - if not isinstance(other, MFParams): - raise TypeError(f"Expected MFParams, got {type(other)}") - return OrderedDict(sorted(self.value)) == OrderedDict( - sorted(other.value) - ) - - @staticmethod - def assert_params(params): - """ - Raise an error if any of the given items are not - subclasses of `MFParam`. - """ - if not params: - return - elif isinstance(params, dict): - params = params.values() - not_params = [ - p - for p in params - if p is not None and not issubclass(type(p), MFParam) - ] - if any(not_params): - raise TypeError(f"Expected MFParam subclasses, got {not_params}") - - @property - def value(self) -> Dict[str, Any]: - """Get a dictionary of parameter values.""" - return {k: v.value for k, v in self.items()} - - @value.setter - def value(self, value: Optional[Dict[str, Any]]): - """Set parameter values from a dictionary.""" - - if value is None or not any(value): - return - - params = value.copy() - MFParams.assert_params(params) - self.update(params) - for key, param in self.items(): - setattr(self, key, param) - - def write(self, f, **kwargs): - """Write the parameters to file.""" - for param in self.values(): - if param.type == "record" or param.type == "recarray": - if len(self.params[param.name]): - param.write(f, **kwargs) - elif param.type is None: - raise TypeError( - f"Unknown specification type for param '{param.name}'" - ) - elif self.params[param.name] is not None: - param.write(f, **kwargs) diff --git a/flopy4/resolver.py b/flopy4/resolver.py deleted file mode 100644 index dcabf695..00000000 --- a/flopy4/resolver.py +++ /dev/null @@ -1,41 +0,0 @@ -from types import MappingProxyType -from typing import Any, Dict, Optional - - -class ResolveSingleton(object): - def __new__( - cls, - name: Optional[str] = "sim", - models: Optional[Dict[str, Dict]] = None, - ): - if not hasattr(cls, "instance"): - cls.instance = super(ResolveSingleton, cls).__new__(cls) - cls.instance.name = name - cls.instance.models = MappingProxyType(models) - return cls.instance - - -class Resolve: - def __init__( - self, - name: Optional[str] = "sim", - models: Optional[Dict[str, Dict]] = None, - ): - ResolveSingleton(name, models) - - def resolve(self, mempath: str) -> Any: - res = None - resolver = ResolveSingleton() - words = mempath.split("/") - sim_name = words.pop(0) - assert sim_name == resolver.name - cmp_name = words.pop(0) - if cmp_name in list(resolver.models): - res = resolver.models[cmp_name].value - # elif cmp_name in list(resolver.exchanges): - # res = resolver.exchanges[cmp_name].value - for i in range(len(words)): - if res is None: - break - res = res.get(words[i], None) - return res diff --git a/flopy4/scalar.py b/flopy4/scalar.py deleted file mode 100644 index 14dfc78a..00000000 --- a/flopy4/scalar.py +++ /dev/null @@ -1,409 +0,0 @@ -from abc import abstractmethod -from pathlib import Path -from typing import Generic, Optional, TypeVar, get_args - -from flopy4.constants import MFFileInout -from flopy4.param import MFParam, MFReader -from flopy4.utils import strip - -PAD = " " -T = TypeVar("T") - - -class MFScalar(MFParam, Generic[T]): - @abstractmethod - def __init__( - self, - value=None, - block=None, - name=None, - type=None, - longname=None, - description=None, - deprecated=False, - in_record=False, - layered=False, - optional=True, - numeric_index=False, - preserve_case=False, - repeating=False, - tagged=False, - reader=MFReader.urword, - shape=None, - default_value=None, - ): - self._value = value - MFParam.__init__( - self, - block, - name, - type, - longname, - description, - deprecated, - in_record, - layered, - optional, - numeric_index, - preserve_case, - repeating, - tagged, - reader, - shape, - default_value, - ) - - def __init_subclass__(cls): - cls.T = get_args(cls.__orig_bases__[0])[0] - super().__init_subclass__() - - @property - def value(self) -> T: - return self._value - - @value.setter - def value(self, value: Optional[T]): - if value is None: - return - - t = type(value) - if issubclass(t, MFScalar): - self._value = value.value - elif t is type(self).T: - self._value = value - else: - raise ValueError(f"Unsupported scalar: {value}") - - -class MFKeyword(MFScalar[bool]): - def __init__( - self, - value=None, - block=None, - name=None, - type=None, - longname=None, - description=None, - deprecated=False, - in_record=False, - layered=False, - optional=True, - numeric_index=False, - preserve_case=False, - repeating=False, - tagged=False, - reader=MFReader.urword, - shape=None, - default_value=None, - ): - super().__init__( - value, - block, - name, - type, - longname, - description, - deprecated, - in_record, - layered, - optional, - numeric_index, - preserve_case, - repeating, - tagged, - reader, - shape, - default_value, - ) - - def __len__(self): - return 1 - - @classmethod - def load(cls, f, **kwargs) -> "MFKeyword": - line = strip(f.readline()).lower() - - if not any(line): - raise ValueError("Keyword line may not be empty") - if " " in line: - raise ValueError("Keyword may not contain spaces") - - kwargs["name"] = line - return cls(value=True, **kwargs) - - def write(self, f, **kwargs): - newline = kwargs.pop("newline", True) - if self.value: - f.write(f"{PAD}{self.name.upper()}" + ("\n" if newline else "")) - - -class MFInteger(MFScalar[int]): - def __init__( - self, - value=None, - block=None, - name=None, - type=None, - longname=None, - description=None, - deprecated=False, - in_record=False, - layered=False, - optional=True, - numeric_index=False, - preserve_case=False, - repeating=False, - tagged=False, - reader=MFReader.urword, - shape=None, - default_value=None, - ): - super().__init__( - value, - block, - name, - type, - longname, - description, - deprecated, - in_record, - layered, - optional, - numeric_index, - preserve_case, - repeating, - tagged, - reader, - shape, - default_value, - ) - - def __len__(self): - return 2 - - @property - def vtype(self): - return int - - @classmethod - def load(cls, f, **kwargs) -> "MFInteger": - line = strip(f.readline()).lower() - words = line.split() - - if len(words) != 2: - raise ValueError("Expected space-separated: 1) keyword, 2) value") - - kwargs["name"] = words[0] - return cls(value=int(words[1]), **kwargs) - - def write(self, f, **kwargs): - newline = kwargs.pop("newline", True) - f.write( - f"{PAD}" - f"{self.name.upper()} " - f"{self.value}" + ("\n" if newline else "") - ) - - -class MFDouble(MFScalar[float]): - def __init__( - self, - value=None, - block=None, - name=None, - type=None, - longname=None, - description=None, - deprecated=False, - in_record=False, - layered=False, - optional=True, - numeric_index=False, - preserve_case=False, - repeating=False, - tagged=False, - reader=MFReader.urword, - shape=None, - default_value=None, - ): - super().__init__( - value, - block, - name, - type, - longname, - description, - deprecated, - in_record, - layered, - optional, - numeric_index, - preserve_case, - repeating, - tagged, - reader, - shape, - default_value, - ) - - def __len__(self): - return 2 - - @classmethod - def load(cls, f, **kwargs) -> "MFDouble": - line = strip(f.readline()).lower() - words = line.split() - - if len(words) != 2: - raise ValueError("Expected space-separated: 1) keyword, 2) value") - - kwargs["name"] = words[0] - return cls(value=float(words[1]), **kwargs) - - def write(self, f, **kwargs): - newline = kwargs.pop("newline", True) - f.write( - f"{PAD}" - f"{self.name.upper()} " - f"{self.value}" + ("\n" if newline else "") - ) - - -class MFString(MFScalar[str]): - def __init__( - self, - value=None, - block=None, - name=None, - type=None, - longname=None, - description=None, - deprecated=False, - in_record=False, - layered=False, - optional=True, - numeric_index=False, - preserve_case=False, - repeating=False, - tagged=False, - reader=MFReader.urword, - shape=None, - default_value=None, - ): - super().__init__( - value, - block, - name, - type, - longname, - description, - deprecated, - in_record, - layered, - optional, - numeric_index, - preserve_case, - repeating, - tagged, - reader, - shape, - default_value, - ) - - def __len__(self): - return 0 if self._value is None else len(self._value.split()) - - @classmethod - def load(cls, f, **kwargs) -> "MFString": - line = strip(f.readline()).lower() - words = line.split() - - if len(words) != 2: - raise ValueError("Expected space-separated: 1) keyword, 2) value") - - kwargs["name"] = words[0] - return cls(value=words[1], **kwargs) - - def write(self, f, **kwargs): - newline = kwargs.pop("newline", True) - f.write( - f"{PAD}" - f"{self.name.upper()} " - f"{self.value}" + ("\n" if newline else "") - ) - - -class MFFilename(MFScalar[Path]): - def __init__( - self, - inout=MFFileInout.filein, - value=None, - block=None, - name=None, - type=None, - longname=None, - description=None, - deprecated=False, - in_record=False, - layered=False, - optional=True, - numeric_index=False, - preserve_case=False, - repeating=False, - tagged=False, - reader=MFReader.urword, - shape=None, - default_value=None, - ): - self.inout = inout - super().__init__( - value, - block, - name, - type, - longname, - description, - deprecated, - in_record, - layered, - optional, - numeric_index, - preserve_case, - repeating, - tagged, - reader, - shape, - default_value, - ) - - def __len__(self): - return 3 - - @classmethod - def load(cls, f, **kwargs) -> "MFFilename": - line = strip(f.readline()) - words = line.split() - inout = [io.name for io in MFFileInout] - - if len(words) != 3 or words[1].lower() not in inout: - raise ValueError( - "Expected space-separated: " - "1) keyword, " - f"2) {' or '.join(MFFileInout.from_str(words[1]))}" - "3) file path" - ) - - kwargs["name"] = words[0].lower() - return cls( - inout=MFFileInout.from_str(words[1]), - value=Path(words[2]), - **kwargs, - ) - - def write(self, f, **kwargs): - newline = kwargs.pop("newline", True) - f.write( - f"{PAD}{self.name.upper()} " - f"{self.inout.value.upper()} " - f"{self.value}" + ("\n" if newline else "") - ) diff --git a/flopy4/simulation.py b/flopy4/simulation.py deleted file mode 100644 index 1e940457..00000000 --- a/flopy4/simulation.py +++ /dev/null @@ -1,213 +0,0 @@ -from pathlib import Path -from typing import Dict, Optional - -from flopy4.block import MFBlock -from flopy4.ispec.exg_gwfgwf import ExgGwfgwf -from flopy4.ispec.gwe_model import GweModel -from flopy4.ispec.gwf_model import GwfModel -from flopy4.ispec.gwt_model import GwtModel -from flopy4.ispec.prt_model import PrtModel -from flopy4.ispec.sim_nam import SimNam -from flopy4.ispec.sim_tdis import SimTdis -from flopy4.ispec.sln_ims import SlnIms -from flopy4.model import MFModel -from flopy4.package import MFPackage -from flopy4.resolver import Resolve - - -class MFSimulation: - """ - MF6 simulation. - """ - - def __init__( - self, - name: Optional[str] = "sim", - tdis: Optional[MFPackage] = None, - models: Optional[Dict[str, MFModel]] = {}, - exchanges: Optional[Dict[str, Dict]] = {}, - solvers: Optional[Dict[str, Dict]] = {}, - nam: Optional[Dict[str, Dict]] = {}, - ): - self.name = name - self.mempath = name - self.tdis = tdis - self.models = models - self.exchanges = exchanges - self.solvers = solvers - self.nam = nam - - self._resolv = Resolve(name=name, models=models) - - @classmethod - def load(cls, f, **kwargs): - """Load mfsim.nam from file.""" - models = dict() - exchanges = dict() - solvers = dict() - sim_name = "sim" - mempath = sim_name - simpath = Path(f.name).parent - - kwargs["mempath"] = f"{mempath}" - kwargs["ftype"] = "nam6" - - nam = SimNam.load(f, **kwargs) - - tdis = MFSimulation.load_tdis(simpath, nam, **kwargs) - MFSimulation.load_models(simpath, nam, models, **kwargs) - MFSimulation.load_exchanges(simpath, nam, exchanges, **kwargs) - MFSimulation.load_solvers(simpath, nam, solvers, **kwargs) - - return cls( - name=sim_name, - tdis=tdis, - models=models, - exchanges=exchanges, - solvers=solvers, - nam=nam, - ) - - @staticmethod - def load_tdis( - simpath: Path, - blocks: Dict[str, MFBlock], - mempath, - **kwargs, - ): - """Load simulation timing""" - tdis = None - assert "timing" in blocks - for param_name, param in blocks["timing"].items(): - if param_name != "tdis6": - continue - tdis_fpth = param.value - if tdis_fpth is None: - raise ValueError("Invalid mfsim.name TDIS6 specification") - with open(Path(simpath / tdis_fpth), "r") as f: - kwargs["mempath"] = f"{mempath}" - tdis = SimTdis.load(f, **kwargs) - return tdis - - @staticmethod - def load_models( - simpath: Path, - blocks: Dict[str, MFBlock], - models: Dict[str, MFModel], - mempath, - **kwargs, - ): - """Load simulation models""" - assert "models" in blocks - for param_name, param in blocks["models"].items(): - if param_name != "models": - continue - assert "mtype" in param.value - assert "mfname" in param.value - assert "mname" in param.value - for i in range(len(param.value["mtype"])): - mtype = param.value["mtype"][i] - mfname = param.value["mfname"][i] - mname = param.value["mname"][i] - if mtype.lower() == "gwe6": - model = GweModel - elif mtype.lower() == "gwf6": - model = GwfModel - elif mtype.lower() == "gwt6": - model = GwtModel - elif mtype.lower() == "prt6": - model = PrtModel - else: - model = None - with open(Path(simpath / mfname), "r") as f: - kwargs["mtype"] = mtype.lower() - kwargs["mempath"] = f"{mempath}/{mname}" - models[mname] = model.load(f, **kwargs) - - @staticmethod - def load_exchanges( - simpath: Path, - blocks: Dict[str, MFBlock], - exchanges: Dict[str, Dict], - mempath, - **kwargs, - ): - """Load simulation exchanges""" - assert "exchanges" in blocks - for param_name, param in blocks["exchanges"].items(): - if param_name != "exchanges": - continue - if ( - "exgtype" not in param.value - or "exgfile" not in param.value - or "exgmnamea" not in param.value - or "exgmnameb" not in param.value - ): - break - for i in range(len(param.value["exgtype"])): - exgtype = param.value["exgtype"][i] - exgfile = param.value["exgfile"][i] - # exgmnamea = param.value["exgmnamea"][i] - # exgmnameb = param.value["exgmnameb"][i] - if exgtype.lower() == "gwf6-gwf6": - exch = ExgGwfgwf - else: - exch = None - with open(exgfile, "r") as f: - ename = exgtype.replace("6", "") - ename = f"{ename}_{i}" - kwargs["mempath"] = f"{mempath}/{ename}" - exchanges[ename] = exch.load(f, **kwargs) - - @staticmethod - def load_solvers( - simpath: Path, - blocks: Dict[str, MFBlock], - solvers: Dict[str, Dict], - mempath, - **kwargs, - ): - """Load simulation solvers""" - assert "solutiongroup" in blocks - for param_name, param in blocks["solutiongroup"].items(): - if param_name != "solutiongroup": - continue - if ( - "slntype" not in param.value - or "slnfname" not in param.value - or "slnmnames" not in param.value - ): - break - for i in range(len(param.value["slntype"])): - slntype = param.value["slntype"][i] - slnfname = param.value["slnfname"][i] - # slnmnames = param.value["slnmnames"][i] - if slntype.lower() == "ims6": - sln = SlnIms - else: - sln = None - with open(Path(simpath / slnfname), "r") as f: - slnname = slntype.replace("6", "") - slnname = f"{slnname}_{i}" - kwargs["mempath"] = f"{mempath}/{slnname}" - solvers[slnname] = sln.load(f, **kwargs) - - def write(self, simpath: Path, **kwargs): - """Write the simulation to files.""" - tdis_fpath = Path(self.nam.params["tdis6"]) - with open(Path(simpath / tdis_fpath.name), "w") as f: - self.tdis.write(f, **kwargs) - - # slntypes = self.nam.params["solutiongroup"]["slntype"] - slnfnames = self.nam.params["solutiongroup"]["slnfname"] - for index, sln in enumerate(self.solvers): - sln_fpath = Path(slnfnames[index]) - # with open(simpath / slnfnames[index], "w") as f: - with open(Path(simpath / sln_fpath.name), "w") as f: - self.solvers[sln].write(f, **kwargs) - - for model in self.models: - self.models[model].write(simpath, **kwargs) - - with open(simpath / "mfsim.nam", "w") as f: - self.nam.write(f, **kwargs) diff --git a/flopy4/singledispatch/plot.py b/flopy4/singledispatch/plot.py deleted file mode 100644 index 31933b41..00000000 --- a/flopy4/singledispatch/plot.py +++ /dev/null @@ -1,9 +0,0 @@ -from functools import singledispatch -from typing import Any - - -@singledispatch -def plot(obj, **kwargs) -> Any: - raise NotImplementedError( - "plot method not implemented for type {}".format(type(obj)) - ) diff --git a/flopy4/singledispatch/plot_int.py b/flopy4/singledispatch/plot_int.py deleted file mode 100644 index 40ab777b..00000000 --- a/flopy4/singledispatch/plot_int.py +++ /dev/null @@ -1,9 +0,0 @@ -from typing import Any - -from flopy4.singledispatch.plot import plot - - -@plot.register -def _(v: int, **kwargs) -> Any: - print(f"Plotting a model with kwargs: {kwargs}") - return v diff --git a/flopy4/todo.md b/flopy4/todo.md new file mode 100644 index 00000000..df5e4c5d --- /dev/null +++ b/flopy4/todo.md @@ -0,0 +1,23 @@ +# todo + +- deduplicate data trees + +Each component should get a view into the root (as far as it's aware) tree +unless it's the root (i.e. simulation) itself, or it's not attached to any +parent context, in which case it's the root of its own tree. + +- subcomponent accessors + +I think for access by name we want dict style e.g. `gwf["chd1"]`, +like imod-python does it? + +By type, e.g. `gwf.chd`, where it's either a single component, +or a dict by name (or auto-increment index) for multipackages? + +- first class dimension support + +Right now array variables just declare their expected dimension. And the +dimensions are looked up by unguided search across the data tree's vars, +from the root down. Let variables declare themselves as dimensions? With +optional coordinate arrays autogenerated in the right size and added to +the dataset? And allow local vs global dimensions? diff --git a/flopy4/typing.py b/flopy4/typing.py deleted file mode 100644 index cfe9379c..00000000 --- a/flopy4/typing.py +++ /dev/null @@ -1,33 +0,0 @@ -"""Enumerates supported input variable types.""" - -from os import PathLike -from typing import ( - Iterable, - Tuple, - Union, -) - -from numpy.typing import ArrayLike - -Scalar = Union[bool, int, float, str] -"""A scalar input variable.""" - - -Path = PathLike -"""A file path input variable.""" - - -Array = ArrayLike -"""An array input variable.""" - - -Record = Tuple[Union[Scalar, "Record"], ...] -"""A record input variable.""" - - -Table = Iterable["Record"] -"""A table input variable.""" - - -Variable = Union[Scalar, Array, Table, Record] -"""An input variable.""" diff --git a/flopy4/utils.py b/flopy4/utils.py index b796db34..51b1c638 100644 --- a/flopy4/utils.py +++ b/flopy4/utils.py @@ -1,32 +1,27 @@ -def find_upper(s): - for i in range(len(s)): - if s[i].isupper(): - yield i +from pathlib import Path +from typing import Any, Optional +import numpy as np +from numpy.typing import ArrayLike, NDArray -def flatten(d): - if isinstance(d, (tuple, list)): - for x in d: - yield from flatten(x) - else: - yield d - -def strip(line): +def to_path(value: Any) -> Optional[Path]: + """ + Convert a value to a Path if it has a value, otherwise return None. """ - Remove comments and replace commas from input text - for a free formatted modflow input file + return Path(value) if value else None - Parameters - ---------- - line : str - a line of text from a modflow input file - Returns - ------- - str : line with comments removed and commas replaced +def reshape_array(value: ArrayLike, shape: tuple[int]) -> Optional[NDArray]: + """ + If the `ArrayLike` is iterable, make sure it's the given shape. + If it's a scalar, broadcast it to the given shape. """ - for comment_flag in ["//", "#", "!"]: - line = line.split(comment_flag)[0] - line = line.strip() - return line.replace(",", " ") + value = np.array(value) + if value.shape == (): + return np.full(shape, value.item()) + if value.shape != shape: + raise ValueError( + f"Shape mismatch, got {value.shape}, expected {shape}" + ) + return value diff --git a/notes.md b/notes.md deleted file mode 100644 index faa92a28..00000000 --- a/notes.md +++ /dev/null @@ -1,10 +0,0 @@ -# todo -- maybe store scalars as xarray attrs? -- factor out into proper module structure -- demo notebook explaining how it works - - compare/contrast implementations - - attrs vs xarray access pattern -- translate examples to new data model - - emphasize friction points - - inspiration from imod examples -- diff --git a/pixi.lock b/pixi.lock index 12f79001..6f9147f7 100644 --- a/pixi.lock +++ b/pixi.lock @@ -13,7 +13,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2025.1.31-hbcca054_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.4-h5888daf_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.6-h2dba641_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-14.2.0-h77fa898_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.2.0-h77fa898_1.conda @@ -23,14 +23,16 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.4.0-h7b32b05_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.4.1-h7b32b05_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.13.1-ha99a958_105_cp313.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.13-5_cp313.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025a-h78e105d_0.conda - pypi: https://files.pythonhosted.org/packages/fc/30/d4986a882011f9df997a55e6becd864812ccfcd821d64aac8570ee39f719/attrs-25.1.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/64/69/f6db6e4cb2fe2f887dead40b76caa91af4844cb647dd2c7223bb010aa416/beartype-0.19.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c5/15/be88ca93d191f07df76cce217b3b44d5ed3038fa58dd33b4fcb12ea8fe5e/bokeh-3.6.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/45/7f/0e961cf3908bc4c1c3e027de2794f867c6c89fb4916fc7dba295a0e80a2d/boltons-25.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c8/d5/867e75361fc45f6de75fe277dd085627a9db5ebb511a87f27dc1396b5351/cattrs-24.1.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/38/fc/bce832fd4fd99766c04d1ee0eead6b0ec6486fb100ae5e74c1d91292b982/certifi-2025.1.31-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c3/f8/6f13d37abb7ade46e65a08acc31af776a96dde0eb569e05d4c4b01422ba6/cftime-1.6.4.post1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl @@ -44,8 +46,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/6e/c6/ac0b6c1e2d138f1002bcf799d330bd6d85084fece321e662a14223794041/Deprecated-1.2.18-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/f8/c6/ab0d2104364653897a2bad66d5da9dbf282897b126d3690c92c7d4b23b35/distributed-2025.1.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/0c/d5/c5db1ea3394c6e1732fb3286b3bd878b59507a8f77d32a2cebda7d7b7cd4/donfig-0.8.1.post1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/c3/60/03e09c5d38b4ab4c809eef03fd1f99e4744dfd3740a02225dc33217b09d7/flopy-3.9.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/b3/75/00670fa832e2986f9c6bfbd029f0a1e90a14333f0a6c02632284e9c1baa0/fonttools-4.55.8-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/d4/0a/7f6467b7cd461966abe4e3f4a6ddb72609d5785e973a0ec545cf3c60a440/flopy-3.9.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/be/6a/fd4018e0448c8a5e12138906411282c5eab51a598493f080a9f0960e658f/fonttools-4.56.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/e2/94/758680531a00d06e471ef649e4ec2ed6bf185356a7f9fbfbb7368a40bd49/fsspec-2025.2.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c4/5c/80f84a8ae2c53471792e7f9515df912de454721f0253d1738430ecdb7b04/h5netcdf-1.5.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/1a/57/93ea9e10a6457ea8d3b867207deb29a527e966a08a84c57ffd954e32152a/h5py-3.12.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl @@ -57,10 +59,11 @@ environments: - pypi: https://files.pythonhosted.org/packages/d9/18/379429ec69468ee57e1641dc4e1aa324a39510f2ab4d9991a036fc3e74ad/lz4-4.4.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/0c/91/96cf928db8236f1bfab6ce15ad070dfdd02ed88261c2afafd4b43575e9e9/MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/ea/3a/bab9deb4fb199c05e9100f94d7f1c702f78d3241e6a71b784d2b88d7bebd/matplotlib-3.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: git+https://github.com/modflow-usgs/modflow-devtools#198b78b78135153ee5b4e92c2d2b61e7a02acb68 - pypi: https://files.pythonhosted.org/packages/2d/7b/2c1d74ca6c94f70a1add74a8393a0138172207dc5de6fc6269483519d048/msgpack-1.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/d1/80/b9c19f1bb4ac6c5fa6f94a4f278bc68a778473d1814a86a375d7cffa193a/netCDF4-1.7.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/b9/54/dd730b32ea14ea797530a4479b2ed46a6fb250f682a9cfb997e968bf0261/networkx-3.4.2-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/1a/68/c2d4eb52c2436b0f6ee0bf40e83a4d3581db17eab4f23dd20cd7594f61c4/numcodecs-0.15.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/fa/91/d96999b41e3146b6c0ce6bddc5ad85803cb4d743c95394562c2a4bb8cded/numcodecs-0.15.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/83/9c/96a9ab62274ffafb023f8ee08c88d3d31ee74ca58869f859db6845494fa6/numpy-2.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/88/ef/eb23f262cca3c0c4eb7ab1933c3b1f03d021f2c48f54763065b6f0e321be/packaging-24.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e8/31/aa8da88ca0eadbabd0a639788a6da13bb2ff6edbbb9f29aa786450a30a91/pandas-2.2.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl @@ -80,6 +83,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/32/46/9cb0e58b2deb7f82b84065f37f3bffeb12413f947f9388e4cac22c4621ce/sortedcontainers-2.4.0-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/9b/87/ce70db7cae60e67851eb94e1a2127d4abb573d3866d2efd302ceb0d4d2a5/tblib-3.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/44/6f/7120676b6d73228c96e17f1f794d8ab046fc910d781c8d151120c3f1569e/toml-0.10.2-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/d9/e5/82e80ff3b751373f7cead2815bcbe2d51c895b3c990686741a8e56ec42ab/tomli-2.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/c7/18/c86eb8e0202e32dd3df50d43d7ff9854f8e0603945ff398974c1d91ac1ef/tomli_w-1.2.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/03/98/eb27cc78ad3af8e302c9d8ff4977f5026676e130d28dd7578132a457170c/toolz-1.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/22/55/b78a464de78051a30599ceb6983b01d8f732e6f69bf37b4ed07f642ac0fc/tornado-6.4.2-cp38-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/26/9f/ad63fc0248c5379346306f8668cda6e2e2e9c95e01216d2b8ffd9ff037d0/typing_extensions-4.12.2-py3-none-any.whl @@ -95,20 +100,22 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-hfdf4475_7.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2025.1.31-h8857fd0_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libexpat-2.6.4-h240833e_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.6-h281671d_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/liblzma-5.6.4-hd471939_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libmpdec-4.0.0-hfdf4475_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.48.0-hdb6dae5_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.1-hd23fc13_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.5-h0622a9a_3.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.4.0-hc426f3f_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.4.1-hc426f3f_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.13.1-h2334245_105_cp313.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.13-5_cp313.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h9e318b2_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-h1abcd95_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025a-h78e105d_0.conda - pypi: https://files.pythonhosted.org/packages/fc/30/d4986a882011f9df997a55e6becd864812ccfcd821d64aac8570ee39f719/attrs-25.1.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/64/69/f6db6e4cb2fe2f887dead40b76caa91af4844cb647dd2c7223bb010aa416/beartype-0.19.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c5/15/be88ca93d191f07df76cce217b3b44d5ed3038fa58dd33b4fcb12ea8fe5e/bokeh-3.6.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/45/7f/0e961cf3908bc4c1c3e027de2794f867c6c89fb4916fc7dba295a0e80a2d/boltons-25.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c8/d5/867e75361fc45f6de75fe277dd085627a9db5ebb511a87f27dc1396b5351/cattrs-24.1.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/38/fc/bce832fd4fd99766c04d1ee0eead6b0ec6486fb100ae5e74c1d91292b982/certifi-2025.1.31-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/da/d8/81f086dbdc6f5a4e0bb068263471f1d12861b72562fe8c18df38268e4e29/cftime-1.6.4.post1-cp313-cp313-macosx_10_13_x86_64.whl @@ -122,8 +129,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/6e/c6/ac0b6c1e2d138f1002bcf799d330bd6d85084fece321e662a14223794041/Deprecated-1.2.18-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/f8/c6/ab0d2104364653897a2bad66d5da9dbf282897b126d3690c92c7d4b23b35/distributed-2025.1.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/0c/d5/c5db1ea3394c6e1732fb3286b3bd878b59507a8f77d32a2cebda7d7b7cd4/donfig-0.8.1.post1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/c3/60/03e09c5d38b4ab4c809eef03fd1f99e4744dfd3740a02225dc33217b09d7/flopy-3.9.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/58/e4/a839f867e636419d7e5ca426a470df575bf7b20cc780862d6f64caee405c/fonttools-4.55.8-cp313-cp313-macosx_10_13_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/d4/0a/7f6467b7cd461966abe4e3f4a6ddb72609d5785e973a0ec545cf3c60a440/flopy-3.9.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/59/db/d2c7c9b6dd5cbd46f183e650a47403ffb88fca17484eb7c4b1cd88f9e513/fonttools-4.56.0-cp313-cp313-macosx_10_13_x86_64.whl - pypi: https://files.pythonhosted.org/packages/e2/94/758680531a00d06e471ef649e4ec2ed6bf185356a7f9fbfbb7368a40bd49/fsspec-2025.2.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c4/5c/80f84a8ae2c53471792e7f9515df912de454721f0253d1738430ecdb7b04/h5netcdf-1.5.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/23/1c/ecdd0efab52c24f2a9bf2324289828b860e8dd1e3c5ada3cf0889e14fdc1/h5py-3.12.1-cp313-cp313-macosx_10_13_x86_64.whl @@ -135,10 +142,11 @@ environments: - pypi: https://files.pythonhosted.org/packages/7a/81/61ca14fb0939d03f6ab4710fb92048cde9e1b924ce198912545808ef9e8a/lz4-4.4.3-cp313-cp313-macosx_10_13_x86_64.whl - pypi: https://files.pythonhosted.org/packages/83/0e/67eb10a7ecc77a0c2bbe2b0235765b98d164d81600746914bebada795e97/MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl - pypi: https://files.pythonhosted.org/packages/72/11/1b2a094d95dcb6e6edd4a0b238177c439006c6b7a9fe8d31801237bf512f/matplotlib-3.10.0-cp313-cp313-macosx_10_13_x86_64.whl + - pypi: git+https://github.com/modflow-usgs/modflow-devtools#198b78b78135153ee5b4e92c2d2b61e7a02acb68 - pypi: https://files.pythonhosted.org/packages/c8/ee/be57e9702400a6cb2606883d55b05784fada898dfc7fd12608ab1fdb054e/msgpack-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl - pypi: https://files.pythonhosted.org/packages/e6/7a/ce4f9038d8726c9c90e07b2d3a404ae111a27720d712cfcded0c8ef160e8/netCDF4-1.7.2-cp313-cp313-macosx_12_0_x86_64.whl - pypi: https://files.pythonhosted.org/packages/b9/54/dd730b32ea14ea797530a4479b2ed46a6fb250f682a9cfb997e968bf0261/networkx-3.4.2-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/e9/30/64867eb7853b25641476691ed1c34b3aadc8b0a14e03a001cb5bf20cbb2c/numcodecs-0.15.0-cp313-cp313-macosx_10_13_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/78/57/acbc54b3419e5be65015e47177c76c0a73e037fd3ae2cde5808169194d4d/numcodecs-0.15.1-cp313-cp313-macosx_10_13_x86_64.whl - pypi: https://files.pythonhosted.org/packages/e1/fe/df5624001f4f5c3e0b78e9017bfab7fdc18a8d3b3d3161da3d64924dd659/numpy-2.2.2-cp313-cp313-macosx_10_13_x86_64.whl - pypi: https://files.pythonhosted.org/packages/88/ef/eb23f262cca3c0c4eb7ab1933c3b1f03d021f2c48f54763065b6f0e321be/packaging-24.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/64/22/3b8f4e0ed70644e85cfdcd57454686b9057c6c38d2f74fe4b8bc2527214a/pandas-2.2.3-cp313-cp313-macosx_10_13_x86_64.whl @@ -158,6 +166,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/32/46/9cb0e58b2deb7f82b84065f37f3bffeb12413f947f9388e4cac22c4621ce/sortedcontainers-2.4.0-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/9b/87/ce70db7cae60e67851eb94e1a2127d4abb573d3866d2efd302ceb0d4d2a5/tblib-3.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/44/6f/7120676b6d73228c96e17f1f794d8ab046fc910d781c8d151120c3f1569e/toml-0.10.2-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/04/90/2ee5f2e0362cb8a0b6499dc44f4d7d48f8fff06d28ba46e6f1eaa61a1388/tomli-2.2.1-cp313-cp313-macosx_10_13_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/c7/18/c86eb8e0202e32dd3df50d43d7ff9854f8e0603945ff398974c1d91ac1ef/tomli_w-1.2.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/03/98/eb27cc78ad3af8e302c9d8ff4977f5026676e130d28dd7578132a457170c/toolz-1.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/96/44/87543a3b99016d0bf54fdaab30d24bf0af2e848f1d13d34a3a5380aabe16/tornado-6.4.2-cp38-abi3-macosx_10_9_x86_64.whl - pypi: https://files.pythonhosted.org/packages/26/9f/ad63fc0248c5379346306f8668cda6e2e2e9c95e01216d2b8ffd9ff037d0/typing_extensions-4.12.2-py3-none-any.whl @@ -173,12 +183,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda - conda: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2025.1.31-h56e8100_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.6.4-he0c23c2_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.2-h8ffe710_5.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.6-h537db12_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/liblzma-5.6.4-h2466b09_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libmpdec-4.0.0-h2466b09_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.48.0-h67fdade_1.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/openssl-3.4.0-ha4e3fda_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/openssl-3.4.1-ha4e3fda_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/python-3.13.1-h071d269_105_cp313.conda - conda: https://conda.anaconda.org/conda-forge/win-64/python_abi-3.13-5_cp313.conda - conda: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h5226925_1.conda @@ -186,9 +196,10 @@ environments: - conda: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_1.conda - conda: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-h5fd82a7_24.conda - conda: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.42.34433-h6356254_24.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.42.34433-hfef2bbc_24.conda - pypi: https://files.pythonhosted.org/packages/fc/30/d4986a882011f9df997a55e6becd864812ccfcd821d64aac8570ee39f719/attrs-25.1.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/64/69/f6db6e4cb2fe2f887dead40b76caa91af4844cb647dd2c7223bb010aa416/beartype-0.19.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c5/15/be88ca93d191f07df76cce217b3b44d5ed3038fa58dd33b4fcb12ea8fe5e/bokeh-3.6.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/45/7f/0e961cf3908bc4c1c3e027de2794f867c6c89fb4916fc7dba295a0e80a2d/boltons-25.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c8/d5/867e75361fc45f6de75fe277dd085627a9db5ebb511a87f27dc1396b5351/cattrs-24.1.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/38/fc/bce832fd4fd99766c04d1ee0eead6b0ec6486fb100ae5e74c1d91292b982/certifi-2025.1.31-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/f3/2d/980323fb5ec1ef369604b61ba259a41d0336cc1a85b639ed7bd210bd1290/cftime-1.6.4.post1-cp313-cp313-win_amd64.whl @@ -203,8 +214,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/6e/c6/ac0b6c1e2d138f1002bcf799d330bd6d85084fece321e662a14223794041/Deprecated-1.2.18-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/f8/c6/ab0d2104364653897a2bad66d5da9dbf282897b126d3690c92c7d4b23b35/distributed-2025.1.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/0c/d5/c5db1ea3394c6e1732fb3286b3bd878b59507a8f77d32a2cebda7d7b7cd4/donfig-0.8.1.post1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/c3/60/03e09c5d38b4ab4c809eef03fd1f99e4744dfd3740a02225dc33217b09d7/flopy-3.9.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/b8/f9/3c69478a63250ad015a9ff1a75cd72d00aed0c26c188bd838ad5b67f7c83/fonttools-4.55.8-cp313-cp313-win_amd64.whl + - pypi: https://files.pythonhosted.org/packages/d4/0a/7f6467b7cd461966abe4e3f4a6ddb72609d5785e973a0ec545cf3c60a440/flopy-3.9.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/27/6d/3edda54f98a550a0473f032d8050315fbc8f1b76a0d9f3879b72ebb2cdd6/fonttools-4.56.0-cp313-cp313-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/e2/94/758680531a00d06e471ef649e4ec2ed6bf185356a7f9fbfbb7368a40bd49/fsspec-2025.2.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c4/5c/80f84a8ae2c53471792e7f9515df912de454721f0253d1738430ecdb7b04/h5netcdf-1.5.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/50/51/0bbf3663062b2eeee78aa51da71e065f8a0a6e3cb950cc7020b4444999e6/h5py-3.12.1-cp313-cp313-win_amd64.whl @@ -216,10 +227,11 @@ environments: - pypi: https://files.pythonhosted.org/packages/96/1f/a6b4b87038d1057675afdd017ca606662f266a41018ed617bc3395a5d10d/lz4-4.4.3-cp313-cp313-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/29/88/07df22d2dd4df40aba9f3e402e6dc1b8ee86297dddbad4872bd5e7b0094f/MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/fa/d6/54cee7142cef7d910a324a7aedf335c0c147b03658b54d49ec48166f10a6/matplotlib-3.10.0-cp313-cp313-win_amd64.whl + - pypi: git+https://github.com/modflow-usgs/modflow-devtools#198b78b78135153ee5b4e92c2d2b61e7a02acb68 - pypi: https://files.pythonhosted.org/packages/b6/bc/8bd826dd03e022153bfa1766dcdec4976d6c818865ed54223d71f07862b3/msgpack-1.1.0-cp313-cp313-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/66/b5/e04550fd53de57001dbd5a87242da7ff784c80790adc48897977b6ccf891/netCDF4-1.7.2-cp313-cp313-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/b9/54/dd730b32ea14ea797530a4479b2ed46a6fb250f682a9cfb997e968bf0261/networkx-3.4.2-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/58/69/4f94c8ee6f74204425f60fe99e88d6f3f90b62ed3ac013973eec62b52025/numcodecs-0.15.0-cp313-cp313-win_amd64.whl + - pypi: https://files.pythonhosted.org/packages/c3/32/233e5ede6568bdb044e6f99aaa9fa39827ff3109c6487fc137315f733586/numcodecs-0.15.1-cp313-cp313-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/56/e5/01106b9291ef1d680f82bc47d0c5b5e26dfed15b0754928e8f856c82c881/numpy-2.2.2-cp313-cp313-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/88/ef/eb23f262cca3c0c4eb7ab1933c3b1f03d021f2c48f54763065b6f0e321be/packaging-24.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/3b/bc/4b18e2b8c002572c5a441a64826252ce5da2aa738855747247a971988043/pandas-2.2.3-cp313-cp313-win_amd64.whl @@ -239,6 +251,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/32/46/9cb0e58b2deb7f82b84065f37f3bffeb12413f947f9388e4cac22c4621ce/sortedcontainers-2.4.0-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/9b/87/ce70db7cae60e67851eb94e1a2127d4abb573d3866d2efd302ceb0d4d2a5/tblib-3.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/44/6f/7120676b6d73228c96e17f1f794d8ab046fc910d781c8d151120c3f1569e/toml-0.10.2-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/c7/32/b0963458706accd9afcfeb867c0f9175a741bf7b19cd424230714d722198/tomli-2.2.1-cp313-cp313-win_amd64.whl + - pypi: https://files.pythonhosted.org/packages/c7/18/c86eb8e0202e32dd3df50d43d7ff9854f8e0603945ff398974c1d91ac1ef/tomli_w-1.2.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/03/98/eb27cc78ad3af8e302c9d8ff4977f5026676e130d28dd7578132a457170c/toolz-1.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/61/cc/58b1adeb1bb46228442081e746fcdbc4540905c87e8add7c277540934edb/tornado-6.4.2-cp38-abi3-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/26/9f/ad63fc0248c5379346306f8668cda6e2e2e9c95e01216d2b8ffd9ff037d0/typing_extensions-4.12.2-py3-none-any.whl @@ -263,7 +277,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2025.1.31-hbcca054_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.4-h5888daf_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.6-h2dba641_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-14.2.0-h77fa898_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.2.0-h77fa898_1.conda @@ -274,7 +288,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.4.0-h7b32b05_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.4.1-h7b32b05_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.11.11-h9e4cc4f_1_cpython.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda @@ -288,9 +302,11 @@ environments: - pypi: https://files.pythonhosted.org/packages/fc/30/d4986a882011f9df997a55e6becd864812ccfcd821d64aac8570ee39f719/attrs-25.1.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b7/b8/3fe70c75fe32afc4bb507f75563d39bc5642255d1d94f1f23604725780bf/babel-2.17.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b9/fa/123043af240e49752f1c4bd24da5053b6bd00cad78c2be53c0d1e8b975bc/backports.tarfile-1.2.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/64/69/f6db6e4cb2fe2f887dead40b76caa91af4844cb647dd2c7223bb010aa416/beartype-0.19.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/f9/49/6abb616eb3cbab6a7cca303dc02fdf3836de2e0b834bf966a7f5271a34d8/beautifulsoup4-4.13.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/fc/55/96142937f66150805c25c4d0f31ee4132fd33497753400734f9dfdcbdc66/bleach-6.2.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c5/15/be88ca93d191f07df76cce217b3b44d5ed3038fa58dd33b4fcb12ea8fe5e/bokeh-3.6.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/45/7f/0e961cf3908bc4c1c3e027de2794f867c6c89fb4916fc7dba295a0e80a2d/boltons-25.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/84/c2/80633736cd183ee4a62107413def345f7e6e3c01563dbca1417363cf957e/build-1.2.2.post1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c8/d5/867e75361fc45f6de75fe277dd085627a9db5ebb511a87f27dc1396b5351/cattrs-24.1.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/38/fc/bce832fd4fd99766c04d1ee0eead6b0ec6486fb100ae5e74c1d91292b982/certifi-2025.1.31-py3-none-any.whl @@ -302,9 +318,9 @@ environments: - pypi: https://files.pythonhosted.org/packages/7e/e8/64c37fadfc2816a7701fa8a6ed8d87327c7d54eacfbfb6edab14a2f2be75/cloudpickle-3.1.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e6/75/49e5bfe642f71f272236b5b2d2691cf915a7283cc0ceda56357b61daa538/comm-0.2.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/85/fc/7fa5d17daf77306840a4e84668a48ddff09e6bc09ba4e37e85ffc8e4faa3/contourpy-1.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/2c/f8/ef009b3b98e9f7033c19deb40d629354aab1d8b2d7f9cfec284dbedf5096/coverage-7.6.10-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/c7/01/9cd06cbb1be53e837e16f1b4309f6357e2dfcbdab0dd7cd3b1a50589e4e1/coverage-7.6.12-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/6a/2b/9e29e9ac4c4213d60491db09487125db358cd9263490fbadbd55e48fbe03/crc32c-2.7.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/ef/82/72403624f197af0db6bac4e58153bc9ac0e6020e57234115db9596eee85d/cryptography-44.0.0-cp39-abi3-manylinux_2_28_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/e1/e7/cfb18011821cc5f9b21efb3f94f3241e3a658d267a3bf3a0f45543858ed8/cryptography-44.0.1-cp39-abi3-manylinux_2_28_x86_64.whl - pypi: https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/91/a0/016d956a3fec193e3a5b466ca912944669c18dccc736b64a9e28ccdcc5f7/dask-2025.1.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/ef/31/f9274dcd3b0f9f7d1e60373c3fa4696a585c55acb30729d313bb9d3bcbd1/debugpy-1.8.12-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl @@ -319,8 +335,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/7b/8f/c4d9bafc34ad7ad5d8dc16dd1347ee0e507a52c3adb6bfa8887e1c6a26ba/executing-2.2.0-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/90/2b/0817a2b257fe88725c25589d89aec060581aabf668707a8d03b2e9e0cb2a/fastjsonschema-2.21.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/89/ec/00d68c4ddfedfe64159999e5f8a98fb8442729a63e2077eb9dcd89623d27/filelock-3.17.0-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/c3/60/03e09c5d38b4ab4c809eef03fd1f99e4744dfd3740a02225dc33217b09d7/flopy-3.9.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/f2/e0/e58b10ef50830145ba94dbeb64b70773af61cfccea663d485c7fae2aab65/fonttools-4.55.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/d4/0a/7f6467b7cd461966abe4e3f4a6ddb72609d5785e973a0ec545cf3c60a440/flopy-3.9.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/28/e9/47c02d5a7027e8ed841ab6a10ca00c93dadd5f16742f1af1fa3f9978adf4/fonttools-4.56.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/cf/58/8acf1b3e91c58313ce5cb67df61001fc9dcd21be4fadb76c1a2d540e09ed/fqdn-1.5.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e2/94/758680531a00d06e471ef649e4ec2ed6bf185356a7f9fbfbb7368a40bd49/fsspec-2025.2.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a0/61/5c78b91c3143ed5c14207f463aecfc8f9dbb5092fb2869baf37c273b2705/gitdb-4.0.12-py3-none-any.whl @@ -331,7 +347,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/87/f5/72347bc88306acb359581ac4d52f23c0ef445b57157adedb9aee0cd689d2/httpcore-1.0.7-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/9f/cb/18326d2d89ad3b0dd143da971e77afd1e6ca6674f1b1c3df4b6bec6279fc/id-1.5.0-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/74/a1/68a395c17eeefb04917034bd0a1bfa765e7654fa150cca473d669aa3afb5/identify-2.6.6-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/03/00/1fd4a117c6c93f2dcc5b7edaeaf53ea45332ef966429be566ca16c2beb94/identify-2.6.7-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/79/9d/0fb148dc4d6fa4a7dd1d8378168d9b4cd8d4560a6fbf6f0121c5fc34eb68/importlib_metadata-8.6.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/ef/a6/62565a6e1cf69e10f5727360368e451d4b7f58beeac6173dc9db836a5b46/iniconfig-2.0.0-py3-none-any.whl @@ -362,7 +378,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/b1/dd/ead9d8ea85bf202d90cc513b533f9c363121c7792674f78e0d8a854b63b4/jupyterlab_pygments-0.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/54/09/2032e7d15c544a0e3cd831c51d77a8ca57f7555b2e1b2922142eddb02a84/jupyterlab_server-2.27.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a9/93/858e87edc634d628e5d752ba944c2833133a28fa87bb093e6832ced36a3e/jupyterlab_widgets-3.0.13-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/f4/02/27191f18564d4f2c0e543643aa94b54567de58f359cd6a3bed33adb723ac/jupytext-1.16.6-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e1/4c/3d7cfac5b8351f649ce41a1007a769baacae8d5d29e481a93d799a209c3f/jupytext-1.16.7-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d3/32/da7f44bcb1105d3e88a0b74ebdca50c59121d2ddf71c9e34ba47df7f3a56/keyring-25.6.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/3a/97/5edbed69a9d0caa2e4aa616ae7df8127e10f6586940aa683a496c2c280b9/kiwisolver-1.4.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/2d/00/d90b10b962b4277f5e64a78b6609968859ff86889f5b898c1a778c06ec00/lark-1.2.2-py3-none-any.whl @@ -375,11 +391,9 @@ environments: - pypi: https://files.pythonhosted.org/packages/a7/f7/7782a043553ee469c1ff49cfa1cdace2d6bf99a1f333cf38676b3ddf30da/mdit_py_plugins-0.4.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c6/02/c66bdfdadbb021adb642ca4e8a5ed32ada0b4a3e4b39c5d076d19543452f/mistune-3.1.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/f5/56/d75ff7cfec6208196a059341d8f21438a90fbfac4cc8e52fe1318d61cf84/modflow_devtools-1.6.0-py3-none-any.whl + - pypi: git+https://github.com/modflow-usgs/modflow-devtools#198b78b78135153ee5b4e92c2d2b61e7a02acb68 - pypi: https://files.pythonhosted.org/packages/23/62/0fe302c6d1be1c777cab0616e6302478251dfbf9055ad426f5d0def75c89/more_itertools-10.6.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a8/a1/ad7b84b91ab5a324e707f4c9761633e357820b011a01e34ce658c1dda7cc/msgpack-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/e9/9a/1f7d18b30edd57441a6411fcbc0c6869448d1a4bacbaee60656ac0fc29c8/mypy-1.15.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/2a/e2/5d3f6ada4297caebe1a2add3b126fe800c96f56dbe5d1988a2cbe0b267aa/mypy_extensions-1.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/34/6d/e7fa07f03a4a7b221d94b4d586edb754a9b0dc3c9e2c93353e9fa4e0d117/nbclient-0.10.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/cc/9a/cd673b2f773a12c992f41309ef81b99da1690426bd2f96957a7ade0d3ed7/nbconvert-7.16.6-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a9/82/0340caa499416c78e5d8f5f05947ae4bc3cba53c9f038ab6e9ed964e22f1/nbformat-5.10.4-py3-none-any.whl @@ -390,7 +404,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/d2/1d/1b658dbd2b9fa9c4c9f32accbfc0205d532c8c6194dc0f2a4c0428e7128a/nodeenv-1.9.1-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/22/9b/76e50ee18f183ea5fe1784a9eeaa50f2c71802e4740d6e959592b0993298/notebook-7.3.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/f9/33/bd5b9137445ea4b680023eb0469b2bb969d61303dedb2aac6560ff3d14a1/notebook_shim-0.2.4-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/28/2f/e3aca7337a92a53f6f6a6322f7bc93d434c2059b731a305637f78d6f406d/numcodecs-0.15.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/a6/a8/908a226632ffabf19caf8c99f1b2898f2f22aac02795a6fe9d018fd6d9dd/numcodecs-0.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/5b/86/caec78829311f62afa6fa334c8dfcd79cffb4d24bcf96ee02ae4840d462b/numpy-2.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/2c/ab/fc8290c6a4c722e5514d80f62b2dc4c4df1a68a41d1364e625c35990fcf3/overrides-7.7.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/88/ef/eb23f262cca3c0c4eb7ab1933c3b1f03d021f2c48f54763065b6f0e321be/packaging-24.2-py3-none-any.whl @@ -409,12 +423,14 @@ environments: - pypi: https://files.pythonhosted.org/packages/9c/39/0f88a830a1c8a3aba27fededc642da37613c57cbff143412e3536f89784f/psutil-6.1.1-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/22/a6/858897256d0deac81a172289110f31629fc4cee19b6f01283303e18c8db3/ptyprocess-0.7.0-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/8e/37/efad0257dc6e593a18957422533ff0f87ede7c9c6ea010a2177d738fb82f/pure_eval-0.2.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e0/a9/023730ba63db1e494a271cb018dcd361bd2c917ba7004c3e49d5daf795a2/py_cpuinfo-9.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b8/39/a2a6714b471c000e6dd6af4495dce00d7d1332351b8e3170dfb9f91dad1f/pyarrow-19.0.0-cp311-cp311-manylinux_2_28_x86_64.whl - pypi: https://files.pythonhosted.org/packages/13/a3/a812df4e2dd5696d1f351d58b8fe16a405b234ad2886a0dab9183fb78109/pycparser-2.22-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/8a/0b/9fcc47d19c48b59121088dd6da2488a49d5f72dacf8262e2790a1d2c7d15/pygments-2.19.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/1c/a7/c8a2d361bf89c0d9577c934ebb7421b25dc84bf3a8e3ac0a40aed9acc547/pyparsing-3.2.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/bd/24/12818598c362d7f300f18e74db45963dbcb85150324092410c8b49405e42/pyproject_hooks-1.2.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/11/92/76a1c94d3afee238333bc0a42b82935dd8f9cf8ce9e336ff87ee14d9e1cf/pytest-8.3.4-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/9e/d6/b41653199ea09d5969d4e385df9bbfd9a100f28ca7e824ce7c0a016e3053/pytest_benchmark-5.1.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d0/da/9da67c67b3d0963160e3d2cbc7c38b6fae342670cc8e6d5936644b2cf944/pytest_dotenv-0.5.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/6d/82/1d96bf03ee4c0fdc3c0cbe61470070e659ca78dc0086fb88b66c185e2449/pytest_xdist-3.6.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl @@ -432,7 +448,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/9e/51/17023c0f8f1869d8806b979a2bffa3f861f26a3f1a66b094288323fba52f/rfc3986_validator-0.1.1-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/19/71/39c7c0d87f8d4e6c020a393182060eaefeeae6c01dab6a84ec346f2567df/rich-13.9.4-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e1/78/79c128c3e71abbc8e9739ac27af11dc0f91840a86fce67ff83c65d1ba195/rpds_py-0.22.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/04/70/e59c192a3ad476355e7f45fb3a87326f5219cc7c472e6b040c6c6595c8f0/ruff-0.9.5-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/31/70/e917781e55ff39c5b5208bda384fd397ffd76605e68544d71a7e40944945/ruff-0.9.6-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/fc/da/452e1119e6f720df3feb588cce3c42c5e3d628d4bfd4aec097bd30b7de0c/scipy-1.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/54/24/b4293291fa1dd830f353d2cb163295742fa87f179fcc8a20a306a81978b7/SecretStorage-3.3.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/40/b0/4562db6223154aa4e22f939003cb92514c79f3d4dccca3444253fd17f902/Send2Trash-1.8.3-py3-none-any.whl @@ -447,6 +463,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/6a/9e/2064975477fdc887e47ad42157e214526dcad8f317a948dee17e1659a62f/terminado-0.18.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e6/34/ebdc18bae6aa14fbee1a08b63c015c72b64868ff7dae68808ab500c492e2/tinycss2-1.4.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/44/6f/7120676b6d73228c96e17f1f794d8ab046fc910d781c8d151120c3f1569e/toml-0.10.2-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/a9/6b/c54ede5dc70d648cc6361eaf429304b02f2871a345bbdd51e993d6cdf550/tomli-2.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/c7/18/c86eb8e0202e32dd3df50d43d7ff9854f8e0603945ff398974c1d91ac1ef/tomli_w-1.2.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/03/98/eb27cc78ad3af8e302c9d8ff4977f5026676e130d28dd7578132a457170c/toolz-1.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/22/55/b78a464de78051a30599ceb6983b01d8f732e6f69bf37b4ed07f642ac0fc/tornado-6.4.2-cp38-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/00/c0/8f5d070730d7836adc9c9b6408dec68c6ced86b304a9b26a14df072a6e8c/traitlets-5.14.3-py3-none-any.whl @@ -456,7 +474,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/0f/dd/84f10e23edd882c6f968c21c2434fe67bd4a528967067515feca9e611e5e/tzdata-2025.1-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e7/00/3fca040d7cf8a32776d3d81a00c8ee7457e00f80c649f1e4a863c8321ae9/uri_template-1.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c8/19/4ec628951a74043532ca2cf5d97b7b14863931476d117c471e8e2b1eb39f/urllib3-2.3.0-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/89/9b/599bcfc7064fbe5740919e78c5df18e5dceb0887e676256a1061bb5ae232/virtualenv-20.29.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/93/fa/849483d56773ae29740ae70043ad88e068f98a6401aa819b5d6bee604683/virtualenv-20.29.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/fd/84/fd2ba7aafacbad3c4201d395674fc6348826569da3c0937e75505ead3528/wcwidth-0.2.13-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/60/e8/c0e05e4684d13459f93d312077a9a2efbe04d59c393bc2b8802248c908d4/webcolors-24.11.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/f4/24/2a3e3df732393fed8b3ebf2ec078f05546de641fe1b667ee316ec1dcf3b7/webencodings-0.5.1-py2.py3-none-any.whl @@ -473,12 +491,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-hfdf4475_7.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2025.1.31-h8857fd0_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libexpat-2.6.4-h240833e_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.6-h281671d_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/liblzma-5.6.4-hd471939_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.48.0-hdb6dae5_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.1-hd23fc13_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.5-h0622a9a_3.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.4.0-hc426f3f_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.4.1-hc426f3f_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.11.11-h9ccd52b_1_cpython.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h9e318b2_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-h1abcd95_1.conda @@ -493,9 +511,11 @@ environments: - pypi: https://files.pythonhosted.org/packages/fc/30/d4986a882011f9df997a55e6becd864812ccfcd821d64aac8570ee39f719/attrs-25.1.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b7/b8/3fe70c75fe32afc4bb507f75563d39bc5642255d1d94f1f23604725780bf/babel-2.17.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b9/fa/123043af240e49752f1c4bd24da5053b6bd00cad78c2be53c0d1e8b975bc/backports.tarfile-1.2.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/64/69/f6db6e4cb2fe2f887dead40b76caa91af4844cb647dd2c7223bb010aa416/beartype-0.19.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/f9/49/6abb616eb3cbab6a7cca303dc02fdf3836de2e0b834bf966a7f5271a34d8/beautifulsoup4-4.13.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/fc/55/96142937f66150805c25c4d0f31ee4132fd33497753400734f9dfdcbdc66/bleach-6.2.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c5/15/be88ca93d191f07df76cce217b3b44d5ed3038fa58dd33b4fcb12ea8fe5e/bokeh-3.6.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/45/7f/0e961cf3908bc4c1c3e027de2794f867c6c89fb4916fc7dba295a0e80a2d/boltons-25.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/84/c2/80633736cd183ee4a62107413def345f7e6e3c01563dbca1417363cf957e/build-1.2.2.post1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c8/d5/867e75361fc45f6de75fe277dd085627a9db5ebb511a87f27dc1396b5351/cattrs-24.1.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/38/fc/bce832fd4fd99766c04d1ee0eead6b0ec6486fb100ae5e74c1d91292b982/certifi-2025.1.31-py3-none-any.whl @@ -507,7 +527,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/7e/e8/64c37fadfc2816a7701fa8a6ed8d87327c7d54eacfbfb6edab14a2f2be75/cloudpickle-3.1.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e6/75/49e5bfe642f71f272236b5b2d2691cf915a7283cc0ceda56357b61daa538/comm-0.2.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/12/bb/11250d2906ee2e8b466b5f93e6b19d525f3e0254ac8b445b56e618527718/contourpy-1.3.1-cp311-cp311-macosx_10_9_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/85/d2/5e175fcf6766cf7501a8541d81778fd2f52f4870100e791f5327fd23270b/coverage-7.6.10-cp311-cp311-macosx_10_9_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/64/2d/da78abbfff98468c91fd63a73cccdfa0e99051676ded8dd36123e3a2d4d5/coverage-7.6.12-cp311-cp311-macosx_10_9_x86_64.whl - pypi: https://files.pythonhosted.org/packages/ed/b8/e52f7c4b045b871c2984d70f37c31d4861b533a8082912dfd107a96cf7c1/crc32c-2.7.1-cp311-cp311-macosx_10_9_x86_64.whl - pypi: https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/91/a0/016d956a3fec193e3a5b466ca912944669c18dccc736b64a9e28ccdcc5f7/dask-2025.1.0-py3-none-any.whl @@ -523,8 +543,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/7b/8f/c4d9bafc34ad7ad5d8dc16dd1347ee0e507a52c3adb6bfa8887e1c6a26ba/executing-2.2.0-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/90/2b/0817a2b257fe88725c25589d89aec060581aabf668707a8d03b2e9e0cb2a/fastjsonschema-2.21.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/89/ec/00d68c4ddfedfe64159999e5f8a98fb8442729a63e2077eb9dcd89623d27/filelock-3.17.0-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/c3/60/03e09c5d38b4ab4c809eef03fd1f99e4744dfd3740a02225dc33217b09d7/flopy-3.9.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/b6/f9/9cf7fc04da85d37cfa1c287f0a25c274d6940dad259dbaa9fd796b87bd3c/fonttools-4.55.8-cp311-cp311-macosx_10_9_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/d4/0a/7f6467b7cd461966abe4e3f4a6ddb72609d5785e973a0ec545cf3c60a440/flopy-3.9.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/71/85/d483e9c4e5ed586b183bf037a353e8d766366b54fd15519b30e6178a6a6e/fonttools-4.56.0-cp311-cp311-macosx_10_9_x86_64.whl - pypi: https://files.pythonhosted.org/packages/cf/58/8acf1b3e91c58313ce5cb67df61001fc9dcd21be4fadb76c1a2d540e09ed/fqdn-1.5.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e2/94/758680531a00d06e471ef649e4ec2ed6bf185356a7f9fbfbb7368a40bd49/fsspec-2025.2.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a0/61/5c78b91c3143ed5c14207f463aecfc8f9dbb5092fb2869baf37c273b2705/gitdb-4.0.12-py3-none-any.whl @@ -535,7 +555,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/87/f5/72347bc88306acb359581ac4d52f23c0ef445b57157adedb9aee0cd689d2/httpcore-1.0.7-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/9f/cb/18326d2d89ad3b0dd143da971e77afd1e6ca6674f1b1c3df4b6bec6279fc/id-1.5.0-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/74/a1/68a395c17eeefb04917034bd0a1bfa765e7654fa150cca473d669aa3afb5/identify-2.6.6-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/03/00/1fd4a117c6c93f2dcc5b7edaeaf53ea45332ef966429be566ca16c2beb94/identify-2.6.7-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/79/9d/0fb148dc4d6fa4a7dd1d8378168d9b4cd8d4560a6fbf6f0121c5fc34eb68/importlib_metadata-8.6.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/ef/a6/62565a6e1cf69e10f5727360368e451d4b7f58beeac6173dc9db836a5b46/iniconfig-2.0.0-py3-none-any.whl @@ -565,7 +585,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/b1/dd/ead9d8ea85bf202d90cc513b533f9c363121c7792674f78e0d8a854b63b4/jupyterlab_pygments-0.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/54/09/2032e7d15c544a0e3cd831c51d77a8ca57f7555b2e1b2922142eddb02a84/jupyterlab_server-2.27.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a9/93/858e87edc634d628e5d752ba944c2833133a28fa87bb093e6832ced36a3e/jupyterlab_widgets-3.0.13-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/f4/02/27191f18564d4f2c0e543643aa94b54567de58f359cd6a3bed33adb723ac/jupytext-1.16.6-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e1/4c/3d7cfac5b8351f649ce41a1007a769baacae8d5d29e481a93d799a209c3f/jupytext-1.16.7-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d3/32/da7f44bcb1105d3e88a0b74ebdca50c59121d2ddf71c9e34ba47df7f3a56/keyring-25.6.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/4c/45/4a7f896f7467aaf5f56ef093d1f329346f3b594e77c6a3c327b2d415f521/kiwisolver-1.4.8-cp311-cp311-macosx_10_9_x86_64.whl - pypi: https://files.pythonhosted.org/packages/2d/00/d90b10b962b4277f5e64a78b6609968859ff86889f5b898c1a778c06ec00/lark-1.2.2-py3-none-any.whl @@ -578,11 +598,9 @@ environments: - pypi: https://files.pythonhosted.org/packages/a7/f7/7782a043553ee469c1ff49cfa1cdace2d6bf99a1f333cf38676b3ddf30da/mdit_py_plugins-0.4.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c6/02/c66bdfdadbb021adb642ca4e8a5ed32ada0b4a3e4b39c5d076d19543452f/mistune-3.1.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/f5/56/d75ff7cfec6208196a059341d8f21438a90fbfac4cc8e52fe1318d61cf84/modflow_devtools-1.6.0-py3-none-any.whl + - pypi: git+https://github.com/modflow-usgs/modflow-devtools#198b78b78135153ee5b4e92c2d2b61e7a02acb68 - pypi: https://files.pythonhosted.org/packages/23/62/0fe302c6d1be1c777cab0616e6302478251dfbf9055ad426f5d0def75c89/more_itertools-10.6.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/60/c2/687684164698f1d51c41778c838d854965dd284a4b9d3a44beba9265c931/msgpack-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/03/bc/f6339726c627bd7ca1ce0fa56c9ae2d0144604a319e0e339bdadafbbb599/mypy-1.15.0-cp311-cp311-macosx_10_9_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/2a/e2/5d3f6ada4297caebe1a2add3b126fe800c96f56dbe5d1988a2cbe0b267aa/mypy_extensions-1.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/34/6d/e7fa07f03a4a7b221d94b4d586edb754a9b0dc3c9e2c93353e9fa4e0d117/nbclient-0.10.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/cc/9a/cd673b2f773a12c992f41309ef81b99da1690426bd2f96957a7ade0d3ed7/nbconvert-7.16.6-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a9/82/0340caa499416c78e5d8f5f05947ae4bc3cba53c9f038ab6e9ed964e22f1/nbformat-5.10.4-py3-none-any.whl @@ -593,7 +611,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/d2/1d/1b658dbd2b9fa9c4c9f32accbfc0205d532c8c6194dc0f2a4c0428e7128a/nodeenv-1.9.1-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/22/9b/76e50ee18f183ea5fe1784a9eeaa50f2c71802e4740d6e959592b0993298/notebook-7.3.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/f9/33/bd5b9137445ea4b680023eb0469b2bb969d61303dedb2aac6560ff3d14a1/notebook_shim-0.2.4-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/55/9c/5a540965c87f1d553748114734bf808d396e629080d4432e745adee02f09/numcodecs-0.15.0-cp311-cp311-macosx_10_9_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/e4/fc/410f1cacaef0931f5daf06813b1b8a2442f7418ee284ec73fe5e830dca48/numcodecs-0.15.1-cp311-cp311-macosx_10_9_x86_64.whl - pypi: https://files.pythonhosted.org/packages/21/67/32c68756eed84df181c06528ff57e09138f893c4653448c4967311e0f992/numpy-2.2.2-cp311-cp311-macosx_10_9_x86_64.whl - pypi: https://files.pythonhosted.org/packages/2c/ab/fc8290c6a4c722e5514d80f62b2dc4c4df1a68a41d1364e625c35990fcf3/overrides-7.7.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/88/ef/eb23f262cca3c0c4eb7ab1933c3b1f03d021f2c48f54763065b6f0e321be/packaging-24.2-py3-none-any.whl @@ -612,12 +630,14 @@ environments: - pypi: https://files.pythonhosted.org/packages/61/99/ca79d302be46f7bdd8321089762dd4476ee725fce16fc2b2e1dbba8cac17/psutil-6.1.1-cp36-abi3-macosx_10_9_x86_64.whl - pypi: https://files.pythonhosted.org/packages/22/a6/858897256d0deac81a172289110f31629fc4cee19b6f01283303e18c8db3/ptyprocess-0.7.0-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/8e/37/efad0257dc6e593a18957422533ff0f87ede7c9c6ea010a2177d738fb82f/pure_eval-0.2.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e0/a9/023730ba63db1e494a271cb018dcd361bd2c917ba7004c3e49d5daf795a2/py_cpuinfo-9.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/88/7a/0da93a3eaaf251a30e32f3221e874263cdcd366c2cd6b7c05293aad91152/pyarrow-19.0.0-cp311-cp311-macosx_12_0_x86_64.whl - pypi: https://files.pythonhosted.org/packages/13/a3/a812df4e2dd5696d1f351d58b8fe16a405b234ad2886a0dab9183fb78109/pycparser-2.22-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/8a/0b/9fcc47d19c48b59121088dd6da2488a49d5f72dacf8262e2790a1d2c7d15/pygments-2.19.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/1c/a7/c8a2d361bf89c0d9577c934ebb7421b25dc84bf3a8e3ac0a40aed9acc547/pyparsing-3.2.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/bd/24/12818598c362d7f300f18e74db45963dbcb85150324092410c8b49405e42/pyproject_hooks-1.2.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/11/92/76a1c94d3afee238333bc0a42b82935dd8f9cf8ce9e336ff87ee14d9e1cf/pytest-8.3.4-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/9e/d6/b41653199ea09d5969d4e385df9bbfd9a100f28ca7e824ce7c0a016e3053/pytest_benchmark-5.1.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d0/da/9da67c67b3d0963160e3d2cbc7c38b6fae342670cc8e6d5936644b2cf944/pytest_dotenv-0.5.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/6d/82/1d96bf03ee4c0fdc3c0cbe61470070e659ca78dc0086fb88b66c185e2449/pytest_xdist-3.6.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl @@ -635,7 +655,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/9e/51/17023c0f8f1869d8806b979a2bffa3f861f26a3f1a66b094288323fba52f/rfc3986_validator-0.1.1-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/19/71/39c7c0d87f8d4e6c020a393182060eaefeeae6c01dab6a84ec346f2567df/rich-13.9.4-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/15/ad/8d1ddf78f2805a71253fcd388017e7b4a0615c22c762b6d35301fef20106/rpds_py-0.22.3-cp311-cp311-macosx_10_12_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/27/5c/f5ae0a9564e04108c132e1139d60491c0abc621397fe79a50b3dc0bd704b/ruff-0.9.5-py3-none-macosx_10_12_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/e1/22/aff073b70f95c052e5c58153cba735748c9e70107a77d03420d7850710a0/ruff-0.9.6-py3-none-macosx_10_12_x86_64.whl - pypi: https://files.pythonhosted.org/packages/8e/2e/7b71312da9c2dabff53e7c9a9d08231bc34d9d8fdabe88a6f1155b44591c/scipy-1.15.1-cp311-cp311-macosx_10_13_x86_64.whl - pypi: https://files.pythonhosted.org/packages/40/b0/4562db6223154aa4e22f939003cb92514c79f3d4dccca3444253fd17f902/Send2Trash-1.8.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/69/8a/b9dc7678803429e4a3bc9ba462fa3dd9066824d3c607490235c6a796be5a/setuptools-75.8.0-py3-none-any.whl @@ -649,6 +669,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/6a/9e/2064975477fdc887e47ad42157e214526dcad8f317a948dee17e1659a62f/terminado-0.18.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e6/34/ebdc18bae6aa14fbee1a08b63c015c72b64868ff7dae68808ab500c492e2/tinycss2-1.4.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/44/6f/7120676b6d73228c96e17f1f794d8ab046fc910d781c8d151120c3f1569e/toml-0.10.2-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/43/ca/75707e6efa2b37c77dadb324ae7d9571cb424e61ea73fad7c56c2d14527f/tomli-2.2.1-cp311-cp311-macosx_10_9_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/c7/18/c86eb8e0202e32dd3df50d43d7ff9854f8e0603945ff398974c1d91ac1ef/tomli_w-1.2.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/03/98/eb27cc78ad3af8e302c9d8ff4977f5026676e130d28dd7578132a457170c/toolz-1.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/96/44/87543a3b99016d0bf54fdaab30d24bf0af2e848f1d13d34a3a5380aabe16/tornado-6.4.2-cp38-abi3-macosx_10_9_x86_64.whl - pypi: https://files.pythonhosted.org/packages/00/c0/8f5d070730d7836adc9c9b6408dec68c6ced86b304a9b26a14df072a6e8c/traitlets-5.14.3-py3-none-any.whl @@ -658,7 +680,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/0f/dd/84f10e23edd882c6f968c21c2434fe67bd4a528967067515feca9e611e5e/tzdata-2025.1-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e7/00/3fca040d7cf8a32776d3d81a00c8ee7457e00f80c649f1e4a863c8321ae9/uri_template-1.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c8/19/4ec628951a74043532ca2cf5d97b7b14863931476d117c471e8e2b1eb39f/urllib3-2.3.0-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/89/9b/599bcfc7064fbe5740919e78c5df18e5dceb0887e676256a1061bb5ae232/virtualenv-20.29.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/93/fa/849483d56773ae29740ae70043ad88e068f98a6401aa819b5d6bee604683/virtualenv-20.29.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/fd/84/fd2ba7aafacbad3c4201d395674fc6348826569da3c0937e75505ead3528/wcwidth-0.2.13-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/60/e8/c0e05e4684d13459f93d312077a9a2efbe04d59c393bc2b8802248c908d4/webcolors-24.11.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/f4/24/2a3e3df732393fed8b3ebf2ec078f05546de641fe1b667ee316ec1dcf3b7/webencodings-0.5.1-py2.py3-none-any.whl @@ -675,18 +697,17 @@ environments: - conda: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda - conda: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2025.1.31-h56e8100_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.6.4-he0c23c2_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.2-h8ffe710_5.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.6-h537db12_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/liblzma-5.6.4-h2466b09_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.48.0-h67fdade_1.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/openssl-3.4.0-ha4e3fda_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/openssl-3.4.1-ha4e3fda_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/python-3.11.11-h3f84c4b_1_cpython.conda - conda: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h5226925_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025a-h78e105d_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_1.conda - conda: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-h5fd82a7_24.conda - conda: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.42.34433-h6356254_24.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.42.34433-hfef2bbc_24.conda - pypi: https://files.pythonhosted.org/packages/46/eb/e7f063ad1fec6b3178a3cd82d1a3c4de82cccf283fc42746168188e1cdd5/anyio-4.8.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a4/6a/e8a041599e78b6b3752da48000b14c8d1e8a04ded09c88c714ba047f34f5/argon2_cffi-23.1.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/37/2c/e34e47c7dee97ba6f01a6203e0383e15b60fb85d78ac9a15cd066f6fe28b/argon2_cffi_bindings-21.2.0-cp36-abi3-win_amd64.whl @@ -696,9 +717,11 @@ environments: - pypi: https://files.pythonhosted.org/packages/fc/30/d4986a882011f9df997a55e6becd864812ccfcd821d64aac8570ee39f719/attrs-25.1.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b7/b8/3fe70c75fe32afc4bb507f75563d39bc5642255d1d94f1f23604725780bf/babel-2.17.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b9/fa/123043af240e49752f1c4bd24da5053b6bd00cad78c2be53c0d1e8b975bc/backports.tarfile-1.2.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/64/69/f6db6e4cb2fe2f887dead40b76caa91af4844cb647dd2c7223bb010aa416/beartype-0.19.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/f9/49/6abb616eb3cbab6a7cca303dc02fdf3836de2e0b834bf966a7f5271a34d8/beautifulsoup4-4.13.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/fc/55/96142937f66150805c25c4d0f31ee4132fd33497753400734f9dfdcbdc66/bleach-6.2.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c5/15/be88ca93d191f07df76cce217b3b44d5ed3038fa58dd33b4fcb12ea8fe5e/bokeh-3.6.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/45/7f/0e961cf3908bc4c1c3e027de2794f867c6c89fb4916fc7dba295a0e80a2d/boltons-25.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/84/c2/80633736cd183ee4a62107413def345f7e6e3c01563dbca1417363cf957e/build-1.2.2.post1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c8/d5/867e75361fc45f6de75fe277dd085627a9db5ebb511a87f27dc1396b5351/cattrs-24.1.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/38/fc/bce832fd4fd99766c04d1ee0eead6b0ec6486fb100ae5e74c1d91292b982/certifi-2025.1.31-py3-none-any.whl @@ -711,7 +734,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e6/75/49e5bfe642f71f272236b5b2d2691cf915a7283cc0ceda56357b61daa538/comm-0.2.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a8/7e/cd93cab453720a5d6cb75588cc17dcdc08fc3484b9de98b885924ff61900/contourpy-1.3.1-cp311-cp311-win_amd64.whl - - pypi: https://files.pythonhosted.org/packages/db/11/3f8e803a43b79bc534c6a506674da9d614e990e37118b4506faf70d46ed6/coverage-7.6.10-cp311-cp311-win_amd64.whl + - pypi: https://files.pythonhosted.org/packages/d5/db/829185120c1686fa297294f8fcd23e0422f71070bf85ef1cc1a72ecb2930/coverage-7.6.12-cp311-cp311-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/c9/fb/1587c2705a3a47a3d0067eecf9a6fec510761c96dec45c7b038fb5c8ff46/crc32c-2.7.1-cp311-cp311-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/91/a0/016d956a3fec193e3a5b466ca912944669c18dccc736b64a9e28ccdcc5f7/dask-2025.1.0-py3-none-any.whl @@ -727,8 +750,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/7b/8f/c4d9bafc34ad7ad5d8dc16dd1347ee0e507a52c3adb6bfa8887e1c6a26ba/executing-2.2.0-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/90/2b/0817a2b257fe88725c25589d89aec060581aabf668707a8d03b2e9e0cb2a/fastjsonschema-2.21.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/89/ec/00d68c4ddfedfe64159999e5f8a98fb8442729a63e2077eb9dcd89623d27/filelock-3.17.0-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/c3/60/03e09c5d38b4ab4c809eef03fd1f99e4744dfd3740a02225dc33217b09d7/flopy-3.9.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/42/d6/96dc2462006ffa16c8d475244e372abdc47d03a7bd38be0f29e7ae552af4/fonttools-4.55.8-cp311-cp311-win_amd64.whl + - pypi: https://files.pythonhosted.org/packages/d4/0a/7f6467b7cd461966abe4e3f4a6ddb72609d5785e973a0ec545cf3c60a440/flopy-3.9.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/3b/90/4926e653041c4116ecd43e50e3c79f5daae6dcafc58ceb64bc4f71dd4924/fonttools-4.56.0-cp311-cp311-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/cf/58/8acf1b3e91c58313ce5cb67df61001fc9dcd21be4fadb76c1a2d540e09ed/fqdn-1.5.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e2/94/758680531a00d06e471ef649e4ec2ed6bf185356a7f9fbfbb7368a40bd49/fsspec-2025.2.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a0/61/5c78b91c3143ed5c14207f463aecfc8f9dbb5092fb2869baf37c273b2705/gitdb-4.0.12-py3-none-any.whl @@ -739,7 +762,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/87/f5/72347bc88306acb359581ac4d52f23c0ef445b57157adedb9aee0cd689d2/httpcore-1.0.7-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/9f/cb/18326d2d89ad3b0dd143da971e77afd1e6ca6674f1b1c3df4b6bec6279fc/id-1.5.0-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/74/a1/68a395c17eeefb04917034bd0a1bfa765e7654fa150cca473d669aa3afb5/identify-2.6.6-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/03/00/1fd4a117c6c93f2dcc5b7edaeaf53ea45332ef966429be566ca16c2beb94/identify-2.6.7-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/79/9d/0fb148dc4d6fa4a7dd1d8378168d9b4cd8d4560a6fbf6f0121c5fc34eb68/importlib_metadata-8.6.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/ef/a6/62565a6e1cf69e10f5727360368e451d4b7f58beeac6173dc9db836a5b46/iniconfig-2.0.0-py3-none-any.whl @@ -769,7 +792,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/b1/dd/ead9d8ea85bf202d90cc513b533f9c363121c7792674f78e0d8a854b63b4/jupyterlab_pygments-0.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/54/09/2032e7d15c544a0e3cd831c51d77a8ca57f7555b2e1b2922142eddb02a84/jupyterlab_server-2.27.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a9/93/858e87edc634d628e5d752ba944c2833133a28fa87bb093e6832ced36a3e/jupyterlab_widgets-3.0.13-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/f4/02/27191f18564d4f2c0e543643aa94b54567de58f359cd6a3bed33adb723ac/jupytext-1.16.6-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e1/4c/3d7cfac5b8351f649ce41a1007a769baacae8d5d29e481a93d799a209c3f/jupytext-1.16.7-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d3/32/da7f44bcb1105d3e88a0b74ebdca50c59121d2ddf71c9e34ba47df7f3a56/keyring-25.6.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2d/27/bdf1c769c83f74d98cbc34483a972f221440703054894a37d174fba8aa68/kiwisolver-1.4.8-cp311-cp311-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/2d/00/d90b10b962b4277f5e64a78b6609968859ff86889f5b898c1a778c06ec00/lark-1.2.2-py3-none-any.whl @@ -782,11 +805,9 @@ environments: - pypi: https://files.pythonhosted.org/packages/a7/f7/7782a043553ee469c1ff49cfa1cdace2d6bf99a1f333cf38676b3ddf30da/mdit_py_plugins-0.4.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c6/02/c66bdfdadbb021adb642ca4e8a5ed32ada0b4a3e4b39c5d076d19543452f/mistune-3.1.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/f5/56/d75ff7cfec6208196a059341d8f21438a90fbfac4cc8e52fe1318d61cf84/modflow_devtools-1.6.0-py3-none-any.whl + - pypi: git+https://github.com/modflow-usgs/modflow-devtools#198b78b78135153ee5b4e92c2d2b61e7a02acb68 - pypi: https://files.pythonhosted.org/packages/23/62/0fe302c6d1be1c777cab0616e6302478251dfbf9055ad426f5d0def75c89/more_itertools-10.6.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/aa/c4/5a582fc9a87991a3e6f6800e9bb2f3c82972912235eb9539954f3e9997c7/msgpack-1.1.0-cp311-cp311-win_amd64.whl - - pypi: https://files.pythonhosted.org/packages/96/39/11b57431a1f686c1aed54bf794870efe0f6aeca11aca281a0bd87a5ad42c/mypy-1.15.0-cp311-cp311-win_amd64.whl - - pypi: https://files.pythonhosted.org/packages/2a/e2/5d3f6ada4297caebe1a2add3b126fe800c96f56dbe5d1988a2cbe0b267aa/mypy_extensions-1.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/34/6d/e7fa07f03a4a7b221d94b4d586edb754a9b0dc3c9e2c93353e9fa4e0d117/nbclient-0.10.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/cc/9a/cd673b2f773a12c992f41309ef81b99da1690426bd2f96957a7ade0d3ed7/nbconvert-7.16.6-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a9/82/0340caa499416c78e5d8f5f05947ae4bc3cba53c9f038ab6e9ed964e22f1/nbformat-5.10.4-py3-none-any.whl @@ -797,7 +818,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/d2/1d/1b658dbd2b9fa9c4c9f32accbfc0205d532c8c6194dc0f2a4c0428e7128a/nodeenv-1.9.1-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/22/9b/76e50ee18f183ea5fe1784a9eeaa50f2c71802e4740d6e959592b0993298/notebook-7.3.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/f9/33/bd5b9137445ea4b680023eb0469b2bb969d61303dedb2aac6560ff3d14a1/notebook_shim-0.2.4-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/8b/54/c60ba0c05c2dc671983c8999212e4dafebd55cf35c8abf2e86e1af9cf5f6/numcodecs-0.15.0-cp311-cp311-win_amd64.whl + - pypi: https://files.pythonhosted.org/packages/2b/e8/058aac43e1300d588e99b2d0d5b771c8a43fa92ce9c9517da596869fc146/numcodecs-0.15.1-cp311-cp311-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/66/a3/4139296b481ae7304a43581046b8f0a20da6a0dfe0ee47a044cade796603/numpy-2.2.2-cp311-cp311-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/2c/ab/fc8290c6a4c722e5514d80f62b2dc4c4df1a68a41d1364e625c35990fcf3/overrides-7.7.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/88/ef/eb23f262cca3c0c4eb7ab1933c3b1f03d021f2c48f54763065b6f0e321be/packaging-24.2-py3-none-any.whl @@ -814,12 +835,14 @@ environments: - pypi: https://files.pythonhosted.org/packages/e4/ea/d836f008d33151c7a1f62caf3d8dd782e4d15f6a43897f64480c2b8de2ad/prompt_toolkit-3.0.50-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7b/d7/7831438e6c3ebbfa6e01a927127a6cb42ad3ab844247f3c5b96bea25d73d/psutil-6.1.1-cp37-abi3-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/8e/37/efad0257dc6e593a18957422533ff0f87ede7c9c6ea010a2177d738fb82f/pure_eval-0.2.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e0/a9/023730ba63db1e494a271cb018dcd361bd2c917ba7004c3e49d5daf795a2/py_cpuinfo-9.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/6c/a3/8396fb06ca05d807e89980c177be26617aad15211ece3184e0caa730b8a6/pyarrow-19.0.0-cp311-cp311-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/13/a3/a812df4e2dd5696d1f351d58b8fe16a405b234ad2886a0dab9183fb78109/pycparser-2.22-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/8a/0b/9fcc47d19c48b59121088dd6da2488a49d5f72dacf8262e2790a1d2c7d15/pygments-2.19.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/1c/a7/c8a2d361bf89c0d9577c934ebb7421b25dc84bf3a8e3ac0a40aed9acc547/pyparsing-3.2.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/bd/24/12818598c362d7f300f18e74db45963dbcb85150324092410c8b49405e42/pyproject_hooks-1.2.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/11/92/76a1c94d3afee238333bc0a42b82935dd8f9cf8ce9e336ff87ee14d9e1cf/pytest-8.3.4-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/9e/d6/b41653199ea09d5969d4e385df9bbfd9a100f28ca7e824ce7c0a016e3053/pytest_benchmark-5.1.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d0/da/9da67c67b3d0963160e3d2cbc7c38b6fae342670cc8e6d5936644b2cf944/pytest_dotenv-0.5.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/6d/82/1d96bf03ee4c0fdc3c0cbe61470070e659ca78dc0086fb88b66c185e2449/pytest_xdist-3.6.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl @@ -840,7 +863,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/9e/51/17023c0f8f1869d8806b979a2bffa3f861f26a3f1a66b094288323fba52f/rfc3986_validator-0.1.1-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/19/71/39c7c0d87f8d4e6c020a393182060eaefeeae6c01dab6a84ec346f2567df/rich-13.9.4-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b8/1b/c29b570bc5db8237553002788dc734d6bd71443a2ceac2a58202ec06ef12/rpds_py-0.22.3-cp311-cp311-win_amd64.whl - - pypi: https://files.pythonhosted.org/packages/b7/ad/c7a900591bd152bb47fc4882a27654ea55c7973e6d5d6396298ad3fd6638/ruff-0.9.5-py3-none-win_amd64.whl + - pypi: https://files.pythonhosted.org/packages/ee/30/c3cee10f915ed75a5c29c1e57311282d1a15855551a64795c1b2bbe5cf37/ruff-0.9.6-py3-none-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/af/25/caa430865749d504271757cafd24066d596217e83326155993980bc22f97/scipy-1.15.1-cp311-cp311-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/40/b0/4562db6223154aa4e22f939003cb92514c79f3d4dccca3444253fd17f902/Send2Trash-1.8.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/69/8a/b9dc7678803429e4a3bc9ba462fa3dd9066824d3c607490235c6a796be5a/setuptools-75.8.0-py3-none-any.whl @@ -854,6 +877,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/6a/9e/2064975477fdc887e47ad42157e214526dcad8f317a948dee17e1659a62f/terminado-0.18.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e6/34/ebdc18bae6aa14fbee1a08b63c015c72b64868ff7dae68808ab500c492e2/tinycss2-1.4.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/44/6f/7120676b6d73228c96e17f1f794d8ab046fc910d781c8d151120c3f1569e/toml-0.10.2-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/6a/1c/4a2dcde4a51b81be3530565e92eda625d94dafb46dbeb15069df4caffc34/tomli-2.2.1-cp311-cp311-win_amd64.whl + - pypi: https://files.pythonhosted.org/packages/c7/18/c86eb8e0202e32dd3df50d43d7ff9854f8e0603945ff398974c1d91ac1ef/tomli_w-1.2.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/03/98/eb27cc78ad3af8e302c9d8ff4977f5026676e130d28dd7578132a457170c/toolz-1.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/61/cc/58b1adeb1bb46228442081e746fcdbc4540905c87e8add7c277540934edb/tornado-6.4.2-cp38-abi3-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/00/c0/8f5d070730d7836adc9c9b6408dec68c6ced86b304a9b26a14df072a6e8c/traitlets-5.14.3-py3-none-any.whl @@ -863,7 +888,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/0f/dd/84f10e23edd882c6f968c21c2434fe67bd4a528967067515feca9e611e5e/tzdata-2025.1-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e7/00/3fca040d7cf8a32776d3d81a00c8ee7457e00f80c649f1e4a863c8321ae9/uri_template-1.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c8/19/4ec628951a74043532ca2cf5d97b7b14863931476d117c471e8e2b1eb39f/urllib3-2.3.0-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/89/9b/599bcfc7064fbe5740919e78c5df18e5dceb0887e676256a1061bb5ae232/virtualenv-20.29.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/93/fa/849483d56773ae29740ae70043ad88e068f98a6401aa819b5d6bee604683/virtualenv-20.29.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/fd/84/fd2ba7aafacbad3c4201d395674fc6348826569da3c0937e75505ead3528/wcwidth-0.2.13-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/60/e8/c0e05e4684d13459f93d312077a9a2efbe04d59c393bc2b8802248c908d4/webcolors-24.11.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/f4/24/2a3e3df732393fed8b3ebf2ec078f05546de641fe1b667ee316ec1dcf3b7/webencodings-0.5.1-py2.py3-none-any.whl @@ -889,7 +914,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2025.1.31-hbcca054_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.4-h5888daf_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.6-h2dba641_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-14.2.0-h77fa898_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.2.0-h77fa898_1.conda @@ -900,7 +925,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.4.0-h7b32b05_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.4.1-h7b32b05_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.11.11-h9e4cc4f_1_cpython.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda @@ -913,9 +938,11 @@ environments: - pypi: https://files.pythonhosted.org/packages/fa/9f/3c3503693386c4b0f245eaf5ca6198e3b28879ca0a40bde6b0e319793453/async_lru-2.0.4-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/fc/30/d4986a882011f9df997a55e6becd864812ccfcd821d64aac8570ee39f719/attrs-25.1.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b7/b8/3fe70c75fe32afc4bb507f75563d39bc5642255d1d94f1f23604725780bf/babel-2.17.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/64/69/f6db6e4cb2fe2f887dead40b76caa91af4844cb647dd2c7223bb010aa416/beartype-0.19.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/f9/49/6abb616eb3cbab6a7cca303dc02fdf3836de2e0b834bf966a7f5271a34d8/beautifulsoup4-4.13.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/fc/55/96142937f66150805c25c4d0f31ee4132fd33497753400734f9dfdcbdc66/bleach-6.2.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c5/15/be88ca93d191f07df76cce217b3b44d5ed3038fa58dd33b4fcb12ea8fe5e/bokeh-3.6.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/45/7f/0e961cf3908bc4c1c3e027de2794f867c6c89fb4916fc7dba295a0e80a2d/boltons-25.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c8/d5/867e75361fc45f6de75fe277dd085627a9db5ebb511a87f27dc1396b5351/cattrs-24.1.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/38/fc/bce832fd4fd99766c04d1ee0eead6b0ec6486fb100ae5e74c1d91292b982/certifi-2025.1.31-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/ff/6b/d45873c5e0242196f042d555526f92aa9e0c32355a1be1ff8c27f077fd37/cffi-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl @@ -925,7 +952,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/7e/e8/64c37fadfc2816a7701fa8a6ed8d87327c7d54eacfbfb6edab14a2f2be75/cloudpickle-3.1.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e6/75/49e5bfe642f71f272236b5b2d2691cf915a7283cc0ceda56357b61daa538/comm-0.2.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/85/fc/7fa5d17daf77306840a4e84668a48ddff09e6bc09ba4e37e85ffc8e4faa3/contourpy-1.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/2c/f8/ef009b3b98e9f7033c19deb40d629354aab1d8b2d7f9cfec284dbedf5096/coverage-7.6.10-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/c7/01/9cd06cbb1be53e837e16f1b4309f6357e2dfcbdab0dd7cd3b1a50589e4e1/coverage-7.6.12-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/6a/2b/9e29e9ac4c4213d60491db09487125db358cd9263490fbadbd55e48fbe03/crc32c-2.7.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/91/a0/016d956a3fec193e3a5b466ca912944669c18dccc736b64a9e28ccdcc5f7/dask-2025.1.0-py3-none-any.whl @@ -938,8 +965,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/43/09/2aea36ff60d16dd8879bdb2f5b3ee0ba8d08cbbdcdfe870e695ce3784385/execnet-2.1.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7b/8f/c4d9bafc34ad7ad5d8dc16dd1347ee0e507a52c3adb6bfa8887e1c6a26ba/executing-2.2.0-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/90/2b/0817a2b257fe88725c25589d89aec060581aabf668707a8d03b2e9e0cb2a/fastjsonschema-2.21.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/c3/60/03e09c5d38b4ab4c809eef03fd1f99e4744dfd3740a02225dc33217b09d7/flopy-3.9.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/f2/e0/e58b10ef50830145ba94dbeb64b70773af61cfccea663d485c7fae2aab65/fonttools-4.55.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/d4/0a/7f6467b7cd461966abe4e3f4a6ddb72609d5785e973a0ec545cf3c60a440/flopy-3.9.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/28/e9/47c02d5a7027e8ed841ab6a10ca00c93dadd5f16742f1af1fa3f9978adf4/fonttools-4.56.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/cf/58/8acf1b3e91c58313ce5cb67df61001fc9dcd21be4fadb76c1a2d540e09ed/fqdn-1.5.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e2/94/758680531a00d06e471ef649e4ec2ed6bf185356a7f9fbfbb7368a40bd49/fsspec-2025.2.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a0/61/5c78b91c3143ed5c14207f463aecfc8f9dbb5092fb2869baf37c273b2705/gitdb-4.0.12-py3-none-any.whl @@ -975,7 +1002,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/b1/dd/ead9d8ea85bf202d90cc513b533f9c363121c7792674f78e0d8a854b63b4/jupyterlab_pygments-0.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/54/09/2032e7d15c544a0e3cd831c51d77a8ca57f7555b2e1b2922142eddb02a84/jupyterlab_server-2.27.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a9/93/858e87edc634d628e5d752ba944c2833133a28fa87bb093e6832ced36a3e/jupyterlab_widgets-3.0.13-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/f4/02/27191f18564d4f2c0e543643aa94b54567de58f359cd6a3bed33adb723ac/jupytext-1.16.6-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e1/4c/3d7cfac5b8351f649ce41a1007a769baacae8d5d29e481a93d799a209c3f/jupytext-1.16.7-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/3a/97/5edbed69a9d0caa2e4aa616ae7df8127e10f6586940aa683a496c2c280b9/kiwisolver-1.4.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/2d/00/d90b10b962b4277f5e64a78b6609968859ff86889f5b898c1a778c06ec00/lark-1.2.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/db/bc/83e112abc66cd466c6b83f99118035867cecd41802f8d044638aa78a106e/locket-1.0.0-py2.py3-none-any.whl @@ -987,10 +1014,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/a7/f7/7782a043553ee469c1ff49cfa1cdace2d6bf99a1f333cf38676b3ddf30da/mdit_py_plugins-0.4.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c6/02/c66bdfdadbb021adb642ca4e8a5ed32ada0b4a3e4b39c5d076d19543452f/mistune-3.1.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/f5/56/d75ff7cfec6208196a059341d8f21438a90fbfac4cc8e52fe1318d61cf84/modflow_devtools-1.6.0-py3-none-any.whl + - pypi: git+https://github.com/modflow-usgs/modflow-devtools#198b78b78135153ee5b4e92c2d2b61e7a02acb68 - pypi: https://files.pythonhosted.org/packages/a8/a1/ad7b84b91ab5a324e707f4c9761633e357820b011a01e34ce658c1dda7cc/msgpack-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/e9/9a/1f7d18b30edd57441a6411fcbc0c6869448d1a4bacbaee60656ac0fc29c8/mypy-1.15.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/2a/e2/5d3f6ada4297caebe1a2add3b126fe800c96f56dbe5d1988a2cbe0b267aa/mypy_extensions-1.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/34/6d/e7fa07f03a4a7b221d94b4d586edb754a9b0dc3c9e2c93353e9fa4e0d117/nbclient-0.10.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/cc/9a/cd673b2f773a12c992f41309ef81b99da1690426bd2f96957a7ade0d3ed7/nbconvert-7.16.6-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a9/82/0340caa499416c78e5d8f5f05947ae4bc3cba53c9f038ab6e9ed964e22f1/nbformat-5.10.4-py3-none-any.whl @@ -999,7 +1024,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/b9/54/dd730b32ea14ea797530a4479b2ed46a6fb250f682a9cfb997e968bf0261/networkx-3.4.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/22/9b/76e50ee18f183ea5fe1784a9eeaa50f2c71802e4740d6e959592b0993298/notebook-7.3.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/f9/33/bd5b9137445ea4b680023eb0469b2bb969d61303dedb2aac6560ff3d14a1/notebook_shim-0.2.4-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/28/2f/e3aca7337a92a53f6f6a6322f7bc93d434c2059b731a305637f78d6f406d/numcodecs-0.15.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/a6/a8/908a226632ffabf19caf8c99f1b2898f2f22aac02795a6fe9d018fd6d9dd/numcodecs-0.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/5b/86/caec78829311f62afa6fa334c8dfcd79cffb4d24bcf96ee02ae4840d462b/numpy-2.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/2c/ab/fc8290c6a4c722e5514d80f62b2dc4c4df1a68a41d1364e625c35990fcf3/overrides-7.7.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/88/ef/eb23f262cca3c0c4eb7ab1933c3b1f03d021f2c48f54763065b6f0e321be/packaging-24.2-py3-none-any.whl @@ -1017,11 +1042,13 @@ environments: - pypi: https://files.pythonhosted.org/packages/9c/39/0f88a830a1c8a3aba27fededc642da37613c57cbff143412e3536f89784f/psutil-6.1.1-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/22/a6/858897256d0deac81a172289110f31629fc4cee19b6f01283303e18c8db3/ptyprocess-0.7.0-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/8e/37/efad0257dc6e593a18957422533ff0f87ede7c9c6ea010a2177d738fb82f/pure_eval-0.2.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e0/a9/023730ba63db1e494a271cb018dcd361bd2c917ba7004c3e49d5daf795a2/py_cpuinfo-9.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b8/39/a2a6714b471c000e6dd6af4495dce00d7d1332351b8e3170dfb9f91dad1f/pyarrow-19.0.0-cp311-cp311-manylinux_2_28_x86_64.whl - pypi: https://files.pythonhosted.org/packages/13/a3/a812df4e2dd5696d1f351d58b8fe16a405b234ad2886a0dab9183fb78109/pycparser-2.22-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/8a/0b/9fcc47d19c48b59121088dd6da2488a49d5f72dacf8262e2790a1d2c7d15/pygments-2.19.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/1c/a7/c8a2d361bf89c0d9577c934ebb7421b25dc84bf3a8e3ac0a40aed9acc547/pyparsing-3.2.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/11/92/76a1c94d3afee238333bc0a42b82935dd8f9cf8ce9e336ff87ee14d9e1cf/pytest-8.3.4-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/9e/d6/b41653199ea09d5969d4e385df9bbfd9a100f28ca7e824ce7c0a016e3053/pytest_benchmark-5.1.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d0/da/9da67c67b3d0963160e3d2cbc7c38b6fae342670cc8e6d5936644b2cf944/pytest_dotenv-0.5.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/6d/82/1d96bf03ee4c0fdc3c0cbe61470070e659ca78dc0086fb88b66c185e2449/pytest_xdist-3.6.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl @@ -1048,6 +1075,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/6a/9e/2064975477fdc887e47ad42157e214526dcad8f317a948dee17e1659a62f/terminado-0.18.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e6/34/ebdc18bae6aa14fbee1a08b63c015c72b64868ff7dae68808ab500c492e2/tinycss2-1.4.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/44/6f/7120676b6d73228c96e17f1f794d8ab046fc910d781c8d151120c3f1569e/toml-0.10.2-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/a9/6b/c54ede5dc70d648cc6361eaf429304b02f2871a345bbdd51e993d6cdf550/tomli-2.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/c7/18/c86eb8e0202e32dd3df50d43d7ff9854f8e0603945ff398974c1d91ac1ef/tomli_w-1.2.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/03/98/eb27cc78ad3af8e302c9d8ff4977f5026676e130d28dd7578132a457170c/toolz-1.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/22/55/b78a464de78051a30599ceb6983b01d8f732e6f69bf37b4ed07f642ac0fc/tornado-6.4.2-cp38-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/00/c0/8f5d070730d7836adc9c9b6408dec68c6ced86b304a9b26a14df072a6e8c/traitlets-5.14.3-py3-none-any.whl @@ -1072,12 +1101,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-hfdf4475_7.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2025.1.31-h8857fd0_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libexpat-2.6.4-h240833e_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.6-h281671d_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/liblzma-5.6.4-hd471939_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.48.0-hdb6dae5_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.1-hd23fc13_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.5-h0622a9a_3.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.4.0-hc426f3f_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.4.1-hc426f3f_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.11.11-h9ccd52b_1_cpython.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h9e318b2_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-h1abcd95_1.conda @@ -1091,9 +1120,11 @@ environments: - pypi: https://files.pythonhosted.org/packages/fa/9f/3c3503693386c4b0f245eaf5ca6198e3b28879ca0a40bde6b0e319793453/async_lru-2.0.4-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/fc/30/d4986a882011f9df997a55e6becd864812ccfcd821d64aac8570ee39f719/attrs-25.1.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b7/b8/3fe70c75fe32afc4bb507f75563d39bc5642255d1d94f1f23604725780bf/babel-2.17.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/64/69/f6db6e4cb2fe2f887dead40b76caa91af4844cb647dd2c7223bb010aa416/beartype-0.19.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/f9/49/6abb616eb3cbab6a7cca303dc02fdf3836de2e0b834bf966a7f5271a34d8/beautifulsoup4-4.13.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/fc/55/96142937f66150805c25c4d0f31ee4132fd33497753400734f9dfdcbdc66/bleach-6.2.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c5/15/be88ca93d191f07df76cce217b3b44d5ed3038fa58dd33b4fcb12ea8fe5e/bokeh-3.6.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/45/7f/0e961cf3908bc4c1c3e027de2794f867c6c89fb4916fc7dba295a0e80a2d/boltons-25.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c8/d5/867e75361fc45f6de75fe277dd085627a9db5ebb511a87f27dc1396b5351/cattrs-24.1.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/38/fc/bce832fd4fd99766c04d1ee0eead6b0ec6486fb100ae5e74c1d91292b982/certifi-2025.1.31-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/6b/f4/927e3a8899e52a27fa57a48607ff7dc91a9ebe97399b357b85a0c7892e00/cffi-1.17.1-cp311-cp311-macosx_10_9_x86_64.whl @@ -1103,7 +1134,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/7e/e8/64c37fadfc2816a7701fa8a6ed8d87327c7d54eacfbfb6edab14a2f2be75/cloudpickle-3.1.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e6/75/49e5bfe642f71f272236b5b2d2691cf915a7283cc0ceda56357b61daa538/comm-0.2.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/12/bb/11250d2906ee2e8b466b5f93e6b19d525f3e0254ac8b445b56e618527718/contourpy-1.3.1-cp311-cp311-macosx_10_9_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/85/d2/5e175fcf6766cf7501a8541d81778fd2f52f4870100e791f5327fd23270b/coverage-7.6.10-cp311-cp311-macosx_10_9_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/64/2d/da78abbfff98468c91fd63a73cccdfa0e99051676ded8dd36123e3a2d4d5/coverage-7.6.12-cp311-cp311-macosx_10_9_x86_64.whl - pypi: https://files.pythonhosted.org/packages/ed/b8/e52f7c4b045b871c2984d70f37c31d4861b533a8082912dfd107a96cf7c1/crc32c-2.7.1-cp311-cp311-macosx_10_9_x86_64.whl - pypi: https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/91/a0/016d956a3fec193e3a5b466ca912944669c18dccc736b64a9e28ccdcc5f7/dask-2025.1.0-py3-none-any.whl @@ -1116,8 +1147,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/43/09/2aea36ff60d16dd8879bdb2f5b3ee0ba8d08cbbdcdfe870e695ce3784385/execnet-2.1.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7b/8f/c4d9bafc34ad7ad5d8dc16dd1347ee0e507a52c3adb6bfa8887e1c6a26ba/executing-2.2.0-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/90/2b/0817a2b257fe88725c25589d89aec060581aabf668707a8d03b2e9e0cb2a/fastjsonschema-2.21.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/c3/60/03e09c5d38b4ab4c809eef03fd1f99e4744dfd3740a02225dc33217b09d7/flopy-3.9.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/b6/f9/9cf7fc04da85d37cfa1c287f0a25c274d6940dad259dbaa9fd796b87bd3c/fonttools-4.55.8-cp311-cp311-macosx_10_9_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/d4/0a/7f6467b7cd461966abe4e3f4a6ddb72609d5785e973a0ec545cf3c60a440/flopy-3.9.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/71/85/d483e9c4e5ed586b183bf037a353e8d766366b54fd15519b30e6178a6a6e/fonttools-4.56.0-cp311-cp311-macosx_10_9_x86_64.whl - pypi: https://files.pythonhosted.org/packages/cf/58/8acf1b3e91c58313ce5cb67df61001fc9dcd21be4fadb76c1a2d540e09ed/fqdn-1.5.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e2/94/758680531a00d06e471ef649e4ec2ed6bf185356a7f9fbfbb7368a40bd49/fsspec-2025.2.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a0/61/5c78b91c3143ed5c14207f463aecfc8f9dbb5092fb2869baf37c273b2705/gitdb-4.0.12-py3-none-any.whl @@ -1153,7 +1184,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/b1/dd/ead9d8ea85bf202d90cc513b533f9c363121c7792674f78e0d8a854b63b4/jupyterlab_pygments-0.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/54/09/2032e7d15c544a0e3cd831c51d77a8ca57f7555b2e1b2922142eddb02a84/jupyterlab_server-2.27.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a9/93/858e87edc634d628e5d752ba944c2833133a28fa87bb093e6832ced36a3e/jupyterlab_widgets-3.0.13-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/f4/02/27191f18564d4f2c0e543643aa94b54567de58f359cd6a3bed33adb723ac/jupytext-1.16.6-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e1/4c/3d7cfac5b8351f649ce41a1007a769baacae8d5d29e481a93d799a209c3f/jupytext-1.16.7-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/4c/45/4a7f896f7467aaf5f56ef093d1f329346f3b594e77c6a3c327b2d415f521/kiwisolver-1.4.8-cp311-cp311-macosx_10_9_x86_64.whl - pypi: https://files.pythonhosted.org/packages/2d/00/d90b10b962b4277f5e64a78b6609968859ff86889f5b898c1a778c06ec00/lark-1.2.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/db/bc/83e112abc66cd466c6b83f99118035867cecd41802f8d044638aa78a106e/locket-1.0.0-py2.py3-none-any.whl @@ -1165,10 +1196,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/a7/f7/7782a043553ee469c1ff49cfa1cdace2d6bf99a1f333cf38676b3ddf30da/mdit_py_plugins-0.4.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c6/02/c66bdfdadbb021adb642ca4e8a5ed32ada0b4a3e4b39c5d076d19543452f/mistune-3.1.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/f5/56/d75ff7cfec6208196a059341d8f21438a90fbfac4cc8e52fe1318d61cf84/modflow_devtools-1.6.0-py3-none-any.whl + - pypi: git+https://github.com/modflow-usgs/modflow-devtools#198b78b78135153ee5b4e92c2d2b61e7a02acb68 - pypi: https://files.pythonhosted.org/packages/60/c2/687684164698f1d51c41778c838d854965dd284a4b9d3a44beba9265c931/msgpack-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/03/bc/f6339726c627bd7ca1ce0fa56c9ae2d0144604a319e0e339bdadafbbb599/mypy-1.15.0-cp311-cp311-macosx_10_9_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/2a/e2/5d3f6ada4297caebe1a2add3b126fe800c96f56dbe5d1988a2cbe0b267aa/mypy_extensions-1.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/34/6d/e7fa07f03a4a7b221d94b4d586edb754a9b0dc3c9e2c93353e9fa4e0d117/nbclient-0.10.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/cc/9a/cd673b2f773a12c992f41309ef81b99da1690426bd2f96957a7ade0d3ed7/nbconvert-7.16.6-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a9/82/0340caa499416c78e5d8f5f05947ae4bc3cba53c9f038ab6e9ed964e22f1/nbformat-5.10.4-py3-none-any.whl @@ -1177,7 +1206,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/b9/54/dd730b32ea14ea797530a4479b2ed46a6fb250f682a9cfb997e968bf0261/networkx-3.4.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/22/9b/76e50ee18f183ea5fe1784a9eeaa50f2c71802e4740d6e959592b0993298/notebook-7.3.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/f9/33/bd5b9137445ea4b680023eb0469b2bb969d61303dedb2aac6560ff3d14a1/notebook_shim-0.2.4-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/55/9c/5a540965c87f1d553748114734bf808d396e629080d4432e745adee02f09/numcodecs-0.15.0-cp311-cp311-macosx_10_9_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/e4/fc/410f1cacaef0931f5daf06813b1b8a2442f7418ee284ec73fe5e830dca48/numcodecs-0.15.1-cp311-cp311-macosx_10_9_x86_64.whl - pypi: https://files.pythonhosted.org/packages/21/67/32c68756eed84df181c06528ff57e09138f893c4653448c4967311e0f992/numpy-2.2.2-cp311-cp311-macosx_10_9_x86_64.whl - pypi: https://files.pythonhosted.org/packages/2c/ab/fc8290c6a4c722e5514d80f62b2dc4c4df1a68a41d1364e625c35990fcf3/overrides-7.7.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/88/ef/eb23f262cca3c0c4eb7ab1933c3b1f03d021f2c48f54763065b6f0e321be/packaging-24.2-py3-none-any.whl @@ -1195,11 +1224,13 @@ environments: - pypi: https://files.pythonhosted.org/packages/61/99/ca79d302be46f7bdd8321089762dd4476ee725fce16fc2b2e1dbba8cac17/psutil-6.1.1-cp36-abi3-macosx_10_9_x86_64.whl - pypi: https://files.pythonhosted.org/packages/22/a6/858897256d0deac81a172289110f31629fc4cee19b6f01283303e18c8db3/ptyprocess-0.7.0-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/8e/37/efad0257dc6e593a18957422533ff0f87ede7c9c6ea010a2177d738fb82f/pure_eval-0.2.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e0/a9/023730ba63db1e494a271cb018dcd361bd2c917ba7004c3e49d5daf795a2/py_cpuinfo-9.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/88/7a/0da93a3eaaf251a30e32f3221e874263cdcd366c2cd6b7c05293aad91152/pyarrow-19.0.0-cp311-cp311-macosx_12_0_x86_64.whl - pypi: https://files.pythonhosted.org/packages/13/a3/a812df4e2dd5696d1f351d58b8fe16a405b234ad2886a0dab9183fb78109/pycparser-2.22-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/8a/0b/9fcc47d19c48b59121088dd6da2488a49d5f72dacf8262e2790a1d2c7d15/pygments-2.19.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/1c/a7/c8a2d361bf89c0d9577c934ebb7421b25dc84bf3a8e3ac0a40aed9acc547/pyparsing-3.2.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/11/92/76a1c94d3afee238333bc0a42b82935dd8f9cf8ce9e336ff87ee14d9e1cf/pytest-8.3.4-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/9e/d6/b41653199ea09d5969d4e385df9bbfd9a100f28ca7e824ce7c0a016e3053/pytest_benchmark-5.1.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d0/da/9da67c67b3d0963160e3d2cbc7c38b6fae342670cc8e6d5936644b2cf944/pytest_dotenv-0.5.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/6d/82/1d96bf03ee4c0fdc3c0cbe61470070e659ca78dc0086fb88b66c185e2449/pytest_xdist-3.6.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl @@ -1226,6 +1257,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/6a/9e/2064975477fdc887e47ad42157e214526dcad8f317a948dee17e1659a62f/terminado-0.18.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e6/34/ebdc18bae6aa14fbee1a08b63c015c72b64868ff7dae68808ab500c492e2/tinycss2-1.4.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/44/6f/7120676b6d73228c96e17f1f794d8ab046fc910d781c8d151120c3f1569e/toml-0.10.2-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/43/ca/75707e6efa2b37c77dadb324ae7d9571cb424e61ea73fad7c56c2d14527f/tomli-2.2.1-cp311-cp311-macosx_10_9_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/c7/18/c86eb8e0202e32dd3df50d43d7ff9854f8e0603945ff398974c1d91ac1ef/tomli_w-1.2.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/03/98/eb27cc78ad3af8e302c9d8ff4977f5026676e130d28dd7578132a457170c/toolz-1.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/96/44/87543a3b99016d0bf54fdaab30d24bf0af2e848f1d13d34a3a5380aabe16/tornado-6.4.2-cp38-abi3-macosx_10_9_x86_64.whl - pypi: https://files.pythonhosted.org/packages/00/c0/8f5d070730d7836adc9c9b6408dec68c6ced86b304a9b26a14df072a6e8c/traitlets-5.14.3-py3-none-any.whl @@ -1250,18 +1283,17 @@ environments: - conda: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda - conda: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2025.1.31-h56e8100_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.6.4-he0c23c2_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.2-h8ffe710_5.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.6-h537db12_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/liblzma-5.6.4-h2466b09_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.48.0-h67fdade_1.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/openssl-3.4.0-ha4e3fda_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/openssl-3.4.1-ha4e3fda_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/python-3.11.11-h3f84c4b_1_cpython.conda - conda: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h5226925_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025a-h78e105d_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_1.conda - conda: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-h5fd82a7_24.conda - conda: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.42.34433-h6356254_24.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.42.34433-hfef2bbc_24.conda - pypi: https://files.pythonhosted.org/packages/46/eb/e7f063ad1fec6b3178a3cd82d1a3c4de82cccf283fc42746168188e1cdd5/anyio-4.8.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a4/6a/e8a041599e78b6b3752da48000b14c8d1e8a04ded09c88c714ba047f34f5/argon2_cffi-23.1.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/37/2c/e34e47c7dee97ba6f01a6203e0383e15b60fb85d78ac9a15cd066f6fe28b/argon2_cffi_bindings-21.2.0-cp36-abi3-win_amd64.whl @@ -1270,9 +1302,11 @@ environments: - pypi: https://files.pythonhosted.org/packages/fa/9f/3c3503693386c4b0f245eaf5ca6198e3b28879ca0a40bde6b0e319793453/async_lru-2.0.4-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/fc/30/d4986a882011f9df997a55e6becd864812ccfcd821d64aac8570ee39f719/attrs-25.1.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b7/b8/3fe70c75fe32afc4bb507f75563d39bc5642255d1d94f1f23604725780bf/babel-2.17.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/64/69/f6db6e4cb2fe2f887dead40b76caa91af4844cb647dd2c7223bb010aa416/beartype-0.19.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/f9/49/6abb616eb3cbab6a7cca303dc02fdf3836de2e0b834bf966a7f5271a34d8/beautifulsoup4-4.13.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/fc/55/96142937f66150805c25c4d0f31ee4132fd33497753400734f9dfdcbdc66/bleach-6.2.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c5/15/be88ca93d191f07df76cce217b3b44d5ed3038fa58dd33b4fcb12ea8fe5e/bokeh-3.6.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/45/7f/0e961cf3908bc4c1c3e027de2794f867c6c89fb4916fc7dba295a0e80a2d/boltons-25.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c8/d5/867e75361fc45f6de75fe277dd085627a9db5ebb511a87f27dc1396b5351/cattrs-24.1.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/38/fc/bce832fd4fd99766c04d1ee0eead6b0ec6486fb100ae5e74c1d91292b982/certifi-2025.1.31-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/3d/97/50228be003bb2802627d28ec0627837ac0bf35c90cf769812056f235b2d1/cffi-1.17.1-cp311-cp311-win_amd64.whl @@ -1283,7 +1317,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e6/75/49e5bfe642f71f272236b5b2d2691cf915a7283cc0ceda56357b61daa538/comm-0.2.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a8/7e/cd93cab453720a5d6cb75588cc17dcdc08fc3484b9de98b885924ff61900/contourpy-1.3.1-cp311-cp311-win_amd64.whl - - pypi: https://files.pythonhosted.org/packages/db/11/3f8e803a43b79bc534c6a506674da9d614e990e37118b4506faf70d46ed6/coverage-7.6.10-cp311-cp311-win_amd64.whl + - pypi: https://files.pythonhosted.org/packages/d5/db/829185120c1686fa297294f8fcd23e0422f71070bf85ef1cc1a72ecb2930/coverage-7.6.12-cp311-cp311-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/c9/fb/1587c2705a3a47a3d0067eecf9a6fec510761c96dec45c7b038fb5c8ff46/crc32c-2.7.1-cp311-cp311-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/91/a0/016d956a3fec193e3a5b466ca912944669c18dccc736b64a9e28ccdcc5f7/dask-2025.1.0-py3-none-any.whl @@ -1296,8 +1330,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/43/09/2aea36ff60d16dd8879bdb2f5b3ee0ba8d08cbbdcdfe870e695ce3784385/execnet-2.1.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7b/8f/c4d9bafc34ad7ad5d8dc16dd1347ee0e507a52c3adb6bfa8887e1c6a26ba/executing-2.2.0-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/90/2b/0817a2b257fe88725c25589d89aec060581aabf668707a8d03b2e9e0cb2a/fastjsonschema-2.21.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/c3/60/03e09c5d38b4ab4c809eef03fd1f99e4744dfd3740a02225dc33217b09d7/flopy-3.9.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/42/d6/96dc2462006ffa16c8d475244e372abdc47d03a7bd38be0f29e7ae552af4/fonttools-4.55.8-cp311-cp311-win_amd64.whl + - pypi: https://files.pythonhosted.org/packages/d4/0a/7f6467b7cd461966abe4e3f4a6ddb72609d5785e973a0ec545cf3c60a440/flopy-3.9.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/3b/90/4926e653041c4116ecd43e50e3c79f5daae6dcafc58ceb64bc4f71dd4924/fonttools-4.56.0-cp311-cp311-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/cf/58/8acf1b3e91c58313ce5cb67df61001fc9dcd21be4fadb76c1a2d540e09ed/fqdn-1.5.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e2/94/758680531a00d06e471ef649e4ec2ed6bf185356a7f9fbfbb7368a40bd49/fsspec-2025.2.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a0/61/5c78b91c3143ed5c14207f463aecfc8f9dbb5092fb2869baf37c273b2705/gitdb-4.0.12-py3-none-any.whl @@ -1333,7 +1367,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/b1/dd/ead9d8ea85bf202d90cc513b533f9c363121c7792674f78e0d8a854b63b4/jupyterlab_pygments-0.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/54/09/2032e7d15c544a0e3cd831c51d77a8ca57f7555b2e1b2922142eddb02a84/jupyterlab_server-2.27.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a9/93/858e87edc634d628e5d752ba944c2833133a28fa87bb093e6832ced36a3e/jupyterlab_widgets-3.0.13-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/f4/02/27191f18564d4f2c0e543643aa94b54567de58f359cd6a3bed33adb723ac/jupytext-1.16.6-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e1/4c/3d7cfac5b8351f649ce41a1007a769baacae8d5d29e481a93d799a209c3f/jupytext-1.16.7-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2d/27/bdf1c769c83f74d98cbc34483a972f221440703054894a37d174fba8aa68/kiwisolver-1.4.8-cp311-cp311-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/2d/00/d90b10b962b4277f5e64a78b6609968859ff86889f5b898c1a778c06ec00/lark-1.2.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/db/bc/83e112abc66cd466c6b83f99118035867cecd41802f8d044638aa78a106e/locket-1.0.0-py2.py3-none-any.whl @@ -1345,10 +1379,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/a7/f7/7782a043553ee469c1ff49cfa1cdace2d6bf99a1f333cf38676b3ddf30da/mdit_py_plugins-0.4.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c6/02/c66bdfdadbb021adb642ca4e8a5ed32ada0b4a3e4b39c5d076d19543452f/mistune-3.1.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/f5/56/d75ff7cfec6208196a059341d8f21438a90fbfac4cc8e52fe1318d61cf84/modflow_devtools-1.6.0-py3-none-any.whl + - pypi: git+https://github.com/modflow-usgs/modflow-devtools#198b78b78135153ee5b4e92c2d2b61e7a02acb68 - pypi: https://files.pythonhosted.org/packages/aa/c4/5a582fc9a87991a3e6f6800e9bb2f3c82972912235eb9539954f3e9997c7/msgpack-1.1.0-cp311-cp311-win_amd64.whl - - pypi: https://files.pythonhosted.org/packages/96/39/11b57431a1f686c1aed54bf794870efe0f6aeca11aca281a0bd87a5ad42c/mypy-1.15.0-cp311-cp311-win_amd64.whl - - pypi: https://files.pythonhosted.org/packages/2a/e2/5d3f6ada4297caebe1a2add3b126fe800c96f56dbe5d1988a2cbe0b267aa/mypy_extensions-1.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/34/6d/e7fa07f03a4a7b221d94b4d586edb754a9b0dc3c9e2c93353e9fa4e0d117/nbclient-0.10.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/cc/9a/cd673b2f773a12c992f41309ef81b99da1690426bd2f96957a7ade0d3ed7/nbconvert-7.16.6-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a9/82/0340caa499416c78e5d8f5f05947ae4bc3cba53c9f038ab6e9ed964e22f1/nbformat-5.10.4-py3-none-any.whl @@ -1357,7 +1389,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/b9/54/dd730b32ea14ea797530a4479b2ed46a6fb250f682a9cfb997e968bf0261/networkx-3.4.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/22/9b/76e50ee18f183ea5fe1784a9eeaa50f2c71802e4740d6e959592b0993298/notebook-7.3.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/f9/33/bd5b9137445ea4b680023eb0469b2bb969d61303dedb2aac6560ff3d14a1/notebook_shim-0.2.4-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/8b/54/c60ba0c05c2dc671983c8999212e4dafebd55cf35c8abf2e86e1af9cf5f6/numcodecs-0.15.0-cp311-cp311-win_amd64.whl + - pypi: https://files.pythonhosted.org/packages/2b/e8/058aac43e1300d588e99b2d0d5b771c8a43fa92ce9c9517da596869fc146/numcodecs-0.15.1-cp311-cp311-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/66/a3/4139296b481ae7304a43581046b8f0a20da6a0dfe0ee47a044cade796603/numpy-2.2.2-cp311-cp311-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/2c/ab/fc8290c6a4c722e5514d80f62b2dc4c4df1a68a41d1364e625c35990fcf3/overrides-7.7.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/88/ef/eb23f262cca3c0c4eb7ab1933c3b1f03d021f2c48f54763065b6f0e321be/packaging-24.2-py3-none-any.whl @@ -1373,11 +1405,13 @@ environments: - pypi: https://files.pythonhosted.org/packages/e4/ea/d836f008d33151c7a1f62caf3d8dd782e4d15f6a43897f64480c2b8de2ad/prompt_toolkit-3.0.50-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7b/d7/7831438e6c3ebbfa6e01a927127a6cb42ad3ab844247f3c5b96bea25d73d/psutil-6.1.1-cp37-abi3-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/8e/37/efad0257dc6e593a18957422533ff0f87ede7c9c6ea010a2177d738fb82f/pure_eval-0.2.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e0/a9/023730ba63db1e494a271cb018dcd361bd2c917ba7004c3e49d5daf795a2/py_cpuinfo-9.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/6c/a3/8396fb06ca05d807e89980c177be26617aad15211ece3184e0caa730b8a6/pyarrow-19.0.0-cp311-cp311-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/13/a3/a812df4e2dd5696d1f351d58b8fe16a405b234ad2886a0dab9183fb78109/pycparser-2.22-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/8a/0b/9fcc47d19c48b59121088dd6da2488a49d5f72dacf8262e2790a1d2c7d15/pygments-2.19.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/1c/a7/c8a2d361bf89c0d9577c934ebb7421b25dc84bf3a8e3ac0a40aed9acc547/pyparsing-3.2.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/11/92/76a1c94d3afee238333bc0a42b82935dd8f9cf8ce9e336ff87ee14d9e1cf/pytest-8.3.4-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/9e/d6/b41653199ea09d5969d4e385df9bbfd9a100f28ca7e824ce7c0a016e3053/pytest_benchmark-5.1.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d0/da/9da67c67b3d0963160e3d2cbc7c38b6fae342670cc8e6d5936644b2cf944/pytest_dotenv-0.5.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/6d/82/1d96bf03ee4c0fdc3c0cbe61470070e659ca78dc0086fb88b66c185e2449/pytest_xdist-3.6.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl @@ -1406,6 +1440,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/6a/9e/2064975477fdc887e47ad42157e214526dcad8f317a948dee17e1659a62f/terminado-0.18.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e6/34/ebdc18bae6aa14fbee1a08b63c015c72b64868ff7dae68808ab500c492e2/tinycss2-1.4.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/44/6f/7120676b6d73228c96e17f1f794d8ab046fc910d781c8d151120c3f1569e/toml-0.10.2-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/6a/1c/4a2dcde4a51b81be3530565e92eda625d94dafb46dbeb15069df4caffc34/tomli-2.2.1-cp311-cp311-win_amd64.whl + - pypi: https://files.pythonhosted.org/packages/c7/18/c86eb8e0202e32dd3df50d43d7ff9854f8e0603945ff398974c1d91ac1ef/tomli_w-1.2.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/03/98/eb27cc78ad3af8e302c9d8ff4977f5026676e130d28dd7578132a457170c/toolz-1.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/61/cc/58b1adeb1bb46228442081e746fcdbc4540905c87e8add7c277540934edb/tornado-6.4.2-cp38-abi3-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/00/c0/8f5d070730d7836adc9c9b6408dec68c6ced86b304a9b26a14df072a6e8c/traitlets-5.14.3-py3-none-any.whl @@ -1439,7 +1475,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2025.1.31-hbcca054_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.4-h5888daf_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.6-h2dba641_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-14.2.0-h77fa898_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.2.0-h77fa898_1.conda @@ -1450,7 +1486,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.4.0-h7b32b05_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.4.1-h7b32b05_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.12.8-h9e4cc4f_1_cpython.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda @@ -1463,9 +1499,11 @@ environments: - pypi: https://files.pythonhosted.org/packages/fa/9f/3c3503693386c4b0f245eaf5ca6198e3b28879ca0a40bde6b0e319793453/async_lru-2.0.4-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/fc/30/d4986a882011f9df997a55e6becd864812ccfcd821d64aac8570ee39f719/attrs-25.1.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b7/b8/3fe70c75fe32afc4bb507f75563d39bc5642255d1d94f1f23604725780bf/babel-2.17.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/64/69/f6db6e4cb2fe2f887dead40b76caa91af4844cb647dd2c7223bb010aa416/beartype-0.19.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/f9/49/6abb616eb3cbab6a7cca303dc02fdf3836de2e0b834bf966a7f5271a34d8/beautifulsoup4-4.13.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/fc/55/96142937f66150805c25c4d0f31ee4132fd33497753400734f9dfdcbdc66/bleach-6.2.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c5/15/be88ca93d191f07df76cce217b3b44d5ed3038fa58dd33b4fcb12ea8fe5e/bokeh-3.6.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/45/7f/0e961cf3908bc4c1c3e027de2794f867c6c89fb4916fc7dba295a0e80a2d/boltons-25.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c8/d5/867e75361fc45f6de75fe277dd085627a9db5ebb511a87f27dc1396b5351/cattrs-24.1.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/38/fc/bce832fd4fd99766c04d1ee0eead6b0ec6486fb100ae5e74c1d91292b982/certifi-2025.1.31-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b2/d5/da47df7004cb17e4955df6a43d14b3b4ae77737dff8bf7f8f333196717bf/cffi-1.17.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl @@ -1475,7 +1513,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/7e/e8/64c37fadfc2816a7701fa8a6ed8d87327c7d54eacfbfb6edab14a2f2be75/cloudpickle-3.1.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e6/75/49e5bfe642f71f272236b5b2d2691cf915a7283cc0ceda56357b61daa538/comm-0.2.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/ba/99/6794142b90b853a9155316c8f470d2e4821fe6f086b03e372aca848227dd/contourpy-1.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/dc/03/0334a79b26ecf59958f2fe9dd1f5ab3e2f88db876f5071933de39af09647/coverage-7.6.10-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/c4/47/2ba744af8d2f0caa1f17e7746147e34dfc5f811fb65fc153153722d58835/coverage-7.6.12-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/79/13/13576941bf7cf95026abae43d8427c812c0054408212bf8ed490eda846b0/crc32c-2.7.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/91/a0/016d956a3fec193e3a5b466ca912944669c18dccc736b64a9e28ccdcc5f7/dask-2025.1.0-py3-none-any.whl @@ -1488,8 +1526,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/43/09/2aea36ff60d16dd8879bdb2f5b3ee0ba8d08cbbdcdfe870e695ce3784385/execnet-2.1.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7b/8f/c4d9bafc34ad7ad5d8dc16dd1347ee0e507a52c3adb6bfa8887e1c6a26ba/executing-2.2.0-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/90/2b/0817a2b257fe88725c25589d89aec060581aabf668707a8d03b2e9e0cb2a/fastjsonschema-2.21.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/c3/60/03e09c5d38b4ab4c809eef03fd1f99e4744dfd3740a02225dc33217b09d7/flopy-3.9.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/e8/07/4b8a5c8a746cc8c8103c6462d057d8806bd925347ac3905055686dd40e94/fonttools-4.55.8-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/d4/0a/7f6467b7cd461966abe4e3f4a6ddb72609d5785e973a0ec545cf3c60a440/flopy-3.9.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/95/70/2a781bedc1c45a0c61d29c56425609b22ed7f971da5d7e5df2679488741b/fonttools-4.56.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/cf/58/8acf1b3e91c58313ce5cb67df61001fc9dcd21be4fadb76c1a2d540e09ed/fqdn-1.5.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e2/94/758680531a00d06e471ef649e4ec2ed6bf185356a7f9fbfbb7368a40bd49/fsspec-2025.2.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a0/61/5c78b91c3143ed5c14207f463aecfc8f9dbb5092fb2869baf37c273b2705/gitdb-4.0.12-py3-none-any.whl @@ -1524,7 +1562,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/b1/dd/ead9d8ea85bf202d90cc513b533f9c363121c7792674f78e0d8a854b63b4/jupyterlab_pygments-0.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/54/09/2032e7d15c544a0e3cd831c51d77a8ca57f7555b2e1b2922142eddb02a84/jupyterlab_server-2.27.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a9/93/858e87edc634d628e5d752ba944c2833133a28fa87bb093e6832ced36a3e/jupyterlab_widgets-3.0.13-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/f4/02/27191f18564d4f2c0e543643aa94b54567de58f359cd6a3bed33adb723ac/jupytext-1.16.6-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e1/4c/3d7cfac5b8351f649ce41a1007a769baacae8d5d29e481a93d799a209c3f/jupytext-1.16.7-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/bc/b3/9458adb9472e61a998c8c4d95cfdfec91c73c53a375b30b1428310f923e4/kiwisolver-1.4.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/2d/00/d90b10b962b4277f5e64a78b6609968859ff86889f5b898c1a778c06ec00/lark-1.2.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/db/bc/83e112abc66cd466c6b83f99118035867cecd41802f8d044638aa78a106e/locket-1.0.0-py2.py3-none-any.whl @@ -1536,10 +1574,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/a7/f7/7782a043553ee469c1ff49cfa1cdace2d6bf99a1f333cf38676b3ddf30da/mdit_py_plugins-0.4.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c6/02/c66bdfdadbb021adb642ca4e8a5ed32ada0b4a3e4b39c5d076d19543452f/mistune-3.1.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/f5/56/d75ff7cfec6208196a059341d8f21438a90fbfac4cc8e52fe1318d61cf84/modflow_devtools-1.6.0-py3-none-any.whl + - pypi: git+https://github.com/modflow-usgs/modflow-devtools#198b78b78135153ee5b4e92c2d2b61e7a02acb68 - pypi: https://files.pythonhosted.org/packages/f1/54/65af8de681fa8255402c80eda2a501ba467921d5a7a028c9c22a2c2eedb5/msgpack-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/b3/d0/92ae4cde706923a2d3f2d6c39629134063ff64b9dedca9c1388363da072d/mypy-1.15.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/2a/e2/5d3f6ada4297caebe1a2add3b126fe800c96f56dbe5d1988a2cbe0b267aa/mypy_extensions-1.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/34/6d/e7fa07f03a4a7b221d94b4d586edb754a9b0dc3c9e2c93353e9fa4e0d117/nbclient-0.10.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/cc/9a/cd673b2f773a12c992f41309ef81b99da1690426bd2f96957a7ade0d3ed7/nbconvert-7.16.6-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a9/82/0340caa499416c78e5d8f5f05947ae4bc3cba53c9f038ab6e9ed964e22f1/nbformat-5.10.4-py3-none-any.whl @@ -1548,7 +1584,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/b9/54/dd730b32ea14ea797530a4479b2ed46a6fb250f682a9cfb997e968bf0261/networkx-3.4.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/22/9b/76e50ee18f183ea5fe1784a9eeaa50f2c71802e4740d6e959592b0993298/notebook-7.3.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/f9/33/bd5b9137445ea4b680023eb0469b2bb969d61303dedb2aac6560ff3d14a1/notebook_shim-0.2.4-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/fa/6b/bd1ad4c869cc3746f63445329a9ce8d12097e3772be42777ac965c562223/numcodecs-0.15.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/28/7d/7527d9180bc76011d6163c848c9cf02cd28a623c2c66cf543e1e86de7c5e/numcodecs-0.15.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/5b/73/65d2f0b698df1731e851e3295eb29a5ab8aa06f763f7e4188647a809578d/numpy-2.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/2c/ab/fc8290c6a4c722e5514d80f62b2dc4c4df1a68a41d1364e625c35990fcf3/overrides-7.7.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/88/ef/eb23f262cca3c0c4eb7ab1933c3b1f03d021f2c48f54763065b6f0e321be/packaging-24.2-py3-none-any.whl @@ -1566,11 +1602,13 @@ environments: - pypi: https://files.pythonhosted.org/packages/9c/39/0f88a830a1c8a3aba27fededc642da37613c57cbff143412e3536f89784f/psutil-6.1.1-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/22/a6/858897256d0deac81a172289110f31629fc4cee19b6f01283303e18c8db3/ptyprocess-0.7.0-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/8e/37/efad0257dc6e593a18957422533ff0f87ede7c9c6ea010a2177d738fb82f/pure_eval-0.2.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e0/a9/023730ba63db1e494a271cb018dcd361bd2c917ba7004c3e49d5daf795a2/py_cpuinfo-9.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/3b/5e/6bc81aa7fc9affc7d1c03b912fbcc984ca56c2a18513684da267715dab7b/pyarrow-19.0.0-cp312-cp312-manylinux_2_28_x86_64.whl - pypi: https://files.pythonhosted.org/packages/13/a3/a812df4e2dd5696d1f351d58b8fe16a405b234ad2886a0dab9183fb78109/pycparser-2.22-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/8a/0b/9fcc47d19c48b59121088dd6da2488a49d5f72dacf8262e2790a1d2c7d15/pygments-2.19.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/1c/a7/c8a2d361bf89c0d9577c934ebb7421b25dc84bf3a8e3ac0a40aed9acc547/pyparsing-3.2.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/11/92/76a1c94d3afee238333bc0a42b82935dd8f9cf8ce9e336ff87ee14d9e1cf/pytest-8.3.4-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/9e/d6/b41653199ea09d5969d4e385df9bbfd9a100f28ca7e824ce7c0a016e3053/pytest_benchmark-5.1.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d0/da/9da67c67b3d0963160e3d2cbc7c38b6fae342670cc8e6d5936644b2cf944/pytest_dotenv-0.5.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/6d/82/1d96bf03ee4c0fdc3c0cbe61470070e659ca78dc0086fb88b66c185e2449/pytest_xdist-3.6.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl @@ -1597,6 +1635,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/6a/9e/2064975477fdc887e47ad42157e214526dcad8f317a948dee17e1659a62f/terminado-0.18.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e6/34/ebdc18bae6aa14fbee1a08b63c015c72b64868ff7dae68808ab500c492e2/tinycss2-1.4.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/44/6f/7120676b6d73228c96e17f1f794d8ab046fc910d781c8d151120c3f1569e/toml-0.10.2-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/5c/51/51c3f2884d7bab89af25f678447ea7d297b53b5a3b5730a7cb2ef6069f07/tomli-2.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/c7/18/c86eb8e0202e32dd3df50d43d7ff9854f8e0603945ff398974c1d91ac1ef/tomli_w-1.2.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/03/98/eb27cc78ad3af8e302c9d8ff4977f5026676e130d28dd7578132a457170c/toolz-1.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/22/55/b78a464de78051a30599ceb6983b01d8f732e6f69bf37b4ed07f642ac0fc/tornado-6.4.2-cp38-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/00/c0/8f5d070730d7836adc9c9b6408dec68c6ced86b304a9b26a14df072a6e8c/traitlets-5.14.3-py3-none-any.whl @@ -1620,12 +1660,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-hfdf4475_7.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2025.1.31-h8857fd0_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libexpat-2.6.4-h240833e_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.6-h281671d_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/liblzma-5.6.4-hd471939_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.48.0-hdb6dae5_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.1-hd23fc13_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.5-h0622a9a_3.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.4.0-hc426f3f_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.4.1-hc426f3f_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.12.8-h9ccd52b_1_cpython.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h9e318b2_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-h1abcd95_1.conda @@ -1639,9 +1679,11 @@ environments: - pypi: https://files.pythonhosted.org/packages/fa/9f/3c3503693386c4b0f245eaf5ca6198e3b28879ca0a40bde6b0e319793453/async_lru-2.0.4-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/fc/30/d4986a882011f9df997a55e6becd864812ccfcd821d64aac8570ee39f719/attrs-25.1.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b7/b8/3fe70c75fe32afc4bb507f75563d39bc5642255d1d94f1f23604725780bf/babel-2.17.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/64/69/f6db6e4cb2fe2f887dead40b76caa91af4844cb647dd2c7223bb010aa416/beartype-0.19.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/f9/49/6abb616eb3cbab6a7cca303dc02fdf3836de2e0b834bf966a7f5271a34d8/beautifulsoup4-4.13.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/fc/55/96142937f66150805c25c4d0f31ee4132fd33497753400734f9dfdcbdc66/bleach-6.2.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c5/15/be88ca93d191f07df76cce217b3b44d5ed3038fa58dd33b4fcb12ea8fe5e/bokeh-3.6.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/45/7f/0e961cf3908bc4c1c3e027de2794f867c6c89fb4916fc7dba295a0e80a2d/boltons-25.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c8/d5/867e75361fc45f6de75fe277dd085627a9db5ebb511a87f27dc1396b5351/cattrs-24.1.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/38/fc/bce832fd4fd99766c04d1ee0eead6b0ec6486fb100ae5e74c1d91292b982/certifi-2025.1.31-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/5a/84/e94227139ee5fb4d600a7a4927f322e1d4aea6fdc50bd3fca8493caba23f/cffi-1.17.1-cp312-cp312-macosx_10_9_x86_64.whl @@ -1651,7 +1693,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/7e/e8/64c37fadfc2816a7701fa8a6ed8d87327c7d54eacfbfb6edab14a2f2be75/cloudpickle-3.1.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e6/75/49e5bfe642f71f272236b5b2d2691cf915a7283cc0ceda56357b61daa538/comm-0.2.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/37/6b/175f60227d3e7f5f1549fcb374592be311293132207e451c3d7c654c25fb/contourpy-1.3.1-cp312-cp312-macosx_10_13_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/86/77/19d09ea06f92fdf0487499283b1b7af06bc422ea94534c8fe3a4cd023641/coverage-7.6.10-cp312-cp312-macosx_10_13_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/e2/7f/4af2ed1d06ce6bee7eafc03b2ef748b14132b0bdae04388e451e4b2c529b/coverage-7.6.12-cp312-cp312-macosx_10_13_x86_64.whl - pypi: https://files.pythonhosted.org/packages/9c/3e/e3656bfa76e50ef87b7136fef2dbf3c46e225629432fc9184fdd7fd187ff/crc32c-2.7.1-cp312-cp312-macosx_10_13_x86_64.whl - pypi: https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/91/a0/016d956a3fec193e3a5b466ca912944669c18dccc736b64a9e28ccdcc5f7/dask-2025.1.0-py3-none-any.whl @@ -1664,8 +1706,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/43/09/2aea36ff60d16dd8879bdb2f5b3ee0ba8d08cbbdcdfe870e695ce3784385/execnet-2.1.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7b/8f/c4d9bafc34ad7ad5d8dc16dd1347ee0e507a52c3adb6bfa8887e1c6a26ba/executing-2.2.0-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/90/2b/0817a2b257fe88725c25589d89aec060581aabf668707a8d03b2e9e0cb2a/fastjsonschema-2.21.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/c3/60/03e09c5d38b4ab4c809eef03fd1f99e4744dfd3740a02225dc33217b09d7/flopy-3.9.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/1b/3d/7a906f58f80c1ed37bbdf7b3f9b6792906156cb9143b067bf54c38405134/fonttools-4.55.8-cp312-cp312-macosx_10_13_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/d4/0a/7f6467b7cd461966abe4e3f4a6ddb72609d5785e973a0ec545cf3c60a440/flopy-3.9.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/15/52/d9f716b072c5061a0b915dd4c387f74bef44c68c069e2195c753905bd9b7/fonttools-4.56.0-cp312-cp312-macosx_10_13_x86_64.whl - pypi: https://files.pythonhosted.org/packages/cf/58/8acf1b3e91c58313ce5cb67df61001fc9dcd21be4fadb76c1a2d540e09ed/fqdn-1.5.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e2/94/758680531a00d06e471ef649e4ec2ed6bf185356a7f9fbfbb7368a40bd49/fsspec-2025.2.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a0/61/5c78b91c3143ed5c14207f463aecfc8f9dbb5092fb2869baf37c273b2705/gitdb-4.0.12-py3-none-any.whl @@ -1700,7 +1742,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/b1/dd/ead9d8ea85bf202d90cc513b533f9c363121c7792674f78e0d8a854b63b4/jupyterlab_pygments-0.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/54/09/2032e7d15c544a0e3cd831c51d77a8ca57f7555b2e1b2922142eddb02a84/jupyterlab_server-2.27.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a9/93/858e87edc634d628e5d752ba944c2833133a28fa87bb093e6832ced36a3e/jupyterlab_widgets-3.0.13-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/f4/02/27191f18564d4f2c0e543643aa94b54567de58f359cd6a3bed33adb723ac/jupytext-1.16.6-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e1/4c/3d7cfac5b8351f649ce41a1007a769baacae8d5d29e481a93d799a209c3f/jupytext-1.16.7-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c5/0b/8db6d2e2452d60d5ebc4ce4b204feeb16176a851fd42462f66ade6808084/kiwisolver-1.4.8-cp312-cp312-macosx_10_13_x86_64.whl - pypi: https://files.pythonhosted.org/packages/2d/00/d90b10b962b4277f5e64a78b6609968859ff86889f5b898c1a778c06ec00/lark-1.2.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/db/bc/83e112abc66cd466c6b83f99118035867cecd41802f8d044638aa78a106e/locket-1.0.0-py2.py3-none-any.whl @@ -1712,10 +1754,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/a7/f7/7782a043553ee469c1ff49cfa1cdace2d6bf99a1f333cf38676b3ddf30da/mdit_py_plugins-0.4.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c6/02/c66bdfdadbb021adb642ca4e8a5ed32ada0b4a3e4b39c5d076d19543452f/mistune-3.1.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/f5/56/d75ff7cfec6208196a059341d8f21438a90fbfac4cc8e52fe1318d61cf84/modflow_devtools-1.6.0-py3-none-any.whl + - pypi: git+https://github.com/modflow-usgs/modflow-devtools#198b78b78135153ee5b4e92c2d2b61e7a02acb68 - pypi: https://files.pythonhosted.org/packages/70/da/5312b067f6773429cec2f8f08b021c06af416bba340c912c2ec778539ed6/msgpack-1.1.0-cp312-cp312-macosx_10_9_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/98/3a/03c74331c5eb8bd025734e04c9840532226775c47a2c39b56a0c8d4f128d/mypy-1.15.0-cp312-cp312-macosx_10_13_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/2a/e2/5d3f6ada4297caebe1a2add3b126fe800c96f56dbe5d1988a2cbe0b267aa/mypy_extensions-1.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/34/6d/e7fa07f03a4a7b221d94b4d586edb754a9b0dc3c9e2c93353e9fa4e0d117/nbclient-0.10.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/cc/9a/cd673b2f773a12c992f41309ef81b99da1690426bd2f96957a7ade0d3ed7/nbconvert-7.16.6-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a9/82/0340caa499416c78e5d8f5f05947ae4bc3cba53c9f038ab6e9ed964e22f1/nbformat-5.10.4-py3-none-any.whl @@ -1724,7 +1764,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/b9/54/dd730b32ea14ea797530a4479b2ed46a6fb250f682a9cfb997e968bf0261/networkx-3.4.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/22/9b/76e50ee18f183ea5fe1784a9eeaa50f2c71802e4740d6e959592b0993298/notebook-7.3.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/f9/33/bd5b9137445ea4b680023eb0469b2bb969d61303dedb2aac6560ff3d14a1/notebook_shim-0.2.4-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/0f/2f/d393bb0781f3dee4c7d6381d38ce755f1572e8de844354ebf80b9cf7dd2b/numcodecs-0.15.0-cp312-cp312-macosx_10_13_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/e7/7e/f12fc32d3beedc6a8f1ec69ea0ba72e93cb99c0350feed2cff5d04679bc3/numcodecs-0.15.1-cp312-cp312-macosx_10_13_x86_64.whl - pypi: https://files.pythonhosted.org/packages/0c/e6/847d15770ab7a01e807bdfcd4ead5bdae57c0092b7dc83878171b6af97bb/numpy-2.2.2-cp312-cp312-macosx_10_13_x86_64.whl - pypi: https://files.pythonhosted.org/packages/2c/ab/fc8290c6a4c722e5514d80f62b2dc4c4df1a68a41d1364e625c35990fcf3/overrides-7.7.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/88/ef/eb23f262cca3c0c4eb7ab1933c3b1f03d021f2c48f54763065b6f0e321be/packaging-24.2-py3-none-any.whl @@ -1742,11 +1782,13 @@ environments: - pypi: https://files.pythonhosted.org/packages/61/99/ca79d302be46f7bdd8321089762dd4476ee725fce16fc2b2e1dbba8cac17/psutil-6.1.1-cp36-abi3-macosx_10_9_x86_64.whl - pypi: https://files.pythonhosted.org/packages/22/a6/858897256d0deac81a172289110f31629fc4cee19b6f01283303e18c8db3/ptyprocess-0.7.0-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/8e/37/efad0257dc6e593a18957422533ff0f87ede7c9c6ea010a2177d738fb82f/pure_eval-0.2.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e0/a9/023730ba63db1e494a271cb018dcd361bd2c917ba7004c3e49d5daf795a2/py_cpuinfo-9.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/80/c2/08bbee9a8610a47c9a1466845f405baf53a639ddd947c5133d8ba13544b6/pyarrow-19.0.0-cp312-cp312-macosx_12_0_x86_64.whl - pypi: https://files.pythonhosted.org/packages/13/a3/a812df4e2dd5696d1f351d58b8fe16a405b234ad2886a0dab9183fb78109/pycparser-2.22-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/8a/0b/9fcc47d19c48b59121088dd6da2488a49d5f72dacf8262e2790a1d2c7d15/pygments-2.19.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/1c/a7/c8a2d361bf89c0d9577c934ebb7421b25dc84bf3a8e3ac0a40aed9acc547/pyparsing-3.2.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/11/92/76a1c94d3afee238333bc0a42b82935dd8f9cf8ce9e336ff87ee14d9e1cf/pytest-8.3.4-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/9e/d6/b41653199ea09d5969d4e385df9bbfd9a100f28ca7e824ce7c0a016e3053/pytest_benchmark-5.1.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d0/da/9da67c67b3d0963160e3d2cbc7c38b6fae342670cc8e6d5936644b2cf944/pytest_dotenv-0.5.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/6d/82/1d96bf03ee4c0fdc3c0cbe61470070e659ca78dc0086fb88b66c185e2449/pytest_xdist-3.6.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl @@ -1773,6 +1815,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/6a/9e/2064975477fdc887e47ad42157e214526dcad8f317a948dee17e1659a62f/terminado-0.18.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e6/34/ebdc18bae6aa14fbee1a08b63c015c72b64868ff7dae68808ab500c492e2/tinycss2-1.4.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/44/6f/7120676b6d73228c96e17f1f794d8ab046fc910d781c8d151120c3f1569e/toml-0.10.2-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/52/e1/f8af4c2fcde17500422858155aeb0d7e93477a0d59a98e56cbfe75070fd0/tomli-2.2.1-cp312-cp312-macosx_10_13_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/c7/18/c86eb8e0202e32dd3df50d43d7ff9854f8e0603945ff398974c1d91ac1ef/tomli_w-1.2.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/03/98/eb27cc78ad3af8e302c9d8ff4977f5026676e130d28dd7578132a457170c/toolz-1.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/96/44/87543a3b99016d0bf54fdaab30d24bf0af2e848f1d13d34a3a5380aabe16/tornado-6.4.2-cp38-abi3-macosx_10_9_x86_64.whl - pypi: https://files.pythonhosted.org/packages/00/c0/8f5d070730d7836adc9c9b6408dec68c6ced86b304a9b26a14df072a6e8c/traitlets-5.14.3-py3-none-any.whl @@ -1796,18 +1840,17 @@ environments: - conda: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda - conda: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2025.1.31-h56e8100_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.6.4-he0c23c2_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.2-h8ffe710_5.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.6-h537db12_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/liblzma-5.6.4-h2466b09_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.48.0-h67fdade_1.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/openssl-3.4.0-ha4e3fda_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/openssl-3.4.1-ha4e3fda_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/python-3.12.8-h3f84c4b_1_cpython.conda - conda: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h5226925_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025a-h78e105d_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_1.conda - conda: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-h5fd82a7_24.conda - conda: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.42.34433-h6356254_24.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.42.34433-hfef2bbc_24.conda - pypi: https://files.pythonhosted.org/packages/46/eb/e7f063ad1fec6b3178a3cd82d1a3c4de82cccf283fc42746168188e1cdd5/anyio-4.8.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a4/6a/e8a041599e78b6b3752da48000b14c8d1e8a04ded09c88c714ba047f34f5/argon2_cffi-23.1.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/37/2c/e34e47c7dee97ba6f01a6203e0383e15b60fb85d78ac9a15cd066f6fe28b/argon2_cffi_bindings-21.2.0-cp36-abi3-win_amd64.whl @@ -1816,9 +1859,11 @@ environments: - pypi: https://files.pythonhosted.org/packages/fa/9f/3c3503693386c4b0f245eaf5ca6198e3b28879ca0a40bde6b0e319793453/async_lru-2.0.4-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/fc/30/d4986a882011f9df997a55e6becd864812ccfcd821d64aac8570ee39f719/attrs-25.1.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b7/b8/3fe70c75fe32afc4bb507f75563d39bc5642255d1d94f1f23604725780bf/babel-2.17.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/64/69/f6db6e4cb2fe2f887dead40b76caa91af4844cb647dd2c7223bb010aa416/beartype-0.19.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/f9/49/6abb616eb3cbab6a7cca303dc02fdf3836de2e0b834bf966a7f5271a34d8/beautifulsoup4-4.13.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/fc/55/96142937f66150805c25c4d0f31ee4132fd33497753400734f9dfdcbdc66/bleach-6.2.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c5/15/be88ca93d191f07df76cce217b3b44d5ed3038fa58dd33b4fcb12ea8fe5e/bokeh-3.6.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/45/7f/0e961cf3908bc4c1c3e027de2794f867c6c89fb4916fc7dba295a0e80a2d/boltons-25.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c8/d5/867e75361fc45f6de75fe277dd085627a9db5ebb511a87f27dc1396b5351/cattrs-24.1.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/38/fc/bce832fd4fd99766c04d1ee0eead6b0ec6486fb100ae5e74c1d91292b982/certifi-2025.1.31-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/50/b9/db34c4755a7bd1cb2d1603ac3863f22bcecbd1ba29e5ee841a4bc510b294/cffi-1.17.1-cp312-cp312-win_amd64.whl @@ -1829,7 +1874,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e6/75/49e5bfe642f71f272236b5b2d2691cf915a7283cc0ceda56357b61daa538/comm-0.2.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a1/35/c2de8823211d07e8a79ab018ef03960716c5dff6f4d5bff5af87fd682992/contourpy-1.3.1-cp312-cp312-win_amd64.whl - - pypi: https://files.pythonhosted.org/packages/c3/54/de0893186a221478f5880283119fc40483bc460b27c4c71d1b8bba3474b9/coverage-7.6.10-cp312-cp312-win_amd64.whl + - pypi: https://files.pythonhosted.org/packages/53/40/53c7ffe3c0c3fff4d708bc99e65f3d78c129110d6629736faf2dbd60ad57/coverage-7.6.12-cp312-cp312-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/ae/c4/7929dcd5d9b57db0cce4fe6f6c191049380fc6d8c9b9f5581967f4ec018e/crc32c-2.7.1-cp312-cp312-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/91/a0/016d956a3fec193e3a5b466ca912944669c18dccc736b64a9e28ccdcc5f7/dask-2025.1.0-py3-none-any.whl @@ -1842,8 +1887,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/43/09/2aea36ff60d16dd8879bdb2f5b3ee0ba8d08cbbdcdfe870e695ce3784385/execnet-2.1.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7b/8f/c4d9bafc34ad7ad5d8dc16dd1347ee0e507a52c3adb6bfa8887e1c6a26ba/executing-2.2.0-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/90/2b/0817a2b257fe88725c25589d89aec060581aabf668707a8d03b2e9e0cb2a/fastjsonschema-2.21.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/c3/60/03e09c5d38b4ab4c809eef03fd1f99e4744dfd3740a02225dc33217b09d7/flopy-3.9.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/61/cf/08c4954c944799458690eb0e498209fb6a2e79e20a869189f56d18e909b6/fonttools-4.55.8-cp312-cp312-win_amd64.whl + - pypi: https://files.pythonhosted.org/packages/d4/0a/7f6467b7cd461966abe4e3f4a6ddb72609d5785e973a0ec545cf3c60a440/flopy-3.9.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/6f/e3/5a181a85777f7809076e51f7422e0dc77eb04676c40ec8bf6a49d390d1ff/fonttools-4.56.0-cp312-cp312-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/cf/58/8acf1b3e91c58313ce5cb67df61001fc9dcd21be4fadb76c1a2d540e09ed/fqdn-1.5.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e2/94/758680531a00d06e471ef649e4ec2ed6bf185356a7f9fbfbb7368a40bd49/fsspec-2025.2.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a0/61/5c78b91c3143ed5c14207f463aecfc8f9dbb5092fb2869baf37c273b2705/gitdb-4.0.12-py3-none-any.whl @@ -1878,7 +1923,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/b1/dd/ead9d8ea85bf202d90cc513b533f9c363121c7792674f78e0d8a854b63b4/jupyterlab_pygments-0.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/54/09/2032e7d15c544a0e3cd831c51d77a8ca57f7555b2e1b2922142eddb02a84/jupyterlab_server-2.27.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a9/93/858e87edc634d628e5d752ba944c2833133a28fa87bb093e6832ced36a3e/jupyterlab_widgets-3.0.13-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/f4/02/27191f18564d4f2c0e543643aa94b54567de58f359cd6a3bed33adb723ac/jupytext-1.16.6-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e1/4c/3d7cfac5b8351f649ce41a1007a769baacae8d5d29e481a93d799a209c3f/jupytext-1.16.7-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/bd/72/dfff0cc97f2a0776e1c9eb5bef1ddfd45f46246c6533b0191887a427bca5/kiwisolver-1.4.8-cp312-cp312-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/2d/00/d90b10b962b4277f5e64a78b6609968859ff86889f5b898c1a778c06ec00/lark-1.2.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/db/bc/83e112abc66cd466c6b83f99118035867cecd41802f8d044638aa78a106e/locket-1.0.0-py2.py3-none-any.whl @@ -1890,10 +1935,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/a7/f7/7782a043553ee469c1ff49cfa1cdace2d6bf99a1f333cf38676b3ddf30da/mdit_py_plugins-0.4.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c6/02/c66bdfdadbb021adb642ca4e8a5ed32ada0b4a3e4b39c5d076d19543452f/mistune-3.1.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/f5/56/d75ff7cfec6208196a059341d8f21438a90fbfac4cc8e52fe1318d61cf84/modflow_devtools-1.6.0-py3-none-any.whl + - pypi: git+https://github.com/modflow-usgs/modflow-devtools#198b78b78135153ee5b4e92c2d2b61e7a02acb68 - pypi: https://files.pythonhosted.org/packages/73/80/2708a4641f7d553a63bc934a3eb7214806b5b39d200133ca7f7afb0a53e8/msgpack-1.1.0-cp312-cp312-win_amd64.whl - - pypi: https://files.pythonhosted.org/packages/13/50/da5203fcf6c53044a0b699939f31075c45ae8a4cadf538a9069b165c1050/mypy-1.15.0-cp312-cp312-win_amd64.whl - - pypi: https://files.pythonhosted.org/packages/2a/e2/5d3f6ada4297caebe1a2add3b126fe800c96f56dbe5d1988a2cbe0b267aa/mypy_extensions-1.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/34/6d/e7fa07f03a4a7b221d94b4d586edb754a9b0dc3c9e2c93353e9fa4e0d117/nbclient-0.10.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/cc/9a/cd673b2f773a12c992f41309ef81b99da1690426bd2f96957a7ade0d3ed7/nbconvert-7.16.6-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a9/82/0340caa499416c78e5d8f5f05947ae4bc3cba53c9f038ab6e9ed964e22f1/nbformat-5.10.4-py3-none-any.whl @@ -1902,7 +1945,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/b9/54/dd730b32ea14ea797530a4479b2ed46a6fb250f682a9cfb997e968bf0261/networkx-3.4.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/22/9b/76e50ee18f183ea5fe1784a9eeaa50f2c71802e4740d6e959592b0993298/notebook-7.3.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/f9/33/bd5b9137445ea4b680023eb0469b2bb969d61303dedb2aac6560ff3d14a1/notebook_shim-0.2.4-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/54/2f/08bf2622dc972baeb2490b276a6ac9c0cbc8f0ebf988ce2c1b85f878851f/numcodecs-0.15.0-cp312-cp312-win_amd64.whl + - pypi: https://files.pythonhosted.org/packages/ab/bc/b6c3cde91c754860a3467a8c058dcf0b1a5ca14d82b1c5397c700cf8b1eb/numcodecs-0.15.1-cp312-cp312-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/fc/84/7f801a42a67b9772a883223a0a1e12069a14626c81a732bd70aac57aebc1/numpy-2.2.2-cp312-cp312-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/2c/ab/fc8290c6a4c722e5514d80f62b2dc4c4df1a68a41d1364e625c35990fcf3/overrides-7.7.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/88/ef/eb23f262cca3c0c4eb7ab1933c3b1f03d021f2c48f54763065b6f0e321be/packaging-24.2-py3-none-any.whl @@ -1918,11 +1961,13 @@ environments: - pypi: https://files.pythonhosted.org/packages/e4/ea/d836f008d33151c7a1f62caf3d8dd782e4d15f6a43897f64480c2b8de2ad/prompt_toolkit-3.0.50-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7b/d7/7831438e6c3ebbfa6e01a927127a6cb42ad3ab844247f3c5b96bea25d73d/psutil-6.1.1-cp37-abi3-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/8e/37/efad0257dc6e593a18957422533ff0f87ede7c9c6ea010a2177d738fb82f/pure_eval-0.2.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e0/a9/023730ba63db1e494a271cb018dcd361bd2c917ba7004c3e49d5daf795a2/py_cpuinfo-9.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/53/c3/2f56da818b6a4758cbd514957c67bd0f078ebffa5390ee2e2bf0f9e8defc/pyarrow-19.0.0-cp312-cp312-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/13/a3/a812df4e2dd5696d1f351d58b8fe16a405b234ad2886a0dab9183fb78109/pycparser-2.22-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/8a/0b/9fcc47d19c48b59121088dd6da2488a49d5f72dacf8262e2790a1d2c7d15/pygments-2.19.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/1c/a7/c8a2d361bf89c0d9577c934ebb7421b25dc84bf3a8e3ac0a40aed9acc547/pyparsing-3.2.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/11/92/76a1c94d3afee238333bc0a42b82935dd8f9cf8ce9e336ff87ee14d9e1cf/pytest-8.3.4-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/9e/d6/b41653199ea09d5969d4e385df9bbfd9a100f28ca7e824ce7c0a016e3053/pytest_benchmark-5.1.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d0/da/9da67c67b3d0963160e3d2cbc7c38b6fae342670cc8e6d5936644b2cf944/pytest_dotenv-0.5.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/6d/82/1d96bf03ee4c0fdc3c0cbe61470070e659ca78dc0086fb88b66c185e2449/pytest_xdist-3.6.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl @@ -1951,6 +1996,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/6a/9e/2064975477fdc887e47ad42157e214526dcad8f317a948dee17e1659a62f/terminado-0.18.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e6/34/ebdc18bae6aa14fbee1a08b63c015c72b64868ff7dae68808ab500c492e2/tinycss2-1.4.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/44/6f/7120676b6d73228c96e17f1f794d8ab046fc910d781c8d151120c3f1569e/toml-0.10.2-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/ef/60/9b9638f081c6f1261e2688bd487625cd1e660d0a85bd469e91d8db969734/tomli-2.2.1-cp312-cp312-win_amd64.whl + - pypi: https://files.pythonhosted.org/packages/c7/18/c86eb8e0202e32dd3df50d43d7ff9854f8e0603945ff398974c1d91ac1ef/tomli_w-1.2.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/03/98/eb27cc78ad3af8e302c9d8ff4977f5026676e130d28dd7578132a457170c/toolz-1.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/61/cc/58b1adeb1bb46228442081e746fcdbc4540905c87e8add7c277540934edb/tornado-6.4.2-cp38-abi3-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/00/c0/8f5d070730d7836adc9c9b6408dec68c6ced86b304a9b26a14df072a6e8c/traitlets-5.14.3-py3-none-any.whl @@ -1983,7 +2030,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2025.1.31-hbcca054_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.4-h5888daf_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.6-h2dba641_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-14.2.0-h77fa898_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.2.0-h77fa898_1.conda @@ -1993,7 +2040,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.4.0-h7b32b05_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.4.1-h7b32b05_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.13.1-ha99a958_105_cp313.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.13-5_cp313.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda @@ -2007,9 +2054,11 @@ environments: - pypi: https://files.pythonhosted.org/packages/fa/9f/3c3503693386c4b0f245eaf5ca6198e3b28879ca0a40bde6b0e319793453/async_lru-2.0.4-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/fc/30/d4986a882011f9df997a55e6becd864812ccfcd821d64aac8570ee39f719/attrs-25.1.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b7/b8/3fe70c75fe32afc4bb507f75563d39bc5642255d1d94f1f23604725780bf/babel-2.17.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/64/69/f6db6e4cb2fe2f887dead40b76caa91af4844cb647dd2c7223bb010aa416/beartype-0.19.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/f9/49/6abb616eb3cbab6a7cca303dc02fdf3836de2e0b834bf966a7f5271a34d8/beautifulsoup4-4.13.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/fc/55/96142937f66150805c25c4d0f31ee4132fd33497753400734f9dfdcbdc66/bleach-6.2.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c5/15/be88ca93d191f07df76cce217b3b44d5ed3038fa58dd33b4fcb12ea8fe5e/bokeh-3.6.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/45/7f/0e961cf3908bc4c1c3e027de2794f867c6c89fb4916fc7dba295a0e80a2d/boltons-25.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c8/d5/867e75361fc45f6de75fe277dd085627a9db5ebb511a87f27dc1396b5351/cattrs-24.1.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/38/fc/bce832fd4fd99766c04d1ee0eead6b0ec6486fb100ae5e74c1d91292b982/certifi-2025.1.31-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/26/9f/1aab65a6c0db35f43c4d1b4f580e8df53914310afc10ae0397d29d697af4/cffi-1.17.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl @@ -2019,7 +2068,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/7e/e8/64c37fadfc2816a7701fa8a6ed8d87327c7d54eacfbfb6edab14a2f2be75/cloudpickle-3.1.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e6/75/49e5bfe642f71f272236b5b2d2691cf915a7283cc0ceda56357b61daa538/comm-0.2.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/9a/e2/30ca086c692691129849198659bf0556d72a757fe2769eb9620a27169296/contourpy-1.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/9a/0b/7797d4193f5adb4b837207ed87fecf5fc38f7cc612b369a8e8e12d9fa114/coverage-7.6.10-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/0c/4b/373be2be7dd42f2bcd6964059fd8fa307d265a29d2b9bcf1d044bcc156ed/coverage-7.6.12-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/01/cf/32f019be5de9f6e180926a50ee5f08648e686c7d9a59f2c5d0806a77b1c7/crc32c-2.7.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/91/a0/016d956a3fec193e3a5b466ca912944669c18dccc736b64a9e28ccdcc5f7/dask-2025.1.0-py3-none-any.whl @@ -2032,8 +2081,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/43/09/2aea36ff60d16dd8879bdb2f5b3ee0ba8d08cbbdcdfe870e695ce3784385/execnet-2.1.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7b/8f/c4d9bafc34ad7ad5d8dc16dd1347ee0e507a52c3adb6bfa8887e1c6a26ba/executing-2.2.0-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/90/2b/0817a2b257fe88725c25589d89aec060581aabf668707a8d03b2e9e0cb2a/fastjsonschema-2.21.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/c3/60/03e09c5d38b4ab4c809eef03fd1f99e4744dfd3740a02225dc33217b09d7/flopy-3.9.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/b3/75/00670fa832e2986f9c6bfbd029f0a1e90a14333f0a6c02632284e9c1baa0/fonttools-4.55.8-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/d4/0a/7f6467b7cd461966abe4e3f4a6ddb72609d5785e973a0ec545cf3c60a440/flopy-3.9.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/be/6a/fd4018e0448c8a5e12138906411282c5eab51a598493f080a9f0960e658f/fonttools-4.56.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/cf/58/8acf1b3e91c58313ce5cb67df61001fc9dcd21be4fadb76c1a2d540e09ed/fqdn-1.5.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e2/94/758680531a00d06e471ef649e4ec2ed6bf185356a7f9fbfbb7368a40bd49/fsspec-2025.2.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a0/61/5c78b91c3143ed5c14207f463aecfc8f9dbb5092fb2869baf37c273b2705/gitdb-4.0.12-py3-none-any.whl @@ -2068,7 +2117,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/b1/dd/ead9d8ea85bf202d90cc513b533f9c363121c7792674f78e0d8a854b63b4/jupyterlab_pygments-0.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/54/09/2032e7d15c544a0e3cd831c51d77a8ca57f7555b2e1b2922142eddb02a84/jupyterlab_server-2.27.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a9/93/858e87edc634d628e5d752ba944c2833133a28fa87bb093e6832ced36a3e/jupyterlab_widgets-3.0.13-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/f4/02/27191f18564d4f2c0e543643aa94b54567de58f359cd6a3bed33adb723ac/jupytext-1.16.6-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e1/4c/3d7cfac5b8351f649ce41a1007a769baacae8d5d29e481a93d799a209c3f/jupytext-1.16.7-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/8f/e9/6a7d025d8da8c4931522922cd706105aa32b3291d1add8c5427cdcd66e63/kiwisolver-1.4.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/2d/00/d90b10b962b4277f5e64a78b6609968859ff86889f5b898c1a778c06ec00/lark-1.2.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/db/bc/83e112abc66cd466c6b83f99118035867cecd41802f8d044638aa78a106e/locket-1.0.0-py2.py3-none-any.whl @@ -2080,10 +2129,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/a7/f7/7782a043553ee469c1ff49cfa1cdace2d6bf99a1f333cf38676b3ddf30da/mdit_py_plugins-0.4.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c6/02/c66bdfdadbb021adb642ca4e8a5ed32ada0b4a3e4b39c5d076d19543452f/mistune-3.1.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/f5/56/d75ff7cfec6208196a059341d8f21438a90fbfac4cc8e52fe1318d61cf84/modflow_devtools-1.6.0-py3-none-any.whl + - pypi: git+https://github.com/modflow-usgs/modflow-devtools#198b78b78135153ee5b4e92c2d2b61e7a02acb68 - pypi: https://files.pythonhosted.org/packages/2d/7b/2c1d74ca6c94f70a1add74a8393a0138172207dc5de6fc6269483519d048/msgpack-1.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/d2/8b/801aa06445d2de3895f59e476f38f3f8d610ef5d6908245f07d002676cbf/mypy-1.15.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/2a/e2/5d3f6ada4297caebe1a2add3b126fe800c96f56dbe5d1988a2cbe0b267aa/mypy_extensions-1.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/34/6d/e7fa07f03a4a7b221d94b4d586edb754a9b0dc3c9e2c93353e9fa4e0d117/nbclient-0.10.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/cc/9a/cd673b2f773a12c992f41309ef81b99da1690426bd2f96957a7ade0d3ed7/nbconvert-7.16.6-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a9/82/0340caa499416c78e5d8f5f05947ae4bc3cba53c9f038ab6e9ed964e22f1/nbformat-5.10.4-py3-none-any.whl @@ -2092,7 +2139,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/b9/54/dd730b32ea14ea797530a4479b2ed46a6fb250f682a9cfb997e968bf0261/networkx-3.4.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/22/9b/76e50ee18f183ea5fe1784a9eeaa50f2c71802e4740d6e959592b0993298/notebook-7.3.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/f9/33/bd5b9137445ea4b680023eb0469b2bb969d61303dedb2aac6560ff3d14a1/notebook_shim-0.2.4-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/1a/68/c2d4eb52c2436b0f6ee0bf40e83a4d3581db17eab4f23dd20cd7594f61c4/numcodecs-0.15.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/fa/91/d96999b41e3146b6c0ce6bddc5ad85803cb4d743c95394562c2a4bb8cded/numcodecs-0.15.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/83/9c/96a9ab62274ffafb023f8ee08c88d3d31ee74ca58869f859db6845494fa6/numpy-2.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/2c/ab/fc8290c6a4c722e5514d80f62b2dc4c4df1a68a41d1364e625c35990fcf3/overrides-7.7.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/88/ef/eb23f262cca3c0c4eb7ab1933c3b1f03d021f2c48f54763065b6f0e321be/packaging-24.2-py3-none-any.whl @@ -2110,11 +2157,13 @@ environments: - pypi: https://files.pythonhosted.org/packages/9c/39/0f88a830a1c8a3aba27fededc642da37613c57cbff143412e3536f89784f/psutil-6.1.1-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/22/a6/858897256d0deac81a172289110f31629fc4cee19b6f01283303e18c8db3/ptyprocess-0.7.0-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/8e/37/efad0257dc6e593a18957422533ff0f87ede7c9c6ea010a2177d738fb82f/pure_eval-0.2.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e0/a9/023730ba63db1e494a271cb018dcd361bd2c917ba7004c3e49d5daf795a2/py_cpuinfo-9.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/ba/d6/5096deb7599bbd20bc2768058fe23bc725b88eb41bee58303293583a2935/pyarrow-19.0.0-cp313-cp313-manylinux_2_28_x86_64.whl - pypi: https://files.pythonhosted.org/packages/13/a3/a812df4e2dd5696d1f351d58b8fe16a405b234ad2886a0dab9183fb78109/pycparser-2.22-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/8a/0b/9fcc47d19c48b59121088dd6da2488a49d5f72dacf8262e2790a1d2c7d15/pygments-2.19.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/1c/a7/c8a2d361bf89c0d9577c934ebb7421b25dc84bf3a8e3ac0a40aed9acc547/pyparsing-3.2.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/11/92/76a1c94d3afee238333bc0a42b82935dd8f9cf8ce9e336ff87ee14d9e1cf/pytest-8.3.4-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/9e/d6/b41653199ea09d5969d4e385df9bbfd9a100f28ca7e824ce7c0a016e3053/pytest_benchmark-5.1.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d0/da/9da67c67b3d0963160e3d2cbc7c38b6fae342670cc8e6d5936644b2cf944/pytest_dotenv-0.5.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/6d/82/1d96bf03ee4c0fdc3c0cbe61470070e659ca78dc0086fb88b66c185e2449/pytest_xdist-3.6.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl @@ -2141,6 +2190,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/6a/9e/2064975477fdc887e47ad42157e214526dcad8f317a948dee17e1659a62f/terminado-0.18.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e6/34/ebdc18bae6aa14fbee1a08b63c015c72b64868ff7dae68808ab500c492e2/tinycss2-1.4.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/44/6f/7120676b6d73228c96e17f1f794d8ab046fc910d781c8d151120c3f1569e/toml-0.10.2-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/d9/e5/82e80ff3b751373f7cead2815bcbe2d51c895b3c990686741a8e56ec42ab/tomli-2.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/c7/18/c86eb8e0202e32dd3df50d43d7ff9854f8e0603945ff398974c1d91ac1ef/tomli_w-1.2.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/03/98/eb27cc78ad3af8e302c9d8ff4977f5026676e130d28dd7578132a457170c/toolz-1.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/22/55/b78a464de78051a30599ceb6983b01d8f732e6f69bf37b4ed07f642ac0fc/tornado-6.4.2-cp38-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/00/c0/8f5d070730d7836adc9c9b6408dec68c6ced86b304a9b26a14df072a6e8c/traitlets-5.14.3-py3-none-any.whl @@ -2164,13 +2215,13 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-hfdf4475_7.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2025.1.31-h8857fd0_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libexpat-2.6.4-h240833e_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.6-h281671d_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/liblzma-5.6.4-hd471939_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libmpdec-4.0.0-hfdf4475_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.48.0-hdb6dae5_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.1-hd23fc13_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.5-h0622a9a_3.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.4.0-hc426f3f_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.4.1-hc426f3f_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.13.1-h2334245_105_cp313.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.13-5_cp313.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h9e318b2_1.conda @@ -2185,9 +2236,11 @@ environments: - pypi: https://files.pythonhosted.org/packages/fa/9f/3c3503693386c4b0f245eaf5ca6198e3b28879ca0a40bde6b0e319793453/async_lru-2.0.4-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/fc/30/d4986a882011f9df997a55e6becd864812ccfcd821d64aac8570ee39f719/attrs-25.1.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b7/b8/3fe70c75fe32afc4bb507f75563d39bc5642255d1d94f1f23604725780bf/babel-2.17.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/64/69/f6db6e4cb2fe2f887dead40b76caa91af4844cb647dd2c7223bb010aa416/beartype-0.19.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/f9/49/6abb616eb3cbab6a7cca303dc02fdf3836de2e0b834bf966a7f5271a34d8/beautifulsoup4-4.13.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/fc/55/96142937f66150805c25c4d0f31ee4132fd33497753400734f9dfdcbdc66/bleach-6.2.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c5/15/be88ca93d191f07df76cce217b3b44d5ed3038fa58dd33b4fcb12ea8fe5e/bokeh-3.6.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/45/7f/0e961cf3908bc4c1c3e027de2794f867c6c89fb4916fc7dba295a0e80a2d/boltons-25.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c8/d5/867e75361fc45f6de75fe277dd085627a9db5ebb511a87f27dc1396b5351/cattrs-24.1.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/38/fc/bce832fd4fd99766c04d1ee0eead6b0ec6486fb100ae5e74c1d91292b982/certifi-2025.1.31-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/8d/f8/dd6c246b148639254dad4d6803eb6a54e8c85c6e11ec9df2cffa87571dbe/cffi-1.17.1-cp313-cp313-macosx_10_13_x86_64.whl @@ -2197,7 +2250,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/7e/e8/64c37fadfc2816a7701fa8a6ed8d87327c7d54eacfbfb6edab14a2f2be75/cloudpickle-3.1.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e6/75/49e5bfe642f71f272236b5b2d2691cf915a7283cc0ceda56357b61daa538/comm-0.2.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/9a/e7/de62050dce687c5e96f946a93546910bc67e483fe05324439e329ff36105/contourpy-1.3.1-cp313-cp313-macosx_10_13_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/25/6d/31883d78865529257bf847df5789e2ae80e99de8a460c3453dbfbe0db069/coverage-7.6.10-cp313-cp313-macosx_10_13_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/76/89/1adf3e634753c0de3dad2f02aac1e73dba58bc5a3a914ac94a25b2ef418f/coverage-7.6.12-cp313-cp313-macosx_10_13_x86_64.whl - pypi: https://files.pythonhosted.org/packages/4f/56/0dd652d4e950e6348bbf16b964b3325e4ad8220470774128fc0b0dd069cb/crc32c-2.7.1-cp313-cp313-macosx_10_13_x86_64.whl - pypi: https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/91/a0/016d956a3fec193e3a5b466ca912944669c18dccc736b64a9e28ccdcc5f7/dask-2025.1.0-py3-none-any.whl @@ -2210,8 +2263,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/43/09/2aea36ff60d16dd8879bdb2f5b3ee0ba8d08cbbdcdfe870e695ce3784385/execnet-2.1.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7b/8f/c4d9bafc34ad7ad5d8dc16dd1347ee0e507a52c3adb6bfa8887e1c6a26ba/executing-2.2.0-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/90/2b/0817a2b257fe88725c25589d89aec060581aabf668707a8d03b2e9e0cb2a/fastjsonschema-2.21.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/c3/60/03e09c5d38b4ab4c809eef03fd1f99e4744dfd3740a02225dc33217b09d7/flopy-3.9.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/58/e4/a839f867e636419d7e5ca426a470df575bf7b20cc780862d6f64caee405c/fonttools-4.55.8-cp313-cp313-macosx_10_13_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/d4/0a/7f6467b7cd461966abe4e3f4a6ddb72609d5785e973a0ec545cf3c60a440/flopy-3.9.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/59/db/d2c7c9b6dd5cbd46f183e650a47403ffb88fca17484eb7c4b1cd88f9e513/fonttools-4.56.0-cp313-cp313-macosx_10_13_x86_64.whl - pypi: https://files.pythonhosted.org/packages/cf/58/8acf1b3e91c58313ce5cb67df61001fc9dcd21be4fadb76c1a2d540e09ed/fqdn-1.5.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e2/94/758680531a00d06e471ef649e4ec2ed6bf185356a7f9fbfbb7368a40bd49/fsspec-2025.2.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a0/61/5c78b91c3143ed5c14207f463aecfc8f9dbb5092fb2869baf37c273b2705/gitdb-4.0.12-py3-none-any.whl @@ -2246,7 +2299,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/b1/dd/ead9d8ea85bf202d90cc513b533f9c363121c7792674f78e0d8a854b63b4/jupyterlab_pygments-0.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/54/09/2032e7d15c544a0e3cd831c51d77a8ca57f7555b2e1b2922142eddb02a84/jupyterlab_server-2.27.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a9/93/858e87edc634d628e5d752ba944c2833133a28fa87bb093e6832ced36a3e/jupyterlab_widgets-3.0.13-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/f4/02/27191f18564d4f2c0e543643aa94b54567de58f359cd6a3bed33adb723ac/jupytext-1.16.6-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e1/4c/3d7cfac5b8351f649ce41a1007a769baacae8d5d29e481a93d799a209c3f/jupytext-1.16.7-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/8d/2d/f13d06998b546a2ad4f48607a146e045bbe48030774de29f90bdc573df15/kiwisolver-1.4.8-cp313-cp313-macosx_10_13_x86_64.whl - pypi: https://files.pythonhosted.org/packages/2d/00/d90b10b962b4277f5e64a78b6609968859ff86889f5b898c1a778c06ec00/lark-1.2.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/db/bc/83e112abc66cd466c6b83f99118035867cecd41802f8d044638aa78a106e/locket-1.0.0-py2.py3-none-any.whl @@ -2258,10 +2311,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/a7/f7/7782a043553ee469c1ff49cfa1cdace2d6bf99a1f333cf38676b3ddf30da/mdit_py_plugins-0.4.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c6/02/c66bdfdadbb021adb642ca4e8a5ed32ada0b4a3e4b39c5d076d19543452f/mistune-3.1.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/f5/56/d75ff7cfec6208196a059341d8f21438a90fbfac4cc8e52fe1318d61cf84/modflow_devtools-1.6.0-py3-none-any.whl + - pypi: git+https://github.com/modflow-usgs/modflow-devtools#198b78b78135153ee5b4e92c2d2b61e7a02acb68 - pypi: https://files.pythonhosted.org/packages/c8/ee/be57e9702400a6cb2606883d55b05784fada898dfc7fd12608ab1fdb054e/msgpack-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/6a/9b/fd2e05d6ffff24d912f150b87db9e364fa8282045c875654ce7e32fffa66/mypy-1.15.0-cp313-cp313-macosx_10_13_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/2a/e2/5d3f6ada4297caebe1a2add3b126fe800c96f56dbe5d1988a2cbe0b267aa/mypy_extensions-1.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/34/6d/e7fa07f03a4a7b221d94b4d586edb754a9b0dc3c9e2c93353e9fa4e0d117/nbclient-0.10.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/cc/9a/cd673b2f773a12c992f41309ef81b99da1690426bd2f96957a7ade0d3ed7/nbconvert-7.16.6-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a9/82/0340caa499416c78e5d8f5f05947ae4bc3cba53c9f038ab6e9ed964e22f1/nbformat-5.10.4-py3-none-any.whl @@ -2270,7 +2321,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/b9/54/dd730b32ea14ea797530a4479b2ed46a6fb250f682a9cfb997e968bf0261/networkx-3.4.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/22/9b/76e50ee18f183ea5fe1784a9eeaa50f2c71802e4740d6e959592b0993298/notebook-7.3.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/f9/33/bd5b9137445ea4b680023eb0469b2bb969d61303dedb2aac6560ff3d14a1/notebook_shim-0.2.4-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/e9/30/64867eb7853b25641476691ed1c34b3aadc8b0a14e03a001cb5bf20cbb2c/numcodecs-0.15.0-cp313-cp313-macosx_10_13_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/78/57/acbc54b3419e5be65015e47177c76c0a73e037fd3ae2cde5808169194d4d/numcodecs-0.15.1-cp313-cp313-macosx_10_13_x86_64.whl - pypi: https://files.pythonhosted.org/packages/e1/fe/df5624001f4f5c3e0b78e9017bfab7fdc18a8d3b3d3161da3d64924dd659/numpy-2.2.2-cp313-cp313-macosx_10_13_x86_64.whl - pypi: https://files.pythonhosted.org/packages/2c/ab/fc8290c6a4c722e5514d80f62b2dc4c4df1a68a41d1364e625c35990fcf3/overrides-7.7.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/88/ef/eb23f262cca3c0c4eb7ab1933c3b1f03d021f2c48f54763065b6f0e321be/packaging-24.2-py3-none-any.whl @@ -2288,11 +2339,13 @@ environments: - pypi: https://files.pythonhosted.org/packages/61/99/ca79d302be46f7bdd8321089762dd4476ee725fce16fc2b2e1dbba8cac17/psutil-6.1.1-cp36-abi3-macosx_10_9_x86_64.whl - pypi: https://files.pythonhosted.org/packages/22/a6/858897256d0deac81a172289110f31629fc4cee19b6f01283303e18c8db3/ptyprocess-0.7.0-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/8e/37/efad0257dc6e593a18957422533ff0f87ede7c9c6ea010a2177d738fb82f/pure_eval-0.2.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e0/a9/023730ba63db1e494a271cb018dcd361bd2c917ba7004c3e49d5daf795a2/py_cpuinfo-9.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/ad/10/0d304243c8277035298a68a70807efb76199c6c929bb3363c92ac9be6a0d/pyarrow-19.0.0-cp313-cp313-macosx_12_0_x86_64.whl - pypi: https://files.pythonhosted.org/packages/13/a3/a812df4e2dd5696d1f351d58b8fe16a405b234ad2886a0dab9183fb78109/pycparser-2.22-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/8a/0b/9fcc47d19c48b59121088dd6da2488a49d5f72dacf8262e2790a1d2c7d15/pygments-2.19.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/1c/a7/c8a2d361bf89c0d9577c934ebb7421b25dc84bf3a8e3ac0a40aed9acc547/pyparsing-3.2.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/11/92/76a1c94d3afee238333bc0a42b82935dd8f9cf8ce9e336ff87ee14d9e1cf/pytest-8.3.4-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/9e/d6/b41653199ea09d5969d4e385df9bbfd9a100f28ca7e824ce7c0a016e3053/pytest_benchmark-5.1.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d0/da/9da67c67b3d0963160e3d2cbc7c38b6fae342670cc8e6d5936644b2cf944/pytest_dotenv-0.5.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/6d/82/1d96bf03ee4c0fdc3c0cbe61470070e659ca78dc0086fb88b66c185e2449/pytest_xdist-3.6.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl @@ -2319,6 +2372,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/6a/9e/2064975477fdc887e47ad42157e214526dcad8f317a948dee17e1659a62f/terminado-0.18.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e6/34/ebdc18bae6aa14fbee1a08b63c015c72b64868ff7dae68808ab500c492e2/tinycss2-1.4.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/44/6f/7120676b6d73228c96e17f1f794d8ab046fc910d781c8d151120c3f1569e/toml-0.10.2-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/04/90/2ee5f2e0362cb8a0b6499dc44f4d7d48f8fff06d28ba46e6f1eaa61a1388/tomli-2.2.1-cp313-cp313-macosx_10_13_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/c7/18/c86eb8e0202e32dd3df50d43d7ff9854f8e0603945ff398974c1d91ac1ef/tomli_w-1.2.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/03/98/eb27cc78ad3af8e302c9d8ff4977f5026676e130d28dd7578132a457170c/toolz-1.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/96/44/87543a3b99016d0bf54fdaab30d24bf0af2e848f1d13d34a3a5380aabe16/tornado-6.4.2-cp38-abi3-macosx_10_9_x86_64.whl - pypi: https://files.pythonhosted.org/packages/00/c0/8f5d070730d7836adc9c9b6408dec68c6ced86b304a9b26a14df072a6e8c/traitlets-5.14.3-py3-none-any.whl @@ -2342,12 +2397,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda - conda: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2025.1.31-h56e8100_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.6.4-he0c23c2_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.2-h8ffe710_5.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.6-h537db12_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/liblzma-5.6.4-h2466b09_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libmpdec-4.0.0-h2466b09_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.48.0-h67fdade_1.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/openssl-3.4.0-ha4e3fda_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/openssl-3.4.1-ha4e3fda_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/python-3.13.1-h071d269_105_cp313.conda - conda: https://conda.anaconda.org/conda-forge/win-64/python_abi-3.13-5_cp313.conda - conda: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h5226925_1.conda @@ -2355,7 +2410,6 @@ environments: - conda: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_1.conda - conda: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-h5fd82a7_24.conda - conda: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.42.34433-h6356254_24.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.42.34433-hfef2bbc_24.conda - pypi: https://files.pythonhosted.org/packages/46/eb/e7f063ad1fec6b3178a3cd82d1a3c4de82cccf283fc42746168188e1cdd5/anyio-4.8.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a4/6a/e8a041599e78b6b3752da48000b14c8d1e8a04ded09c88c714ba047f34f5/argon2_cffi-23.1.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/37/2c/e34e47c7dee97ba6f01a6203e0383e15b60fb85d78ac9a15cd066f6fe28b/argon2_cffi_bindings-21.2.0-cp36-abi3-win_amd64.whl @@ -2364,9 +2418,11 @@ environments: - pypi: https://files.pythonhosted.org/packages/fa/9f/3c3503693386c4b0f245eaf5ca6198e3b28879ca0a40bde6b0e319793453/async_lru-2.0.4-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/fc/30/d4986a882011f9df997a55e6becd864812ccfcd821d64aac8570ee39f719/attrs-25.1.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b7/b8/3fe70c75fe32afc4bb507f75563d39bc5642255d1d94f1f23604725780bf/babel-2.17.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/64/69/f6db6e4cb2fe2f887dead40b76caa91af4844cb647dd2c7223bb010aa416/beartype-0.19.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/f9/49/6abb616eb3cbab6a7cca303dc02fdf3836de2e0b834bf966a7f5271a34d8/beautifulsoup4-4.13.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/fc/55/96142937f66150805c25c4d0f31ee4132fd33497753400734f9dfdcbdc66/bleach-6.2.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c5/15/be88ca93d191f07df76cce217b3b44d5ed3038fa58dd33b4fcb12ea8fe5e/bokeh-3.6.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/45/7f/0e961cf3908bc4c1c3e027de2794f867c6c89fb4916fc7dba295a0e80a2d/boltons-25.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c8/d5/867e75361fc45f6de75fe277dd085627a9db5ebb511a87f27dc1396b5351/cattrs-24.1.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/38/fc/bce832fd4fd99766c04d1ee0eead6b0ec6486fb100ae5e74c1d91292b982/certifi-2025.1.31-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7c/fc/6a8cb64e5f0324877d503c854da15d76c1e50eb722e320b15345c4d0c6de/cffi-1.17.1-cp313-cp313-win_amd64.whl @@ -2377,7 +2433,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e6/75/49e5bfe642f71f272236b5b2d2691cf915a7283cc0ceda56357b61daa538/comm-0.2.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e3/d5/28bca491f65312b438fbf076589dcde7f6f966b196d900777f5811b9c4e2/contourpy-1.3.1-cp313-cp313-win_amd64.whl - - pypi: https://files.pythonhosted.org/packages/d5/58/ec43499a7fc681212fe7742fe90b2bc361cdb72e3181ace1604247a5b24d/coverage-7.6.10-cp313-cp313-win_amd64.whl + - pypi: https://files.pythonhosted.org/packages/bc/17/ab849b7429a639f9722fa5628364c28d675c7ff37ebc3268fe9840dda13c/coverage-7.6.12-cp313-cp313-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/db/a0/f01ccfab538db07ef3f6b4ede46357ff147a81dd4f3c59ca6a34c791a549/crc32c-2.7.1-cp313-cp313-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/91/a0/016d956a3fec193e3a5b466ca912944669c18dccc736b64a9e28ccdcc5f7/dask-2025.1.0-py3-none-any.whl @@ -2390,8 +2446,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/43/09/2aea36ff60d16dd8879bdb2f5b3ee0ba8d08cbbdcdfe870e695ce3784385/execnet-2.1.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7b/8f/c4d9bafc34ad7ad5d8dc16dd1347ee0e507a52c3adb6bfa8887e1c6a26ba/executing-2.2.0-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/90/2b/0817a2b257fe88725c25589d89aec060581aabf668707a8d03b2e9e0cb2a/fastjsonschema-2.21.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/c3/60/03e09c5d38b4ab4c809eef03fd1f99e4744dfd3740a02225dc33217b09d7/flopy-3.9.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/b8/f9/3c69478a63250ad015a9ff1a75cd72d00aed0c26c188bd838ad5b67f7c83/fonttools-4.55.8-cp313-cp313-win_amd64.whl + - pypi: https://files.pythonhosted.org/packages/d4/0a/7f6467b7cd461966abe4e3f4a6ddb72609d5785e973a0ec545cf3c60a440/flopy-3.9.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/27/6d/3edda54f98a550a0473f032d8050315fbc8f1b76a0d9f3879b72ebb2cdd6/fonttools-4.56.0-cp313-cp313-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/cf/58/8acf1b3e91c58313ce5cb67df61001fc9dcd21be4fadb76c1a2d540e09ed/fqdn-1.5.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e2/94/758680531a00d06e471ef649e4ec2ed6bf185356a7f9fbfbb7368a40bd49/fsspec-2025.2.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a0/61/5c78b91c3143ed5c14207f463aecfc8f9dbb5092fb2869baf37c273b2705/gitdb-4.0.12-py3-none-any.whl @@ -2426,7 +2482,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/b1/dd/ead9d8ea85bf202d90cc513b533f9c363121c7792674f78e0d8a854b63b4/jupyterlab_pygments-0.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/54/09/2032e7d15c544a0e3cd831c51d77a8ca57f7555b2e1b2922142eddb02a84/jupyterlab_server-2.27.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a9/93/858e87edc634d628e5d752ba944c2833133a28fa87bb093e6832ced36a3e/jupyterlab_widgets-3.0.13-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/f4/02/27191f18564d4f2c0e543643aa94b54567de58f359cd6a3bed33adb723ac/jupytext-1.16.6-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e1/4c/3d7cfac5b8351f649ce41a1007a769baacae8d5d29e481a93d799a209c3f/jupytext-1.16.7-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d0/dc/c1abe38c37c071d0fc71c9a474fd0b9ede05d42f5a458d584619cfd2371a/kiwisolver-1.4.8-cp313-cp313-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/2d/00/d90b10b962b4277f5e64a78b6609968859ff86889f5b898c1a778c06ec00/lark-1.2.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/db/bc/83e112abc66cd466c6b83f99118035867cecd41802f8d044638aa78a106e/locket-1.0.0-py2.py3-none-any.whl @@ -2438,10 +2494,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/a7/f7/7782a043553ee469c1ff49cfa1cdace2d6bf99a1f333cf38676b3ddf30da/mdit_py_plugins-0.4.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c6/02/c66bdfdadbb021adb642ca4e8a5ed32ada0b4a3e4b39c5d076d19543452f/mistune-3.1.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/f5/56/d75ff7cfec6208196a059341d8f21438a90fbfac4cc8e52fe1318d61cf84/modflow_devtools-1.6.0-py3-none-any.whl + - pypi: git+https://github.com/modflow-usgs/modflow-devtools#198b78b78135153ee5b4e92c2d2b61e7a02acb68 - pypi: https://files.pythonhosted.org/packages/b6/bc/8bd826dd03e022153bfa1766dcdec4976d6c818865ed54223d71f07862b3/msgpack-1.1.0-cp313-cp313-win_amd64.whl - - pypi: https://files.pythonhosted.org/packages/83/3e/57bb447f7bbbfaabf1712d96f9df142624a386d98fb026a761532526057e/mypy-1.15.0-cp313-cp313-win_amd64.whl - - pypi: https://files.pythonhosted.org/packages/2a/e2/5d3f6ada4297caebe1a2add3b126fe800c96f56dbe5d1988a2cbe0b267aa/mypy_extensions-1.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/34/6d/e7fa07f03a4a7b221d94b4d586edb754a9b0dc3c9e2c93353e9fa4e0d117/nbclient-0.10.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/cc/9a/cd673b2f773a12c992f41309ef81b99da1690426bd2f96957a7ade0d3ed7/nbconvert-7.16.6-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a9/82/0340caa499416c78e5d8f5f05947ae4bc3cba53c9f038ab6e9ed964e22f1/nbformat-5.10.4-py3-none-any.whl @@ -2450,7 +2504,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/b9/54/dd730b32ea14ea797530a4479b2ed46a6fb250f682a9cfb997e968bf0261/networkx-3.4.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/22/9b/76e50ee18f183ea5fe1784a9eeaa50f2c71802e4740d6e959592b0993298/notebook-7.3.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/f9/33/bd5b9137445ea4b680023eb0469b2bb969d61303dedb2aac6560ff3d14a1/notebook_shim-0.2.4-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/58/69/4f94c8ee6f74204425f60fe99e88d6f3f90b62ed3ac013973eec62b52025/numcodecs-0.15.0-cp313-cp313-win_amd64.whl + - pypi: https://files.pythonhosted.org/packages/c3/32/233e5ede6568bdb044e6f99aaa9fa39827ff3109c6487fc137315f733586/numcodecs-0.15.1-cp313-cp313-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/56/e5/01106b9291ef1d680f82bc47d0c5b5e26dfed15b0754928e8f856c82c881/numpy-2.2.2-cp313-cp313-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/2c/ab/fc8290c6a4c722e5514d80f62b2dc4c4df1a68a41d1364e625c35990fcf3/overrides-7.7.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/88/ef/eb23f262cca3c0c4eb7ab1933c3b1f03d021f2c48f54763065b6f0e321be/packaging-24.2-py3-none-any.whl @@ -2466,11 +2520,13 @@ environments: - pypi: https://files.pythonhosted.org/packages/e4/ea/d836f008d33151c7a1f62caf3d8dd782e4d15f6a43897f64480c2b8de2ad/prompt_toolkit-3.0.50-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7b/d7/7831438e6c3ebbfa6e01a927127a6cb42ad3ab844247f3c5b96bea25d73d/psutil-6.1.1-cp37-abi3-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/8e/37/efad0257dc6e593a18957422533ff0f87ede7c9c6ea010a2177d738fb82f/pure_eval-0.2.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e0/a9/023730ba63db1e494a271cb018dcd361bd2c917ba7004c3e49d5daf795a2/py_cpuinfo-9.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2c/df/e3c839c04c284c9ec3d62b02a8c452b795d9b07b04079ab91ce33484d4c5/pyarrow-19.0.0-cp313-cp313-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/13/a3/a812df4e2dd5696d1f351d58b8fe16a405b234ad2886a0dab9183fb78109/pycparser-2.22-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/8a/0b/9fcc47d19c48b59121088dd6da2488a49d5f72dacf8262e2790a1d2c7d15/pygments-2.19.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/1c/a7/c8a2d361bf89c0d9577c934ebb7421b25dc84bf3a8e3ac0a40aed9acc547/pyparsing-3.2.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/11/92/76a1c94d3afee238333bc0a42b82935dd8f9cf8ce9e336ff87ee14d9e1cf/pytest-8.3.4-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/9e/d6/b41653199ea09d5969d4e385df9bbfd9a100f28ca7e824ce7c0a016e3053/pytest_benchmark-5.1.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d0/da/9da67c67b3d0963160e3d2cbc7c38b6fae342670cc8e6d5936644b2cf944/pytest_dotenv-0.5.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/6d/82/1d96bf03ee4c0fdc3c0cbe61470070e659ca78dc0086fb88b66c185e2449/pytest_xdist-3.6.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl @@ -2499,6 +2555,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/6a/9e/2064975477fdc887e47ad42157e214526dcad8f317a948dee17e1659a62f/terminado-0.18.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e6/34/ebdc18bae6aa14fbee1a08b63c015c72b64868ff7dae68808ab500c492e2/tinycss2-1.4.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/44/6f/7120676b6d73228c96e17f1f794d8ab046fc910d781c8d151120c3f1569e/toml-0.10.2-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/c7/32/b0963458706accd9afcfeb867c0f9175a741bf7b19cd424230714d722198/tomli-2.2.1-cp313-cp313-win_amd64.whl + - pypi: https://files.pythonhosted.org/packages/c7/18/c86eb8e0202e32dd3df50d43d7ff9854f8e0603945ff398974c1d91ac1ef/tomli_w-1.2.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/03/98/eb27cc78ad3af8e302c9d8ff4977f5026676e130d28dd7578132a457170c/toolz-1.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/61/cc/58b1adeb1bb46228442081e746fcdbc4540905c87e8add7c277540934edb/tornado-6.4.2-cp38-abi3-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/00/c0/8f5d070730d7836adc9c9b6408dec68c6ced86b304a9b26a14df072a6e8c/traitlets-5.14.3-py3-none-any.whl @@ -2562,7 +2620,7 @@ packages: - pytest>=7.0 ; extra == 'test' - trustme ; extra == 'test' - truststore>=0.9.1 ; python_full_version >= '3.10' and extra == 'test' - - uvloop>=0.21 ; python_full_version < '3.14' and platform_python_implementation == 'CPython' and platform_system != 'Windows' and extra == 'test' + - uvloop>=0.21 ; python_full_version < '3.14' and platform_python_implementation == 'CPython' and sys_platform != 'win32' and extra == 'test' - packaging ; extra == 'doc' - sphinx~=7.4 ; extra == 'doc' - sphinx-rtd-theme ; extra == 'doc' @@ -2743,6 +2801,61 @@ packages: - jaraco-test ; extra == 'testing' - pytest!=8.0.* ; extra == 'testing' requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/64/69/f6db6e4cb2fe2f887dead40b76caa91af4844cb647dd2c7223bb010aa416/beartype-0.19.0-py3-none-any.whl + name: beartype + version: 0.19.0 + sha256: 33b2694eda0daf052eb2aff623ed9a8a586703bbf0a90bbc475a83bbf427f699 + requires_dist: + - autoapi>=0.9.0 ; extra == 'dev' + - coverage>=5.5 ; extra == 'dev' + - equinox ; sys_platform == 'linux' and extra == 'dev' + - jax[cpu] ; sys_platform == 'linux' and extra == 'dev' + - jaxtyping ; sys_platform == 'linux' and extra == 'dev' + - mypy>=0.800 ; platform_python_implementation != 'PyPy' and extra == 'dev' + - numba ; extra == 'dev' + - numpy ; platform_python_implementation != 'PyPy' and sys_platform != 'darwin' and extra == 'dev' + - pandera ; extra == 'dev' + - pydata-sphinx-theme<=0.7.2 ; extra == 'dev' + - pygments ; extra == 'dev' + - pyright>=1.1.370 ; extra == 'dev' + - pytest>=4.0.0 ; extra == 'dev' + - sphinx ; python_full_version >= '3.8' and extra == 'dev' + - sphinx>=4.2.0,<6.0.0 ; extra == 'dev' + - sphinxext-opengraph>=0.7.5 ; extra == 'dev' + - tox>=3.20.1 ; extra == 'dev' + - typing-extensions>=3.10.0.0 ; extra == 'dev' + - autoapi>=0.9.0 ; extra == 'doc-rtd' + - pydata-sphinx-theme<=0.7.2 ; extra == 'doc-rtd' + - sphinx>=4.2.0,<6.0.0 ; extra == 'doc-rtd' + - sphinxext-opengraph>=0.7.5 ; extra == 'doc-rtd' + - coverage>=5.5 ; extra == 'test' + - equinox ; sys_platform == 'linux' and extra == 'test' + - jax[cpu] ; sys_platform == 'linux' and extra == 'test' + - jaxtyping ; sys_platform == 'linux' and extra == 'test' + - mypy>=0.800 ; platform_python_implementation != 'PyPy' and extra == 'test' + - numba ; extra == 'test' + - numpy ; platform_python_implementation != 'PyPy' and sys_platform != 'darwin' and extra == 'test' + - pandera ; extra == 'test' + - pygments ; extra == 'test' + - pyright>=1.1.370 ; extra == 'test' + - pytest>=4.0.0 ; extra == 'test' + - sphinx ; python_full_version >= '3.8' and extra == 'test' + - tox>=3.20.1 ; extra == 'test' + - typing-extensions>=3.10.0.0 ; extra == 'test' + - equinox ; sys_platform == 'linux' and extra == 'test-tox' + - jax[cpu] ; sys_platform == 'linux' and extra == 'test-tox' + - jaxtyping ; sys_platform == 'linux' and extra == 'test-tox' + - mypy>=0.800 ; platform_python_implementation != 'PyPy' and extra == 'test-tox' + - numba ; extra == 'test-tox' + - numpy ; platform_python_implementation != 'PyPy' and sys_platform != 'darwin' and extra == 'test-tox' + - pandera ; extra == 'test-tox' + - pygments ; extra == 'test-tox' + - pyright>=1.1.370 ; extra == 'test-tox' + - pytest>=4.0.0 ; extra == 'test-tox' + - sphinx ; python_full_version >= '3.8' and extra == 'test-tox' + - typing-extensions>=3.10.0.0 ; extra == 'test-tox' + - coverage>=5.5 ; extra == 'test-tox-coverage' + requires_python: '>=3.8' - pypi: https://files.pythonhosted.org/packages/f9/49/6abb616eb3cbab6a7cca303dc02fdf3836de2e0b834bf966a7f5271a34d8/beautifulsoup4-4.13.3-py3-none-any.whl name: beautifulsoup4 version: 4.13.3 @@ -2779,6 +2892,11 @@ packages: - tornado>=6.2 - xyzservices>=2021.9.1 requires_python: '>=3.10' +- pypi: https://files.pythonhosted.org/packages/45/7f/0e961cf3908bc4c1c3e027de2794f867c6c89fb4916fc7dba295a0e80a2d/boltons-25.0.0-py3-none-any.whl + name: boltons + version: 25.0.0 + sha256: dc9fb38bf28985715497d1b54d00b62ea866eca3938938ea9043e254a3a6ca62 + requires_python: '>=3.7' - pypi: https://files.pythonhosted.org/packages/84/c2/80633736cd183ee4a62107413def345f7e6e3c01563dbca1417363cf957e/build-1.2.2.post1-py3-none-any.whl name: build version: 1.2.2.post1 @@ -3092,7 +3210,7 @@ packages: version: 8.1.8 sha256: 63c132bbbed01578a06712a2d1f497bb62d9c1c0d329b7903a866228027263b2 requires_dist: - - colorama ; platform_system == 'Windows' + - colorama ; sys_platform == 'win32' - importlib-metadata ; python_full_version < '3.8' requires_python: '>=3.7' - pypi: https://files.pythonhosted.org/packages/7e/e8/64c37fadfc2816a7701fa8a6ed8d87327c7d54eacfbfb6edab14a2f2be75/cloudpickle-3.1.1-py3-none-any.whl @@ -3329,66 +3447,66 @@ packages: - pytest-xdist ; extra == 'test-no-images' - wurlitzer ; extra == 'test-no-images' requires_python: '>=3.10' -- pypi: https://files.pythonhosted.org/packages/25/6d/31883d78865529257bf847df5789e2ae80e99de8a460c3453dbfbe0db069/coverage-7.6.10-cp313-cp313-macosx_10_13_x86_64.whl +- pypi: https://files.pythonhosted.org/packages/0c/4b/373be2be7dd42f2bcd6964059fd8fa307d265a29d2b9bcf1d044bcc156ed/coverage-7.6.12-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl name: coverage - version: 7.6.10 - sha256: 05fca8ba6a87aabdd2d30d0b6c838b50510b56cdcfc604d40760dae7153b73d9 + version: 7.6.12 + sha256: 64cbb1a3027c79ca6310bf101014614f6e6e18c226474606cf725238cf5bc2d4 requires_dist: - tomli ; python_full_version <= '3.11' and extra == 'toml' requires_python: '>=3.9' -- pypi: https://files.pythonhosted.org/packages/2c/f8/ef009b3b98e9f7033c19deb40d629354aab1d8b2d7f9cfec284dbedf5096/coverage-7.6.10-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl +- pypi: https://files.pythonhosted.org/packages/53/40/53c7ffe3c0c3fff4d708bc99e65f3d78c129110d6629736faf2dbd60ad57/coverage-7.6.12-cp312-cp312-win_amd64.whl name: coverage - version: 7.6.10 - sha256: 0d7a2bf79378d8fb8afaa994f91bfd8215134f8631d27eba3e0e2c13546ce994 + version: 7.6.12 + sha256: 7ae6eabf519bc7871ce117fb18bf14e0e343eeb96c377667e3e5dd12095e0288 requires_dist: - tomli ; python_full_version <= '3.11' and extra == 'toml' requires_python: '>=3.9' -- pypi: https://files.pythonhosted.org/packages/85/d2/5e175fcf6766cf7501a8541d81778fd2f52f4870100e791f5327fd23270b/coverage-7.6.10-cp311-cp311-macosx_10_9_x86_64.whl +- pypi: https://files.pythonhosted.org/packages/64/2d/da78abbfff98468c91fd63a73cccdfa0e99051676ded8dd36123e3a2d4d5/coverage-7.6.12-cp311-cp311-macosx_10_9_x86_64.whl name: coverage - version: 7.6.10 - sha256: ea3c8f04b3e4af80e17bab607c386a830ffc2fb88a5484e1df756478cf70d1d3 + version: 7.6.12 + sha256: e18aafdfb3e9ec0d261c942d35bd7c28d031c5855dadb491d2723ba54f4c3015 requires_dist: - tomli ; python_full_version <= '3.11' and extra == 'toml' requires_python: '>=3.9' -- pypi: https://files.pythonhosted.org/packages/86/77/19d09ea06f92fdf0487499283b1b7af06bc422ea94534c8fe3a4cd023641/coverage-7.6.10-cp312-cp312-macosx_10_13_x86_64.whl +- pypi: https://files.pythonhosted.org/packages/76/89/1adf3e634753c0de3dad2f02aac1e73dba58bc5a3a914ac94a25b2ef418f/coverage-7.6.12-cp313-cp313-macosx_10_13_x86_64.whl name: coverage - version: 7.6.10 - sha256: 27c6e64726b307782fa5cbe531e7647aee385a29b2107cd87ba7c0105a5d3853 + version: 7.6.12 + sha256: 488c27b3db0ebee97a830e6b5a3ea930c4a6e2c07f27a5e67e1b3532e76b9ef1 requires_dist: - tomli ; python_full_version <= '3.11' and extra == 'toml' requires_python: '>=3.9' -- pypi: https://files.pythonhosted.org/packages/9a/0b/7797d4193f5adb4b837207ed87fecf5fc38f7cc612b369a8e8e12d9fa114/coverage-7.6.10-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl +- pypi: https://files.pythonhosted.org/packages/bc/17/ab849b7429a639f9722fa5628364c28d675c7ff37ebc3268fe9840dda13c/coverage-7.6.12-cp313-cp313-win_amd64.whl name: coverage - version: 7.6.10 - sha256: 26bcf5c4df41cad1b19c84af71c22cbc9ea9a547fc973f1f2cc9a290002c8b3c + version: 7.6.12 + sha256: 2b996819ced9f7dbb812c701485d58f261bef08f9b85304d41219b1496b591ef requires_dist: - tomli ; python_full_version <= '3.11' and extra == 'toml' requires_python: '>=3.9' -- pypi: https://files.pythonhosted.org/packages/c3/54/de0893186a221478f5880283119fc40483bc460b27c4c71d1b8bba3474b9/coverage-7.6.10-cp312-cp312-win_amd64.whl +- pypi: https://files.pythonhosted.org/packages/c4/47/2ba744af8d2f0caa1f17e7746147e34dfc5f811fb65fc153153722d58835/coverage-7.6.12-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl name: coverage - version: 7.6.10 - sha256: e4ae5ac5e0d1e4edfc9b4b57b4cbecd5bc266a6915c500f358817a8496739247 + version: 7.6.12 + sha256: bda1c5f347550c359f841d6614fb8ca42ae5cb0b74d39f8a1e204815ebe25750 requires_dist: - tomli ; python_full_version <= '3.11' and extra == 'toml' requires_python: '>=3.9' -- pypi: https://files.pythonhosted.org/packages/d5/58/ec43499a7fc681212fe7742fe90b2bc361cdb72e3181ace1604247a5b24d/coverage-7.6.10-cp313-cp313-win_amd64.whl +- pypi: https://files.pythonhosted.org/packages/c7/01/9cd06cbb1be53e837e16f1b4309f6357e2dfcbdab0dd7cd3b1a50589e4e1/coverage-7.6.12-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl name: coverage - version: 7.6.10 - sha256: 254f1a3b1eef5f7ed23ef265eaa89c65c8c5b6b257327c149db1ca9d4a35f25e + version: 7.6.12 + sha256: e695df2c58ce526eeab11a2e915448d3eb76f75dffe338ea613c1201b33bab2f requires_dist: - tomli ; python_full_version <= '3.11' and extra == 'toml' requires_python: '>=3.9' -- pypi: https://files.pythonhosted.org/packages/db/11/3f8e803a43b79bc534c6a506674da9d614e990e37118b4506faf70d46ed6/coverage-7.6.10-cp311-cp311-win_amd64.whl +- pypi: https://files.pythonhosted.org/packages/d5/db/829185120c1686fa297294f8fcd23e0422f71070bf85ef1cc1a72ecb2930/coverage-7.6.12-cp311-cp311-win_amd64.whl name: coverage - version: 7.6.10 - sha256: 489a01f94aa581dbd961f306e37d75d4ba16104bbfa2b0edb21d29b73be83609 + version: 7.6.12 + sha256: e216c5c45f89ef8971373fd1c5d8d1164b81f7f5f06bbf23c37e7908d19e8558 requires_dist: - tomli ; python_full_version <= '3.11' and extra == 'toml' requires_python: '>=3.9' -- pypi: https://files.pythonhosted.org/packages/dc/03/0334a79b26ecf59958f2fe9dd1f5ab3e2f88db876f5071933de39af09647/coverage-7.6.10-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl +- pypi: https://files.pythonhosted.org/packages/e2/7f/4af2ed1d06ce6bee7eafc03b2ef748b14132b0bdae04388e451e4b2c529b/coverage-7.6.12-cp312-cp312-macosx_10_13_x86_64.whl name: coverage - version: 7.6.10 - sha256: e67926f51821b8e9deb6426ff3164870976fe414d033ad90ea75e7ed0c2e5022 + version: 7.6.12 + sha256: b172f8e030e8ef247b3104902cc671e20df80163b60a203653150d2fc204d1ad requires_dist: - tomli ; python_full_version <= '3.11' and extra == 'toml' requires_python: '>=3.9' @@ -3437,16 +3555,16 @@ packages: version: 2.7.1 sha256: 8c03286b1e5ce9bed7090084f206aacd87c5146b4b10de56fe9e86cbbbf851cf requires_python: '>=3.7' -- pypi: https://files.pythonhosted.org/packages/ef/82/72403624f197af0db6bac4e58153bc9ac0e6020e57234115db9596eee85d/cryptography-44.0.0-cp39-abi3-manylinux_2_28_x86_64.whl +- pypi: https://files.pythonhosted.org/packages/e1/e7/cfb18011821cc5f9b21efb3f94f3241e3a658d267a3bf3a0f45543858ed8/cryptography-44.0.1-cp39-abi3-manylinux_2_28_x86_64.whl name: cryptography - version: 44.0.0 - sha256: f53c2c87e0fb4b0c00fa9571082a057e37690a8f12233306161c8f4b819960b7 + version: 44.0.1 + sha256: 72198e2b5925155497a5a3e8c216c7fb3e64c16ccee11f0e7da272fa93b35c4c requires_dist: - cffi>=1.12 ; platform_python_implementation != 'PyPy' - bcrypt>=3.1.5 ; extra == 'ssh' - nox>=2024.4.15 ; extra == 'nox' - nox[uv]>=2024.3.2 ; python_full_version >= '3.8' and extra == 'nox' - - cryptography-vectors==44.0.0 ; extra == 'test' + - cryptography-vectors==44.0.1 ; extra == 'test' - pytest>=7.4.0 ; extra == 'test' - pytest-benchmark>=4.0 ; extra == 'test' - pytest-cov>=2.10.1 ; extra == 'test' @@ -3665,35 +3783,87 @@ packages: - virtualenv>=20.28.1 ; extra == 'testing' - typing-extensions>=4.12.2 ; python_full_version < '3.11' and extra == 'typing' requires_python: '>=3.9' -- pypi: https://files.pythonhosted.org/packages/c3/60/03e09c5d38b4ab4c809eef03fd1f99e4744dfd3740a02225dc33217b09d7/flopy-3.9.1-py3-none-any.whl +- pypi: https://files.pythonhosted.org/packages/d4/0a/7f6467b7cd461966abe4e3f4a6ddb72609d5785e973a0ec545cf3c60a440/flopy-3.9.2-py3-none-any.whl name: flopy - version: 3.9.1 - sha256: 3f784c8adb847b0d3e889ebfec87ca520928b2ece72c7aaf7d046ba111890aa7 + version: 3.9.2 + sha256: 3f83db0180477f7a3713ff881cd185e792b37af0ca811683db9cc91868c3e690 requires_dist: - - numpy>=1.20.3 - matplotlib>=1.4.0 + - numpy>=1.20.3 - pandas>=2.0.0 - - flopy[doc,lint,optional,test] ; extra == 'dev' + - affine ; extra == 'dev' + - coverage!=7.6.5 ; extra == 'dev' + - descartes ; extra == 'dev' + - filelock ; extra == 'dev' + - fiona ; extra == 'dev' + - flaky ; extra == 'dev' + - geojson ; extra == 'dev' + - geopandas ; extra == 'dev' + - gitpython ; extra == 'dev' + - imageio ; extra == 'dev' + - ipython[kernel] ; extra == 'dev' + - jupyter ; extra == 'dev' + - jupyter-client>=8.4.0 ; extra == 'dev' + - jupytext ; extra == 'dev' + - modflow-devtools ; extra == 'dev' + - myst-parser ; extra == 'dev' + - nbconvert<7.14.0 ; extra == 'dev' + - nbsphinx ; extra == 'dev' + - netcdf4 ; extra == 'dev' + - pooch ; extra == 'dev' + - pymetis ; sys_platform != 'win32' and extra == 'dev' + - pyproj ; extra == 'dev' + - pyshp ; extra == 'dev' + - pytest!=8.1.0 ; extra == 'dev' + - pytest-benchmark ; extra == 'dev' + - pytest-cov ; extra == 'dev' + - pytest-dotenv ; extra == 'dev' + - pytest-xdist ; extra == 'dev' + - pyvista ; extra == 'dev' + - pyyaml ; extra == 'dev' + - pyzmq>=25.1.2 ; extra == 'dev' + - rasterio ; extra == 'dev' + - rasterstats ; extra == 'dev' + - rtds-action ; extra == 'dev' + - ruff ; extra == 'dev' + - scipy ; extra == 'dev' + - shapely>=2.0 ; extra == 'dev' + - sphinx-rtd-theme>=1 ; extra == 'dev' + - sphinx==7.1.2 ; extra == 'dev' + - syrupy ; extra == 'dev' - tach ; extra == 'dev' - - cffconvert ; extra == 'lint' - - codespell[toml]>=2.2.2 ; extra == 'lint' + - virtualenv ; extra == 'dev' + - vtk>=9.4.0 ; extra == 'dev' + - xmipy ; extra == 'dev' + - affine ; extra == 'doc' + - descartes ; extra == 'doc' + - fiona ; extra == 'doc' + - geojson ; extra == 'doc' + - geopandas ; extra == 'doc' + - gitpython ; extra == 'doc' + - imageio ; extra == 'doc' + - ipython[kernel] ; extra == 'doc' + - jupytext ; extra == 'doc' + - myst-parser ; extra == 'doc' + - nbconvert<7.14.0 ; extra == 'doc' + - nbsphinx ; extra == 'doc' + - netcdf4 ; extra == 'doc' + - pooch ; extra == 'doc' + - pymetis ; sys_platform != 'win32' and extra == 'doc' + - pyproj ; extra == 'doc' + - pyshp ; extra == 'doc' + - pyvista ; extra == 'doc' + - pyyaml ; extra == 'doc' + - rasterio ; extra == 'doc' + - rasterstats ; extra == 'doc' + - rtds-action ; extra == 'doc' + - scipy ; extra == 'doc' + - shapely>=2.0 ; extra == 'doc' + - sphinx-rtd-theme>=1 ; extra == 'doc' + - sphinx==7.1.2 ; extra == 'doc' + - vtk>=9.4.0 ; extra == 'doc' + - xmipy ; extra == 'doc' - ruff ; extra == 'lint' - - flopy[lint] ; extra == 'test' - - coverage!=7.6.5 ; extra == 'test' - - flaky ; extra == 'test' - - filelock ; extra == 'test' - - jupyter ; extra == 'test' - - jupyter-client>=8.4.0 ; extra == 'test' - - jupytext ; extra == 'test' - - modflow-devtools ; extra == 'test' - - pytest!=8.1.0 ; extra == 'test' - - pytest-benchmark ; extra == 'test' - - pytest-cov ; extra == 'test' - - pytest-dotenv ; extra == 'test' - - pytest-xdist ; extra == 'test' - - pyzmq>=25.1.2 ; extra == 'test' - - syrupy ; extra == 'test' - - virtualenv ; extra == 'test' - affine ; extra == 'optional' - descartes ; extra == 'optional' - fiona ; extra == 'optional' @@ -3703,7 +3873,7 @@ packages: - imageio ; extra == 'optional' - netcdf4 ; extra == 'optional' - pooch ; extra == 'optional' - - pymetis ; platform_system != 'Windows' and extra == 'optional' + - pymetis ; sys_platform != 'win32' and extra == 'optional' - pyproj ; extra == 'optional' - pyshp ; extra == 'optional' - pyvista ; extra == 'optional' @@ -3711,27 +3881,34 @@ packages: - rasterstats ; extra == 'optional' - scipy ; extra == 'optional' - shapely>=2.0 ; extra == 'optional' - - vtk ; extra == 'optional' + - vtk>=9.4.0 ; extra == 'optional' - xmipy ; extra == 'optional' - - flopy[optional] ; extra == 'doc' - - ipython[kernel] ; extra == 'doc' - - jupytext ; extra == 'doc' - - myst-parser ; extra == 'doc' - - nbconvert<7.14.0 ; extra == 'doc' - - nbsphinx ; extra == 'doc' - - pyyaml ; extra == 'doc' - - rtds-action ; extra == 'doc' - - sphinx==7.1.2 ; extra == 'doc' - - sphinx-rtd-theme>=1 ; extra == 'doc' + - coverage!=7.6.5 ; extra == 'test' + - filelock ; extra == 'test' + - flaky ; extra == 'test' + - jupyter ; extra == 'test' + - jupyter-client>=8.4.0 ; extra == 'test' + - jupytext ; extra == 'test' + - modflow-devtools ; extra == 'test' + - pytest!=8.1.0 ; extra == 'test' + - pytest-benchmark ; extra == 'test' + - pytest-cov ; extra == 'test' + - pytest-dotenv ; extra == 'test' + - pytest-xdist ; extra == 'test' + - pyzmq>=25.1.2 ; extra == 'test' + - ruff ; extra == 'test' + - syrupy ; extra == 'test' + - virtualenv ; extra == 'test' requires_python: '>=3.9' - pypi: . name: flopy4 version: 0.0.1.dev0 - sha256: 9e221fdd152abf30003e5ca187db69bf8b9a884500846e4d3000ac61cccd2b18 + sha256: a03183fc3f074eb021a9de844ea50b0061f6fbf266c4192c9b694e83d7a77a71 requires_dist: - attrs + - beartype - cattrs - - flopy>=3.7.0 + - flopy - jinja2>=3.0 - lark - numpy>=1.20.3 @@ -3740,6 +3917,7 @@ packages: - networkx>=3.4.2,<4 - xarray[io,parallel]>=2024.11.0,<2025 - scipy>=1.14.1,<2 + - modflow-devtools[dfn] @ git+https://github.com/MODFLOW-USGS/modflow-devtools.git - flopy4[build,lint,test] ; extra == 'dev' - ruff ; extra == 'lint' - pre-commit>=4.0.1,<5 ; extra == 'lint' @@ -3750,19 +3928,19 @@ packages: - jupyter ; extra == 'test' - jupytext ; extra == 'test' - modflow-devtools ; extra == 'test' - - mypy ; extra == 'test' - pooch>=1.8 ; extra == 'test' - pytest!=8.1.0 ; extra == 'test' - pytest-dotenv ; extra == 'test' - pytest-xdist ; extra == 'test' + - pytest-benchmark ; extra == 'test' - build ; extra == 'build' - twine ; extra == 'build' requires_python: '>=3.11' editable: true -- pypi: https://files.pythonhosted.org/packages/1b/3d/7a906f58f80c1ed37bbdf7b3f9b6792906156cb9143b067bf54c38405134/fonttools-4.55.8-cp312-cp312-macosx_10_13_x86_64.whl +- pypi: https://files.pythonhosted.org/packages/15/52/d9f716b072c5061a0b915dd4c387f74bef44c68c069e2195c753905bd9b7/fonttools-4.56.0-cp312-cp312-macosx_10_13_x86_64.whl name: fonttools - version: 4.55.8 - sha256: 302e1003a760b222f711d5ba6d1ad7fd5f7f713eb872cd6a3eb44390bc9770af + version: 4.56.0 + sha256: fa760e5fe8b50cbc2d71884a1eff2ed2b95a005f02dda2fa431560db0ddd927f requires_dist: - fs>=2.2.0,<3 ; extra == 'ufo' - lxml>=4.0 ; extra == 'lxml' @@ -3795,10 +3973,10 @@ packages: - skia-pathops>=0.5.0 ; extra == 'all' - uharfbuzz>=0.23.0 ; extra == 'all' requires_python: '>=3.8' -- pypi: https://files.pythonhosted.org/packages/42/d6/96dc2462006ffa16c8d475244e372abdc47d03a7bd38be0f29e7ae552af4/fonttools-4.55.8-cp311-cp311-win_amd64.whl +- pypi: https://files.pythonhosted.org/packages/27/6d/3edda54f98a550a0473f032d8050315fbc8f1b76a0d9f3879b72ebb2cdd6/fonttools-4.56.0-cp313-cp313-win_amd64.whl name: fonttools - version: 4.55.8 - sha256: 604c805b41241b4880e2dc86cf2d4754c06777371c8299799ac88d836cb18c3b + version: 4.56.0 + sha256: 62cc1253827d1e500fde9dbe981219fea4eb000fd63402283472d38e7d8aa1c6 requires_dist: - fs>=2.2.0,<3 ; extra == 'ufo' - lxml>=4.0 ; extra == 'lxml' @@ -3831,10 +4009,10 @@ packages: - skia-pathops>=0.5.0 ; extra == 'all' - uharfbuzz>=0.23.0 ; extra == 'all' requires_python: '>=3.8' -- pypi: https://files.pythonhosted.org/packages/58/e4/a839f867e636419d7e5ca426a470df575bf7b20cc780862d6f64caee405c/fonttools-4.55.8-cp313-cp313-macosx_10_13_x86_64.whl +- pypi: https://files.pythonhosted.org/packages/28/e9/47c02d5a7027e8ed841ab6a10ca00c93dadd5f16742f1af1fa3f9978adf4/fonttools-4.56.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl name: fonttools - version: 4.55.8 - sha256: 6b8d7c149d47b47de7ec81763396c8266e5ebe2e0b14aa9c3ccf29e52260ab2f + version: 4.56.0 + sha256: 003548eadd674175510773f73fb2060bb46adb77c94854af3e0cc5bc70260049 requires_dist: - fs>=2.2.0,<3 ; extra == 'ufo' - lxml>=4.0 ; extra == 'lxml' @@ -3867,10 +4045,10 @@ packages: - skia-pathops>=0.5.0 ; extra == 'all' - uharfbuzz>=0.23.0 ; extra == 'all' requires_python: '>=3.8' -- pypi: https://files.pythonhosted.org/packages/61/cf/08c4954c944799458690eb0e498209fb6a2e79e20a869189f56d18e909b6/fonttools-4.55.8-cp312-cp312-win_amd64.whl +- pypi: https://files.pythonhosted.org/packages/3b/90/4926e653041c4116ecd43e50e3c79f5daae6dcafc58ceb64bc4f71dd4924/fonttools-4.56.0-cp311-cp311-win_amd64.whl name: fonttools - version: 4.55.8 - sha256: a19059aa892676822c1f05cb5a67296ecdfeb267fe7c47d4758f3e8e942c2b2a + version: 4.56.0 + sha256: 14a3e3e6b211660db54ca1ef7006401e4a694e53ffd4553ab9bc87ead01d0f05 requires_dist: - fs>=2.2.0,<3 ; extra == 'ufo' - lxml>=4.0 ; extra == 'lxml' @@ -3903,10 +4081,10 @@ packages: - skia-pathops>=0.5.0 ; extra == 'all' - uharfbuzz>=0.23.0 ; extra == 'all' requires_python: '>=3.8' -- pypi: https://files.pythonhosted.org/packages/b3/75/00670fa832e2986f9c6bfbd029f0a1e90a14333f0a6c02632284e9c1baa0/fonttools-4.55.8-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl +- pypi: https://files.pythonhosted.org/packages/59/db/d2c7c9b6dd5cbd46f183e650a47403ffb88fca17484eb7c4b1cd88f9e513/fonttools-4.56.0-cp313-cp313-macosx_10_13_x86_64.whl name: fonttools - version: 4.55.8 - sha256: a0fe12f06169af2fdc642d26a8df53e40adc3beedbd6ffedb19f1c5397b63afd + version: 4.56.0 + sha256: f36a0868f47b7566237640c026c65a86d09a3d9ca5df1cd039e30a1da73098a0 requires_dist: - fs>=2.2.0,<3 ; extra == 'ufo' - lxml>=4.0 ; extra == 'lxml' @@ -3939,10 +4117,10 @@ packages: - skia-pathops>=0.5.0 ; extra == 'all' - uharfbuzz>=0.23.0 ; extra == 'all' requires_python: '>=3.8' -- pypi: https://files.pythonhosted.org/packages/b6/f9/9cf7fc04da85d37cfa1c287f0a25c274d6940dad259dbaa9fd796b87bd3c/fonttools-4.55.8-cp311-cp311-macosx_10_9_x86_64.whl +- pypi: https://files.pythonhosted.org/packages/6f/e3/5a181a85777f7809076e51f7422e0dc77eb04676c40ec8bf6a49d390d1ff/fonttools-4.56.0-cp312-cp312-win_amd64.whl name: fonttools - version: 4.55.8 - sha256: 3d20f152de7625a0008ba1513f126daaaa0de3b4b9030aa72dd5c27294992260 + version: 4.56.0 + sha256: 300c310bb725b2bdb4f5fc7e148e190bd69f01925c7ab437b9c0ca3e1c7cd9ba requires_dist: - fs>=2.2.0,<3 ; extra == 'ufo' - lxml>=4.0 ; extra == 'lxml' @@ -3975,10 +4153,10 @@ packages: - skia-pathops>=0.5.0 ; extra == 'all' - uharfbuzz>=0.23.0 ; extra == 'all' requires_python: '>=3.8' -- pypi: https://files.pythonhosted.org/packages/b8/f9/3c69478a63250ad015a9ff1a75cd72d00aed0c26c188bd838ad5b67f7c83/fonttools-4.55.8-cp313-cp313-win_amd64.whl +- pypi: https://files.pythonhosted.org/packages/71/85/d483e9c4e5ed586b183bf037a353e8d766366b54fd15519b30e6178a6a6e/fonttools-4.56.0-cp311-cp311-macosx_10_9_x86_64.whl name: fonttools - version: 4.55.8 - sha256: 1e10efc8ee10d6f1fe2931d41bccc90cd4b872f2ee4ff21f2231a2c293b2dbf8 + version: 4.56.0 + sha256: ffda9b8cd9cb8b301cae2602ec62375b59e2e2108a117746f12215145e3f786c requires_dist: - fs>=2.2.0,<3 ; extra == 'ufo' - lxml>=4.0 ; extra == 'lxml' @@ -4011,10 +4189,10 @@ packages: - skia-pathops>=0.5.0 ; extra == 'all' - uharfbuzz>=0.23.0 ; extra == 'all' requires_python: '>=3.8' -- pypi: https://files.pythonhosted.org/packages/e8/07/4b8a5c8a746cc8c8103c6462d057d8806bd925347ac3905055686dd40e94/fonttools-4.55.8-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl +- pypi: https://files.pythonhosted.org/packages/95/70/2a781bedc1c45a0c61d29c56425609b22ed7f971da5d7e5df2679488741b/fonttools-4.56.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl name: fonttools - version: 4.55.8 - sha256: 03c2b50b54e6e8b3564b232e57e8f58be217cf441cf0155745d9e44a76f9c30f + version: 4.56.0 + sha256: 661a8995d11e6e4914a44ca7d52d1286e2d9b154f685a4d1f69add8418961563 requires_dist: - fs>=2.2.0,<3 ; extra == 'ufo' - lxml>=4.0 ; extra == 'lxml' @@ -4047,10 +4225,10 @@ packages: - skia-pathops>=0.5.0 ; extra == 'all' - uharfbuzz>=0.23.0 ; extra == 'all' requires_python: '>=3.8' -- pypi: https://files.pythonhosted.org/packages/f2/e0/e58b10ef50830145ba94dbeb64b70773af61cfccea663d485c7fae2aab65/fonttools-4.55.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl +- pypi: https://files.pythonhosted.org/packages/be/6a/fd4018e0448c8a5e12138906411282c5eab51a598493f080a9f0960e658f/fonttools-4.56.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl name: fonttools - version: 4.55.8 - sha256: b99d4fd2b6d0a00c7336c8363fccc7a11eccef4b17393af75ca6e77cf93ff413 + version: 4.56.0 + sha256: a05d1f07eb0a7d755fbe01fee1fd255c3a4d3730130cf1bfefb682d18fd2fcea requires_dist: - fs>=2.2.0,<3 ; extra == 'ufo' - lxml>=4.0 ; extra == 'lxml' @@ -4355,10 +4533,10 @@ packages: - pretend ; extra == 'test' - coverage[toml] ; extra == 'test' requires_python: '>=3.8' -- pypi: https://files.pythonhosted.org/packages/74/a1/68a395c17eeefb04917034bd0a1bfa765e7654fa150cca473d669aa3afb5/identify-2.6.6-py2.py3-none-any.whl +- pypi: https://files.pythonhosted.org/packages/03/00/1fd4a117c6c93f2dcc5b7edaeaf53ea45332ef966429be566ca16c2beb94/identify-2.6.7-py2.py3-none-any.whl name: identify - version: 2.6.6 - sha256: cbd1810bce79f8b671ecb20f53ee0ae8e86ae84b557de31d89709dc2a48ba881 + version: 2.6.7 + sha256: 155931cb617a401807b09ecec6635d6c692d180090a1cedca8ef7d58ba5b6aa0 requires_dist: - ukkonen ; extra == 'license' requires_python: '>=3.9' @@ -4414,7 +4592,7 @@ packages: version: 6.29.5 sha256: afdb66ba5aa354b09b91379bac28ae4afebbb30e8b39510c9690afb7a10421b5 requires_dist: - - appnope ; platform_system == 'Darwin' + - appnope ; sys_platform == 'darwin' - comm>=0.1.1 - debugpy>=1.6.5 - ipython>=7.23.1 @@ -4993,10 +5171,10 @@ packages: version: 3.0.13 sha256: e3cda2c233ce144192f1e29914ad522b2f4c40e77214b0cc97377ca3d323db54 requires_python: '>=3.7' -- pypi: https://files.pythonhosted.org/packages/f4/02/27191f18564d4f2c0e543643aa94b54567de58f359cd6a3bed33adb723ac/jupytext-1.16.6-py3-none-any.whl +- pypi: https://files.pythonhosted.org/packages/e1/4c/3d7cfac5b8351f649ce41a1007a769baacae8d5d29e481a93d799a209c3f/jupytext-1.16.7-py3-none-any.whl name: jupytext - version: 1.16.6 - sha256: 900132031f73fee15a1c9ebd862e05eb5f51e1ad6ab3a2c6fdd97ce2f9c913b4 + version: 1.16.7 + sha256: 912f9d9af7bd3f15470105e5c5dddf1669b2d8c17f0c55772687fc5a4a73fe69 requires_dist: - markdown-it-py>=1.0 - mdit-py-plugins @@ -5205,41 +5383,45 @@ packages: purls: [] size: 139068 timestamp: 1730967442102 -- conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2 - sha256: ab6e9856c21709b7b517e940ae7028ae0737546122f83c2aa5d692860c3b149e - md5: d645c6d2ac96843a2bfaccd2d62b3ac3 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.6-h2dba641_0.conda + sha256: 67a6c95e33ebc763c1adc3455b9a9ecde901850eb2fceb8e646cc05ef3a663da + md5: e3eb7806380bc8bcecba6d749ad5f026 depends: - - libgcc-ng >=9.4.0 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 arch: x86_64 platform: linux license: MIT license_family: MIT purls: [] - size: 58292 - timestamp: 1636488182923 -- conda: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2 - sha256: 7a2d27a936ceee6942ea4d397f9c7d136f12549d86f7617e8b6bad51e01a941f - md5: ccb34fb14960ad8b125962d3d79b31a9 + size: 53415 + timestamp: 1739260413716 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.6-h281671d_0.conda + sha256: 7805fdc536a3da7fb63dc48e040105cd4260c69a1d2bf5804dadd31bde8bab51 + md5: b8667b0d0400b8dcb6844d8e06b2027d + depends: + - __osx >=10.13 arch: x86_64 platform: osx license: MIT license_family: MIT purls: [] - size: 51348 - timestamp: 1636488394370 -- conda: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.2-h8ffe710_5.tar.bz2 - sha256: 1951ab740f80660e9bc07d2ed3aefb874d78c107264fd810f24a1a6211d4b1a5 - md5: 2c96d1b6915b408893f9472569dee135 + size: 47258 + timestamp: 1739260651925 +- conda: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.6-h537db12_0.conda + sha256: 77922d8dd2faf88ac6accaeebf06409d1820486fde710cff6b554d12273e46be + md5: 31d5107f75b2f204937728417e2e39e5 depends: - - vc >=14.1,<15.0a0 - - vs2015_runtime >=14.16.27012 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 arch: x86_64 platform: win license: MIT license_family: MIT purls: [] - size: 42063 - timestamp: 1636489106777 + size: 40830 + timestamp: 1739260917585 - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-14.2.0-h77fa898_1.conda sha256: 53eb8a79365e58849e7b1a068d31f4f9e718dc938d6f2c03e960345739a03569 md5: 3cb76c3f10d3bc7f1105b2fc9db984df @@ -5866,19 +6048,45 @@ packages: requires_dist: - typing-extensions ; python_full_version < '3.11' requires_python: '>=3.8' -- pypi: https://files.pythonhosted.org/packages/f5/56/d75ff7cfec6208196a059341d8f21438a90fbfac4cc8e52fe1318d61cf84/modflow_devtools-1.6.0-py3-none-any.whl +- pypi: git+https://github.com/modflow-usgs/modflow-devtools#198b78b78135153ee5b4e92c2d2b61e7a02acb68 name: modflow-devtools - version: 1.6.0 - sha256: fe9ddd6d3b0c9d35de3fd0c6591fd8ba851e33c19ddaadc2a4a77e10577ce156 + version: 1.7.0.dev0 requires_dist: + - build ; extra == 'build' + - twine ; extra == 'build' + - boltons ; extra == 'dev' + - codespell[toml] ; extra == 'dev' + - coverage ; extra == 'dev' + - filelock ; extra == 'dev' + - flaky ; extra == 'dev' + - meson!=0.63.0 ; extra == 'dev' + - myst-parser ; extra == 'dev' + - ninja ; extra == 'dev' + - numpy ; extra == 'dev' + - pandas ; extra == 'dev' + - pytest!=8.1.0 ; extra == 'dev' + - pytest-cov ; extra == 'dev' + - pytest-dotenv ; extra == 'dev' + - pytest-xdist ; extra == 'dev' + - pyyaml ; extra == 'dev' + - ruff ; extra == 'dev' + - sphinx ; extra == 'dev' + - sphinx-rtd-theme ; extra == 'dev' + - syrupy ; extra == 'dev' + - tomli ; extra == 'dev' + - tomli-w ; extra == 'dev' + - boltons ; extra == 'dfn' + - tomli ; extra == 'dfn' + - tomli-w ; extra == 'dfn' + - myst-parser ; extra == 'docs' - sphinx ; extra == 'docs' - sphinx-rtd-theme ; extra == 'docs' - - myst-parser ; extra == 'docs' + - codespell[toml] ; extra == 'lint' - ruff ; extra == 'lint' - - modflow-devtools[lint] ; extra == 'test' + - codespell[toml] ; extra == 'test' - coverage ; extra == 'test' - - flaky ; extra == 'test' - filelock ; extra == 'test' + - flaky ; extra == 'test' - meson!=0.63.0 ; extra == 'test' - ninja ; extra == 'test' - numpy ; extra == 'test' @@ -5888,8 +6096,9 @@ packages: - pytest-dotenv ; extra == 'test' - pytest-xdist ; extra == 'test' - pyyaml ; extra == 'test' + - ruff ; extra == 'test' - syrupy ; extra == 'test' - requires_python: '>=3.8' + requires_python: '>=3.9' - pypi: https://files.pythonhosted.org/packages/23/62/0fe302c6d1be1c777cab0616e6302478251dfbf9055ad426f5d0def75c89/more_itertools-10.6.0-py3-none-any.whl name: more-itertools version: 10.6.0 @@ -5940,137 +6149,6 @@ packages: version: 1.1.0 sha256: 17fb65dd0bec285907f68b15734a993ad3fc94332b5bb21b0435846228de1f39 requires_python: '>=3.8' -- pypi: https://files.pythonhosted.org/packages/03/bc/f6339726c627bd7ca1ce0fa56c9ae2d0144604a319e0e339bdadafbbb599/mypy-1.15.0-cp311-cp311-macosx_10_9_x86_64.whl - name: mypy - version: 1.15.0 - sha256: 2922d42e16d6de288022e5ca321cd0618b238cfc5570e0263e5ba0a77dbef56f - requires_dist: - - typing-extensions>=4.6.0 - - mypy-extensions>=1.0.0 - - tomli>=1.1.0 ; python_full_version < '3.11' - - psutil>=4.0 ; extra == 'dmypy' - - setuptools>=50 ; extra == 'mypyc' - - lxml ; extra == 'reports' - - pip ; extra == 'install-types' - - orjson ; extra == 'faster-cache' - requires_python: '>=3.9' -- pypi: https://files.pythonhosted.org/packages/13/50/da5203fcf6c53044a0b699939f31075c45ae8a4cadf538a9069b165c1050/mypy-1.15.0-cp312-cp312-win_amd64.whl - name: mypy - version: 1.15.0 - sha256: 171a9ca9a40cd1843abeca0e405bc1940cd9b305eaeea2dda769ba096932bb22 - requires_dist: - - typing-extensions>=4.6.0 - - mypy-extensions>=1.0.0 - - tomli>=1.1.0 ; python_full_version < '3.11' - - psutil>=4.0 ; extra == 'dmypy' - - setuptools>=50 ; extra == 'mypyc' - - lxml ; extra == 'reports' - - pip ; extra == 'install-types' - - orjson ; extra == 'faster-cache' - requires_python: '>=3.9' -- pypi: https://files.pythonhosted.org/packages/6a/9b/fd2e05d6ffff24d912f150b87db9e364fa8282045c875654ce7e32fffa66/mypy-1.15.0-cp313-cp313-macosx_10_13_x86_64.whl - name: mypy - version: 1.15.0 - sha256: 93faf3fdb04768d44bf28693293f3904bbb555d076b781ad2530214ee53e3445 - requires_dist: - - typing-extensions>=4.6.0 - - mypy-extensions>=1.0.0 - - tomli>=1.1.0 ; python_full_version < '3.11' - - psutil>=4.0 ; extra == 'dmypy' - - setuptools>=50 ; extra == 'mypyc' - - lxml ; extra == 'reports' - - pip ; extra == 'install-types' - - orjson ; extra == 'faster-cache' - requires_python: '>=3.9' -- pypi: https://files.pythonhosted.org/packages/83/3e/57bb447f7bbbfaabf1712d96f9df142624a386d98fb026a761532526057e/mypy-1.15.0-cp313-cp313-win_amd64.whl - name: mypy - version: 1.15.0 - sha256: b9378e2c00146c44793c98b8d5a61039a048e31f429fb0eb546d93f4b000bedf - requires_dist: - - typing-extensions>=4.6.0 - - mypy-extensions>=1.0.0 - - tomli>=1.1.0 ; python_full_version < '3.11' - - psutil>=4.0 ; extra == 'dmypy' - - setuptools>=50 ; extra == 'mypyc' - - lxml ; extra == 'reports' - - pip ; extra == 'install-types' - - orjson ; extra == 'faster-cache' - requires_python: '>=3.9' -- pypi: https://files.pythonhosted.org/packages/96/39/11b57431a1f686c1aed54bf794870efe0f6aeca11aca281a0bd87a5ad42c/mypy-1.15.0-cp311-cp311-win_amd64.whl - name: mypy - version: 1.15.0 - sha256: c9817fa23833ff189db061e6d2eff49b2f3b6ed9856b4a0a73046e41932d744f - requires_dist: - - typing-extensions>=4.6.0 - - mypy-extensions>=1.0.0 - - tomli>=1.1.0 ; python_full_version < '3.11' - - psutil>=4.0 ; extra == 'dmypy' - - setuptools>=50 ; extra == 'mypyc' - - lxml ; extra == 'reports' - - pip ; extra == 'install-types' - - orjson ; extra == 'faster-cache' - requires_python: '>=3.9' -- pypi: https://files.pythonhosted.org/packages/98/3a/03c74331c5eb8bd025734e04c9840532226775c47a2c39b56a0c8d4f128d/mypy-1.15.0-cp312-cp312-macosx_10_13_x86_64.whl - name: mypy - version: 1.15.0 - sha256: aea39e0583d05124836ea645f412e88a5c7d0fd77a6d694b60d9b6b2d9f184fd - requires_dist: - - typing-extensions>=4.6.0 - - mypy-extensions>=1.0.0 - - tomli>=1.1.0 ; python_full_version < '3.11' - - psutil>=4.0 ; extra == 'dmypy' - - setuptools>=50 ; extra == 'mypyc' - - lxml ; extra == 'reports' - - pip ; extra == 'install-types' - - orjson ; extra == 'faster-cache' - requires_python: '>=3.9' -- pypi: https://files.pythonhosted.org/packages/b3/d0/92ae4cde706923a2d3f2d6c39629134063ff64b9dedca9c1388363da072d/mypy-1.15.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl - name: mypy - version: 1.15.0 - sha256: 8023ff13985661b50a5928fc7a5ca15f3d1affb41e5f0a9952cb68ef090b31ee - requires_dist: - - typing-extensions>=4.6.0 - - mypy-extensions>=1.0.0 - - tomli>=1.1.0 ; python_full_version < '3.11' - - psutil>=4.0 ; extra == 'dmypy' - - setuptools>=50 ; extra == 'mypyc' - - lxml ; extra == 'reports' - - pip ; extra == 'install-types' - - orjson ; extra == 'faster-cache' - requires_python: '>=3.9' -- pypi: https://files.pythonhosted.org/packages/d2/8b/801aa06445d2de3895f59e476f38f3f8d610ef5d6908245f07d002676cbf/mypy-1.15.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl - name: mypy - version: 1.15.0 - sha256: c43a7682e24b4f576d93072216bf56eeff70d9140241f9edec0c104d0c515036 - requires_dist: - - typing-extensions>=4.6.0 - - mypy-extensions>=1.0.0 - - tomli>=1.1.0 ; python_full_version < '3.11' - - psutil>=4.0 ; extra == 'dmypy' - - setuptools>=50 ; extra == 'mypyc' - - lxml ; extra == 'reports' - - pip ; extra == 'install-types' - - orjson ; extra == 'faster-cache' - requires_python: '>=3.9' -- pypi: https://files.pythonhosted.org/packages/e9/9a/1f7d18b30edd57441a6411fcbc0c6869448d1a4bacbaee60656ac0fc29c8/mypy-1.15.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl - name: mypy - version: 1.15.0 - sha256: 5a95fb17c13e29d2d5195869262f8125dfdb5c134dc8d9a9d0aecf7525b10c2c - requires_dist: - - typing-extensions>=4.6.0 - - mypy-extensions>=1.0.0 - - tomli>=1.1.0 ; python_full_version < '3.11' - - psutil>=4.0 ; extra == 'dmypy' - - setuptools>=50 ; extra == 'mypyc' - - lxml ; extra == 'reports' - - pip ; extra == 'install-types' - - orjson ; extra == 'faster-cache' - requires_python: '>=3.9' -- pypi: https://files.pythonhosted.org/packages/2a/e2/5d3f6ada4297caebe1a2add3b126fe800c96f56dbe5d1988a2cbe0b267aa/mypy_extensions-1.0.0-py3-none-any.whl - name: mypy-extensions - version: 1.0.0 - sha256: 4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d - requires_python: '>=3.5' - pypi: https://files.pythonhosted.org/packages/34/6d/e7fa07f03a4a7b221d94b4d586edb754a9b0dc3c9e2c93353e9fa4e0d117/nbclient-0.10.2-py3-none-any.whl name: nbclient version: 0.10.2 @@ -6408,10 +6486,10 @@ packages: - pytest-jupyter ; extra == 'test' - pytest-tornasync ; extra == 'test' requires_python: '>=3.7' -- pypi: https://files.pythonhosted.org/packages/0f/2f/d393bb0781f3dee4c7d6381d38ce755f1572e8de844354ebf80b9cf7dd2b/numcodecs-0.15.0-cp312-cp312-macosx_10_13_x86_64.whl +- pypi: https://files.pythonhosted.org/packages/28/7d/7527d9180bc76011d6163c848c9cf02cd28a623c2c66cf543e1e86de7c5e/numcodecs-0.15.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl name: numcodecs - version: 0.15.0 - sha256: 4f507d11aae068cbb8ffd42d9a116b9ed0991a01ecf99b9dfc86185bfadde497 + version: 0.15.1 + sha256: c3a09e22140f2c691f7df26303ff8fa2dadcf26d7d0828398c0bc09b69e5efa3 requires_dist: - numpy>=1.24 - deprecated @@ -6428,10 +6506,10 @@ packages: - pcodec>=0.3,<0.4 ; extra == 'pcodec' - crc32c>=2.7 ; extra == 'crc32c' requires_python: '>=3.11' -- pypi: https://files.pythonhosted.org/packages/1a/68/c2d4eb52c2436b0f6ee0bf40e83a4d3581db17eab4f23dd20cd7594f61c4/numcodecs-0.15.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl +- pypi: https://files.pythonhosted.org/packages/2b/e8/058aac43e1300d588e99b2d0d5b771c8a43fa92ce9c9517da596869fc146/numcodecs-0.15.1-cp311-cp311-win_amd64.whl name: numcodecs - version: 0.15.0 - sha256: 82fa9c8160ccb94fb7be17922899da9052f675f52c817ac72f283edef0d3b8e0 + version: 0.15.1 + sha256: e2547fa3a7ffc9399cfd2936aecb620a3db285f2630c86c8a678e477741a4b3c requires_dist: - numpy>=1.24 - deprecated @@ -6448,10 +6526,10 @@ packages: - pcodec>=0.3,<0.4 ; extra == 'pcodec' - crc32c>=2.7 ; extra == 'crc32c' requires_python: '>=3.11' -- pypi: https://files.pythonhosted.org/packages/28/2f/e3aca7337a92a53f6f6a6322f7bc93d434c2059b731a305637f78d6f406d/numcodecs-0.15.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl +- pypi: https://files.pythonhosted.org/packages/78/57/acbc54b3419e5be65015e47177c76c0a73e037fd3ae2cde5808169194d4d/numcodecs-0.15.1-cp313-cp313-macosx_10_13_x86_64.whl name: numcodecs - version: 0.15.0 - sha256: d99e8413b8f1569e3121e8abfb2fa2b57f27b1dd0ce441f095edfdd12e27d402 + version: 0.15.1 + sha256: e3d82b70500cf61e8d115faa0d0a76be6ecdc24a16477ee3279d711699ad85f3 requires_dist: - numpy>=1.24 - deprecated @@ -6468,10 +6546,10 @@ packages: - pcodec>=0.3,<0.4 ; extra == 'pcodec' - crc32c>=2.7 ; extra == 'crc32c' requires_python: '>=3.11' -- pypi: https://files.pythonhosted.org/packages/54/2f/08bf2622dc972baeb2490b276a6ac9c0cbc8f0ebf988ce2c1b85f878851f/numcodecs-0.15.0-cp312-cp312-win_amd64.whl +- pypi: https://files.pythonhosted.org/packages/a6/a8/908a226632ffabf19caf8c99f1b2898f2f22aac02795a6fe9d018fd6d9dd/numcodecs-0.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl name: numcodecs - version: 0.15.0 - sha256: eb24c790b5aca1ffba2fca6730d92a6f9f14f4e5c3fbfc20b19c71950977d417 + version: 0.15.1 + sha256: cdfaef9f5f2ed8f65858db801f1953f1007c9613ee490a1c56233cd78b505ed5 requires_dist: - numpy>=1.24 - deprecated @@ -6488,10 +6566,10 @@ packages: - pcodec>=0.3,<0.4 ; extra == 'pcodec' - crc32c>=2.7 ; extra == 'crc32c' requires_python: '>=3.11' -- pypi: https://files.pythonhosted.org/packages/55/9c/5a540965c87f1d553748114734bf808d396e629080d4432e745adee02f09/numcodecs-0.15.0-cp311-cp311-macosx_10_9_x86_64.whl +- pypi: https://files.pythonhosted.org/packages/ab/bc/b6c3cde91c754860a3467a8c058dcf0b1a5ca14d82b1c5397c700cf8b1eb/numcodecs-0.15.1-cp312-cp312-win_amd64.whl name: numcodecs - version: 0.15.0 - sha256: 7a6c7df32c7e5e7782aa05f0bd538e54d84d7756024c55e484287171db12dcd1 + version: 0.15.1 + sha256: daed6066ffcf40082da847d318b5ab6123d69ceb433ba603cb87c323a541a8bc requires_dist: - numpy>=1.24 - deprecated @@ -6508,10 +6586,10 @@ packages: - pcodec>=0.3,<0.4 ; extra == 'pcodec' - crc32c>=2.7 ; extra == 'crc32c' requires_python: '>=3.11' -- pypi: https://files.pythonhosted.org/packages/58/69/4f94c8ee6f74204425f60fe99e88d6f3f90b62ed3ac013973eec62b52025/numcodecs-0.15.0-cp313-cp313-win_amd64.whl +- pypi: https://files.pythonhosted.org/packages/c3/32/233e5ede6568bdb044e6f99aaa9fa39827ff3109c6487fc137315f733586/numcodecs-0.15.1-cp313-cp313-win_amd64.whl name: numcodecs - version: 0.15.0 - sha256: 78bb1b91d862d507c301ecd7782f0982acfd675eafc18477cca3a8af85a1d124 + version: 0.15.1 + sha256: a4f7bdb26f1b34423cb56d48e75821223be38040907c9b5954eeb7463e7eb03c requires_dist: - numpy>=1.24 - deprecated @@ -6528,10 +6606,10 @@ packages: - pcodec>=0.3,<0.4 ; extra == 'pcodec' - crc32c>=2.7 ; extra == 'crc32c' requires_python: '>=3.11' -- pypi: https://files.pythonhosted.org/packages/8b/54/c60ba0c05c2dc671983c8999212e4dafebd55cf35c8abf2e86e1af9cf5f6/numcodecs-0.15.0-cp311-cp311-win_amd64.whl +- pypi: https://files.pythonhosted.org/packages/e4/fc/410f1cacaef0931f5daf06813b1b8a2442f7418ee284ec73fe5e830dca48/numcodecs-0.15.1-cp311-cp311-macosx_10_9_x86_64.whl name: numcodecs - version: 0.15.0 - sha256: 93601d468773b32dd5822fcf6b6da79525ff186ae9c9c5021c579d69b9227f1a + version: 0.15.1 + sha256: 698f1d59511488b8fe215fadc1e679a4c70d894de2cca6d8bf2ab770eed34dfd requires_dist: - numpy>=1.24 - deprecated @@ -6548,10 +6626,10 @@ packages: - pcodec>=0.3,<0.4 ; extra == 'pcodec' - crc32c>=2.7 ; extra == 'crc32c' requires_python: '>=3.11' -- pypi: https://files.pythonhosted.org/packages/e9/30/64867eb7853b25641476691ed1c34b3aadc8b0a14e03a001cb5bf20cbb2c/numcodecs-0.15.0-cp313-cp313-macosx_10_13_x86_64.whl +- pypi: https://files.pythonhosted.org/packages/e7/7e/f12fc32d3beedc6a8f1ec69ea0ba72e93cb99c0350feed2cff5d04679bc3/numcodecs-0.15.1-cp312-cp312-macosx_10_13_x86_64.whl name: numcodecs - version: 0.15.0 - sha256: 2f48f0f0d327603b73ab35880d2846df48bdb447d0b9f3ede03832072b0b2faa + version: 0.15.1 + sha256: b0a9d9cd29a0088220682dda4a9898321f7813ff7802be2bbb545f6e3d2f10ff requires_dist: - numpy>=1.24 - deprecated @@ -6568,10 +6646,10 @@ packages: - pcodec>=0.3,<0.4 ; extra == 'pcodec' - crc32c>=2.7 ; extra == 'crc32c' requires_python: '>=3.11' -- pypi: https://files.pythonhosted.org/packages/fa/6b/bd1ad4c869cc3746f63445329a9ce8d12097e3772be42777ac965c562223/numcodecs-0.15.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl +- pypi: https://files.pythonhosted.org/packages/fa/91/d96999b41e3146b6c0ce6bddc5ad85803cb4d743c95394562c2a4bb8cded/numcodecs-0.15.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl name: numcodecs - version: 0.15.0 - sha256: a3b5ea44a17de94d138f46a3529aa9493b08d2ffe9ce8bfb6cfd2fc7f91c62e3 + version: 0.15.1 + sha256: 1dfdea4a67108205edfce99c1cb6cd621343bc7abb7e16a041c966776920e7de requires_dist: - numpy>=1.24 - deprecated @@ -6633,9 +6711,9 @@ packages: version: 2.2.2 sha256: 5acea83b801e98541619af398cc0109ff48016955cc0818f478ee9ef1c5c3dcb requires_python: '>=3.10' -- conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.4.0-h7b32b05_1.conda - sha256: f62f6bca4a33ca5109b6d571b052a394d836956d21b25b7ffd03376abf7a481f - md5: 4ce6875f75469b2757a65e10a5d05e31 +- conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.4.1-h7b32b05_0.conda + sha256: cbf62df3c79a5c2d113247ddea5658e9ff3697b6e741c210656e239ecaf1768f + md5: 41adf927e746dc75ecf0ef841c454e48 depends: - __glibc >=2.17,<3.0.a0 - ca-certificates @@ -6645,11 +6723,11 @@ packages: license: Apache-2.0 license_family: Apache purls: [] - size: 2937158 - timestamp: 1736086387286 -- conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.4.0-hc426f3f_1.conda - sha256: 879a960d586cf8a64131ac0c060ef575cfb8aa9f6813093cba92042a86ee867c - md5: eaae23dbfc9ec84775097898526c72ea + size: 2939306 + timestamp: 1739301879343 +- conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.4.1-hc426f3f_0.conda + sha256: 505a46671dab5d66df8e684f99a9ae735a607816b12810b572d63caa512224df + md5: a7d63f8e7ab23f71327ea6d27e2d5eae depends: - __osx >=10.13 - ca-certificates @@ -6658,11 +6736,11 @@ packages: license: Apache-2.0 license_family: Apache purls: [] - size: 2590210 - timestamp: 1736086530077 -- conda: https://conda.anaconda.org/conda-forge/win-64/openssl-3.4.0-ha4e3fda_1.conda - sha256: 519a06eaab7c878fbebb8cab98ea4a4465eafb1e9ed8c6ce67226068a80a92f0 - md5: fb45308ba8bfe1abf1f4a27bad24a743 + size: 2591479 + timestamp: 1739302628009 +- conda: https://conda.anaconda.org/conda-forge/win-64/openssl-3.4.1-ha4e3fda_0.conda + sha256: 56dcc2b4430bfc1724e32661c34b71ae33a23a14149866fc5645361cfd3b3a6a + md5: 0730f8094f7088592594f9bf3ae62b3f depends: - ca-certificates - ucrt >=10.0.20348.0 @@ -6673,8 +6751,8 @@ packages: license: Apache-2.0 license_family: Apache purls: [] - size: 8462960 - timestamp: 1736088436984 + size: 8515197 + timestamp: 1739304103653 - pypi: https://files.pythonhosted.org/packages/2c/ab/fc8290c6a4c722e5514d80f62b2dc4c4df1a68a41d1364e625c35990fcf3/overrides-7.7.0-py3-none-any.whl name: overrides version: 7.7.0 @@ -7945,6 +8023,10 @@ packages: sha256: 1db8e35b67b3d218d818ae653e27f06c3aa420901fa7b081ca98cbedc874e0d0 requires_dist: - pytest ; extra == 'tests' +- pypi: https://files.pythonhosted.org/packages/e0/a9/023730ba63db1e494a271cb018dcd361bd2c917ba7004c3e49d5daf795a2/py_cpuinfo-9.0.0-py3-none-any.whl + name: py-cpuinfo + version: 9.0.0 + sha256: 859625bc251f64e21f077d099d4162689c762b5d6a4c3c97553d56241c9674d5 - pypi: https://files.pythonhosted.org/packages/2c/df/e3c839c04c284c9ec3d62b02a8c452b795d9b07b04079ab91ce33484d4c5/pyarrow-19.0.0-cp313-cp313-win_amd64.whl name: pyarrow version: 19.0.0 @@ -8089,6 +8171,21 @@ packages: - setuptools ; extra == 'dev' - xmlschema ; extra == 'dev' requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/9e/d6/b41653199ea09d5969d4e385df9bbfd9a100f28ca7e824ce7c0a016e3053/pytest_benchmark-5.1.0-py3-none-any.whl + name: pytest-benchmark + version: 5.1.0 + sha256: 922de2dfa3033c227c96da942d1878191afa135a29485fb942e85dff1c592c89 + requires_dist: + - pytest>=8.1 + - py-cpuinfo + - statistics ; python_full_version < '3.4' + - pathlib2 ; python_full_version < '3.4' + - aspectlib ; extra == 'aspect' + - elasticsearch ; extra == 'elasticsearch' + - pygal ; extra == 'histogram' + - pygaljs ; extra == 'histogram' + - setuptools ; extra == 'histogram' + requires_python: '>=3.9' - pypi: https://files.pythonhosted.org/packages/d0/da/9da67c67b3d0963160e3d2cbc7c38b6fae342670cc8e6d5936644b2cf944/pytest_dotenv-0.5.2-py3-none-any.whl name: pytest-dotenv version: 0.5.2 @@ -8709,20 +8806,20 @@ packages: version: 0.22.3 sha256: d115bffdd417c6d806ea9069237a4ae02f513b778e3789a359bc5856e0404cc4 requires_python: '>=3.9' -- pypi: https://files.pythonhosted.org/packages/04/70/e59c192a3ad476355e7f45fb3a87326f5219cc7c472e6b040c6c6595c8f0/ruff-0.9.5-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl +- pypi: https://files.pythonhosted.org/packages/31/70/e917781e55ff39c5b5208bda384fd397ffd76605e68544d71a7e40944945/ruff-0.9.6-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl name: ruff - version: 0.9.5 - sha256: 2c746d7d1df64f31d90503ece5cc34d7007c06751a7a3bbeee10e5f2463d52d2 + version: 0.9.6 + sha256: dc61dd5131742e21103fbbdcad683a8813be0e3c204472d520d9a5021ca8b217 requires_python: '>=3.7' -- pypi: https://files.pythonhosted.org/packages/27/5c/f5ae0a9564e04108c132e1139d60491c0abc621397fe79a50b3dc0bd704b/ruff-0.9.5-py3-none-macosx_10_12_x86_64.whl +- pypi: https://files.pythonhosted.org/packages/e1/22/aff073b70f95c052e5c58153cba735748c9e70107a77d03420d7850710a0/ruff-0.9.6-py3-none-macosx_10_12_x86_64.whl name: ruff - version: 0.9.5 - sha256: 38840dbcef63948657fa7605ca363194d2fe8c26ce8f9ae12eee7f098c85ac8a + version: 0.9.6 + sha256: b908ff4df65dad7b251c9968a2e4560836d8f5487c2f0cc238321ed951ea0504 requires_python: '>=3.7' -- pypi: https://files.pythonhosted.org/packages/b7/ad/c7a900591bd152bb47fc4882a27654ea55c7973e6d5d6396298ad3fd6638/ruff-0.9.5-py3-none-win_amd64.whl +- pypi: https://files.pythonhosted.org/packages/ee/30/c3cee10f915ed75a5c29c1e57311282d1a15855551a64795c1b2bbe5cf37/ruff-0.9.6-py3-none-win_amd64.whl name: ruff - version: 0.9.5 - sha256: 78cc6067f6d80b6745b67498fb84e87d32c6fc34992b52bffefbdae3442967d6 + version: 0.9.6 + sha256: 03482d5c09d90d4ee3f40d97578423698ad895c87314c4de39ed2af945633caa requires_python: '>=3.7' - pypi: https://files.pythonhosted.org/packages/2b/bf/dd68965a4c5138a630eeed0baec9ae96e5d598887835bdde96cdd2fe4780/scipy-1.15.1-cp313-cp313-macosx_10_13_x86_64.whl name: scipy @@ -9302,6 +9399,56 @@ packages: version: 0.10.2 sha256: 806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b requires_python: '>=2.6,!=3.0.*,!=3.1.*,!=3.2.*' +- pypi: https://files.pythonhosted.org/packages/04/90/2ee5f2e0362cb8a0b6499dc44f4d7d48f8fff06d28ba46e6f1eaa61a1388/tomli-2.2.1-cp313-cp313-macosx_10_13_x86_64.whl + name: tomli + version: 2.2.1 + sha256: f4039b9cbc3048b2416cc57ab3bda989a6fcf9b36cf8937f01a6e731b64f80d7 + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/43/ca/75707e6efa2b37c77dadb324ae7d9571cb424e61ea73fad7c56c2d14527f/tomli-2.2.1-cp311-cp311-macosx_10_9_x86_64.whl + name: tomli + version: 2.2.1 + sha256: 678e4fa69e4575eb77d103de3df8a895e1591b48e740211bd1067378c69e8249 + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/52/e1/f8af4c2fcde17500422858155aeb0d7e93477a0d59a98e56cbfe75070fd0/tomli-2.2.1-cp312-cp312-macosx_10_13_x86_64.whl + name: tomli + version: 2.2.1 + sha256: 4a8f6e44de52d5e6c657c9fe83b562f5f4256d8ebbfe4ff922c495620a7f6cea + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/5c/51/51c3f2884d7bab89af25f678447ea7d297b53b5a3b5730a7cb2ef6069f07/tomli-2.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + name: tomli + version: 2.2.1 + sha256: db2b95f9de79181805df90bedc5a5ab4c165e6ec3fe99f970d0e302f384ad222 + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/6a/1c/4a2dcde4a51b81be3530565e92eda625d94dafb46dbeb15069df4caffc34/tomli-2.2.1-cp311-cp311-win_amd64.whl + name: tomli + version: 2.2.1 + sha256: 2d0f2fdd22b02c6d81637a3c95f8cd77f995846af7414c5c4b8d0545afa1bc4b + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/a9/6b/c54ede5dc70d648cc6361eaf429304b02f2871a345bbdd51e993d6cdf550/tomli-2.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + name: tomli + version: 2.2.1 + sha256: 6972ca9c9cc9f0acaa56a8ca1ff51e7af152a9f87fb64623e31d5c83700080ee + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/c7/32/b0963458706accd9afcfeb867c0f9175a741bf7b19cd424230714d722198/tomli-2.2.1-cp313-cp313-win_amd64.whl + name: tomli + version: 2.2.1 + sha256: a38aa0308e754b0e3c67e344754dff64999ff9b513e691d0e786265c93583c69 + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/d9/e5/82e80ff3b751373f7cead2815bcbe2d51c895b3c990686741a8e56ec42ab/tomli-2.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + name: tomli + version: 2.2.1 + sha256: 9316dc65bed1684c9a98ee68759ceaed29d229e985297003e494aa825ebb0281 + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/ef/60/9b9638f081c6f1261e2688bd487625cd1e660d0a85bd469e91d8db969734/tomli-2.2.1-cp312-cp312-win_amd64.whl + name: tomli + version: 2.2.1 + sha256: 7fc04e92e1d624a4a63c76474610238576942d6b8950a2d7f908a340494e67e4 + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/c7/18/c86eb8e0202e32dd3df50d43d7ff9854f8e0603945ff398974c1d91ac1ef/tomli_w-1.2.0-py3-none-any.whl + name: tomli-w + version: 1.2.0 + sha256: 188306098d013b691fcadc011abd66727d3c414c571bb01b1a174ba8c983cf90 + requires_python: '>=3.9' - pypi: https://files.pythonhosted.org/packages/03/98/eb27cc78ad3af8e302c9d8ff4977f5026676e130d28dd7578132a457170c/toolz-1.0.0-py3-none-any.whl name: toolz version: 1.0.0 @@ -9452,10 +9599,10 @@ packages: purls: [] size: 753531 timestamp: 1737627061911 -- pypi: https://files.pythonhosted.org/packages/89/9b/599bcfc7064fbe5740919e78c5df18e5dceb0887e676256a1061bb5ae232/virtualenv-20.29.1-py3-none-any.whl +- pypi: https://files.pythonhosted.org/packages/93/fa/849483d56773ae29740ae70043ad88e068f98a6401aa819b5d6bee604683/virtualenv-20.29.2-py3-none-any.whl name: virtualenv - version: 20.29.1 - sha256: 4e4cb403c0b0da39e13b46b1b2476e505cb0046b25f242bee80f62bf990b2779 + version: 20.29.2 + sha256: febddfc3d1ea571bdb1dc0f98d7b45d24def7428214d4fb73cc486c9568cce6a requires_dist: - distlib>=0.3.7,<1 - filelock>=3.12.2,<4 @@ -9481,18 +9628,6 @@ packages: - setuptools>=68 ; extra == 'test' - time-machine>=2.10 ; platform_python_implementation == 'CPython' and extra == 'test' requires_python: '>=3.8' -- conda: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.42.34433-hfef2bbc_24.conda - sha256: 09102e0bd283af65772c052d85028410b0c31989b3cd96c260485d28e270836e - md5: 117fcc5b86c48f3b322b0722258c7259 - depends: - - vc14_runtime >=14.42.34433 - arch: x86_64 - platform: win - license: BSD-3-Clause - license_family: BSD - purls: [] - size: 17669 - timestamp: 1737627066773 - pypi: https://files.pythonhosted.org/packages/fd/84/fd2ba7aafacbad3c4201d395674fc6348826569da3c0937e75505ead3528/wcwidth-0.2.13-py2.py3-none-any.whl name: wcwidth version: 0.2.13 diff --git a/pyproject.toml b/pyproject.toml index 359cb8ac..a31ad641 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -35,8 +35,9 @@ classifiers = [ requires-python = ">=3.11" dependencies = [ "attrs", # todo: bounds? + "beartype", "cattrs", # todo: bounds? - "flopy>=3.7.0", + "flopy", "Jinja2>=3.0", "lark", # todo: bounds? "numpy>=1.20.3", @@ -45,6 +46,7 @@ dependencies = [ "networkx>=3.4.2,<4", "xarray[parallel,io]>=2024.11.0,<2025", "scipy>=1.14.1,<2", + "modflow-devtools[dfn] @ git+https://github.com/MODFLOW-USGS/modflow-devtools.git", ] dynamic = ["version"] @@ -59,11 +61,11 @@ test = [ "jupyter", "jupytext", "modflow-devtools", - "mypy", "pooch>=1.8", "pytest!=8.1.0", "pytest-dotenv", "pytest-xdist", + "pytest-benchmark" ] build = ["build", "twine"] @@ -96,6 +98,7 @@ select = [ "I001", # isort - unsorted-imports ] ignore = [ + "F841", # local variable is assigned to but never used "F821", # undefined name TODO FIXME "E722", # do not use bare `except` "E741", # ambiguous variable name diff --git a/test/pytest.ini b/pytest.ini similarity index 69% rename from test/pytest.ini rename to pytest.ini index 286b9214..0e717d11 100644 --- a/test/pytest.ini +++ b/pytest.ini @@ -1,5 +1,5 @@ [pytest] -addopts = --color=yes +addopts = --color=yes --benchmark-disable python_files = test_*.py markers = diff --git a/spec/dfn/exg-gwfgwf.dfn b/spec/dfn/exg-gwfgwf.dfn deleted file mode 100644 index 0f68acea..00000000 --- a/spec/dfn/exg-gwfgwf.dfn +++ /dev/null @@ -1,321 +0,0 @@ -# --------------------- exg gwfgwf options --------------------- -# flopy multi-package - -block options -name auxiliary -type string -shape (naux) -reader urword -optional true -longname keyword to specify aux variables -description an array of auxiliary variable names. There is no limit on the number of auxiliary variables that can be provided. Most auxiliary variables will not be used by the GWF-GWF Exchange, but they will be available for use by other parts of the program. If an auxiliary variable with the name ``ANGLDEGX'' is found, then this information will be used as the angle (provided in degrees) between the connection face normal and the x axis, where a value of zero indicates that a normal vector points directly along the positive x axis. The connection face normal is a normal vector on the cell face shared between the cell in model 1 and the cell in model 2 pointing away from the model 1 cell. Additional information on ``ANGLDEGX'' and when it is required is provided in the description of the DISU Package. If an auxiliary variable with the name ``CDIST'' is found, then this information will be used in the calculation of specific discharge within model cells connected by the exchange. For a horizontal connection, CDIST should be specified as the horizontal distance between the cell centers, and should not include the vertical component. For vertical connections, CDIST should be specified as the difference in elevation between the two cell centers. Both ANGLDEGX and CDIST are required if specific discharge is calculated for either of the groundwater models. - - -block options -name boundnames -type keyword -shape -reader urword -optional true -longname -description REPLACE boundnames {'{#1}': 'GWF Exchange'} - -block options -name print_input -type keyword -reader urword -optional true -longname keyword to print input to list file -description keyword to indicate that the list of exchange entries will be echoed to the listing file immediately after it is read. -mf6internal iprpak - -block options -name print_flows -type keyword -reader urword -optional true -longname keyword to print gwfgwf flows to list file -description keyword to indicate that the list of exchange flow rates will be printed to the listing file for every stress period in which ``SAVE BUDGET'' is specified in Output Control. -mf6internal iprflow - -block options -name save_flows -type keyword -reader urword -optional true -longname keyword to save GWFGWF flows -description keyword to indicate that cell-by-cell flow terms will be written to the budget file for each model provided that the Output Control for the models are set up with the ``BUDGET SAVE FILE'' option. -mf6internal ipakcb - -block options -name cell_averaging -type string -valid harmonic logarithmic amt-lmk -reader urword -optional true -longname conductance weighting option -description is a keyword and text keyword to indicate the method that will be used for calculating the conductance for horizontal cell connections. The text value for CELL\_AVERAGING can be ``HARMONIC'', ``LOGARITHMIC'', or ``AMT-LMK'', which means ``arithmetic-mean thickness and logarithmic-mean hydraulic conductivity''. If the user does not specify a value for CELL\_AVERAGING, then the harmonic-mean method will be used. - -block options -name cvoptions -type record variablecv dewatered -reader urword -optional true -longname vertical conductance options -description none - -block options -name variablecv -in_record true -type keyword -reader urword -longname keyword to activate VARIABLECV option -description keyword to indicate that the vertical conductance will be calculated using the saturated thickness and properties of the overlying cell and the thickness and properties of the underlying cell. If the DEWATERED keyword is also specified, then the vertical conductance is calculated using only the saturated thickness and properties of the overlying cell if the head in the underlying cell is below its top. If these keywords are not specified, then the default condition is to calculate the vertical conductance at the start of the simulation using the initial head and the cell properties. The vertical conductance remains constant for the entire simulation. - -block options -name dewatered -in_record true -type keyword -reader urword -optional true -longname keyword to activate DEWATERED option -description If the DEWATERED keyword is specified, then the vertical conductance is calculated using only the saturated thickness and properties of the overlying cell if the head in the underlying cell is below its top. - -block options -name newton -type keyword -reader urword -optional true -longname keyword to activate Newton-Raphson -description keyword that activates the Newton-Raphson formulation for groundwater flow between connected, convertible groundwater cells. Cells will not dry when this option is used. - -block options -name xt3d -type keyword -reader urword -optional true -longname keyword to activate XT3D -description keyword that activates the XT3D formulation between the cells connected with this GWF-GWF Exchange. - -block options -name gnc_filerecord -type record gnc6 filein gnc6_filename -shape -reader urword -tagged true -optional true -longname -description - -block options -name filein -type keyword -shape -in_record true -reader urword -tagged true -optional false -longname file keyword -description keyword to specify that an input filename is expected next. - -block options -name gnc6 -type keyword -shape -in_record true -reader urword -tagged true -optional false -longname gnc6 keyword -description keyword to specify that record corresponds to a ghost-node correction file. - -block options -name gnc6_filename -type string -preserve_case true -in_record true -tagged false -reader urword -optional false -longname gnc6 input filename -description is the file name for ghost node correction input file. Information for the ghost nodes are provided in the file provided with these keywords. The format for specifying the ghost nodes is the same as described for the GNC Package of the GWF Model. This includes specifying OPTIONS, DIMENSIONS, and GNCDATA blocks. The order of the ghost nodes must follow the same order as the order of the cells in the EXCHANGEDATA block. For the GNCDATA, noden and all of the nodej values are assumed to be located in model 1, and nodem is assumed to be in model 2. - -block options -name mvr_filerecord -type record mvr6 filein mvr6_filename -shape -reader urword -tagged true -optional true -longname -description - -block options -name mvr6 -type keyword -shape -in_record true -reader urword -tagged true -optional false -longname obs keyword -description keyword to specify that record corresponds to a mover file. - -block options -name mvr6_filename -type string -preserve_case true -in_record true -tagged false -reader urword -optional false -longname mvr6 input filename -description is the file name of the water mover input file to apply to this exchange. Information for the water mover are provided in the file provided with these keywords. The format for specifying the water mover information is the same as described for the Water Mover (MVR) Package of the GWF Model, with two exceptions. First, in the PACKAGES block, the model name must be included as a separate string before each package. Second, the appropriate model name must be included before package name 1 and package name 2 in the BEGIN PERIOD block. This allows providers and receivers to be located in both models listed as part of this exchange. - -block options -name obs_filerecord -type record obs6 filein obs6_filename -shape -reader urword -tagged true -optional true -longname -description - -block options -name obs6 -type keyword -shape -in_record true -reader urword -tagged true -optional false -longname obs keyword -description keyword to specify that record corresponds to an observations file. - -block options -name obs6_filename -type string -preserve_case true -in_record true -tagged false -reader urword -optional false -longname obs6 input filename -description is the file name of the observations input file for this exchange. See the ``Observation utility'' section for instructions for preparing observation input files. Table \ref{table:gwf-obstypetable} lists observation type(s) supported by the GWF-GWF package. - -block options -name dev_interfacemodel_on -type keyword -reader urword -optional true -longname activate interface model on exchange -description activates the interface model mechanism for calculating the coefficients at (and possibly near) the exchange. This keyword should only be used for development purposes. -mf6internal dev_ifmod_on - -# --------------------- exg gwfgwf dimensions --------------------- - -block dimensions -name nexg -type integer -reader urword -optional false -longname number of exchanges -description keyword and integer value specifying the number of GWF-GWF exchanges. - - -# --------------------- exg gwfgwf exchangedata --------------------- - -block exchangedata -name exchangedata -type recarray cellidm1 cellidm2 ihc cl1 cl2 hwva aux boundname -shape (nexg) -reader urword -optional false -longname exchange data -description - -block exchangedata -name cellidm1 -type integer -in_record true -tagged false -reader urword -optional false -longname cellid of first cell -description is the cellid of the cell in model 1 as specified in the simulation name file. For a structured grid that uses the DIS input file, CELLIDM1 is the layer, row, and column numbers of the cell. For a grid that uses the DISV input file, CELLIDM1 is the layer number and CELL2D number for the two cells. If the model uses the unstructured discretization (DISU) input file, then CELLIDM1 is the node number for the cell. -numeric_index true - -block exchangedata -name cellidm2 -type integer -in_record true -tagged false -reader urword -optional false -longname cellid of second cell -description is the cellid of the cell in model 2 as specified in the simulation name file. For a structured grid that uses the DIS input file, CELLIDM2 is the layer, row, and column numbers of the cell. For a grid that uses the DISV input file, CELLIDM2 is the layer number and CELL2D number for the two cells. If the model uses the unstructured discretization (DISU) input file, then CELLIDM2 is the node number for the cell. -numeric_index true - -block exchangedata -name ihc -type integer -in_record true -tagged false -reader urword -optional false -longname integer flag for connection type -description is an integer flag indicating the direction between node n and all of its m connections. If IHC = 0 then the connection is vertical. If IHC = 1 then the connection is horizontal. If IHC = 2 then the connection is horizontal for a vertically staggered grid. - -block exchangedata -name cl1 -type double precision -in_record true -tagged false -reader urword -optional false -longname connection distance -description is the distance between the center of cell 1 and the its shared face with cell 2. - -block exchangedata -name cl2 -type double precision -in_record true -tagged false -reader urword -optional false -longname connection distance -description is the distance between the center of cell 2 and the its shared face with cell 1. - -block exchangedata -name hwva -type double precision -in_record true -tagged false -reader urword -optional false -longname horizontal cell width or area for vertical flow -description is the horizontal width of the flow connection between cell 1 and cell 2 if IHC $>$ 0, or it is the area perpendicular to flow of the vertical connection between cell 1 and cell 2 if IHC = 0. - -block exchangedata -name aux -type double precision -in_record true -tagged false -shape (naux) -reader urword -optional true -longname auxiliary variables -description represents the values of the auxiliary variables for each GWFGWF Exchange. The values of auxiliary variables must be present for each exchange. The values must be specified in the order of the auxiliary variables specified in the OPTIONS block. -mf6internal auxvar - -block exchangedata -name boundname -type string -shape -tagged false -in_record true -reader urword -optional true -longname exchange boundname -description REPLACE boundname {'{#1}': 'GWF Exchange'} diff --git a/spec/dfn/gwe-dis.dfn b/spec/dfn/gwe-dis.dfn deleted file mode 100644 index d8c77125..00000000 --- a/spec/dfn/gwe-dis.dfn +++ /dev/null @@ -1,180 +0,0 @@ -# --------------------- gwe dis options --------------------- -# mf6 subpackage utl-ncf - -block options -name length_units -type string -reader urword -optional true -longname model length units -description is the length units used for this model. Values can be ``FEET'', ``METERS'', or ``CENTIMETERS''. If not specified, the default is ``UNKNOWN''. - -block options -name nogrb -type keyword -reader urword -optional true -longname do not write binary grid file -description keyword to deactivate writing of the binary grid file. - -block options -name xorigin -type double precision -reader urword -optional true -longname x-position of the model grid origin -description x-position of the lower-left corner of the model grid. A default value of zero is assigned if not specified. The value for XORIGIN does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space. - -block options -name yorigin -type double precision -reader urword -optional true -longname y-position of the model grid origin -description y-position of the lower-left corner of the model grid. If not specified, then a default value equal to zero is used. The value for YORIGIN does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space. - -block options -name angrot -type double precision -reader urword -optional true -longname rotation angle -description counter-clockwise rotation angle (in degrees) of the lower-left corner of the model grid. If not specified, then a default value of 0.0 is assigned. The value for ANGROT does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space. - -block options -name export_array_ascii -type keyword -reader urword -optional true -mf6internal export_ascii -longname export array variables to layered ascii files. -description keyword that specifies input griddata arrays should be written to layered ascii output files. - -block options -name export_array_netcdf -type keyword -reader urword -optional true -mf6internal export_nc -longname export array variables to netcdf output files. -description keyword that specifies input griddata arrays should be written to the model output netcdf file. - -block options -name ncf_filerecord -type record ncf6 filein ncf6_filename -reader urword -tagged true -optional true -longname -description - -block options -name ncf6 -type keyword -in_record true -reader urword -tagged true -optional false -longname ncf keyword -description keyword to specify that record corresponds to a netcdf configuration (NCF) file. - -block options -name filein -type keyword -in_record true -reader urword -tagged true -optional false -longname file keyword -description keyword to specify that an input filename is expected next. - -block options -name ncf6_filename -type string -preserve_case true -in_record true -reader urword -optional false -tagged false -longname file name of NCF information -description defines a netcdf configuration (NCF) input file. - -# --------------------- gwe dis dimensions --------------------- - -block dimensions -name nlay -type integer -reader urword -optional false -longname number of layers -description is the number of layers in the model grid. -default_value 1 - -block dimensions -name nrow -type integer -reader urword -optional false -longname number of rows -description is the number of rows in the model grid. -default_value 2 - -block dimensions -name ncol -type integer -reader urword -optional false -longname number of columns -description is the number of columns in the model grid. -default_value 2 - -# --------------------- gwe dis griddata --------------------- - -block griddata -name delr -type double precision -shape (ncol) -reader readarray -longname spacing along a row -description is the column spacing in the row direction. -default_value 1.0 - -block griddata -name delc -type double precision -shape (nrow) -reader readarray -longname spacing along a column -description is the row spacing in the column direction. -default_value 1.0 - -block griddata -name top -type double precision -shape (ncol, nrow) -reader readarray -longname cell top elevation -description is the top elevation for each cell in the top model layer. -default_value 1.0 - -block griddata -name botm -type double precision -shape (ncol, nrow, nlay) -reader readarray -layered true -longname cell bottom elevation -description is the bottom elevation for each cell. -default_value 0. - -block griddata -name idomain -type integer -shape (ncol, nrow, nlay) -reader readarray -layered true -optional true -longname idomain existence array -description is an optional array that characterizes the existence status of a cell. If the IDOMAIN array is not specified, then all model cells exist within the solution. If the IDOMAIN value for a cell is 0, the cell does not exist in the simulation. Input and output values will be read and written for the cell, but internal to the program, the cell is excluded from the solution. If the IDOMAIN value for a cell is 1, the cell exists in the simulation. If the IDOMAIN value for a cell is -1, the cell does not exist in the simulation. Furthermore, the first existing cell above will be connected to the first existing cell below. This type of cell is referred to as a ``vertical pass through'' cell. - - diff --git a/spec/dfn/gwe-disu.dfn b/spec/dfn/gwe-disu.dfn deleted file mode 100644 index 1b203560..00000000 --- a/spec/dfn/gwe-disu.dfn +++ /dev/null @@ -1,286 +0,0 @@ -# --------------------- gwe disu options --------------------- - -block options -name length_units -type string -reader urword -optional true -longname model length units -description is the length units used for this model. Values can be ``FEET'', ``METERS'', or ``CENTIMETERS''. If not specified, the default is ``UNKNOWN''. - -block options -name nogrb -type keyword -reader urword -optional true -longname do not write binary grid file -description keyword to deactivate writing of the binary grid file. - -block options -name xorigin -type double precision -reader urword -optional true -longname x-position origin of the model grid coordinate system -description x-position of the origin used for model grid vertices. This value should be provided in a real-world coordinate system. A default value of zero is assigned if not specified. The value for XORIGIN does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space. - -block options -name yorigin -type double precision -reader urword -optional true -longname y-position origin of the model grid coordinate system -description y-position of the origin used for model grid vertices. This value should be provided in a real-world coordinate system. If not specified, then a default value equal to zero is used. The value for YORIGIN does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space. - -block options -name angrot -type double precision -reader urword -optional true -longname rotation angle -description counter-clockwise rotation angle (in degrees) of the model grid coordinate system relative to a real-world coordinate system. If not specified, then a default value of 0.0 is assigned. The value for ANGROT does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space. - -block options -name vertical_offset_tolerance -type double precision -reader urword -optional true -default_value 0.0 -longname vertical length dimension for top and bottom checking -description checks are performed to ensure that the top of a cell is not higher than the bottom of an overlying cell. This option can be used to specify the tolerance that is used for checking. If top of a cell is above the bottom of an overlying cell by a value less than this tolerance, then the program will not terminate with an error. The default value is zero. This option should generally not be used. -mf6internal voffsettol - -block options -name export_array_ascii -type keyword -reader urword -optional true -mf6internal export_ascii -longname export array variables to layered ascii files. -description keyword that specifies input griddata arrays should be written to layered ascii output files. - -# --------------------- gwe disu dimensions --------------------- - -block dimensions -name nodes -type integer -reader urword -optional false -longname number of layers -description is the number of cells in the model grid. - -block dimensions -name nja -type integer -reader urword -optional false -longname number of columns -description is the sum of the number of connections and NODES. When calculating the total number of connections, the connection between cell n and cell m is considered to be different from the connection between cell m and cell n. Thus, NJA is equal to the total number of connections, including n to m and m to n, and the total number of cells. - -block dimensions -name nvert -type integer -reader urword -optional true -longname number of vertices -description is the total number of (x, y) vertex pairs used to define the plan-view shape of each cell in the model grid. If NVERT is not specified or is specified as zero, then the VERTICES and CELL2D blocks below are not read. NVERT and the accompanying VERTICES and CELL2D blocks should be specified for most simulations. If the XT3D or SAVE\_SPECIFIC\_DISCHARGE options are specified in the NPF Package, then this information is required. - -# --------------------- gwe disu griddata --------------------- - -block griddata -name top -type double precision -shape (nodes) -reader readarray -longname cell top elevation -description is the top elevation for each cell in the model grid. - -block griddata -name bot -type double precision -shape (nodes) -reader readarray -longname cell bottom elevation -description is the bottom elevation for each cell. - -block griddata -name area -type double precision -shape (nodes) -reader readarray -longname cell surface area -description is the cell surface area (in plan view). - -block griddata -name idomain -type integer -shape (nodes) -reader readarray -layered false -optional true -longname idomain existence array -description is an optional array that characterizes the existence status of a cell. If the IDOMAIN array is not specified, then all model cells exist within the solution. If the IDOMAIN value for a cell is 0, the cell does not exist in the simulation. Input and output values will be read and written for the cell, but internal to the program, the cell is excluded from the solution. If the IDOMAIN value for a cell is 1 or greater, the cell exists in the simulation. IDOMAIN values of -1 cannot be specified for the DISU Package. - -# --------------------- gwe disu connectiondata --------------------- - -block connectiondata -name iac -type integer -shape (nodes) -reader readarray -longname number of cell connections -description is the number of connections (plus 1) for each cell. The sum of all the entries in IAC must be equal to NJA. - -block connectiondata -name ja -type integer -shape (nja) -reader readarray -longname grid connectivity -description is a list of cell number (n) followed by its connecting cell numbers (m) for each of the m cells connected to cell n. The number of values to provide for cell n is IAC(n). This list is sequentially provided for the first to the last cell. The first value in the list must be cell n itself, and the remaining cells must be listed in an increasing order (sorted from lowest number to highest). Note that the cell and its connections are only supplied for the GWE cells and their connections to the other GWE cells. Also note that the JA list input may be divided such that every node and its connectivity list can be on a separate line for ease in readability of the file. To further ease readability of the file, the node number of the cell whose connectivity is subsequently listed, may be expressed as a negative number, the sign of which is subsequently converted to positive by the code. -numeric_index true -jagged_array iac - -block connectiondata -name ihc -type integer -shape (nja) -reader readarray -longname connection type -description is an index array indicating the direction between node n and all of its m connections. If IHC = 0 then cell n and cell m are connected in the vertical direction. Cell n overlies cell m if the cell number for n is less than m; cell m overlies cell n if the cell number for m is less than n. If IHC = 1 then cell n and cell m are connected in the horizontal direction. If IHC = 2 then cell n and cell m are connected in the horizontal direction, and the connection is vertically staggered. A vertically staggered connection is one in which a cell is horizontally connected to more than one cell in a horizontal connection. -jagged_array iac - -block connectiondata -name cl12 -type double precision -shape (nja) -reader readarray -longname connection lengths -description is the array containing connection lengths between the center of cell n and the shared face with each adjacent m cell. -jagged_array iac - -block connectiondata -name hwva -type double precision -shape (nja) -reader readarray -longname connection lengths -description is a symmetric array of size NJA. For horizontal connections, entries in HWVA are the horizontal width perpendicular to flow. For vertical connections, entries in HWVA are the vertical area for flow. Thus, values in the HWVA array contain dimensions of both length and area. Entries in the HWVA array have a one-to-one correspondence with the connections specified in the JA array. Likewise, there is a one-to-one correspondence between entries in the HWVA array and entries in the IHC array, which specifies the connection type (horizontal or vertical). Entries in the HWVA array must be symmetric; the program will terminate with an error if the value for HWVA for an n to m connection does not equal the value for HWVA for the corresponding n to m connection. -jagged_array iac - -block connectiondata -name angldegx -type double precision -optional true -shape (nja) -reader readarray -longname angle of face normal to connection -description is the angle (in degrees) between the horizontal x-axis and the outward normal to the face between a cell and its connecting cells. The angle varies between zero and 360.0 degrees, where zero degrees points in the positive x-axis direction, and 90 degrees points in the positive y-axis direction. ANGLDEGX is only needed if horizontal anisotropy is specified in the NPF Package, if the XT3D option is used in the NPF Package, or if the SAVE\_SPECIFIC\_DISCHARGE option is specified in the NPF Package. ANGLDEGX does not need to be specified if these conditions are not met. ANGLDEGX is of size NJA; values specified for vertical connections and for the diagonal position are not used. Note that ANGLDEGX is read in degrees, which is different from MODFLOW-USG, which reads a similar variable (ANGLEX) in radians. -jagged_array iac - -# --------------------- gwe disu vertices --------------------- - -block vertices -name vertices -type recarray iv xv yv -shape (nvert) -reader urword -optional false -longname vertices data -description - -block vertices -name iv -type integer -in_record true -tagged false -reader urword -optional false -longname vertex number -description is the vertex number. Records in the VERTICES block must be listed in consecutive order from 1 to NVERT. -numeric_index true - -block vertices -name xv -type double precision -in_record true -tagged false -reader urword -optional false -longname x-coordinate for vertex -description is the x-coordinate for the vertex. - -block vertices -name yv -type double precision -in_record true -tagged false -reader urword -optional false -longname y-coordinate for vertex -description is the y-coordinate for the vertex. - - -# --------------------- gwe disu cell2d --------------------- - -block cell2d -name cell2d -type recarray icell2d xc yc ncvert icvert -shape (nodes) -reader urword -optional false -longname cell2d data -description - -block cell2d -name icell2d -type integer -in_record true -tagged false -reader urword -optional false -longname cell2d number -description is the cell2d number. Records in the CELL2D block must be listed in consecutive order from 1 to NODES. -numeric_index true - -block cell2d -name xc -type double precision -in_record true -tagged false -reader urword -optional false -longname x-coordinate for cell center -description is the x-coordinate for the cell center. - -block cell2d -name yc -type double precision -in_record true -tagged false -reader urword -optional false -longname y-coordinate for cell center -description is the y-coordinate for the cell center. - -block cell2d -name ncvert -type integer -in_record true -tagged false -reader urword -optional false -longname number of cell vertices -description is the number of vertices required to define the cell. There may be a different number of vertices for each cell. - -block cell2d -name icvert -type integer -shape (ncvert) -in_record true -tagged false -reader urword -optional false -longname array of vertex numbers -description is an array of integer values containing vertex numbers (in the VERTICES block) used to define the cell. Vertices must be listed in clockwise order. -numeric_index true diff --git a/spec/dfn/gwe-disv.dfn b/spec/dfn/gwe-disv.dfn deleted file mode 100644 index 9216bb24..00000000 --- a/spec/dfn/gwe-disv.dfn +++ /dev/null @@ -1,263 +0,0 @@ -# --------------------- gwe disv options --------------------- -# mf6 subpackage utl-ncf - -block options -name length_units -type string -reader urword -optional true -longname model length units -description is the length units used for this model. Values can be ``FEET'', ``METERS'', or ``CENTIMETERS''. If not specified, the default is ``UNKNOWN''. - -block options -name nogrb -type keyword -reader urword -optional true -longname do not write binary grid file -description keyword to deactivate writing of the binary grid file. - -block options -name xorigin -type double precision -reader urword -optional true -longname x-position origin of the model grid coordinate system -description x-position of the origin used for model grid vertices. This value should be provided in a real-world coordinate system. A default value of zero is assigned if not specified. The value for XORIGIN does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space. - -block options -name yorigin -type double precision -reader urword -optional true -longname y-position origin of the model grid coordinate system -description y-position of the origin used for model grid vertices. This value should be provided in a real-world coordinate system. If not specified, then a default value equal to zero is used. The value for YORIGIN does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space. - -block options -name angrot -type double precision -reader urword -optional true -longname rotation angle -description counter-clockwise rotation angle (in degrees) of the model grid coordinate system relative to a real-world coordinate system. If not specified, then a default value of 0.0 is assigned. The value for ANGROT does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space. - -block options -name export_array_ascii -type keyword -reader urword -optional true -mf6internal export_ascii -longname export array variables to layered ascii files. -description keyword that specifies input griddata arrays should be written to layered ascii output files. - -block options -name export_array_netcdf -type keyword -reader urword -optional true -mf6internal export_nc -longname export array variables to netcdf output files. -description keyword that specifies input griddata arrays should be written to the model output netcdf file. - -block options -name ncf_filerecord -type record ncf6 filein ncf6_filename -reader urword -tagged true -optional true -longname -description - -block options -name ncf6 -type keyword -in_record true -reader urword -tagged true -optional false -longname ncf keyword -description keyword to specify that record corresponds to a netcdf configuration (NCF) file. - -block options -name filein -type keyword -in_record true -reader urword -tagged true -optional false -longname file keyword -description keyword to specify that an input filename is expected next. - -block options -name ncf6_filename -type string -preserve_case true -in_record true -reader urword -optional false -tagged false -longname file name of NCF information -description defines a netcdf configuration (NCF) input file. - -# --------------------- gwe disv dimensions --------------------- - -block dimensions -name nlay -type integer -reader urword -optional false -longname number of layers -description is the number of layers in the model grid. - -block dimensions -name ncpl -type integer -reader urword -optional false -longname number of cells per layer -description is the number of cells per layer. This is a constant value for the grid and it applies to all layers. - -block dimensions -name nvert -type integer -reader urword -optional false -longname number of columns -description is the total number of (x, y) vertex pairs used to characterize the horizontal configuration of the model grid. - -# --------------------- gwe disv griddata --------------------- - -block griddata -name top -type double precision -shape (ncpl) -reader readarray -longname model top elevation -description is the top elevation for each cell in the top model layer. - -block griddata -name botm -type double precision -shape (ncpl, nlay) -reader readarray -layered true -longname model bottom elevation -description is the bottom elevation for each cell. - -block griddata -name idomain -type integer -shape (ncpl, nlay) -reader readarray -layered true -optional true -longname idomain existence array -description is an optional array that characterizes the existence status of a cell. If the IDOMAIN array is not specified, then all model cells exist within the solution. If the IDOMAIN value for a cell is 0, the cell does not exist in the simulation. Input and output values will be read and written for the cell, but internal to the program, the cell is excluded from the solution. If the IDOMAIN value for a cell is 1, the cell exists in the simulation. If the IDOMAIN value for a cell is -1, the cell does not exist in the simulation. Furthermore, the first existing cell above will be connected to the first existing cell below. This type of cell is referred to as a ``vertical pass through'' cell. - - -# --------------------- gwe disv vertices --------------------- - -block vertices -name vertices -type recarray iv xv yv -shape (nvert) -reader urword -optional false -longname vertices data -description - -block vertices -name iv -type integer -in_record true -tagged false -reader urword -optional false -longname vertex number -description is the vertex number. Records in the VERTICES block must be listed in consecutive order from 1 to NVERT. -numeric_index true - -block vertices -name xv -type double precision -in_record true -tagged false -reader urword -optional false -longname x-coordinate for vertex -description is the x-coordinate for the vertex. - -block vertices -name yv -type double precision -in_record true -tagged false -reader urword -optional false -longname y-coordinate for vertex -description is the y-coordinate for the vertex. - - -# --------------------- gwe disv cell2d --------------------- - -block cell2d -name cell2d -type recarray icell2d xc yc ncvert icvert -shape (ncpl) -reader urword -optional false -longname cell2d data -description - -block cell2d -name icell2d -type integer -in_record true -tagged false -reader urword -optional false -longname cell2d number -description is the CELL2D number. Records in the CELL2D block must be listed in consecutive order from the first to the last. -numeric_index true - -block cell2d -name xc -type double precision -in_record true -tagged false -reader urword -optional false -longname x-coordinate for cell center -description is the x-coordinate for the cell center. - -block cell2d -name yc -type double precision -in_record true -tagged false -reader urword -optional false -longname y-coordinate for cell center -description is the y-coordinate for the cell center. - -block cell2d -name ncvert -type integer -in_record true -tagged false -reader urword -optional false -longname number of cell vertices -description is the number of vertices required to define the cell. There may be a different number of vertices for each cell. - -block cell2d -name icvert -type integer -shape (ncvert) -in_record true -tagged false -reader urword -optional false -longname array of vertex numbers -description is an array of integer values containing vertex numbers (in the VERTICES block) used to define the cell. Vertices must be listed in clockwise order. Cells that are connected must share vertices. -numeric_index true diff --git a/spec/dfn/gwf-chd.dfn b/spec/dfn/gwf-chd.dfn deleted file mode 100644 index 56e3ca30..00000000 --- a/spec/dfn/gwf-chd.dfn +++ /dev/null @@ -1,222 +0,0 @@ -# --------------------- gwf chd options --------------------- -# flopy multi-package -# package-type stress-package - -block options -name auxiliary -type string -shape (naux) -reader urword -optional true -longname keyword to specify aux variables -description REPLACE auxnames {'{#1}': 'Groundwater Flow'} - -block options -name auxmultname -type string -shape -reader urword -optional true -longname name of auxiliary variable for multiplier -description REPLACE auxmultname {'{#1}': 'CHD head value'} - -block options -name boundnames -type keyword -shape -reader urword -optional true -longname -description REPLACE boundnames {'{#1}': 'constant-head'} - -block options -name print_input -type keyword -reader urword -optional true -longname print input to listing file -description REPLACE print_input {'{#1}': 'constant-head'} -mf6internal iprpak - -block options -name print_flows -type keyword -reader urword -optional true -longname print CHD flows to listing file -description REPLACE print_flows {'{#1}': 'constant-head'} -mf6internal iprflow - -block options -name save_flows -type keyword -reader urword -optional true -longname save CHD flows to budget file -description REPLACE save_flows {'{#1}': 'constant-head'} -mf6internal ipakcb - -block options -name ts_filerecord -type record ts6 filein ts6_filename -shape -reader urword -tagged true -optional true -longname -description - -block options -name ts6 -type keyword -shape -in_record true -reader urword -tagged true -optional false -longname head keyword -description keyword to specify that record corresponds to a time-series file. - -block options -name filein -type keyword -shape -in_record true -reader urword -tagged true -optional false -longname file keyword -description keyword to specify that an input filename is expected next. - -block options -name ts6_filename -type string -preserve_case true -in_record true -reader urword -optional false -tagged false -longname file name of time series information -description REPLACE timeseriesfile {} - -block options -name obs_filerecord -type record obs6 filein obs6_filename -shape -reader urword -tagged true -optional true -longname -description - -block options -name obs6 -type keyword -shape -in_record true -reader urword -tagged true -optional false -longname obs keyword -description keyword to specify that record corresponds to an observations file. - -block options -name obs6_filename -type string -preserve_case true -in_record true -tagged false -reader urword -optional false -longname obs6 input filename -description REPLACE obs6_filename {'{#1}': 'constant-head'} - -# dev options -block options -name dev_no_newton -type keyword -reader urword -optional true -longname turn off Newton for unconfined cells -description turn off Newton for unconfined cells -mf6internal inewton - -# --------------------- gwf chd dimensions --------------------- - -block dimensions -name maxbound -type integer -reader urword -optional false -longname maximum number of constant heads -description REPLACE maxbound {'{#1}': 'constant-head'} - - -# --------------------- gwf chd period --------------------- - -block period -name iper -type integer -block_variable True -in_record true -tagged false -shape -valid -reader urword -optional false -longname stress period number -description REPLACE iper {} - -block period -name stress_period_data -type recarray cellid head aux boundname -shape (maxbound) -reader urword -longname -description -mf6internal spd - -block period -name cellid -type integer -shape (ncelldim) -tagged false -in_record true -reader urword -longname cell identifier -description REPLACE cellid {} - -block period -name head -type double precision -shape -tagged false -in_record true -reader urword -time_series true -longname head value assigned to constant head -description is the head at the boundary. If the Options block includes a TIMESERIESFILE entry (see the ``Time-Variable Input'' section), values can be obtained from a time series by entering the time-series name in place of a numeric value. - -block period -name aux -type double precision -in_record true -tagged false -shape (naux) -reader urword -optional true -time_series true -longname auxiliary variables -description REPLACE aux {'{#1}': 'constant head'} -mf6internal auxvar - -block period -name boundname -type string -shape -tagged false -in_record true -reader urword -optional true -longname constant head boundary name -description REPLACE boundname {'{#1}': 'constant head boundary'} diff --git a/spec/dfn/gwf-dis.dfn b/spec/dfn/gwf-dis.dfn deleted file mode 100644 index fd6c553e..00000000 --- a/spec/dfn/gwf-dis.dfn +++ /dev/null @@ -1,178 +0,0 @@ -# --------------------- gwf dis options --------------------- -# mf6 subpackage utl-ncf - -block options -name length_units -type string -reader urword -optional true -longname model length units -description is the length units used for this model. Values can be ``FEET'', ``METERS'', or ``CENTIMETERS''. If not specified, the default is ``UNKNOWN''. - -block options -name nogrb -type keyword -reader urword -optional true -longname do not write binary grid file -description keyword to deactivate writing of the binary grid file. - -block options -name xorigin -type double precision -reader urword -optional true -longname x-position of the model grid origin -description x-position of the lower-left corner of the model grid. A default value of zero is assigned if not specified. The value for XORIGIN does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space. - -block options -name yorigin -type double precision -reader urword -optional true -longname y-position of the model grid origin -description y-position of the lower-left corner of the model grid. If not specified, then a default value equal to zero is used. The value for YORIGIN does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space. - -block options -name angrot -type double precision -reader urword -optional true -longname rotation angle -description counter-clockwise rotation angle (in degrees) of the lower-left corner of the model grid. If not specified, then a default value of 0.0 is assigned. The value for ANGROT does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space. - -block options -name export_array_ascii -type keyword -reader urword -optional true -mf6internal export_ascii -longname export array variables to layered ascii files. -description keyword that specifies input griddata arrays should be written to layered ascii output files. - -block options -name export_array_netcdf -type keyword -reader urword -optional true -mf6internal export_nc -longname export array variables to netcdf output files. -description keyword that specifies input griddata arrays should be written to the model output netcdf file. - -block options -name ncf_filerecord -type record ncf6 filein ncf6_filename -reader urword -tagged true -optional true -longname -description - -block options -name ncf6 -type keyword -in_record true -reader urword -tagged true -optional false -longname ncf keyword -description keyword to specify that record corresponds to a netcdf configuration (NCF) file. - -block options -name filein -type keyword -in_record true -reader urword -tagged true -optional false -longname file keyword -description keyword to specify that an input filename is expected next. - -block options -name ncf6_filename -type string -preserve_case true -in_record true -reader urword -optional false -tagged false -longname file name of NCF information -description defines a netcdf configuration (NCF) input file. - -# --------------------- gwf dis dimensions --------------------- - -block dimensions -name nlay -type integer -reader urword -optional false -longname number of layers -description is the number of layers in the model grid. -default_value 1 - -block dimensions -name nrow -type integer -reader urword -optional false -longname number of rows -description is the number of rows in the model grid. -default_value 2 - -block dimensions -name ncol -type integer -reader urword -optional false -longname number of columns -description is the number of columns in the model grid. -default_value 2 - -# --------------------- gwf dis griddata --------------------- - -block griddata -name delr -type double precision -shape (ncol) -reader readarray -longname spacing along a row -description is the column spacing in the row direction. -default_value 1.0 - -block griddata -name delc -type double precision -shape (nrow) -reader readarray -longname spacing along a column -description is the row spacing in the column direction. -default_value 1.0 - -block griddata -name top -type double precision -shape (ncol, nrow) -reader readarray -longname cell top elevation -description is the top elevation for each cell in the top model layer. -default_value 1.0 - -block griddata -name botm -type double precision -shape (ncol, nrow, nlay) -reader readarray -layered true -longname cell bottom elevation -description is the bottom elevation for each cell. -default_value 0. - -block griddata -name idomain -type integer -shape (ncol, nrow, nlay) -reader readarray -layered true -optional true -longname idomain existence array -description is an optional array that characterizes the existence status of a cell. If the IDOMAIN array is not specified, then all model cells exist within the solution. If the IDOMAIN value for a cell is 0, the cell does not exist in the simulation. Input and output values will be read and written for the cell, but internal to the program, the cell is excluded from the solution. If the IDOMAIN value for a cell is 1 or greater, the cell exists in the simulation. If the IDOMAIN value for a cell is -1, the cell does not exist in the simulation. Furthermore, the first existing cell above will be connected to the first existing cell below. This type of cell is referred to as a ``vertical pass through'' cell. diff --git a/spec/dfn/gwf-disu.dfn b/spec/dfn/gwf-disu.dfn deleted file mode 100644 index be7be430..00000000 --- a/spec/dfn/gwf-disu.dfn +++ /dev/null @@ -1,286 +0,0 @@ -# --------------------- gwf disu options --------------------- - -block options -name length_units -type string -reader urword -optional true -longname model length units -description is the length units used for this model. Values can be ``FEET'', ``METERS'', or ``CENTIMETERS''. If not specified, the default is ``UNKNOWN''. - -block options -name nogrb -type keyword -reader urword -optional true -longname do not write binary grid file -description keyword to deactivate writing of the binary grid file. - -block options -name xorigin -type double precision -reader urword -optional true -longname x-position origin of the model grid coordinate system -description x-position of the origin used for model grid vertices. This value should be provided in a real-world coordinate system. A default value of zero is assigned if not specified. The value for XORIGIN does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space. - -block options -name yorigin -type double precision -reader urword -optional true -longname y-position origin of the model grid coordinate system -description y-position of the origin used for model grid vertices. This value should be provided in a real-world coordinate system. If not specified, then a default value equal to zero is used. The value for YORIGIN does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space. - -block options -name angrot -type double precision -reader urword -optional true -longname rotation angle -description counter-clockwise rotation angle (in degrees) of the model grid coordinate system relative to a real-world coordinate system. If not specified, then a default value of 0.0 is assigned. The value for ANGROT does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space. - -block options -name vertical_offset_tolerance -type double precision -reader urword -optional true -default_value 0.0 -longname vertical length dimension for top and bottom checking -description checks are performed to ensure that the top of a cell is not higher than the bottom of an overlying cell. This option can be used to specify the tolerance that is used for checking. If top of a cell is above the bottom of an overlying cell by a value less than this tolerance, then the program will not terminate with an error. The default value is zero. This option should generally not be used. -mf6internal voffsettol - -block options -name export_array_ascii -type keyword -reader urword -optional true -mf6internal export_ascii -longname export array variables to layered ascii files. -description keyword that specifies input griddata arrays should be written to layered ascii output files. - -# --------------------- gwf disu dimensions --------------------- - -block dimensions -name nodes -type integer -reader urword -optional false -longname number of layers -description is the number of cells in the model grid. - -block dimensions -name nja -type integer -reader urword -optional false -longname number of columns -description is the sum of the number of connections and NODES. When calculating the total number of connections, the connection between cell n and cell m is considered to be different from the connection between cell m and cell n. Thus, NJA is equal to the total number of connections, including n to m and m to n, and the total number of cells. - -block dimensions -name nvert -type integer -reader urword -optional true -longname number of vertices -description is the total number of (x, y) vertex pairs used to define the plan-view shape of each cell in the model grid. If NVERT is not specified or is specified as zero, then the VERTICES and CELL2D blocks below are not read. NVERT and the accompanying VERTICES and CELL2D blocks should be specified for most simulations. If the XT3D or SAVE\_SPECIFIC\_DISCHARGE options are specified in the NPF Package, then this information is required. - -# --------------------- gwf disu griddata --------------------- - -block griddata -name top -type double precision -shape (nodes) -reader readarray -longname cell top elevation -description is the top elevation for each cell in the model grid. - -block griddata -name bot -type double precision -shape (nodes) -reader readarray -longname cell bottom elevation -description is the bottom elevation for each cell. - -block griddata -name area -type double precision -shape (nodes) -reader readarray -longname cell surface area -description is the cell surface area (in plan view). - -block griddata -name idomain -type integer -shape (nodes) -reader readarray -layered false -optional true -longname idomain existence array -description is an optional array that characterizes the existence status of a cell. If the IDOMAIN array is not specified, then all model cells exist within the solution. If the IDOMAIN value for a cell is 0, the cell does not exist in the simulation. Input and output values will be read and written for the cell, but internal to the program, the cell is excluded from the solution. If the IDOMAIN value for a cell is 1 or greater, the cell exists in the simulation. IDOMAIN values of -1 cannot be specified for the DISU Package. - -# --------------------- gwf disu connectiondata --------------------- - -block connectiondata -name iac -type integer -shape (nodes) -reader readarray -longname number of cell connections -description is the number of connections (plus 1) for each cell. The sum of all the entries in IAC must be equal to NJA. - -block connectiondata -name ja -type integer -shape (nja) -reader readarray -longname grid connectivity -description is a list of cell number (n) followed by its connecting cell numbers (m) for each of the m cells connected to cell n. The number of values to provide for cell n is IAC(n). This list is sequentially provided for the first to the last cell. The first value in the list must be cell n itself, and the remaining cells must be listed in an increasing order (sorted from lowest number to highest). Note that the cell and its connections are only supplied for the GWF cells and their connections to the other GWF cells. Also note that the JA list input may be divided such that every node and its connectivity list can be on a separate line for ease in readability of the file. To further ease readability of the file, the node number of the cell whose connectivity is subsequently listed, may be expressed as a negative number, the sign of which is subsequently converted to positive by the code. -numeric_index true -jagged_array iac - -block connectiondata -name ihc -type integer -shape (nja) -reader readarray -longname connection type -description is an index array indicating the direction between node n and all of its m connections. If IHC = 0 then cell n and cell m are connected in the vertical direction. Cell n overlies cell m if the cell number for n is less than m; cell m overlies cell n if the cell number for m is less than n. If IHC = 1 then cell n and cell m are connected in the horizontal direction. If IHC = 2 then cell n and cell m are connected in the horizontal direction, and the connection is vertically staggered. A vertically staggered connection is one in which a cell is horizontally connected to more than one cell in a horizontal connection. -jagged_array iac - -block connectiondata -name cl12 -type double precision -shape (nja) -reader readarray -longname connection lengths -description is the array containing connection lengths between the center of cell n and the shared face with each adjacent m cell. -jagged_array iac - -block connectiondata -name hwva -type double precision -shape (nja) -reader readarray -longname connection lengths -description is a symmetric array of size NJA. For horizontal connections, entries in HWVA are the horizontal width perpendicular to flow. For vertical connections, entries in HWVA are the vertical area for flow. Thus, values in the HWVA array contain dimensions of both length and area. Entries in the HWVA array have a one-to-one correspondence with the connections specified in the JA array. Likewise, there is a one-to-one correspondence between entries in the HWVA array and entries in the IHC array, which specifies the connection type (horizontal or vertical). Entries in the HWVA array must be symmetric; the program will terminate with an error if the value for HWVA for an n to m connection does not equal the value for HWVA for the corresponding n to m connection. -jagged_array iac - -block connectiondata -name angldegx -type double precision -optional true -shape (nja) -reader readarray -longname angle of face normal to connection -description is the angle (in degrees) between the horizontal x-axis and the outward normal to the face between a cell and its connecting cells. The angle varies between zero and 360.0 degrees, where zero degrees points in the positive x-axis direction, and 90 degrees points in the positive y-axis direction. ANGLDEGX is only needed if horizontal anisotropy is specified in the NPF Package, if the XT3D option is used in the NPF Package, or if the SAVE\_SPECIFIC\_DISCHARGE option is specified in the NPF Package. ANGLDEGX does not need to be specified if these conditions are not met. ANGLDEGX is of size NJA; values specified for vertical connections and for the diagonal position are not used. Note that ANGLDEGX is read in degrees, which is different from MODFLOW-USG, which reads a similar variable (ANGLEX) in radians. -jagged_array iac - -# --------------------- gwf disu vertices --------------------- - -block vertices -name vertices -type recarray iv xv yv -shape (nvert) -reader urword -optional true -longname vertices data -description - -block vertices -name iv -type integer -in_record true -tagged false -reader urword -optional false -longname vertex number -description is the vertex number. Records in the VERTICES block must be listed in consecutive order from 1 to NVERT. -numeric_index true - -block vertices -name xv -type double precision -in_record true -tagged false -reader urword -optional false -longname x-coordinate for vertex -description is the x-coordinate for the vertex. - -block vertices -name yv -type double precision -in_record true -tagged false -reader urword -optional false -longname y-coordinate for vertex -description is the y-coordinate for the vertex. - - -# --------------------- gwf disu cell2d --------------------- - -block cell2d -name cell2d -type recarray icell2d xc yc ncvert icvert -shape (nodes) -reader urword -optional true -longname cell2d data -description - -block cell2d -name icell2d -type integer -in_record true -tagged false -reader urword -optional false -longname cell2d number -description is the cell2d number. Records in the CELL2D block must be listed in consecutive order from 1 to NODES. -numeric_index true - -block cell2d -name xc -type double precision -in_record true -tagged false -reader urword -optional false -longname x-coordinate for cell center -description is the x-coordinate for the cell center. - -block cell2d -name yc -type double precision -in_record true -tagged false -reader urword -optional false -longname y-coordinate for cell center -description is the y-coordinate for the cell center. - -block cell2d -name ncvert -type integer -in_record true -tagged false -reader urword -optional false -longname number of cell vertices -description is the number of vertices required to define the cell. There may be a different number of vertices for each cell. - -block cell2d -name icvert -type integer -shape (ncvert) -in_record true -tagged false -reader urword -optional false -longname array of vertex numbers -description is an array of integer values containing vertex numbers (in the VERTICES block) used to define the cell. Vertices must be listed in clockwise order. -numeric_index true diff --git a/spec/dfn/gwf-disv.dfn b/spec/dfn/gwf-disv.dfn deleted file mode 100644 index fe3a70db..00000000 --- a/spec/dfn/gwf-disv.dfn +++ /dev/null @@ -1,263 +0,0 @@ -# --------------------- gwf disv options --------------------- -# mf6 subpackage utl-ncf - -block options -name length_units -type string -reader urword -optional true -longname model length units -description is the length units used for this model. Values can be ``FEET'', ``METERS'', or ``CENTIMETERS''. If not specified, the default is ``UNKNOWN''. - -block options -name nogrb -type keyword -reader urword -optional true -longname do not write binary grid file -description keyword to deactivate writing of the binary grid file. - -block options -name xorigin -type double precision -reader urword -optional true -longname x-position origin of the model grid coordinate system -description x-position of the origin used for model grid vertices. This value should be provided in a real-world coordinate system. A default value of zero is assigned if not specified. The value for XORIGIN does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space. - -block options -name yorigin -type double precision -reader urword -optional true -longname y-position origin of the model grid coordinate system -description y-position of the origin used for model grid vertices. This value should be provided in a real-world coordinate system. If not specified, then a default value equal to zero is used. The value for YORIGIN does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space. - -block options -name angrot -type double precision -reader urword -optional true -longname rotation angle -description counter-clockwise rotation angle (in degrees) of the model grid coordinate system relative to a real-world coordinate system. If not specified, then a default value of 0.0 is assigned. The value for ANGROT does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space. - -block options -name export_array_ascii -type keyword -reader urword -optional true -mf6internal export_ascii -longname export array variables to layered ascii files. -description keyword that specifies input griddata arrays should be written to layered ascii output files. - -block options -name export_array_netcdf -type keyword -reader urword -optional true -mf6internal export_nc -longname export array variables to netcdf output files. -description keyword that specifies input griddata arrays should be written to the model output netcdf file. - -block options -name ncf_filerecord -type record ncf6 filein ncf6_filename -reader urword -tagged true -optional true -longname -description - -block options -name ncf6 -type keyword -in_record true -reader urword -tagged true -optional false -longname ncf keyword -description keyword to specify that record corresponds to a netcdf configuration (NCF) file. - -block options -name filein -type keyword -in_record true -reader urword -tagged true -optional false -longname file keyword -description keyword to specify that an input filename is expected next. - -block options -name ncf6_filename -type string -preserve_case true -in_record true -reader urword -optional false -tagged false -longname file name of NCF information -description defines a netcdf configuration (NCF) input file. - -# --------------------- gwf disv dimensions --------------------- - -block dimensions -name nlay -type integer -reader urword -optional false -longname number of layers -description is the number of layers in the model grid. - -block dimensions -name ncpl -type integer -reader urword -optional false -longname number of cells per layer -description is the number of cells per layer. This is a constant value for the grid and it applies to all layers. - -block dimensions -name nvert -type integer -reader urword -optional false -longname number of columns -description is the total number of (x, y) vertex pairs used to characterize the horizontal configuration of the model grid. - -# --------------------- gwf disv griddata --------------------- - -block griddata -name top -type double precision -shape (ncpl) -reader readarray -longname model top elevation -description is the top elevation for each cell in the top model layer. - -block griddata -name botm -type double precision -shape (ncpl, nlay) -reader readarray -layered true -longname model bottom elevation -description is the bottom elevation for each cell. - -block griddata -name idomain -type integer -shape (ncpl, nlay) -reader readarray -layered true -optional true -longname idomain existence array -description is an optional array that characterizes the existence status of a cell. If the IDOMAIN array is not specified, then all model cells exist within the solution. If the IDOMAIN value for a cell is 0, the cell does not exist in the simulation. Input and output values will be read and written for the cell, but internal to the program, the cell is excluded from the solution. If the IDOMAIN value for a cell is 1 or greater, the cell exists in the simulation. If the IDOMAIN value for a cell is -1, the cell does not exist in the simulation. Furthermore, the first existing cell above will be connected to the first existing cell below. This type of cell is referred to as a ``vertical pass through'' cell. - - -# --------------------- gwf disv vertices --------------------- - -block vertices -name vertices -type recarray iv xv yv -shape (nvert) -reader urword -optional false -longname vertices data -description - -block vertices -name iv -type integer -in_record true -tagged false -reader urword -optional false -longname vertex number -description is the vertex number. Records in the VERTICES block must be listed in consecutive order from 1 to NVERT. -numeric_index true - -block vertices -name xv -type double precision -in_record true -tagged false -reader urword -optional false -longname x-coordinate for vertex -description is the x-coordinate for the vertex. - -block vertices -name yv -type double precision -in_record true -tagged false -reader urword -optional false -longname y-coordinate for vertex -description is the y-coordinate for the vertex. - - -# --------------------- gwf disv cell2d --------------------- - -block cell2d -name cell2d -type recarray icell2d xc yc ncvert icvert -shape (ncpl) -reader urword -optional false -longname cell2d data -description - -block cell2d -name icell2d -type integer -in_record true -tagged false -reader urword -optional false -longname cell2d number -description is the CELL2D number. Records in the CELL2D block must be listed in consecutive order from the first to the last. -numeric_index true - -block cell2d -name xc -type double precision -in_record true -tagged false -reader urword -optional false -longname x-coordinate for cell center -description is the x-coordinate for the cell center. - -block cell2d -name yc -type double precision -in_record true -tagged false -reader urword -optional false -longname y-coordinate for cell center -description is the y-coordinate for the cell center. - -block cell2d -name ncvert -type integer -in_record true -tagged false -reader urword -optional false -longname number of cell vertices -description is the number of vertices required to define the cell. There may be a different number of vertices for each cell. - -block cell2d -name icvert -type integer -shape (ncvert) -in_record true -tagged false -reader urword -optional false -longname array of vertex numbers -description is an array of integer values containing vertex numbers (in the VERTICES block) used to define the cell. Vertices must be listed in clockwise order. Cells that are connected must share vertices. -numeric_index true diff --git a/spec/dfn/gwf-ic.dfn b/spec/dfn/gwf-ic.dfn deleted file mode 100644 index f580987d..00000000 --- a/spec/dfn/gwf-ic.dfn +++ /dev/null @@ -1,31 +0,0 @@ -# --------------------- gwf ic options --------------------- - -block options -name export_array_ascii -type keyword -reader urword -optional true -mf6internal export_ascii -longname export array variables to layered ascii files. -description keyword that specifies input griddata arrays should be written to layered ascii output files. - -block options -name export_array_netcdf -type keyword -reader urword -optional true -mf6internal export_nc -longname export array variables to netcdf output files. -description keyword that specifies input griddata arrays should be written to the model output netcdf file. - -# --------------------- gwf ic griddata --------------------- - -block griddata -name strt -type double precision -shape (nodes) -reader readarray -layered true -longname starting head -description is the initial (starting) head---that is, head at the beginning of the GWF Model simulation. STRT must be specified for all simulations, including steady-state simulations. One value is read for every model cell. For simulations in which the first stress period is steady state, the values used for STRT generally do not affect the simulation (exceptions may occur if cells go dry and (or) rewet). The execution time, however, will be less if STRT includes hydraulic heads that are close to the steady-state solution. A head value lower than the cell bottom can be provided if a cell should start as dry. -default_value 1.0 diff --git a/spec/dfn/gwf-nam.dfn b/spec/dfn/gwf-nam.dfn deleted file mode 100644 index 1f69456c..00000000 --- a/spec/dfn/gwf-nam.dfn +++ /dev/null @@ -1,149 +0,0 @@ -# --------------------- gwf nam options --------------------- - -block options -name list -type string -reader urword -optional true -preserve_case true -longname name of listing file -description is name of the listing file to create for this GWF model. If not specified, then the name of the list file will be the basename of the GWF model name file and the '.lst' extension. For example, if the GWF name file is called ``my.model.nam'' then the list file will be called ``my.model.lst''. - -block options -name print_input -type keyword -reader urword -optional true -longname print input to listing file -description REPLACE print_input {'{#1}': 'all model stress package'} - -block options -name print_flows -type keyword -reader urword -optional true -longname print calculated flows to listing file -description REPLACE print_flows {'{#1}': 'all model package'} - -block options -name save_flows -type keyword -reader urword -optional true -longname save flows for all packages to budget file -description REPLACE save_flows {'{#1}': 'all model package'} - -block options -name newtonoptions -type record newton under_relaxation -reader urword -optional true -longname newton keyword and options -description none - -block options -name newton -in_record true -type keyword -reader urword -longname keyword to activate Newton-Raphson formulation -description keyword that activates the Newton-Raphson formulation for groundwater flow between connected, convertible groundwater cells and stress packages that support calculation of Newton-Raphson terms for groundwater exchanges. Cells will not dry when this option is used. By default, the Newton-Raphson formulation is not applied. - -block options -name under_relaxation -in_record true -type keyword -reader urword -optional true -longname keyword to activate Newton-Raphson UNDER_RELAXATION option -description keyword that indicates whether the groundwater head in a cell will be under-relaxed when water levels fall below the bottom of the model below any given cell. By default, Newton-Raphson UNDER\_RELAXATION is not applied. - -block options -name export_netcdf -type string -reader urword -optional true -mf6internal export_netcdf -longname export model output netcdf file. -description keyword that specifies timeseries data for the dependent variable should be written to a model output netcdf file. No value or ``UGRID'' (ugrid based export) values are supported. - -block options -name nc_filerecord -type record netcdf filein netcdf_filename -reader urword -tagged true -optional true -longname -description netcdf config filerecord - -block options -name netcdf -type keyword -in_record true -reader urword -tagged true -optional false -longname netcdf keyword -description keyword to specify that record corresponds to a netcdf input file. - -block options -name filein -type keyword -in_record true -reader urword -tagged true -optional false -longname file keyword -description keyword to specify that an input filename is expected next. - -block options -name netcdf_filename -type string -preserve_case true -in_record true -reader urword -optional false -tagged false -longname netcdf input filename -description defines a netcdf input file. -mf6internal netcdf_fname - -# --------------------- gwf nam packages --------------------- - -block packages -name packages -type recarray ftype fname pname -reader urword -optional false -longname package list -description - -block packages -name ftype -in_record true -type string -tagged false -reader urword -longname package type -description is the file type, which must be one of the following character values shown in table~\ref{table:ftype-gwf}. Ftype may be entered in any combination of uppercase and lowercase. - -block packages -name fname -in_record true -type string -preserve_case true -tagged false -reader urword -longname file name -description is the name of the file containing the package input. The path to the file should be included if the file is not located in the folder where the program was run. - -block packages -name pname -in_record true -type string -tagged false -reader urword -optional true -longname user name for package -description is the user-defined name for the package. PNAME is restricted to 16 characters. No spaces are allowed in PNAME. PNAME character values are read and stored by the program for stress packages only. These names may be useful for labeling purposes when multiple stress packages of the same type are located within a single GWF Model. If PNAME is specified for a stress package, then PNAME will be used in the flow budget table in the listing file; it will also be used for the text entry in the cell-by-cell budget file. PNAME is case insensitive and is stored in all upper case letters. - diff --git a/spec/dfn/gwf-npf.dfn b/spec/dfn/gwf-npf.dfn deleted file mode 100644 index 3937ea2e..00000000 --- a/spec/dfn/gwf-npf.dfn +++ /dev/null @@ -1,355 +0,0 @@ -# --------------------- gwf npf options --------------------- - -block options -name save_flows -type keyword -reader urword -optional true -longname keyword to save NPF flows -description keyword to indicate that budget flow terms will be written to the file specified with ``BUDGET SAVE FILE'' in Output Control. -mf6internal ipakcb - -block options -name print_flows -type keyword -reader urword -optional true -longname keyword to print NPF flows to listing file -description keyword to indicate that calculated flows between cells will be printed to the listing file for every stress period time step in which ``BUDGET PRINT'' is specified in Output Control. If there is no Output Control option and ``PRINT\_FLOWS'' is specified, then flow rates are printed for the last time step of each stress period. This option can produce extremely large list files because all cell-by-cell flows are printed. It should only be used with the NPF Package for models that have a small number of cells. -mf6internal iprflow - -block options -name alternative_cell_averaging -type string -valid logarithmic amt-lmk amt-hmk -reader urword -optional true -longname conductance weighting option -description is a text keyword to indicate that an alternative method will be used for calculating the conductance for horizontal cell connections. The text value for ALTERNATIVE\_CELL\_AVERAGING can be ``LOGARITHMIC'', ``AMT-LMK'', or ``AMT-HMK''. ``AMT-LMK'' signifies that the conductance will be calculated using arithmetic-mean thickness and logarithmic-mean hydraulic conductivity. ``AMT-HMK'' signifies that the conductance will be calculated using arithmetic-mean thickness and harmonic-mean hydraulic conductivity. If the user does not specify a value for ALTERNATIVE\_CELL\_AVERAGING, then the harmonic-mean method will be used. This option cannot be used if the XT3D option is invoked. -mf6internal cellavg - -block options -name thickstrt -type keyword -reader urword -optional true -longname keyword to activate THICKSTRT option -description indicates that cells having a negative ICELLTYPE are confined, and their cell thickness for conductance calculations will be computed as STRT-BOT rather than TOP-BOT. This option should be used with caution as it only affects conductance calculations in the NPF Package. -mf6internal ithickstrt - -block options -name cvoptions -type record variablecv dewatered -reader urword -optional true -longname vertical conductance options -description none - -block options -name variablecv -in_record true -type keyword -reader urword -longname keyword to activate VARIABLECV option -description keyword to indicate that the vertical conductance will be calculated using the saturated thickness and properties of the overlying cell and the thickness and properties of the underlying cell. If the DEWATERED keyword is also specified, then the vertical conductance is calculated using only the saturated thickness and properties of the overlying cell if the head in the underlying cell is below its top. If these keywords are not specified, then the default condition is to calculate the vertical conductance at the start of the simulation using the initial head and the cell properties. The vertical conductance remains constant for the entire simulation. -mf6internal ivarcv - -block options -name dewatered -in_record true -type keyword -reader urword -optional true -longname keyword to activate DEWATERED option -description If the DEWATERED keyword is specified, then the vertical conductance is calculated using only the saturated thickness and properties of the overlying cell if the head in the underlying cell is below its top. -mf6internal idewatcv - -block options -name perched -type keyword -reader urword -optional true -longname keyword to activate PERCHED option -description keyword to indicate that when a cell is overlying a dewatered convertible cell, the head difference used in Darcy's Law is equal to the head in the overlying cell minus the bottom elevation of the overlying cell. If not specified, then the default is to use the head difference between the two cells. -mf6internal iperched - -block options -name rewet_record -type record rewet wetfct iwetit ihdwet -reader urword -optional true -longname -description - -block options -name rewet -type keyword -in_record true -reader urword -optional false -longname keyword to activate rewetting -description activates model rewetting. Rewetting is off by default. -mf6internal irewet - -block options -name wetfct -type double precision -in_record true -reader urword -optional false -longname wetting factor to use for rewetting -description is a keyword and factor that is included in the calculation of the head that is initially established at a cell when that cell is converted from dry to wet. - -block options -name iwetit -type integer -in_record true -reader urword -optional false -longname interval to use for rewetting -description is a keyword and iteration interval for attempting to wet cells. Wetting is attempted every IWETIT iteration. This applies to outer iterations and not inner iterations. If IWETIT is specified as zero or less, then the value is changed to 1. - -block options -name ihdwet -type integer -in_record true -reader urword -optional false -longname flag to determine wetting equation -description is a keyword and integer flag that determines which equation is used to define the initial head at cells that become wet. If IHDWET is 0, h = BOT + WETFCT (hm - BOT). If IHDWET is not 0, h = BOT + WETFCT (THRESH). - -block options -name xt3doptions -type record xt3d rhs -reader urword -optional true -longname keyword to activate XT3D -description none - -block options -name xt3d -in_record true -type keyword -reader urword -longname keyword to activate XT3D -description keyword indicating that the XT3D formulation will be used. If the RHS keyword is also included, then the XT3D additional terms will be added to the right-hand side. If the RHS keyword is excluded, then the XT3D terms will be put into the coefficient matrix. Use of XT3D will substantially increase the computational effort, but will result in improved accuracy for anisotropic conductivity fields and for unstructured grids in which the CVFD requirement is violated. XT3D requires additional information about the shapes of grid cells. If XT3D is active and the DISU Package is used, then the user will need to provide in the DISU Package the angldegx array in the CONNECTIONDATA block and the VERTICES and CELL2D blocks. -mf6internal ixt3d - -block options -name rhs -in_record true -type keyword -reader urword -optional true -longname keyword to XT3D on right hand side -description If the RHS keyword is also included, then the XT3D additional terms will be added to the right-hand side. If the RHS keyword is excluded, then the XT3D terms will be put into the coefficient matrix. -mf6internal ixt3drhs - -block options -name save_specific_discharge -type keyword -reader urword -optional true -longname keyword to save specific discharge -description keyword to indicate that x, y, and z components of specific discharge will be calculated at cell centers and written to the budget file, which is specified with ``BUDGET SAVE FILE'' in Output Control. If this option is activated, then additional information may be required in the discretization packages and the GWF Exchange package (if GWF models are coupled). Specifically, ANGLDEGX must be specified in the CONNECTIONDATA block of the DISU Package; ANGLDEGX must also be specified for the GWF Exchange as an auxiliary variable. -mf6internal isavspdis - -block options -name save_saturation -type keyword -reader urword -optional true -longname keyword to save saturation -description keyword to indicate that cell saturation will be written to the budget file, which is specified with ``BUDGET SAVE FILE'' in Output Control. Saturation will be saved to the budget file as an auxiliary variable saved with the DATA-SAT text label. Saturation is a cell variable that ranges from zero to one and can be used by post processing programs to determine how much of a cell volume is saturated. If ICELLTYPE is 0, then saturation is always one. -mf6internal isavsat - -block options -name k22overk -type keyword -reader urword -optional true -longname keyword to indicate that specified K22 is a ratio -description keyword to indicate that specified K22 is a ratio of K22 divided by K. If this option is specified, then the K22 array entered in the NPF Package will be multiplied by K after being read. -mf6internal ik22overk - -block options -name k33overk -type keyword -reader urword -optional true -longname keyword to indicate that specified K33 is a ratio -description keyword to indicate that specified K33 is a ratio of K33 divided by K. If this option is specified, then the K33 array entered in the NPF Package will be multiplied by K after being read. -mf6internal ik33overk - -block options -name tvk_filerecord -type record tvk6 filein tvk6_filename -shape -reader urword -tagged true -optional true -longname -description - -block options -name tvk6 -type keyword -shape -in_record true -reader urword -tagged true -optional false -longname tvk keyword -description keyword to specify that record corresponds to a time-varying hydraulic conductivity (TVK) file. The behavior of TVK and a description of the input file is provided separately. - -block options -name filein -type keyword -shape -in_record true -reader urword -tagged true -optional false -longname file keyword -description keyword to specify that an input filename is expected next. - -block options -name tvk6_filename -type string -preserve_case true -in_record true -reader urword -optional false -tagged false -longname file name of TVK information -description defines a time-varying hydraulic conductivity (TVK) input file. Records in the TVK file can be used to change hydraulic conductivity properties at specified times or stress periods. - -block options -name export_array_ascii -type keyword -reader urword -optional true -mf6internal export_ascii -longname export array variables to layered ascii files. -description keyword that specifies input griddata arrays should be written to layered ascii output files. - -block options -name export_array_netcdf -type keyword -reader urword -optional true -mf6internal export_nc -longname export array variables to netcdf output files. -description keyword that specifies input griddata arrays should be written to the model output netcdf file. - -# dev options - -block options -name dev_no_newton -type keyword -reader urword -optional true -longname turn off Newton for unconfined cells -description turn off Newton for unconfined cells -mf6internal inewton - -block options -name dev_omega -type double precision -reader urword -optional true -longname set saturation omega value -description set saturation omega value -mf6internal satomega - -# --------------------- gwf npf griddata --------------------- - -block griddata -name icelltype -type integer -shape (nodes) -valid -reader readarray -layered true -optional -longname confined or convertible indicator -description flag for each cell that specifies how saturated thickness is treated. 0 means saturated thickness is held constant; $>$0 means saturated thickness varies with computed head when head is below the cell top; $<$0 means saturated thickness varies with computed head unless the THICKSTRT option is in effect. When THICKSTRT is in effect, a negative value for ICELLTYPE indicates that the saturated thickness value used in conductance calculations in the NPF Package will be computed as STRT-BOT and held constant. If the THICKSTRT option is not in effect, then negative values provided by the user for ICELLTYPE are automatically reassigned by the program to a value of one. -default_value 0 - -block griddata -name k -type double precision -shape (nodes) -valid -reader readarray -layered true -optional -longname hydraulic conductivity (L/T) -description is the hydraulic conductivity. For the common case in which the user would like to specify the horizontal hydraulic conductivity and the vertical hydraulic conductivity, then K should be assigned as the horizontal hydraulic conductivity, K33 should be assigned as the vertical hydraulic conductivity, and K22 and the three rotation angles should not be specified. When more sophisticated anisotropy is required, then K corresponds to the K11 hydraulic conductivity axis. All included cells (IDOMAIN $>$ 0) must have a K value greater than zero. -default_value 1.0 - -block griddata -name k22 -type double precision -shape (nodes) -valid -reader readarray -layered true -optional true -longname hydraulic conductivity of second ellipsoid axis -description is the hydraulic conductivity of the second ellipsoid axis (or the ratio of K22/K if the K22OVERK option is specified); for an unrotated case this is the hydraulic conductivity in the y direction. If K22 is not included in the GRIDDATA block, then K22 is set equal to K. For a regular MODFLOW grid (DIS Package is used) in which no rotation angles are specified, K22 is the hydraulic conductivity along columns in the y direction. For an unstructured DISU grid, the user must assign principal x and y axes and provide the angle for each cell face relative to the assigned x direction. All included cells (IDOMAIN $>$ 0) must have a K22 value greater than zero. - -block griddata -name k33 -type double precision -shape (nodes) -valid -reader readarray -layered true -optional true -longname hydraulic conductivity of third ellipsoid axis (L/T) -description is the hydraulic conductivity of the third ellipsoid axis (or the ratio of K33/K if the K33OVERK option is specified); for an unrotated case, this is the vertical hydraulic conductivity. When anisotropy is applied, K33 corresponds to the K33 tensor component. All included cells (IDOMAIN $>$ 0) must have a K33 value greater than zero. - -block griddata -name angle1 -type double precision -shape (nodes) -valid -reader readarray -layered true -optional true -longname first anisotropy rotation angle (degrees) -description is a rotation angle of the hydraulic conductivity tensor in degrees. The angle represents the first of three sequential rotations of the hydraulic conductivity ellipsoid. With the K11, K22, and K33 axes of the ellipsoid initially aligned with the x, y, and z coordinate axes, respectively, ANGLE1 rotates the ellipsoid about its K33 axis (within the x - y plane). A positive value represents counter-clockwise rotation when viewed from any point on the positive K33 axis, looking toward the center of the ellipsoid. A value of zero indicates that the K11 axis lies within the x - z plane. If ANGLE1 is not specified, default values of zero are assigned to ANGLE1, ANGLE2, and ANGLE3, in which case the K11, K22, and K33 axes are aligned with the x, y, and z axes, respectively. - -block griddata -name angle2 -type double precision -shape (nodes) -valid -reader readarray -layered true -optional true -longname second anisotropy rotation angle (degrees) -description is a rotation angle of the hydraulic conductivity tensor in degrees. The angle represents the second of three sequential rotations of the hydraulic conductivity ellipsoid. Following the rotation by ANGLE1 described above, ANGLE2 rotates the ellipsoid about its K22 axis (out of the x - y plane). An array can be specified for ANGLE2 only if ANGLE1 is also specified. A positive value of ANGLE2 represents clockwise rotation when viewed from any point on the positive K22 axis, looking toward the center of the ellipsoid. A value of zero indicates that the K11 axis lies within the x - y plane. If ANGLE2 is not specified, default values of zero are assigned to ANGLE2 and ANGLE3; connections that are not user-designated as vertical are assumed to be strictly horizontal (that is, to have no z component to their orientation); and connection lengths are based on horizontal distances. - -block griddata -name angle3 -type double precision -shape (nodes) -valid -reader readarray -layered true -optional true -longname third anisotropy rotation angle (degrees) -description is a rotation angle of the hydraulic conductivity tensor in degrees. The angle represents the third of three sequential rotations of the hydraulic conductivity ellipsoid. Following the rotations by ANGLE1 and ANGLE2 described above, ANGLE3 rotates the ellipsoid about its K11 axis. An array can be specified for ANGLE3 only if ANGLE1 and ANGLE2 are also specified. An array must be specified for ANGLE3 if ANGLE2 is specified. A positive value of ANGLE3 represents clockwise rotation when viewed from any point on the positive K11 axis, looking toward the center of the ellipsoid. A value of zero indicates that the K22 axis lies within the x - y plane. - -block griddata -name wetdry -type double precision -shape (nodes) -valid -reader readarray -layered true -optional true -longname wetdry threshold and factor -description is a combination of the wetting threshold and a flag to indicate which neighboring cells can cause a cell to become wet. If WETDRY $<$ 0, only a cell below a dry cell can cause the cell to become wet. If WETDRY $>$ 0, the cell below a dry cell and horizontally adjacent cells can cause a cell to become wet. If WETDRY is 0, the cell cannot be wetted. The absolute value of WETDRY is the wetting threshold. When the sum of BOT and the absolute value of WETDRY at a dry cell is equaled or exceeded by the head at an adjacent cell, the cell is wetted. WETDRY must be specified if ``REWET'' is specified in the OPTIONS block. If ``REWET'' is not specified in the options block, then WETDRY can be entered, and memory will be allocated for it, even though it is not used. diff --git a/spec/dfn/gwt-dis.dfn b/spec/dfn/gwt-dis.dfn deleted file mode 100644 index a11f0ef4..00000000 --- a/spec/dfn/gwt-dis.dfn +++ /dev/null @@ -1,180 +0,0 @@ -# --------------------- gwt dis options --------------------- -# mf6 subpackage utl-ncf - -block options -name length_units -type string -reader urword -optional true -longname model length units -description is the length units used for this model. Values can be ``FEET'', ``METERS'', or ``CENTIMETERS''. If not specified, the default is ``UNKNOWN''. - -block options -name nogrb -type keyword -reader urword -optional true -longname do not write binary grid file -description keyword to deactivate writing of the binary grid file. - -block options -name xorigin -type double precision -reader urword -optional true -longname x-position of the model grid origin -description x-position of the lower-left corner of the model grid. A default value of zero is assigned if not specified. The value for XORIGIN does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space. - -block options -name yorigin -type double precision -reader urword -optional true -longname y-position of the model grid origin -description y-position of the lower-left corner of the model grid. If not specified, then a default value equal to zero is used. The value for YORIGIN does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space. - -block options -name angrot -type double precision -reader urword -optional true -longname rotation angle -description counter-clockwise rotation angle (in degrees) of the lower-left corner of the model grid. If not specified, then a default value of 0.0 is assigned. The value for ANGROT does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space. - -block options -name export_array_ascii -type keyword -reader urword -optional true -mf6internal export_ascii -longname export array variables to layered ascii files. -description keyword that specifies input griddata arrays should be written to layered ascii output files. - -block options -name export_array_netcdf -type keyword -reader urword -optional true -mf6internal export_nc -longname export array variables to netcdf output files. -description keyword that specifies input griddata arrays should be written to the model output netcdf file. - -block options -name ncf_filerecord -type record ncf6 filein ncf6_filename -reader urword -tagged true -optional true -longname -description - -block options -name ncf6 -type keyword -in_record true -reader urword -tagged true -optional false -longname ncf keyword -description keyword to specify that record corresponds to a netcdf configuration (NCF) file. - -block options -name filein -type keyword -in_record true -reader urword -tagged true -optional false -longname file keyword -description keyword to specify that an input filename is expected next. - -block options -name ncf6_filename -type string -preserve_case true -in_record true -reader urword -optional false -tagged false -longname file name of NCF information -description defines a netcdf configuration (NCF) input file. - -# --------------------- gwt dis dimensions --------------------- - -block dimensions -name nlay -type integer -reader urword -optional false -longname number of layers -description is the number of layers in the model grid. -default_value 1 - -block dimensions -name nrow -type integer -reader urword -optional false -longname number of rows -description is the number of rows in the model grid. -default_value 2 - -block dimensions -name ncol -type integer -reader urword -optional false -longname number of columns -description is the number of columns in the model grid. -default_value 2 - -# --------------------- gwt dis griddata --------------------- - -block griddata -name delr -type double precision -shape (ncol) -reader readarray -longname spacing along a row -description is the column spacing in the row direction. -default_value 1.0 - -block griddata -name delc -type double precision -shape (nrow) -reader readarray -longname spacing along a column -description is the row spacing in the column direction. -default_value 1.0 - -block griddata -name top -type double precision -shape (ncol, nrow) -reader readarray -longname cell top elevation -description is the top elevation for each cell in the top model layer. -default_value 1.0 - -block griddata -name botm -type double precision -shape (ncol, nrow, nlay) -reader readarray -layered true -longname cell bottom elevation -description is the bottom elevation for each cell. -default_value 0. - -block griddata -name idomain -type integer -shape (ncol, nrow, nlay) -reader readarray -layered true -optional true -longname idomain existence array -description is an optional array that characterizes the existence status of a cell. If the IDOMAIN array is not specified, then all model cells exist within the solution. If the IDOMAIN value for a cell is 0, the cell does not exist in the simulation. Input and output values will be read and written for the cell, but internal to the program, the cell is excluded from the solution. If the IDOMAIN value for a cell is 1, the cell exists in the simulation. If the IDOMAIN value for a cell is -1, the cell does not exist in the simulation. Furthermore, the first existing cell above will be connected to the first existing cell below. This type of cell is referred to as a ``vertical pass through'' cell. - - diff --git a/spec/dfn/gwt-disu.dfn b/spec/dfn/gwt-disu.dfn deleted file mode 100644 index 49fd5aa5..00000000 --- a/spec/dfn/gwt-disu.dfn +++ /dev/null @@ -1,286 +0,0 @@ -# --------------------- gwt disu options --------------------- - -block options -name length_units -type string -reader urword -optional true -longname model length units -description is the length units used for this model. Values can be ``FEET'', ``METERS'', or ``CENTIMETERS''. If not specified, the default is ``UNKNOWN''. - -block options -name nogrb -type keyword -reader urword -optional true -longname do not write binary grid file -description keyword to deactivate writing of the binary grid file. - -block options -name xorigin -type double precision -reader urword -optional true -longname x-position origin of the model grid coordinate system -description x-position of the origin used for model grid vertices. This value should be provided in a real-world coordinate system. A default value of zero is assigned if not specified. The value for XORIGIN does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space. - -block options -name yorigin -type double precision -reader urword -optional true -longname y-position origin of the model grid coordinate system -description y-position of the origin used for model grid vertices. This value should be provided in a real-world coordinate system. If not specified, then a default value equal to zero is used. The value for YORIGIN does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space. - -block options -name angrot -type double precision -reader urword -optional true -longname rotation angle -description counter-clockwise rotation angle (in degrees) of the model grid coordinate system relative to a real-world coordinate system. If not specified, then a default value of 0.0 is assigned. The value for ANGROT does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space. - -block options -name vertical_offset_tolerance -type double precision -reader urword -optional true -default_value 0.0 -longname vertical length dimension for top and bottom checking -description checks are performed to ensure that the top of a cell is not higher than the bottom of an overlying cell. This option can be used to specify the tolerance that is used for checking. If top of a cell is above the bottom of an overlying cell by a value less than this tolerance, then the program will not terminate with an error. The default value is zero. This option should generally not be used. -mf6internal voffsettol - -block options -name export_array_ascii -type keyword -reader urword -optional true -mf6internal export_ascii -longname export array variables to layered ascii files. -description keyword that specifies input griddata arrays should be written to layered ascii output files. - -# --------------------- gwt disu dimensions --------------------- - -block dimensions -name nodes -type integer -reader urword -optional false -longname number of layers -description is the number of cells in the model grid. - -block dimensions -name nja -type integer -reader urword -optional false -longname number of columns -description is the sum of the number of connections and NODES. When calculating the total number of connections, the connection between cell n and cell m is considered to be different from the connection between cell m and cell n. Thus, NJA is equal to the total number of connections, including n to m and m to n, and the total number of cells. - -block dimensions -name nvert -type integer -reader urword -optional true -longname number of vertices -description is the total number of (x, y) vertex pairs used to define the plan-view shape of each cell in the model grid. If NVERT is not specified or is specified as zero, then the VERTICES and CELL2D blocks below are not read. NVERT and the accompanying VERTICES and CELL2D blocks should be specified for most simulations. If the XT3D or SAVE\_SPECIFIC\_DISCHARGE options are specified in the NPF Package, then this information is required. - -# --------------------- gwt disu griddata --------------------- - -block griddata -name top -type double precision -shape (nodes) -reader readarray -longname cell top elevation -description is the top elevation for each cell in the model grid. - -block griddata -name bot -type double precision -shape (nodes) -reader readarray -longname cell bottom elevation -description is the bottom elevation for each cell. - -block griddata -name area -type double precision -shape (nodes) -reader readarray -longname cell surface area -description is the cell surface area (in plan view). - -block griddata -name idomain -type integer -shape (nodes) -reader readarray -layered false -optional true -longname idomain existence array -description is an optional array that characterizes the existence status of a cell. If the IDOMAIN array is not specified, then all model cells exist within the solution. If the IDOMAIN value for a cell is 0, the cell does not exist in the simulation. Input and output values will be read and written for the cell, but internal to the program, the cell is excluded from the solution. If the IDOMAIN value for a cell is 1 or greater, the cell exists in the simulation. IDOMAIN values of -1 cannot be specified for the DISU Package. - -# --------------------- gwt disu connectiondata --------------------- - -block connectiondata -name iac -type integer -shape (nodes) -reader readarray -longname number of cell connections -description is the number of connections (plus 1) for each cell. The sum of all the entries in IAC must be equal to NJA. - -block connectiondata -name ja -type integer -shape (nja) -reader readarray -longname grid connectivity -description is a list of cell number (n) followed by its connecting cell numbers (m) for each of the m cells connected to cell n. The number of values to provide for cell n is IAC(n). This list is sequentially provided for the first to the last cell. The first value in the list must be cell n itself, and the remaining cells must be listed in an increasing order (sorted from lowest number to highest). Note that the cell and its connections are only supplied for the GWT cells and their connections to the other GWT cells. Also note that the JA list input may be divided such that every node and its connectivity list can be on a separate line for ease in readability of the file. To further ease readability of the file, the node number of the cell whose connectivity is subsequently listed, may be expressed as a negative number, the sign of which is subsequently converted to positive by the code. -numeric_index true -jagged_array iac - -block connectiondata -name ihc -type integer -shape (nja) -reader readarray -longname connection type -description is an index array indicating the direction between node n and all of its m connections. If IHC = 0 then cell n and cell m are connected in the vertical direction. Cell n overlies cell m if the cell number for n is less than m; cell m overlies cell n if the cell number for m is less than n. If IHC = 1 then cell n and cell m are connected in the horizontal direction. If IHC = 2 then cell n and cell m are connected in the horizontal direction, and the connection is vertically staggered. A vertically staggered connection is one in which a cell is horizontally connected to more than one cell in a horizontal connection. -jagged_array iac - -block connectiondata -name cl12 -type double precision -shape (nja) -reader readarray -longname connection lengths -description is the array containing connection lengths between the center of cell n and the shared face with each adjacent m cell. -jagged_array iac - -block connectiondata -name hwva -type double precision -shape (nja) -reader readarray -longname connection lengths -description is a symmetric array of size NJA. For horizontal connections, entries in HWVA are the horizontal width perpendicular to flow. For vertical connections, entries in HWVA are the vertical area for flow. Thus, values in the HWVA array contain dimensions of both length and area. Entries in the HWVA array have a one-to-one correspondence with the connections specified in the JA array. Likewise, there is a one-to-one correspondence between entries in the HWVA array and entries in the IHC array, which specifies the connection type (horizontal or vertical). Entries in the HWVA array must be symmetric; the program will terminate with an error if the value for HWVA for an n to m connection does not equal the value for HWVA for the corresponding n to m connection. -jagged_array iac - -block connectiondata -name angldegx -type double precision -optional true -shape (nja) -reader readarray -longname angle of face normal to connection -description is the angle (in degrees) between the horizontal x-axis and the outward normal to the face between a cell and its connecting cells. The angle varies between zero and 360.0 degrees, where zero degrees points in the positive x-axis direction, and 90 degrees points in the positive y-axis direction. ANGLDEGX is only needed if horizontal anisotropy is specified in the NPF Package, if the XT3D option is used in the NPF Package, or if the SAVE\_SPECIFIC\_DISCHARGE option is specified in the NPF Package. ANGLDEGX does not need to be specified if these conditions are not met. ANGLDEGX is of size NJA; values specified for vertical connections and for the diagonal position are not used. Note that ANGLDEGX is read in degrees, which is different from MODFLOW-USG, which reads a similar variable (ANGLEX) in radians. -jagged_array iac - -# --------------------- gwt disu vertices --------------------- - -block vertices -name vertices -type recarray iv xv yv -shape (nvert) -reader urword -optional true -longname vertices data -description - -block vertices -name iv -type integer -in_record true -tagged false -reader urword -optional false -longname vertex number -description is the vertex number. Records in the VERTICES block must be listed in consecutive order from 1 to NVERT. -numeric_index true - -block vertices -name xv -type double precision -in_record true -tagged false -reader urword -optional false -longname x-coordinate for vertex -description is the x-coordinate for the vertex. - -block vertices -name yv -type double precision -in_record true -tagged false -reader urword -optional false -longname y-coordinate for vertex -description is the y-coordinate for the vertex. - - -# --------------------- gwt disu cell2d --------------------- - -block cell2d -name cell2d -type recarray icell2d xc yc ncvert icvert -shape (nodes) -reader urword -optional true -longname cell2d data -description - -block cell2d -name icell2d -type integer -in_record true -tagged false -reader urword -optional false -longname cell2d number -description is the cell2d number. Records in the CELL2D block must be listed in consecutive order from 1 to NODES. -numeric_index true - -block cell2d -name xc -type double precision -in_record true -tagged false -reader urword -optional false -longname x-coordinate for cell center -description is the x-coordinate for the cell center. - -block cell2d -name yc -type double precision -in_record true -tagged false -reader urword -optional false -longname y-coordinate for cell center -description is the y-coordinate for the cell center. - -block cell2d -name ncvert -type integer -in_record true -tagged false -reader urword -optional false -longname number of cell vertices -description is the number of vertices required to define the cell. There may be a different number of vertices for each cell. - -block cell2d -name icvert -type integer -shape (ncvert) -in_record true -tagged false -reader urword -optional false -longname array of vertex numbers -description is an array of integer values containing vertex numbers (in the VERTICES block) used to define the cell. Vertices must be listed in clockwise order. -numeric_index true diff --git a/spec/dfn/gwt-disv.dfn b/spec/dfn/gwt-disv.dfn deleted file mode 100644 index 119f33bd..00000000 --- a/spec/dfn/gwt-disv.dfn +++ /dev/null @@ -1,263 +0,0 @@ -# --------------------- gwt disv options --------------------- -# mf6 subpackage utl-ncf - -block options -name length_units -type string -reader urword -optional true -longname model length units -description is the length units used for this model. Values can be ``FEET'', ``METERS'', or ``CENTIMETERS''. If not specified, the default is ``UNKNOWN''. - -block options -name nogrb -type keyword -reader urword -optional true -longname do not write binary grid file -description keyword to deactivate writing of the binary grid file. - -block options -name xorigin -type double precision -reader urword -optional true -longname x-position origin of the model grid coordinate system -description x-position of the origin used for model grid vertices. This value should be provided in a real-world coordinate system. A default value of zero is assigned if not specified. The value for XORIGIN does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space. - -block options -name yorigin -type double precision -reader urword -optional true -longname y-position origin of the model grid coordinate system -description y-position of the origin used for model grid vertices. This value should be provided in a real-world coordinate system. If not specified, then a default value equal to zero is used. The value for YORIGIN does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space. - -block options -name angrot -type double precision -reader urword -optional true -longname rotation angle -description counter-clockwise rotation angle (in degrees) of the model grid coordinate system relative to a real-world coordinate system. If not specified, then a default value of 0.0 is assigned. The value for ANGROT does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space. - -block options -name export_array_ascii -type keyword -reader urword -optional true -mf6internal export_ascii -longname export array variables to layered ascii files. -description keyword that specifies input griddata arrays should be written to layered ascii output files. - -block options -name export_array_netcdf -type keyword -reader urword -optional true -mf6internal export_nc -longname export array variables to netcdf output files. -description keyword that specifies input griddata arrays should be written to the model output netcdf file. - -block options -name ncf_filerecord -type record ncf6 filein ncf6_filename -reader urword -tagged true -optional true -longname -description - -block options -name ncf6 -type keyword -in_record true -reader urword -tagged true -optional false -longname ncf keyword -description keyword to specify that record corresponds to a netcdf configuration (NCF) file. - -block options -name filein -type keyword -in_record true -reader urword -tagged true -optional false -longname file keyword -description keyword to specify that an input filename is expected next. - -block options -name ncf6_filename -type string -preserve_case true -in_record true -reader urword -optional false -tagged false -longname file name of NCF information -description defines a netcdf configuration (NCF) input file. - -# --------------------- gwt disv dimensions --------------------- - -block dimensions -name nlay -type integer -reader urword -optional false -longname number of layers -description is the number of layers in the model grid. - -block dimensions -name ncpl -type integer -reader urword -optional false -longname number of cells per layer -description is the number of cells per layer. This is a constant value for the grid and it applies to all layers. - -block dimensions -name nvert -type integer -reader urword -optional false -longname number of columns -description is the total number of (x, y) vertex pairs used to characterize the horizontal configuration of the model grid. - -# --------------------- gwt disv griddata --------------------- - -block griddata -name top -type double precision -shape (ncpl) -reader readarray -longname model top elevation -description is the top elevation for each cell in the top model layer. - -block griddata -name botm -type double precision -shape (ncpl, nlay) -reader readarray -layered true -longname model bottom elevation -description is the bottom elevation for each cell. - -block griddata -name idomain -type integer -shape (ncpl, nlay) -reader readarray -layered true -optional true -longname idomain existence array -description is an optional array that characterizes the existence status of a cell. If the IDOMAIN array is not specified, then all model cells exist within the solution. If the IDOMAIN value for a cell is 0, the cell does not exist in the simulation. Input and output values will be read and written for the cell, but internal to the program, the cell is excluded from the solution. If the IDOMAIN value for a cell is 1, the cell exists in the simulation. If the IDOMAIN value for a cell is -1, the cell does not exist in the simulation. Furthermore, the first existing cell above will be connected to the first existing cell below. This type of cell is referred to as a ``vertical pass through'' cell. - - -# --------------------- gwt disv vertices --------------------- - -block vertices -name vertices -type recarray iv xv yv -shape (nvert) -reader urword -optional false -longname vertices data -description - -block vertices -name iv -type integer -in_record true -tagged false -reader urword -optional false -longname vertex number -description is the vertex number. Records in the VERTICES block must be listed in consecutive order from 1 to NVERT. -numeric_index true - -block vertices -name xv -type double precision -in_record true -tagged false -reader urword -optional false -longname x-coordinate for vertex -description is the x-coordinate for the vertex. - -block vertices -name yv -type double precision -in_record true -tagged false -reader urword -optional false -longname y-coordinate for vertex -description is the y-coordinate for the vertex. - - -# --------------------- gwt disv cell2d --------------------- - -block cell2d -name cell2d -type recarray icell2d xc yc ncvert icvert -shape (ncpl) -reader urword -optional false -longname cell2d data -description - -block cell2d -name icell2d -type integer -in_record true -tagged false -reader urword -optional false -longname cell2d number -description is the CELL2D number. Records in the CELL2D block must be listed in consecutive order from the first to the last. -numeric_index true - -block cell2d -name xc -type double precision -in_record true -tagged false -reader urword -optional false -longname x-coordinate for cell center -description is the x-coordinate for the cell center. - -block cell2d -name yc -type double precision -in_record true -tagged false -reader urword -optional false -longname y-coordinate for cell center -description is the y-coordinate for the cell center. - -block cell2d -name ncvert -type integer -in_record true -tagged false -reader urword -optional false -longname number of cell vertices -description is the number of vertices required to define the cell. There may be a different number of vertices for each cell. - -block cell2d -name icvert -type integer -shape (ncvert) -in_record true -tagged false -reader urword -optional false -longname array of vertex numbers -description is an array of integer values containing vertex numbers (in the VERTICES block) used to define the cell. Vertices must be listed in clockwise order. Cells that are connected must share vertices. -numeric_index true diff --git a/spec/dfn/prt-dis.dfn b/spec/dfn/prt-dis.dfn deleted file mode 100644 index fc0a5669..00000000 --- a/spec/dfn/prt-dis.dfn +++ /dev/null @@ -1,179 +0,0 @@ -# --------------------- prt dis options --------------------- - -block options -name length_units -type string -reader urword -optional true -longname model length units -description is the length units used for this model. Values can be ``FEET'', ``METERS'', or ``CENTIMETERS''. If not specified, the default is ``UNKNOWN''. - -block options -name nogrb -type keyword -reader urword -optional true -longname do not write binary grid file -description keyword to deactivate writing of the binary grid file. - -block options -name xorigin -type double precision -reader urword -optional true -longname x-position of the model grid origin -description x-position of the lower-left corner of the model grid. A default value of zero is assigned if not specified. The value for XORIGIN does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space. - -block options -name yorigin -type double precision -reader urword -optional true -longname y-position of the model grid origin -description y-position of the lower-left corner of the model grid. If not specified, then a default value equal to zero is used. The value for YORIGIN does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space. - -block options -name angrot -type double precision -reader urword -optional true -longname rotation angle -description counter-clockwise rotation angle (in degrees) of the lower-left corner of the model grid. If not specified, then a default value of 0.0 is assigned. The value for ANGROT does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space. - -block options -name export_array_ascii -type keyword -reader urword -optional true -mf6internal export_ascii -longname export array variables to layered ascii files. -description keyword that specifies input griddata arrays should be written to layered ascii output files. - -block options -name export_array_netcdf -type keyword -reader urword -optional true -mf6internal export_nc -longname export array variables to netcdf output files. -description keyword that specifies input griddata arrays should be written to the model output netcdf file. - -block options -name ncf_filerecord -type record ncf6 filein ncf6_filename -reader urword -tagged true -optional true -longname -description - -block options -name ncf6 -type keyword -in_record true -reader urword -tagged true -optional false -longname ncf keyword -description keyword to specify that record corresponds to a netcdf configuration (NCF) file. - -block options -name filein -type keyword -in_record true -reader urword -tagged true -optional false -longname file keyword -description keyword to specify that an input filename is expected next. - -block options -name ncf6_filename -type string -preserve_case true -in_record true -reader urword -optional false -tagged false -longname file name of NCF information -description defines a netcdf configuration (NCF) input file. - -# --------------------- prt dis dimensions --------------------- - -block dimensions -name nlay -type integer -reader urword -optional false -longname number of layers -description is the number of layers in the model grid. -default_value 1 - -block dimensions -name nrow -type integer -reader urword -optional false -longname number of rows -description is the number of rows in the model grid. -default_value 2 - -block dimensions -name ncol -type integer -reader urword -optional false -longname number of columns -description is the number of columns in the model grid. -default_value 2 - -# --------------------- prt dis griddata --------------------- - -block griddata -name delr -type double precision -shape (ncol) -reader readarray -longname spacing along a row -description is the column spacing in the row direction. -default_value 1.0 - -block griddata -name delc -type double precision -shape (nrow) -reader readarray -longname spacing along a column -description is the row spacing in the column direction. -default_value 1.0 - -block griddata -name top -type double precision -shape (ncol, nrow) -reader readarray -longname cell top elevation -description is the top elevation for each cell in the top model layer. -default_value 1.0 - -block griddata -name botm -type double precision -shape (ncol, nrow, nlay) -reader readarray -layered true -longname cell bottom elevation -description is the bottom elevation for each cell. -default_value 0. - -block griddata -name idomain -type integer -shape (ncol, nrow, nlay) -reader readarray -layered true -optional true -longname idomain existence array -description is an optional array that characterizes the existence status of a cell. If the IDOMAIN array is not specified, then all model cells exist within the solution. If the IDOMAIN value for a cell is 0, the cell does not exist in the simulation. Input and output values will be read and written for the cell, but internal to the program, the cell is excluded from the solution. If the IDOMAIN value for a cell is 1, the cell exists in the simulation. If the IDOMAIN value for a cell is -1, the cell does not exist in the simulation. Furthermore, the first existing cell above will be connected to the first existing cell below. This type of cell is referred to as a ``vertical pass through'' cell. - - diff --git a/spec/dfn/prt-disv.dfn b/spec/dfn/prt-disv.dfn deleted file mode 100644 index 540d70a0..00000000 --- a/spec/dfn/prt-disv.dfn +++ /dev/null @@ -1,262 +0,0 @@ -# --------------------- prt disv options --------------------- - -block options -name length_units -type string -reader urword -optional true -longname model length units -description is the length units used for this model. Values can be ``FEET'', ``METERS'', or ``CENTIMETERS''. If not specified, the default is ``UNKNOWN''. - -block options -name nogrb -type keyword -reader urword -optional true -longname do not write binary grid file -description keyword to deactivate writing of the binary grid file. - -block options -name xorigin -type double precision -reader urword -optional true -longname x-position origin of the model grid coordinate system -description x-position of the origin used for model grid vertices. This value should be provided in a real-world coordinate system. A default value of zero is assigned if not specified. The value for XORIGIN does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space. - -block options -name yorigin -type double precision -reader urword -optional true -longname y-position origin of the model grid coordinate system -description y-position of the origin used for model grid vertices. This value should be provided in a real-world coordinate system. If not specified, then a default value equal to zero is used. The value for YORIGIN does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space. - -block options -name angrot -type double precision -reader urword -optional true -longname rotation angle -description counter-clockwise rotation angle (in degrees) of the model grid coordinate system relative to a real-world coordinate system. If not specified, then a default value of 0.0 is assigned. The value for ANGROT does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space. - -block options -name export_array_ascii -type keyword -reader urword -optional true -mf6internal export_ascii -longname export array variables to layered ascii files. -description keyword that specifies input griddata arrays should be written to layered ascii output files. - -block options -name export_array_netcdf -type keyword -reader urword -optional true -mf6internal export_nc -longname export array variables to netcdf output files. -description keyword that specifies input griddata arrays should be written to the model output netcdf file. - -block options -name ncf_filerecord -type record ncf6 filein ncf6_filename -reader urword -tagged true -optional true -longname -description - -block options -name ncf6 -type keyword -in_record true -reader urword -tagged true -optional false -longname ncf keyword -description keyword to specify that record corresponds to a netcdf configuration (NCF) file. - -block options -name filein -type keyword -in_record true -reader urword -tagged true -optional false -longname file keyword -description keyword to specify that an input filename is expected next. - -block options -name ncf6_filename -type string -preserve_case true -in_record true -reader urword -optional false -tagged false -longname file name of NCF information -description defines a netcdf configuration (NCF) input file. - -# --------------------- prt disv dimensions --------------------- - -block dimensions -name nlay -type integer -reader urword -optional false -longname number of layers -description is the number of layers in the model grid. - -block dimensions -name ncpl -type integer -reader urword -optional false -longname number of cells per layer -description is the number of cells per layer. This is a constant value for the grid and it applies to all layers. - -block dimensions -name nvert -type integer -reader urword -optional false -longname number of columns -description is the total number of (x, y) vertex pairs used to characterize the horizontal configuration of the model grid. - -# --------------------- prt disv griddata --------------------- - -block griddata -name top -type double precision -shape (ncpl) -reader readarray -longname model top elevation -description is the top elevation for each cell in the top model layer. - -block griddata -name botm -type double precision -shape (ncpl, nlay) -reader readarray -layered true -longname model bottom elevation -description is the bottom elevation for each cell. - -block griddata -name idomain -type integer -shape (ncpl, nlay) -reader readarray -layered true -optional true -longname idomain existence array -description is an optional array that characterizes the existence status of a cell. If the IDOMAIN array is not specified, then all model cells exist within the solution. If the IDOMAIN value for a cell is 0, the cell does not exist in the simulation. Input and output values will be read and written for the cell, but internal to the program, the cell is excluded from the solution. If the IDOMAIN value for a cell is 1, the cell exists in the simulation. If the IDOMAIN value for a cell is -1, the cell does not exist in the simulation. Furthermore, the first existing cell above will be connected to the first existing cell below. This type of cell is referred to as a ``vertical pass through'' cell. - - -# --------------------- prt disv vertices --------------------- - -block vertices -name vertices -type recarray iv xv yv -shape (nvert) -reader urword -optional false -longname vertices data -description - -block vertices -name iv -type integer -in_record true -tagged false -reader urword -optional false -longname vertex number -description is the vertex number. Records in the VERTICES block must be listed in consecutive order from 1 to NVERT. -numeric_index true - -block vertices -name xv -type double precision -in_record true -tagged false -reader urword -optional false -longname x-coordinate for vertex -description is the x-coordinate for the vertex. - -block vertices -name yv -type double precision -in_record true -tagged false -reader urword -optional false -longname y-coordinate for vertex -description is the y-coordinate for the vertex. - - -# --------------------- prt disv cell2d --------------------- - -block cell2d -name cell2d -type recarray icell2d xc yc ncvert icvert -shape (ncpl) -reader urword -optional false -longname cell2d data -description - -block cell2d -name icell2d -type integer -in_record true -tagged false -reader urword -optional false -longname cell2d number -description is the CELL2D number. Records in the CELL2D block must be listed in consecutive order from the first to the last. -numeric_index true - -block cell2d -name xc -type double precision -in_record true -tagged false -reader urword -optional false -longname x-coordinate for cell center -description is the x-coordinate for the cell center. - -block cell2d -name yc -type double precision -in_record true -tagged false -reader urword -optional false -longname y-coordinate for cell center -description is the y-coordinate for the cell center. - -block cell2d -name ncvert -type integer -in_record true -tagged false -reader urword -optional false -longname number of cell vertices -description is the number of vertices required to define the cell. There may be a different number of vertices for each cell. - -block cell2d -name icvert -type integer -shape (ncvert) -in_record true -tagged false -reader urword -optional false -longname array of vertex numbers -description is an array of integer values containing vertex numbers (in the VERTICES block) used to define the cell. Vertices must be listed in clockwise order. Cells that are connected must share vertices. -numeric_index true diff --git a/spec/dfn/prt-prp.dfn b/spec/dfn/prt-prp.dfn deleted file mode 100644 index bb5edd48..00000000 --- a/spec/dfn/prt-prp.dfn +++ /dev/null @@ -1,395 +0,0 @@ -# --------------------- prt prp options --------------------- -# flopy multi-package - -block options -name boundnames -type keyword -shape -reader urword -optional true -longname -description keyword to indicate that boundary names may be provided with the list of particle release points. - -block options -name print_input -type keyword -reader urword -optional true -longname print input to listing file -description REPLACE print_input {'{#1}': 'all model stress package'} - -block options -name dev_exit_solve_method -type integer -reader urword -optional true -longname exit solve method -description the method for iterative solution of particle exit location and time in the generalized Pollock's method. 0 default, 1 Brent, 2 Chandrupatla. The default is Brent's method. - -block options -name exit_solve_tolerance -type double precision -reader urword -optional false -longname exit solve tolerance -description the convergence tolerance for iterative solution of particle exit location and time in the generalized Pollock's method. A value of 0.00001 works well for many problems, but the value that strikes the best balance between accuracy and runtime is problem-dependent. - -block options -name local_z -type keyword -reader urword -optional true -longname whether to use local z coordinates -description indicates that ``zrpt'' defines the local z coordinate of the release point within the cell, with value of 0 at the bottom and 1 at the top of the cell. If the cell is partially saturated at release time, the top of the cell is considered to be the water table elevation (the head in the cell) rather than the top defined by the user. - -block options -name extend_tracking -type keyword -reader urword -optional true -longname whether to extend tracking beyond the end of the simulation -description indicates that particles should be tracked beyond the end of the simulation's final time step (using that time step's flows) until particles terminate or reach a specified stop time. By default, particles are terminated at the end of the simulation's final time step. - -block options -name track_filerecord -type record track fileout trackfile -shape -reader urword -tagged true -optional true -longname -description - -block options -name track -type keyword -shape -in_record true -reader urword -tagged true -optional false -longname track keyword -description keyword to specify that record corresponds to a binary track output file. Each PRP Package may have a distinct binary track output file. - -block options -name fileout -type keyword -shape -in_record true -reader urword -tagged true -optional false -longname file keyword -description keyword to specify that an output filename is expected next. - -block options -name trackfile -type string -preserve_case true -shape -in_record true -reader urword -tagged false -optional false -longname file keyword -description name of the binary output file to write tracking information. - -block options -name trackcsv_filerecord -type record trackcsv fileout trackcsvfile -shape -reader urword -tagged true -optional true -longname -description - -block options -name trackcsv -type keyword -shape -in_record true -reader urword -tagged true -optional false -longname track keyword -description keyword to specify that record corresponds to a CSV track output file. Each PRP Package may have a distinct CSV track output file. - -block options -name trackcsvfile -type string -preserve_case true -shape -in_record true -reader urword -tagged false -optional false -longname file keyword -description name of the comma-separated value (CSV) file to write tracking information. - -block options -name stoptime -type double precision -reader urword -optional true -longname stop time -description real value defining the maximum simulation time to which particles in the package can be tracked. Particles that have not terminated earlier due to another termination condition will terminate when simulation time STOPTIME is reached. If the last stress period in the simulation consists of more than one time step, particles will not be tracked past the ending time of the last stress period, regardless of STOPTIME. If the last stress period in the simulation consists of a single time step, it is assumed to be a steady-state stress period, and its ending time will not limit the simulation time to which particles can be tracked. If STOPTIME and STOPTRAVELTIME are both provided, particles will be stopped if either is reached. - -block options -name stoptraveltime -type double precision -reader urword -optional true -longname stop travel time -description real value defining the maximum travel time over which particles in the model can be tracked. Particles that have not terminated earlier due to another termination condition will terminate when their travel time reaches STOPTRAVELTIME. If the last stress period in the simulation consists of more than one time step, particles will not be tracked past the ending time of the last stress period, regardless of STOPTRAVELTIME. If the last stress period in the simulation consists of a single time step, it is assumed to be a steady-state stress period, and its ending time will not limit the travel time over which particles can be tracked. If STOPTIME and STOPTRAVELTIME are both provided, particles will be stopped if either is reached. - -block options -name stop_at_weak_sink -type keyword -reader urword -optional true -longname stop at weak sink -description is a text keyword to indicate that a particle is to terminate when it enters a cell that is a weak sink. By default, particles are allowed to pass though cells that are weak sinks. - -block options -name istopzone -type integer -reader urword -optional true -longname stop zone number -description integer value defining the stop zone number. If cells have been assigned IZONE values in the GRIDDATA block, a particle terminates if it enters a cell whose IZONE value matches ISTOPZONE. An ISTOPZONE value of zero indicates that there is no stop zone. The default value is zero. - -block options -name drape -type keyword -reader urword -optional true -longname drape -description is a text keyword to indicate that if a particle's release point is in a cell that happens to be inactive at release time, the particle is to be moved to the topmost active cell below it, if any. By default, a particle is not released into the simulation if its release point's cell is inactive at release time. - -block options -name dev_forceternary -type keyword -reader urword -optional false -longname force ternary tracking method -description force use of the ternary tracking method regardless of cell type in DISV grids. -mf6internal ifrctrn - -block options -name release_time_tolerance -type double precision -reader urword -optional true -longname release time coincidence tolerance -description real number indicating the tolerance within which to consider adjacent release times coincident. Coincident release times will be merged into a single release time. The default is $\epsilon \times 10^11$, where $\epsilon$ is machine precision. - -block options -name release_time_frequency -type double precision -reader urword -optional true -longname release time frequency -description real number indicating the time frequency at which to release particles. This option can be used to schedule releases at a regular interval for the duration of the simulation, starting at the simulation start time. The release schedule is the union of this option, the RELEASETIMES block, and PERIOD block RELEASESETTING selections. If none of these are provided, a single release time is configured at the beginning of the first time step of the simulation's first stress period. - -# --------------------- prt prp dimensions --------------------- - -block dimensions -name nreleasepts -type integer -reader urword -optional false -longname number of particle release points -description is the number of particle release points. - -block dimensions -name nreleasetimes -type integer -reader urword -optional false -longname number of particle release times -description is the number of particle release times specified in the RELEASETIMES block. This is not necessarily the total number of release times; release times are the union of RELEASE\_TIME\_FREQUENCY, RELEASETIMES block, and PERIOD block RELEASESETTING selections. - -# --------------------- prt prp packagedata --------------------- - -block packagedata -name packagedata -type recarray irptno cellid xrpt yrpt zrpt boundname -shape (nreleasepts) -reader urword -longname -description - -block packagedata -name irptno -type integer -shape -tagged false -in_record true -reader urword -longname PRP id number for release point -description integer value that defines the PRP release point number associated with the specified PACKAGEDATA data on the line. IRPTNO must be greater than zero and less than or equal to NRELEASEPTS. The program will terminate with an error if information for a PRP release point number is specified more than once. -numeric_index true - -block packagedata -name cellid -type integer -shape (ncelldim) -tagged false -in_record true -reader urword -longname cell identifier -description REPLACE cellid {} - -block packagedata -name xrpt -type double precision -shape -tagged false -in_record true -reader urword -longname x coordinate of release point -description real value that defines the x coordinate of the release point in model coordinates. The (x, y, z) location specified for the release point must lie within the cell that is identified by the specified cellid. - -block packagedata -name yrpt -type double precision -shape -tagged false -in_record true -reader urword -longname y coordinate of release point -description real value that defines the y coordinate of the release point in model coordinates. The (x, y, z) location specified for the release point must lie within the cell that is identified by the specified cellid. - -block packagedata -name zrpt -type double precision -shape -tagged false -in_record true -reader urword -longname z coordinate of release point -description real value that defines the z coordinate of the release point in model coordinates or, if the LOCAL\_Z option is active, in local cell coordinates. The (x, y, z) location specified for the release point must lie within the cell that is identified by the specified cellid. - -block packagedata -name boundname -type string -shape -tagged false -in_record true -reader urword -optional true -longname release point name -description name of the particle release point. BOUNDNAME is an ASCII character variable that can contain as many as 40 characters. If BOUNDNAME contains spaces in it, then the entire name must be enclosed within single quotes. - -# --------------------- prt prp releasetimes --------------- - -block releasetimes -name releasetimes -type recarray time -shape (nreleasetimes) -reader urword -longname -description - -block releasetimes -name time -type double precision -shape -tagged false -in_record true -reader urword -longname release time -description real value that defines the release time with respect to the simulation start time. - -# --------------------- prt prp period --------------------- - -block period -name iper -type integer -block_variable True -in_record true -tagged false -shape -valid -reader urword -optional false -longname stress period number -description integer value specifying the stress period number for which the data specified in the PERIOD block apply. IPER must be less than or equal to NPER in the TDIS Package and greater than zero. The IPER value assigned to a stress period block must be greater than the IPER value assigned for the previous PERIOD block. The information specified in the PERIOD block applies only to that stress period. - -block period -name perioddata -type recarray releasesetting -shape -reader urword -longname -description - -block period -name releasesetting -type keystring all first frequency steps fraction -shape -tagged false -in_record true -reader urword -longname -description specifies time steps at which to release a particle. A particle is released at the beginning of each specified time step. For fine control over release timing, specify times explicitly using the RELEASETIMES block. If the beginning of a specified time step coincides with a release time specified in the RELEASETIMES block or configured via RELEASE\_TIME\_FREQUENCY, only one particle is released at that time. Coincidence is evaluated up to the tolerance specified in RELEASE\_TIME\_TOLERANCE, or $\epsilon \times 10^11$ by default, where $\epsilon$ is machine precision. If no release times are configured via this setting, the RELEASETIMES block, or the RELEASE\_TIME\_FREQUENCY option, a single release time is configured at the beginning of the first time step of the simulation's first stress period. - -block period -name all -type keyword -shape -in_record true -reader urword -longname -description keyword to indicate release at the start of all time steps in the period. - -block period -name first -type keyword -shape -in_record true -reader urword -longname -description keyword to indicate release at the start of the first time step in the period. This keyword may be used in conjunction with other RELEASESETTING options. - -block period -name last -type keyword -shape -in_record true -reader urword -longname -description keyword to indicate release at the start of the last time step in the period. This keyword may be used in conjunction with other RELEASESETTING options. - -block period -name frequency -type integer -shape -tagged true -in_record true -reader urword -longname -description release at the specified time step frequency. This keyword may be used in conjunction with other RELEASESETTING options. - -block period -name steps -type integer -shape ( {ptype}") - if ptype.startswith("record"): - tin["block"][b][blkparam]["rectypes"] = typelist - else: - tin["block"][b][blkparam]["ratypes"] = typelist - ra_blocks.append(b) - # elif ptype.startswith("recarray"): - # print(f"{tin['block'][b][blkparam]}") - elif ptype.startswith("keystring"): - unsupported.append(blkparam) - - jinja_d = {} - jinja_d[b] = tin["block"][b].copy() - for p in unsupported: - del jinja_d[b][p] - self._warnings.append( - f"Unsupported RECARRAY/KEYSTRING params removed: {p}" - ) - jinja_blocks.append(jinja_d) - - comp = tin["component"].title() - subcomp = tin["subcomponent"].title() - fspec = f"{IPKG_PATH}/{comp.lower()}_{subcomp.lower()}.py" - - psource = tout.render( - c=comp, s=subcomp, block_list=jinja_blocks, ra_blocks=ra_blocks - ) - - with open(fspec, "w") as f: - f.write(psource) - - if comp not in component_d: - component_d[comp] = [] - component_d[comp].append(subcomp) - - def warn(self): - if len(self._warnings): - print(f"TOML: {self._tomlfspec}") - sys.stderr.write("Warnings:\n") - for warn in self._warnings: - sys.stderr.write(" " + warn + "\n") - - -class Toml2IModel: - """ - Generate model python specification - """ - - def __init__( - self, - outdir: str = None, - ): - """Toml2IModel init""" - - tout = None - - with open(f"{PROJ_ROOT}/spec/mf6model.template") as f: - tout = Template(f.read()) - - if not tout: - raise ValueError("FileSystem NO-OPT") - - for comp in component_d: - if ( - comp != "Sim" - and comp != "Utils" - and comp != "Sln" - and comp != "Exg" - ): - fspec = f"{IPKG_PATH}/{comp.lower()}_model.py" - component_d[comp].sort() - psource = tout.render(c=comp, pkg_list=component_d[comp]) - with open(fspec, "w") as f: - f.write(psource) - - -if __name__ == "__main__": - parser = argparse.ArgumentParser( - prog="Convert TOML files to FloPy package files", - formatter_class=argparse.RawDescriptionHelpFormatter, - epilog=textwrap.dedent( - """\ - Generate FloPy package files from TOML files. This - script converts TOML files to package specification - files, each representing a parameter set for a - particular input definition. - """ - ), - ) - parser.add_argument( - "-t", - "--toml", - required=False, - default=TOML_PATH, - help="Path to a toml file or directory containing toml files", - ) - parser.add_argument( - "-o", - "--outdir", - required=False, - default=IPKG_PATH, - help="The directory to write Fortran source files", - ) - parser.add_argument( - "-v", - "--verbose", - action="store_true", - required=False, - default=False, - help="Whether to show verbose output", - ) - args = parser.parse_args() - outdir = Path(args.outdir) if args.outdir else Path.cwd() - Path(outdir).mkdir(exist_ok=True) - verbose = args.verbose - - tspec = Path(args.toml) - tomls = [] - if tspec.is_dir(): - tomls = list(tspec.glob("**/*.toml")) - elif tspec.suffix.lower() in [".toml"]: - tomls = [tspec] - - assert all( - p.is_file() for p in tomls - ), f"TOMLs not found: {[p for p in tomls if not p.is_file()]}" - - if verbose: - print("Converting TOMLs:") - pprint(tomls) - - toml_d = {} - for t in tomls: - converter = Toml2IPkg(t, str(outdir)) - if verbose: - converter.warn() - - Toml2IModel(str(outdir)) - - if verbose: - print("...done.") diff --git a/spec/make_toml.py b/spec/make_toml.py deleted file mode 100644 index f7d45f9a..00000000 --- a/spec/make_toml.py +++ /dev/null @@ -1,304 +0,0 @@ -import argparse -import sys -import textwrap -from pathlib import Path -from pprint import pprint - -import toml - -MF6_LENVARNAME = 16 -F90_LINELEN = 82 -PROJ_ROOT = Path(__file__).parents[1] -DFN_PATH = PROJ_ROOT / "spec" / "dfn" -TOML_PATH = PROJ_ROOT / "spec" / "toml" - -# parameter defaults -mf6_param_dfn = { - "name": "", - "type": "", - "block_variable": False, - "valid": [], - "shape": "", - "tagged": True, - "in_record": False, - "layered": False, - "time_series": False, - "reader": "", - "optional": False, - "preserve_case": False, - "default_value": None, - "numeric_index": False, - "longname": "", - "description": "", - "deprecated": "", -} - - -class Dfn2Toml: - """ - Verify MODFLOW 6 fortran source code format - """ - - def __init__( - self, - dfnfspec: str = None, - outdir: str = None, - ): - """dfn2toml init""" - - self._dfnfspec = dfnfspec - self._outdir = (Path(outdir),) - self._var_d = {} - self.component = "" - self.subcomponent = "" - self._warnings = [] - self._multi_package = False - self._stress_package = False - self._advanced_package = False - self._subpackage = [] - - self.component, self.subcomponent = self._dfnfspec.stem.upper().split( - "-" - ) - self._set_var_d() - blocknames = self.get_blocknames() - - d = { - "component": self.component, - "subcomponent": self.subcomponent, - "blocknames": blocknames, - "multipkg": False, - "stress": False, - "advanced": False, - # "subpackage": [], - "block": {}, - } - - for b in blocknames: - block_d = self._substitute(b, self.component, self.subcomponent) - d["block"][b] = {} - for p in block_d.keys(): - name = block_d[p]["name"] - del block_d[p]["name"] - d["block"][b][name] = block_d[p] - - if self._multi_package: - d["multi"] = True - if self._stress_package: - d["stress"] = True - if self._advanced_package: - d["advanced"] = True - # if len(self._subpackage) > 0: - # d["subpackage"] = self._subpackage.copy() - - fname = f"{self.component.lower()}-{self.subcomponent.lower()}.toml" - fspec = self._outdir[0] / fname - with open( - fspec, - "w", - ) as fh: - toml.dump(d, fh) - - def warn(self): - if len(self._warnings): - print(f"DFN: {self._dfnfspec}") - sys.stderr.write("Warnings:\n") - for warn in self._warnings: - sys.stderr.write(" " + warn + "\n") - - def _set_var_d(self): - f = open(self._dfnfspec, "r") - lines = f.readlines() - f.close() - - vardict = {} - vd = {} - - for line in lines: - # skip blank lines - if len(line.strip()) == 0: - if len(vd) > 0: - name = vd["name"] - if "block" in vd: - block = vd["block"] - key = (name, block) - else: - key = name - if name in vardict: - raise Exception( - "Variable already exists in dictionary: " + name - ) - vardict[key] = vd - vd = {} - continue - - # parse comments for package scoped settings - if "#" in line.strip()[0]: - if "flopy multi-package" in line.strip(): - self._multi_package = True - elif "package-type" in line.strip(): - pkg_tags = line.strip().split() - if pkg_tags[2] == "stress-package": - self._stress_package = True - if pkg_tags[2] == "advanced-stress-package": - self._stress_package = True - self._advanced_package = True - elif "mf6 subpackage" in line.strip(): - sp = line.replace("# mf6 subpackage ", "").strip() - sp = sp.upper() - self._subpackage.append(sp.ljust(16)) - continue - - ll = line.strip().split() - if len(ll) > 1: - k = ll[0] - istart = line.index(" ") - v = line[istart:].strip() - if k in vd: - raise Exception( - "Attribute already exists in dictionary: " + k - ) - vd[k] = v - - if len(vd) > 0: - name = vd["name"] - if "block" in vd: - block = vd["block"] - key = (name, block) - else: - key = name - if name in vardict: - raise Exception( - "Variable already exists in dictionary: " + name - ) - vardict[key] = vd - - self._var_d = vardict - - def _substitute(self, blockname, component, subcomponent): - block_d = {} - ra_d = {} - for k in self._var_d: - varname, block = k - if block != blockname: - continue - - v = self._var_d[k] - - for k in v.keys(): - if k.lower() not in mf6_param_dfn.keys(): - if ( - k.lower() != "block" - and k.lower() != "name" - and k.lower() != "mf6internal" - ): - self._warnings.append( - f"Warning unhandled key: {k.lower()}" - ) - - if "block_variable" in v and v["block_variable"].upper() == "TRUE": - continue - - vtype = v["type"].lower() - if vtype == "double precision": - vtype = "double" - - d = None - d = mf6_param_dfn.copy() - for k in mf6_param_dfn.keys(): - if k in v: - if isinstance(mf6_param_dfn[k], bool): - if v[k].lower() == "true": - d[k] = True - elif v[k].lower() == "false": - d[k] = False - elif k == "valid": - valid = v[k].strip().split() - if len(valid) > 0: - d[k] = valid.copy() - elif k == "type": - d[k] = vtype - elif k == "description": - d[k] = v[k].replace("\\", "").strip() - else: - d[k] = v[k] - - if d["type"].lower().startswith("recarray"): - ra_d[varname] = d - else: - block_d[varname] = d - - bparams = {**block_d, **ra_d} - return bparams - - def get_blocknames(self): - blocknames = [] - for var, block in self._var_d: - if block not in blocknames: - blocknames.append(block.strip()) - return blocknames - - -if __name__ == "__main__": - parser = argparse.ArgumentParser( - prog="Convert DFN files to TOML files", - formatter_class=argparse.RawDescriptionHelpFormatter, - epilog=textwrap.dedent( - """\ - Generate TOML from DFN files. This script converts - definition (DFN) files to TOML specification files, - each representing a parameter set for a particular - input definition. - """ - ), - ) - parser.add_argument( - "-d", - "--dfn", - required=False, - default=DFN_PATH, - help="Path to a DFN file or directory contiaining DFN files", - ) - parser.add_argument( - "-o", - "--outdir", - required=False, - default=TOML_PATH, - help="The directory to write Fortran source files", - ) - parser.add_argument( - "-v", - "--verbose", - action="store_true", - required=False, - default=False, - help="Whether to show verbose output", - ) - args = parser.parse_args() - outdir = Path(args.outdir) if args.outdir else Path.cwd() - Path(outdir).mkdir(exist_ok=True) - verbose = args.verbose - - dfn = Path(args.dfn) - dfns = [] - if dfn.is_dir(): - dfns = list(dfn.glob("**/*.dfn")) - elif dfn.suffix.lower() in [".dfn"]: - dfns = [dfn] - - assert all( - p.is_file() for p in dfns - ), f"DFNs not found: {[p for p in dfns if not p.is_file()]}" - - if verbose: - print("Converting DFNs:") - pprint(dfns) - - dfn_d = {} - for dfn in dfns: - converter = Dfn2Toml(dfn, str(outdir)) - if verbose: - converter.warn() - - if verbose: - print("...done.") diff --git a/spec/mf6model.template b/spec/mf6model.template deleted file mode 100644 index b82df5df..00000000 --- a/spec/mf6model.template +++ /dev/null @@ -1,13 +0,0 @@ -# generated file -from flopy4.model import MFModel -from flopy4.resolver import Resolve -{%- for pkg in pkg_list %} -from flopy4.ispec.{{c.lower()}}_{{pkg.lower()}} import {{c}}{{pkg}} -{%- endfor %} - - -class {{c}}Model(MFModel, Resolve): -{%- for pkg in pkg_list %} - {{pkg.lower()}}6 = {{c}}{{pkg}}() -{%- endfor %} - diff --git a/spec/mf6pkg.template b/spec/mf6pkg.template deleted file mode 100644 index 69eac350..00000000 --- a/spec/mf6pkg.template +++ /dev/null @@ -1,80 +0,0 @@ -# generated file -from flopy4.array import MFArray -from flopy4.compound import MFRecord, MFList -from flopy4.package import MFPackage -from flopy4.scalar import MFDouble, MFFilename, MFInteger, MFKeyword, MFString - - -class {{c}}{{s}}(MFPackage): - multipkg = False - stress = False - advanced = False - -{%- for blocks in block_list %} - {%- for blkname, params in blocks.items() %} - {%- for pname, attr in params.items() %} - {%- if 'keyword' == params[pname].type %} - - {{pname}} = MFKeyword( - type = "keyword", - {%- elif 'string' == params[pname].type %} - - {{pname}} = MFString( - type = "string", - {%- elif 'double' == params[pname].type %} - {%- if '' == params[pname].shape %} - - {{pname}} = MFDouble( - type = "double", - {%- else %} - - {{pname}} = MFArray( - type = "double", - {%- endif %} - {%- elif 'integer' == params[pname].type %} - {%- if '' == params[pname].shape %} - - {{pname}} = MFInteger( - type = "integer", - {%- else %} - - {{pname}} = MFArray( - type = "integer", - {%- endif %} - {%- else %} - {%- set tokens = params[pname].type.split(' ') %} - {%- if 'record' == tokens[0] %} - {%- set rec = tokens.pop(0) %} - - {{pname}} = MFRecord( - type = "record", - params = { - {%- for token in tokens %} - "{{token}}": {{params[pname].rectypes[loop.index-1]}}, - {%- endfor %} - }, - {%- endif %} - {%- if 'recarray' == tokens[0] %} - {%- set rec = tokens.pop(0) %} - - {{pname}} = MFList( - type = "recarray", - params = { - {%- for token in tokens %} - "{{token}}": {{token}}, - {%- endfor %} - }, - {%- endif %} - {%- endif %} - block = "{{blkname}}", - shape = "{{params[pname].shape}}", - reader = "{{params[pname].reader}}", - optional = {{params[pname].optional}}, - longname = -"""{{params[pname].longname}}""", - description = -"""{{params[pname].description}}""", - ) - {%- endfor %} - {%- endfor %} -{%- endfor %} diff --git a/spec/toml/exg-gwfgwf.toml b/spec/toml/exg-gwfgwf.toml deleted file mode 100644 index 6a19877f..00000000 --- a/spec/toml/exg-gwfgwf.toml +++ /dev/null @@ -1,551 +0,0 @@ -component = "EXG" -subcomponent = "GWFGWF" -blocknames = [ "options", "dimensions", "exchangedata",] -multipkg = false -stress = false -advanced = false -multi = true - -[block.options.auxiliary] -type = "string" -block_variable = false -valid = [] -shape = "(naux)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "keyword to specify aux variables" -description = "an array of auxiliary variable names. There is no limit on the number of auxiliary variables that can be provided. Most auxiliary variables will not be used by the GWF-GWF Exchange, but they will be available for use by other parts of the program. If an auxiliary variable with the name ``ANGLDEGX'' is found, then this information will be used as the angle (provided in degrees) between the connection face normal and the x axis, where a value of zero indicates that a normal vector points directly along the positive x axis. The connection face normal is a normal vector on the cell face shared between the cell in model 1 and the cell in model 2 pointing away from the model 1 cell. Additional information on ``ANGLDEGX'' and when it is required is provided in the description of the DISU Package. If an auxiliary variable with the name ``CDIST'' is found, then this information will be used in the calculation of specific discharge within model cells connected by the exchange. For a horizontal connection, CDIST should be specified as the horizontal distance between the cell centers, and should not include the vertical component. For vertical connections, CDIST should be specified as the difference in elevation between the two cell centers. Both ANGLDEGX and CDIST are required if specific discharge is calculated for either of the groundwater models." -deprecated = "" - -[block.options.boundnames] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "" -description = "REPLACE boundnames {'{#1}': 'GWF Exchange'}" -deprecated = "" - -[block.options.print_input] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "keyword to print input to list file" -description = "keyword to indicate that the list of exchange entries will be echoed to the listing file immediately after it is read." -deprecated = "" - -[block.options.print_flows] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "keyword to print gwfgwf flows to list file" -description = "keyword to indicate that the list of exchange flow rates will be printed to the listing file for every stress period in which ``SAVE BUDGET'' is specified in Output Control." -deprecated = "" - -[block.options.save_flows] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "keyword to save GWFGWF flows" -description = "keyword to indicate that cell-by-cell flow terms will be written to the budget file for each model provided that the Output Control for the models are set up with the ``BUDGET SAVE FILE'' option." -deprecated = "" - -[block.options.cell_averaging] -type = "string" -block_variable = false -valid = [ "harmonic", "logarithmic", "amt-lmk",] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "conductance weighting option" -description = "is a keyword and text keyword to indicate the method that will be used for calculating the conductance for horizontal cell connections. The text value for CELL_AVERAGING can be ``HARMONIC'', ``LOGARITHMIC'', or ``AMT-LMK'', which means ``arithmetic-mean thickness and logarithmic-mean hydraulic conductivity''. If the user does not specify a value for CELL_AVERAGING, then the harmonic-mean method will be used." -deprecated = "" - -[block.options.cvoptions] -type = "record variablecv dewatered" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "vertical conductance options" -description = "none" -deprecated = "" - -[block.options.variablecv] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "keyword to activate VARIABLECV option" -description = "keyword to indicate that the vertical conductance will be calculated using the saturated thickness and properties of the overlying cell and the thickness and properties of the underlying cell. If the DEWATERED keyword is also specified, then the vertical conductance is calculated using only the saturated thickness and properties of the overlying cell if the head in the underlying cell is below its top. If these keywords are not specified, then the default condition is to calculate the vertical conductance at the start of the simulation using the initial head and the cell properties. The vertical conductance remains constant for the entire simulation." -deprecated = "" - -[block.options.dewatered] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = true -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "keyword to activate DEWATERED option" -description = "If the DEWATERED keyword is specified, then the vertical conductance is calculated using only the saturated thickness and properties of the overlying cell if the head in the underlying cell is below its top." -deprecated = "" - -[block.options.newton] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "keyword to activate Newton-Raphson" -description = "keyword that activates the Newton-Raphson formulation for groundwater flow between connected, convertible groundwater cells. Cells will not dry when this option is used." -deprecated = "" - -[block.options.xt3d] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "keyword to activate XT3D" -description = "keyword that activates the XT3D formulation between the cells connected with this GWF-GWF Exchange." -deprecated = "" - -[block.options.gnc_filerecord] -type = "record gnc6 filein gnc6_filename" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "" -description = "" -deprecated = "" - -[block.options.filein] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "file keyword" -description = "keyword to specify that an input filename is expected next." -deprecated = "" - -[block.options.gnc6] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "gnc6 keyword" -description = "keyword to specify that record corresponds to a ghost-node correction file." -deprecated = "" - -[block.options.gnc6_filename] -type = "string" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = true -numeric_index = false -longname = "gnc6 input filename" -description = "is the file name for ghost node correction input file. Information for the ghost nodes are provided in the file provided with these keywords. The format for specifying the ghost nodes is the same as described for the GNC Package of the GWF Model. This includes specifying OPTIONS, DIMENSIONS, and GNCDATA blocks. The order of the ghost nodes must follow the same order as the order of the cells in the EXCHANGEDATA block. For the GNCDATA, noden and all of the nodej values are assumed to be located in model 1, and nodem is assumed to be in model 2." -deprecated = "" - -[block.options.mvr_filerecord] -type = "record mvr6 filein mvr6_filename" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "" -description = "" -deprecated = "" - -[block.options.mvr6] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "obs keyword" -description = "keyword to specify that record corresponds to a mover file." -deprecated = "" - -[block.options.mvr6_filename] -type = "string" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = true -numeric_index = false -longname = "mvr6 input filename" -description = "is the file name of the water mover input file to apply to this exchange. Information for the water mover are provided in the file provided with these keywords. The format for specifying the water mover information is the same as described for the Water Mover (MVR) Package of the GWF Model, with two exceptions. First, in the PACKAGES block, the model name must be included as a separate string before each package. Second, the appropriate model name must be included before package name 1 and package name 2 in the BEGIN PERIOD block. This allows providers and receivers to be located in both models listed as part of this exchange." -deprecated = "" - -[block.options.obs_filerecord] -type = "record obs6 filein obs6_filename" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "" -description = "" -deprecated = "" - -[block.options.obs6] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "obs keyword" -description = "keyword to specify that record corresponds to an observations file." -deprecated = "" - -[block.options.obs6_filename] -type = "string" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = true -numeric_index = false -longname = "obs6 input filename" -description = "is the file name of the observations input file for this exchange. See the ``Observation utility'' section for instructions for preparing observation input files. Table ref{table:gwf-obstypetable} lists observation type(s) supported by the GWF-GWF package." -deprecated = "" - -[block.options.dev_interfacemodel_on] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "activate interface model on exchange" -description = "activates the interface model mechanism for calculating the coefficients at (and possibly near) the exchange. This keyword should only be used for development purposes." -deprecated = "" - -[block.dimensions.nexg] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "number of exchanges" -description = "keyword and integer value specifying the number of GWF-GWF exchanges." -deprecated = "" - -[block.exchangedata.cellidm1] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = true -longname = "cellid of first cell" -description = "is the cellid of the cell in model 1 as specified in the simulation name file. For a structured grid that uses the DIS input file, CELLIDM1 is the layer, row, and column numbers of the cell. For a grid that uses the DISV input file, CELLIDM1 is the layer number and CELL2D number for the two cells. If the model uses the unstructured discretization (DISU) input file, then CELLIDM1 is the node number for the cell." -deprecated = "" - -[block.exchangedata.cellidm2] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = true -longname = "cellid of second cell" -description = "is the cellid of the cell in model 2 as specified in the simulation name file. For a structured grid that uses the DIS input file, CELLIDM2 is the layer, row, and column numbers of the cell. For a grid that uses the DISV input file, CELLIDM2 is the layer number and CELL2D number for the two cells. If the model uses the unstructured discretization (DISU) input file, then CELLIDM2 is the node number for the cell." -deprecated = "" - -[block.exchangedata.ihc] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "integer flag for connection type" -description = "is an integer flag indicating the direction between node n and all of its m connections. If IHC = 0 then the connection is vertical. If IHC = 1 then the connection is horizontal. If IHC = 2 then the connection is horizontal for a vertically staggered grid." -deprecated = "" - -[block.exchangedata.cl1] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "connection distance" -description = "is the distance between the center of cell 1 and the its shared face with cell 2." -deprecated = "" - -[block.exchangedata.cl2] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "connection distance" -description = "is the distance between the center of cell 2 and the its shared face with cell 1." -deprecated = "" - -[block.exchangedata.hwva] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "horizontal cell width or area for vertical flow" -description = "is the horizontal width of the flow connection between cell 1 and cell 2 if IHC $>$ 0, or it is the area perpendicular to flow of the vertical connection between cell 1 and cell 2 if IHC = 0." -deprecated = "" - -[block.exchangedata.aux] -type = "double" -block_variable = false -valid = [] -shape = "(naux)" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "auxiliary variables" -description = "represents the values of the auxiliary variables for each GWFGWF Exchange. The values of auxiliary variables must be present for each exchange. The values must be specified in the order of the auxiliary variables specified in the OPTIONS block." -deprecated = "" - -[block.exchangedata.boundname] -type = "string" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "exchange boundname" -description = "REPLACE boundname {'{#1}': 'GWF Exchange'}" -deprecated = "" - -[block.exchangedata.exchangedata] -type = "recarray cellidm1 cellidm2 ihc cl1 cl2 hwva aux boundname" -block_variable = false -valid = [] -shape = "(nexg)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "exchange data" -description = "" -deprecated = "" diff --git a/spec/toml/gwe-dis.toml b/spec/toml/gwe-dis.toml deleted file mode 100644 index 80214f3c..00000000 --- a/spec/toml/gwe-dis.toml +++ /dev/null @@ -1,336 +0,0 @@ -component = "GWE" -subcomponent = "DIS" -blocknames = [ "options", "dimensions", "griddata",] -multipkg = false -stress = false -advanced = false - -[block.options.length_units] -type = "string" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "model length units" -description = "is the length units used for this model. Values can be ``FEET'', ``METERS'', or ``CENTIMETERS''. If not specified, the default is ``UNKNOWN''." -deprecated = "" - -[block.options.nogrb] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "do not write binary grid file" -description = "keyword to deactivate writing of the binary grid file." -deprecated = "" - -[block.options.xorigin] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "x-position of the model grid origin" -description = "x-position of the lower-left corner of the model grid. A default value of zero is assigned if not specified. The value for XORIGIN does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space." -deprecated = "" - -[block.options.yorigin] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "y-position of the model grid origin" -description = "y-position of the lower-left corner of the model grid. If not specified, then a default value equal to zero is used. The value for YORIGIN does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space." -deprecated = "" - -[block.options.angrot] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "rotation angle" -description = "counter-clockwise rotation angle (in degrees) of the lower-left corner of the model grid. If not specified, then a default value of 0.0 is assigned. The value for ANGROT does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space." -deprecated = "" - -[block.options.export_array_ascii] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "export array variables to layered ascii files." -description = "keyword that specifies input griddata arrays should be written to layered ascii output files." -deprecated = "" - -[block.options.export_array_netcdf] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "export array variables to netcdf output files." -description = "keyword that specifies input griddata arrays should be written to the model output netcdf file." -deprecated = "" - -[block.options.ncf_filerecord] -type = "record ncf6 filein ncf6_filename" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "" -description = "" -deprecated = "" - -[block.options.ncf6] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "ncf keyword" -description = "keyword to specify that record corresponds to a netcdf configuration (NCF) file." -deprecated = "" - -[block.options.filein] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "file keyword" -description = "keyword to specify that an input filename is expected next." -deprecated = "" - -[block.options.ncf6_filename] -type = "string" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = true -numeric_index = false -longname = "file name of NCF information" -description = "defines a netcdf configuration (NCF) input file." -deprecated = "" - -[block.dimensions.nlay] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -default_value = "1" -numeric_index = false -longname = "number of layers" -description = "is the number of layers in the model grid." -deprecated = "" - -[block.dimensions.nrow] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -default_value = "2" -numeric_index = false -longname = "number of rows" -description = "is the number of rows in the model grid." -deprecated = "" - -[block.dimensions.ncol] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -default_value = "2" -numeric_index = false -longname = "number of columns" -description = "is the number of columns in the model grid." -deprecated = "" - -[block.griddata.delr] -type = "double" -block_variable = false -valid = [] -shape = "(ncol)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "readarray" -optional = false -preserve_case = false -default_value = "1.0" -numeric_index = false -longname = "spacing along a row" -description = "is the column spacing in the row direction." -deprecated = "" - -[block.griddata.delc] -type = "double" -block_variable = false -valid = [] -shape = "(nrow)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "readarray" -optional = false -preserve_case = false -default_value = "1.0" -numeric_index = false -longname = "spacing along a column" -description = "is the row spacing in the column direction." -deprecated = "" - -[block.griddata.top] -type = "double" -block_variable = false -valid = [] -shape = "(ncol, nrow)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "readarray" -optional = false -preserve_case = false -default_value = "1.0" -numeric_index = false -longname = "cell top elevation" -description = "is the top elevation for each cell in the top model layer." -deprecated = "" - -[block.griddata.botm] -type = "double" -block_variable = false -valid = [] -shape = "(ncol, nrow, nlay)" -tagged = true -in_record = false -layered = true -time_series = false -reader = "readarray" -optional = false -preserve_case = false -default_value = "0." -numeric_index = false -longname = "cell bottom elevation" -description = "is the bottom elevation for each cell." -deprecated = "" - -[block.griddata.idomain] -type = "integer" -block_variable = false -valid = [] -shape = "(ncol, nrow, nlay)" -tagged = true -in_record = false -layered = true -time_series = false -reader = "readarray" -optional = true -preserve_case = false -numeric_index = false -longname = "idomain existence array" -description = "is an optional array that characterizes the existence status of a cell. If the IDOMAIN array is not specified, then all model cells exist within the solution. If the IDOMAIN value for a cell is 0, the cell does not exist in the simulation. Input and output values will be read and written for the cell, but internal to the program, the cell is excluded from the solution. If the IDOMAIN value for a cell is 1, the cell exists in the simulation. If the IDOMAIN value for a cell is -1, the cell does not exist in the simulation. Furthermore, the first existing cell above will be connected to the first existing cell below. This type of cell is referred to as a ``vertical pass through'' cell." -deprecated = "" diff --git a/spec/toml/gwe-disu.toml b/spec/toml/gwe-disu.toml deleted file mode 100644 index 915162c0..00000000 --- a/spec/toml/gwe-disu.toml +++ /dev/null @@ -1,517 +0,0 @@ -component = "GWE" -subcomponent = "DISU" -blocknames = [ "options", "dimensions", "griddata", "connectiondata", "vertices", "cell2d",] -multipkg = false -stress = false -advanced = false - -[block.options.length_units] -type = "string" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "model length units" -description = "is the length units used for this model. Values can be ``FEET'', ``METERS'', or ``CENTIMETERS''. If not specified, the default is ``UNKNOWN''." -deprecated = "" - -[block.options.nogrb] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "do not write binary grid file" -description = "keyword to deactivate writing of the binary grid file." -deprecated = "" - -[block.options.xorigin] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "x-position origin of the model grid coordinate system" -description = "x-position of the origin used for model grid vertices. This value should be provided in a real-world coordinate system. A default value of zero is assigned if not specified. The value for XORIGIN does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space." -deprecated = "" - -[block.options.yorigin] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "y-position origin of the model grid coordinate system" -description = "y-position of the origin used for model grid vertices. This value should be provided in a real-world coordinate system. If not specified, then a default value equal to zero is used. The value for YORIGIN does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space." -deprecated = "" - -[block.options.angrot] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "rotation angle" -description = "counter-clockwise rotation angle (in degrees) of the model grid coordinate system relative to a real-world coordinate system. If not specified, then a default value of 0.0 is assigned. The value for ANGROT does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space." -deprecated = "" - -[block.options.vertical_offset_tolerance] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -default_value = "0.0" -numeric_index = false -longname = "vertical length dimension for top and bottom checking" -description = "checks are performed to ensure that the top of a cell is not higher than the bottom of an overlying cell. This option can be used to specify the tolerance that is used for checking. If top of a cell is above the bottom of an overlying cell by a value less than this tolerance, then the program will not terminate with an error. The default value is zero. This option should generally not be used." -deprecated = "" - -[block.options.export_array_ascii] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "export array variables to layered ascii files." -description = "keyword that specifies input griddata arrays should be written to layered ascii output files." -deprecated = "" - -[block.dimensions.nodes] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "number of layers" -description = "is the number of cells in the model grid." -deprecated = "" - -[block.dimensions.nja] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "number of columns" -description = "is the sum of the number of connections and NODES. When calculating the total number of connections, the connection between cell n and cell m is considered to be different from the connection between cell m and cell n. Thus, NJA is equal to the total number of connections, including n to m and m to n, and the total number of cells." -deprecated = "" - -[block.dimensions.nvert] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "number of vertices" -description = "is the total number of (x, y) vertex pairs used to define the plan-view shape of each cell in the model grid. If NVERT is not specified or is specified as zero, then the VERTICES and CELL2D blocks below are not read. NVERT and the accompanying VERTICES and CELL2D blocks should be specified for most simulations. If the XT3D or SAVE_SPECIFIC_DISCHARGE options are specified in the NPF Package, then this information is required." -deprecated = "" - -[block.griddata.top] -type = "double" -block_variable = false -valid = [] -shape = "(nodes)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "readarray" -optional = false -preserve_case = false -numeric_index = false -longname = "cell top elevation" -description = "is the top elevation for each cell in the model grid." -deprecated = "" - -[block.griddata.bot] -type = "double" -block_variable = false -valid = [] -shape = "(nodes)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "readarray" -optional = false -preserve_case = false -numeric_index = false -longname = "cell bottom elevation" -description = "is the bottom elevation for each cell." -deprecated = "" - -[block.griddata.area] -type = "double" -block_variable = false -valid = [] -shape = "(nodes)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "readarray" -optional = false -preserve_case = false -numeric_index = false -longname = "cell surface area" -description = "is the cell surface area (in plan view)." -deprecated = "" - -[block.griddata.idomain] -type = "integer" -block_variable = false -valid = [] -shape = "(nodes)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "readarray" -optional = true -preserve_case = false -numeric_index = false -longname = "idomain existence array" -description = "is an optional array that characterizes the existence status of a cell. If the IDOMAIN array is not specified, then all model cells exist within the solution. If the IDOMAIN value for a cell is 0, the cell does not exist in the simulation. Input and output values will be read and written for the cell, but internal to the program, the cell is excluded from the solution. If the IDOMAIN value for a cell is 1 or greater, the cell exists in the simulation. IDOMAIN values of -1 cannot be specified for the DISU Package." -deprecated = "" - -[block.connectiondata.iac] -type = "integer" -block_variable = false -valid = [] -shape = "(nodes)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "readarray" -optional = false -preserve_case = false -numeric_index = false -longname = "number of cell connections" -description = "is the number of connections (plus 1) for each cell. The sum of all the entries in IAC must be equal to NJA." -deprecated = "" - -[block.connectiondata.ja] -type = "integer" -block_variable = false -valid = [] -shape = "(nja)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "readarray" -optional = false -preserve_case = false -numeric_index = true -longname = "grid connectivity" -description = "is a list of cell number (n) followed by its connecting cell numbers (m) for each of the m cells connected to cell n. The number of values to provide for cell n is IAC(n). This list is sequentially provided for the first to the last cell. The first value in the list must be cell n itself, and the remaining cells must be listed in an increasing order (sorted from lowest number to highest). Note that the cell and its connections are only supplied for the GWE cells and their connections to the other GWE cells. Also note that the JA list input may be divided such that every node and its connectivity list can be on a separate line for ease in readability of the file. To further ease readability of the file, the node number of the cell whose connectivity is subsequently listed, may be expressed as a negative number, the sign of which is subsequently converted to positive by the code." -deprecated = "" - -[block.connectiondata.ihc] -type = "integer" -block_variable = false -valid = [] -shape = "(nja)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "readarray" -optional = false -preserve_case = false -numeric_index = false -longname = "connection type" -description = "is an index array indicating the direction between node n and all of its m connections. If IHC = 0 then cell n and cell m are connected in the vertical direction. Cell n overlies cell m if the cell number for n is less than m; cell m overlies cell n if the cell number for m is less than n. If IHC = 1 then cell n and cell m are connected in the horizontal direction. If IHC = 2 then cell n and cell m are connected in the horizontal direction, and the connection is vertically staggered. A vertically staggered connection is one in which a cell is horizontally connected to more than one cell in a horizontal connection." -deprecated = "" - -[block.connectiondata.cl12] -type = "double" -block_variable = false -valid = [] -shape = "(nja)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "readarray" -optional = false -preserve_case = false -numeric_index = false -longname = "connection lengths" -description = "is the array containing connection lengths between the center of cell n and the shared face with each adjacent m cell." -deprecated = "" - -[block.connectiondata.hwva] -type = "double" -block_variable = false -valid = [] -shape = "(nja)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "readarray" -optional = false -preserve_case = false -numeric_index = false -longname = "connection lengths" -description = "is a symmetric array of size NJA. For horizontal connections, entries in HWVA are the horizontal width perpendicular to flow. For vertical connections, entries in HWVA are the vertical area for flow. Thus, values in the HWVA array contain dimensions of both length and area. Entries in the HWVA array have a one-to-one correspondence with the connections specified in the JA array. Likewise, there is a one-to-one correspondence between entries in the HWVA array and entries in the IHC array, which specifies the connection type (horizontal or vertical). Entries in the HWVA array must be symmetric; the program will terminate with an error if the value for HWVA for an n to m connection does not equal the value for HWVA for the corresponding n to m connection." -deprecated = "" - -[block.connectiondata.angldegx] -type = "double" -block_variable = false -valid = [] -shape = "(nja)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "readarray" -optional = true -preserve_case = false -numeric_index = false -longname = "angle of face normal to connection" -description = "is the angle (in degrees) between the horizontal x-axis and the outward normal to the face between a cell and its connecting cells. The angle varies between zero and 360.0 degrees, where zero degrees points in the positive x-axis direction, and 90 degrees points in the positive y-axis direction. ANGLDEGX is only needed if horizontal anisotropy is specified in the NPF Package, if the XT3D option is used in the NPF Package, or if the SAVE_SPECIFIC_DISCHARGE option is specified in the NPF Package. ANGLDEGX does not need to be specified if these conditions are not met. ANGLDEGX is of size NJA; values specified for vertical connections and for the diagonal position are not used. Note that ANGLDEGX is read in degrees, which is different from MODFLOW-USG, which reads a similar variable (ANGLEX) in radians." -deprecated = "" - -[block.vertices.iv] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = true -longname = "vertex number" -description = "is the vertex number. Records in the VERTICES block must be listed in consecutive order from 1 to NVERT." -deprecated = "" - -[block.vertices.xv] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "x-coordinate for vertex" -description = "is the x-coordinate for the vertex." -deprecated = "" - -[block.vertices.yv] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "y-coordinate for vertex" -description = "is the y-coordinate for the vertex." -deprecated = "" - -[block.vertices.vertices] -type = "recarray iv xv yv" -block_variable = false -valid = [] -shape = "(nvert)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "vertices data" -description = "" -deprecated = "" - -[block.cell2d.icell2d] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = true -longname = "cell2d number" -description = "is the cell2d number. Records in the CELL2D block must be listed in consecutive order from 1 to NODES." -deprecated = "" - -[block.cell2d.xc] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "x-coordinate for cell center" -description = "is the x-coordinate for the cell center." -deprecated = "" - -[block.cell2d.yc] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "y-coordinate for cell center" -description = "is the y-coordinate for the cell center." -deprecated = "" - -[block.cell2d.ncvert] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "number of cell vertices" -description = "is the number of vertices required to define the cell. There may be a different number of vertices for each cell." -deprecated = "" - -[block.cell2d.icvert] -type = "integer" -block_variable = false -valid = [] -shape = "(ncvert)" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = true -longname = "array of vertex numbers" -description = "is an array of integer values containing vertex numbers (in the VERTICES block) used to define the cell. Vertices must be listed in clockwise order." -deprecated = "" - -[block.cell2d.cell2d] -type = "recarray icell2d xc yc ncvert icvert" -block_variable = false -valid = [] -shape = "(nodes)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "cell2d data" -description = "" -deprecated = "" diff --git a/spec/toml/gwe-disv.toml b/spec/toml/gwe-disv.toml deleted file mode 100644 index 2aa83630..00000000 --- a/spec/toml/gwe-disv.toml +++ /dev/null @@ -1,465 +0,0 @@ -component = "GWE" -subcomponent = "DISV" -blocknames = [ "options", "dimensions", "griddata", "vertices", "cell2d",] -multipkg = false -stress = false -advanced = false - -[block.options.length_units] -type = "string" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "model length units" -description = "is the length units used for this model. Values can be ``FEET'', ``METERS'', or ``CENTIMETERS''. If not specified, the default is ``UNKNOWN''." -deprecated = "" - -[block.options.nogrb] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "do not write binary grid file" -description = "keyword to deactivate writing of the binary grid file." -deprecated = "" - -[block.options.xorigin] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "x-position origin of the model grid coordinate system" -description = "x-position of the origin used for model grid vertices. This value should be provided in a real-world coordinate system. A default value of zero is assigned if not specified. The value for XORIGIN does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space." -deprecated = "" - -[block.options.yorigin] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "y-position origin of the model grid coordinate system" -description = "y-position of the origin used for model grid vertices. This value should be provided in a real-world coordinate system. If not specified, then a default value equal to zero is used. The value for YORIGIN does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space." -deprecated = "" - -[block.options.angrot] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "rotation angle" -description = "counter-clockwise rotation angle (in degrees) of the model grid coordinate system relative to a real-world coordinate system. If not specified, then a default value of 0.0 is assigned. The value for ANGROT does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space." -deprecated = "" - -[block.options.export_array_ascii] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "export array variables to layered ascii files." -description = "keyword that specifies input griddata arrays should be written to layered ascii output files." -deprecated = "" - -[block.options.export_array_netcdf] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "export array variables to netcdf output files." -description = "keyword that specifies input griddata arrays should be written to the model output netcdf file." -deprecated = "" - -[block.options.ncf_filerecord] -type = "record ncf6 filein ncf6_filename" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "" -description = "" -deprecated = "" - -[block.options.ncf6] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "ncf keyword" -description = "keyword to specify that record corresponds to a netcdf configuration (NCF) file." -deprecated = "" - -[block.options.filein] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "file keyword" -description = "keyword to specify that an input filename is expected next." -deprecated = "" - -[block.options.ncf6_filename] -type = "string" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = true -numeric_index = false -longname = "file name of NCF information" -description = "defines a netcdf configuration (NCF) input file." -deprecated = "" - -[block.dimensions.nlay] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "number of layers" -description = "is the number of layers in the model grid." -deprecated = "" - -[block.dimensions.ncpl] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "number of cells per layer" -description = "is the number of cells per layer. This is a constant value for the grid and it applies to all layers." -deprecated = "" - -[block.dimensions.nvert] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "number of columns" -description = "is the total number of (x, y) vertex pairs used to characterize the horizontal configuration of the model grid." -deprecated = "" - -[block.griddata.top] -type = "double" -block_variable = false -valid = [] -shape = "(ncpl)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "readarray" -optional = false -preserve_case = false -numeric_index = false -longname = "model top elevation" -description = "is the top elevation for each cell in the top model layer." -deprecated = "" - -[block.griddata.botm] -type = "double" -block_variable = false -valid = [] -shape = "(ncpl, nlay)" -tagged = true -in_record = false -layered = true -time_series = false -reader = "readarray" -optional = false -preserve_case = false -numeric_index = false -longname = "model bottom elevation" -description = "is the bottom elevation for each cell." -deprecated = "" - -[block.griddata.idomain] -type = "integer" -block_variable = false -valid = [] -shape = "(ncpl, nlay)" -tagged = true -in_record = false -layered = true -time_series = false -reader = "readarray" -optional = true -preserve_case = false -numeric_index = false -longname = "idomain existence array" -description = "is an optional array that characterizes the existence status of a cell. If the IDOMAIN array is not specified, then all model cells exist within the solution. If the IDOMAIN value for a cell is 0, the cell does not exist in the simulation. Input and output values will be read and written for the cell, but internal to the program, the cell is excluded from the solution. If the IDOMAIN value for a cell is 1, the cell exists in the simulation. If the IDOMAIN value for a cell is -1, the cell does not exist in the simulation. Furthermore, the first existing cell above will be connected to the first existing cell below. This type of cell is referred to as a ``vertical pass through'' cell." -deprecated = "" - -[block.vertices.iv] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = true -longname = "vertex number" -description = "is the vertex number. Records in the VERTICES block must be listed in consecutive order from 1 to NVERT." -deprecated = "" - -[block.vertices.xv] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "x-coordinate for vertex" -description = "is the x-coordinate for the vertex." -deprecated = "" - -[block.vertices.yv] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "y-coordinate for vertex" -description = "is the y-coordinate for the vertex." -deprecated = "" - -[block.vertices.vertices] -type = "recarray iv xv yv" -block_variable = false -valid = [] -shape = "(nvert)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "vertices data" -description = "" -deprecated = "" - -[block.cell2d.icell2d] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = true -longname = "cell2d number" -description = "is the CELL2D number. Records in the CELL2D block must be listed in consecutive order from the first to the last." -deprecated = "" - -[block.cell2d.xc] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "x-coordinate for cell center" -description = "is the x-coordinate for the cell center." -deprecated = "" - -[block.cell2d.yc] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "y-coordinate for cell center" -description = "is the y-coordinate for the cell center." -deprecated = "" - -[block.cell2d.ncvert] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "number of cell vertices" -description = "is the number of vertices required to define the cell. There may be a different number of vertices for each cell." -deprecated = "" - -[block.cell2d.icvert] -type = "integer" -block_variable = false -valid = [] -shape = "(ncvert)" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = true -longname = "array of vertex numbers" -description = "is an array of integer values containing vertex numbers (in the VERTICES block) used to define the cell. Vertices must be listed in clockwise order. Cells that are connected must share vertices." -deprecated = "" - -[block.cell2d.cell2d] -type = "recarray icell2d xc yc ncvert icvert" -block_variable = false -valid = [] -shape = "(ncpl)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "cell2d data" -description = "" -deprecated = "" diff --git a/spec/toml/gwf-chd.toml b/spec/toml/gwf-chd.toml deleted file mode 100644 index d0a3d318..00000000 --- a/spec/toml/gwf-chd.toml +++ /dev/null @@ -1,347 +0,0 @@ -component = "GWF" -subcomponent = "CHD" -blocknames = [ "options", "dimensions", "period",] -multipkg = false -stress = true -advanced = false -multi = true - -[block.options.auxiliary] -type = "string" -block_variable = false -valid = [] -shape = "(naux)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "keyword to specify aux variables" -description = "REPLACE auxnames {'{#1}': 'Groundwater Flow'}" -deprecated = "" - -[block.options.auxmultname] -type = "string" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "name of auxiliary variable for multiplier" -description = "REPLACE auxmultname {'{#1}': 'CHD head value'}" -deprecated = "" - -[block.options.boundnames] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "" -description = "REPLACE boundnames {'{#1}': 'constant-head'}" -deprecated = "" - -[block.options.print_input] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "print input to listing file" -description = "REPLACE print_input {'{#1}': 'constant-head'}" -deprecated = "" - -[block.options.print_flows] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "print CHD flows to listing file" -description = "REPLACE print_flows {'{#1}': 'constant-head'}" -deprecated = "" - -[block.options.save_flows] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "save CHD flows to budget file" -description = "REPLACE save_flows {'{#1}': 'constant-head'}" -deprecated = "" - -[block.options.ts_filerecord] -type = "record ts6 filein ts6_filename" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "" -description = "" -deprecated = "" - -[block.options.ts6] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "head keyword" -description = "keyword to specify that record corresponds to a time-series file." -deprecated = "" - -[block.options.filein] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "file keyword" -description = "keyword to specify that an input filename is expected next." -deprecated = "" - -[block.options.ts6_filename] -type = "string" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = true -numeric_index = false -longname = "file name of time series information" -description = "REPLACE timeseriesfile {}" -deprecated = "" - -[block.options.obs_filerecord] -type = "record obs6 filein obs6_filename" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "" -description = "" -deprecated = "" - -[block.options.obs6] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "obs keyword" -description = "keyword to specify that record corresponds to an observations file." -deprecated = "" - -[block.options.obs6_filename] -type = "string" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = true -numeric_index = false -longname = "obs6 input filename" -description = "REPLACE obs6_filename {'{#1}': 'constant-head'}" -deprecated = "" - -[block.options.dev_no_newton] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "turn off Newton for unconfined cells" -description = "turn off Newton for unconfined cells" -deprecated = "" - -[block.dimensions.maxbound] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "maximum number of constant heads" -description = "REPLACE maxbound {'{#1}': 'constant-head'}" -deprecated = "" - -[block.period.cellid] -type = "integer" -block_variable = false -valid = [] -shape = "(ncelldim)" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "cell identifier" -description = "REPLACE cellid {}" -deprecated = "" - -[block.period.head] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = true -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "head value assigned to constant head" -description = "is the head at the boundary. If the Options block includes a TIMESERIESFILE entry (see the ``Time-Variable Input'' section), values can be obtained from a time series by entering the time-series name in place of a numeric value." -deprecated = "" - -[block.period.aux] -type = "double" -block_variable = false -valid = [] -shape = "(naux)" -tagged = false -in_record = true -layered = false -time_series = true -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "auxiliary variables" -description = "REPLACE aux {'{#1}': 'constant head'}" -deprecated = "" - -[block.period.boundname] -type = "string" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "constant head boundary name" -description = "REPLACE boundname {'{#1}': 'constant head boundary'}" -deprecated = "" - -[block.period.stress_period_data] -type = "recarray cellid head aux boundname" -block_variable = false -valid = [] -shape = "(maxbound)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "" -description = "" -deprecated = "" diff --git a/spec/toml/gwf-dis.toml b/spec/toml/gwf-dis.toml deleted file mode 100644 index e06c07c1..00000000 --- a/spec/toml/gwf-dis.toml +++ /dev/null @@ -1,336 +0,0 @@ -component = "GWF" -subcomponent = "DIS" -blocknames = [ "options", "dimensions", "griddata",] -multipkg = false -stress = false -advanced = false - -[block.options.length_units] -type = "string" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "model length units" -description = "is the length units used for this model. Values can be ``FEET'', ``METERS'', or ``CENTIMETERS''. If not specified, the default is ``UNKNOWN''." -deprecated = "" - -[block.options.nogrb] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "do not write binary grid file" -description = "keyword to deactivate writing of the binary grid file." -deprecated = "" - -[block.options.xorigin] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "x-position of the model grid origin" -description = "x-position of the lower-left corner of the model grid. A default value of zero is assigned if not specified. The value for XORIGIN does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space." -deprecated = "" - -[block.options.yorigin] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "y-position of the model grid origin" -description = "y-position of the lower-left corner of the model grid. If not specified, then a default value equal to zero is used. The value for YORIGIN does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space." -deprecated = "" - -[block.options.angrot] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "rotation angle" -description = "counter-clockwise rotation angle (in degrees) of the lower-left corner of the model grid. If not specified, then a default value of 0.0 is assigned. The value for ANGROT does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space." -deprecated = "" - -[block.options.export_array_ascii] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "export array variables to layered ascii files." -description = "keyword that specifies input griddata arrays should be written to layered ascii output files." -deprecated = "" - -[block.options.export_array_netcdf] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "export array variables to netcdf output files." -description = "keyword that specifies input griddata arrays should be written to the model output netcdf file." -deprecated = "" - -[block.options.ncf_filerecord] -type = "record ncf6 filein ncf6_filename" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "" -description = "" -deprecated = "" - -[block.options.ncf6] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "ncf keyword" -description = "keyword to specify that record corresponds to a netcdf configuration (NCF) file." -deprecated = "" - -[block.options.filein] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "file keyword" -description = "keyword to specify that an input filename is expected next." -deprecated = "" - -[block.options.ncf6_filename] -type = "string" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = true -numeric_index = false -longname = "file name of NCF information" -description = "defines a netcdf configuration (NCF) input file." -deprecated = "" - -[block.dimensions.nlay] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -default_value = "1" -numeric_index = false -longname = "number of layers" -description = "is the number of layers in the model grid." -deprecated = "" - -[block.dimensions.nrow] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -default_value = "2" -numeric_index = false -longname = "number of rows" -description = "is the number of rows in the model grid." -deprecated = "" - -[block.dimensions.ncol] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -default_value = "2" -numeric_index = false -longname = "number of columns" -description = "is the number of columns in the model grid." -deprecated = "" - -[block.griddata.delr] -type = "double" -block_variable = false -valid = [] -shape = "(ncol)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "readarray" -optional = false -preserve_case = false -default_value = "1.0" -numeric_index = false -longname = "spacing along a row" -description = "is the column spacing in the row direction." -deprecated = "" - -[block.griddata.delc] -type = "double" -block_variable = false -valid = [] -shape = "(nrow)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "readarray" -optional = false -preserve_case = false -default_value = "1.0" -numeric_index = false -longname = "spacing along a column" -description = "is the row spacing in the column direction." -deprecated = "" - -[block.griddata.top] -type = "double" -block_variable = false -valid = [] -shape = "(ncol, nrow)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "readarray" -optional = false -preserve_case = false -default_value = "1.0" -numeric_index = false -longname = "cell top elevation" -description = "is the top elevation for each cell in the top model layer." -deprecated = "" - -[block.griddata.botm] -type = "double" -block_variable = false -valid = [] -shape = "(ncol, nrow, nlay)" -tagged = true -in_record = false -layered = true -time_series = false -reader = "readarray" -optional = false -preserve_case = false -default_value = "0." -numeric_index = false -longname = "cell bottom elevation" -description = "is the bottom elevation for each cell." -deprecated = "" - -[block.griddata.idomain] -type = "integer" -block_variable = false -valid = [] -shape = "(ncol, nrow, nlay)" -tagged = true -in_record = false -layered = true -time_series = false -reader = "readarray" -optional = true -preserve_case = false -numeric_index = false -longname = "idomain existence array" -description = "is an optional array that characterizes the existence status of a cell. If the IDOMAIN array is not specified, then all model cells exist within the solution. If the IDOMAIN value for a cell is 0, the cell does not exist in the simulation. Input and output values will be read and written for the cell, but internal to the program, the cell is excluded from the solution. If the IDOMAIN value for a cell is 1 or greater, the cell exists in the simulation. If the IDOMAIN value for a cell is -1, the cell does not exist in the simulation. Furthermore, the first existing cell above will be connected to the first existing cell below. This type of cell is referred to as a ``vertical pass through'' cell." -deprecated = "" diff --git a/spec/toml/gwf-disu.toml b/spec/toml/gwf-disu.toml deleted file mode 100644 index 87a6692e..00000000 --- a/spec/toml/gwf-disu.toml +++ /dev/null @@ -1,517 +0,0 @@ -component = "GWF" -subcomponent = "DISU" -blocknames = [ "options", "dimensions", "griddata", "connectiondata", "vertices", "cell2d",] -multipkg = false -stress = false -advanced = false - -[block.options.length_units] -type = "string" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "model length units" -description = "is the length units used for this model. Values can be ``FEET'', ``METERS'', or ``CENTIMETERS''. If not specified, the default is ``UNKNOWN''." -deprecated = "" - -[block.options.nogrb] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "do not write binary grid file" -description = "keyword to deactivate writing of the binary grid file." -deprecated = "" - -[block.options.xorigin] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "x-position origin of the model grid coordinate system" -description = "x-position of the origin used for model grid vertices. This value should be provided in a real-world coordinate system. A default value of zero is assigned if not specified. The value for XORIGIN does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space." -deprecated = "" - -[block.options.yorigin] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "y-position origin of the model grid coordinate system" -description = "y-position of the origin used for model grid vertices. This value should be provided in a real-world coordinate system. If not specified, then a default value equal to zero is used. The value for YORIGIN does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space." -deprecated = "" - -[block.options.angrot] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "rotation angle" -description = "counter-clockwise rotation angle (in degrees) of the model grid coordinate system relative to a real-world coordinate system. If not specified, then a default value of 0.0 is assigned. The value for ANGROT does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space." -deprecated = "" - -[block.options.vertical_offset_tolerance] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -default_value = "0.0" -numeric_index = false -longname = "vertical length dimension for top and bottom checking" -description = "checks are performed to ensure that the top of a cell is not higher than the bottom of an overlying cell. This option can be used to specify the tolerance that is used for checking. If top of a cell is above the bottom of an overlying cell by a value less than this tolerance, then the program will not terminate with an error. The default value is zero. This option should generally not be used." -deprecated = "" - -[block.options.export_array_ascii] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "export array variables to layered ascii files." -description = "keyword that specifies input griddata arrays should be written to layered ascii output files." -deprecated = "" - -[block.dimensions.nodes] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "number of layers" -description = "is the number of cells in the model grid." -deprecated = "" - -[block.dimensions.nja] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "number of columns" -description = "is the sum of the number of connections and NODES. When calculating the total number of connections, the connection between cell n and cell m is considered to be different from the connection between cell m and cell n. Thus, NJA is equal to the total number of connections, including n to m and m to n, and the total number of cells." -deprecated = "" - -[block.dimensions.nvert] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "number of vertices" -description = "is the total number of (x, y) vertex pairs used to define the plan-view shape of each cell in the model grid. If NVERT is not specified or is specified as zero, then the VERTICES and CELL2D blocks below are not read. NVERT and the accompanying VERTICES and CELL2D blocks should be specified for most simulations. If the XT3D or SAVE_SPECIFIC_DISCHARGE options are specified in the NPF Package, then this information is required." -deprecated = "" - -[block.griddata.top] -type = "double" -block_variable = false -valid = [] -shape = "(nodes)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "readarray" -optional = false -preserve_case = false -numeric_index = false -longname = "cell top elevation" -description = "is the top elevation for each cell in the model grid." -deprecated = "" - -[block.griddata.bot] -type = "double" -block_variable = false -valid = [] -shape = "(nodes)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "readarray" -optional = false -preserve_case = false -numeric_index = false -longname = "cell bottom elevation" -description = "is the bottom elevation for each cell." -deprecated = "" - -[block.griddata.area] -type = "double" -block_variable = false -valid = [] -shape = "(nodes)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "readarray" -optional = false -preserve_case = false -numeric_index = false -longname = "cell surface area" -description = "is the cell surface area (in plan view)." -deprecated = "" - -[block.griddata.idomain] -type = "integer" -block_variable = false -valid = [] -shape = "(nodes)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "readarray" -optional = true -preserve_case = false -numeric_index = false -longname = "idomain existence array" -description = "is an optional array that characterizes the existence status of a cell. If the IDOMAIN array is not specified, then all model cells exist within the solution. If the IDOMAIN value for a cell is 0, the cell does not exist in the simulation. Input and output values will be read and written for the cell, but internal to the program, the cell is excluded from the solution. If the IDOMAIN value for a cell is 1 or greater, the cell exists in the simulation. IDOMAIN values of -1 cannot be specified for the DISU Package." -deprecated = "" - -[block.connectiondata.iac] -type = "integer" -block_variable = false -valid = [] -shape = "(nodes)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "readarray" -optional = false -preserve_case = false -numeric_index = false -longname = "number of cell connections" -description = "is the number of connections (plus 1) for each cell. The sum of all the entries in IAC must be equal to NJA." -deprecated = "" - -[block.connectiondata.ja] -type = "integer" -block_variable = false -valid = [] -shape = "(nja)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "readarray" -optional = false -preserve_case = false -numeric_index = true -longname = "grid connectivity" -description = "is a list of cell number (n) followed by its connecting cell numbers (m) for each of the m cells connected to cell n. The number of values to provide for cell n is IAC(n). This list is sequentially provided for the first to the last cell. The first value in the list must be cell n itself, and the remaining cells must be listed in an increasing order (sorted from lowest number to highest). Note that the cell and its connections are only supplied for the GWF cells and their connections to the other GWF cells. Also note that the JA list input may be divided such that every node and its connectivity list can be on a separate line for ease in readability of the file. To further ease readability of the file, the node number of the cell whose connectivity is subsequently listed, may be expressed as a negative number, the sign of which is subsequently converted to positive by the code." -deprecated = "" - -[block.connectiondata.ihc] -type = "integer" -block_variable = false -valid = [] -shape = "(nja)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "readarray" -optional = false -preserve_case = false -numeric_index = false -longname = "connection type" -description = "is an index array indicating the direction between node n and all of its m connections. If IHC = 0 then cell n and cell m are connected in the vertical direction. Cell n overlies cell m if the cell number for n is less than m; cell m overlies cell n if the cell number for m is less than n. If IHC = 1 then cell n and cell m are connected in the horizontal direction. If IHC = 2 then cell n and cell m are connected in the horizontal direction, and the connection is vertically staggered. A vertically staggered connection is one in which a cell is horizontally connected to more than one cell in a horizontal connection." -deprecated = "" - -[block.connectiondata.cl12] -type = "double" -block_variable = false -valid = [] -shape = "(nja)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "readarray" -optional = false -preserve_case = false -numeric_index = false -longname = "connection lengths" -description = "is the array containing connection lengths between the center of cell n and the shared face with each adjacent m cell." -deprecated = "" - -[block.connectiondata.hwva] -type = "double" -block_variable = false -valid = [] -shape = "(nja)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "readarray" -optional = false -preserve_case = false -numeric_index = false -longname = "connection lengths" -description = "is a symmetric array of size NJA. For horizontal connections, entries in HWVA are the horizontal width perpendicular to flow. For vertical connections, entries in HWVA are the vertical area for flow. Thus, values in the HWVA array contain dimensions of both length and area. Entries in the HWVA array have a one-to-one correspondence with the connections specified in the JA array. Likewise, there is a one-to-one correspondence between entries in the HWVA array and entries in the IHC array, which specifies the connection type (horizontal or vertical). Entries in the HWVA array must be symmetric; the program will terminate with an error if the value for HWVA for an n to m connection does not equal the value for HWVA for the corresponding n to m connection." -deprecated = "" - -[block.connectiondata.angldegx] -type = "double" -block_variable = false -valid = [] -shape = "(nja)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "readarray" -optional = true -preserve_case = false -numeric_index = false -longname = "angle of face normal to connection" -description = "is the angle (in degrees) between the horizontal x-axis and the outward normal to the face between a cell and its connecting cells. The angle varies between zero and 360.0 degrees, where zero degrees points in the positive x-axis direction, and 90 degrees points in the positive y-axis direction. ANGLDEGX is only needed if horizontal anisotropy is specified in the NPF Package, if the XT3D option is used in the NPF Package, or if the SAVE_SPECIFIC_DISCHARGE option is specified in the NPF Package. ANGLDEGX does not need to be specified if these conditions are not met. ANGLDEGX is of size NJA; values specified for vertical connections and for the diagonal position are not used. Note that ANGLDEGX is read in degrees, which is different from MODFLOW-USG, which reads a similar variable (ANGLEX) in radians." -deprecated = "" - -[block.vertices.iv] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = true -longname = "vertex number" -description = "is the vertex number. Records in the VERTICES block must be listed in consecutive order from 1 to NVERT." -deprecated = "" - -[block.vertices.xv] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "x-coordinate for vertex" -description = "is the x-coordinate for the vertex." -deprecated = "" - -[block.vertices.yv] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "y-coordinate for vertex" -description = "is the y-coordinate for the vertex." -deprecated = "" - -[block.vertices.vertices] -type = "recarray iv xv yv" -block_variable = false -valid = [] -shape = "(nvert)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "vertices data" -description = "" -deprecated = "" - -[block.cell2d.icell2d] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = true -longname = "cell2d number" -description = "is the cell2d number. Records in the CELL2D block must be listed in consecutive order from 1 to NODES." -deprecated = "" - -[block.cell2d.xc] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "x-coordinate for cell center" -description = "is the x-coordinate for the cell center." -deprecated = "" - -[block.cell2d.yc] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "y-coordinate for cell center" -description = "is the y-coordinate for the cell center." -deprecated = "" - -[block.cell2d.ncvert] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "number of cell vertices" -description = "is the number of vertices required to define the cell. There may be a different number of vertices for each cell." -deprecated = "" - -[block.cell2d.icvert] -type = "integer" -block_variable = false -valid = [] -shape = "(ncvert)" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = true -longname = "array of vertex numbers" -description = "is an array of integer values containing vertex numbers (in the VERTICES block) used to define the cell. Vertices must be listed in clockwise order." -deprecated = "" - -[block.cell2d.cell2d] -type = "recarray icell2d xc yc ncvert icvert" -block_variable = false -valid = [] -shape = "(nodes)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "cell2d data" -description = "" -deprecated = "" diff --git a/spec/toml/gwf-disv.toml b/spec/toml/gwf-disv.toml deleted file mode 100644 index 69d0425b..00000000 --- a/spec/toml/gwf-disv.toml +++ /dev/null @@ -1,465 +0,0 @@ -component = "GWF" -subcomponent = "DISV" -blocknames = [ "options", "dimensions", "griddata", "vertices", "cell2d",] -multipkg = false -stress = false -advanced = false - -[block.options.length_units] -type = "string" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "model length units" -description = "is the length units used for this model. Values can be ``FEET'', ``METERS'', or ``CENTIMETERS''. If not specified, the default is ``UNKNOWN''." -deprecated = "" - -[block.options.nogrb] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "do not write binary grid file" -description = "keyword to deactivate writing of the binary grid file." -deprecated = "" - -[block.options.xorigin] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "x-position origin of the model grid coordinate system" -description = "x-position of the origin used for model grid vertices. This value should be provided in a real-world coordinate system. A default value of zero is assigned if not specified. The value for XORIGIN does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space." -deprecated = "" - -[block.options.yorigin] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "y-position origin of the model grid coordinate system" -description = "y-position of the origin used for model grid vertices. This value should be provided in a real-world coordinate system. If not specified, then a default value equal to zero is used. The value for YORIGIN does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space." -deprecated = "" - -[block.options.angrot] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "rotation angle" -description = "counter-clockwise rotation angle (in degrees) of the model grid coordinate system relative to a real-world coordinate system. If not specified, then a default value of 0.0 is assigned. The value for ANGROT does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space." -deprecated = "" - -[block.options.export_array_ascii] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "export array variables to layered ascii files." -description = "keyword that specifies input griddata arrays should be written to layered ascii output files." -deprecated = "" - -[block.options.export_array_netcdf] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "export array variables to netcdf output files." -description = "keyword that specifies input griddata arrays should be written to the model output netcdf file." -deprecated = "" - -[block.options.ncf_filerecord] -type = "record ncf6 filein ncf6_filename" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "" -description = "" -deprecated = "" - -[block.options.ncf6] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "ncf keyword" -description = "keyword to specify that record corresponds to a netcdf configuration (NCF) file." -deprecated = "" - -[block.options.filein] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "file keyword" -description = "keyword to specify that an input filename is expected next." -deprecated = "" - -[block.options.ncf6_filename] -type = "string" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = true -numeric_index = false -longname = "file name of NCF information" -description = "defines a netcdf configuration (NCF) input file." -deprecated = "" - -[block.dimensions.nlay] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "number of layers" -description = "is the number of layers in the model grid." -deprecated = "" - -[block.dimensions.ncpl] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "number of cells per layer" -description = "is the number of cells per layer. This is a constant value for the grid and it applies to all layers." -deprecated = "" - -[block.dimensions.nvert] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "number of columns" -description = "is the total number of (x, y) vertex pairs used to characterize the horizontal configuration of the model grid." -deprecated = "" - -[block.griddata.top] -type = "double" -block_variable = false -valid = [] -shape = "(ncpl)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "readarray" -optional = false -preserve_case = false -numeric_index = false -longname = "model top elevation" -description = "is the top elevation for each cell in the top model layer." -deprecated = "" - -[block.griddata.botm] -type = "double" -block_variable = false -valid = [] -shape = "(ncpl, nlay)" -tagged = true -in_record = false -layered = true -time_series = false -reader = "readarray" -optional = false -preserve_case = false -numeric_index = false -longname = "model bottom elevation" -description = "is the bottom elevation for each cell." -deprecated = "" - -[block.griddata.idomain] -type = "integer" -block_variable = false -valid = [] -shape = "(ncpl, nlay)" -tagged = true -in_record = false -layered = true -time_series = false -reader = "readarray" -optional = true -preserve_case = false -numeric_index = false -longname = "idomain existence array" -description = "is an optional array that characterizes the existence status of a cell. If the IDOMAIN array is not specified, then all model cells exist within the solution. If the IDOMAIN value for a cell is 0, the cell does not exist in the simulation. Input and output values will be read and written for the cell, but internal to the program, the cell is excluded from the solution. If the IDOMAIN value for a cell is 1 or greater, the cell exists in the simulation. If the IDOMAIN value for a cell is -1, the cell does not exist in the simulation. Furthermore, the first existing cell above will be connected to the first existing cell below. This type of cell is referred to as a ``vertical pass through'' cell." -deprecated = "" - -[block.vertices.iv] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = true -longname = "vertex number" -description = "is the vertex number. Records in the VERTICES block must be listed in consecutive order from 1 to NVERT." -deprecated = "" - -[block.vertices.xv] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "x-coordinate for vertex" -description = "is the x-coordinate for the vertex." -deprecated = "" - -[block.vertices.yv] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "y-coordinate for vertex" -description = "is the y-coordinate for the vertex." -deprecated = "" - -[block.vertices.vertices] -type = "recarray iv xv yv" -block_variable = false -valid = [] -shape = "(nvert)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "vertices data" -description = "" -deprecated = "" - -[block.cell2d.icell2d] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = true -longname = "cell2d number" -description = "is the CELL2D number. Records in the CELL2D block must be listed in consecutive order from the first to the last." -deprecated = "" - -[block.cell2d.xc] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "x-coordinate for cell center" -description = "is the x-coordinate for the cell center." -deprecated = "" - -[block.cell2d.yc] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "y-coordinate for cell center" -description = "is the y-coordinate for the cell center." -deprecated = "" - -[block.cell2d.ncvert] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "number of cell vertices" -description = "is the number of vertices required to define the cell. There may be a different number of vertices for each cell." -deprecated = "" - -[block.cell2d.icvert] -type = "integer" -block_variable = false -valid = [] -shape = "(ncvert)" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = true -longname = "array of vertex numbers" -description = "is an array of integer values containing vertex numbers (in the VERTICES block) used to define the cell. Vertices must be listed in clockwise order. Cells that are connected must share vertices." -deprecated = "" - -[block.cell2d.cell2d] -type = "recarray icell2d xc yc ncvert icvert" -block_variable = false -valid = [] -shape = "(ncpl)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "cell2d data" -description = "" -deprecated = "" diff --git a/spec/toml/gwf-ic.toml b/spec/toml/gwf-ic.toml deleted file mode 100644 index e1236a33..00000000 --- a/spec/toml/gwf-ic.toml +++ /dev/null @@ -1,58 +0,0 @@ -component = "GWF" -subcomponent = "IC" -blocknames = [ "options", "griddata",] -multipkg = false -stress = false -advanced = false - -[block.options.export_array_ascii] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "export array variables to layered ascii files." -description = "keyword that specifies input griddata arrays should be written to layered ascii output files." -deprecated = "" - -[block.options.export_array_netcdf] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "export array variables to netcdf output files." -description = "keyword that specifies input griddata arrays should be written to the model output netcdf file." -deprecated = "" - -[block.griddata.strt] -type = "double" -block_variable = false -valid = [] -shape = "(nodes)" -tagged = true -in_record = false -layered = true -time_series = false -reader = "readarray" -optional = false -preserve_case = false -default_value = "1.0" -numeric_index = false -longname = "starting head" -description = "is the initial (starting) head---that is, head at the beginning of the GWF Model simulation. STRT must be specified for all simulations, including steady-state simulations. One value is read for every model cell. For simulations in which the first stress period is steady state, the values used for STRT generally do not affect the simulation (exceptions may occur if cells go dry and (or) rewet). The execution time, however, will be less if STRT includes hydraulic heads that are close to the steady-state solution. A head value lower than the cell bottom can be provided if a cell should start as dry." -deprecated = "" diff --git a/spec/toml/gwf-nam.toml b/spec/toml/gwf-nam.toml deleted file mode 100644 index ce0f2f30..00000000 --- a/spec/toml/gwf-nam.toml +++ /dev/null @@ -1,278 +0,0 @@ -component = "GWF" -subcomponent = "NAM" -blocknames = [ "options", "packages",] -multipkg = false -stress = false -advanced = false - -[block.options.list] -type = "string" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = true -numeric_index = false -longname = "name of listing file" -description = "is name of the listing file to create for this GWF model. If not specified, then the name of the list file will be the basename of the GWF model name file and the '.lst' extension. For example, if the GWF name file is called ``my.model.nam'' then the list file will be called ``my.model.lst''." -deprecated = "" - -[block.options.print_input] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "print input to listing file" -description = "REPLACE print_input {'{#1}': 'all model stress package'}" -deprecated = "" - -[block.options.print_flows] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "print calculated flows to listing file" -description = "REPLACE print_flows {'{#1}': 'all model package'}" -deprecated = "" - -[block.options.save_flows] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "save flows for all packages to budget file" -description = "REPLACE save_flows {'{#1}': 'all model package'}" -deprecated = "" - -[block.options.newtonoptions] -type = "record newton under_relaxation" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "newton keyword and options" -description = "none" -deprecated = "" - -[block.options.newton] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "keyword to activate Newton-Raphson formulation" -description = "keyword that activates the Newton-Raphson formulation for groundwater flow between connected, convertible groundwater cells and stress packages that support calculation of Newton-Raphson terms for groundwater exchanges. Cells will not dry when this option is used. By default, the Newton-Raphson formulation is not applied." -deprecated = "" - -[block.options.under_relaxation] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = true -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "keyword to activate Newton-Raphson UNDER_RELAXATION option" -description = "keyword that indicates whether the groundwater head in a cell will be under-relaxed when water levels fall below the bottom of the model below any given cell. By default, Newton-Raphson UNDER_RELAXATION is not applied." -deprecated = "" - -[block.options.export_netcdf] -type = "string" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "export model output netcdf file." -description = "keyword that specifies timeseries data for the dependent variable should be written to a model output netcdf file. No value or ``UGRID'' (ugrid based export) values are supported." -deprecated = "" - -[block.options.nc_filerecord] -type = "record netcdf filein netcdf_filename" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "" -description = "netcdf config filerecord" -deprecated = "" - -[block.options.netcdf] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "netcdf keyword" -description = "keyword to specify that record corresponds to a netcdf input file." -deprecated = "" - -[block.options.filein] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "file keyword" -description = "keyword to specify that an input filename is expected next." -deprecated = "" - -[block.options.netcdf_filename] -type = "string" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = true -numeric_index = false -longname = "netcdf input filename" -description = "defines a netcdf input file." -deprecated = "" - -[block.packages.ftype] -type = "string" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "package type" -description = "is the file type, which must be one of the following character values shown in table~ref{table:ftype-gwf}. Ftype may be entered in any combination of uppercase and lowercase." -deprecated = "" - -[block.packages.fname] -type = "string" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = true -numeric_index = false -longname = "file name" -description = "is the name of the file containing the package input. The path to the file should be included if the file is not located in the folder where the program was run." -deprecated = "" - -[block.packages.pname] -type = "string" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "user name for package" -description = "is the user-defined name for the package. PNAME is restricted to 16 characters. No spaces are allowed in PNAME. PNAME character values are read and stored by the program for stress packages only. These names may be useful for labeling purposes when multiple stress packages of the same type are located within a single GWF Model. If PNAME is specified for a stress package, then PNAME will be used in the flow budget table in the listing file; it will also be used for the text entry in the cell-by-cell budget file. PNAME is case insensitive and is stored in all upper case letters." -deprecated = "" - -[block.packages.packages] -type = "recarray ftype fname pname" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "package list" -description = "" -deprecated = "" diff --git a/spec/toml/gwf-npf.toml b/spec/toml/gwf-npf.toml deleted file mode 100644 index 8e97362e..00000000 --- a/spec/toml/gwf-npf.toml +++ /dev/null @@ -1,620 +0,0 @@ -component = "GWF" -subcomponent = "NPF" -blocknames = [ "options", "griddata",] -multipkg = false -stress = false -advanced = false - -[block.options.save_flows] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "keyword to save NPF flows" -description = "keyword to indicate that budget flow terms will be written to the file specified with ``BUDGET SAVE FILE'' in Output Control." -deprecated = "" - -[block.options.print_flows] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "keyword to print NPF flows to listing file" -description = "keyword to indicate that calculated flows between cells will be printed to the listing file for every stress period time step in which ``BUDGET PRINT'' is specified in Output Control. If there is no Output Control option and ``PRINT_FLOWS'' is specified, then flow rates are printed for the last time step of each stress period. This option can produce extremely large list files because all cell-by-cell flows are printed. It should only be used with the NPF Package for models that have a small number of cells." -deprecated = "" - -[block.options.alternative_cell_averaging] -type = "string" -block_variable = false -valid = [ "logarithmic", "amt-lmk", "amt-hmk",] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "conductance weighting option" -description = "is a text keyword to indicate that an alternative method will be used for calculating the conductance for horizontal cell connections. The text value for ALTERNATIVE_CELL_AVERAGING can be ``LOGARITHMIC'', ``AMT-LMK'', or ``AMT-HMK''. ``AMT-LMK'' signifies that the conductance will be calculated using arithmetic-mean thickness and logarithmic-mean hydraulic conductivity. ``AMT-HMK'' signifies that the conductance will be calculated using arithmetic-mean thickness and harmonic-mean hydraulic conductivity. If the user does not specify a value for ALTERNATIVE_CELL_AVERAGING, then the harmonic-mean method will be used. This option cannot be used if the XT3D option is invoked." -deprecated = "" - -[block.options.thickstrt] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "keyword to activate THICKSTRT option" -description = "indicates that cells having a negative ICELLTYPE are confined, and their cell thickness for conductance calculations will be computed as STRT-BOT rather than TOP-BOT. This option should be used with caution as it only affects conductance calculations in the NPF Package." -deprecated = "" - -[block.options.cvoptions] -type = "record variablecv dewatered" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "vertical conductance options" -description = "none" -deprecated = "" - -[block.options.variablecv] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "keyword to activate VARIABLECV option" -description = "keyword to indicate that the vertical conductance will be calculated using the saturated thickness and properties of the overlying cell and the thickness and properties of the underlying cell. If the DEWATERED keyword is also specified, then the vertical conductance is calculated using only the saturated thickness and properties of the overlying cell if the head in the underlying cell is below its top. If these keywords are not specified, then the default condition is to calculate the vertical conductance at the start of the simulation using the initial head and the cell properties. The vertical conductance remains constant for the entire simulation." -deprecated = "" - -[block.options.dewatered] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = true -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "keyword to activate DEWATERED option" -description = "If the DEWATERED keyword is specified, then the vertical conductance is calculated using only the saturated thickness and properties of the overlying cell if the head in the underlying cell is below its top." -deprecated = "" - -[block.options.perched] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "keyword to activate PERCHED option" -description = "keyword to indicate that when a cell is overlying a dewatered convertible cell, the head difference used in Darcy's Law is equal to the head in the overlying cell minus the bottom elevation of the overlying cell. If not specified, then the default is to use the head difference between the two cells." -deprecated = "" - -[block.options.rewet_record] -type = "record rewet wetfct iwetit ihdwet" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "" -description = "" -deprecated = "" - -[block.options.rewet] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "keyword to activate rewetting" -description = "activates model rewetting. Rewetting is off by default." -deprecated = "" - -[block.options.wetfct] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "wetting factor to use for rewetting" -description = "is a keyword and factor that is included in the calculation of the head that is initially established at a cell when that cell is converted from dry to wet." -deprecated = "" - -[block.options.iwetit] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "interval to use for rewetting" -description = "is a keyword and iteration interval for attempting to wet cells. Wetting is attempted every IWETIT iteration. This applies to outer iterations and not inner iterations. If IWETIT is specified as zero or less, then the value is changed to 1." -deprecated = "" - -[block.options.ihdwet] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "flag to determine wetting equation" -description = "is a keyword and integer flag that determines which equation is used to define the initial head at cells that become wet. If IHDWET is 0, h = BOT + WETFCT (hm - BOT). If IHDWET is not 0, h = BOT + WETFCT (THRESH)." -deprecated = "" - -[block.options.xt3doptions] -type = "record xt3d rhs" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "keyword to activate XT3D" -description = "none" -deprecated = "" - -[block.options.xt3d] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "keyword to activate XT3D" -description = "keyword indicating that the XT3D formulation will be used. If the RHS keyword is also included, then the XT3D additional terms will be added to the right-hand side. If the RHS keyword is excluded, then the XT3D terms will be put into the coefficient matrix. Use of XT3D will substantially increase the computational effort, but will result in improved accuracy for anisotropic conductivity fields and for unstructured grids in which the CVFD requirement is violated. XT3D requires additional information about the shapes of grid cells. If XT3D is active and the DISU Package is used, then the user will need to provide in the DISU Package the angldegx array in the CONNECTIONDATA block and the VERTICES and CELL2D blocks." -deprecated = "" - -[block.options.rhs] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = true -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "keyword to XT3D on right hand side" -description = "If the RHS keyword is also included, then the XT3D additional terms will be added to the right-hand side. If the RHS keyword is excluded, then the XT3D terms will be put into the coefficient matrix." -deprecated = "" - -[block.options.save_specific_discharge] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "keyword to save specific discharge" -description = "keyword to indicate that x, y, and z components of specific discharge will be calculated at cell centers and written to the budget file, which is specified with ``BUDGET SAVE FILE'' in Output Control. If this option is activated, then additional information may be required in the discretization packages and the GWF Exchange package (if GWF models are coupled). Specifically, ANGLDEGX must be specified in the CONNECTIONDATA block of the DISU Package; ANGLDEGX must also be specified for the GWF Exchange as an auxiliary variable." -deprecated = "" - -[block.options.save_saturation] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "keyword to save saturation" -description = "keyword to indicate that cell saturation will be written to the budget file, which is specified with ``BUDGET SAVE FILE'' in Output Control. Saturation will be saved to the budget file as an auxiliary variable saved with the DATA-SAT text label. Saturation is a cell variable that ranges from zero to one and can be used by post processing programs to determine how much of a cell volume is saturated. If ICELLTYPE is 0, then saturation is always one." -deprecated = "" - -[block.options.k22overk] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "keyword to indicate that specified K22 is a ratio" -description = "keyword to indicate that specified K22 is a ratio of K22 divided by K. If this option is specified, then the K22 array entered in the NPF Package will be multiplied by K after being read." -deprecated = "" - -[block.options.k33overk] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "keyword to indicate that specified K33 is a ratio" -description = "keyword to indicate that specified K33 is a ratio of K33 divided by K. If this option is specified, then the K33 array entered in the NPF Package will be multiplied by K after being read." -deprecated = "" - -[block.options.tvk_filerecord] -type = "record tvk6 filein tvk6_filename" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "" -description = "" -deprecated = "" - -[block.options.tvk6] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "tvk keyword" -description = "keyword to specify that record corresponds to a time-varying hydraulic conductivity (TVK) file. The behavior of TVK and a description of the input file is provided separately." -deprecated = "" - -[block.options.filein] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "file keyword" -description = "keyword to specify that an input filename is expected next." -deprecated = "" - -[block.options.tvk6_filename] -type = "string" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = true -numeric_index = false -longname = "file name of TVK information" -description = "defines a time-varying hydraulic conductivity (TVK) input file. Records in the TVK file can be used to change hydraulic conductivity properties at specified times or stress periods." -deprecated = "" - -[block.options.export_array_ascii] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "export array variables to layered ascii files." -description = "keyword that specifies input griddata arrays should be written to layered ascii output files." -deprecated = "" - -[block.options.export_array_netcdf] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "export array variables to netcdf output files." -description = "keyword that specifies input griddata arrays should be written to the model output netcdf file." -deprecated = "" - -[block.options.dev_no_newton] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "turn off Newton for unconfined cells" -description = "turn off Newton for unconfined cells" -deprecated = "" - -[block.options.dev_omega] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "set saturation omega value" -description = "set saturation omega value" -deprecated = "" - -[block.griddata.icelltype] -type = "integer" -block_variable = false -valid = [] -shape = "(nodes)" -tagged = true -in_record = false -layered = true -time_series = false -reader = "readarray" -optional = false -preserve_case = false -default_value = "0" -numeric_index = false -longname = "confined or convertible indicator" -description = "flag for each cell that specifies how saturated thickness is treated. 0 means saturated thickness is held constant; $>$0 means saturated thickness varies with computed head when head is below the cell top; $<$0 means saturated thickness varies with computed head unless the THICKSTRT option is in effect. When THICKSTRT is in effect, a negative value for ICELLTYPE indicates that the saturated thickness value used in conductance calculations in the NPF Package will be computed as STRT-BOT and held constant. If the THICKSTRT option is not in effect, then negative values provided by the user for ICELLTYPE are automatically reassigned by the program to a value of one." -deprecated = "" - -[block.griddata.k] -type = "double" -block_variable = false -valid = [] -shape = "(nodes)" -tagged = true -in_record = false -layered = true -time_series = false -reader = "readarray" -optional = false -preserve_case = false -default_value = "1.0" -numeric_index = false -longname = "hydraulic conductivity (L/T)" -description = "is the hydraulic conductivity. For the common case in which the user would like to specify the horizontal hydraulic conductivity and the vertical hydraulic conductivity, then K should be assigned as the horizontal hydraulic conductivity, K33 should be assigned as the vertical hydraulic conductivity, and K22 and the three rotation angles should not be specified. When more sophisticated anisotropy is required, then K corresponds to the K11 hydraulic conductivity axis. All included cells (IDOMAIN $>$ 0) must have a K value greater than zero." -deprecated = "" - -[block.griddata.k22] -type = "double" -block_variable = false -valid = [] -shape = "(nodes)" -tagged = true -in_record = false -layered = true -time_series = false -reader = "readarray" -optional = true -preserve_case = false -numeric_index = false -longname = "hydraulic conductivity of second ellipsoid axis" -description = "is the hydraulic conductivity of the second ellipsoid axis (or the ratio of K22/K if the K22OVERK option is specified); for an unrotated case this is the hydraulic conductivity in the y direction. If K22 is not included in the GRIDDATA block, then K22 is set equal to K. For a regular MODFLOW grid (DIS Package is used) in which no rotation angles are specified, K22 is the hydraulic conductivity along columns in the y direction. For an unstructured DISU grid, the user must assign principal x and y axes and provide the angle for each cell face relative to the assigned x direction. All included cells (IDOMAIN $>$ 0) must have a K22 value greater than zero." -deprecated = "" - -[block.griddata.k33] -type = "double" -block_variable = false -valid = [] -shape = "(nodes)" -tagged = true -in_record = false -layered = true -time_series = false -reader = "readarray" -optional = true -preserve_case = false -numeric_index = false -longname = "hydraulic conductivity of third ellipsoid axis (L/T)" -description = "is the hydraulic conductivity of the third ellipsoid axis (or the ratio of K33/K if the K33OVERK option is specified); for an unrotated case, this is the vertical hydraulic conductivity. When anisotropy is applied, K33 corresponds to the K33 tensor component. All included cells (IDOMAIN $>$ 0) must have a K33 value greater than zero." -deprecated = "" - -[block.griddata.angle1] -type = "double" -block_variable = false -valid = [] -shape = "(nodes)" -tagged = true -in_record = false -layered = true -time_series = false -reader = "readarray" -optional = true -preserve_case = false -numeric_index = false -longname = "first anisotropy rotation angle (degrees)" -description = "is a rotation angle of the hydraulic conductivity tensor in degrees. The angle represents the first of three sequential rotations of the hydraulic conductivity ellipsoid. With the K11, K22, and K33 axes of the ellipsoid initially aligned with the x, y, and z coordinate axes, respectively, ANGLE1 rotates the ellipsoid about its K33 axis (within the x - y plane). A positive value represents counter-clockwise rotation when viewed from any point on the positive K33 axis, looking toward the center of the ellipsoid. A value of zero indicates that the K11 axis lies within the x - z plane. If ANGLE1 is not specified, default values of zero are assigned to ANGLE1, ANGLE2, and ANGLE3, in which case the K11, K22, and K33 axes are aligned with the x, y, and z axes, respectively." -deprecated = "" - -[block.griddata.angle2] -type = "double" -block_variable = false -valid = [] -shape = "(nodes)" -tagged = true -in_record = false -layered = true -time_series = false -reader = "readarray" -optional = true -preserve_case = false -numeric_index = false -longname = "second anisotropy rotation angle (degrees)" -description = "is a rotation angle of the hydraulic conductivity tensor in degrees. The angle represents the second of three sequential rotations of the hydraulic conductivity ellipsoid. Following the rotation by ANGLE1 described above, ANGLE2 rotates the ellipsoid about its K22 axis (out of the x - y plane). An array can be specified for ANGLE2 only if ANGLE1 is also specified. A positive value of ANGLE2 represents clockwise rotation when viewed from any point on the positive K22 axis, looking toward the center of the ellipsoid. A value of zero indicates that the K11 axis lies within the x - y plane. If ANGLE2 is not specified, default values of zero are assigned to ANGLE2 and ANGLE3; connections that are not user-designated as vertical are assumed to be strictly horizontal (that is, to have no z component to their orientation); and connection lengths are based on horizontal distances." -deprecated = "" - -[block.griddata.angle3] -type = "double" -block_variable = false -valid = [] -shape = "(nodes)" -tagged = true -in_record = false -layered = true -time_series = false -reader = "readarray" -optional = true -preserve_case = false -numeric_index = false -longname = "third anisotropy rotation angle (degrees)" -description = "is a rotation angle of the hydraulic conductivity tensor in degrees. The angle represents the third of three sequential rotations of the hydraulic conductivity ellipsoid. Following the rotations by ANGLE1 and ANGLE2 described above, ANGLE3 rotates the ellipsoid about its K11 axis. An array can be specified for ANGLE3 only if ANGLE1 and ANGLE2 are also specified. An array must be specified for ANGLE3 if ANGLE2 is specified. A positive value of ANGLE3 represents clockwise rotation when viewed from any point on the positive K11 axis, looking toward the center of the ellipsoid. A value of zero indicates that the K22 axis lies within the x - y plane." -deprecated = "" - -[block.griddata.wetdry] -type = "double" -block_variable = false -valid = [] -shape = "(nodes)" -tagged = true -in_record = false -layered = true -time_series = false -reader = "readarray" -optional = true -preserve_case = false -numeric_index = false -longname = "wetdry threshold and factor" -description = "is a combination of the wetting threshold and a flag to indicate which neighboring cells can cause a cell to become wet. If WETDRY $<$ 0, only a cell below a dry cell can cause the cell to become wet. If WETDRY $>$ 0, the cell below a dry cell and horizontally adjacent cells can cause a cell to become wet. If WETDRY is 0, the cell cannot be wetted. The absolute value of WETDRY is the wetting threshold. When the sum of BOT and the absolute value of WETDRY at a dry cell is equaled or exceeded by the head at an adjacent cell, the cell is wetted. WETDRY must be specified if ``REWET'' is specified in the OPTIONS block. If ``REWET'' is not specified in the options block, then WETDRY can be entered, and memory will be allocated for it, even though it is not used." -deprecated = "" diff --git a/spec/toml/gwt-dis.toml b/spec/toml/gwt-dis.toml deleted file mode 100644 index 405eb98d..00000000 --- a/spec/toml/gwt-dis.toml +++ /dev/null @@ -1,336 +0,0 @@ -component = "GWT" -subcomponent = "DIS" -blocknames = [ "options", "dimensions", "griddata",] -multipkg = false -stress = false -advanced = false - -[block.options.length_units] -type = "string" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "model length units" -description = "is the length units used for this model. Values can be ``FEET'', ``METERS'', or ``CENTIMETERS''. If not specified, the default is ``UNKNOWN''." -deprecated = "" - -[block.options.nogrb] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "do not write binary grid file" -description = "keyword to deactivate writing of the binary grid file." -deprecated = "" - -[block.options.xorigin] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "x-position of the model grid origin" -description = "x-position of the lower-left corner of the model grid. A default value of zero is assigned if not specified. The value for XORIGIN does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space." -deprecated = "" - -[block.options.yorigin] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "y-position of the model grid origin" -description = "y-position of the lower-left corner of the model grid. If not specified, then a default value equal to zero is used. The value for YORIGIN does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space." -deprecated = "" - -[block.options.angrot] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "rotation angle" -description = "counter-clockwise rotation angle (in degrees) of the lower-left corner of the model grid. If not specified, then a default value of 0.0 is assigned. The value for ANGROT does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space." -deprecated = "" - -[block.options.export_array_ascii] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "export array variables to layered ascii files." -description = "keyword that specifies input griddata arrays should be written to layered ascii output files." -deprecated = "" - -[block.options.export_array_netcdf] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "export array variables to netcdf output files." -description = "keyword that specifies input griddata arrays should be written to the model output netcdf file." -deprecated = "" - -[block.options.ncf_filerecord] -type = "record ncf6 filein ncf6_filename" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "" -description = "" -deprecated = "" - -[block.options.ncf6] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "ncf keyword" -description = "keyword to specify that record corresponds to a netcdf configuration (NCF) file." -deprecated = "" - -[block.options.filein] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "file keyword" -description = "keyword to specify that an input filename is expected next." -deprecated = "" - -[block.options.ncf6_filename] -type = "string" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = true -numeric_index = false -longname = "file name of NCF information" -description = "defines a netcdf configuration (NCF) input file." -deprecated = "" - -[block.dimensions.nlay] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -default_value = "1" -numeric_index = false -longname = "number of layers" -description = "is the number of layers in the model grid." -deprecated = "" - -[block.dimensions.nrow] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -default_value = "2" -numeric_index = false -longname = "number of rows" -description = "is the number of rows in the model grid." -deprecated = "" - -[block.dimensions.ncol] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -default_value = "2" -numeric_index = false -longname = "number of columns" -description = "is the number of columns in the model grid." -deprecated = "" - -[block.griddata.delr] -type = "double" -block_variable = false -valid = [] -shape = "(ncol)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "readarray" -optional = false -preserve_case = false -default_value = "1.0" -numeric_index = false -longname = "spacing along a row" -description = "is the column spacing in the row direction." -deprecated = "" - -[block.griddata.delc] -type = "double" -block_variable = false -valid = [] -shape = "(nrow)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "readarray" -optional = false -preserve_case = false -default_value = "1.0" -numeric_index = false -longname = "spacing along a column" -description = "is the row spacing in the column direction." -deprecated = "" - -[block.griddata.top] -type = "double" -block_variable = false -valid = [] -shape = "(ncol, nrow)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "readarray" -optional = false -preserve_case = false -default_value = "1.0" -numeric_index = false -longname = "cell top elevation" -description = "is the top elevation for each cell in the top model layer." -deprecated = "" - -[block.griddata.botm] -type = "double" -block_variable = false -valid = [] -shape = "(ncol, nrow, nlay)" -tagged = true -in_record = false -layered = true -time_series = false -reader = "readarray" -optional = false -preserve_case = false -default_value = "0." -numeric_index = false -longname = "cell bottom elevation" -description = "is the bottom elevation for each cell." -deprecated = "" - -[block.griddata.idomain] -type = "integer" -block_variable = false -valid = [] -shape = "(ncol, nrow, nlay)" -tagged = true -in_record = false -layered = true -time_series = false -reader = "readarray" -optional = true -preserve_case = false -numeric_index = false -longname = "idomain existence array" -description = "is an optional array that characterizes the existence status of a cell. If the IDOMAIN array is not specified, then all model cells exist within the solution. If the IDOMAIN value for a cell is 0, the cell does not exist in the simulation. Input and output values will be read and written for the cell, but internal to the program, the cell is excluded from the solution. If the IDOMAIN value for a cell is 1, the cell exists in the simulation. If the IDOMAIN value for a cell is -1, the cell does not exist in the simulation. Furthermore, the first existing cell above will be connected to the first existing cell below. This type of cell is referred to as a ``vertical pass through'' cell." -deprecated = "" diff --git a/spec/toml/gwt-disu.toml b/spec/toml/gwt-disu.toml deleted file mode 100644 index 5c57a17b..00000000 --- a/spec/toml/gwt-disu.toml +++ /dev/null @@ -1,517 +0,0 @@ -component = "GWT" -subcomponent = "DISU" -blocknames = [ "options", "dimensions", "griddata", "connectiondata", "vertices", "cell2d",] -multipkg = false -stress = false -advanced = false - -[block.options.length_units] -type = "string" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "model length units" -description = "is the length units used for this model. Values can be ``FEET'', ``METERS'', or ``CENTIMETERS''. If not specified, the default is ``UNKNOWN''." -deprecated = "" - -[block.options.nogrb] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "do not write binary grid file" -description = "keyword to deactivate writing of the binary grid file." -deprecated = "" - -[block.options.xorigin] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "x-position origin of the model grid coordinate system" -description = "x-position of the origin used for model grid vertices. This value should be provided in a real-world coordinate system. A default value of zero is assigned if not specified. The value for XORIGIN does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space." -deprecated = "" - -[block.options.yorigin] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "y-position origin of the model grid coordinate system" -description = "y-position of the origin used for model grid vertices. This value should be provided in a real-world coordinate system. If not specified, then a default value equal to zero is used. The value for YORIGIN does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space." -deprecated = "" - -[block.options.angrot] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "rotation angle" -description = "counter-clockwise rotation angle (in degrees) of the model grid coordinate system relative to a real-world coordinate system. If not specified, then a default value of 0.0 is assigned. The value for ANGROT does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space." -deprecated = "" - -[block.options.vertical_offset_tolerance] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -default_value = "0.0" -numeric_index = false -longname = "vertical length dimension for top and bottom checking" -description = "checks are performed to ensure that the top of a cell is not higher than the bottom of an overlying cell. This option can be used to specify the tolerance that is used for checking. If top of a cell is above the bottom of an overlying cell by a value less than this tolerance, then the program will not terminate with an error. The default value is zero. This option should generally not be used." -deprecated = "" - -[block.options.export_array_ascii] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "export array variables to layered ascii files." -description = "keyword that specifies input griddata arrays should be written to layered ascii output files." -deprecated = "" - -[block.dimensions.nodes] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "number of layers" -description = "is the number of cells in the model grid." -deprecated = "" - -[block.dimensions.nja] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "number of columns" -description = "is the sum of the number of connections and NODES. When calculating the total number of connections, the connection between cell n and cell m is considered to be different from the connection between cell m and cell n. Thus, NJA is equal to the total number of connections, including n to m and m to n, and the total number of cells." -deprecated = "" - -[block.dimensions.nvert] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "number of vertices" -description = "is the total number of (x, y) vertex pairs used to define the plan-view shape of each cell in the model grid. If NVERT is not specified or is specified as zero, then the VERTICES and CELL2D blocks below are not read. NVERT and the accompanying VERTICES and CELL2D blocks should be specified for most simulations. If the XT3D or SAVE_SPECIFIC_DISCHARGE options are specified in the NPF Package, then this information is required." -deprecated = "" - -[block.griddata.top] -type = "double" -block_variable = false -valid = [] -shape = "(nodes)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "readarray" -optional = false -preserve_case = false -numeric_index = false -longname = "cell top elevation" -description = "is the top elevation for each cell in the model grid." -deprecated = "" - -[block.griddata.bot] -type = "double" -block_variable = false -valid = [] -shape = "(nodes)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "readarray" -optional = false -preserve_case = false -numeric_index = false -longname = "cell bottom elevation" -description = "is the bottom elevation for each cell." -deprecated = "" - -[block.griddata.area] -type = "double" -block_variable = false -valid = [] -shape = "(nodes)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "readarray" -optional = false -preserve_case = false -numeric_index = false -longname = "cell surface area" -description = "is the cell surface area (in plan view)." -deprecated = "" - -[block.griddata.idomain] -type = "integer" -block_variable = false -valid = [] -shape = "(nodes)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "readarray" -optional = true -preserve_case = false -numeric_index = false -longname = "idomain existence array" -description = "is an optional array that characterizes the existence status of a cell. If the IDOMAIN array is not specified, then all model cells exist within the solution. If the IDOMAIN value for a cell is 0, the cell does not exist in the simulation. Input and output values will be read and written for the cell, but internal to the program, the cell is excluded from the solution. If the IDOMAIN value for a cell is 1 or greater, the cell exists in the simulation. IDOMAIN values of -1 cannot be specified for the DISU Package." -deprecated = "" - -[block.connectiondata.iac] -type = "integer" -block_variable = false -valid = [] -shape = "(nodes)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "readarray" -optional = false -preserve_case = false -numeric_index = false -longname = "number of cell connections" -description = "is the number of connections (plus 1) for each cell. The sum of all the entries in IAC must be equal to NJA." -deprecated = "" - -[block.connectiondata.ja] -type = "integer" -block_variable = false -valid = [] -shape = "(nja)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "readarray" -optional = false -preserve_case = false -numeric_index = true -longname = "grid connectivity" -description = "is a list of cell number (n) followed by its connecting cell numbers (m) for each of the m cells connected to cell n. The number of values to provide for cell n is IAC(n). This list is sequentially provided for the first to the last cell. The first value in the list must be cell n itself, and the remaining cells must be listed in an increasing order (sorted from lowest number to highest). Note that the cell and its connections are only supplied for the GWT cells and their connections to the other GWT cells. Also note that the JA list input may be divided such that every node and its connectivity list can be on a separate line for ease in readability of the file. To further ease readability of the file, the node number of the cell whose connectivity is subsequently listed, may be expressed as a negative number, the sign of which is subsequently converted to positive by the code." -deprecated = "" - -[block.connectiondata.ihc] -type = "integer" -block_variable = false -valid = [] -shape = "(nja)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "readarray" -optional = false -preserve_case = false -numeric_index = false -longname = "connection type" -description = "is an index array indicating the direction between node n and all of its m connections. If IHC = 0 then cell n and cell m are connected in the vertical direction. Cell n overlies cell m if the cell number for n is less than m; cell m overlies cell n if the cell number for m is less than n. If IHC = 1 then cell n and cell m are connected in the horizontal direction. If IHC = 2 then cell n and cell m are connected in the horizontal direction, and the connection is vertically staggered. A vertically staggered connection is one in which a cell is horizontally connected to more than one cell in a horizontal connection." -deprecated = "" - -[block.connectiondata.cl12] -type = "double" -block_variable = false -valid = [] -shape = "(nja)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "readarray" -optional = false -preserve_case = false -numeric_index = false -longname = "connection lengths" -description = "is the array containing connection lengths between the center of cell n and the shared face with each adjacent m cell." -deprecated = "" - -[block.connectiondata.hwva] -type = "double" -block_variable = false -valid = [] -shape = "(nja)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "readarray" -optional = false -preserve_case = false -numeric_index = false -longname = "connection lengths" -description = "is a symmetric array of size NJA. For horizontal connections, entries in HWVA are the horizontal width perpendicular to flow. For vertical connections, entries in HWVA are the vertical area for flow. Thus, values in the HWVA array contain dimensions of both length and area. Entries in the HWVA array have a one-to-one correspondence with the connections specified in the JA array. Likewise, there is a one-to-one correspondence between entries in the HWVA array and entries in the IHC array, which specifies the connection type (horizontal or vertical). Entries in the HWVA array must be symmetric; the program will terminate with an error if the value for HWVA for an n to m connection does not equal the value for HWVA for the corresponding n to m connection." -deprecated = "" - -[block.connectiondata.angldegx] -type = "double" -block_variable = false -valid = [] -shape = "(nja)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "readarray" -optional = true -preserve_case = false -numeric_index = false -longname = "angle of face normal to connection" -description = "is the angle (in degrees) between the horizontal x-axis and the outward normal to the face between a cell and its connecting cells. The angle varies between zero and 360.0 degrees, where zero degrees points in the positive x-axis direction, and 90 degrees points in the positive y-axis direction. ANGLDEGX is only needed if horizontal anisotropy is specified in the NPF Package, if the XT3D option is used in the NPF Package, or if the SAVE_SPECIFIC_DISCHARGE option is specified in the NPF Package. ANGLDEGX does not need to be specified if these conditions are not met. ANGLDEGX is of size NJA; values specified for vertical connections and for the diagonal position are not used. Note that ANGLDEGX is read in degrees, which is different from MODFLOW-USG, which reads a similar variable (ANGLEX) in radians." -deprecated = "" - -[block.vertices.iv] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = true -longname = "vertex number" -description = "is the vertex number. Records in the VERTICES block must be listed in consecutive order from 1 to NVERT." -deprecated = "" - -[block.vertices.xv] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "x-coordinate for vertex" -description = "is the x-coordinate for the vertex." -deprecated = "" - -[block.vertices.yv] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "y-coordinate for vertex" -description = "is the y-coordinate for the vertex." -deprecated = "" - -[block.vertices.vertices] -type = "recarray iv xv yv" -block_variable = false -valid = [] -shape = "(nvert)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "vertices data" -description = "" -deprecated = "" - -[block.cell2d.icell2d] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = true -longname = "cell2d number" -description = "is the cell2d number. Records in the CELL2D block must be listed in consecutive order from 1 to NODES." -deprecated = "" - -[block.cell2d.xc] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "x-coordinate for cell center" -description = "is the x-coordinate for the cell center." -deprecated = "" - -[block.cell2d.yc] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "y-coordinate for cell center" -description = "is the y-coordinate for the cell center." -deprecated = "" - -[block.cell2d.ncvert] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "number of cell vertices" -description = "is the number of vertices required to define the cell. There may be a different number of vertices for each cell." -deprecated = "" - -[block.cell2d.icvert] -type = "integer" -block_variable = false -valid = [] -shape = "(ncvert)" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = true -longname = "array of vertex numbers" -description = "is an array of integer values containing vertex numbers (in the VERTICES block) used to define the cell. Vertices must be listed in clockwise order." -deprecated = "" - -[block.cell2d.cell2d] -type = "recarray icell2d xc yc ncvert icvert" -block_variable = false -valid = [] -shape = "(nodes)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "cell2d data" -description = "" -deprecated = "" diff --git a/spec/toml/gwt-disv.toml b/spec/toml/gwt-disv.toml deleted file mode 100644 index f7f0f58d..00000000 --- a/spec/toml/gwt-disv.toml +++ /dev/null @@ -1,465 +0,0 @@ -component = "GWT" -subcomponent = "DISV" -blocknames = [ "options", "dimensions", "griddata", "vertices", "cell2d",] -multipkg = false -stress = false -advanced = false - -[block.options.length_units] -type = "string" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "model length units" -description = "is the length units used for this model. Values can be ``FEET'', ``METERS'', or ``CENTIMETERS''. If not specified, the default is ``UNKNOWN''." -deprecated = "" - -[block.options.nogrb] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "do not write binary grid file" -description = "keyword to deactivate writing of the binary grid file." -deprecated = "" - -[block.options.xorigin] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "x-position origin of the model grid coordinate system" -description = "x-position of the origin used for model grid vertices. This value should be provided in a real-world coordinate system. A default value of zero is assigned if not specified. The value for XORIGIN does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space." -deprecated = "" - -[block.options.yorigin] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "y-position origin of the model grid coordinate system" -description = "y-position of the origin used for model grid vertices. This value should be provided in a real-world coordinate system. If not specified, then a default value equal to zero is used. The value for YORIGIN does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space." -deprecated = "" - -[block.options.angrot] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "rotation angle" -description = "counter-clockwise rotation angle (in degrees) of the model grid coordinate system relative to a real-world coordinate system. If not specified, then a default value of 0.0 is assigned. The value for ANGROT does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space." -deprecated = "" - -[block.options.export_array_ascii] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "export array variables to layered ascii files." -description = "keyword that specifies input griddata arrays should be written to layered ascii output files." -deprecated = "" - -[block.options.export_array_netcdf] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "export array variables to netcdf output files." -description = "keyword that specifies input griddata arrays should be written to the model output netcdf file." -deprecated = "" - -[block.options.ncf_filerecord] -type = "record ncf6 filein ncf6_filename" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "" -description = "" -deprecated = "" - -[block.options.ncf6] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "ncf keyword" -description = "keyword to specify that record corresponds to a netcdf configuration (NCF) file." -deprecated = "" - -[block.options.filein] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "file keyword" -description = "keyword to specify that an input filename is expected next." -deprecated = "" - -[block.options.ncf6_filename] -type = "string" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = true -numeric_index = false -longname = "file name of NCF information" -description = "defines a netcdf configuration (NCF) input file." -deprecated = "" - -[block.dimensions.nlay] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "number of layers" -description = "is the number of layers in the model grid." -deprecated = "" - -[block.dimensions.ncpl] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "number of cells per layer" -description = "is the number of cells per layer. This is a constant value for the grid and it applies to all layers." -deprecated = "" - -[block.dimensions.nvert] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "number of columns" -description = "is the total number of (x, y) vertex pairs used to characterize the horizontal configuration of the model grid." -deprecated = "" - -[block.griddata.top] -type = "double" -block_variable = false -valid = [] -shape = "(ncpl)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "readarray" -optional = false -preserve_case = false -numeric_index = false -longname = "model top elevation" -description = "is the top elevation for each cell in the top model layer." -deprecated = "" - -[block.griddata.botm] -type = "double" -block_variable = false -valid = [] -shape = "(ncpl, nlay)" -tagged = true -in_record = false -layered = true -time_series = false -reader = "readarray" -optional = false -preserve_case = false -numeric_index = false -longname = "model bottom elevation" -description = "is the bottom elevation for each cell." -deprecated = "" - -[block.griddata.idomain] -type = "integer" -block_variable = false -valid = [] -shape = "(ncpl, nlay)" -tagged = true -in_record = false -layered = true -time_series = false -reader = "readarray" -optional = true -preserve_case = false -numeric_index = false -longname = "idomain existence array" -description = "is an optional array that characterizes the existence status of a cell. If the IDOMAIN array is not specified, then all model cells exist within the solution. If the IDOMAIN value for a cell is 0, the cell does not exist in the simulation. Input and output values will be read and written for the cell, but internal to the program, the cell is excluded from the solution. If the IDOMAIN value for a cell is 1, the cell exists in the simulation. If the IDOMAIN value for a cell is -1, the cell does not exist in the simulation. Furthermore, the first existing cell above will be connected to the first existing cell below. This type of cell is referred to as a ``vertical pass through'' cell." -deprecated = "" - -[block.vertices.iv] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = true -longname = "vertex number" -description = "is the vertex number. Records in the VERTICES block must be listed in consecutive order from 1 to NVERT." -deprecated = "" - -[block.vertices.xv] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "x-coordinate for vertex" -description = "is the x-coordinate for the vertex." -deprecated = "" - -[block.vertices.yv] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "y-coordinate for vertex" -description = "is the y-coordinate for the vertex." -deprecated = "" - -[block.vertices.vertices] -type = "recarray iv xv yv" -block_variable = false -valid = [] -shape = "(nvert)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "vertices data" -description = "" -deprecated = "" - -[block.cell2d.icell2d] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = true -longname = "cell2d number" -description = "is the CELL2D number. Records in the CELL2D block must be listed in consecutive order from the first to the last." -deprecated = "" - -[block.cell2d.xc] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "x-coordinate for cell center" -description = "is the x-coordinate for the cell center." -deprecated = "" - -[block.cell2d.yc] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "y-coordinate for cell center" -description = "is the y-coordinate for the cell center." -deprecated = "" - -[block.cell2d.ncvert] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "number of cell vertices" -description = "is the number of vertices required to define the cell. There may be a different number of vertices for each cell." -deprecated = "" - -[block.cell2d.icvert] -type = "integer" -block_variable = false -valid = [] -shape = "(ncvert)" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = true -longname = "array of vertex numbers" -description = "is an array of integer values containing vertex numbers (in the VERTICES block) used to define the cell. Vertices must be listed in clockwise order. Cells that are connected must share vertices." -deprecated = "" - -[block.cell2d.cell2d] -type = "recarray icell2d xc yc ncvert icvert" -block_variable = false -valid = [] -shape = "(ncpl)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "cell2d data" -description = "" -deprecated = "" diff --git a/spec/toml/prt-dis.toml b/spec/toml/prt-dis.toml deleted file mode 100644 index cc231e9a..00000000 --- a/spec/toml/prt-dis.toml +++ /dev/null @@ -1,336 +0,0 @@ -component = "PRT" -subcomponent = "DIS" -blocknames = [ "options", "dimensions", "griddata",] -multipkg = false -stress = false -advanced = false - -[block.options.length_units] -type = "string" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "model length units" -description = "is the length units used for this model. Values can be ``FEET'', ``METERS'', or ``CENTIMETERS''. If not specified, the default is ``UNKNOWN''." -deprecated = "" - -[block.options.nogrb] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "do not write binary grid file" -description = "keyword to deactivate writing of the binary grid file." -deprecated = "" - -[block.options.xorigin] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "x-position of the model grid origin" -description = "x-position of the lower-left corner of the model grid. A default value of zero is assigned if not specified. The value for XORIGIN does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space." -deprecated = "" - -[block.options.yorigin] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "y-position of the model grid origin" -description = "y-position of the lower-left corner of the model grid. If not specified, then a default value equal to zero is used. The value for YORIGIN does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space." -deprecated = "" - -[block.options.angrot] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "rotation angle" -description = "counter-clockwise rotation angle (in degrees) of the lower-left corner of the model grid. If not specified, then a default value of 0.0 is assigned. The value for ANGROT does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space." -deprecated = "" - -[block.options.export_array_ascii] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "export array variables to layered ascii files." -description = "keyword that specifies input griddata arrays should be written to layered ascii output files." -deprecated = "" - -[block.options.export_array_netcdf] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "export array variables to netcdf output files." -description = "keyword that specifies input griddata arrays should be written to the model output netcdf file." -deprecated = "" - -[block.options.ncf_filerecord] -type = "record ncf6 filein ncf6_filename" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "" -description = "" -deprecated = "" - -[block.options.ncf6] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "ncf keyword" -description = "keyword to specify that record corresponds to a netcdf configuration (NCF) file." -deprecated = "" - -[block.options.filein] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "file keyword" -description = "keyword to specify that an input filename is expected next." -deprecated = "" - -[block.options.ncf6_filename] -type = "string" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = true -numeric_index = false -longname = "file name of NCF information" -description = "defines a netcdf configuration (NCF) input file." -deprecated = "" - -[block.dimensions.nlay] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -default_value = "1" -numeric_index = false -longname = "number of layers" -description = "is the number of layers in the model grid." -deprecated = "" - -[block.dimensions.nrow] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -default_value = "2" -numeric_index = false -longname = "number of rows" -description = "is the number of rows in the model grid." -deprecated = "" - -[block.dimensions.ncol] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -default_value = "2" -numeric_index = false -longname = "number of columns" -description = "is the number of columns in the model grid." -deprecated = "" - -[block.griddata.delr] -type = "double" -block_variable = false -valid = [] -shape = "(ncol)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "readarray" -optional = false -preserve_case = false -default_value = "1.0" -numeric_index = false -longname = "spacing along a row" -description = "is the column spacing in the row direction." -deprecated = "" - -[block.griddata.delc] -type = "double" -block_variable = false -valid = [] -shape = "(nrow)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "readarray" -optional = false -preserve_case = false -default_value = "1.0" -numeric_index = false -longname = "spacing along a column" -description = "is the row spacing in the column direction." -deprecated = "" - -[block.griddata.top] -type = "double" -block_variable = false -valid = [] -shape = "(ncol, nrow)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "readarray" -optional = false -preserve_case = false -default_value = "1.0" -numeric_index = false -longname = "cell top elevation" -description = "is the top elevation for each cell in the top model layer." -deprecated = "" - -[block.griddata.botm] -type = "double" -block_variable = false -valid = [] -shape = "(ncol, nrow, nlay)" -tagged = true -in_record = false -layered = true -time_series = false -reader = "readarray" -optional = false -preserve_case = false -default_value = "0." -numeric_index = false -longname = "cell bottom elevation" -description = "is the bottom elevation for each cell." -deprecated = "" - -[block.griddata.idomain] -type = "integer" -block_variable = false -valid = [] -shape = "(ncol, nrow, nlay)" -tagged = true -in_record = false -layered = true -time_series = false -reader = "readarray" -optional = true -preserve_case = false -numeric_index = false -longname = "idomain existence array" -description = "is an optional array that characterizes the existence status of a cell. If the IDOMAIN array is not specified, then all model cells exist within the solution. If the IDOMAIN value for a cell is 0, the cell does not exist in the simulation. Input and output values will be read and written for the cell, but internal to the program, the cell is excluded from the solution. If the IDOMAIN value for a cell is 1, the cell exists in the simulation. If the IDOMAIN value for a cell is -1, the cell does not exist in the simulation. Furthermore, the first existing cell above will be connected to the first existing cell below. This type of cell is referred to as a ``vertical pass through'' cell." -deprecated = "" diff --git a/spec/toml/prt-disv.toml b/spec/toml/prt-disv.toml deleted file mode 100644 index f500561b..00000000 --- a/spec/toml/prt-disv.toml +++ /dev/null @@ -1,465 +0,0 @@ -component = "PRT" -subcomponent = "DISV" -blocknames = [ "options", "dimensions", "griddata", "vertices", "cell2d",] -multipkg = false -stress = false -advanced = false - -[block.options.length_units] -type = "string" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "model length units" -description = "is the length units used for this model. Values can be ``FEET'', ``METERS'', or ``CENTIMETERS''. If not specified, the default is ``UNKNOWN''." -deprecated = "" - -[block.options.nogrb] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "do not write binary grid file" -description = "keyword to deactivate writing of the binary grid file." -deprecated = "" - -[block.options.xorigin] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "x-position origin of the model grid coordinate system" -description = "x-position of the origin used for model grid vertices. This value should be provided in a real-world coordinate system. A default value of zero is assigned if not specified. The value for XORIGIN does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space." -deprecated = "" - -[block.options.yorigin] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "y-position origin of the model grid coordinate system" -description = "y-position of the origin used for model grid vertices. This value should be provided in a real-world coordinate system. If not specified, then a default value equal to zero is used. The value for YORIGIN does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space." -deprecated = "" - -[block.options.angrot] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "rotation angle" -description = "counter-clockwise rotation angle (in degrees) of the model grid coordinate system relative to a real-world coordinate system. If not specified, then a default value of 0.0 is assigned. The value for ANGROT does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space." -deprecated = "" - -[block.options.export_array_ascii] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "export array variables to layered ascii files." -description = "keyword that specifies input griddata arrays should be written to layered ascii output files." -deprecated = "" - -[block.options.export_array_netcdf] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "export array variables to netcdf output files." -description = "keyword that specifies input griddata arrays should be written to the model output netcdf file." -deprecated = "" - -[block.options.ncf_filerecord] -type = "record ncf6 filein ncf6_filename" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "" -description = "" -deprecated = "" - -[block.options.ncf6] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "ncf keyword" -description = "keyword to specify that record corresponds to a netcdf configuration (NCF) file." -deprecated = "" - -[block.options.filein] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "file keyword" -description = "keyword to specify that an input filename is expected next." -deprecated = "" - -[block.options.ncf6_filename] -type = "string" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = true -numeric_index = false -longname = "file name of NCF information" -description = "defines a netcdf configuration (NCF) input file." -deprecated = "" - -[block.dimensions.nlay] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "number of layers" -description = "is the number of layers in the model grid." -deprecated = "" - -[block.dimensions.ncpl] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "number of cells per layer" -description = "is the number of cells per layer. This is a constant value for the grid and it applies to all layers." -deprecated = "" - -[block.dimensions.nvert] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "number of columns" -description = "is the total number of (x, y) vertex pairs used to characterize the horizontal configuration of the model grid." -deprecated = "" - -[block.griddata.top] -type = "double" -block_variable = false -valid = [] -shape = "(ncpl)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "readarray" -optional = false -preserve_case = false -numeric_index = false -longname = "model top elevation" -description = "is the top elevation for each cell in the top model layer." -deprecated = "" - -[block.griddata.botm] -type = "double" -block_variable = false -valid = [] -shape = "(ncpl, nlay)" -tagged = true -in_record = false -layered = true -time_series = false -reader = "readarray" -optional = false -preserve_case = false -numeric_index = false -longname = "model bottom elevation" -description = "is the bottom elevation for each cell." -deprecated = "" - -[block.griddata.idomain] -type = "integer" -block_variable = false -valid = [] -shape = "(ncpl, nlay)" -tagged = true -in_record = false -layered = true -time_series = false -reader = "readarray" -optional = true -preserve_case = false -numeric_index = false -longname = "idomain existence array" -description = "is an optional array that characterizes the existence status of a cell. If the IDOMAIN array is not specified, then all model cells exist within the solution. If the IDOMAIN value for a cell is 0, the cell does not exist in the simulation. Input and output values will be read and written for the cell, but internal to the program, the cell is excluded from the solution. If the IDOMAIN value for a cell is 1, the cell exists in the simulation. If the IDOMAIN value for a cell is -1, the cell does not exist in the simulation. Furthermore, the first existing cell above will be connected to the first existing cell below. This type of cell is referred to as a ``vertical pass through'' cell." -deprecated = "" - -[block.vertices.iv] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = true -longname = "vertex number" -description = "is the vertex number. Records in the VERTICES block must be listed in consecutive order from 1 to NVERT." -deprecated = "" - -[block.vertices.xv] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "x-coordinate for vertex" -description = "is the x-coordinate for the vertex." -deprecated = "" - -[block.vertices.yv] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "y-coordinate for vertex" -description = "is the y-coordinate for the vertex." -deprecated = "" - -[block.vertices.vertices] -type = "recarray iv xv yv" -block_variable = false -valid = [] -shape = "(nvert)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "vertices data" -description = "" -deprecated = "" - -[block.cell2d.icell2d] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = true -longname = "cell2d number" -description = "is the CELL2D number. Records in the CELL2D block must be listed in consecutive order from the first to the last." -deprecated = "" - -[block.cell2d.xc] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "x-coordinate for cell center" -description = "is the x-coordinate for the cell center." -deprecated = "" - -[block.cell2d.yc] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "y-coordinate for cell center" -description = "is the y-coordinate for the cell center." -deprecated = "" - -[block.cell2d.ncvert] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "number of cell vertices" -description = "is the number of vertices required to define the cell. There may be a different number of vertices for each cell." -deprecated = "" - -[block.cell2d.icvert] -type = "integer" -block_variable = false -valid = [] -shape = "(ncvert)" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = true -longname = "array of vertex numbers" -description = "is an array of integer values containing vertex numbers (in the VERTICES block) used to define the cell. Vertices must be listed in clockwise order. Cells that are connected must share vertices." -deprecated = "" - -[block.cell2d.cell2d] -type = "recarray icell2d xc yc ncvert icvert" -block_variable = false -valid = [] -shape = "(ncpl)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "cell2d data" -description = "" -deprecated = "" diff --git a/spec/toml/prt-prp.toml b/spec/toml/prt-prp.toml deleted file mode 100644 index f48011f3..00000000 --- a/spec/toml/prt-prp.toml +++ /dev/null @@ -1,687 +0,0 @@ -component = "PRT" -subcomponent = "PRP" -blocknames = [ "options", "dimensions", "packagedata", "releasetimes", "period",] -multipkg = false -stress = false -advanced = false -multi = true - -[block.options.boundnames] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "" -description = "keyword to indicate that boundary names may be provided with the list of particle release points." -deprecated = "" - -[block.options.print_input] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "print input to listing file" -description = "REPLACE print_input {'{#1}': 'all model stress package'}" -deprecated = "" - -[block.options.dev_exit_solve_method] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "exit solve method" -description = "the method for iterative solution of particle exit location and time in the generalized Pollock's method. 0 default, 1 Brent, 2 Chandrupatla. The default is Brent's method." -deprecated = "" - -[block.options.exit_solve_tolerance] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "exit solve tolerance" -description = "the convergence tolerance for iterative solution of particle exit location and time in the generalized Pollock's method. A value of 0.00001 works well for many problems, but the value that strikes the best balance between accuracy and runtime is problem-dependent." -deprecated = "" - -[block.options.local_z] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "whether to use local z coordinates" -description = "indicates that ``zrpt'' defines the local z coordinate of the release point within the cell, with value of 0 at the bottom and 1 at the top of the cell. If the cell is partially saturated at release time, the top of the cell is considered to be the water table elevation (the head in the cell) rather than the top defined by the user." -deprecated = "" - -[block.options.extend_tracking] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "whether to extend tracking beyond the end of the simulation" -description = "indicates that particles should be tracked beyond the end of the simulation's final time step (using that time step's flows) until particles terminate or reach a specified stop time. By default, particles are terminated at the end of the simulation's final time step." -deprecated = "" - -[block.options.track_filerecord] -type = "record track fileout trackfile" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "" -description = "" -deprecated = "" - -[block.options.track] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "track keyword" -description = "keyword to specify that record corresponds to a binary track output file. Each PRP Package may have a distinct binary track output file." -deprecated = "" - -[block.options.fileout] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "file keyword" -description = "keyword to specify that an output filename is expected next." -deprecated = "" - -[block.options.trackfile] -type = "string" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = true -numeric_index = false -longname = "file keyword" -description = "name of the binary output file to write tracking information." -deprecated = "" - -[block.options.trackcsv_filerecord] -type = "record trackcsv fileout trackcsvfile" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "" -description = "" -deprecated = "" - -[block.options.trackcsv] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "track keyword" -description = "keyword to specify that record corresponds to a CSV track output file. Each PRP Package may have a distinct CSV track output file." -deprecated = "" - -[block.options.trackcsvfile] -type = "string" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = true -numeric_index = false -longname = "file keyword" -description = "name of the comma-separated value (CSV) file to write tracking information." -deprecated = "" - -[block.options.stoptime] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "stop time" -description = "real value defining the maximum simulation time to which particles in the package can be tracked. Particles that have not terminated earlier due to another termination condition will terminate when simulation time STOPTIME is reached. If the last stress period in the simulation consists of more than one time step, particles will not be tracked past the ending time of the last stress period, regardless of STOPTIME. If the last stress period in the simulation consists of a single time step, it is assumed to be a steady-state stress period, and its ending time will not limit the simulation time to which particles can be tracked. If STOPTIME and STOPTRAVELTIME are both provided, particles will be stopped if either is reached." -deprecated = "" - -[block.options.stoptraveltime] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "stop travel time" -description = "real value defining the maximum travel time over which particles in the model can be tracked. Particles that have not terminated earlier due to another termination condition will terminate when their travel time reaches STOPTRAVELTIME. If the last stress period in the simulation consists of more than one time step, particles will not be tracked past the ending time of the last stress period, regardless of STOPTRAVELTIME. If the last stress period in the simulation consists of a single time step, it is assumed to be a steady-state stress period, and its ending time will not limit the travel time over which particles can be tracked. If STOPTIME and STOPTRAVELTIME are both provided, particles will be stopped if either is reached." -deprecated = "" - -[block.options.stop_at_weak_sink] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "stop at weak sink" -description = "is a text keyword to indicate that a particle is to terminate when it enters a cell that is a weak sink. By default, particles are allowed to pass though cells that are weak sinks." -deprecated = "" - -[block.options.istopzone] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "stop zone number" -description = "integer value defining the stop zone number. If cells have been assigned IZONE values in the GRIDDATA block, a particle terminates if it enters a cell whose IZONE value matches ISTOPZONE. An ISTOPZONE value of zero indicates that there is no stop zone. The default value is zero." -deprecated = "" - -[block.options.drape] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "drape" -description = "is a text keyword to indicate that if a particle's release point is in a cell that happens to be inactive at release time, the particle is to be moved to the topmost active cell below it, if any. By default, a particle is not released into the simulation if its release point's cell is inactive at release time." -deprecated = "" - -[block.options.dev_forceternary] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "force ternary tracking method" -description = "force use of the ternary tracking method regardless of cell type in DISV grids." -deprecated = "" - -[block.options.release_time_tolerance] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "release time coincidence tolerance" -description = "real number indicating the tolerance within which to consider adjacent release times coincident. Coincident release times will be merged into a single release time. The default is $epsilon times 10^11$, where $epsilon$ is machine precision." -deprecated = "" - -[block.options.release_time_frequency] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "release time frequency" -description = "real number indicating the time frequency at which to release particles. This option can be used to schedule releases at a regular interval for the duration of the simulation, starting at the simulation start time. The release schedule is the union of this option, the RELEASETIMES block, and PERIOD block RELEASESETTING selections. If none of these are provided, a single release time is configured at the beginning of the first time step of the simulation's first stress period." -deprecated = "" - -[block.dimensions.nreleasepts] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "number of particle release points" -description = "is the number of particle release points." -deprecated = "" - -[block.dimensions.nreleasetimes] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "number of particle release times" -description = "is the number of particle release times specified in the RELEASETIMES block. This is not necessarily the total number of release times; release times are the union of RELEASE_TIME_FREQUENCY, RELEASETIMES block, and PERIOD block RELEASESETTING selections." -deprecated = "" - -[block.packagedata.irptno] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = true -longname = "PRP id number for release point" -description = "integer value that defines the PRP release point number associated with the specified PACKAGEDATA data on the line. IRPTNO must be greater than zero and less than or equal to NRELEASEPTS. The program will terminate with an error if information for a PRP release point number is specified more than once." -deprecated = "" - -[block.packagedata.cellid] -type = "integer" -block_variable = false -valid = [] -shape = "(ncelldim)" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "cell identifier" -description = "REPLACE cellid {}" -deprecated = "" - -[block.packagedata.xrpt] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "x coordinate of release point" -description = "real value that defines the x coordinate of the release point in model coordinates. The (x, y, z) location specified for the release point must lie within the cell that is identified by the specified cellid." -deprecated = "" - -[block.packagedata.yrpt] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "y coordinate of release point" -description = "real value that defines the y coordinate of the release point in model coordinates. The (x, y, z) location specified for the release point must lie within the cell that is identified by the specified cellid." -deprecated = "" - -[block.packagedata.zrpt] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "z coordinate of release point" -description = "real value that defines the z coordinate of the release point in model coordinates or, if the LOCAL_Z option is active, in local cell coordinates. The (x, y, z) location specified for the release point must lie within the cell that is identified by the specified cellid." -deprecated = "" - -[block.packagedata.boundname] -type = "string" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = true -preserve_case = false -numeric_index = false -longname = "release point name" -description = "name of the particle release point. BOUNDNAME is an ASCII character variable that can contain as many as 40 characters. If BOUNDNAME contains spaces in it, then the entire name must be enclosed within single quotes." -deprecated = "" - -[block.packagedata.packagedata] -type = "recarray irptno cellid xrpt yrpt zrpt boundname" -block_variable = false -valid = [] -shape = "(nreleasepts)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "" -description = "" -deprecated = "" - -[block.releasetimes.time] -type = "double" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "release time" -description = "real value that defines the release time with respect to the simulation start time." -deprecated = "" - -[block.releasetimes.releasetimes] -type = "recarray time" -block_variable = false -valid = [] -shape = "(nreleasetimes)" -tagged = true -in_record = false -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "" -description = "" -deprecated = "" - -[block.period.releasesetting] -type = "keystring all first frequency steps fraction" -block_variable = false -valid = [] -shape = "" -tagged = false -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "" -description = "specifies time steps at which to release a particle. A particle is released at the beginning of each specified time step. For fine control over release timing, specify times explicitly using the RELEASETIMES block. If the beginning of a specified time step coincides with a release time specified in the RELEASETIMES block or configured via RELEASE_TIME_FREQUENCY, only one particle is released at that time. Coincidence is evaluated up to the tolerance specified in RELEASE_TIME_TOLERANCE, or $epsilon times 10^11$ by default, where $epsilon$ is machine precision. If no release times are configured via this setting, the RELEASETIMES block, or the RELEASE_TIME_FREQUENCY option, a single release time is configured at the beginning of the first time step of the simulation's first stress period." -deprecated = "" - -[block.period.all] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "" -description = "keyword to indicate release at the start of all time steps in the period." -deprecated = "" - -[block.period.first] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "" -description = "keyword to indicate release at the start of the first time step in the period. This keyword may be used in conjunction with other RELEASESETTING options." -deprecated = "" - -[block.period.last] -type = "keyword" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "" -description = "keyword to indicate release at the start of the last time step in the period. This keyword may be used in conjunction with other RELEASESETTING options." -deprecated = "" - -[block.period.frequency] -type = "integer" -block_variable = false -valid = [] -shape = "" -tagged = true -in_record = true -layered = false -time_series = false -reader = "urword" -optional = false -preserve_case = false -numeric_index = false -longname = "" -description = "release at the specified time step frequency. This keyword may be used in conjunction with other RELEASESETTING options." -deprecated = "" - -[block.period.steps] -type = "integer" -block_variable = false -valid = [] -shape = "(